aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2004-04-13 10:49:14 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2004-04-13 10:49:14 +0000
commit7f6bc8968ff6ca488991b0c5b1b9c4846dc1ccda (patch)
tree187908daf8a7c7c42381b43cd1b213599e81f79e /include
parentc26c14d8db2072ca1ddc9f9f3133edb3f1c564aa (diff)
text mount options
Diffstat (limited to 'include')
-rw-r--r--include/linux/fuse.h36
1 files changed, 0 insertions, 36 deletions
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;