diff options
| author | David Howells <[email protected]> | 2017-07-05 16:24:09 +0100 |
|---|---|---|
| committer | Al Viro <[email protected]> | 2017-07-06 03:31:46 -0400 |
| commit | c3d98ea08291ca26144780f601e1fd39e4f20f7e (patch) | |
| tree | d90c98ef4e026262d799657e8c765e0411bf67c0 /fs/debugfs | |
| parent | cdf01226b26e98c79c13b335fbe0cbbbe850cf44 (diff) | |
VFS: Don't use save/replace_mount_options if not using generic_show_options
btrfs, debugfs, reiserfs and tracefs call save_mount_options() and reiserfs
calls replace_mount_options(), but they then implement their own
->show_options() methods and don't touch s_options, rendering the saved
options unnecessary. I'm trying to eliminate s_options to make it easier
to implement a context-based mount where the mount options can be passed
individually over a file descriptor.
Remove the calls to save/replace_mount_options() call in these cases.
Signed-off-by: David Howells <[email protected]>
cc: Chris Mason <[email protected]>
cc: Greg Kroah-Hartman <[email protected]>
cc: Steven Rostedt <[email protected]>
cc: [email protected]
cc: [email protected]
Signed-off-by: Al Viro <[email protected]>
Diffstat (limited to 'fs/debugfs')
| -rw-r--r-- | fs/debugfs/inode.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index e892ae7d89f8..0dc9e9c0e0f8 100644 --- a/fs/debugfs/inode.c +++ b/fs/debugfs/inode.c @@ -203,8 +203,6 @@ static int debug_fill_super(struct super_block *sb, void *data, int silent) struct debugfs_fs_info *fsi; int err; - save_mount_options(sb, data); - fsi = kzalloc(sizeof(struct debugfs_fs_info), GFP_KERNEL); sb->s_fs_info = fsi; if (!fsi) { |