aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/fuse_i.h
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-08-01 12:48:30 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-08-01 12:48:30 +0000
commit7b28eaeac5f2d8d591b1b0c94e10b64644017869 (patch)
treeb59344f5b9261da640b0e21ac398093755fdfbae /kernel/fuse_i.h
parente77cc07e755c1e360455e707653f705d0bd25622 (diff)
downloadlibfuse-7b28eaeac5f2d8d591b1b0c94e10b64644017869.tar.gz
fix
Diffstat (limited to 'kernel/fuse_i.h')
-rw-r--r--kernel/fuse_i.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/kernel/fuse_i.h b/kernel/fuse_i.h
index 4faaff7..cf990fb 100644
--- a/kernel/fuse_i.h
+++ b/kernel/fuse_i.h
@@ -334,9 +334,12 @@ struct fuse_conn {
/** Is removexattr not implemented by fs? */
unsigned no_removexattr : 1;
- /** Are file locking primitives implemented by fs? */
+ /** Are file locking primitives not implemented by fs? */
unsigned no_lk : 1;
+ /** Is access not implemented by fs */
+ unsigned no_access : 1;
+
#ifdef KERNEL_2_6
/** Backing dev info */
struct backing_dev_info bdi;