4 (C) 2001 Andreas Gruenbacher, <a.gruenbacher@computer.org>
7 #include <linux/posix_acl_xattr.h>
9 #define EXT4_ACL_VERSION 0x0001
20 } ext4_acl_entry_short;
26 static inline size_t ext4_acl_size(int count)
29 return sizeof(ext4_acl_header) +
30 count * sizeof(ext4_acl_entry_short);
32 return sizeof(ext4_acl_header) +
33 4 * sizeof(ext4_acl_entry_short) +
34 (count - 4) * sizeof(ext4_acl_entry);
38 static inline int ext4_acl_count(size_t size)
41 size -= sizeof(ext4_acl_header);
42 s = size - 4 * sizeof(ext4_acl_entry_short);
44 if (size % sizeof(ext4_acl_entry_short))
46 return size / sizeof(ext4_acl_entry_short);
48 if (s % sizeof(ext4_acl_entry))
50 return s / sizeof(ext4_acl_entry) + 4;
54 #ifdef CONFIG_EXT4_FS_POSIX_ACL
57 struct posix_acl *ext4_get_acl(struct inode *inode, int type);
58 extern int ext4_acl_chmod(struct inode *);
59 extern int ext4_init_acl(handle_t *, struct inode *, struct inode *);
61 #else /* CONFIG_EXT4_FS_POSIX_ACL */
62 #include <linux/sched.h>
63 #define ext4_get_acl NULL
66 ext4_acl_chmod(struct inode *inode)
72 ext4_init_acl(handle_t *handle, struct inode *inode, struct inode *dir)
76 #endif /* CONFIG_EXT4_FS_POSIX_ACL */