fsnotify: unified filesystem notification backend
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / reiserfs_acl.h
CommitLineData
1da177e4
LT
1#include <linux/init.h>
2#include <linux/posix_acl.h>
1da177e4
LT
3
4#define REISERFS_ACL_VERSION 0x0001
5
6typedef struct {
bd4c625c
LT
7 __le16 e_tag;
8 __le16 e_perm;
9 __le32 e_id;
1da177e4
LT
10} reiserfs_acl_entry;
11
12typedef struct {
bd4c625c
LT
13 __le16 e_tag;
14 __le16 e_perm;
1da177e4
LT
15} reiserfs_acl_entry_short;
16
17typedef struct {
bd4c625c 18 __le32 a_version;
1da177e4
LT
19} reiserfs_acl_header;
20
21static inline size_t reiserfs_acl_size(int count)
22{
23 if (count <= 4) {
24 return sizeof(reiserfs_acl_header) +
bd4c625c 25 count * sizeof(reiserfs_acl_entry_short);
1da177e4
LT
26 } else {
27 return sizeof(reiserfs_acl_header) +
bd4c625c
LT
28 4 * sizeof(reiserfs_acl_entry_short) +
29 (count - 4) * sizeof(reiserfs_acl_entry);
1da177e4
LT
30 }
31}
32
33static inline int reiserfs_acl_count(size_t size)
34{
35 ssize_t s;
36 size -= sizeof(reiserfs_acl_header);
37 s = size - 4 * sizeof(reiserfs_acl_entry_short);
38 if (s < 0) {
39 if (size % sizeof(reiserfs_acl_entry_short))
40 return -1;
41 return size / sizeof(reiserfs_acl_entry_short);
42 } else {
43 if (s % sizeof(reiserfs_acl_entry))
44 return -1;
45 return s / sizeof(reiserfs_acl_entry) + 4;
46 }
47}
48
1da177e4 49#ifdef CONFIG_REISERFS_FS_POSIX_ACL
bd4c625c
LT
50struct posix_acl *reiserfs_get_acl(struct inode *inode, int type);
51int reiserfs_acl_chmod(struct inode *inode);
0ab2621e
JM
52int reiserfs_inherit_default_acl(struct reiserfs_transaction_handle *th,
53 struct inode *dir, struct dentry *dentry,
bd4c625c
LT
54 struct inode *inode);
55int reiserfs_cache_default_acl(struct inode *dir);
48b32a35
JM
56extern struct xattr_handler reiserfs_posix_acl_default_handler;
57extern struct xattr_handler reiserfs_posix_acl_access_handler;
cfe14677
AD
58
59static inline void reiserfs_init_acl_access(struct inode *inode)
60{
61 REISERFS_I(inode)->i_acl_access = NULL;
62}
63
64static inline void reiserfs_init_acl_default(struct inode *inode)
65{
66 REISERFS_I(inode)->i_acl_default = NULL;
67}
1da177e4
LT
68#else
69
1da177e4
LT
70#define reiserfs_cache_default_acl(inode) 0
71
bc5e483d
AM
72static inline struct posix_acl *reiserfs_get_acl(struct inode *inode, int type)
73{
74 return NULL;
75}
76
bd4c625c 77static inline int reiserfs_acl_chmod(struct inode *inode)
1da177e4 78{
bd4c625c 79 return 0;
1da177e4
LT
80}
81
82static inline int
77e46586
AB
83reiserfs_inherit_default_acl(struct reiserfs_transaction_handle *th,
84 const struct inode *dir, struct dentry *dentry,
bd4c625c 85 struct inode *inode)
1da177e4 86{
bd4c625c 87 return 0;
1da177e4
LT
88}
89
cfe14677
AD
90static inline void reiserfs_init_acl_access(struct inode *inode)
91{
92}
93
94static inline void reiserfs_init_acl_default(struct inode *inode)
95{
96}
1da177e4 97#endif