aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/acl.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/btrfs/acl.c')
-rw-r--r--fs/btrfs/acl.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/fs/btrfs/acl.c b/fs/btrfs/acl.c
index aee9f0657c35..889ba89d3f9f 100644
--- a/fs/btrfs/acl.c
+++ b/fs/btrfs/acl.c
@@ -23,32 +23,50 @@
23#include "ctree.h" 23#include "ctree.h"
24#include "xattr.h" 24#include "xattr.h"
25 25
26/*
27 * FIXME: At this point this is all place holder stuff, we just return
28 * -EOPNOTSUPP so cp won't complain when it tries to copy over a file with an
29 * acl on it.
30 */
31
26static int btrfs_xattr_acl_access_get(struct inode *inode, const char *name, 32static int btrfs_xattr_acl_access_get(struct inode *inode, const char *name,
27 void *value, size_t size) 33 void *value, size_t size)
28{ 34{
35 /*
29 return btrfs_xattr_get(inode, BTRFS_XATTR_INDEX_POSIX_ACL_ACCESS, name, 36 return btrfs_xattr_get(inode, BTRFS_XATTR_INDEX_POSIX_ACL_ACCESS, name,
30 value, size); 37 value, size);
38 */
39 return -EOPNOTSUPP;
31} 40}
32 41
33static int btrfs_xattr_acl_access_set(struct inode *inode, const char *name, 42static int btrfs_xattr_acl_access_set(struct inode *inode, const char *name,
34 const void *value, size_t size, int flags) 43 const void *value, size_t size, int flags)
35{ 44{
45 /*
36 return btrfs_xattr_set(inode, BTRFS_XATTR_INDEX_POSIX_ACL_ACCESS, name, 46 return btrfs_xattr_set(inode, BTRFS_XATTR_INDEX_POSIX_ACL_ACCESS, name,
37 value, size, flags); 47 value, size, flags);
48 */
49 return -EOPNOTSUPP;
38} 50}
39 51
40static int btrfs_xattr_acl_default_get(struct inode *inode, const char *name, 52static int btrfs_xattr_acl_default_get(struct inode *inode, const char *name,
41 void *value, size_t size) 53 void *value, size_t size)
42{ 54{
55 /*
43 return btrfs_xattr_get(inode, BTRFS_XATTR_INDEX_POSIX_ACL_DEFAULT, 56 return btrfs_xattr_get(inode, BTRFS_XATTR_INDEX_POSIX_ACL_DEFAULT,
44 name, value, size); 57 name, value, size);
58 */
59 return -EOPNOTSUPP;
45} 60}
46 61
47static int btrfs_xattr_acl_default_set(struct inode *inode, const char *name, 62static int btrfs_xattr_acl_default_set(struct inode *inode, const char *name,
48 const void *value, size_t size, int flags) 63 const void *value, size_t size, int flags)
49{ 64{
65 /*
50 return btrfs_xattr_set(inode, BTRFS_XATTR_INDEX_POSIX_ACL_DEFAULT, 66 return btrfs_xattr_set(inode, BTRFS_XATTR_INDEX_POSIX_ACL_DEFAULT,
51 name, value, size, flags); 67 name, value, size, flags);
68 */
69 return -EOPNOTSUPP;
52} 70}
53 71
54struct xattr_handler btrfs_xattr_acl_default_handler = { 72struct xattr_handler btrfs_xattr_acl_default_handler = {