Patch "exfat: call sync_filesystem for read-only remount" has been added to the 5.7-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    exfat: call sync_filesystem for read-only remount

to the 5.7-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     exfat-call-sync_filesystem-for-read-only-remount.patch
and it can be found in the queue-5.7 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit ebfe8d51296159d54f4559162955b58e40621108
Author: Hyunchul Lee <hyc.lee@xxxxxxxxx>
Date:   Tue Jun 16 14:34:45 2020 +0900

    exfat: call sync_filesystem for read-only remount
    
    [ Upstream commit a0271a15cf2cf907ea5b0f2ba611123f1b7935ec ]
    
    We need to commit dirty metadata and pages to disk
    before remounting exfat as read-only.
    
    This fixes a failure in xfstests generic/452
    
    generic/452 does the following:
    cp something <exfat>/
    mount -o remount,ro <exfat>
    
    the <exfat>/something is corrupted. because while
    exfat is remounted as read-only, exfat doesn't
    have a chance to commit metadata and
    vfs invalidates page caches in a block device.
    
    Signed-off-by: Hyunchul Lee <hyc.lee@xxxxxxxxx>
    Acked-by: Sungjong Seo <sj1557.seo@xxxxxxxxxxx>
    Signed-off-by: Namjae Jeon <namjae.jeon@xxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/fs/exfat/super.c b/fs/exfat/super.c
index c1b1ed306a485..e879801533980 100644
--- a/fs/exfat/super.c
+++ b/fs/exfat/super.c
@@ -637,10 +637,20 @@ static void exfat_free(struct fs_context *fc)
 	}
 }
 
+static int exfat_reconfigure(struct fs_context *fc)
+{
+	fc->sb_flags |= SB_NODIRATIME;
+
+	/* volume flag will be updated in exfat_sync_fs */
+	sync_filesystem(fc->root->d_sb);
+	return 0;
+}
+
 static const struct fs_context_operations exfat_context_ops = {
 	.parse_param	= exfat_parse_param,
 	.get_tree	= exfat_get_tree,
 	.free		= exfat_free,
+	.reconfigure	= exfat_reconfigure,
 };
 
 static int exfat_init_fs_context(struct fs_context *fc)



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux