From: Patrick Donnelly Date: Tue, 20 Feb 2024 01:44:46 +0000 (-0500) Subject: client: log debug message when requesting unmount X-Git-Tag: testing/wip-batrick-testing-20240411.154038~317^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=bbaadacd48fd9ba679ef1495c1094dfb7401447a;p=ceph-ci.git client: log debug message when requesting unmount Importantly: do this before any locks are to be acquired. Fixes: https://tracker.ceph.com/issues/64503 Signed-off-by: Patrick Donnelly --- diff --git a/src/client/Client.cc b/src/client/Client.cc index 6ee5e742b9b..d52aa6a5bc7 100644 --- a/src/client/Client.cc +++ b/src/client/Client.cc @@ -6981,11 +6981,13 @@ void Client::_unmount(bool abort) void Client::unmount() { + ldout(cct, 2) << __func__ << dendl; _unmount(false); } void Client::abort_conn() { + ldout(cct, 2) << __func__ << dendl; _unmount(true); }