diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-06-19 04:37:33 +0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-06-20 18:45:21 +0400 |
commit | 1d29b5a2ed7eb8862c9b66daf475f3e4c1a40299 (patch) | |
tree | 3829dfe2e49732bd3db1b6232ff71d8e7a32c5ea /fs/reiserfs/xattr.c | |
parent | cf1279111686d9742cbc4145bc9d526c83f59fea (diff) | |
download | linux-1d29b5a2ed7eb8862c9b66daf475f3e4c1a40299.tar.xz |
reiserfs_permission() doesn't need to bail out in RCU mode
nothing blocking other than generic_permission() (and
check_acl callback does bail out in RCU mode).
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/reiserfs/xattr.c')
-rw-r--r-- | fs/reiserfs/xattr.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/reiserfs/xattr.c b/fs/reiserfs/xattr.c index e8a62f41b458..d78089690965 100644 --- a/fs/reiserfs/xattr.c +++ b/fs/reiserfs/xattr.c @@ -954,8 +954,6 @@ static int xattr_mount_check(struct super_block *s) int reiserfs_permission(struct inode *inode, int mask, unsigned int flags) { - if (flags & IPERM_FLAG_RCU) - return -ECHILD; /* * We don't do permission checks on the internal objects. * Permissions are determined by the "owning" object. |