From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out30-132.freemail.mail.aliyun.com (out30-132.freemail.mail.aliyun.com [115.124.30.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0E5C015C2; Tue, 2 Jan 2024 02:13:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com X-Alimail-AntiSpam:AC=PASS;BC=-1|-1;BR=01201311R251e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018045176;MF=tonylu@linux.alibaba.com;NM=1;PH=DS;RN=14;SR=0;TI=SMTPD_---0VziwJm._1704161598; Received: from localhost(mailfrom:tonylu@linux.alibaba.com fp:SMTPD_---0VziwJm._1704161598) by smtp.aliyun-inc.com; Tue, 02 Jan 2024 10:13:19 +0800 Date: Tue, 2 Jan 2024 10:13:17 +0800 From: Tony Lu To: Markus Elfring Cc: linux-s390@vger.kernel.org, netdev@vger.kernel.org, kernel-janitors@vger.kernel.org, "David S. Miller" , "D. Wythe" , Eric Dumazet , Jakub Kicinski , Jan Karcher , Paolo Abeni , Wen Gu , Wenjia Zhang , LKML Subject: Re: [PATCH 1/2] net/smc: Return directly after a failed kzalloc() in smc_fill_gid_list() Message-ID: Reply-To: Tony Lu References: <8ba404fd-7f41-44a9-9869-84f3af18fb46@web.de> Precedence: bulk X-Mailing-List: linux-s390@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Sun, Dec 31, 2023 at 03:58:15PM +0100, Markus Elfring wrote: > From: Markus Elfring > Date: Sun, 31 Dec 2023 15:15:19 +0100 > > The kfree() function was called in one case by > the smc_fill_gid_list() function during error handling > even if the passed variable contained a null pointer. > This issue was detected by using the Coccinelle software. > > Thus return directly after a call of the function "kzalloc" failed > at the beginning. > > Signed-off-by: Markus Elfring LGTM, thank you. Also please add net tag in subject and fixes tag in commit body. Reviewed-by: Tony Lu > --- > net/smc/af_smc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c > index 7fc2f3c6d248..a396a9977ba9 100644 > --- a/net/smc/af_smc.c > +++ b/net/smc/af_smc.c > @@ -1180,7 +1180,7 @@ void smc_fill_gid_list(struct smc_link_group *lgr, > > alt_ini = kzalloc(sizeof(*alt_ini), GFP_KERNEL); > if (!alt_ini) > - goto out; > + return; > > alt_ini->vlan_id = lgr->vlan_id; > alt_ini->check_smcrv2 = true; > -- > 2.43.0