diff options
author | Tiger Yang <tiger.yang@oracle.com> | 2008-11-14 03:17:18 (GMT) |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 16:34:20 (GMT) |
commit | 23fc2702bea686569281708ad519b41a11d0a2f4 (patch) | |
tree | a567f38647047836332d1cfc17d7ad0be05c55ef /fs/ocfs2/file.c | |
parent | 929fb014e041c6572c5e8c3686f1e32742b5b953 (diff) | |
download | linux-23fc2702bea686569281708ad519b41a11d0a2f4.tar.xz |
ocfs2: add ocfs2_check_acl
This function is used to enhance permission checking with POSIX ACLs.
Signed-off-by: Tiger Yang <tiger.yang@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2/file.c')
-rw-r--r-- | fs/ocfs2/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 3605491..7bad7d9 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -56,6 +56,7 @@ #include "suballoc.h" #include "super.h" #include "xattr.h" +#include "acl.h" #include "buffer_head_io.h" @@ -1035,7 +1036,7 @@ int ocfs2_permission(struct inode *inode, int mask) goto out; } - ret = generic_permission(inode, mask, NULL); + ret = generic_permission(inode, mask, ocfs2_check_acl); ocfs2_inode_unlock(inode, 0); out: |