From: Yang Li Date: Wed, 24 Feb 2021 20:02:55 +0000 (-0800) Subject: mm/swap_slots.c: remove redundant NULL check X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=191a7221b70d7fa7005404f508e1802f6556ba78;p=linux.git mm/swap_slots.c: remove redundant NULL check Fix below warnings reported by coccicheck: mm/swap_slots.c:197:3-9: WARNING: NULL check before some freeing functions is not needed. Link: https://lkml.kernel.org/r/1611214229-11225-1-git-send-email-abaci-bugfix@linux.alibaba.com Signed-off-by: Yang Li Reported-by: Abaci Robot Reviewed-by: Andrew Morton Reviewed-by: David Hildenbrand Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/swap_slots.c b/mm/swap_slots.c index 0357fbe706454..be9de6d5b516f 100644 --- a/mm/swap_slots.c +++ b/mm/swap_slots.c @@ -193,8 +193,7 @@ static void drain_slots_cache_cpu(unsigned int cpu, unsigned int type, cache->slots_ret = NULL; } spin_unlock_irq(&cache->free_lock); - if (slots) - kvfree(slots); + kvfree(slots); } }