]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
client: log debug message when requesting unmount 55659/head
authorPatrick Donnelly <pdonnell@redhat.com>
Tue, 20 Feb 2024 01:44:46 +0000 (20:44 -0500)
committerPatrick Donnelly <pdonnell@redhat.com>
Tue, 20 Feb 2024 02:16:19 +0000 (21:16 -0500)
Importantly: do this before any locks are to be acquired.

Fixes: https://tracker.ceph.com/issues/64503
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
src/client/Client.cc

index 6ee5e742b9b2c1ff2959b5f1ce1b648da62dc0ae..d52aa6a5bc7a4993ca43c1cb49afdf3b222d071a 100644 (file)
@@ -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);
 }