mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 03:06:10 +00:00
vfs: get_sb_single() - do not pass options twice
Filesystem code usually destroys the option buffer while parsing it. This leads to errors when the same buffer is passed twice. In case we fill a new superblock do not call remount. This is needed to quite a warning that the debugfs code causes every boot. Cc: Miklos Szeredi <miklos@szeredi.hu> Signed-off-by: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
f1f76f865b
commit
9329d1beae
1 changed files with 2 additions and 1 deletions
|
@ -901,8 +901,9 @@ int get_sb_single(struct file_system_type *fs_type,
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
s->s_flags |= MS_ACTIVE;
|
s->s_flags |= MS_ACTIVE;
|
||||||
|
} else {
|
||||||
|
do_remount_sb(s, flags, data, 0);
|
||||||
}
|
}
|
||||||
do_remount_sb(s, flags, data, 0);
|
|
||||||
simple_set_mnt(mnt, s);
|
simple_set_mnt(mnt, s);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue