[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230619134503.1277-1-lidong@vivo.com>
Date: Mon, 19 Jun 2023 21:44:44 +0800
From: Li Dong <lidong@...o.com>
To: "Theodore Ts'o" <tytso@....edu>,
Andreas Dilger <adilger.kernel@...ger.ca>,
linux-ext4@...r.kernel.org (open list:EXT4 FILE SYSTEM),
linux-kernel@...r.kernel.org (open list)
Cc: opensource.kernel@...o.com, lidong@...o.com
Subject: [PATCH] fs: ext4: Fix traditional comparison using max/min method
It would be better to replace the traditional ternary conditional operator with max()/min()
Signed-off-by: Li Dong <lidong@...o.com>
---
fs/ext4/balloc.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c
index 1f72f977c6db..90ff655ddddb 100644
--- a/fs/ext4/balloc.c
+++ b/fs/ext4/balloc.c
@@ -111,10 +111,8 @@ static unsigned ext4_num_overhead_clusters(struct super_block *sb,
itbl_blk_start = ext4_inode_table(sb, gdp);
itbl_blk_end = itbl_blk_start + sbi->s_itb_per_group - 1;
if (itbl_blk_start <= end && itbl_blk_end >= start) {
- itbl_blk_start = itbl_blk_start >= start ?
- itbl_blk_start : start;
- itbl_blk_end = itbl_blk_end <= end ?
- itbl_blk_end : end;
+ itbl_blk_start = max(itbl_blk_start, start);
+ itbl_blk_end = min(itbl_blk_end, end);
itbl_cluster_start = EXT4_B2C(sbi, itbl_blk_start - start);
itbl_cluster_end = EXT4_B2C(sbi, itbl_blk_end - start);
--
2.31.1.windows.1
Powered by blists - more mailing lists