Enabling the XDP bpf_prog access to data_meta area is a very small
change. Hint passing 'true' to xdp_prepare_buff().
The SKB layers can also access data_meta area, which required more
driver changes to support. Reviewers, notice the igc driver have two
different functions that can create SKBs, depending on driver config.
Hint for testers, ethtool priv-flags legacy-rx enables
the function igc_construct_skb()
ethtool --set-priv-flags DEV legacy-rx on
Signed-off-by: Jesper Dangaard Brouer <redacted>
---
drivers/net/ethernet/intel/igc/igc_main.c | 29 +++++++++++++++++++----------
1 file changed, 19 insertions(+), 10 deletions(-)
@@ -1718,24 +1718,26 @@ static void igc_add_rx_frag(struct igc_ring *rx_ring,staticstructsk_buff*igc_build_skb(structigc_ring*rx_ring,structigc_rx_buffer*rx_buffer,-unionigc_adv_rx_desc*rx_desc,-unsignedintsize)+structxdp_buff*xdp){-void*va=page_address(rx_buffer->page)+rx_buffer->page_offset;+unsignedintsize=xdp->data_end-xdp->data;unsignedinttruesize=igc_get_rx_frame_truesize(rx_ring,size);+unsignedintmetasize=xdp->data-xdp->data_meta;structsk_buff*skb;/* prefetch first cache line of first page */-net_prefetch(va);+net_prefetch(xdp->data);/* build an skb around the page buffer */-skb=build_skb(va-IGC_SKB_PAD,truesize);+skb=build_skb(xdp->data_hard_start,truesize);if(unlikely(!skb))returnNULL;/* update pointers within the skb to store the data */-skb_reserve(skb,IGC_SKB_PAD);+skb_reserve(skb,xdp->data-xdp->data_hard_start);__skb_put(skb,size);+if(metasize)+skb_metadata_set(skb,metasize);igc_rx_buffer_flip(rx_buffer,truesize);returnskb;
@@ -1756,7 +1759,7 @@ static struct sk_buff *igc_construct_skb(struct igc_ring *rx_ring,net_prefetch(va);/* allocate a skb to store the frags */-skb=napi_alloc_skb(&rx_ring->q_vector->napi,IGC_RX_HDR_LEN);+skb=napi_alloc_skb(&rx_ring->q_vector->napi,IGC_RX_HDR_LEN+metasize);if(unlikely(!skb))returnNULL;
@@ -1769,7 +1772,13 @@ static struct sk_buff *igc_construct_skb(struct igc_ring *rx_ring,headlen=eth_get_headlen(skb->dev,va,IGC_RX_HDR_LEN);/* align pull length to size of long to optimize memcpy performance */-memcpy(__skb_put(skb,headlen),va,ALIGN(headlen,sizeof(long)));+memcpy(__skb_put(skb,headlen+metasize),xdp->data_meta,+ALIGN(headlen+metasize,sizeof(long)));++if(metasize){+skb_metadata_set(skb,metasize);+__skb_pull(skb,metasize);+}/* update all of the pointers */size-=headlen;
@@ -2354,7 +2363,7 @@ static int igc_clean_rx_irq(struct igc_q_vector *q_vector, const int budget)if(!skb){xdp_init_buff(&xdp,truesize,&rx_ring->xdp_rxq);xdp_prepare_buff(&xdp,pktbuf-igc_rx_offset(rx_ring),-igc_rx_offset(rx_ring)+pkt_offset,size,false);+igc_rx_offset(rx_ring)+pkt_offset,size,true);skb=igc_xdp_run_prog(adapter,&xdp);}
@@ -2378,7 +2387,7 @@ static int igc_clean_rx_irq(struct igc_q_vector *q_vector, const int budget)}elseif(skb)igc_add_rx_frag(rx_ring,rx_buffer,skb,size);elseif(ring_uses_build_skb(rx_ring))-skb=igc_build_skb(rx_ring,rx_buffer,rx_desc,size);+skb=igc_build_skb(rx_ring,rx_buffer,&xdp);elseskb=igc_construct_skb(rx_ring,rx_buffer,&xdp,timestamp);
Driver already implicitly supports XDP metadata access in AF_XDP
zero-copy mode, as xsk_buff_pool's xp_alloc() naturally set xdp_buff
data_meta equal data.
This works fine for XDP and AF_XDP, but if a BPF-prog adjust via
bpf_xdp_adjust_meta() and choose to call XDP_PASS, then igc function
igc_construct_skb_zc() will construct an invalid SKB packet. The
function correctly include the xdp->data_meta area in the memcpy, but
forgot to pull header to take metasize into account.
Fixes: fc9df2a0b520 ("igc: Enable RX via AF_XDP zero-copy")
Signed-off-by: Jesper Dangaard Brouer <redacted>
---
drivers/net/ethernet/intel/igc/igc_main.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
On 11/15/2021 22:36, Jesper Dangaard Brouer wrote:
Driver already implicitly supports XDP metadata access in AF_XDP
zero-copy mode, as xsk_buff_pool's xp_alloc() naturally set xdp_buff
data_meta equal data.
This works fine for XDP and AF_XDP, but if a BPF-prog adjust via
bpf_xdp_adjust_meta() and choose to call XDP_PASS, then igc function
igc_construct_skb_zc() will construct an invalid SKB packet. The
function correctly include the xdp->data_meta area in the memcpy, but
forgot to pull header to take metasize into account.
Fixes: fc9df2a0b520 ("igc: Enable RX via AF_XDP zero-copy")
Signed-off-by: Jesper Dangaard Brouer <redacted>
---
drivers/net/ethernet/intel/igc/igc_main.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
On 11/15/2021 22:36, Jesper Dangaard Brouer wrote:
Enabling the XDP bpf_prog access to data_meta area is a very small
change. Hint passing 'true' to xdp_prepare_buff().
The SKB layers can also access data_meta area, which required more
driver changes to support. Reviewers, notice the igc driver have two
different functions that can create SKBs, depending on driver config.
Hint for testers, ethtool priv-flags legacy-rx enables
the function igc_construct_skb()
ethtool --set-priv-flags DEV legacy-rx on
Signed-off-by: Jesper Dangaard Brouer <redacted>
---
drivers/net/ethernet/intel/igc/igc_main.c | 29 +++++++++++++++++++----------
1 file changed, 19 insertions(+), 10 deletions(-)
From: Maciej Fijalkowski <maciej.fijalkowski@intel.com> Date: 2021-11-26 15:27:08
On Mon, Nov 15, 2021 at 09:36:25PM +0100, Jesper Dangaard Brouer wrote:
Driver already implicitly supports XDP metadata access in AF_XDP
zero-copy mode, as xsk_buff_pool's xp_alloc() naturally set xdp_buff
data_meta equal data.
This works fine for XDP and AF_XDP, but if a BPF-prog adjust via
bpf_xdp_adjust_meta() and choose to call XDP_PASS, then igc function
igc_construct_skb_zc() will construct an invalid SKB packet. The
function correctly include the xdp->data_meta area in the memcpy, but
forgot to pull header to take metasize into account.
Fixes: fc9df2a0b520 ("igc: Enable RX via AF_XDP zero-copy")
Signed-off-by: Jesper Dangaard Brouer <redacted>
Acked-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
Great catch. Will take a look at other ZC enabled Intel drivers if they
are affected as well.
Thanks!
On Mon, Nov 15, 2021 at 09:36:25PM +0100, Jesper Dangaard Brouer wrote:
quoted
Driver already implicitly supports XDP metadata access in AF_XDP
zero-copy mode, as xsk_buff_pool's xp_alloc() naturally set xdp_buff
data_meta equal data.
This works fine for XDP and AF_XDP, but if a BPF-prog adjust via
bpf_xdp_adjust_meta() and choose to call XDP_PASS, then igc function
igc_construct_skb_zc() will construct an invalid SKB packet. The
function correctly include the xdp->data_meta area in the memcpy, but
forgot to pull header to take metasize into account.
Fixes: fc9df2a0b520 ("igc: Enable RX via AF_XDP zero-copy")
Signed-off-by: Jesper Dangaard Brouer<redacted>
Acked-by: Maciej Fijalkowski<maciej.fijalkowski@intel.com>
Great catch. Will take a look at other ZC enabled Intel drivers if they
are affected as well.
On Mon, Nov 15, 2021 at 09:36:25PM +0100, Jesper Dangaard Brouer wrote:
quoted
Driver already implicitly supports XDP metadata access in AF_XDP
zero-copy mode, as xsk_buff_pool's xp_alloc() naturally set xdp_buff
data_meta equal data.
This works fine for XDP and AF_XDP, but if a BPF-prog adjust via
bpf_xdp_adjust_meta() and choose to call XDP_PASS, then igc function
igc_construct_skb_zc() will construct an invalid SKB packet. The
function correctly include the xdp->data_meta area in the memcpy, but
forgot to pull header to take metasize into account.
Fixes: fc9df2a0b520 ("igc: Enable RX via AF_XDP zero-copy")
Signed-off-by: Jesper Dangaard Brouer<redacted>
Acked-by: Maciej Fijalkowski<maciej.fijalkowski@intel.com>
Great catch. Will take a look at other ZC enabled Intel drivers if they
are affected as well.
They are. We'll cover them in a separate series, much thanks for
revealing that (:
Enabling the XDP bpf_prog access to data_meta area is a very small
change. Hint passing 'true' to xdp_prepare_buff().
The SKB layers can also access data_meta area, which required more
driver changes to support. Reviewers, notice the igc driver have two
different functions that can create SKBs, depending on driver config.
Hint for testers, ethtool priv-flags legacy-rx enables
the function igc_construct_skb()
ethtool --set-priv-flags DEV legacy-rx on
Signed-off-by: Jesper Dangaard Brouer <redacted>
---
drivers/net/ethernet/intel/igc/igc_main.c | 29 +++++++++++++++++++----------
1 file changed, 19 insertions(+), 10 deletions(-)
@@ -1718,24 +1718,26 @@ static void igc_add_rx_frag(struct igc_ring *rx_ring,staticstructsk_buff*igc_build_skb(structigc_ring*rx_ring,structigc_rx_buffer*rx_buffer,-unionigc_adv_rx_desc*rx_desc,-unsignedintsize)+structxdp_buff*xdp){-void*va=page_address(rx_buffer->page)+rx_buffer->page_offset;+unsignedintsize=xdp->data_end-xdp->data;unsignedinttruesize=igc_get_rx_frame_truesize(rx_ring,size);+unsignedintmetasize=xdp->data-xdp->data_meta;structsk_buff*skb;/* prefetch first cache line of first page */-net_prefetch(va);+net_prefetch(xdp->data);
I'd prefer prefetching xdp->data_meta here. GRO layer accesses it.
Maximum meta size for now is 32, so at least 96 bytes of the frame
will stil be prefetched.
quoted hunk
/* build an skb around the page buffer */
- skb = build_skb(va - IGC_SKB_PAD, truesize);
+ skb = build_skb(xdp->data_hard_start, truesize);
if (unlikely(!skb))
return NULL;
/* update pointers within the skb to store the data */
- skb_reserve(skb, IGC_SKB_PAD);
+ skb_reserve(skb, xdp->data - xdp->data_hard_start);
__skb_put(skb, size);
+ if (metasize)
+ skb_metadata_set(skb, metasize);
igc_rx_buffer_flip(rx_buffer, truesize);
return skb;
/* allocate a skb to store the frags */
- skb = napi_alloc_skb(&rx_ring->q_vector->napi, IGC_RX_HDR_LEN);
+ skb = napi_alloc_skb(&rx_ring->q_vector->napi, IGC_RX_HDR_LEN + metasize);
if (unlikely(!skb))
return NULL;
@@ -1769,7 +1772,13 @@ static struct sk_buff *igc_construct_skb(struct igc_ring *rx_ring, headlen = eth_get_headlen(skb->dev, va, IGC_RX_HDR_LEN); /* align pull length to size of long to optimize memcpy performance */- memcpy(__skb_put(skb, headlen), va, ALIGN(headlen, sizeof(long)));+ memcpy(__skb_put(skb, headlen + metasize), xdp->data_meta,+ ALIGN(headlen + metasize, sizeof(long)));++ if (metasize) {+ skb_metadata_set(skb, metasize);+ __skb_pull(skb, metasize);+ } /* update all of the pointers */ size -= headlen;
Changes to fix and enable XDP metadata to a specific Intel driver igc.
Tested with hardware i225 that uses driver igc, while testing AF_XDP
access to metadata area.
Would you mind if I take this your series into my bigger one that
takes care of it throughout all the Intel drivers?
Changes to fix and enable XDP metadata to a specific Intel driver igc.
Tested with hardware i225 that uses driver igc, while testing AF_XDP
access to metadata area.
Would you mind if I take this your series into my bigger one that
takes care of it throughout all the Intel drivers?
I have a customer that depend on this fix. They will have to do the
backport anyway (to v5.13), but it would bring confidence on their side
if the commits appear in an official git-tree before doing the backport
(and optimally with a SHA they can refer to).
Tony Nguyen have these landed in your git-tree?
--JEsper
Enabling the XDP bpf_prog access to data_meta area is a very small
change. Hint passing 'true' to xdp_prepare_buff().
The SKB layers can also access data_meta area, which required more
driver changes to support. Reviewers, notice the igc driver have two
different functions that can create SKBs, depending on driver config.
Hint for testers, ethtool priv-flags legacy-rx enables
the function igc_construct_skb()
ethtool --set-priv-flags DEV legacy-rx on
Signed-off-by: Jesper Dangaard Brouer <redacted>
---
drivers/net/ethernet/intel/igc/igc_main.c | 29 +++++++++++++++++++----------
1 file changed, 19 insertions(+), 10 deletions(-)
@@ -1718,24 +1718,26 @@ static void igc_add_rx_frag(struct igc_ring *rx_ring,staticstructsk_buff*igc_build_skb(structigc_ring*rx_ring,structigc_rx_buffer*rx_buffer,-unionigc_adv_rx_desc*rx_desc,-unsignedintsize)+structxdp_buff*xdp){-void*va=page_address(rx_buffer->page)+rx_buffer->page_offset;+unsignedintsize=xdp->data_end-xdp->data;unsignedinttruesize=igc_get_rx_frame_truesize(rx_ring,size);+unsignedintmetasize=xdp->data-xdp->data_meta;structsk_buff*skb;/* prefetch first cache line of first page */-net_prefetch(va);+net_prefetch(xdp->data);
I'd prefer prefetching xdp->data_meta here. GRO layer accesses it.
Maximum meta size for now is 32, so at least 96 bytes of the frame
will stil be prefetched.
Prefetch works for "full" cachelines. Intel CPUs often prefect two
cache-lines, when doing this, thus I guess we still get xdp->data.
I don't mind prefetching xdp->data_meta, but (1) I tried to keep the
change minimal as current behavior was data area I kept that. (2)
xdp->data starts on a cacheline and we know NIC hardware have touched
that, it is not a full-cache-miss due to DDIO/DCA it is known to be in
L3 cache (gain is around 2-3 ns in my machine for data prefetch).
Given this is only a 2.5 Gbit/s driver/HW I doubt this make any difference.
Tony is it worth resending a V2 of this patch?
quoted
/* build an skb around the page buffer */
- skb = build_skb(va - IGC_SKB_PAD, truesize);
+ skb = build_skb(xdp->data_hard_start, truesize);
if (unlikely(!skb))
return NULL;
/* update pointers within the skb to store the data */
- skb_reserve(skb, IGC_SKB_PAD);
+ skb_reserve(skb, xdp->data - xdp->data_hard_start);
__skb_put(skb, size);
+ if (metasize)
+ skb_metadata_set(skb, metasize);
igc_rx_buffer_flip(rx_buffer, truesize);
return skb;
Changes to fix and enable XDP metadata to a specific Intel driver igc.
Tested with hardware i225 that uses driver igc, while testing AF_XDP
access to metadata area.
Would you mind if I take this your series into my bigger one that
takes care of it throughout all the Intel drivers?
I have a customer that depend on this fix. They will have to do the
backport anyway (to v5.13), but it would bring confidence on their side
if the commits appear in an official git-tree before doing the backport
(and optimally with a SHA they can refer to).
Yeah, sure, it's totally fine to get them accepted separately, I'll
just refer to them in my series.
Tony Nguyen have these landed in your git-tree?
Doesn't seem like. The reason might be that you responded to my
patch 2/2 comments only now.
Enabling the XDP bpf_prog access to data_meta area is a very small
change. Hint passing 'true' to xdp_prepare_buff().
The SKB layers can also access data_meta area, which required more
driver changes to support. Reviewers, notice the igc driver have two
different functions that can create SKBs, depending on driver config.
Hint for testers, ethtool priv-flags legacy-rx enables
the function igc_construct_skb()
ethtool --set-priv-flags DEV legacy-rx on
Signed-off-by: Jesper Dangaard Brouer <redacted>
---
drivers/net/ethernet/intel/igc/igc_main.c | 29 +++++++++++++++++++----------
1 file changed, 19 insertions(+), 10 deletions(-)
@@ -1718,24 +1718,26 @@ static void igc_add_rx_frag(struct igc_ring *rx_ring,staticstructsk_buff*igc_build_skb(structigc_ring*rx_ring,structigc_rx_buffer*rx_buffer,-unionigc_adv_rx_desc*rx_desc,-unsignedintsize)+structxdp_buff*xdp){-void*va=page_address(rx_buffer->page)+rx_buffer->page_offset;+unsignedintsize=xdp->data_end-xdp->data;unsignedinttruesize=igc_get_rx_frame_truesize(rx_ring,size);+unsignedintmetasize=xdp->data-xdp->data_meta;structsk_buff*skb;/* prefetch first cache line of first page */-net_prefetch(va);+net_prefetch(xdp->data);
I'd prefer prefetching xdp->data_meta here. GRO layer accesses it.
Maximum meta size for now is 32, so at least 96 bytes of the frame
will stil be prefetched.
Prefetch works for "full" cachelines. Intel CPUs often prefect two
cache-lines, when doing this, thus I guess we still get xdp->data.
Sure. I mean, net_prefetch() prefetches 128 bytes in a row.
xdp->data is usually aligned to XDP_PACKET_HEADROOM (or two bytes
to the right). If our CL is 64 and the meta is present, then... ah
right, 64 to the left and 64 starting from data to the right.
I don't mind prefetching xdp->data_meta, but (1) I tried to keep the
change minimal as current behavior was data area I kept that. (2)
xdp->data starts on a cacheline and we know NIC hardware have touched
that, it is not a full-cache-miss due to DDIO/DCA it is known to be in
L3 cache (gain is around 2-3 ns in my machine for data prefetch).
Given this is only a 2.5 Gbit/s driver/HW I doubt this make any difference.
Code constistency at least. On 10+ Gbps we prefetch meta, and I plan
to continue doing this in my series.
Tony is it worth resending a V2 of this patch?
Tony, you can take it as it is if you want, I'll correct it later in
mine. Up to you.
Reviewed-by: Alexander Lobakin <redacted>
quoted
quoted
/* build an skb around the page buffer */
- skb = build_skb(va - IGC_SKB_PAD, truesize);
+ skb = build_skb(xdp->data_hard_start, truesize);
if (unlikely(!skb))
return NULL;
/* update pointers within the skb to store the data */
- skb_reserve(skb, IGC_SKB_PAD);
+ skb_reserve(skb, xdp->data - xdp->data_hard_start);
__skb_put(skb, size);
+ if (metasize)
+ skb_metadata_set(skb, metasize);
igc_rx_buffer_flip(rx_buffer, truesize);
return skb;
Enabling the XDP bpf_prog access to data_meta area is a very small
change. Hint passing 'true' to xdp_prepare_buff().
[ snip ]
quoted
Prefetch works for "full" cachelines. Intel CPUs often prefect two
cache-lines, when doing this, thus I guess we still get xdp->data.
Sure. I mean, net_prefetch() prefetches 128 bytes in a row.
xdp->data is usually aligned to XDP_PACKET_HEADROOM (or two bytes
to the right). If our CL is 64 and the meta is present, then... ah
right, 64 to the left and 64 starting from data to the right.
quoted
I don't mind prefetching xdp->data_meta, but (1) I tried to keep the
change minimal as current behavior was data area I kept that. (2)
xdp->data starts on a cacheline and we know NIC hardware have touched
that, it is not a full-cache-miss due to DDIO/DCA it is known to be in
L3 cache (gain is around 2-3 ns in my machine for data prefetch).
Given this is only a 2.5 Gbit/s driver/HW I doubt this make any difference.
Code constistency at least. On 10+ Gbps we prefetch meta, and I plan
to continue doing this in my series.
quoted
Tony is it worth resending a V2 of this patch?
Tony, you can take it as it is if you want, I'll correct it later in
mine. Up to you.
My "fixup" looks like (in case of v2 needed or so):
@@ -1726,7 +1726,7 @@ static struct sk_buff *igc_build_skb(struct igc_ring *rx_ring,structsk_buff*skb;/* prefetch first cache line of first page */-net_prefetch(xdp->data);+net_prefetch(xdp->data_meta);/* build an skb around the page buffer */skb=build_skb(xdp->data_hard_start,truesize);
@@ -1756,10 +1756,11 @@ static struct sk_buff *igc_construct_skb(struct igc_ring *rx_ring,structsk_buff*skb;/* prefetch first cache line of first page */-net_prefetch(va);+net_prefetch(xdp->data_meta);/* allocate a skb to store the frags */-skb=napi_alloc_skb(&rx_ring->q_vector->napi,IGC_RX_HDR_LEN+metasize);+skb=napi_alloc_skb(&rx_ring->q_vector->napi,+IGC_RX_HDR_LEN+metasize);if(unlikely(!skb))returnNULL;
@@ -2363,7 +2364,8 @@ static int igc_clean_rx_irq(struct igc_q_vector *q_vector, const int budget)if(!skb){xdp_init_buff(&xdp,truesize,&rx_ring->xdp_rxq);xdp_prepare_buff(&xdp,pktbuf-igc_rx_offset(rx_ring),-igc_rx_offset(rx_ring)+pkt_offset,size,true);+igc_rx_offset(rx_ring)+pkt_offset,+size,true);skb=igc_xdp_run_prog(adapter,&xdp);}
Reviewed-by: Alexander Lobakin <redacted>
quoted
quoted
quoted
/* build an skb around the page buffer */
- skb = build_skb(va - IGC_SKB_PAD, truesize);
+ skb = build_skb(xdp->data_hard_start, truesize);
if (unlikely(!skb))
return NULL;
/* update pointers within the skb to store the data */
- skb_reserve(skb, IGC_SKB_PAD);
+ skb_reserve(skb, xdp->data - xdp->data_hard_start);
__skb_put(skb, size);
+ if (metasize)
+ skb_metadata_set(skb, metasize);
igc_rx_buffer_flip(rx_buffer, truesize);
return skb;
Enabling the XDP bpf_prog access to data_meta area is a very
small
change. Hint passing 'true' to xdp_prepare_buff().
[ snip ]
quoted
quoted
Prefetch works for "full" cachelines. Intel CPUs often prefect
two
cache-lines, when doing this, thus I guess we still get xdp-
quoted
data.
Sure. I mean, net_prefetch() prefetches 128 bytes in a row.
xdp->data is usually aligned to XDP_PACKET_HEADROOM (or two bytes
to the right). If our CL is 64 and the meta is present, then... ah
right, 64 to the left and 64 starting from data to the right.
quoted
I don't mind prefetching xdp->data_meta, but (1) I tried to keep
the
xdp->data starts on a cacheline and we know NIC hardware have
touched
that, it is not a full-cache-miss due to DDIO/DCA it is known to
be in
L3 cache (gain is around 2-3 ns in my machine for data prefetch).
Given this is only a 2.5 Gbit/s driver/HW I doubt this make any
difference.
Code constistency at least. On 10+ Gbps we prefetch meta, and I
plan
to continue doing this in my series.
quoted
Tony is it worth resending a V2 of this patch?
Tony, you can take it as it is if you want, I'll correct it later
in
mine. Up to you.
My "fixup" looks like (in case of v2 needed or so):
Thanks Al. If Jesper is ok with this, I'll incorporate it in before
sending the pull request to netdev. Otherwise, you can do it as follow
on in the other series you previously referenced.
Thanks,
Tony
igc_ring *rx_ring,
struct sk_buff *skb;
/* prefetch first cache line of first page */
- net_prefetch(xdp->data);
+ net_prefetch(xdp->data_meta);
/* build an skb around the page buffer */
skb = build_skb(xdp->data_hard_start, truesize);
@@ -1756,10 +1756,11 @@ static struct sk_buff
*igc_construct_skb(struct igc_ring *rx_ring,
struct sk_buff *skb;
/* prefetch first cache line of first page */
- net_prefetch(va);
+ net_prefetch(xdp->data_meta);
/* allocate a skb to store the frags */
- skb = napi_alloc_skb(&rx_ring->q_vector->napi, IGC_RX_HDR_LEN
+ metasize);
+ skb = napi_alloc_skb(&rx_ring->q_vector->napi,
+ IGC_RX_HDR_LEN + metasize);
if (unlikely(!skb))
return NULL;
@@ -2363,7 +2364,8 @@ static int igc_clean_rx_irq(struct igc_q_vector
*q_vector, const int budget)
if (!skb) {
xdp_init_buff(&xdp, truesize, &rx_ring-
Enabling the XDP bpf_prog access to data_meta area is a very
small
change. Hint passing 'true' to xdp_prepare_buff().
[ snip ]
[ snip ]
quoted
quoted
quoted
Tony is it worth resending a V2 of this patch?
Tony, you can take it as it is if you want, I'll correct it later
in
mine. Up to you.
My "fixup" looks like (in case of v2 needed or so):
Thanks Al. If Jesper is ok with this, I'll incorporate it in before
sending the pull request to netdev. Otherwise, you can do it as follow
on in the other series you previously referenced.
I'm fine with you incorporating this change. Thanks! :-)
--Jesper