aboutsummaryrefslogtreecommitdiffstats
path: root/fs/exfat/dir.c
diff options
context:
space:
mode:
authorTetsuhiro Kohada <kohada.t2@gmail.com>2020-06-23 15:22:19 +0900
committerNamjae Jeon <namjae.jeon@samsung.com>2020-08-12 08:31:11 +0900
commit3db3c3fb840ed4a6c7666d1464959edd40fe54f1 (patch)
tree930c8f0f2b33efc5752dc8587a3ca669af716591 /fs/exfat/dir.c
parentexfat: remove EXFAT_SB_DIRTY flag (diff)
downloadlinux-dev-3db3c3fb840ed4a6c7666d1464959edd40fe54f1.tar.xz
linux-dev-3db3c3fb840ed4a6c7666d1464959edd40fe54f1.zip
exfat: write multiple sectors at once
Write multiple sectors at once when updating dir-entries. Add exfat_update_bhs() for that. It wait for write completion once instead of sector by sector. It's only effective if sync enabled. Signed-off-by: Tetsuhiro Kohada <kohada.t2@gmail.com> Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Diffstat (limited to 'fs/exfat/dir.c')
-rw-r--r--fs/exfat/dir.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/fs/exfat/dir.c b/fs/exfat/dir.c
index 97296bc2b241..542f1a5ab56f 100644
--- a/fs/exfat/dir.c
+++ b/fs/exfat/dir.c
@@ -606,13 +606,16 @@ void exfat_update_dir_chksum_with_entry_set(struct exfat_entry_set_cache *es)
void exfat_free_dentry_set(struct exfat_entry_set_cache *es, int sync)
{
- int i;
+ int i, err = 0;
- for (i = 0; i < es->num_bh; i++) {
- if (es->modified)
- exfat_update_bh(es->bh[i], sync);
- brelse(es->bh[i]);
- }
+ if (es->modified)
+ err = exfat_update_bhs(es->bh, es->num_bh, sync);
+
+ for (i = 0; i < es->num_bh; i++)
+ if (err)
+ bforget(es->bh[i]);
+ else
+ brelse(es->bh[i]);
kfree(es);
}