blob: 19ef8375b577225ec6799df32327ce0a0754df0c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#ifndef LINUX_NFSD_DEBUG_H
9#define LINUX_NFSD_DEBUG_H
10
David Howells616d1ca2012-10-09 09:49:02 +010011#include <uapi/linux/nfsd/debug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Linus Torvalds1da177e2005-04-16 15:20:36 -070013# 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#endif /* LINUX_NFSD_DEBUG_H */