提交 fb2a525c 编写于 作者: A Anna Schumaker 提交者: Trond Myklebust

NFS: Combine nfs_idmap_{init|quit}() and nfs_idmap_{init|quit}_keyring()

The idmap_init() and idmap_quit() functions only exist to call the
_keyring() version.  Let's just call the keyring() functions directly.
Signed-off-by: NAnna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: NTrond Myklebust <trond.myklebust@primarydata.com>
上级 d8efa4e6
...@@ -184,7 +184,7 @@ static struct key_type key_type_id_resolver = { ...@@ -184,7 +184,7 @@ static struct key_type key_type_id_resolver = {
.read = user_read, .read = user_read,
}; };
static int nfs_idmap_init_keyring(void) int nfs_idmap_init(void)
{ {
struct cred *cred; struct cred *cred;
struct key *keyring; struct key *keyring;
...@@ -230,7 +230,7 @@ static int nfs_idmap_init_keyring(void) ...@@ -230,7 +230,7 @@ static int nfs_idmap_init_keyring(void)
return ret; return ret;
} }
static void nfs_idmap_quit_keyring(void) void nfs_idmap_quit(void)
{ {
key_revoke(id_resolver_cache->thread_keyring); key_revoke(id_resolver_cache->thread_keyring);
unregister_key_type(&key_type_id_resolver); unregister_key_type(&key_type_id_resolver);
...@@ -492,16 +492,6 @@ nfs_idmap_delete(struct nfs_client *clp) ...@@ -492,16 +492,6 @@ nfs_idmap_delete(struct nfs_client *clp)
kfree(idmap); kfree(idmap);
} }
int nfs_idmap_init(void)
{
return nfs_idmap_init_keyring();
}
void nfs_idmap_quit(void)
{
nfs_idmap_quit_keyring();
}
static int nfs_idmap_prepare_message(char *desc, struct idmap *idmap, static int nfs_idmap_prepare_message(char *desc, struct idmap *idmap,
struct idmap_msg *im, struct idmap_msg *im,
struct rpc_pipe_msg *msg) struct rpc_pipe_msg *msg)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册