Commit 386e6986 authored by Brett Creeley's avatar Brett Creeley Committed by David S. Miller

ionic: Make use napi_consume_skb

Make use of napi_consume_skb so that skb recycling
can happen by way of the napi_skb_cache.
Signed-off-by: default avatarBrett Creeley <brett.creeley@amd.com>
Signed-off-by: default avatarShannon Nelson <shannon.nelson@amd.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 97085cda
...@@ -1232,7 +1232,7 @@ static void ionic_tx_clean(struct ionic_queue *q, ...@@ -1232,7 +1232,7 @@ static void ionic_tx_clean(struct ionic_queue *q,
desc_info->bytes = skb->len; desc_info->bytes = skb->len;
stats->clean++; stats->clean++;
dev_consume_skb_any(skb); napi_consume_skb(skb, 1);
} }
static bool ionic_tx_service(struct ionic_cq *cq, struct ionic_cq_info *cq_info) static bool ionic_tx_service(struct ionic_cq *cq, struct ionic_cq_info *cq_info)
......
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