diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-03-12 16:20:55 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-03-14 13:42:35 -0400 |
commit | 4ccda2cdd8d156b6f49440653d5d6997e0facf97 (patch) | |
tree | fd75203f002edfd1657c9ca7bcb5494a7b783cf1 /net/sunrpc/auth.c | |
parent | af093835774931de898a9baf7b4041fa0d100f77 (diff) |
SUNRPC: Clean up rpcauth_bindcred()
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/auth.c')
-rw-r--r-- | net/sunrpc/auth.c | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/net/sunrpc/auth.c b/net/sunrpc/auth.c index b0f2b2ee7cc0..1cdb163c4f89 100644 --- a/net/sunrpc/auth.c +++ b/net/sunrpc/auth.c | |||
@@ -375,7 +375,15 @@ rpcauth_init_cred(struct rpc_cred *cred, const struct auth_cred *acred, | |||
375 | } | 375 | } |
376 | EXPORT_SYMBOL_GPL(rpcauth_init_cred); | 376 | EXPORT_SYMBOL_GPL(rpcauth_init_cred); |
377 | 377 | ||
378 | void | 378 | static void |
379 | rpcauth_generic_bind_cred(struct rpc_task *task, struct rpc_cred *cred) | ||
380 | { | ||
381 | task->tk_msg.rpc_cred = get_rpccred(cred); | ||
382 | dprintk("RPC: %5u holding %s cred %p\n", task->tk_pid, | ||
383 | cred->cr_auth->au_ops->au_name, cred); | ||
384 | } | ||
385 | |||
386 | static void | ||
379 | rpcauth_bind_root_cred(struct rpc_task *task) | 387 | rpcauth_bind_root_cred(struct rpc_task *task) |
380 | { | 388 | { |
381 | struct rpc_auth *auth = task->tk_client->cl_auth; | 389 | struct rpc_auth *auth = task->tk_client->cl_auth; |
@@ -394,8 +402,8 @@ rpcauth_bind_root_cred(struct rpc_task *task) | |||
394 | task->tk_status = PTR_ERR(ret); | 402 | task->tk_status = PTR_ERR(ret); |
395 | } | 403 | } |
396 | 404 | ||
397 | void | 405 | static void |
398 | rpcauth_bindcred(struct rpc_task *task) | 406 | rpcauth_bind_new_cred(struct rpc_task *task) |
399 | { | 407 | { |
400 | struct rpc_auth *auth = task->tk_client->cl_auth; | 408 | struct rpc_auth *auth = task->tk_client->cl_auth; |
401 | struct rpc_cred *ret; | 409 | struct rpc_cred *ret; |
@@ -410,14 +418,14 @@ rpcauth_bindcred(struct rpc_task *task) | |||
410 | } | 418 | } |
411 | 419 | ||
412 | void | 420 | void |
413 | rpcauth_holdcred(struct rpc_task *task) | 421 | rpcauth_bindcred(struct rpc_task *task, struct rpc_cred *cred, int flags) |
414 | { | 422 | { |
415 | struct rpc_cred *cred = task->tk_msg.rpc_cred; | 423 | if (cred != NULL) |
416 | if (cred != NULL) { | 424 | rpcauth_generic_bind_cred(task, cred); |
417 | get_rpccred(cred); | 425 | else if (flags & RPC_TASK_ROOTCREDS) |
418 | dprintk("RPC: %5u holding %s cred %p\n", task->tk_pid, | 426 | rpcauth_bind_root_cred(task); |
419 | cred->cr_auth->au_ops->au_name, cred); | 427 | else |
420 | } | 428 | rpcauth_bind_new_cred(task); |
421 | } | 429 | } |
422 | 430 | ||
423 | void | 431 | void |