diff options
author | Trond Myklebust <trond.myklebust@hammerspace.com> | 2018-11-12 16:06:51 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-12-01 09:37:33 +0100 |
commit | ab1a520669381c68b542f5c110a01a514ac28950 (patch) | |
tree | b44b1ec2a5396430888b893caa07ab3992125393 | |
parent | 487d58a9c3e5b2357b8bef6461ae228ad8e73f83 (diff) | |
download | linux-stable-ab1a520669381c68b542f5c110a01a514ac28950.tar.gz linux-stable-ab1a520669381c68b542f5c110a01a514ac28950.tar.bz2 linux-stable-ab1a520669381c68b542f5c110a01a514ac28950.zip |
SUNRPC: Fix a bogus get/put in generic_key_to_expire()
[ Upstream commit e3d5e573a54dabdc0f9f3cb039d799323372b251 ]
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | net/sunrpc/auth_generic.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/net/sunrpc/auth_generic.c b/net/sunrpc/auth_generic.c index f1df9837f1ac..1ac08dcbf85d 100644 --- a/net/sunrpc/auth_generic.c +++ b/net/sunrpc/auth_generic.c @@ -281,13 +281,7 @@ static bool generic_key_to_expire(struct rpc_cred *cred) { struct auth_cred *acred = &container_of(cred, struct generic_cred, gc_base)->acred; - bool ret; - - get_rpccred(cred); - ret = test_bit(RPC_CRED_KEY_EXPIRE_SOON, &acred->ac_flags); - put_rpccred(cred); - - return ret; + return test_bit(RPC_CRED_KEY_EXPIRE_SOON, &acred->ac_flags); } static const struct rpc_credops generic_credops = { |