diff options
author | Tiger Yang <tiger.yang@oracle.com> | 2008-11-13 22:17:04 -0500 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 11:34:20 -0500 |
commit | 929fb014e041c6572c5e8c3686f1e32742b5b953 (patch) | |
tree | 149328875787dab63ec873cfa06364f4a23ac06d /fs/ocfs2/Makefile | |
parent | 4e3e9d027f63488e676bf7700ec515a192e54f69 (diff) |
ocfs2: add POSIX ACL API
This patch adds POSIX ACL(access control lists) APIs in ocfs2. We convert
struct posix_acl to many ocfs2_acl_entry and regard them as an extended
attribute entry.
Signed-off-by: Tiger Yang <tiger.yang@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2/Makefile')
-rw-r--r-- | fs/ocfs2/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/ocfs2/Makefile b/fs/ocfs2/Makefile index 589dcdfdfe3c..e9ef5d162db1 100644 --- a/fs/ocfs2/Makefile +++ b/fs/ocfs2/Makefile | |||
@@ -37,6 +37,10 @@ ocfs2-objs := \ | |||
37 | ver.o \ | 37 | ver.o \ |
38 | xattr.o | 38 | xattr.o |
39 | 39 | ||
40 | ifeq ($(CONFIG_OCFS2_FS_POSIX_ACL),y) | ||
41 | ocfs2-objs += acl.o | ||
42 | endif | ||
43 | |||
40 | ocfs2_stackglue-objs := stackglue.o | 44 | ocfs2_stackglue-objs := stackglue.o |
41 | ocfs2_stack_o2cb-objs := stack_o2cb.o | 45 | ocfs2_stack_o2cb-objs := stack_o2cb.o |
42 | ocfs2_stack_user-objs := stack_user.o | 46 | ocfs2_stack_user-objs := stack_user.o |