OSDN Git Service

lightnvm: pblk: remove some unnecessary NULL checks
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 29 Mar 2018 22:05:23 +0000 (00:05 +0200)
committerJens Axboe <axboe@kernel.dk>
Thu, 29 Mar 2018 23:29:09 +0000 (17:29 -0600)
Smatch complains that flush_workqueue() dereferences the work queue
pointer but then we check if it's NULL on the next line when it's too
late.  These NULL checks can be removed because the module won't load if
we can't allocate the work queues.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Matias Bjørling <mb@lightnvm.io>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/lightnvm/pblk-gc.c

index 7143b0f..6851a5c 100644 (file)
@@ -664,12 +664,10 @@ void pblk_gc_exit(struct pblk *pblk)
                kthread_stop(gc->gc_reader_ts);
 
        flush_workqueue(gc->gc_reader_wq);
-       if (gc->gc_reader_wq)
-               destroy_workqueue(gc->gc_reader_wq);
+       destroy_workqueue(gc->gc_reader_wq);
 
        flush_workqueue(gc->gc_line_reader_wq);
-       if (gc->gc_line_reader_wq)
-               destroy_workqueue(gc->gc_line_reader_wq);
+       destroy_workqueue(gc->gc_line_reader_wq);
 
        if (gc->gc_writer_ts)
                kthread_stop(gc->gc_writer_ts);