debug.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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.  */
  8. #ifndef _LINUX_SUNRPC_DEBUG_H_
  9. #define _LINUX_SUNRPC_DEBUG_H_
  10. #include <linux/config.h>
  11. #include <linux/timer.h>
  12. #include <linux/workqueue.h>
  13. /*
  14.  * Enable RPC debugging/profiling.
  15.  */
  16. #ifdef CONFIG_SYSCTL
  17. #define  RPC_DEBUG
  18. #endif
  19. /* #define  RPC_PROFILE */
  20. /*
  21.  * RPC debug facilities
  22.  */
  23. #define RPCDBG_XPRT 0x0001
  24. #define RPCDBG_CALL 0x0002
  25. #define RPCDBG_DEBUG 0x0004
  26. #define RPCDBG_NFS 0x0008
  27. #define RPCDBG_AUTH 0x0010
  28. #define RPCDBG_PMAP 0x0020
  29. #define RPCDBG_SCHED 0x0040
  30. #define RPCDBG_SVCSOCK 0x0100
  31. #define RPCDBG_SVCDSP 0x0200
  32. #define RPCDBG_MISC 0x0400
  33. #define RPCDBG_CACHE 0x0800
  34. #define RPCDBG_ALL 0x7fff
  35. #ifdef __KERNEL__
  36. /*
  37.  * Debugging macros etc
  38.  */
  39. #ifdef RPC_DEBUG
  40. extern unsigned int rpc_debug;
  41. extern unsigned int nfs_debug;
  42. extern unsigned int nfsd_debug;
  43. extern unsigned int nlm_debug;
  44. #endif
  45. #define dprintk(args...) dfprintk(FACILITY, ## args)
  46. #undef ifdebug
  47. #ifdef RPC_DEBUG
  48. # define ifdebug(fac) if (unlikely(rpc_debug & RPCDBG_##fac))
  49. # define dfprintk(fac, args...) do { ifdebug(fac) printk(args); } while(0)
  50. # define RPC_IFDEBUG(x) x
  51. #else
  52. # define ifdebug(fac) if (0)
  53. # define dfprintk(fac, args...) do ; while (0)
  54. # define RPC_IFDEBUG(x)
  55. #endif
  56. #ifdef RPC_PROFILE
  57. # define pprintk(args...) printk(## args)
  58. #else
  59. # define pprintk(args...) do ; while (0)
  60. #endif
  61. /*
  62.  * Sysctl interface for RPC debugging
  63.  */
  64. #ifdef RPC_DEBUG
  65. void rpc_register_sysctl(void);
  66. void rpc_unregister_sysctl(void);
  67. #endif
  68. #endif /* __KERNEL__ */
  69. /*
  70.  * Declarations for the sysctl debug interface, which allows to read or
  71.  * change the debug flags for rpc, nfs, nfsd, and lockd. Since the sunrpc
  72.  * module currently registers its sysctl table dynamically, the sysctl path
  73.  * for module FOO is <CTL_SUNRPC, CTL_FOODEBUG>.
  74.  */
  75. #define CTL_SUNRPC 7249 /* arbitrary and hopefully unused */
  76. enum {
  77. CTL_RPCDEBUG = 1,
  78. CTL_NFSDEBUG,
  79. CTL_NFSDDEBUG,
  80. CTL_NLMDEBUG,
  81. CTL_SLOTTABLE_UDP,
  82. CTL_SLOTTABLE_TCP,
  83. };
  84. #endif /* _LINUX_SUNRPC_DEBUG_H_ */