All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lightnvm: fix unnecessary NULL check warnings
@ 2021-02-02  1:41 Tian Tao
  2021-02-02  1:47 ` Chaitanya Kulkarni
  0 siblings, 1 reply; 5+ messages in thread
From: Tian Tao @ 2021-02-02  1:41 UTC (permalink / raw)
  To: mb; +Cc: linux-block

Remove NULL checks before vfree() to fix these warnings:
./drivers/lightnvm/pblk-gc.c:27:2-7: WARNING: NULL check before some
freeing functions is not needed.

Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
---
 drivers/lightnvm/pblk-gc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/lightnvm/pblk-gc.c b/drivers/lightnvm/pblk-gc.c
index 2581eeb..b31658b 100644
--- a/drivers/lightnvm/pblk-gc.c
+++ b/drivers/lightnvm/pblk-gc.c
@@ -23,8 +23,7 @@
 
 static void pblk_gc_free_gc_rq(struct pblk_gc_rq *gc_rq)
 {
-	if (gc_rq->data)
-		vfree(gc_rq->data);
+	vfree(gc_rq->data);
 	kfree(gc_rq);
 }
 
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-02-02 18:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-02  1:41 [PATCH] lightnvm: fix unnecessary NULL check warnings Tian Tao
2021-02-02  1:47 ` Chaitanya Kulkarni
2021-02-02 16:00   ` Matias Bjørling
2021-02-02 17:24     ` Christoph Hellwig
2021-02-02 18:38       ` Matias Bjørling

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.