diff options
Diffstat (limited to 'fs/jffs2/acl.h')
-rw-r--r-- | fs/jffs2/acl.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/jffs2/acl.h b/fs/jffs2/acl.h index c98610b4e81c..3f41e09200b8 100644 --- a/fs/jffs2/acl.h +++ b/fs/jffs2/acl.h | |||
@@ -7,20 +7,20 @@ | |||
7 | * | 7 | * |
8 | * For licensing information, see the file 'LICENCE' in the jffs2 directory. | 8 | * For licensing information, see the file 'LICENCE' in the jffs2 directory. |
9 | *-------------------------------------------------------------------------*/ | 9 | *-------------------------------------------------------------------------*/ |
10 | typedef struct { | 10 | struct jffs2_acl_entry { |
11 | jint16_t e_tag; | 11 | jint16_t e_tag; |
12 | jint16_t e_perm; | 12 | jint16_t e_perm; |
13 | jint32_t e_id; | 13 | jint32_t e_id; |
14 | } jffs2_acl_entry; | 14 | }; |
15 | 15 | ||
16 | typedef struct { | 16 | struct jffs2_acl_entry_short { |
17 | jint16_t e_tag; | 17 | jint16_t e_tag; |
18 | jint16_t e_perm; | 18 | jint16_t e_perm; |
19 | } jffs2_acl_entry_short; | 19 | }; |
20 | 20 | ||
21 | typedef struct { | 21 | struct jffs2_acl_header { |
22 | jint32_t a_version; | 22 | jint32_t a_version; |
23 | } jffs2_acl_header; | 23 | }; |
24 | 24 | ||
25 | #ifdef __KERNEL__ | 25 | #ifdef __KERNEL__ |
26 | #ifdef CONFIG_JFFS2_FS_POSIX_ACL | 26 | #ifdef CONFIG_JFFS2_FS_POSIX_ACL |