From: Al Viro Date: Thu, 10 May 2018 19:09:41 +0000 (-0400) Subject: it's SB_BORN, not MS_BORN... X-Git-Tag: v4.18-rc1~188^2~8 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1c18d2a15ea4752c7a0d1aa6ef5659a744255140;p=users%2Fwilly%2Fxarray.git it's SB_BORN, not MS_BORN... Signed-off-by: Al Viro --- diff --git a/fs/super.c b/fs/super.c index 5fa9a8d8d865c..c9e34cd2b7595 100644 --- a/fs/super.c +++ b/fs/super.c @@ -938,7 +938,7 @@ void emergency_remount(void) static void do_thaw_all_callback(struct super_block *sb) { down_write(&sb->s_umount); - if (sb->s_root && sb->s_flags & MS_BORN) { + if (sb->s_root && sb->s_flags & SB_BORN) { emergency_thaw_bdev(sb); thaw_super_locked(sb); } else {