Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/include/linux/sunrpc/debug.h |
| 3 | * |
| 4 | * Debugging support for sunrpc module |
| 5 | * |
| 6 | * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> |
| 7 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #ifndef _LINUX_SUNRPC_DEBUG_H_ |
| 9 | #define _LINUX_SUNRPC_DEBUG_H_ |
| 10 | |
David Howells | e3dd9a5 | 2012-10-09 09:49:04 +0100 | [diff] [blame] | 11 | #include <uapi/linux/sunrpc/debug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
David Woodhouse | 1af0422 | 2006-04-25 15:16:44 +0100 | [diff] [blame] | 13 | |
David Woodhouse | 1af0422 | 2006-04-25 15:16:44 +0100 | [diff] [blame] | 14 | /* |
| 15 | * Enable RPC debugging/profiling. |
| 16 | */ |
Trond Myklebust | e27d359 | 2012-03-18 14:07:42 -0400 | [diff] [blame] | 17 | #ifdef CONFIG_SUNRPC_DEBUG |
David Woodhouse | 1af0422 | 2006-04-25 15:16:44 +0100 | [diff] [blame] | 18 | #define RPC_DEBUG |
| 19 | #endif |
Trond Myklebust | 2f09c24 | 2012-02-08 22:01:15 -0500 | [diff] [blame] | 20 | #ifdef CONFIG_TRACEPOINTS |
| 21 | #define RPC_TRACEPOINTS |
| 22 | #endif |
David Woodhouse | 1af0422 | 2006-04-25 15:16:44 +0100 | [diff] [blame] | 23 | /* #define RPC_PROFILE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | /* |
| 26 | * Debugging macros etc |
| 27 | */ |
| 28 | #ifdef RPC_DEBUG |
| 29 | extern unsigned int rpc_debug; |
| 30 | extern unsigned int nfs_debug; |
| 31 | extern unsigned int nfsd_debug; |
| 32 | extern unsigned int nlm_debug; |
| 33 | #endif |
| 34 | |
| 35 | #define dprintk(args...) dfprintk(FACILITY, ## args) |
Trond Myklebust | 2446ab6 | 2012-03-01 17:00:56 -0500 | [diff] [blame] | 36 | #define dprintk_rcu(args...) dfprintk_rcu(FACILITY, ## args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | #undef ifdebug |
| 39 | #ifdef RPC_DEBUG |
| 40 | # define ifdebug(fac) if (unlikely(rpc_debug & RPCDBG_##fac)) |
Trond Myklebust | 2446ab6 | 2012-03-01 17:00:56 -0500 | [diff] [blame] | 41 | |
Chuck Lever | dbb9c2a | 2012-02-15 16:35:08 -0500 | [diff] [blame] | 42 | # define dfprintk(fac, args...) \ |
| 43 | do { \ |
| 44 | ifdebug(fac) \ |
| 45 | printk(KERN_DEFAULT args); \ |
| 46 | } while (0) |
Trond Myklebust | 2446ab6 | 2012-03-01 17:00:56 -0500 | [diff] [blame] | 47 | |
| 48 | # define dfprintk_rcu(fac, args...) \ |
| 49 | do { \ |
| 50 | ifdebug(fac) { \ |
| 51 | rcu_read_lock(); \ |
| 52 | printk(KERN_DEFAULT args); \ |
| 53 | rcu_read_unlock(); \ |
| 54 | } \ |
| 55 | } while (0) |
| 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | # define RPC_IFDEBUG(x) x |
| 58 | #else |
| 59 | # define ifdebug(fac) if (0) |
Chuck Lever | b3b536a | 2012-03-20 19:20:53 -0400 | [diff] [blame] | 60 | # define dfprintk(fac, args...) do {} while (0) |
| 61 | # define dfprintk_rcu(fac, args...) do {} while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | # define RPC_IFDEBUG(x) |
| 63 | #endif |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | /* |
| 66 | * Sysctl interface for RPC debugging |
| 67 | */ |
| 68 | #ifdef RPC_DEBUG |
| 69 | void rpc_register_sysctl(void); |
| 70 | void rpc_unregister_sysctl(void); |
| 71 | #endif |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #endif /* _LINUX_SUNRPC_DEBUG_H_ */ |