~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/uapi/linux/sunrpc/debug.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/uapi/linux/sunrpc/debug.h (Version linux-6.11-rc3) and /include/uapi/linux/sunrpc/debug.h (Version linux-4.12.14)


  1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux << 
  2 /*                                                  1 /*
  3  * linux/include/linux/sunrpc/debug.h               2  * linux/include/linux/sunrpc/debug.h
  4  *                                                  3  *
  5  * Debugging support for sunrpc module              4  * Debugging support for sunrpc module
  6  *                                                  5  *
  7  * Copyright (C) 1996, Olaf Kirch <okir@monad.      6  * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
  8  */                                                 7  */
  9                                                     8 
 10 #ifndef _UAPI_LINUX_SUNRPC_DEBUG_H_                 9 #ifndef _UAPI_LINUX_SUNRPC_DEBUG_H_
 11 #define _UAPI_LINUX_SUNRPC_DEBUG_H_                10 #define _UAPI_LINUX_SUNRPC_DEBUG_H_
 12                                                    11 
 13 /*                                                 12 /*
 14  * RPC debug facilities                            13  * RPC debug facilities
 15  */                                                14  */
 16 #define RPCDBG_XPRT             0x0001             15 #define RPCDBG_XPRT             0x0001
 17 #define RPCDBG_CALL             0x0002             16 #define RPCDBG_CALL             0x0002
 18 #define RPCDBG_DEBUG            0x0004             17 #define RPCDBG_DEBUG            0x0004
 19 #define RPCDBG_NFS              0x0008             18 #define RPCDBG_NFS              0x0008
 20 #define RPCDBG_AUTH             0x0010             19 #define RPCDBG_AUTH             0x0010
 21 #define RPCDBG_BIND             0x0020             20 #define RPCDBG_BIND             0x0020
 22 #define RPCDBG_SCHED            0x0040             21 #define RPCDBG_SCHED            0x0040
 23 #define RPCDBG_TRANS            0x0080             22 #define RPCDBG_TRANS            0x0080
 24 #define RPCDBG_SVCXPRT          0x0100             23 #define RPCDBG_SVCXPRT          0x0100
 25 #define RPCDBG_SVCDSP           0x0200             24 #define RPCDBG_SVCDSP           0x0200
 26 #define RPCDBG_MISC             0x0400             25 #define RPCDBG_MISC             0x0400
 27 #define RPCDBG_CACHE            0x0800             26 #define RPCDBG_CACHE            0x0800
 28 #define RPCDBG_ALL              0x7fff             27 #define RPCDBG_ALL              0x7fff
 29                                                    28 
 30                                                    29 
 31 /*                                                 30 /*
 32  * Declarations for the sysctl debug interface     31  * Declarations for the sysctl debug interface, which allows to read or
 33  * change the debug flags for rpc, nfs, nfsd,      32  * change the debug flags for rpc, nfs, nfsd, and lockd. Since the sunrpc
 34  * module currently registers its sysctl table     33  * module currently registers its sysctl table dynamically, the sysctl path
 35  * for module FOO is <CTL_SUNRPC, CTL_FOODEBUG     34  * for module FOO is <CTL_SUNRPC, CTL_FOODEBUG>.
 36  */                                                35  */
 37                                                    36 
 38 enum {                                             37 enum {
 39         CTL_RPCDEBUG = 1,                          38         CTL_RPCDEBUG = 1,
 40         CTL_NFSDEBUG,                              39         CTL_NFSDEBUG,
 41         CTL_NFSDDEBUG,                             40         CTL_NFSDDEBUG,
 42         CTL_NLMDEBUG,                              41         CTL_NLMDEBUG,
 43         CTL_SLOTTABLE_UDP,                         42         CTL_SLOTTABLE_UDP,
 44         CTL_SLOTTABLE_TCP,                         43         CTL_SLOTTABLE_TCP,
 45         CTL_MIN_RESVPORT,                          44         CTL_MIN_RESVPORT,
 46         CTL_MAX_RESVPORT,                          45         CTL_MAX_RESVPORT,
 47 };                                                 46 };
 48                                                    47 
 49 #endif /* _UAPI_LINUX_SUNRPC_DEBUG_H_ */           48 #endif /* _UAPI_LINUX_SUNRPC_DEBUG_H_ */
 50                                                    49 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php