Blame SOURCES/0048-exfat-remove-EXFAT_SB_DIRTY-flag.patch

Kmods SIG 9e3ffb
From 2c7f8937ef91520a8a4bd700d5817b5e9c99803c Mon Sep 17 00:00:00 2001
Kmods SIG 9e3ffb
From: Tetsuhiro Kohada <kohada.t2@gmail.com>
Kmods SIG 9e3ffb
Date: Tue, 16 Jun 2020 11:18:07 +0900
Kmods SIG 9e3ffb
Subject: [Backport 2c7f8937ef91] exfat: remove EXFAT_SB_DIRTY flag
Kmods SIG 9e3ffb
Kmods SIG 9e3ffb
This flag is set/reset in exfat_put_super()/exfat_sync_fs()
Kmods SIG 9e3ffb
to avoid sync_blockdev().
Kmods SIG 9e3ffb
- exfat_put_super():
Kmods SIG 9e3ffb
Before calling this, the VFS has already called sync_filesystem(),
Kmods SIG 9e3ffb
so sync is never performed here.
Kmods SIG 9e3ffb
- exfat_sync_fs():
Kmods SIG 9e3ffb
After calling this, the VFS calls sync_blockdev(), so, it is meaningless
Kmods SIG 9e3ffb
to check EXFAT_SB_DIRTY or to bypass sync_blockdev() here.
Kmods SIG 9e3ffb
Kmods SIG 9e3ffb
Remove the EXFAT_SB_DIRTY check to ensure synchronization.
Kmods SIG 9e3ffb
And remove the code related to the flag.
Kmods SIG 9e3ffb
Kmods SIG 9e3ffb
Signed-off-by: Tetsuhiro Kohada <kohada.t2@gmail.com>
Kmods SIG 9e3ffb
Reviewed-by: Sungjong Seo <sj1557.seo@samsung.com>
Kmods SIG 9e3ffb
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Kmods SIG 9e3ffb
---
Kmods SIG 9e3ffb
 src/balloc.c   |  4 ++--
Kmods SIG 9e3ffb
 src/dir.c      | 16 ++++++++--------
Kmods SIG 9e3ffb
 src/exfat_fs.h |  5 +----
Kmods SIG 9e3ffb
 src/fatent.c   |  7 ++-----
Kmods SIG 9e3ffb
 src/misc.c     |  3 +--
Kmods SIG 9e3ffb
 src/namei.c    | 12 ++++++------
Kmods SIG 9e3ffb
 src/super.c    | 14 ++++++--------
Kmods SIG 9e3ffb
 7 files changed, 26 insertions(+), 35 deletions(-)
Kmods SIG 9e3ffb
Kmods SIG 9e3ffb
diff --git a/src/balloc.c b/src/balloc.c
Kmods SIG 9e3ffb
index 4055eb00ea9b84a3550dea0f831fafa2df3b3121..a987919686c0d4d339ce71d11887d9510280df77 100644
Kmods SIG 9e3ffb
--- a/src/balloc.c
Kmods SIG 9e3ffb
+++ b/src/balloc.c
Kmods SIG 9e3ffb
@@ -158,7 +158,7 @@ int exfat_set_bitmap(struct inode *inode, unsigned int clu)
Kmods SIG 9e3ffb
 	b = BITMAP_OFFSET_BIT_IN_SECTOR(sb, ent_idx);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	set_bit_le(b, sbi->vol_amap[i]->b_data);
