[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250826113247.3481273-7-konrad.leszczynski@intel.com>
Date: Tue, 26 Aug 2025 13:32:46 +0200
From: Konrad Leszczynski <konrad.leszczynski@...el.com>
To: davem@...emloft.net,
andrew+netdev@...n.ch,
edumazet@...gle.com,
kuba@...nel.org,
pabeni@...hat.com
Cc: netdev@...r.kernel.org,
linux-kernel@...r.kernel.org,
cezary.rojewski@...el.com,
sebastian.basierski@...el.com,
Piotr Warpechowski <piotr.warpechowski@...el.com>,
Karol Jurczenia <karol.jurczenia@...el.com>,
Konrad Leszczynski <konrad.leszczynski@...el.com>
Subject: [PATCH net-next 6/7] net: stmmac: enhance VLAN protocol detection for GRO
From: Piotr Warpechowski <piotr.warpechowski@...el.com>
Enhance protocol extraction in stmmac_has_ip_ethertype() by introducing
MAC offset parameter and changing:
__vlan_get_protocol() -> __vlan_get_protocol_offset()
Add correct header length for VLAN tags, which enable Generic Receive
Offload (GRO) in VLAN.
Co-developed-by: Karol Jurczenia <karol.jurczenia@...el.com>
Signed-off-by: Karol Jurczenia <karol.jurczenia@...el.com>
Reviewed-by: Konrad Leszczynski <konrad.leszczynski@...el.com>
Reviewed-by: Sebastian Basierski <sebastian.basierski@...el.com>
Signed-off-by: Piotr Warpechowski <piotr.warpechowski@...el.com>
---
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
index 3823432b16f1..5ef78fb3f900 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
@@ -4585,13 +4585,14 @@ static netdev_tx_t stmmac_tso_xmit(struct sk_buff *skb, struct net_device *dev)
*/
static bool stmmac_has_ip_ethertype(struct sk_buff *skb)
{
- int depth = 0;
+ int depth = 0, hlen;
__be16 proto;
- proto = __vlan_get_protocol(skb, eth_header_parse_protocol(skb),
- &depth);
+ proto = __vlan_get_protocol_offset(skb, skb->protocol,
+ skb_mac_offset(skb), &depth);
+ hlen = eth_type_vlan(skb->protocol) ? VLAN_ETH_HLEN : ETH_HLEN;
- return (depth <= ETH_HLEN) &&
+ return (depth <= hlen) &&
(proto == htons(ETH_P_IP) || proto == htons(ETH_P_IPV6));
}
--
2.34.1
Powered by blists - more mailing lists