aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/acl.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ocfs2/acl.h')
-rw-r--r--fs/ocfs2/acl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/ocfs2/acl.h b/fs/ocfs2/acl.h
index fef10f1b782b..68ffd6436c50 100644
--- a/fs/ocfs2/acl.h
+++ b/fs/ocfs2/acl.h
@@ -29,10 +29,15 @@ struct ocfs2_acl_entry {
29#ifdef CONFIG_OCFS2_FS_POSIX_ACL 29#ifdef CONFIG_OCFS2_FS_POSIX_ACL
30 30
31extern int ocfs2_check_acl(struct inode *, int); 31extern int ocfs2_check_acl(struct inode *, int);
32extern int ocfs2_acl_chmod(struct inode *);
32 33
33#else /* CONFIG_OCFS2_FS_POSIX_ACL*/ 34#else /* CONFIG_OCFS2_FS_POSIX_ACL*/
34 35
35#define ocfs2_check_acl NULL 36#define ocfs2_check_acl NULL
37static inline int ocfs2_acl_chmod(struct inode *inode)
38{
39 return 0;
40}
36 41
37#endif /* CONFIG_OCFS2_FS_POSIX_ACL*/ 42#endif /* CONFIG_OCFS2_FS_POSIX_ACL*/
38 43