linux-block.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* blk: delete the redundant NULL judgment in put_io_context()
@ 2020-07-31  2:18 brookxu
  0 siblings, 0 replies; only message in thread
From: brookxu @ 2020-07-31  2:18 UTC (permalink / raw)
  To: axboe; +Cc: linux-block

The context of calling put_io_context() will determine whether the ioc
is NULL or the ioc is obtained from icq, which can ensure that the ioc
is not NULL, so the repeated judgment here may be redundant.

Signed-off-by: Chunguang Xu <brookxu@tencent.com>
---
 block/blk-ioc.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/block/blk-ioc.c b/block/blk-ioc.c
index 9df50fb..b34eae5 100644
--- a/block/blk-ioc.c
+++ b/block/blk-ioc.c
@@ -138,9 +138,6 @@ void put_io_context(struct io_context *ioc)
     unsigned long flags;
     bool free_ioc = false;
 
-    if (ioc == NULL)
-        return;
-
     BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
 
     /*
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-07-31  2:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-31  2:18 blk: delete the redundant NULL judgment in put_io_context() brookxu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).