summaryrefslogtreecommitdiffstats
path: root/include/linux/sunrpc
diff options
context:
space:
mode:
authorTrond Myklebust <trond.myklebust@primarydata.com>2016-05-16 17:42:42 -0400
committerAnna Schumaker <Anna.Schumaker@Netapp.com>2016-05-17 15:48:06 -0400
commit9a8f6b5ea275ff01fc8ef3b8630a3d4ed6b0a362 (patch)
tree5016f7b85eb31806fca6e96e473ce60b3b631b58 /include/linux/sunrpc
parentf538d0ba5be39c52addff01c7ec31f0b90e57dfc (diff)
SUNRPC: Ensure get_rpccred() and put_rpccred() can take NULL arguments
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'include/linux/sunrpc')
-rw-r--r--include/linux/sunrpc/auth.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/sunrpc/auth.h b/include/linux/sunrpc/auth.h
index 6f36b2bf3e05..899791573a40 100644
--- a/include/linux/sunrpc/auth.h
+++ b/include/linux/sunrpc/auth.h
@@ -202,7 +202,8 @@ char * rpcauth_stringify_acceptor(struct rpc_cred *);
202static inline 202static inline
203struct rpc_cred * get_rpccred(struct rpc_cred *cred) 203struct rpc_cred * get_rpccred(struct rpc_cred *cred)
204{ 204{
205 atomic_inc(&cred->cr_count); 205 if (cred != NULL)
206 atomic_inc(&cred->cr_count);
206 return cred; 207 return cred;
207} 208}
208 209