Blame SOURCES/0061-fs-ntfs3-Use-clamp-max-macros-instead-of-comparisons.patch

Kmods SIG 63c143
From b5322eb1ae94572f5a52e804857e641b846059f4 Mon Sep 17 00:00:00 2001
Kmods SIG 63c143
From: Kari Argillander <kari.argillander@gmail.com>
Kmods SIG 63c143
Date: Tue, 7 Sep 2021 17:28:41 +0300
Kmods SIG 63c143
Subject: [Backport b5322eb1ae94] src: Use clamp/max macros instead of
Kmods SIG 63c143
 comparisons
Kmods SIG 63c143
Kmods SIG 63c143
We can make code little more readable by using kernel macros clamp/max.
Kmods SIG 63c143
Kmods SIG 63c143
This were found with kernel included Coccinelle minmax script.
Kmods SIG 63c143
Kmods SIG 63c143
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
Kmods SIG 63c143
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Kmods SIG 63c143
---
Kmods SIG 63c143
 src/fsntfs.c | 8 +++-----
Kmods SIG 63c143
 1 file changed, 3 insertions(+), 5 deletions(-)
Kmods SIG 63c143
Kmods SIG 63c143
diff --git a/src/fsntfs.c b/src/fsntfs.c
Kmods SIG 63c143
index 4cd24e4e58ff26b3ddce5f891783a36cca6170a7..c964d3996aab1dff3923337acaa00e40869a70f5 100644
Kmods SIG 63c143
--- a/src/fsntfs.c
Kmods SIG 63c143
+++ b/src/fsntfs.c
Kmods SIG 63c143
@@ -8,6 +8,7 @@
Kmods SIG 63c143
 #include <linux/blkdev.h>
Kmods SIG 63c143
 #include <linux/buffer_head.h>
Kmods SIG 63c143
 #include <linux/fs.h>
Kmods SIG 63c143
+#include <linux/kernel.h>
Kmods SIG 63c143
 
Kmods SIG 63c143
 #include "debug.h"
Kmods SIG 63c143
 #include "ntfs.h"
Kmods SIG 63c143
@@ -419,11 +420,8 @@ int ntfs_look_for_free_space(struct ntfs_sb_info *sbi, CLST lcn, CLST len,
Kmods SIG 63c143
 	/* How many clusters to cat from zone. */
Kmods SIG 63c143
 	zlcn = wnd_zone_bit(wnd);
Kmods SIG 63c143
 	zlen2 = zlen >> 1;
Kmods SIG 63c143
-	ztrim = len > zlen ? zlen : (len > zlen2 ? len : zlen2);
Kmods SIG 63c143
-	new_zlen = zlen - ztrim;
Kmods SIG 63c143
-
Kmods SIG 63c143
-	if (new_zlen < NTFS_MIN_MFT_ZONE)
Kmods SIG 63c143
-		new_zlen = NTFS_MIN_MFT_ZONE;
Kmods SIG 63c143
+	ztrim = clamp_val(len, zlen2, zlen);
Kmods SIG 63c143
+	new_zlen = max_t(size_t, zlen - ztrim, NTFS_MIN_MFT_ZONE);
Kmods SIG 63c143
 
Kmods SIG 63c143
 	wnd_zone_set(wnd, zlcn, new_zlen);
Kmods SIG 63c143
 
Kmods SIG 63c143
-- 
Kmods SIG 63c143
2.31.1
Kmods SIG 63c143