fuse_mount_opts: don't keep max_read= option.
authorNikolaus Rath <Nikolaus@rath.org>
Mon, 3 Oct 2016 03:44:00 +0000 (20:44 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 3 Oct 2016 03:51:15 +0000 (20:51 -0700)
There is no consumer of it down the line.

lib/fuse_lowlevel.c
lib/mount.c

index 8682c315aa5e5e553b266297d97294f00c399da1..1d843d11a6092a2da8d405837289a46fcce52b40 100755 (executable)
@@ -2622,7 +2622,6 @@ static const struct fuse_opt fuse_ll_opts[] = {
        { "no_writeback_cache", offsetof(struct fuse_ll, no_writeback_cache), 1},
        { "time_gran=%u", offsetof(struct fuse_ll, conn.time_gran), 0 },
        { "clone_fd", offsetof(struct fuse_ll, clone_fd), 1 },
-       FUSE_OPT_KEY("max_read=", FUSE_OPT_KEY_DISCARD),
        FUSE_OPT_KEY("-h", KEY_HELP),
        FUSE_OPT_KEY("--help", KEY_HELP),
        FUSE_OPT_KEY("-V", KEY_VERSION),
index d7f4bddd33038291962e2de76344465d88ad2e48..50010958f47857e16122c08a6d4af35663927f11 100644 (file)
@@ -99,7 +99,6 @@ static const struct fuse_opt fuse_mount_opts[] = {
        FUSE_OPT_KEY("defcontext=",             KEY_KERN_OPT),
        FUSE_OPT_KEY("rootcontext=",            KEY_KERN_OPT),
        FUSE_OPT_KEY("max_read=",               KEY_KERN_OPT),
-       FUSE_OPT_KEY("max_read=",               FUSE_OPT_KEY_KEEP),
        FUSE_OPT_KEY("user=",                   KEY_MTAB_OPT),
        FUSE_OPT_KEY("-r",                      KEY_RO),
        FUSE_OPT_KEY("ro",                      KEY_KERN_FLAG),