From 7f6bc8968ff6ca488991b0c5b1b9c4846dc1ccda Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Tue, 13 Apr 2004 10:49:14 +0000 Subject: text mount options --- include/linux/fuse.h | 36 ------------------------------------ 1 file changed, 36 deletions(-) (limited to 'include') diff --git a/include/linux/fuse.h b/include/linux/fuse.h index bee2930..63cf167 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h @@ -23,42 +23,6 @@ /** The file containing the version in the form MAJOR.MINOR */ #define FUSE_VERSION_FILE "/proc/fs/fuse/version" -/** Data passed to mount */ -struct fuse_mount_data { - /** The control file descriptor */ - int fd; - - /** The file type of the root inode */ - unsigned int rootmode; - - /** The user ID of the user initiating this mount */ - unsigned int uid; - - /** FUSE specific mount flags */ - unsigned int flags; -}; - -/* FUSE mount flags: */ - -/** If the FUSE_DEFAULT_PERMISSIONS flag is given, the filesystem -module will check permissions based on the file mode. Otherwise no -permission checking is done in the kernel */ -#define FUSE_DEFAULT_PERMISSIONS (1 << 0) - -/** If the FUSE_ALLOW_OTHER flag is given, then not only the user - doing the mount will be allowed to access the filesystem */ -#define FUSE_ALLOW_OTHER (1 << 1) - -/** If the FUSE_KERNEL_CACHE flag is given, then files will be cached - until the INVALIDATE operation is invoked */ -#define FUSE_KERNEL_CACHE (1 << 2) - -/** Allow FUSE to combine reads into 64k chunks. This is useful if - the filesystem is better at handling large chunks. NOTE: in - current implementation the raw throughput is worse for large reads - than for small. */ -#define FUSE_LARGE_READ (1 << 3) - struct fuse_attr { unsigned int mode; unsigned int nlink; -- cgit v1.2.3