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/auth.c | |
parent | 93a44a75b97b9d8a03dd3d3f3247c3d0ec46aa4c (diff) |
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/auth.c')
-rw-r--r-- | net/sunrpc/auth.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net/sunrpc/auth.c b/net/sunrpc/auth.c index 1ea27559b1de..1025a0ea9bb7 100644 --- a/net/sunrpc/auth.c +++ b/net/sunrpc/auth.c | |||
@@ -51,6 +51,7 @@ rpcauth_register(const struct rpc_authops *ops) | |||
51 | spin_unlock(&rpc_authflavor_lock); | 51 | spin_unlock(&rpc_authflavor_lock); |
52 | return ret; | 52 | return ret; |
53 | } | 53 | } |
54 | EXPORT_SYMBOL(rpcauth_register); | ||
54 | 55 | ||
55 | int | 56 | int |
56 | rpcauth_unregister(const struct rpc_authops *ops) | 57 | rpcauth_unregister(const struct rpc_authops *ops) |
@@ -68,6 +69,7 @@ rpcauth_unregister(const struct rpc_authops *ops) | |||
68 | spin_unlock(&rpc_authflavor_lock); | 69 | spin_unlock(&rpc_authflavor_lock); |
69 | return ret; | 70 | return ret; |
70 | } | 71 | } |
72 | EXPORT_SYMBOL(rpcauth_unregister); | ||
71 | 73 | ||
72 | struct rpc_auth * | 74 | struct rpc_auth * |
73 | rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt) | 75 | rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt) |
@@ -102,6 +104,7 @@ rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt) | |||
102 | out: | 104 | out: |
103 | return auth; | 105 | return auth; |
104 | } | 106 | } |
107 | EXPORT_SYMBOL(rpcauth_create); | ||
105 | 108 | ||
106 | void | 109 | void |
107 | rpcauth_release(struct rpc_auth *auth) | 110 | rpcauth_release(struct rpc_auth *auth) |
@@ -151,6 +154,7 @@ rpcauth_init_credcache(struct rpc_auth *auth) | |||
151 | auth->au_credcache = new; | 154 | auth->au_credcache = new; |
152 | return 0; | 155 | return 0; |
153 | } | 156 | } |
157 | EXPORT_SYMBOL(rpcauth_init_credcache); | ||
154 | 158 | ||
155 | /* | 159 | /* |
156 | * Destroy a list of credentials | 160 | * Destroy a list of credentials |
@@ -213,6 +217,7 @@ rpcauth_destroy_credcache(struct rpc_auth *auth) | |||
213 | kfree(cache); | 217 | kfree(cache); |
214 | } | 218 | } |
215 | } | 219 | } |
220 | EXPORT_SYMBOL(rpcauth_destroy_credcache); | ||
216 | 221 | ||
217 | /* | 222 | /* |
218 | * Remove stale credentials. Avoid sleeping inside the loop. | 223 | * Remove stale credentials. Avoid sleeping inside the loop. |
@@ -332,6 +337,7 @@ found: | |||
332 | out: | 337 | out: |
333 | return cred; | 338 | return cred; |
334 | } | 339 | } |
340 | EXPORT_SYMBOL(rpcauth_lookup_credcache); | ||
335 | 341 | ||
336 | struct rpc_cred * | 342 | struct rpc_cred * |
337 | rpcauth_lookupcred(struct rpc_auth *auth, int flags) | 343 | rpcauth_lookupcred(struct rpc_auth *auth, int flags) |
@@ -350,6 +356,7 @@ rpcauth_lookupcred(struct rpc_auth *auth, int flags) | |||
350 | put_group_info(acred.group_info); | 356 | put_group_info(acred.group_info); |
351 | return ret; | 357 | return ret; |
352 | } | 358 | } |
359 | EXPORT_SYMBOL(rpcauth_lookupcred); | ||
353 | 360 | ||
354 | void | 361 | void |
355 | rpcauth_init_cred(struct rpc_cred *cred, const struct auth_cred *acred, | 362 | rpcauth_init_cred(struct rpc_cred *cred, const struct auth_cred *acred, |
@@ -435,6 +442,7 @@ need_lock: | |||
435 | out_destroy: | 442 | out_destroy: |
436 | cred->cr_ops->crdestroy(cred); | 443 | cred->cr_ops->crdestroy(cred); |
437 | } | 444 | } |
445 | EXPORT_SYMBOL(put_rpccred); | ||
438 | 446 | ||
439 | void | 447 | void |
440 | rpcauth_unbindcred(struct rpc_task *task) | 448 | rpcauth_unbindcred(struct rpc_task *task) |