Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752083AbdHANqU (ORCPT ); Tue, 1 Aug 2017 09:46:20 -0400 Received: from aibo.runbox.com ([91.220.196.211]:38594 "EHLO aibo.runbox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751913AbdHANqQ (ORCPT ); Tue, 1 Aug 2017 09:46:16 -0400 Subject: Re: [PATCH v2 net-next 2/3] net: dsa: lan9303: define LAN9303_NUM_PORTS 3 To: Andrew Lunn Cc: Juergen Borleis , kernel@pengutronix.de, vivien.didelot@savoirfairelinux.com, f.fainelli@gmail.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org References: <20170801111439.1143-1-privat@egil-hjelmeland.no> <20170801111439.1143-3-privat@egil-hjelmeland.no> <201708011349.52529.jbe@pengutronix.de> <10b6b9fc-d2f9-1761-802f-724d9f6b3df1@egil-hjelmeland.no> <20170801132728.GA23157@lunn.ch> From: Egil Hjelmeland Message-ID: <8cab9088-3863-c332-8273-c1c4b2c9ec00@egil-hjelmeland.no> Date: Tue, 1 Aug 2017 15:45:37 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <20170801132728.GA23157@lunn.ch> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1313 Lines: 50 On 01. aug. 2017 15:27, Andrew Lunn wrote: > On Tue, Aug 01, 2017 at 02:31:44PM +0200, Egil Hjelmeland wrote: >> On 01. aug. 2017 13:49, Juergen Borleis wrote: >>> Hi Egil, >>> >>> On Tuesday 01 August 2017 13:14:38 Egil Hjelmeland wrote: >>>> Will be used instead of '3' in upcomming patches. >>>> >>>> >>>> +#define LAN9303_NUM_PORTS 3 >>>> + >>> >>> Maybe we should put this macro into a shared location because >>> in "net/dsa/tag_lan9303.c" there is already a "#define LAN9303_MAX_PORTS >>> 3". >>> >>> jb >>> >> >> Is there any suitable shared location for such driver specific >> definitions? >> I could change the name to LAN9303_MAX_PORTS so it the same. >> Rhymes better with DSA_MAX_PORTS too. > > Hi Egil, Juergen > > The other tag drivers do: > > if (source_port >= ds->num_ports || !ds->ports[source_port].netdev) > return NULL; > > or just > > if (!ds->ports[port].netdev) > return NULL; > > The first version is the safest, since a malicious switch could return > port 42, and you are accessing way off the end of ds->ports[]. It does > however require you call dsa_switch_alloc() with the correct number of > ports. > Sounds like a plan for a later patch, when changing to dsa_switch_alloc(LAN9303_NUM_PORTS) > Andrew > Egil