diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-07-14 15:39:58 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-01-30 02:05:28 -0500 |
commit | a6eaf8bdf9308b51ec84e358915fc65400029519 (patch) | |
tree | f704135c09272357d9e9bf2d2a39636006518c3e /net/sunrpc/sysctl.c | |
parent | 93a44a75b97b9d8a03dd3d3f3247c3d0ec46aa4c (diff) | |
download | linux-3.10-a6eaf8bdf9308b51ec84e358915fc65400029519.tar.gz linux-3.10-a6eaf8bdf9308b51ec84e358915fc65400029519.tar.bz2 linux-3.10-a6eaf8bdf9308b51ec84e358915fc65400029519.zip |
SUNRPC: Move exported declarations to the function declarations
Do this for all RPC client related functions and XDR functions.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/sysctl.c')
-rw-r--r-- | net/sunrpc/sysctl.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/sunrpc/sysctl.c b/net/sunrpc/sysctl.c index 2be714e9b38..c879732ae9d 100644 --- a/net/sunrpc/sysctl.c +++ b/net/sunrpc/sysctl.c @@ -23,9 +23,16 @@ * Declare the debug flags here */ unsigned int rpc_debug; +EXPORT_SYMBOL(rpc_debug); + unsigned int nfs_debug; +EXPORT_SYMBOL(nfs_debug); + unsigned int nfsd_debug; +EXPORT_SYMBOL(nfsd_debug); + unsigned int nlm_debug; +EXPORT_SYMBOL(nlm_debug); #ifdef RPC_DEBUG |