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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Defines some debug macros for smbfs.
  3.  */
  4. /* This makes a dentry parent/child name pair. Useful for debugging printk's */
  5. #define DENTRY_PATH(dentry) 
  6. (dentry)->d_parent->d_name.name,(dentry)->d_name.name
  7. /*
  8.  * safety checks that should never happen ??? 
  9.  * these are normally enabled.
  10.  */
  11. #ifdef SMBFS_PARANOIA
  12. #define PARANOIA(x...) printk(KERN_NOTICE __FUNCTION__ ": " x)
  13. #else
  14. #define PARANOIA(x...) do { ; } while(0)
  15. #endif
  16. /* lots of debug messages */
  17. #ifdef SMBFS_DEBUG_VERBOSE
  18. #define VERBOSE(x...) printk(KERN_DEBUG __FUNCTION__ ": " x)
  19. #else
  20. #define VERBOSE(x...) do { ; } while(0)
  21. #endif
  22. /*
  23.  * "normal" debug messages, but not with a normal DEBUG define ... way
  24.  * too common name.
  25.  */
  26. #ifdef SMBFS_DEBUG
  27. #define DEBUG1(x...) printk(KERN_DEBUG __FUNCTION__ ": " x)
  28. #else
  29. #define DEBUG1(x...) do { ; } while(0)
  30. #endif