mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 19:00:53 +07:00
616d1ca5d7
Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Michael Kerrisk <mtk.manpages@gmail.com> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com>
20 lines
401 B
C
20 lines
401 B
C
/*
|
|
* 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
|
|
|
|
#include <uapi/linux/nfsd/debug.h>
|
|
|
|
# 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 */
|