Commit 5bd5f581 authored by Akinobu Mita's avatar Akinobu Mita Committed by Linus Torvalds

sunrpc: fix error path in module_init

register_rpc_pipefs() needs to clean up rpc_inode_cache
by kmem_cache_destroy() on register_filesystem() failure.

init_sunrpc() needs to unregister rpc_pipe_fs by unregister_rpc_pipefs()
when rpc_init_mempool() returns error.
Signed-off-by: default avatarAkinobu Mita <akinobu.mita@gmail.com>
Cc: Neil Brown <neilb@suse.de>
Cc: Trond Myklebust <trond.myklebust@fys.uio.no>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent cd123012
...@@ -845,6 +845,8 @@ init_once(void * foo, struct kmem_cache * cachep, unsigned long flags) ...@@ -845,6 +845,8 @@ init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
int register_rpc_pipefs(void) int register_rpc_pipefs(void)
{ {
int err;
rpc_inode_cachep = kmem_cache_create("rpc_inode_cache", rpc_inode_cachep = kmem_cache_create("rpc_inode_cache",
sizeof(struct rpc_inode), sizeof(struct rpc_inode),
0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT| 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
...@@ -852,7 +854,12 @@ int register_rpc_pipefs(void) ...@@ -852,7 +854,12 @@ int register_rpc_pipefs(void)
init_once, NULL); init_once, NULL);
if (!rpc_inode_cachep) if (!rpc_inode_cachep)
return -ENOMEM; return -ENOMEM;
register_filesystem(&rpc_pipe_fs_type); err = register_filesystem(&rpc_pipe_fs_type);
if (err) {
kmem_cache_destroy(rpc_inode_cachep);
return err;
}
return 0; return 0;
} }
......
...@@ -146,9 +146,11 @@ init_sunrpc(void) ...@@ -146,9 +146,11 @@ init_sunrpc(void)
int err = register_rpc_pipefs(); int err = register_rpc_pipefs();
if (err) if (err)
goto out; goto out;
err = rpc_init_mempool() != 0; err = rpc_init_mempool();
if (err) if (err) {
unregister_rpc_pipefs();
goto out; goto out;
}
#ifdef RPC_DEBUG #ifdef RPC_DEBUG
rpc_register_sysctl(); rpc_register_sysctl();
#endif #endif
......
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