debug.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/linux/lockd/debug.h
  3.  *
  4.  * Debugging stuff.
  5.  *
  6.  * Copyright (C) 1996 Olaf Kirch <okir@monad.swb.de>
  7.  */
  8. #ifndef LINUX_LOCKD_DEBUG_H
  9. #define LINUX_LOCKD_DEBUG_H
  10. #ifdef __KERNEL__
  11. #include <linux/sunrpc/debug.h>
  12. /*
  13.  * Enable lockd debugging.
  14.  * Requires RPC_DEBUG.
  15.  */
  16. #ifdef RPC_DEBUG
  17. # define LOCKD_DEBUG 1
  18. #endif
  19. #undef ifdebug
  20. #if defined(RPC_DEBUG) && defined(LOCKD_DEBUG)
  21. # define ifdebug(flag) if (nlm_debug & NLMDBG_##flag)
  22. #else
  23. # define ifdebug(flag) if (0)
  24. #endif
  25. #ifdef LOCKD_DEBUG
  26. char *   nlm_procname(u32);
  27. #endif
  28. #endif /* __KERNEL__ */
  29. /*
  30.  * Debug flags
  31.  */
  32. #define NLMDBG_SVC 0x0001
  33. #define NLMDBG_CLIENT 0x0002
  34. #define NLMDBG_CLNTLOCK 0x0004
  35. #define NLMDBG_SVCLOCK 0x0008
  36. #define NLMDBG_MONITOR 0x0010
  37. #define NLMDBG_CLNTSUBS 0x0020
  38. #define NLMDBG_SVCSUBS 0x0040
  39. #define NLMDBG_HOSTCACHE 0x0080
  40. #define NLMDBG_XDR 0x0100
  41. #define NLMDBG_ALL 0x7fff
  42. #endif /* LINUX_LOCKD_DEBUG_H */