diff options
author | Vivek Goyal <vgoyal@redhat.com> | 2020-08-20 01:19:45 +0300 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2020-09-10 12:39:22 +0300 |
commit | f4fd4ae354ba23c948afb0ee3386182acb96d481 (patch) | |
tree | 661bd4295752679afa758e10692d9583b9d05258 /fs/fuse/virtio_fs.c | |
parent | b43b7e81eb2b188fab1d8bc334b4b725f6d2ae10 (diff) | |
download | linux-f4fd4ae354ba23c948afb0ee3386182acb96d481.tar.xz |
virtiofs: get rid of no_mount_options
This option was introduced so that for virtio_fs we don't show any mounts
options fuse_show_options(). Because we don't offer any of these options
to be controlled by mounter.
Very soon we are planning to introduce option "dax" which mounter should
be able to specify. And no_mount_options does not work anymore.
Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/virtio_fs.c')
-rw-r--r-- | fs/fuse/virtio_fs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/fuse/virtio_fs.c b/fs/fuse/virtio_fs.c index ed8da4825b70..47ecdc15f25d 100644 --- a/fs/fuse/virtio_fs.c +++ b/fs/fuse/virtio_fs.c @@ -1096,7 +1096,6 @@ static int virtio_fs_fill_super(struct super_block *sb) .destroy = true, .no_control = true, .no_force_umount = true, - .no_mount_options = true, }; mutex_lock(&virtio_fs_mutex); |