35 lines · c
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */2/*3 * linux/include/linux/nfsd/debug.h4 *5 * Debugging-related stuff for nfsd6 *7 * Copyright (C) 1995 Olaf Kirch <okir@monad.swb.de>8 */9 10#ifndef _UAPILINUX_NFSD_DEBUG_H11#define _UAPILINUX_NFSD_DEBUG_H12 13#include <linux/sunrpc/debug.h>14 15/*16 * knfsd debug flags17 */18#define NFSDDBG_SOCK 0x000119#define NFSDDBG_FH 0x000220#define NFSDDBG_EXPORT 0x000421#define NFSDDBG_SVC 0x000822#define NFSDDBG_PROC 0x001023#define NFSDDBG_FILEOP 0x002024#define NFSDDBG_AUTH 0x004025#define NFSDDBG_REPCACHE 0x008026#define NFSDDBG_XDR 0x010027#define NFSDDBG_LOCKD 0x020028#define NFSDDBG_PNFS 0x040029#define NFSDDBG_ALL 0x7FFF30#define NFSDDBG_NOCHANGE 0xFFFF31 32 33 34#endif /* _UAPILINUX_NFSD_DEBUG_H */35