From: Maciej Fijalkowski <maciej.fijalkowski@intel.com> Date: 2021-03-03 22:56:53
Fix Rx headroom by calling *_rx_offset() after the build_skb Rx ring
flag is set.
It was reported by Jesper in [0] that XDP_REDIRECT stopped working after
[1] patch in i40e.
Thanks and sorry!
Maciej
[0]: https://lore.kernel.org/netdev/20210301131832.0d765179@carbon/
[1]: https://lore.kernel.org/bpf/20210118151318.12324-10-maciej.fijalkowski@intel.com/
Maciej Fijalkowski (3):
i40e: move headroom initialization to i40e_configure_rx_ring
ice: move headroom initialization to ice_setup_rx_ctx
ixgbe: move headroom initialization to ixgbe_configure_rx_ring
drivers/net/ethernet/intel/i40e/i40e_main.c | 13 +++++++++++++
drivers/net/ethernet/intel/i40e/i40e_txrx.c | 12 ------------
drivers/net/ethernet/intel/ice/ice_base.c | 18 ++++++++++++++++++
drivers/net/ethernet/intel/ice/ice_txrx.c | 17 -----------------
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 3 ++-
5 files changed, 33 insertions(+), 30 deletions(-)
--
2.20.1
From: Maciej Fijalkowski <maciej.fijalkowski@intel.com> Date: 2021-03-03 22:56:53
ice_rx_offset(), that is supposed to initialize the Rx buffer headroom,
relies on ICE_RX_FLAGS_RING_BUILD_SKB flag as well as XDP prog presence.
Currently, the callsite of mentioned function is placed incorrectly
within ice_setup_rx_ring() where Rx ring's build skb flag is not
set yet. This causes the XDP_REDIRECT to be partially broken due to
inability to create xdp_frame in the headroom space, as the headroom is
0.
Fix this by moving ice_rx_offset() to ice_setup_rx_ctx() after the flag
setting.
Fixes: f1b1f409bf79 ("ice: store the result of ice_rx_offset() onto ice_ring")
Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
---
drivers/net/ethernet/intel/ice/ice_base.c | 18 ++++++++++++++++++
drivers/net/ethernet/intel/ice/ice_txrx.c | 17 -----------------
2 files changed, 18 insertions(+), 17 deletions(-)
From: Maciej Fijalkowski <maciej.fijalkowski@intel.com> Date: 2021-03-03 22:56:53
i40e_rx_offset(), that is supposed to initialize the Rx buffer headroom,
relies on I40E_RXR_FLAGS_BUILD_SKB_ENABLED flag.
Currently, the callsite of mentioned function is placed incorrectly
within i40e_setup_rx_descriptors() where Rx ring's build skb flag is not
set yet. This causes the XDP_REDIRECT to be partially broken due to
inability to create xdp_frame in the headroom space, as the headroom is
0.
For the record, below is the call graph:
i40e_vsi_open
i40e_vsi_setup_rx_resources
i40e_setup_rx_descriptors
i40e_rx_offset() <-- sets offset to 0 as build_skb flag is set below
i40e_vsi_configure_rx
i40e_configure_rx_ring
set_ring_build_skb_enabled(ring) <-- set build_skb flag
Fix this by moving i40e_rx_offset() to i40e_configure_rx_ring() after
the flag setting.
Fixes: f7bb0d71d658 ("i40e: store the result of i40e_rx_offset() onto i40e_ring")
Reported-by: Jesper Dangaard Brouer <redacted>
Co-developed-by: Jesper Dangaard Brouer <redacted>
Signed-off-by: Jesper Dangaard Brouer <redacted>
Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
---
drivers/net/ethernet/intel/i40e/i40e_main.c | 13 +++++++++++++
drivers/net/ethernet/intel/i40e/i40e_txrx.c | 12 ------------
2 files changed, 13 insertions(+), 12 deletions(-)
@@ -3273,6 +3273,17 @@ static int i40e_configure_tx_ring(struct i40e_ring *ring)return0;}+/**+*i40e_rx_offset-Returnexpectedoffsetintopagetoaccessdata+*@rx_ring:Ringwearerequestingoffsetof+*+*Returnstheoffsetvalueforringintothedatabuffer.+*/+staticunsignedinti40e_rx_offset(structi40e_ring*rx_ring)+{+returnring_uses_build_skb(rx_ring)?I40E_SKB_PAD:0;+}+/***i40e_configure_rx_ring-Configureareceiveringcontext*@ring:TheRxringtoconfigure
@@ -3387,6 +3398,8 @@ static int i40e_configure_rx_ring(struct i40e_ring *ring)elseset_ring_build_skb_enabled(ring);+ring->rx_offset=i40e_rx_offset(ring);+/* cache tail for quicker writes, and clear the reg before use */ring->tail=hw->hw_addr+I40E_QRX_TAIL(pf_q);writel(0,ring->tail);
@@ -1608,7 +1597,6 @@ int i40e_setup_rx_descriptors(struct i40e_ring *rx_ring)rx_ring->next_to_alloc=0;rx_ring->next_to_clean=0;rx_ring->next_to_use=0;-rx_ring->rx_offset=i40e_rx_offset(rx_ring);/* XDP RX-queue info only needed for RX rings exposed to XDP */if(rx_ring->vsi->type==I40E_VSI_MAIN){
From: Maciej Fijalkowski <maciej.fijalkowski@intel.com> Date: 2021-03-03 22:57:09
ixgbe_rx_offset(), that is supposed to initialize the Rx buffer headroom,
relies on __IXGBE_RX_BUILD_SKB_ENABLED flag.
Currently, the callsite of mentioned function is placed incorrectly
within ixgbe_setup_rx_resources() where Rx ring's build skb flag is not
set yet. This causes the XDP_REDIRECT to be partially broken due to
inability to create xdp_frame in the headroom space, as the headroom is
0.
Fix this by moving ixgbe_rx_offset() to ixgbe_configure_rx_ring() after
the flag setting, which happens to be set in ixgbe_set_rx_buffer_len.
Fixes: c0d4e9d223c5 ("ixgbe: store the result of ixgbe_rx_offset() onto ixgbe_ring")
Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
---
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Fix Rx headroom by calling *_rx_offset() after the build_skb Rx ring
flag is set.
It was reported by Jesper in [0] that XDP_REDIRECT stopped working after
[1] patch in i40e.
Looks good to me, thanks for the fixes Maciej, and especially to
Jesper for the report of the issue.
For the series:
Reviewed-by: Jesse Brandeburg <redacted>
On Wed, 3 Mar 2021 16:39:26 +0100
Maciej Fijalkowski [off-list ref] wrote:
i40e_rx_offset(), that is supposed to initialize the Rx buffer headroom,
relies on I40E_RXR_FLAGS_BUILD_SKB_ENABLED flag.
Currently, the callsite of mentioned function is placed incorrectly
within i40e_setup_rx_descriptors() where Rx ring's build skb flag is not
set yet. This causes the XDP_REDIRECT to be partially broken due to
inability to create xdp_frame in the headroom space, as the headroom is
0.
For the record, below is the call graph:
i40e_vsi_open
i40e_vsi_setup_rx_resources
i40e_setup_rx_descriptors
i40e_rx_offset() <-- sets offset to 0 as build_skb flag is set below
i40e_vsi_configure_rx
i40e_configure_rx_ring
set_ring_build_skb_enabled(ring) <-- set build_skb flag
Fix this by moving i40e_rx_offset() to i40e_configure_rx_ring() after
the flag setting.
Fixes: f7bb0d71d658 ("i40e: store the result of i40e_rx_offset() onto i40e_ring")
Reported-by: Jesper Dangaard Brouer <redacted>
Co-developed-by: Jesper Dangaard Brouer <redacted>
Signed-off-by: Jesper Dangaard Brouer <redacted>
Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
---
drivers/net/ethernet/intel/i40e/i40e_main.c | 13 +++++++++++++
drivers/net/ethernet/intel/i40e/i40e_txrx.c | 12 ------------
2 files changed, 13 insertions(+), 12 deletions(-)
Acked-by: Jesper Dangaard Brouer <redacted>
Tested-by: Jesper Dangaard Brouer <redacted>
I'm currently looking at extending samples/bpf/ xdp_redirect_map to
detect the situation. As with this bug the redirect tests/sample
programs will just report really high performance numbers (because
packets are dropped earlier due to err). Knowing what performance
numbers to expect, I could see that they were out-of-spec, and
investigated the root-cause.
I assume Intel QA tested XDP-redirect and didn't find the bug due to
this. Red Hat QA also use samples/bpf/xdp* and based on the reports I
get from them, I could not blame them if this bug would slip through,
as the tool reports "good" results.
--
Best regards,
Jesper Dangaard Brouer
MSc.CS, Principal Kernel Engineer at Red Hat
LinkedIn: http://www.linkedin.com/in/brouer
-----Original Message-----
From: Intel-wired-lan <redacted> On Behalf Of
Maciej Fijalkowski
Sent: Wednesday, March 3, 2021 9:09 PM
To: intel-wired-lan@lists.osuosl.org
Cc: netdev@vger.kernel.org; brouer@redhat.com; kuba@kernel.org;
bpf@vger.kernel.org; Topel, Bjorn [off-list ref]; Karlsson,
Magnus [off-list ref]
Subject: [Intel-wired-lan] [PATCH intel-net 2/3] ice: move headroom
initialization to ice_setup_rx_ctx
ice_rx_offset(), that is supposed to initialize the Rx buffer headroom, relies
on ICE_RX_FLAGS_RING_BUILD_SKB flag as well as XDP prog presence.
Currently, the callsite of mentioned function is placed incorrectly within
ice_setup_rx_ring() where Rx ring's build skb flag is not set yet. This causes
the XDP_REDIRECT to be partially broken due to inability to create xdp_frame
in the headroom space, as the headroom is 0.
Fix this by moving ice_rx_offset() to ice_setup_rx_ctx() after the flag setting.
Fixes: f1b1f409bf79 ("ice: store the result of ice_rx_offset() onto ice_ring")
Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
---
drivers/net/ethernet/intel/ice/ice_base.c | 18 ++++++++++++++++++
drivers/net/ethernet/intel/ice/ice_txrx.c | 17 -----------------
2 files changed, 18 insertions(+), 17 deletions(-)
Tested-by: Kiran Bhandare <redacted> A Contingent Worker at Intel
-----Original Message-----
From: Intel-wired-lan <redacted> On Behalf Of
Maciej Fijalkowski
Sent: Wednesday, March 3, 2021 9:09 PM
To: intel-wired-lan@lists.osuosl.org
Cc: netdev@vger.kernel.org; brouer@redhat.com; kuba@kernel.org;
bpf@vger.kernel.org; Topel, Bjorn [off-list ref]; Karlsson,
Magnus [off-list ref]
Subject: [Intel-wired-lan] [PATCH intel-net 1/3] i40e: move headroom
initialization to i40e_configure_rx_ring
i40e_rx_offset(), that is supposed to initialize the Rx buffer headroom, relies
on I40E_RXR_FLAGS_BUILD_SKB_ENABLED flag.
Currently, the callsite of mentioned function is placed incorrectly within
i40e_setup_rx_descriptors() where Rx ring's build skb flag is not set yet. This
causes the XDP_REDIRECT to be partially broken due to inability to create
xdp_frame in the headroom space, as the headroom is 0.
For the record, below is the call graph:
i40e_vsi_open
i40e_vsi_setup_rx_resources
i40e_setup_rx_descriptors
i40e_rx_offset() <-- sets offset to 0 as build_skb flag is set below
i40e_vsi_configure_rx
i40e_configure_rx_ring
set_ring_build_skb_enabled(ring) <-- set build_skb flag
Fix this by moving i40e_rx_offset() to i40e_configure_rx_ring() after the flag
setting.
Fixes: f7bb0d71d658 ("i40e: store the result of i40e_rx_offset() onto
i40e_ring")
Reported-by: Jesper Dangaard Brouer <redacted>
Co-developed-by: Jesper Dangaard Brouer <redacted>
Signed-off-by: Jesper Dangaard Brouer <redacted>
Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
---
drivers/net/ethernet/intel/i40e/i40e_main.c | 13 +++++++++++++
drivers/net/ethernet/intel/i40e/i40e_txrx.c | 12 ------------
2 files changed, 13 insertions(+), 12 deletions(-)
Tested-by: Kiran Bhandare <redacted> A Contingent Worker at Intel
From: Intel-wired-lan <redacted> On Behalf Of
Maciej Fijalkowski
Sent: Wednesday, March 3, 2021 9:09 PM
To: intel-wired-lan@lists.osuosl.org
Cc: netdev@vger.kernel.org; brouer@redhat.com; kuba@kernel.org;
bpf@vger.kernel.org; Topel, Bjorn [off-list ref]; Karlsson,
Magnus [off-list ref]
Subject: [Intel-wired-lan] [PATCH intel-net 3/3] ixgbe: move headroom
initialization to ixgbe_configure_rx_ring
ixgbe_rx_offset(), that is supposed to initialize the Rx buffer headroom, relies
on __IXGBE_RX_BUILD_SKB_ENABLED flag.
Currently, the callsite of mentioned function is placed incorrectly within
ixgbe_setup_rx_resources() where Rx ring's build skb flag is not set yet. This
causes the XDP_REDIRECT to be partially broken due to inability to create
xdp_frame in the headroom space, as the headroom is 0.
Fix this by moving ixgbe_rx_offset() to ixgbe_configure_rx_ring() after the
flag setting, which happens to be set in ixgbe_set_rx_buffer_len.
Fixes: c0d4e9d223c5 ("ixgbe: store the result of ixgbe_rx_offset() onto
ixgbe_ring")
Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
---
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)