From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752285AbbJCPUh (ORCPT ); Sat, 3 Oct 2015 11:20:37 -0400 Received: from mail-wi0-f173.google.com ([209.85.212.173]:38645 "EHLO mail-wi0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751960AbbJCPUa (ORCPT ); Sat, 3 Oct 2015 11:20:30 -0400 Subject: Re: [PATCH v2 1/5] net: dsa: add missing kfree on remove To: Sergei Shtylyov , "David S. Miller" , Florian Fainelli , Guenter Roeck , vivien.didelot@savoirfairelinux.com, Andrew Lunn , Fabian Frederick , Pavel Nakonechny , Joe Perches , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, nbd@openwrt.org References: <560FE575.7000003@baylibre.com> <560FE731.6050600@cogentembedded.com> From: Neil Armstrong Organization: Baylibre Message-ID: <560FF239.2060903@baylibre.com> Date: Sat, 3 Oct 2015 17:20:25 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <560FE731.6050600@cogentembedded.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/03/2015 04:33 PM, Sergei Shtylyov wrote: > Hello. > > On 10/3/2015 5:25 PM, Neil Armstrong wrote: > >> To prevent memory leakage on unbinding, add missing kfree calls. >> >> Signed-off-by: Neil Armstrong >> --- >> net/dsa/dsa.c | 5 ++++- >> 1 file changed, 4 insertions(+), 1 deletion(-) >> >> diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c >> index c59fa5d..12cec40 100644 >> --- a/net/dsa/dsa.c >> +++ b/net/dsa/dsa.c >> @@ -914,8 +914,10 @@ static void dsa_remove_dst(struct dsa_switch_tree *dst) >> for (i = 0; i < dst->pd->nr_chips; i++) { >> struct dsa_switch *ds = dst->ds[i]; >> >> - if (ds != NULL) >> + if (ds != NULL) { > > Didn;t scripts/checkpatch.pl complain here? just if (ds) is preferred in the networking code. > > MBR, Sergei > Yes, But I considered the cosmetic changes are not the subject of this serie. Neil