[PATCH 40/44] net: mana: Fix the tso_bytes calculation
authorHaiyang Zhang <haiyangz@microsoft.com>
Fri, 29 Sep 2023 20:42:26 +0000 (13:42 -0700)
committerSalvatore Bonaccorso <carnil@debian.org>
Wed, 7 May 2025 15:10:56 +0000 (17:10 +0200)
sizeof(struct hop_jumbo_hdr) is not part of tso_bytes, so remove
the subtraction from header size.

Cc: stable@vger.kernel.org
Fixes: bd7fc6e1957c ("net: mana: Add new MANA VF performance counters for easier troubleshooting")
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Reviewed-by: Shradha Gupta <shradhagupta@linux.microsoft.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
(cherry picked from commit 7a54de92657455210d0ca71d4176b553952c871a)
Signed-off-by: Bastian Blank <waldi@debian.org>
Gbp-Pq: Topic features/all/ethernet-microsoft
Gbp-Pq: Name 0040-net-mana-Fix-the-tso_bytes-calculation.patch

drivers/net/ethernet/microsoft/mana/mana_en.c

index 0abc4d619aaeb63353e2e7013e1a005a539c7350..e3e2a5c516f7433c3ef0d1afabb27692f0839e59 100644 (file)
@@ -262,8 +262,6 @@ netdev_tx_t mana_start_xmit(struct sk_buff *skb, struct net_device *ndev)
                                ihs = skb_transport_offset(skb) + sizeof(struct udphdr);
                        } else {
                                ihs = skb_tcp_all_headers(skb);
-                               if (ipv6_has_hopopt_jumbo(skb))
-                                       ihs -= sizeof(struct hop_jumbo_hdr);
                        }
 
                        u64_stats_update_begin(&tx_stats->syncp);