debug.h 401 B

12345678910111213141516171819
  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 LINUX_NFSD_DEBUG_H
  9. #define LINUX_NFSD_DEBUG_H
  10. #include <uapi/linux/nfsd/debug.h>
  11. # undef ifdebug
  12. # ifdef NFSD_DEBUG
  13. # define ifdebug(flag) if (nfsd_debug & NFSDDBG_##flag)
  14. # else
  15. # define ifdebug(flag) if (0)
  16. # endif
  17. #endif /* LINUX_NFSD_DEBUG_H */