direct-io.hg
changeset 2070:dd8e4c63f93c
bitkeeper revision 1.1140 (410ff439WlfI3QwLq1jc8FFQpSSvKA)
remove unnecessary 2.4 file from sparse tree
remove unnecessary 2.4 file from sparse tree
author | kaf24@scramble.cl.cam.ac.uk |
---|---|
date | Tue Aug 03 20:23:21 2004 +0000 (2004-08-03) |
parents | 1bf968edc6a5 |
children | 027b642fff57 |
files | .rootkeys linux-2.4.26-xen-sparse/include/linux/sunrpc/debug.h |
line diff
1.1 --- a/.rootkeys Tue Aug 03 18:11:17 2004 +0000 1.2 +++ b/.rootkeys Tue Aug 03 20:23:21 2004 +0000 1.3 @@ -116,7 +116,6 @@ 40659defgWA92arexpMGn8X3QMDj3w linux-2.4 1.4 3f056927gMHl7mWB89rb73JahbhQIA linux-2.4.26-xen-sparse/include/linux/blk.h 1.5 401c0590D_kwJDU59X8NyvqSv_Cl2A linux-2.4.26-xen-sparse/include/linux/sched.h 1.6 40a248afgI0_JKthdYAe8beVfXSTpQ linux-2.4.26-xen-sparse/include/linux/skbuff.h 1.7 -3e5a4e686V0nioX2ZpFf056sgvdiQw linux-2.4.26-xen-sparse/include/linux/sunrpc/debug.h 1.8 401c0592pLrp_aCbQRo9GXiYQQaVVA linux-2.4.26-xen-sparse/include/linux/timer.h 1.9 3f9d4b44247udoqWEgFkaHiWv6Uvyg linux-2.4.26-xen-sparse/kernel/time.c 1.10 401c059bjLBFYHRD4Py2uM3eA1D4zQ linux-2.4.26-xen-sparse/kernel/timer.c
2.1 --- a/linux-2.4.26-xen-sparse/include/linux/sunrpc/debug.h Tue Aug 03 18:11:17 2004 +0000 2.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 2.3 @@ -1,95 +0,0 @@ 2.4 -/* 2.5 - * linux/include/linux/sunrpc/debug.h 2.6 - * 2.7 - * Debugging support for sunrpc module 2.8 - * 2.9 - * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> 2.10 - */ 2.11 - 2.12 -#ifndef _LINUX_SUNRPC_DEBUG_H_ 2.13 -#define _LINUX_SUNRPC_DEBUG_H_ 2.14 - 2.15 -#include <linux/config.h> 2.16 - 2.17 -#include <linux/timer.h> 2.18 -#include <linux/tqueue.h> 2.19 - 2.20 -/* 2.21 - * Enable RPC debugging/profiling. 2.22 - */ 2.23 -/*#ifdef CONFIG_SYSCTL*/ 2.24 -/*#define RPC_DEBUG*/ 2.25 -/*#endif*/ 2.26 -/* #define RPC_PROFILE */ 2.27 - 2.28 -/* 2.29 - * RPC debug facilities 2.30 - */ 2.31 -#define RPCDBG_XPRT 0x0001 2.32 -#define RPCDBG_CALL 0x0002 2.33 -#define RPCDBG_DEBUG 0x0004 2.34 -#define RPCDBG_NFS 0x0008 2.35 -#define RPCDBG_AUTH 0x0010 2.36 -#define RPCDBG_PMAP 0x0020 2.37 -#define RPCDBG_SCHED 0x0040 2.38 -#define RPCDBG_SVCSOCK 0x0100 2.39 -#define RPCDBG_SVCDSP 0x0200 2.40 -#define RPCDBG_MISC 0x0400 2.41 -#define RPCDBG_ALL 0x7fff 2.42 - 2.43 -#ifdef __KERNEL__ 2.44 - 2.45 -/* 2.46 - * Debugging macros etc 2.47 - */ 2.48 -#ifdef RPC_DEBUG 2.49 -extern unsigned int rpc_debug; 2.50 -extern unsigned int nfs_debug; 2.51 -extern unsigned int nfsd_debug; 2.52 -extern unsigned int nlm_debug; 2.53 -#endif 2.54 - 2.55 -#define dprintk(args...) dfprintk(FACILITY, ## args) 2.56 - 2.57 -#undef ifdebug 2.58 -#ifdef RPC_DEBUG 2.59 -# define ifdebug(fac) if (rpc_debug & RPCDBG_##fac) 2.60 -# define dfprintk(fac, args...) do { ifdebug(fac) printk(args); } while(0) 2.61 -# define RPC_IFDEBUG(x) x 2.62 -#else 2.63 -# define dfprintk(fac, args...) do ; while (0) 2.64 -# define RPC_IFDEBUG(x) 2.65 -#endif 2.66 - 2.67 -#ifdef RPC_PROFILE 2.68 -# define pprintk(args...) printk(## args) 2.69 -#else 2.70 -# define pprintk(args...) do ; while (0) 2.71 -#endif 2.72 - 2.73 -/* 2.74 - * Sysctl interface for RPC debugging 2.75 - */ 2.76 -#ifdef RPC_DEBUG 2.77 -void rpc_register_sysctl(void); 2.78 -void rpc_unregister_sysctl(void); 2.79 -#endif 2.80 - 2.81 -#endif /* __KERNEL__ */ 2.82 - 2.83 -/* 2.84 - * Declarations for the sysctl debug interface, which allows to read or 2.85 - * change the debug flags for rpc, nfs, nfsd, and lockd. Since the sunrpc 2.86 - * module currently registers its sysctl table dynamically, the sysctl path 2.87 - * for module FOO is <CTL_SUNRPC, CTL_FOODEBUG>. 2.88 - */ 2.89 -#define CTL_SUNRPC 7249 /* arbitrary and hopefully unused */ 2.90 - 2.91 -enum { 2.92 - CTL_RPCDEBUG = 1, 2.93 - CTL_NFSDEBUG, 2.94 - CTL_NFSDDEBUG, 2.95 - CTL_NLMDEBUG, 2.96 -}; 2.97 - 2.98 -#endif /* _LINUX_SUNRPC_DEBUG_H_ */