Blame SOURCES/0051-exfat-optimize-exfat_zeroed_cluster.patch

Kmods SIG 50e2b3
From 4dc7d35e09ba78aa0a3bcaa9fad1c19952e018a7 Mon Sep 17 00:00:00 2001
Kmods SIG 50e2b3
From: Tetsuhiro Kohada <kohada.t2@gmail.com>
Kmods SIG 50e2b3
Date: Wed, 24 Jun 2020 11:30:40 +0900
Kmods SIG 50e2b3
Subject: [Backport 4dc7d35e09ba] exfat: optimize exfat_zeroed_cluster()
Kmods SIG 50e2b3
Kmods SIG 50e2b3
Replace part of exfat_zeroed_cluster() with exfat_update_bhs().
Kmods SIG 50e2b3
And remove exfat_sync_bhs().
Kmods SIG 50e2b3
Kmods SIG 50e2b3
Signed-off-by: Tetsuhiro Kohada <kohada.t2@gmail.com>
Kmods SIG 50e2b3
Reviewed-by: Sungjong Seo <sj1557.seo@samsung.com>
Kmods SIG 50e2b3
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Kmods SIG 50e2b3
---
Kmods SIG 50e2b3
 src/fatent.c | 53 +++++++++--------------------------------------
Kmods SIG 50e2b3
 1 file changed, 10 insertions(+), 43 deletions(-)
Kmods SIG 50e2b3
Kmods SIG 50e2b3
diff --git a/src/fatent.c b/src/fatent.c
Kmods SIG 50e2b3
index 82ee8246c080f38bc2cc0f8074c72aebbff03fd8..c3c9afee7418f1871a65757d79f8d4a13fe650c2 100644
Kmods SIG 50e2b3
--- a/src/fatent.c
Kmods SIG 50e2b3
+++ b/src/fatent.c
Kmods SIG 50e2b3
@@ -229,21 +229,6 @@ int exfat_find_last_cluster(struct super_block *sb, struct exfat_chain *p_chain,
Kmods SIG 50e2b3
 	return 0;
Kmods SIG 50e2b3
 }
Kmods SIG 50e2b3
 
Kmods SIG 50e2b3
-static inline int exfat_sync_bhs(struct buffer_head **bhs, int nr_bhs)
Kmods SIG 50e2b3
-{
Kmods SIG 50e2b3
-	int i, err = 0;
Kmods SIG 50e2b3
-
Kmods SIG 50e2b3
-	for (i = 0; i < nr_bhs; i++)
Kmods SIG 50e2b3
-		write_dirty_buffer(bhs[i], 0);
Kmods SIG 50e2b3
-
Kmods SIG 50e2b3
-	for (i = 0; i < nr_bhs; i++) {
Kmods SIG 50e2b3
-		wait_on_buffer(bhs[i]);
Kmods SIG 50e2b3
-		if (!err && !buffer_uptodate(bhs[i]))
Kmods SIG 50e2b3
-			err = -EIO;
Kmods SIG 50e2b3
-	}
Kmods SIG 50e2b3
-	return err;
Kmods SIG 50e2b3
-}
Kmods SIG 50e2b3
-
Kmods SIG 50e2b3
 int exfat_zeroed_cluster(struct inode *dir, unsigned int clu)
Kmods SIG 50e2b3
 {
Kmods SIG 50e2b3
 	struct super_block *sb = dir->i_sb;
Kmods SIG 50e2b3
@@ -265,41 +250,23 @@ int exfat_zeroed_cluster(struct inode *dir, unsigned int clu)
Kmods SIG 50e2b3
 	}
Kmods SIG 50e2b3
 
Kmods SIG 50e2b3
 	/* Zeroing the unused blocks on this cluster */
Kmods SIG 50e2b3
-	n = 0;
Kmods SIG 50e2b3
 	while (blknr < last_blknr) {
Kmods SIG 50e2b3
-		bhs[n] = sb_getblk(sb, blknr);
Kmods SIG 50e2b3
-		if (!bhs[n]) {
Kmods SIG 50e2b3
-			err = -ENOMEM;
Kmods SIG 50e2b3
-			goto release_bhs;
Kmods SIG 50e2b3
-		}
Kmods SIG 50e2b3
-		memset(bhs[n]->b_data, 0, sb->s_blocksize);
Kmods SIG 50e2b3
-		exfat_update_bh(bhs[n], 0);
Kmods SIG 50e2b3
-
Kmods SIG 50e2b3
-		n++;
Kmods SIG 50e2b3
-		blknr++;
Kmods SIG 50e2b3
-
Kmods SIG 50e2b3
-		if (n == nr_bhs) {
Kmods SIG 50e2b3
-			if (IS_DIRSYNC(dir)) {
Kmods SIG 50e2b3
-				err = exfat_sync_bhs(bhs, n);
Kmods SIG 50e2b3
-				if (err)
Kmods SIG 50e2b3
-					goto release_bhs;
Kmods SIG 50e2b3
+		for (n = 0; n < nr_bhs && blknr < last_blknr; n++, blknr++) {
Kmods SIG 50e2b3
+			bhs[n] = sb_getblk(sb, blknr);
Kmods SIG 50e2b3
+			if (!bhs[n]) {
Kmods SIG 50e2b3
+				err = -ENOMEM;
Kmods SIG 50e2b3
+				goto release_bhs;
Kmods SIG 50e2b3
 			}
Kmods SIG 50e2b3
-
Kmods SIG 50e2b3
-			for (i = 0; i < n; i++)
Kmods SIG 50e2b3
-				brelse(bhs[i]);
Kmods SIG 50e2b3
-			n = 0;
Kmods SIG 50e2b3
+			memset(bhs[n]->b_data, 0, sb->s_blocksize);
Kmods SIG 50e2b3
 		}
Kmods SIG 50e2b3
-	}
Kmods SIG 50e2b3
 
Kmods SIG 50e2b3
-	if (IS_DIRSYNC(dir)) {
Kmods SIG 50e2b3
-		err = exfat_sync_bhs(bhs, n);
Kmods SIG 50e2b3
+		err = exfat_update_bhs(bhs, n, IS_DIRSYNC(dir));
Kmods SIG 50e2b3
 		if (err)
Kmods SIG 50e2b3
 			goto release_bhs;
Kmods SIG 50e2b3
-	}
Kmods SIG 50e2b3
-
Kmods SIG 50e2b3
-	for (i = 0; i < n; i++)
Kmods SIG 50e2b3
-		brelse(bhs[i]);
Kmods SIG 50e2b3
 
Kmods SIG 50e2b3
+		for (i = 0; i < n; i++)
Kmods SIG 50e2b3
+			brelse(bhs[i]);
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
 	return 0;
Kmods SIG 50e2b3
 
Kmods SIG 50e2b3
 release_bhs:
Kmods SIG 50e2b3
-- 
Kmods SIG 50e2b3
2.31.1
Kmods SIG 50e2b3