debug.h 688 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * linux/include/linux/nfsd/debug.h
  3. *
  4. * Debugging-related stuff for nfsd
  5. *
  6. * Copyright (C) 1995 Olaf Kirch <okir@monad.swb.de>
  7. */
  8. #ifndef _UAPILINUX_NFSD_DEBUG_H
  9. #define _UAPILINUX_NFSD_DEBUG_H
  10. #include <linux/sunrpc/debug.h>
  11. /*
  12. * knfsd debug flags
  13. */
  14. #define NFSDDBG_SOCK 0x0001
  15. #define NFSDDBG_FH 0x0002
  16. #define NFSDDBG_EXPORT 0x0004
  17. #define NFSDDBG_SVC 0x0008
  18. #define NFSDDBG_PROC 0x0010
  19. #define NFSDDBG_FILEOP 0x0020
  20. #define NFSDDBG_AUTH 0x0040
  21. #define NFSDDBG_REPCACHE 0x0080
  22. #define NFSDDBG_XDR 0x0100
  23. #define NFSDDBG_LOCKD 0x0200
  24. #define NFSDDBG_PNFS 0x0400
  25. #define NFSDDBG_ALL 0x7FFF
  26. #define NFSDDBG_NOCHANGE 0xFFFF
  27. #endif /* _UAPILINUX_NFSD_DEBUG_H */