From: Patrick Donnelly Date: Thu, 27 Feb 2025 15:42:46 +0000 (-0500) Subject: client: note mount parameters in debug log X-Git-Tag: testing/wip-khiremat-testing-20250422.120708-squid-debug~101^2~68 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=afd2c776701acdd993d05984c6e9b4c17e0adf53;p=ceph-ci.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 7fcab157c6b..81e8ef2591d 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);