The branch, master has been updated
via d46d382fbc1 vfs_ceph_new: Improve log entries in
vfs_cephfs_load_lib()
via bf142e3be71 vfs_ceph_new: Add explicit log entry for libcephfs
proxy status
from efc58fd56d8 nsswitch/libwbclient: Zero memory in libwbclient
https://git.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit d46d382fbc17c5d7d77511c7f7af822fda0ad268
Author: Anoop C S <[email protected]>
Date: Thu Jan 8 13:33:32 2026 +0530
vfs_ceph_new: Improve log entries in vfs_cephfs_load_lib()
Signed-off-by: Anoop C S <[email protected]>
Reviewed-by: Shweta Sodani <[email protected]>
Reviewed-by: John Mulligan <[email protected]>
Autobuild-User(master): Anoop C S <[email protected]>
Autobuild-Date(master): Thu Jan 8 14:33:36 UTC 2026 on atb-devel-224
commit bf142e3be712c3542ba1a25299e77a3f054c0a08
Author: Anoop C S <[email protected]>
Date: Thu Jan 8 11:48:53 2026 +0530
vfs_ceph_new: Add explicit log entry for libcephfs proxy status
Other than the loadparm dump, the logs did not indicate whether the
libcephfs proxy was in use. Add an explicit log entry to make its
status clear.
Signed-off-by: Anoop C S <[email protected]>
Reviewed-by: Shweta Sodani <[email protected]>
Reviewed-by: John Mulligan <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
source3/modules/vfs_ceph_new.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/modules/vfs_ceph_new.c b/source3/modules/vfs_ceph_new.c
index 18d5e678f84..3dd85bd8d46 100644
--- a/source3/modules/vfs_ceph_new.c
+++ b/source3/modules/vfs_ceph_new.c
@@ -395,21 +395,21 @@ static bool vfs_cephfs_load_lib(struct vfs_ceph_config
*config)
libhandle = dlopen(libname_proxy, RTLD_NOW);
if (libhandle == NULL) {
if (config->proxy == VFS_CEPHFS_PROXY_YES) {
- DBG_ERR("[CEPH] %s\n", dlerror());
+ DBG_ERR("[CEPH] dlopen: %s\n", dlerror());
return false;
}
- DBG_DEBUG("[CEPH] dlopen: error=%s libname=%s\n",
- dlerror(),
- libname);
+ DBG_DEBUG("[CEPH] dlopen: %s, trying %s\n",
+ dlerror(), libname);
FALL_THROUGH;
} else {
+ DBG_INFO("[CEPH] libcephfs proxy loaded\n");
break;
}
case VFS_CEPHFS_PROXY_NO:
default:
libhandle = dlopen(libname, RTLD_LAZY);
if (libhandle == NULL) {
- DBG_ERR("[CEPH] %s\n", dlerror());
+ DBG_ERR("[CEPH] dlopen: %s\n", dlerror());
return false;
}
break;
--
Samba Shared Repository