From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751114AbbJCVyi (ORCPT ); Sat, 3 Oct 2015 17:54:38 -0400 Received: from mail-la0-f43.google.com ([209.85.215.43]:35617 "EHLO mail-la0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750949AbbJCVyg (ORCPT ); Sat, 3 Oct 2015 17:54:36 -0400 Subject: Re: [PATCH v2 1/5] net: dsa: add missing kfree on remove To: Neil Armstrong , "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> <560FF239.2060903@baylibre.com> From: Sergei Shtylyov Message-ID: <56104E99.5020105@cogentembedded.com> Date: Sun, 4 Oct 2015 00:54:33 +0300 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <560FF239.2060903@baylibre.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/3/2015 6:20 PM, Neil Armstrong wrote: >> 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. Formally, all the patches should be checkpatch-clean... > Neil MBR, Sergei