freebsd-dev/sys/fs/fuse
Alan Somers 205696a17d fusefs: delete some unused mount options
The fusefs kernel module allegedly supported no_attrcache, no_readahed,
no_datacache, no_namecache, and no_mmap mount options, but the mount_fusefs
binary never did.  So there was no way to ever activate these options.
Delete them.  Some of them have alternatives:

no_attrcache: set the attr_valid time to 0 in FUSE_LOOKUP and FUSE_GETATTR
	responses.
no_readahed: set max_readahead to 0 in the FUSE_INIT response.
no_datacache: set the vfs.fusefs.data_cache_mode sysctl to 0, or (coming
	soon) set the attr_valid time to 0 and set FUSE_AUTO_INVAL_DATA in
	the FUSE_INIT response.
no_namecache: set entry_valid time to 0 in FUSE_LOOKUP and FUSE_GETATTR
	responses.

Sponsored by:	The FreeBSD Foundation
2019-06-26 15:15:24 +00:00
..
fuse_device.c fusefs: raise protocol level to 7.15 2019-06-20 23:32:25 +00:00
fuse_file.c fusefs: set the flags fields of fuse_write_in and fuse_read_in 2019-05-28 01:09:19 +00:00
fuse_file.h fusefs: raise protocol level to 7.10 2019-05-29 00:01:36 +00:00
fuse_internal.c fusefs: implement the "time_gran" feature. 2019-06-26 02:09:22 +00:00
fuse_internal.h MFHead @348740 2019-06-06 16:20:50 +00:00
fuse_io.c fusefs: automatically update mtime and ctime on write 2019-06-25 23:40:18 +00:00
fuse_io.h fusefs: rewrite vop_getpages and vop_putpages 2019-06-25 17:24:43 +00:00
fuse_ipc.c fusefs: raise protocol level to 7.23 2019-06-21 04:57:23 +00:00
fuse_ipc.h fusefs: delete some unused mount options 2019-06-26 15:15:24 +00:00
fuse_kernel.h fusefs: raise protocol level to 7.23 2019-06-21 04:57:23 +00:00
fuse_main.c fusefs: FIFO support 2019-04-29 01:40:35 +00:00
fuse_node.c fusefs: implement the "time_gran" feature. 2019-06-26 02:09:22 +00:00
fuse_node.h fusefs: automatically update mtime and ctime on write 2019-06-25 23:40:18 +00:00
fuse_vfsops.c fusefs: delete some unused mount options 2019-06-26 15:15:24 +00:00
fuse_vnops.c fusefs: rewrite vop_getpages and vop_putpages 2019-06-25 17:24:43 +00:00
fuse.h fusefs: reap dead code 2019-04-19 23:04:07 +00:00