aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Pakhunov <alexey.pakhunov@spacex.com>2023-11-13 10:23:50 -0800
committerJakub Kicinski <kuba@kernel.org>2023-11-14 19:50:23 -0800
commit17dd5efe5f36a96bd78012594fabe21efb01186b (patch)
tree39862a7d40f4ee254a2079dfb441ba775761e1d7
parent907d1bdb8b2cc0357d03a1c34d2a08d9943760b1 (diff)
downloadlinux-17dd5efe5f36a96bd78012594fabe21efb01186b.tar.gz
tg3: Increment tx_dropped in tg3_tso_bug()
tg3_tso_bug() drops a packet if it cannot be segmented for any reason. The number of discarded frames should be incremented accordingly. Signed-off-by: Alex Pakhunov <alexey.pakhunov@spacex.com> Signed-off-by: Vincent Wong <vincent.wong2@spacex.com> Reviewed-by: Pavan Chebbi <pavan.chebbi@broadcom.com> Link: https://lore.kernel.org/r/20231113182350.37472-2-alexey.pakhunov@spacex.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r--drivers/net/ethernet/broadcom/tg3.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
index 884e9eecc471f6..48b6191efa56c7 100644
--- a/drivers/net/ethernet/broadcom/tg3.c
+++ b/drivers/net/ethernet/broadcom/tg3.c
@@ -7918,8 +7918,10 @@ static int tg3_tso_bug(struct tg3 *tp, struct tg3_napi *tnapi,
segs = skb_gso_segment(skb, tp->dev->features &
~(NETIF_F_TSO | NETIF_F_TSO6));
- if (IS_ERR(segs) || !segs)
+ if (IS_ERR(segs) || !segs) {
+ tnapi->tx_dropped++;
goto tg3_tso_bug_end;
+ }
skb_list_walk_safe(segs, seg, next) {
skb_mark_not_on_list(seg);