* [PATCH 0/4] igb: Add support for AF_XDP zero-copy
@ 2023-07-04 10:00 Sriram Yagnaraman
0 siblings, 0 replies; 4+ messages in thread
From: Sriram Yagnaraman @ 2023-07-04 10:00 UTC (permalink / raw)
Cc: intel-wired-lan, bpf, netdev, Jesse Brandeburg, Tony Nguyen,
David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Alexei Starovoitov, Daniel Borkmann, Jesper Dangaard Brouer,
John Fastabend, Sriram Yagnaraman
Disclaimer: My first patches to Intel drivers, implemented AF_XDP
zero-copy feature which seemed to be missing for igb. Not sure if it was
a conscious choice to not spend time implementing this for older
devices, nevertheless I send them to the list for review.
The first couple of patches adds helper funcctions to prepare for AF_XDP
zero-copy support which comes in the last couple of patches, one each
for Rx and TX paths.
Sriram Yagnaraman (4):
igb: prepare for AF_XDP zero-copy support
igb: Introduce txrx ring enable/disable functions
igb: add AF_XDP zero-copy Rx support
igb: add AF_XDP zero-copy Tx support
drivers/net/ethernet/intel/igb/Makefile | 2 +-
drivers/net/ethernet/intel/igb/igb.h | 52 ++-
drivers/net/ethernet/intel/igb/igb_main.c | 178 +++++++--
drivers/net/ethernet/intel/igb/igb_xsk.c | 434 ++++++++++++++++++++++
4 files changed, 633 insertions(+), 33 deletions(-)
create mode 100644 drivers/net/ethernet/intel/igb/igb_xsk.c
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 0/4] igb: Add support for AF_XDP zero-copy
@ 2023-07-04 9:59 Sriram Yagnaraman
2023-07-04 15:37 ` Maciej Fijalkowski
0 siblings, 1 reply; 4+ messages in thread
From: Sriram Yagnaraman @ 2023-07-04 9:59 UTC (permalink / raw)
Cc: intel-wired-lan, bpf, netdev, Jesse Brandeburg, Tony Nguyen,
David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Alexei Starovoitov, Daniel Borkmann, Jesper Dangaard Brouer,
John Fastabend, Sriram Yagnaraman
Disclaimer: My first patches to Intel drivers, implemented AF_XDP
zero-copy feature which seemed to be missing for igb. Not sure if it was
a conscious choice to not spend time implementing this for older
devices, nevertheless I send them to the list for review.
The first couple of patches adds helper funcctions to prepare for AF_XDP
zero-copy support which comes in the last couple of patches, one each
for Rx and TX paths.
Sriram Yagnaraman (4):
igb: prepare for AF_XDP zero-copy support
igb: Introduce txrx ring enable/disable functions
igb: add AF_XDP zero-copy Rx support
igb: add AF_XDP zero-copy Tx support
drivers/net/ethernet/intel/igb/Makefile | 2 +-
drivers/net/ethernet/intel/igb/igb.h | 52 ++-
drivers/net/ethernet/intel/igb/igb_main.c | 178 +++++++--
drivers/net/ethernet/intel/igb/igb_xsk.c | 434 ++++++++++++++++++++++
4 files changed, 633 insertions(+), 33 deletions(-)
create mode 100644 drivers/net/ethernet/intel/igb/igb_xsk.c
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/4] igb: Add support for AF_XDP zero-copy
2023-07-04 9:59 Sriram Yagnaraman
@ 2023-07-04 15:37 ` Maciej Fijalkowski
2023-07-04 18:48 ` Sriram Yagnaraman
0 siblings, 1 reply; 4+ messages in thread
From: Maciej Fijalkowski @ 2023-07-04 15:37 UTC (permalink / raw)
To: Sriram Yagnaraman
Cc: intel-wired-lan, bpf, netdev, Jesse Brandeburg, Tony Nguyen,
David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Alexei Starovoitov, Daniel Borkmann, Jesper Dangaard Brouer,
John Fastabend
On Tue, Jul 04, 2023 at 11:59:11AM +0200, Sriram Yagnaraman wrote:
Hi Sriram,
> Disclaimer: My first patches to Intel drivers, implemented AF_XDP
> zero-copy feature which seemed to be missing for igb. Not sure if it was
> a conscious choice to not spend time implementing this for older
> devices, nevertheless I send them to the list for review.
>
> The first couple of patches adds helper funcctions to prepare for AF_XDP
> zero-copy support which comes in the last couple of patches, one each
> for Rx and TX paths.
please include perf numbers in cover letter, CC AF_XDP maintainers and use
batch XSK APIs: xsk_buff_alloc_batch(), xsk_tx_peek_release_desc_batch().
Thanks!
>
> Sriram Yagnaraman (4):
> igb: prepare for AF_XDP zero-copy support
> igb: Introduce txrx ring enable/disable functions
> igb: add AF_XDP zero-copy Rx support
> igb: add AF_XDP zero-copy Tx support
>
> drivers/net/ethernet/intel/igb/Makefile | 2 +-
> drivers/net/ethernet/intel/igb/igb.h | 52 ++-
> drivers/net/ethernet/intel/igb/igb_main.c | 178 +++++++--
> drivers/net/ethernet/intel/igb/igb_xsk.c | 434 ++++++++++++++++++++++
> 4 files changed, 633 insertions(+), 33 deletions(-)
> create mode 100644 drivers/net/ethernet/intel/igb/igb_xsk.c
>
> --
> 2.34.1
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH 0/4] igb: Add support for AF_XDP zero-copy
2023-07-04 15:37 ` Maciej Fijalkowski
@ 2023-07-04 18:48 ` Sriram Yagnaraman
0 siblings, 0 replies; 4+ messages in thread
From: Sriram Yagnaraman @ 2023-07-04 18:48 UTC (permalink / raw)
To: Maciej Fijalkowski
Cc: intel-wired-lan@lists.osuosl.org, bpf@vger.kernel.org,
netdev@vger.kernel.org, Jesse Brandeburg, Tony Nguyen,
David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Alexei Starovoitov, Daniel Borkmann, Jesper Dangaard Brouer,
John Fastabend
> -----Original Message-----
> From: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
> Sent: Tuesday, 4 July 2023 17:37
> To: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
> Cc: intel-wired-lan@lists.osuosl.org; bpf@vger.kernel.org;
> netdev@vger.kernel.org; Jesse Brandeburg <jesse.brandeburg@intel.com>;
> Tony Nguyen <anthony.l.nguyen@intel.com>; David S . Miller
> <davem@davemloft.net>; Eric Dumazet <edumazet@google.com>; Jakub
> Kicinski <kuba@kernel.org>; Paolo Abeni <pabeni@redhat.com>; Alexei
> Starovoitov <ast@kernel.org>; Daniel Borkmann <daniel@iogearbox.net>;
> Jesper Dangaard Brouer <hawk@kernel.org>; John Fastabend
> <john.fastabend@gmail.com>
> Subject: Re: [PATCH 0/4] igb: Add support for AF_XDP zero-copy
>
> On Tue, Jul 04, 2023 at 11:59:11AM +0200, Sriram Yagnaraman wrote:
>
> Hi Sriram,
>
> > Disclaimer: My first patches to Intel drivers, implemented AF_XDP
> > zero-copy feature which seemed to be missing for igb. Not sure if it
> > was a conscious choice to not spend time implementing this for older
> > devices, nevertheless I send them to the list for review.
> >
> > The first couple of patches adds helper funcctions to prepare for
> > AF_XDP zero-copy support which comes in the last couple of patches,
> > one each for Rx and TX paths.
>
> please include perf numbers in cover letter, CC AF_XDP maintainers and use
> batch XSK APIs: xsk_buff_alloc_batch(), xsk_tx_peek_release_desc_batch().
>
> Thanks!
>
Thank you so much for the quick reply. I will respin addressing your comments.
For the perf numbers, I must confess, I only used the newly delivered IGB device emulation in qemu. I don't have access to a real NIC to provide realistic numbers. But of course, I can provide a comparison between XSK_COPY and XSK_ZEROCOPY using the emulator.
> >
> > Sriram Yagnaraman (4):
> > igb: prepare for AF_XDP zero-copy support
> > igb: Introduce txrx ring enable/disable functions
> > igb: add AF_XDP zero-copy Rx support
> > igb: add AF_XDP zero-copy Tx support
> >
> > drivers/net/ethernet/intel/igb/Makefile | 2 +-
> > drivers/net/ethernet/intel/igb/igb.h | 52 ++-
> > drivers/net/ethernet/intel/igb/igb_main.c | 178 +++++++--
> > drivers/net/ethernet/intel/igb/igb_xsk.c | 434 ++++++++++++++++++++++
> > 4 files changed, 633 insertions(+), 33 deletions(-) create mode
> > 100644 drivers/net/ethernet/intel/igb/igb_xsk.c
> >
> > --
> > 2.34.1
> >
> >
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-07-04 18:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-04 10:00 [PATCH 0/4] igb: Add support for AF_XDP zero-copy Sriram Yagnaraman
-- strict thread matches above, loose matches on Subject: below --
2023-07-04 9:59 Sriram Yagnaraman
2023-07-04 15:37 ` Maciej Fijalkowski
2023-07-04 18:48 ` Sriram Yagnaraman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox