ixgbe: Fix passing 0 to ERR_PTR in ixgbe_run_xdp()
ixgbe_run_xdp() converts customed xdp action to a negative error code with the sk_buff pointer type which be checked with IS_ERR in ixgbe_clean_rx_irq(). Remove this error pointer handing instead use plain int return value. Reviewed-by: Jacob Keller <jacob.e.keller@intel.com> Reviewed-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com> Signed-off-by: Yue Haibing <yuehaibing@huawei.com> Reviewed-by: Simon Horman <horms@kernel.org> Tested-by: Chandan Kumar Rout <chandanx.rout@intel.com> (A Contingent Worker at Intel) Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com> Link: https://patch.msgid.link/20250106221929.956999-11-anthony.l.nguyen@intel.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
8ae94669b1
commit
c824125cbb
1 changed files with 9 additions and 14 deletions
|
@ -1923,10 +1923,6 @@ bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
|
||||||
{
|
{
|
||||||
struct net_device *netdev = rx_ring->netdev;
|
struct net_device *netdev = rx_ring->netdev;
|
||||||
|
|
||||||
/* XDP packets use error pointer so abort at this point */
|
|
||||||
if (IS_ERR(skb))
|
|
||||||
return true;
|
|
||||||
|
|
||||||
/* Verify netdev is present, and that packet does not have any
|
/* Verify netdev is present, and that packet does not have any
|
||||||
* errors that would be unacceptable to the netdev.
|
* errors that would be unacceptable to the netdev.
|
||||||
*/
|
*/
|
||||||
|
@ -2234,9 +2230,9 @@ static struct sk_buff *ixgbe_build_skb(struct ixgbe_ring *rx_ring,
|
||||||
return skb;
|
return skb;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct sk_buff *ixgbe_run_xdp(struct ixgbe_adapter *adapter,
|
static int ixgbe_run_xdp(struct ixgbe_adapter *adapter,
|
||||||
struct ixgbe_ring *rx_ring,
|
struct ixgbe_ring *rx_ring,
|
||||||
struct xdp_buff *xdp)
|
struct xdp_buff *xdp)
|
||||||
{
|
{
|
||||||
int err, result = IXGBE_XDP_PASS;
|
int err, result = IXGBE_XDP_PASS;
|
||||||
struct bpf_prog *xdp_prog;
|
struct bpf_prog *xdp_prog;
|
||||||
|
@ -2286,7 +2282,7 @@ out_failure:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
xdp_out:
|
xdp_out:
|
||||||
return ERR_PTR(-result);
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned int ixgbe_rx_frame_truesize(struct ixgbe_ring *rx_ring,
|
static unsigned int ixgbe_rx_frame_truesize(struct ixgbe_ring *rx_ring,
|
||||||
|
@ -2344,6 +2340,7 @@ static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
|
||||||
unsigned int offset = rx_ring->rx_offset;
|
unsigned int offset = rx_ring->rx_offset;
|
||||||
unsigned int xdp_xmit = 0;
|
unsigned int xdp_xmit = 0;
|
||||||
struct xdp_buff xdp;
|
struct xdp_buff xdp;
|
||||||
|
int xdp_res = 0;
|
||||||
|
|
||||||
/* Frame size depend on rx_ring setup when PAGE_SIZE=4K */
|
/* Frame size depend on rx_ring setup when PAGE_SIZE=4K */
|
||||||
#if (PAGE_SIZE < 8192)
|
#if (PAGE_SIZE < 8192)
|
||||||
|
@ -2389,12 +2386,10 @@ static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
|
||||||
/* At larger PAGE_SIZE, frame_sz depend on len size */
|
/* At larger PAGE_SIZE, frame_sz depend on len size */
|
||||||
xdp.frame_sz = ixgbe_rx_frame_truesize(rx_ring, size);
|
xdp.frame_sz = ixgbe_rx_frame_truesize(rx_ring, size);
|
||||||
#endif
|
#endif
|
||||||
skb = ixgbe_run_xdp(adapter, rx_ring, &xdp);
|
xdp_res = ixgbe_run_xdp(adapter, rx_ring, &xdp);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IS_ERR(skb)) {
|
if (xdp_res) {
|
||||||
unsigned int xdp_res = -PTR_ERR(skb);
|
|
||||||
|
|
||||||
if (xdp_res & (IXGBE_XDP_TX | IXGBE_XDP_REDIR)) {
|
if (xdp_res & (IXGBE_XDP_TX | IXGBE_XDP_REDIR)) {
|
||||||
xdp_xmit |= xdp_res;
|
xdp_xmit |= xdp_res;
|
||||||
ixgbe_rx_buffer_flip(rx_ring, rx_buffer, size);
|
ixgbe_rx_buffer_flip(rx_ring, rx_buffer, size);
|
||||||
|
@ -2414,7 +2409,7 @@ static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* exit if we failed to retrieve a buffer */
|
/* exit if we failed to retrieve a buffer */
|
||||||
if (!skb) {
|
if (!xdp_res && !skb) {
|
||||||
rx_ring->rx_stats.alloc_rx_buff_failed++;
|
rx_ring->rx_stats.alloc_rx_buff_failed++;
|
||||||
rx_buffer->pagecnt_bias++;
|
rx_buffer->pagecnt_bias++;
|
||||||
break;
|
break;
|
||||||
|
@ -2428,7 +2423,7 @@ static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* verify the packet layout is correct */
|
/* verify the packet layout is correct */
|
||||||
if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
|
if (xdp_res || ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* probably a little skewed due to removing CRC */
|
/* probably a little skewed due to removing CRC */
|
||||||
|
|
Loading…
Add table
Reference in a new issue