Prev: [088/111] [IA64] fix SBA IOMMU to handle allocation failure properly
Next: [047/111] Btrfs: Avoid orphan inodes cleanup while replaying log
From: Greg KH on 11 Aug 2010 20:40 2.6.32-stable review patch. If anyone has any objections, please let us know. ------------------ From: Yang Hongyang <yanghy(a)cn.fujitsu.com> commit f858153c367a397235d3e81136741e40e44faf1d upstream. In btrfs_init_acl() cloned acl is not released Signed-off-by: Yang Hongyang <yanghy(a)cn.fujitsu.com> Signed-off-by: Chris Mason <chris.mason(a)oracle.com> Acked-by: Jeff Mahoney <jeffm(a)suse.com> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- fs/btrfs/acl.c | 1 + 1 file changed, 1 insertion(+) --- a/fs/btrfs/acl.c +++ b/fs/btrfs/acl.c @@ -272,6 +272,7 @@ int btrfs_init_acl(struct btrfs_trans_ha ACL_TYPE_ACCESS); } } + posix_acl_release(clone); } failed: posix_acl_release(acl); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |