diff options
author | David Howells <dhowells@redhat.com> | 2017-07-05 16:25:53 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2017-07-11 06:09:21 -0400 |
commit | 1d278a879081ddc40286500e58868aaee47de257 (patch) | |
tree | ab1f4055309b693f4eb16bfc16b468413816afca /fs/efivarfs | |
parent | 4dfdb71307675b19a54723a556371dad5e3b0083 (diff) | |
download | op-kernel-dev-1d278a879081ddc40286500e58868aaee47de257.zip op-kernel-dev-1d278a879081ddc40286500e58868aaee47de257.tar.gz |
VFS: Kill off s_options and helpers
Kill off s_options, save/replace_mount_options() and generic_show_options()
as all filesystems now implement ->show_options() for themselves. This
should make it easier to implement a context-based mount where the mount
options can be passed individually over a file descriptor.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/efivarfs')
-rw-r--r-- | fs/efivarfs/super.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/efivarfs/super.c b/fs/efivarfs/super.c index d7a7c53..5b68e42 100644 --- a/fs/efivarfs/super.c +++ b/fs/efivarfs/super.c @@ -29,7 +29,6 @@ static const struct super_operations efivarfs_ops = { .statfs = simple_statfs, .drop_inode = generic_delete_inode, .evict_inode = efivarfs_evict_inode, - .show_options = generic_show_options, }; static struct super_block *efivarfs_sb; |