]> err.no Git - linux-2.6/blobdiff - fs/fuse/fuse_i.h
[PATCH] FUSE - extended attribute operations
[linux-2.6] / fs / fuse / fuse_i.h
index c8e6c87496e0c4f4619858cfa34779667e3b4837..86183c5621048fccaeb680a8ebc5ef05502cbca7 100644 (file)
@@ -245,6 +245,18 @@ struct fuse_conn {
        /** Is flush not implemented by fs? */
        unsigned no_flush : 1;
 
+       /** Is setxattr not implemented by fs? */
+       unsigned no_setxattr : 1;
+
+       /** Is getxattr not implemented by fs? */
+       unsigned no_getxattr : 1;
+
+       /** Is listxattr not implemented by fs? */
+       unsigned no_listxattr : 1;
+
+       /** Is removexattr not implemented by fs? */
+       unsigned no_removexattr : 1;
+
        /** Backing dev info */
        struct backing_dev_info bdi;
 };