Commit 69b4ed5c authored by Jason A. Donenfeld's avatar Jason A. Donenfeld Committed by David S. Miller

net: sfc: use skb_list_walk_safe helper for gso segments

This is a straight-forward conversion case for the new function, and
while we're at it, we can remove a null write to skb->next by replacing
it with skb_mark_not_on_list.
Signed-off-by: default avatarJason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 90919f14
...@@ -307,12 +307,9 @@ static int efx_tx_tso_fallback(struct efx_tx_queue *tx_queue, ...@@ -307,12 +307,9 @@ static int efx_tx_tso_fallback(struct efx_tx_queue *tx_queue,
dev_consume_skb_any(skb); dev_consume_skb_any(skb);
skb = segments; skb = segments;
while (skb) { skb_list_walk_safe(skb, skb, next) {
next = skb->next; skb_mark_not_on_list(skb);
skb->next = NULL;
efx_enqueue_skb(tx_queue, skb); efx_enqueue_skb(tx_queue, skb);
skb = next;
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment