[PATCH] fs/isofs: delete unnecessary checks before brelse()

cgel.zte@gmail.com posted 1 patch 3 years, 7 months ago
fs/isofs/dir.c    | 3 +--
fs/isofs/export.c | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
[PATCH] fs/isofs: delete unnecessary checks before brelse()
Posted by cgel.zte@gmail.com 3 years, 7 months ago
From: Minghao Chi <chi.minghao@zte.com.cn>

The brelse() function tests whether its argument is NULL
and then returns immediately.
Thus remove the tests which are not needed around the shown calls.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn>
---
 fs/isofs/dir.c    | 3 +--
 fs/isofs/export.c | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/fs/isofs/dir.c b/fs/isofs/dir.c
index eb2f8273e6f1..e90fc2d87bb4 100644
--- a/fs/isofs/dir.c
+++ b/fs/isofs/dir.c
@@ -236,8 +236,7 @@ static int do_isofs_readdir(struct inode *inode, struct file *file,
 		}
 		ctx->pos += de_len;
 	}
-	if (bh)
-		brelse(bh);
+	brelse(bh);
 	return 0;
 }
 
diff --git a/fs/isofs/export.c b/fs/isofs/export.c
index 35768a63fb1d..11bf964f4886 100644
--- a/fs/isofs/export.c
+++ b/fs/isofs/export.c
@@ -102,8 +102,7 @@ static struct dentry *isofs_export_get_parent(struct dentry *child)
 	rv = d_obtain_alias(isofs_iget(child_inode->i_sb, parent_block,
 				     parent_offset));
  out:
-	if (bh)
-		brelse(bh);
+	brelse(bh);
 	return rv;
 }
 
-- 
2.25.1