From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH v6 net] stmmac: strip all VLAN tag types when kernel 802.1Q support is selected Date: Sun, 10 Jun 2018 12:29:18 -0700 (PDT) Message-ID: <20180610.122918.824988605265684146.davem@davemloft.net> References: <20180603.103313.1827081859745223157.davem@davemloft.net> <7b97acda-c9c9-2651-6803-22225d7b47f7@lab.ntt.co.jp> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: makita.toshiaki@lab.ntt.co.jp, Jose.Abreu@synopsys.com, f.fainelli@gmail.com, netdev@vger.kernel.org, peppe.cavallaro@st.com, alexandre.torgue@st.com To: eladv6@gmail.com Return-path: Received: from shards.monkeyblade.net ([184.105.139.130]:41392 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932094AbeFJT3T (ORCPT ); Sun, 10 Jun 2018 15:29:19 -0400 In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: From: Elad Nachman Date: Fri, 8 Jun 2018 12:19:29 +0300 > stmmac reception handler calls stmmac_rx_vlan() to strip the vlan before > calling napi_gro_receive(). > > The function assumes VLAN tagged frames are always tagged with > 802.1Q protocol, and assigns ETH_P_8021Q to the skb by hard-coding > the parameter on call to __vlan_hwaccel_put_tag() . > > This causes packets not to be passed to the VLAN slave if it was created > with 802.1AD protocol > (ip link add link eth0 eth0.100 type vlan proto 802.1ad id 100). > > This fix passes the protocol from the VLAN header into > __vlan_hwaccel_put_tag() instead of using the hard-coded value of > ETH_P_8021Q. > > NETIF_F_HW_VLAN_CTAG_RX check was removed and instead the strip action > is dependent upon a preprocessor define which is defined when 802.1Q > support is selected in the kernel config. > > NETIF_F_HW_VLAN_STAG_RX feature was added to be in line with the driver > actual abilities. > > Signed-off-by: Elad Nachman You can't remove the NETIF_F_* checks. If the user doesn't have VLAN offloading enabled, the VLAN tags should be left in the packet as-is. It can't be controlled by a CPP check.