[PATCH] remove <linux/xattr_acl.h>
This file duplicates <linux/posix_acl_xattr.h>, using slightly different names. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
f9fd27a253
commit
9a59f452ab
@@ -19,6 +19,7 @@
|
||||
|
||||
#include <linux/fs.h>
|
||||
#include <linux/xattr.h>
|
||||
#include <linux/posix_acl_xattr.h>
|
||||
#include <linux/quotaops.h>
|
||||
#include "jfs_incore.h"
|
||||
#include "jfs_superblock.h"
|
||||
@@ -718,9 +719,9 @@ static int can_set_system_xattr(struct inode *inode, const char *name,
|
||||
return -EPERM;
|
||||
|
||||
/*
|
||||
* XATTR_NAME_ACL_ACCESS is tied to i_mode
|
||||
* POSIX_ACL_XATTR_ACCESS is tied to i_mode
|
||||
*/
|
||||
if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0) {
|
||||
if (strcmp(name, POSIX_ACL_XATTR_ACCESS) == 0) {
|
||||
acl = posix_acl_from_xattr(value, value_len);
|
||||
if (IS_ERR(acl)) {
|
||||
rc = PTR_ERR(acl);
|
||||
@@ -750,7 +751,7 @@ static int can_set_system_xattr(struct inode *inode, const char *name,
|
||||
JFS_IP(inode)->i_acl = JFS_ACL_NOT_CACHED;
|
||||
|
||||
return 0;
|
||||
} else if (strcmp(name, XATTR_NAME_ACL_DEFAULT) == 0) {
|
||||
} else if (strcmp(name, POSIX_ACL_XATTR_DEFAULT) == 0) {
|
||||
acl = posix_acl_from_xattr(value, value_len);
|
||||
if (IS_ERR(acl)) {
|
||||
rc = PTR_ERR(acl);
|
||||
|
Reference in New Issue
Block a user