1 /* SPDX-License-Identifier: GPL-2.0 */
3 * linux/include/linux/sunrpc/debug.h
5 * Debugging support for sunrpc module
7 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
9 #ifndef _LINUX_SUNRPC_DEBUG_H_
10 #define _LINUX_SUNRPC_DEBUG_H_
12 #include <uapi/linux/sunrpc/debug.h>
15 * Debugging macros etc
17 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
18 extern unsigned int rpc_debug;
19 extern unsigned int nfs_debug;
20 extern unsigned int nfsd_debug;
21 extern unsigned int nlm_debug;
24 #define dprintk(fmt, ...) \
25 dfprintk(FACILITY, fmt, ##__VA_ARGS__)
26 #define dprintk_cont(fmt, ...) \
27 dfprintk_cont(FACILITY, fmt, ##__VA_ARGS__)
28 #define dprintk_rcu(fmt, ...) \
29 dfprintk_rcu(FACILITY, fmt, ##__VA_ARGS__)
30 #define dprintk_rcu_cont(fmt, ...) \
31 dfprintk_rcu_cont(FACILITY, fmt, ##__VA_ARGS__)
34 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
35 # define ifdebug(fac) if (unlikely(rpc_debug & RPCDBG_##fac))
37 # define dfprintk(fac, fmt, ...) \
40 printk(KERN_DEFAULT fmt, ##__VA_ARGS__); \
43 # define dfprintk_cont(fac, fmt, ...) \
46 printk(KERN_CONT fmt, ##__VA_ARGS__); \
49 # define dfprintk_rcu(fac, fmt, ...) \
53 printk(KERN_DEFAULT fmt, ##__VA_ARGS__); \
58 # define dfprintk_rcu_cont(fac, fmt, ...) \
62 printk(KERN_CONT fmt, ##__VA_ARGS__); \
67 # define RPC_IFDEBUG(x) x
69 # define ifdebug(fac) if (0)
70 # define dfprintk(fac, fmt, ...) do {} while (0)
71 # define dfprintk_cont(fac, fmt, ...) do {} while (0)
72 # define dfprintk_rcu(fac, fmt, ...) do {} while (0)
73 # define RPC_IFDEBUG(x)
77 * Sysctl interface for RPC debugging
83 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
84 void rpc_register_sysctl(void);
85 void rpc_unregister_sysctl(void);
86 void sunrpc_debugfs_init(void);
87 void sunrpc_debugfs_exit(void);
88 void rpc_clnt_debugfs_register(struct rpc_clnt *);
89 void rpc_clnt_debugfs_unregister(struct rpc_clnt *);
90 void rpc_xprt_debugfs_register(struct rpc_xprt *);
91 void rpc_xprt_debugfs_unregister(struct rpc_xprt *);
94 sunrpc_debugfs_init(void)
100 sunrpc_debugfs_exit(void)
106 rpc_clnt_debugfs_register(struct rpc_clnt *clnt)
112 rpc_clnt_debugfs_unregister(struct rpc_clnt *clnt)
118 rpc_xprt_debugfs_register(struct rpc_xprt *xprt)
124 rpc_xprt_debugfs_unregister(struct rpc_xprt *xprt)
130 #endif /* _LINUX_SUNRPC_DEBUG_H_ */