]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
client: log debug message when requesting unmount 56955/head
authorPatrick Donnelly <pdonnell@redhat.com>
Tue, 20 Feb 2024 01:44:46 +0000 (20:44 -0500)
committerPatrick Donnelly <pdonnell@redhat.com>
Wed, 17 Apr 2024 13:01:43 +0000 (09:01 -0400)
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>
(cherry picked from commit bbaadacd48fd9ba679ef1495c1094dfb7401447a)

src/client/Client.cc

index ba41e9dd084625a845c85ab1453cfad8bbdb64b2..a7c44d62f5dd6bec7d42ed246fe7c5ed6f97c6ee 100644 (file)
@@ -6949,11 +6949,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);
 }