Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
debug.h
Go to the documentation of this file.
1 /*
2  * linux/include/linux/nfsd/debug.h
3  *
4  * Debugging-related stuff for nfsd
5  *
6  * Copyright (C) 1995 Olaf Kirch <[email protected]>
7  */
8 #ifndef LINUX_NFSD_DEBUG_H
9 #define LINUX_NFSD_DEBUG_H
10 
11 #include <uapi/linux/nfsd/debug.h>
12 
13 # undef ifdebug
14 # ifdef NFSD_DEBUG
15 # define ifdebug(flag) if (nfsd_debug & NFSDDBG_##flag)
16 # else
17 # define ifdebug(flag) if (0)
18 # endif
19 #endif /* LINUX_NFSD_DEBUG_H */