diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2018-05-10 15:09:41 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-05-10 15:09:41 -0400 |
commit | 1c18d2a15ea4752c7a0d1aa6ef5659a744255140 (patch) | |
tree | 18506de208ec87cb21a9a3e9adddea9ffcbfc456 /fs/super.c | |
parent | 3087147ba3376c5d7ea255bf5cf24c974a41f477 (diff) | |
download | linux-next-1c18d2a15ea4752c7a0d1aa6ef5659a744255140.tar.gz |
it's SB_BORN, not MS_BORN...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/super.c')
-rw-r--r-- | fs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/super.c b/fs/super.c index 5fa9a8d8d865..c9e34cd2b759 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 { |