nfp: add buffer drop/recycle helper for RX
nfp_net_rx() is quite long already and about to get longer. Move buffer drop/recycle to a helper. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
bf187ea01b
commit
e9949aebe0
@@ -1330,6 +1330,20 @@ nfp_net_parse_meta(struct net_device *netdev, struct sk_buff *skb,
|
|||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
nfp_net_rx_drop(struct nfp_net_r_vector *r_vec, struct nfp_net_rx_ring *rx_ring,
|
||||||
|
struct nfp_net_rx_buf *rxbuf, struct sk_buff *skb)
|
||||||
|
{
|
||||||
|
u64_stats_update_begin(&r_vec->rx_sync);
|
||||||
|
r_vec->rx_drops++;
|
||||||
|
u64_stats_update_end(&r_vec->rx_sync);
|
||||||
|
|
||||||
|
if (rxbuf)
|
||||||
|
nfp_net_rx_give_one(rx_ring, rxbuf->skb, rxbuf->dma_addr);
|
||||||
|
if (skb)
|
||||||
|
dev_kfree_skb_any(skb);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* nfp_net_rx() - receive up to @budget packets on @rx_ring
|
* nfp_net_rx() - receive up to @budget packets on @rx_ring
|
||||||
* @rx_ring: RX ring to receive from
|
* @rx_ring: RX ring to receive from
|
||||||
@@ -1372,11 +1386,8 @@ static int nfp_net_rx(struct nfp_net_rx_ring *rx_ring, int budget)
|
|||||||
new_skb = nfp_net_rx_alloc_one(rx_ring, &new_dma_addr,
|
new_skb = nfp_net_rx_alloc_one(rx_ring, &new_dma_addr,
|
||||||
nn->fl_bufsz);
|
nn->fl_bufsz);
|
||||||
if (!new_skb) {
|
if (!new_skb) {
|
||||||
nfp_net_rx_give_one(rx_ring, rx_ring->rxbufs[idx].skb,
|
nfp_net_rx_drop(r_vec, rx_ring, &rx_ring->rxbufs[idx],
|
||||||
rx_ring->rxbufs[idx].dma_addr);
|
NULL);
|
||||||
u64_stats_update_begin(&r_vec->rx_sync);
|
|
||||||
r_vec->rx_drops++;
|
|
||||||
u64_stats_update_end(&r_vec->rx_sync);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1420,12 +1431,8 @@ static int nfp_net_rx(struct nfp_net_rx_ring *rx_ring, int budget)
|
|||||||
|
|
||||||
end = nfp_net_parse_meta(nn->netdev, skb, meta_len);
|
end = nfp_net_parse_meta(nn->netdev, skb, meta_len);
|
||||||
if (unlikely(end != skb->data)) {
|
if (unlikely(end != skb->data)) {
|
||||||
u64_stats_update_begin(&r_vec->rx_sync);
|
|
||||||
r_vec->rx_drops++;
|
|
||||||
u64_stats_update_end(&r_vec->rx_sync);
|
|
||||||
|
|
||||||
dev_kfree_skb_any(skb);
|
|
||||||
nn_warn_ratelimit(nn, "invalid RX packet metadata\n");
|
nn_warn_ratelimit(nn, "invalid RX packet metadata\n");
|
||||||
|
nfp_net_rx_drop(r_vec, rx_ring, NULL, skb);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user