Received: by 2002:ac0:946b:0:0:0:0:0 with SMTP id j40csp1243320imj; Thu, 14 Feb 2019 03:33:04 -0800 (PST) X-Google-Smtp-Source: AHgI3IaVV+cza6tuSA4//qDhzibDHHrU4/i0VWuQVpt5r/gST36OUagxMfqvxQCfkoCtqYadJAW/ X-Received: by 2002:a63:3dc8:: with SMTP id k191mr3140516pga.368.1550143984034; Thu, 14 Feb 2019 03:33:04 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1550143984; cv=none; d=google.com; s=arc-20160816; b=m7t3HwtzVseYkquaBVhnLupfhehps5mLmbbHz3b5aakxHc7tlZlyXoKaxv/c8U8jy1 TC9KNRUIWr2RC/mIVB1hiEq1498fktAfClMXTAzOL7zLDOLt+dfWnYnaYnj2c2xiYoMx c8beN6XGcHX9n1L4w1V3O0peiL2HZgn4hE6RZVHDY4hXFIA3u9AKT8Jnl9jeRIHkjM/j gIJXYARDOLUn5UNEfUKINnI6WmtqQTJL9Ebz6sfir/qR4IUdOQ9RLjDwwtoCIXYVyT+P XVFStFQZWHodxjXRiZLbKJFFAhyiT2FE4/Va/srz6j2yAwq2AqFMzhOOSb0KR5BemoI8 EiOg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:in-reply-to :mime-version:user-agent:date:message-id:from:references:cc:to :subject; bh=8U2zAswdqDDKUZ4j7aWqZdt4MwUiV6F3UhWExbTnVQs=; b=G5MtMPB2xZFUpYCDgsN/ZzG+J76AMJ5T30XmxdthXgfmCBnz6Ny05oFJ+Go6qpksSU 9YbnGebGFERs4Kk4efj060J9hlfC5ignsd9qh0RZWpZq/vlF2MRUHm8PqmWx0liYskeH QCgXnSYrZrfnwhF1Rjo04f4FBWOQToz1Xht7sKCmV/pyjO0VhK0/frB46Y+bddICWAPz iWF5EdqR0cYU3tyxS8QCPh2Ry9wYZJ6gqidtMWZaXG0/Kyxv2OK+UYqEl5vTfdO/y3mJ AP473TKTjPLmPtWzdEsf9a6Wk8SG4f7xo1yYsIPSWa//zEKbObcICC0MixFNEj/hof4X Ox3A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v7si1904585pgs.304.2019.02.14.03.32.47; Thu, 14 Feb 2019 03:33:04 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2393863AbfBNHLD (ORCPT + 99 others); Thu, 14 Feb 2019 02:11:03 -0500 Received: from szxga05-in.huawei.com ([45.249.212.191]:3724 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S2387523AbfBNHLD (ORCPT ); Thu, 14 Feb 2019 02:11:03 -0500 Received: from DGGEMS404-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 4C5D0FB32BBA15E738B9; Thu, 14 Feb 2019 15:10:58 +0800 (CST) Received: from [10.151.23.176] (10.151.23.176) by smtp.huawei.com (10.3.19.204) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 14 Feb 2019 15:10:52 +0800 Subject: Re: [PATCH v2] staging: erofs: fix memleak of inode's shared xattr array To: Sheng Yong CC: , , , , , , Miao Xie , "fangwei (I)" References: <20190214064636.30039-1-shengyong1@huawei.com> From: Gao Xiang Message-ID: Date: Thu, 14 Feb 2019 15:10:04 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: <20190214064636.30039-1-shengyong1@huawei.com> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.151.23.176] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2019/2/14 14:46, Sheng Yong wrote: > If it fails to read a shared xattr page, the inode's shared xattr array > is not freed. The next time the inode's xattr is accessed, the previously > allocated array is leaked. > > Signed-off-by: Sheng Yong LGTM, Fixes: b17500a0fdba ("staging: erofs: introduce xattr & acl support") Cc: # 4.19+ Reviewed-by: Gao Xiang [and there is also another race condition in it, but different root cause. let me fix it later independently...] Thanks, Gao Xiang