Commit 7f476715 authored by zhong jiang's avatar zhong jiang Committed by Linus Torvalds

lib/sg_pool.c: remove unnecessary null check when freeing object

mempool_destroy(NULL) and kmem_cache_destroy(NULL) are legal

Link: http://lkml.kernel.org/r/1533054107-35657-1-git-send-email-zhongjiang@huawei.comSigned-off-by: default avatarzhong jiang <zhongjiang@huawei.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7a20c2fa
...@@ -148,10 +148,9 @@ static __init int sg_pool_init(void) ...@@ -148,10 +148,9 @@ static __init int sg_pool_init(void)
cleanup_sdb: cleanup_sdb:
for (i = 0; i < SG_MEMPOOL_NR; i++) { for (i = 0; i < SG_MEMPOOL_NR; i++) {
struct sg_pool *sgp = sg_pools + i; struct sg_pool *sgp = sg_pools + i;
if (sgp->pool)
mempool_destroy(sgp->pool); mempool_destroy(sgp->pool);
if (sgp->slab) kmem_cache_destroy(sgp->slab);
kmem_cache_destroy(sgp->slab);
} }
return -ENOMEM; return -ENOMEM;
......
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