Commit de7a8ce3 authored by Trond Myklebust's avatar Trond Myklebust

SUNRPC: Rename rpcauth_destroy() to rpcauth_release()

Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 5e1550d6
...@@ -128,7 +128,7 @@ extern struct rpc_authops authdes_ops; ...@@ -128,7 +128,7 @@ extern struct rpc_authops authdes_ops;
int rpcauth_register(struct rpc_authops *); int rpcauth_register(struct rpc_authops *);
int rpcauth_unregister(struct rpc_authops *); int rpcauth_unregister(struct rpc_authops *);
struct rpc_auth * rpcauth_create(rpc_authflavor_t, struct rpc_clnt *); struct rpc_auth * rpcauth_create(rpc_authflavor_t, struct rpc_clnt *);
void rpcauth_destroy(struct rpc_auth *); void rpcauth_release(struct rpc_auth *);
struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int); struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int);
struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int); struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int);
struct rpc_cred * rpcauth_bindcred(struct rpc_task *); struct rpc_cred * rpcauth_bindcred(struct rpc_task *);
......
...@@ -93,7 +93,7 @@ rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt) ...@@ -93,7 +93,7 @@ rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt)
if (IS_ERR(auth)) if (IS_ERR(auth))
return auth; return auth;
if (clnt->cl_auth) if (clnt->cl_auth)
rpcauth_destroy(clnt->cl_auth); rpcauth_release(clnt->cl_auth);
clnt->cl_auth = auth; clnt->cl_auth = auth;
out: out:
...@@ -101,7 +101,7 @@ rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt) ...@@ -101,7 +101,7 @@ rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt)
} }
void void
rpcauth_destroy(struct rpc_auth *auth) rpcauth_release(struct rpc_auth *auth)
{ {
if (!atomic_dec_and_test(&auth->au_count)) if (!atomic_dec_and_test(&auth->au_count))
return; return;
......
...@@ -353,7 +353,7 @@ rpc_free_client(struct kref *kref) ...@@ -353,7 +353,7 @@ rpc_free_client(struct kref *kref)
dprintk("RPC: destroying %s client for %s\n", dprintk("RPC: destroying %s client for %s\n",
clnt->cl_protname, clnt->cl_server); clnt->cl_protname, clnt->cl_server);
if (clnt->cl_auth) { if (clnt->cl_auth) {
rpcauth_destroy(clnt->cl_auth); rpcauth_release(clnt->cl_auth);
clnt->cl_auth = NULL; clnt->cl_auth = NULL;
} }
if (!IS_ERR(clnt->cl_dentry)) { if (!IS_ERR(clnt->cl_dentry)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment