Displaying 2 results from an estimated 2 matches for "attr_multi".
2009 Mar 04
9
samba 3.3.x vfs_acl_xattr support
>From samba 3.3.0 release notes, it seems like samba 3.3.x is at least
experimenting using xattr to store NT ACL, which can eventually provide
better NT ACL support. I tried similar features with samba 4.0.0 alpha6,
which works very nice. Is there any plan to provide same level of NT ACL
support with samba 3.3.x? If there is such plan, any targeted date for that?
Thanks,
Ying
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...le interface structure */
+ struct xfs_attrlist_cursor pos; /* opaque cookie, list offset */
+ uint32_t flags; /* which namespace to use */
+ uint32_t buflen; /* length of buffer supplied */
+ void __user *buffer; /* returned names */
+} xfs_fsop_attrlist_handlereq_t;
+
+typedef struct xfs_attr_multiop {
+ uint32_t am_opcode;
+#define ATTR_OP_GET 1 /* return the indicated attr's value */
+#define ATTR_OP_SET 2 /* set/create the indicated attr/value pair */
+#define ATTR_OP_REMOVE 3 /* remove the indicated attr */
+ int32_t am_error;
+ void __user *am_attrname;
+ void __user *am_attrvalu...