2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* linux/include/linux/nfsd/debug.h
|
|
|
|
*
|
|
|
|
* Debugging-related stuff for nfsd
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995 Olaf Kirch <okir@monad.swb.de>
|
|
|
|
*/
|
|
|
|
#ifndef LINUX_NFSD_DEBUG_H
|
|
|
|
#define LINUX_NFSD_DEBUG_H
|
|
|
|
|
2012-10-09 16:49:02 +08:00
|
|
|
#include <uapi/linux/nfsd/debug.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
# undef ifdebug
|
|
|
|
# ifdef NFSD_DEBUG
|
|
|
|
# define ifdebug(flag) if (nfsd_debug & NFSDDBG_##flag)
|
|
|
|
# else
|
|
|
|
# define ifdebug(flag) if (0)
|
|
|
|
# endif
|
|
|
|
#endif /* LINUX_NFSD_DEBUG_H */
|