netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dave Ertman <david.m.ertman@intel.com>
To: intel-wired-lan@lists.osuosl.org
Cc: netdev@vger.kernel.org
Subject: [PATCH net v2 00/10] Implement support for SRIOV + LAG
Date: Mon,  5 Jun 2023 11:22:48 -0700	[thread overview]
Message-ID: <20230605182258.557933-1-david.m.ertman@intel.com> (raw)

Implement support for SRIOV VF's on interfaces that are in an
aggregate interface.

The first interface added into the aggregate will be flagged as
the primary interface, and this primary interface will be
responsible for managing the VF's resources.  VF's created on the
primary are the only VFs that will be supported on the aggregate.
Only Active-Backup mode will be supported and only aggregates whose
primary interface is in switchdev mode will be supported.

Additional restrictions on what interfaces can be added to the aggregate
and still support SRIOV VFs are:
- interfaces have to all be on the same physical NIC
- all interfaces have to have the same QoS settings
- interfaces have to have the FW LLDP agent disabled
- only the primary interface is to be put into switchdev mode
- no more than two interfaces in the aggregate

Changes since v1:
Fix typo in commit message
Fix typos in warning messages
Fix typo in function header
Use correct bitwise operator instead of boolean

Dave Ertman (9):
  ice: Add driver support for firmware changes for LAG
  ice: changes to the interface with the HW and FW for SRIOV_VF+LAG
  ice: implement lag netdev event handler
  ice: process events created by lag netdev event handler
  ice: Flesh out implementation of support for SRIOV on bonded interface
  ice: support non-standard teardown of bond interface
  ice: enforce interface eligibility and add messaging for SRIOV LAG
  ice: enforce no DCB config changing when in bond
  ice: update reset path for SRIOV LAG support

Jacob Keller (1):
  ice: Correctly initialize queue context values

 drivers/net/ethernet/intel/ice/ice.h          |    5 +
 .../net/ethernet/intel/ice/ice_adminq_cmd.h   |   53 +-
 drivers/net/ethernet/intel/ice/ice_common.c   |   57 +-
 drivers/net/ethernet/intel/ice/ice_common.h   |    4 +
 drivers/net/ethernet/intel/ice/ice_dcb_nl.c   |   50 +
 drivers/net/ethernet/intel/ice/ice_lag.c      | 1912 ++++++++++++++++-
 drivers/net/ethernet/intel/ice/ice_lag.h      |   34 +-
 drivers/net/ethernet/intel/ice/ice_lib.c      |    2 +-
 drivers/net/ethernet/intel/ice/ice_lib.h      |    1 +
 drivers/net/ethernet/intel/ice/ice_main.c     |   26 +-
 drivers/net/ethernet/intel/ice/ice_sched.c    |   37 +-
 drivers/net/ethernet/intel/ice/ice_sched.h    |   21 +
 drivers/net/ethernet/intel/ice/ice_switch.c   |   89 +-
 drivers/net/ethernet/intel/ice/ice_switch.h   |   29 +
 drivers/net/ethernet/intel/ice/ice_type.h     |    2 +
 drivers/net/ethernet/intel/ice/ice_virtchnl.c |    2 +
 16 files changed, 2193 insertions(+), 131 deletions(-)

-- 
2.40.1


             reply	other threads:[~2023-06-05 18:21 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-05 18:22 Dave Ertman [this message]
2023-06-05 18:22 ` [PATCH net v2 01/10] ice: Correctly initialize queue context values Dave Ertman
2023-06-06  9:03   ` Daniel Machon
2023-06-06 16:31     ` Ertman, David M
2023-06-05 18:22 ` [PATCH net v2 02/10] ice: Add driver support for firmware changes for LAG Dave Ertman
2023-06-06  9:16   ` Daniel Machon
2023-06-06 16:59     ` Ertman, David M
2023-06-05 18:22 ` [PATCH net v2 03/10] ice: changes to the interface with the HW and FW for SRIOV_VF+LAG Dave Ertman
2023-06-06  9:36   ` Daniel Machon
2023-06-06 18:11     ` Ertman, David M
2023-06-05 18:22 ` [PATCH net v2 04/10] ice: implement lag netdev event handler Dave Ertman
2023-06-06  9:56   ` Daniel Machon
2023-06-06 18:23     ` Ertman, David M
2023-06-07  7:22       ` Daniel Machon
2023-06-05 18:22 ` [PATCH net v2 05/10] ice: process events created by " Dave Ertman
2023-06-06 10:54   ` Daniel Machon
2023-06-06 18:26     ` Ertman, David M
2023-06-05 18:22 ` [PATCH net v2 06/10] ice: Flesh out implementation of support for SRIOV on bonded interface Dave Ertman
2023-06-07  8:42   ` Daniel Machon
2023-06-08  1:08     ` Ertman, David M
2023-06-05 18:22 ` [PATCH net v2 07/10] ice: support non-standard teardown of bond interface Dave Ertman
2023-06-07  8:48   ` Daniel Machon
2023-06-05 18:22 ` [PATCH net v2 08/10] ice: enforce interface eligibility and add messaging for SRIOV LAG Dave Ertman
2023-06-07  8:54   ` Daniel Machon
2023-06-05 18:22 ` [PATCH net v2 09/10] ice: enforce no DCB config changing when in bond Dave Ertman
2023-06-07  9:01   ` Daniel Machon
2023-06-05 18:22 ` [PATCH net v2 10/10] ice: update reset path for SRIOV LAG support Dave Ertman
2023-06-07 10:08   ` Daniel Machon
2023-06-08 17:24     ` Ertman, David M
2023-06-05 19:12 ` [PATCH net v2 00/10] Implement support for SRIOV + LAG Ertman, David M
2023-06-05 20:27   ` Jakub Kicinski

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=20230605182258.557933-1-david.m.ertman@intel.com \
    --to=david.m.ertman@intel.com \
    --cc=intel-wired-lan@lists.osuosl.org \
    --cc=netdev@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).