diff options
author | J. Bruce Fields <bfields@redhat.com> | 2015-11-20 23:45:35 +0300 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2015-11-24 20:39:16 +0300 |
commit | 6496500cf15f29ac8afc565e2e4b6f92a1324860 (patch) | |
tree | 11b24d4171b2c6beefdd38d37add9f6149424c05 /net/sunrpc/svcauth.c | |
parent | d3f03403a8735cebfcc16db4edfbf07c5c7421f5 (diff) | |
download | linux-6496500cf15f29ac8afc565e2e4b6f92a1324860.tar.xz |
svcrpc: move some initialization to common code
Minor cleanup, no change in behavior.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/svcauth.c')
-rw-r--r-- | net/sunrpc/svcauth.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sunrpc/svcauth.c b/net/sunrpc/svcauth.c index 79c0f3459b5c..69841db1f533 100644 --- a/net/sunrpc/svcauth.c +++ b/net/sunrpc/svcauth.c @@ -55,6 +55,7 @@ svc_authenticate(struct svc_rqst *rqstp, __be32 *authp) spin_unlock(&authtab_lock); rqstp->rq_auth_slack = 0; + init_svc_cred(&rqstp->rq_cred); rqstp->rq_authop = aops; return aops->accept(rqstp, authp); @@ -63,6 +64,7 @@ EXPORT_SYMBOL_GPL(svc_authenticate); int svc_set_client(struct svc_rqst *rqstp) { + rqstp->rq_client = NULL; return rqstp->rq_authop->set_client(rqstp); } EXPORT_SYMBOL_GPL(svc_set_client); |