From: Patrick Donnelly Date: Thu, 27 Feb 2025 15:42:46 +0000 (-0500) Subject: client: note mount parameters in debug log X-Git-Tag: v19.2.3~288^2~68 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=afd2c776701acdd993d05984c6e9b4c17e0adf53;p=ceph.git client: note mount parameters in debug log Signed-off-by: Patrick Donnelly (cherry picked from commit 8e88fb004521a3be1f4fbf4a5c195c4b6c40e3a0) --- diff --git a/src/client/Client.cc b/src/client/Client.cc index 7fcab157c6bbc..81e8ef2591d53 100644 --- a/src/client/Client.cc +++ b/src/client/Client.cc @@ -6622,6 +6622,9 @@ int Client::mount(const std::string &mount_root, const UserPerm& perms, if (!mref_writer.is_first_writer()) // already mounting or mounted return 0; + ldout(cct, 1) << __func__ << ": " << mount_root << " " << perms + << " required_mds=" << require_mds << " fs_name=" << fs_name << dendl; + std::unique_lock cl(client_lock); int r = subscribe_mdsmap(fs_name);