From: Dvora Fuxbrumer <dvorax.fuxbrumer@linux.intel.com>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [PATCH net-next v6 0/9] igc: Add XDP support
Date: Tue, 2 Mar 2021 10:19:56 +0200 [thread overview]
Message-ID: <7264a870-38dd-e785-3d0f-65d21ed9942f@linux.intel.com> (raw)
In-Reply-To: <20210210215848.24514-1-vedang.patel@intel.com>
On 10/02/2021 23:58, Vedang Patel wrote:
> Hi all,
>
> This is the sixth version of this series which adds XDP support
> to igc driver.
>
> Changes from v5 are:
>
> - Avoid premature Rx buffer re-use in XDP_REDIRECT action by storing
> page count prior to invoking xdp_do_redirect. This is similar to
> what has been done for other Intel drivers.
>
> v5 is here:
>
> https://patchwork.ozlabs.org/project/intel-wired-lan/cover/20210209024243.23406-1-vedang.patel at intel.com/
>
> v4 is here:
>
> https://patchwork.ozlabs.org/project/intel-wired-lan/cover/20201104031210.27772-1-andre.guedes at intel.com/
>
> v3 is here:
>
> https://patchwork.ozlabs.org/project/intel-wired-lan/cover/20201030210351.46482-1-andre.guedes at intel.com/
>
> v2 is here:
>
> https://patchwork.ozlabs.org/project/intel-wired-lan/cover/20201028201943.93147-1-andre.guedes at intel.com/
>
> v1 is here:
>
> https://patchwork.ozlabs.org/project/intel-wired-lan/cover/20201009025349.4037-1-andre.guedes at intel.com/
>
> Thanks,
> Vedang
>
>
> Andre Guedes (9):
> igc: Fix igc_ptp_rx_pktstamp()
> igc: Remove unused argument from igc_tx_cmd_type()
> igc: Introduce igc_rx_buffer_flip() helper
> igc: Introduce igc_get_rx_frame_truesize() helper
> igc: Refactor Rx timestamp handling
> igc: Add set/clear large buffer helpers
> igc: Add initial XDP support
> igc: Add support for XDP_TX action
> igc: Add support for XDP_REDIRECT action
>
> drivers/net/ethernet/intel/igc/Makefile | 2 +-
> drivers/net/ethernet/intel/igc/igc.h | 18 +-
> drivers/net/ethernet/intel/igc/igc_main.c | 458 +++++++++++++++++++---
> drivers/net/ethernet/intel/igc/igc_ptp.c | 87 ++--
> drivers/net/ethernet/intel/igc/igc_xdp.c | 60 +++
> drivers/net/ethernet/intel/igc/igc_xdp.h | 13 +
> 6 files changed, 531 insertions(+), 107 deletions(-)
> create mode 100644 drivers/net/ethernet/intel/igc/igc_xdp.c
> create mode 100644 drivers/net/ethernet/intel/igc/igc_xdp.h
>
Tested-by: Dvora Fuxbrumer <dvorax.fuxbrumer@linux.intel.com>
prev parent reply other threads:[~2021-03-02 8:19 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-10 21:58 [Intel-wired-lan] [PATCH net-next v6 0/9] igc: Add XDP support Vedang Patel
2021-02-10 21:58 ` [Intel-wired-lan] [PATCH net-next v6 1/9] igc: Fix igc_ptp_rx_pktstamp() Vedang Patel
2021-02-11 0:30 ` Nguyen, Anthony L
2021-02-12 19:16 ` Joseph, Jithu
2021-03-02 8:20 ` Dvora Fuxbrumer
2021-02-10 21:58 ` [Intel-wired-lan] [PATCH net-next v6 2/9] igc: Remove unused argument from igc_tx_cmd_type() Vedang Patel
2021-03-02 8:20 ` Dvora Fuxbrumer
2021-02-10 21:58 ` [Intel-wired-lan] [PATCH net-next v6 3/9] igc: Introduce igc_rx_buffer_flip() helper Vedang Patel
2021-03-02 8:20 ` Dvora Fuxbrumer
2021-02-10 21:58 ` [Intel-wired-lan] [PATCH net-next v6 4/9] igc: Introduce igc_get_rx_frame_truesize() helper Vedang Patel
2021-03-02 8:21 ` Dvora Fuxbrumer
2021-02-10 21:58 ` [Intel-wired-lan] [PATCH net-next v6 5/9] igc: Refactor Rx timestamp handling Vedang Patel
2021-03-02 8:21 ` Dvora Fuxbrumer
2021-02-10 21:58 ` [Intel-wired-lan] [PATCH net-next v6 6/9] igc: Add set/clear large buffer helpers Vedang Patel
2021-03-02 8:21 ` Dvora Fuxbrumer
2021-02-10 21:58 ` [Intel-wired-lan] [PATCH net-next v6 7/9] igc: Add initial XDP support Vedang Patel
2021-03-02 8:22 ` Dvora Fuxbrumer
2021-02-10 21:58 ` [Intel-wired-lan] [PATCH net-next v6 8/9] igc: Add support for XDP_TX action Vedang Patel
2021-03-02 8:22 ` Dvora Fuxbrumer
2021-02-10 21:58 ` [Intel-wired-lan] [PATCH net-next v6 9/9] igc: Add support for XDP_REDIRECT action Vedang Patel
2021-03-02 8:22 ` Dvora Fuxbrumer
2021-03-02 8:19 ` Dvora Fuxbrumer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7264a870-38dd-e785-3d0f-65d21ed9942f@linux.intel.com \
--to=dvorax.fuxbrumer@linux.intel.com \
--cc=intel-wired-lan@osuosl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox