diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-13 13:37:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-13 13:37:36 -0400 |
commit | c327ff6250fb558659ad689fe33f50524eda74e3 (patch) | |
tree | 57e0ed5a753c55f1693d7fe8628b4411ab5ae71d /fs/jfs/xattr.c | |
parent | c0ac515e2951dd2a999cfd21dea3fdc1055f1573 (diff) | |
parent | 59192ed9e7aa81b06a1803661419f7261afca1ad (diff) |
Merge head 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6
Diffstat (limited to 'fs/jfs/xattr.c')
-rw-r--r-- | fs/jfs/xattr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jfs/xattr.c b/fs/jfs/xattr.c index ee438d429d45..554ec739e49b 100644 --- a/fs/jfs/xattr.c +++ b/fs/jfs/xattr.c | |||
@@ -781,7 +781,7 @@ static int can_set_xattr(struct inode *inode, const char *name, | |||
781 | if (IS_RDONLY(inode)) | 781 | if (IS_RDONLY(inode)) |
782 | return -EROFS; | 782 | return -EROFS; |
783 | 783 | ||
784 | if (IS_IMMUTABLE(inode) || IS_APPEND(inode) || S_ISLNK(inode->i_mode)) | 784 | if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) |
785 | return -EPERM; | 785 | return -EPERM; |
786 | 786 | ||
787 | if(strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN) == 0) | 787 | if(strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN) == 0) |
@@ -790,12 +790,12 @@ static int can_set_xattr(struct inode *inode, const char *name, | |||
790 | */ | 790 | */ |
791 | return can_set_system_xattr(inode, name, value, value_len); | 791 | return can_set_system_xattr(inode, name, value, value_len); |
792 | 792 | ||
793 | if(strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) != 0) | 793 | if(strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) == 0) |
794 | return (capable(CAP_SYS_ADMIN) ? 0 : -EPERM); | 794 | return (capable(CAP_SYS_ADMIN) ? 0 : -EPERM); |
795 | 795 | ||
796 | #ifdef CONFIG_JFS_SECURITY | 796 | #ifdef CONFIG_JFS_SECURITY |
797 | if (strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) | 797 | if (strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) |
798 | != 0) | 798 | == 0) |
799 | return 0; /* Leave it to the security module */ | 799 | return 0; /* Leave it to the security module */ |
800 | #endif | 800 | #endif |
801 | 801 | ||