xattr.h (27eb2c4b3d3e13f376a359e293c212a2e9407af5) xattr.h (64e178a7118b1cf7648391755e44dcc209091003)
1/*
2 File: fs/ext4/xattr.h
3
4 On-disk format of extended attributes for the ext4 filesystem.
5
6 (C) 2001 Andreas Gruenbacher, <a.gruenbacher@computer.org>
7*/
8

--- 82 unchanged lines hidden (view full) ---

91
92struct ext4_xattr_ibody_find {
93 struct ext4_xattr_search s;
94 struct ext4_iloc iloc;
95};
96
97extern const struct xattr_handler ext4_xattr_user_handler;
98extern const struct xattr_handler ext4_xattr_trusted_handler;
1/*
2 File: fs/ext4/xattr.h
3
4 On-disk format of extended attributes for the ext4 filesystem.
5
6 (C) 2001 Andreas Gruenbacher, <a.gruenbacher@computer.org>
7*/
8

--- 82 unchanged lines hidden (view full) ---

91
92struct ext4_xattr_ibody_find {
93 struct ext4_xattr_search s;
94 struct ext4_iloc iloc;
95};
96
97extern const struct xattr_handler ext4_xattr_user_handler;
98extern const struct xattr_handler ext4_xattr_trusted_handler;
99extern const struct xattr_handler ext4_xattr_acl_access_handler;
100extern const struct xattr_handler ext4_xattr_acl_default_handler;
101extern const struct xattr_handler ext4_xattr_security_handler;
102
103extern ssize_t ext4_listxattr(struct dentry *, char *, size_t);
104
105extern int ext4_xattr_get(struct inode *, int, const char *, void *, size_t);
106extern int ext4_xattr_set(struct inode *, int, const char *, const void *, size_t, int);
107extern int ext4_xattr_set_handle(handle_t *, struct inode *, int, const char *, const void *, size_t, int);
108

--- 30 unchanged lines hidden ---
99extern const struct xattr_handler ext4_xattr_security_handler;
100
101extern ssize_t ext4_listxattr(struct dentry *, char *, size_t);
102
103extern int ext4_xattr_get(struct inode *, int, const char *, void *, size_t);
104extern int ext4_xattr_set(struct inode *, int, const char *, const void *, size_t, int);
105extern int ext4_xattr_set_handle(handle_t *, struct inode *, int, const char *, const void *, size_t, int);
106

--- 30 unchanged lines hidden ---