From: Zhouyi Zhou Date: Wed, 10 Jan 2018 05:34:19 +0000 (-0500) Subject: ext4: save error to disk in __ext4_grp_locked_error() X-Git-Tag: v4.1.50~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac9822f189aed6520cbc8949e3a7e151abb3bc4d;p=thirdparty%2Fkernel%2Fstable.git ext4: save error to disk in __ext4_grp_locked_error() [ Upstream commit 06f29cc81f0350261f59643a505010531130eea0 ] In the function __ext4_grp_locked_error(), __save_error_info() is called to save error info in super block block, but does not sync that information to disk to info the subsequence fsck after reboot. This patch writes the error information to disk. After this patch, I think there is no obvious EXT4 error handle branches which leads to "Remounting filesystem read-only" will leave the disk partition miss the subsequence fsck. Signed-off-by: Zhouyi Zhou Signed-off-by: Theodore Ts'o Cc: stable@vger.kernel.org Signed-off-by: Sasha Levin --- diff --git a/fs/ext4/super.c b/fs/ext4/super.c index b29a7ef4953e8..fcc9333fcf19a 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -669,6 +669,7 @@ __acquires(bitlock) } ext4_unlock_group(sb, grp); + ext4_commit_super(sb, 1); ext4_handle_error(sb); /* * We only get here in the ERRORS_RO case; relocking the group