aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/extents_status.c
diff options
context:
space:
mode:
authorJason Yan <yanaijie@huawei.com>2020-04-20 12:29:18 +0800
committerTheodore Ts'o <tytso@mit.edu>2020-06-03 23:16:49 -0400
commit39c0ae163f3b3ae691e7cce226ba1984ef6456b1 (patch)
tree4a5656aee800ea057e0a16eaded468cb449b5e18 /fs/ext4/extents_status.c
parent493e83aafa02316bc79ec90041c378d7902194fa (diff)
downloadlinux-39c0ae163f3b3ae691e7cce226ba1984ef6456b1.tar.gz
ext4: remove unnecessary comparisons to bool
Fix the following coccicheck warning: fs/ext4/extents_status.c:1057:5-28: WARNING: Comparison to bool fs/ext4/inode.c:2314:18-24: WARNING: Comparison to bool Signed-off-by: Jason Yan <yanaijie@huawei.com> Reviewed-by: Ritesh Harjani <riteshh@linux.ibm.com> Link: https://lore.kernel.org/r/20200420042918.19459-1-yanaijie@huawei.com Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/extents_status.c')
-rw-r--r--fs/ext4/extents_status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/extents_status.c b/fs/ext4/extents_status.c
index d996b44d2265b..e751715353756 100644
--- a/fs/ext4/extents_status.c
+++ b/fs/ext4/extents_status.c
@@ -1054,7 +1054,7 @@ static void count_rsvd(struct inode *inode, ext4_lblk_t lblk, long len,
end = (end > ext4_es_end(es)) ? ext4_es_end(es) : end;
/* record the first block of the first delonly extent seen */
- if (rc->first_do_lblk_found == false) {
+ if (!rc->first_do_lblk_found) {
rc->first_do_lblk = i;
rc->first_do_lblk_found = true;
}