Kmods SIG 9e3ffb
-	exfat_update_bh(sb, sbi->vol_amap[i], IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
+	exfat_update_bh(sbi->vol_amap[i], IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
 	return 0;
Kmods SIG 9e3ffb
 }
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
@@ -180,7 +180,7 @@ void exfat_clear_bitmap(struct inode *inode, unsigned int clu)
Kmods SIG 9e3ffb
 	b = BITMAP_OFFSET_BIT_IN_SECTOR(sb, ent_idx);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	clear_bit_le(b, sbi->vol_amap[i]->b_data);
Kmods SIG 9e3ffb
-	exfat_update_bh(sb, sbi->vol_amap[i], IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
+	exfat_update_bh(sbi->vol_amap[i], IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	if (opts->discard) {
Kmods SIG 9e3ffb
 		int ret_discard;
Kmods SIG 9e3ffb
diff --git a/src/dir.c b/src/dir.c
Kmods SIG 9e3ffb
index 119abf0d8dd6fe5b23e1537341068f3f3060f035..97296bc2b241cbe40b9a87e1f11ef8c203881680 100644
Kmods SIG 9e3ffb
--- a/src/dir.c
Kmods SIG 9e3ffb
+++ b/src/dir.c
Kmods SIG 9e3ffb
@@ -470,7 +470,7 @@ int exfat_init_dir_entry(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 9e3ffb
 			&ep->dentry.file.access_date,
Kmods SIG 9e3ffb
 			NULL);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
-	exfat_update_bh(sb, bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
+	exfat_update_bh(bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
 	brelse(bh);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	ep = exfat_get_dentry(sb, p_dir, entry + 1, &bh, &sector);
Kmods SIG 9e3ffb
@@ -480,7 +480,7 @@ int exfat_init_dir_entry(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 9e3ffb
 	exfat_init_stream_entry(ep,
Kmods SIG 9e3ffb
 		(type == TYPE_FILE) ? ALLOC_FAT_CHAIN : ALLOC_NO_FAT_CHAIN,
Kmods SIG 9e3ffb
 		start_clu, size);
Kmods SIG 9e3ffb
-	exfat_update_bh(sb, bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
+	exfat_update_bh(bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
 	brelse(bh);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	return 0;
Kmods SIG 9e3ffb
@@ -516,7 +516,7 @@ int exfat_update_dir_chksum(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 9e3ffb
 	}
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	fep->dentry.file.checksum = cpu_to_le16(chksum);
Kmods SIG 9e3ffb
-	exfat_update_bh(sb, fbh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
+	exfat_update_bh(fbh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
 release_fbh:
Kmods SIG 9e3ffb
 	brelse(fbh);
Kmods SIG 9e3ffb
 	return ret;
Kmods SIG 9e3ffb
@@ -538,7 +538,7 @@ int exfat_init_ext_entry(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 9e3ffb
 		return -EIO;
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	ep->dentry.file.num_ext = (unsigned char)(num_entries - 1);
Kmods SIG 9e3ffb
-	exfat_update_bh(sb, bh, sync);
Kmods SIG 9e3ffb
+	exfat_update_bh(bh, sync);
Kmods SIG 9e3ffb
 	brelse(bh);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	ep = exfat_get_dentry(sb, p_dir, entry + 1, &bh, &sector);
Kmods SIG 9e3ffb
@@ -547,7 +547,7 @@ int exfat_init_ext_entry(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	ep->dentry.stream.name_len = p_uniname->name_len;
Kmods SIG 9e3ffb
 	ep->dentry.stream.name_hash = cpu_to_le16(p_uniname->name_hash);
Kmods SIG 9e3ffb
-	exfat_update_bh(sb, bh, sync);
Kmods SIG 9e3ffb
+	exfat_update_bh(bh, sync);
Kmods SIG 9e3ffb
 	brelse(bh);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	for (i = EXFAT_FIRST_CLUSTER; i < num_entries; i++) {
Kmods SIG 9e3ffb
@@ -556,7 +556,7 @@ int exfat_init_ext_entry(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 9e3ffb
 			return -EIO;
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 		exfat_init_name_entry(ep, uniname);
Kmods SIG 9e3ffb
-		exfat_update_bh(sb, bh, sync);
Kmods SIG 9e3ffb
+		exfat_update_bh(bh, sync);
Kmods SIG 9e3ffb
 		brelse(bh);
Kmods SIG 9e3ffb
 		uniname += EXFAT_FILE_NAME_LEN;
Kmods SIG 9e3ffb
 	}
Kmods SIG 9e3ffb
@@ -580,7 +580,7 @@ int exfat_remove_entries(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 9e3ffb
 			return -EIO;
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 		exfat_set_entry_type(ep, TYPE_DELETED);
Kmods SIG 9e3ffb
-		exfat_update_bh(sb, bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
+		exfat_update_bh(bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
 		brelse(bh);
Kmods SIG 9e3ffb
 	}
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
@@ -610,7 +610,7 @@ void exfat_free_dentry_set(struct exfat_entry_set_cache *es, int sync)
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	for (i = 0; i < es->num_bh; i++) {
Kmods SIG 9e3ffb
 		if (es->modified)
Kmods SIG 9e3ffb
-			exfat_update_bh(es->sb, es->bh[i], sync);
Kmods SIG 9e3ffb
+			exfat_update_bh(es->bh[i], sync);
Kmods SIG 9e3ffb
 		brelse(es->bh[i]);
Kmods SIG 9e3ffb
 	}
Kmods SIG 9e3ffb
 	kfree(es);
Kmods SIG 9e3ffb
diff --git a/src/exfat_fs.h b/src/exfat_fs.h
Kmods SIG 9e3ffb
index 75c7bdbeba6d3e9316c7b795cd525d1323e47b83..05553b2924ee313d9341bc8585f2290a10e8ff56 100644
Kmods SIG 9e3ffb
--- a/src/exfat_fs.h
Kmods SIG 9e3ffb
+++ b/src/exfat_fs.h
Kmods SIG 9e3ffb
@@ -13,8 +13,6 @@
Kmods SIG 9e3ffb
 #define EXFAT_SUPER_MAGIC       0x2011BAB0UL
Kmods SIG 9e3ffb
 #define EXFAT_ROOT_INO		1
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
-#define EXFAT_SB_DIRTY		0
Kmods SIG 9e3ffb
-
Kmods SIG 9e3ffb
 #define EXFAT_CLUSTERS_UNTRACKED (~0u)
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 /*
Kmods SIG 9e3ffb
@@ -238,7 +236,6 @@ struct exfat_sb_info {
Kmods SIG 9e3ffb
 	unsigned int clu_srch_ptr; /* cluster search pointer */
Kmods SIG 9e3ffb
 	unsigned int used_clusters; /* number of used clusters */
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
-	unsigned long s_state;
Kmods SIG 9e3ffb
 	struct mutex s_lock; /* superblock lock */
Kmods SIG 9e3ffb
 	struct exfat_mount_options options;
Kmods SIG 9e3ffb
 	struct nls_table *nls_io; /* Charset used for input and display */
Kmods SIG 9e3ffb
@@ -515,7 +512,7 @@ void exfat_set_entry_time(struct exfat_sb_info *sbi, struct timespec64 *ts,
Kmods SIG 9e3ffb
 		u8 *tz, __le16 *time, __le16 *date, u8 *time_cs);
Kmods SIG 9e3ffb
 u16 exfat_calc_chksum16(void *data, int len, u16 chksum, int type);
Kmods SIG 9e3ffb
 u32 exfat_calc_chksum32(void *data, int len, u32 chksum, int type);
Kmods SIG 9e3ffb
-void exfat_update_bh(struct super_block *sb, struct buffer_head *bh, int sync);
Kmods SIG 9e3ffb
+void exfat_update_bh(struct buffer_head *bh, int sync);
Kmods SIG 9e3ffb
 void exfat_chain_set(struct exfat_chain *ec, unsigned int dir,
Kmods SIG 9e3ffb
 		unsigned int size, unsigned char flags);
Kmods SIG 9e3ffb
 void exfat_chain_dup(struct exfat_chain *dup, struct exfat_chain *ec);
Kmods SIG 9e3ffb
diff --git a/src/fatent.c b/src/fatent.c
Kmods SIG 9e3ffb
index 4e5c5c9c0f2df4457670dfeb14f30bfbcbd32a5d..82ee8246c080f38bc2cc0f8074c72aebbff03fd8 100644
Kmods SIG 9e3ffb
--- a/src/fatent.c
Kmods SIG 9e3ffb
+++ b/src/fatent.c
Kmods SIG 9e3ffb
@@ -75,7 +75,7 @@ int exfat_ent_set(struct super_block *sb, unsigned int loc,
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	fat_entry = (__le32 *)&(bh->b_data[off]);
Kmods SIG 9e3ffb
 	*fat_entry = cpu_to_le32(content);
Kmods SIG 9e3ffb
-	exfat_update_bh(sb, bh, sb->s_flags & SB_SYNCHRONOUS);
Kmods SIG 9e3ffb
+	exfat_update_bh(bh, sb->s_flags & SB_SYNCHRONOUS);
Kmods SIG 9e3ffb
 	exfat_mirror_bh(sb, sec, bh);
Kmods SIG 9e3ffb
 	brelse(bh);
Kmods SIG 9e3ffb
 	return 0;
Kmods SIG 9e3ffb
@@ -174,7 +174,6 @@ int exfat_free_cluster(struct inode *inode, struct exfat_chain *p_chain)
Kmods SIG 9e3ffb
 		return -EIO;
Kmods SIG 9e3ffb
 	}
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
-	set_bit(EXFAT_SB_DIRTY, &sbi->s_state);
Kmods SIG 9e3ffb
 	clu = p_chain->dir;
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	if (p_chain->flags == ALLOC_NO_FAT_CHAIN) {
Kmods SIG 9e3ffb
@@ -274,7 +273,7 @@ int exfat_zeroed_cluster(struct inode *dir, unsigned int clu)
Kmods SIG 9e3ffb
 			goto release_bhs;
Kmods SIG 9e3ffb
 		}
Kmods SIG 9e3ffb
 		memset(bhs[n]->b_data, 0, sb->s_blocksize);
Kmods SIG 9e3ffb
-		exfat_update_bh(sb, bhs[n], 0);
Kmods SIG 9e3ffb
+		exfat_update_bh(bhs[n], 0);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 		n++;
Kmods SIG 9e3ffb
 		blknr++;
Kmods SIG 9e3ffb
@@ -358,8 +357,6 @@ int exfat_alloc_cluster(struct inode *inode, unsigned int num_alloc,
Kmods SIG 9e3ffb
 		}
Kmods SIG 9e3ffb
 	}
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
-	set_bit(EXFAT_SB_DIRTY, &sbi->s_state);
Kmods SIG 9e3ffb
-
Kmods SIG 9e3ffb
 	p_chain->dir = EXFAT_EOF_CLUSTER;
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	while ((new_clu = exfat_find_free_bitmap(sb, hint_clu)) !=
Kmods SIG 9e3ffb
diff --git a/src/misc.c b/src/misc.c
Kmods SIG 9e3ffb
index 17d41f3d3709287f6654dd52bd540e3f60fee285..8a3dde59052bf04a4de6f65554df14ed6f185147 100644
Kmods SIG 9e3ffb
--- a/src/misc.c
Kmods SIG 9e3ffb
+++ b/src/misc.c
Kmods SIG 9e3ffb
@@ -163,9 +163,8 @@ u32 exfat_calc_chksum32(void *data, int len, u32 chksum, int type)
Kmods SIG 9e3ffb
 	return chksum;
Kmods SIG 9e3ffb
 }
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
-void exfat_update_bh(struct super_block *sb, struct buffer_head *bh, int sync)
Kmods SIG 9e3ffb
+void exfat_update_bh(struct buffer_head *bh, int sync)
Kmods SIG 9e3ffb
 {
Kmods SIG 9e3ffb
-	set_bit(EXFAT_SB_DIRTY, &EXFAT_SB(sb)->s_state);
Kmods SIG 9e3ffb
 	set_buffer_uptodate(bh);
Kmods SIG 9e3ffb
 	mark_buffer_dirty(bh);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
diff --git a/src/namei.c b/src/namei.c
Kmods SIG 9e3ffb
index 2b9e21094a96dbb252f38e34db272e567d665665..126ed3ba8f4791859a11bdfac05a1b71847b2e22 100644
Kmods SIG 9e3ffb
--- a/src/namei.c
Kmods SIG 9e3ffb
+++ b/src/namei.c
Kmods SIG 9e3ffb
@@ -387,7 +387,7 @@ static int exfat_find_empty_entry(struct inode *inode,
Kmods SIG 9e3ffb
 			ep->dentry.stream.valid_size = cpu_to_le64(size);
Kmods SIG 9e3ffb
 			ep->dentry.stream.size = ep->dentry.stream.valid_size;
Kmods SIG 9e3ffb
 			ep->dentry.stream.flags = p_dir->flags;
Kmods SIG 9e3ffb
-			exfat_update_bh(sb, bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
+			exfat_update_bh(bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
 			brelse(bh);
Kmods SIG 9e3ffb
 			if (exfat_update_dir_chksum(inode, &(ei->dir),
Kmods SIG 9e3ffb
 			    ei->entry))
Kmods SIG 9e3ffb
@@ -1071,7 +1071,7 @@ static int exfat_rename_file(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 9e3ffb
 			epnew->dentry.file.attr |= cpu_to_le16(ATTR_ARCHIVE);
Kmods SIG 9e3ffb
 			ei->attr |= ATTR_ARCHIVE;
Kmods SIG 9e3ffb
 		}
Kmods SIG 9e3ffb
-		exfat_update_bh(sb, new_bh, sync);
Kmods SIG 9e3ffb
+		exfat_update_bh(new_bh, sync);
Kmods SIG 9e3ffb
 		brelse(old_bh);
Kmods SIG 9e3ffb
 		brelse(new_bh);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
@@ -1087,7 +1087,7 @@ static int exfat_rename_file(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 9e3ffb
 		}
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 		memcpy(epnew, epold, DENTRY_SIZE);
Kmods SIG 9e3ffb
-		exfat_update_bh(sb, new_bh, sync);
Kmods SIG 9e3ffb
+		exfat_update_bh(new_bh, sync);
Kmods SIG 9e3ffb
 		brelse(old_bh);
Kmods SIG 9e3ffb
 		brelse(new_bh);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
@@ -1104,7 +1104,7 @@ static int exfat_rename_file(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 9e3ffb
 			epold->dentry.file.attr |= cpu_to_le16(ATTR_ARCHIVE);
Kmods SIG 9e3ffb
 			ei->attr |= ATTR_ARCHIVE;
Kmods SIG 9e3ffb
 		}
Kmods SIG 9e3ffb
-		exfat_update_bh(sb, old_bh, sync);
Kmods SIG 9e3ffb
+		exfat_update_bh(old_bh, sync);
Kmods SIG 9e3ffb
 		brelse(old_bh);
Kmods SIG 9e3ffb
 		ret = exfat_init_ext_entry(inode, p_dir, oldentry,
Kmods SIG 9e3ffb
 			num_new_entries, p_uniname);
Kmods SIG 9e3ffb
@@ -1159,7 +1159,7 @@ static int exfat_move_file(struct inode *inode, struct exfat_chain *p_olddir,
Kmods SIG 9e3ffb
 		epnew->dentry.file.attr |= cpu_to_le16(ATTR_ARCHIVE);
Kmods SIG 9e3ffb
 		ei->attr |= ATTR_ARCHIVE;
Kmods SIG 9e3ffb
 	}
Kmods SIG 9e3ffb
-	exfat_update_bh(sb, new_bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
+	exfat_update_bh(new_bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
 	brelse(mov_bh);
Kmods SIG 9e3ffb
 	brelse(new_bh);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
@@ -1175,7 +1175,7 @@ static int exfat_move_file(struct inode *inode, struct exfat_chain *p_olddir,
Kmods SIG 9e3ffb
 	}
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	memcpy(epnew, epmov, DENTRY_SIZE);
Kmods SIG 9e3ffb
-	exfat_update_bh(sb, new_bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
+	exfat_update_bh(new_bh, IS_DIRSYNC(inode));
Kmods SIG 9e3ffb
 	brelse(mov_bh);
Kmods SIG 9e3ffb
 	brelse(new_bh);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
diff --git a/src/super.c b/src/super.c
Kmods SIG 9e3ffb
index 253a92460d5222f4f3aa75e52fc0b3eab084bc06..b5bf6dedbe1159fb4aa0b501ab7e5b8f2051a063 100644
Kmods SIG 9e3ffb
--- a/src/super.c
Kmods SIG 9e3ffb
+++ b/src/super.c
Kmods SIG 9e3ffb
@@ -45,9 +45,6 @@ static void exfat_put_super(struct super_block *sb)
Kmods SIG 9e3ffb
 	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
 	mutex_lock(&sbi->s_lock);
Kmods SIG 9e3ffb
-	if (test_and_clear_bit(EXFAT_SB_DIRTY, &sbi->s_state))
Kmods SIG 9e3ffb
-		sync_blockdev(sb->s_bdev);
Kmods SIG 9e3ffb
-	exfat_set_vol_flags(sb, VOL_CLEAN);
Kmods SIG 9e3ffb
 	exfat_free_bitmap(sbi);
Kmods SIG 9e3ffb
 	brelse(sbi->boot_bh);
Kmods SIG 9e3ffb
 	mutex_unlock(&sbi->s_lock);
Kmods SIG 9e3ffb
@@ -60,13 +57,14 @@ static int exfat_sync_fs(struct super_block *sb, int wait)
Kmods SIG 9e3ffb
 	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 9e3ffb
 	int err = 0;
Kmods SIG 9e3ffb
 
Kmods SIG 9e3ffb
+	if (!wait)
Kmods SIG 9e3ffb
+		return 0;
Kmods SIG 9e3ffb
+
Kmods SIG 9e3ffb
 	/* If there are some dirty buffers in the bdev inode */
Kmods SIG 9e3ffb
 	mutex_lock(&sbi->s_lock);
Kmods SIG 9e3ffb
-	if (test_and_clear_bit(EXFAT_SB_DIRTY, &sbi->s_state)) {
Kmods SIG 9e3ffb
-		sync_blockdev(sb->s_bdev);
Kmods SIG 9e3ffb
-		if (exfat_set_vol_flags(sb, VOL_CLEAN))
Kmods SIG 9e3ffb
-			err = -EIO;
Kmods SIG 9e3ffb
-	}
Kmods SIG 9e3ffb
+	sync_blockdev(sb->s_bdev);
Kmods SIG 9e3ffb
+	if (exfat_set_vol_flags(sb, VOL_CLEAN))
Kmods SIG 9e3ffb
+		err = -EIO;
Kmods SIG 9e3ffb
 	mutex_unlock(&sbi->s_lock);
Kmods SIG 9e3ffb
 	return err;
Kmods SIG 9e3ffb
 }
Kmods SIG 9e3ffb
-- 
Kmods SIG 9e3ffb
2.31.1
Kmods SIG 9e3ffb