From: Dan Carpenter Date: Sat, 29 May 2010 09:48:35 +0000 (+0000) Subject: Btrfs: handle ERR_PTR from posix_acl_from_xattr() X-Git-Tag: upstream/snapshot3+hdmi~13881^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=834e74759a473f8101a273e843d1edec2778801d;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git Btrfs: handle ERR_PTR from posix_acl_from_xattr() posix_acl_from_xattr() returns both ERR_PTRs and null, but it's OK to pass null values to set_cached_acl() Signed-off-by: Dan Carpenter Signed-off-by: Chris Mason --- diff --git a/fs/btrfs/acl.c b/fs/btrfs/acl.c index a372985..1606dc1 100644 --- a/fs/btrfs/acl.c +++ b/fs/btrfs/acl.c @@ -60,6 +60,8 @@ static struct posix_acl *btrfs_get_acl(struct inode *inode, int type) size = __btrfs_getxattr(inode, name, value, size); if (size > 0) { acl = posix_acl_from_xattr(value, size); + if (IS_ERR(acl)) + return acl; set_cached_acl(inode, type, acl); } kfree(value);