From: Xiubo Li <xiubli@xxxxxxxxxx>
This will help print the fsid and client's global_id in debug logs,
and also print the function names.
URL: https://tracker.ceph.com/issues/61590
Cc: Patrick Donnelly <pdonnell@xxxxxxxxxx>
Reviewed-by: Patrick Donnelly <pdonnell@xxxxxxxxxx>
Signed-off-by: Xiubo Li <xiubli@xxxxxxxxxx>
---
include/linux/ceph/ceph_debug.h | 44 ++++++++++++++++++++++++++++++++-
1 file changed, 43 insertions(+), 1 deletion(-)
diff --git a/include/linux/ceph/ceph_debug.h b/include/linux/ceph/ceph_debug.h
index d5a5da838caf..26b9212bf359 100644
--- a/include/linux/ceph/ceph_debug.h
+++ b/include/linux/ceph/ceph_debug.h
@@ -19,12 +19,22 @@
pr_debug("%.*s %12.12s:%-4d : " fmt, \
8 - (int)sizeof(KBUILD_MODNAME), " ", \
kbasename(__FILE__), __LINE__, ##__VA_ARGS__)
+# define dout_client(client, fmt, ...) \
+ pr_debug("%.*s %12.12s:%-4d : [%pU %lld] " fmt, \
+ 8 - (int)sizeof(KBUILD_MODNAME), " ", \
+ kbasename(__FILE__), __LINE__, \
+ &client->fsid, client->monc.auth->global_id, \
+ ##__VA_ARGS__)
# else
/* faux printk call just to see any compiler warnings. */
# define dout(fmt, ...) do { \
if (0) \
printk(KERN_DEBUG fmt, ##__VA_ARGS__); \
} while (0)
+# define dout_client(client, fmt, ...) do { \
+ if (0) \
+ printk(KERN_DEBUG fmt, ##__VA_ARGS__); \
+ } while (0)
# endif
#else
@@ -33,7 +43,39 @@
* or, just wrap pr_debug
*/
# define dout(fmt, ...) pr_debug(" " fmt, ##__VA_ARGS__)
-
+# define dout_client(client, fmt, ...) \
+ pr_debug("[%pU %lld] %s: " fmt, &client->fsid, \
+ client->monc.auth->global_id, __func__, \
+ ##__VA_ARGS__)
#endif
+# define pr_notice_client(client, fmt, ...) \
+ pr_notice("[%pU %lld] %s: " fmt, &client->fsid, \
+ client->monc.auth->global_id, __func__, \
+ ##__VA_ARGS__)