Netdev List
 help / color / mirror / Atom feed
From: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
To: davem@davemloft.net
Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>,
	netdev@vger.kernel.org, nhorman@redhat.com, sassmann@redhat.com
Subject: [net-next 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2018-10-03
Date: Wed,  3 Oct 2018 08:48:10 -0700	[thread overview]
Message-ID: <20181003154825.5440-1-jeffrey.t.kirsher@intel.com> (raw)

This series contains updates to ice and virtchnl.

Yashaswini Raghuram adds a new virtchnl capability flag to support the
exchange of additional supported speeds.

Anirudh adds support for SR-IOV for the ice driver.  Added code to
initialize, configure and use mailbox queues for PF and VF
communication.  Updated the VSI and queue management to handle both PF
and VF VSI type.  Added "Adaptive Virtual Function (AVF)" support for
the ice PF driver by implementing virtchnl commands.  Extended the
malicious driver detection logic to include the VF driver as well.
Fixed the queue region size which needs to be log base 2 of the number
of queues in region.

Brett fixes an issue which was causing switch rules to be lost, by
making a call to ice_update_pkt_fwd_rule() with the necessary changes.
Fixed how the PF and VF assigned the ITR index by adding a struct member
itr_idx to be used to dynamically program the correct ITR index.

Dave fixed a potential NULL pointer dereference by adding checks in the
filter handling.

The following are changes since commit 4e6d47206c32d1bbb4931f1d851dae3870e0df81:
  tls: Add support for inplace records encryption
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 100GbE

Anirudh Venkataramanan (10):
  ice: Add support to detect SR-IOV capability and mailbox queues
  ice: Add handler to configure SR-IOV
  ice: Update VSI and queue management code to handle VF VSI
  ice: Add support for VF reset events
  ice: Add handlers for VF netdevice operations
  ice: Implement virtchnl commands for AVF support
  ice: Notify VF of link status change
  ice: Extend malicious operations detection logic
  ice: Fix forward to queue group logic
  ice: Update version string

Brett Creeley (2):
  ice: Add code to go from ICE_FWD_TO_VSI_LIST to ICE_FWD_TO_VSI
  ice: Add more flexibility on how we assign an ITR index

Dave Ertman (2):
  ice: Fix potential null pointer issues
  ice: Use the right function to enable/disable VSI

Yashaswini Raghuram Prathivadi Bhayankaram (1):
  virtchnl: Added support to exchange additional speed values

 drivers/net/ethernet/intel/ice/Makefile       |    1 +
 drivers/net/ethernet/intel/ice/ice.h          |   34 +
 .../net/ethernet/intel/ice/ice_adminq_cmd.h   |   20 +
 drivers/net/ethernet/intel/ice/ice_common.c   |   78 +-
 drivers/net/ethernet/intel/ice/ice_common.h   |    4 +-
 drivers/net/ethernet/intel/ice/ice_controlq.c |   46 +-
 drivers/net/ethernet/intel/ice/ice_controlq.h |    2 +
 .../net/ethernet/intel/ice/ice_hw_autogen.h   |   69 +
 .../net/ethernet/intel/ice/ice_lan_tx_rx.h    |   13 +
 drivers/net/ethernet/intel/ice/ice_lib.c      |  282 +-
 drivers/net/ethernet/intel/ice/ice_lib.h      |    3 +-
 drivers/net/ethernet/intel/ice/ice_main.c     |  150 +-
 drivers/net/ethernet/intel/ice/ice_sriov.c    |  127 +
 drivers/net/ethernet/intel/ice/ice_sriov.h    |   34 +
 drivers/net/ethernet/intel/ice/ice_status.h   |    3 +
 drivers/net/ethernet/intel/ice/ice_switch.c   |   66 +-
 drivers/net/ethernet/intel/ice/ice_switch.h   |    1 +
 drivers/net/ethernet/intel/ice/ice_txrx.h     |   13 +-
 drivers/net/ethernet/intel/ice/ice_type.h     |   20 +
 .../net/ethernet/intel/ice/ice_virtchnl_pf.c  | 2668 +++++++++++++++++
 .../net/ethernet/intel/ice/ice_virtchnl_pf.h  |  173 ++
 include/linux/avf/virtchnl.h                  |   15 +
 22 files changed, 3714 insertions(+), 108 deletions(-)
 create mode 100644 drivers/net/ethernet/intel/ice/ice_sriov.c
 create mode 100644 drivers/net/ethernet/intel/ice/ice_sriov.h
 create mode 100644 drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c
 create mode 100644 drivers/net/ethernet/intel/ice/ice_virtchnl_pf.h

-- 
2.17.1

             reply	other threads:[~2018-10-03 22:34 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-03 15:48 Jeff Kirsher [this message]
2018-10-03 15:48 ` [net-next 01/15] virtchnl: Added support to exchange additional speed values Jeff Kirsher
2018-10-03 15:48 ` [net-next 02/15] ice: Add support to detect SR-IOV capability and mailbox queues Jeff Kirsher
2018-10-03 15:48 ` [net-next 03/15] ice: Add handler to configure SR-IOV Jeff Kirsher
2018-10-03 15:48 ` [net-next 04/15] ice: Update VSI and queue management code to handle VF VSI Jeff Kirsher
2018-10-03 15:48 ` [net-next 05/15] ice: Add support for VF reset events Jeff Kirsher
2018-10-03 15:48 ` [net-next 06/15] ice: Add handlers for VF netdevice operations Jeff Kirsher
2018-10-03 15:48 ` [net-next 07/15] ice: Implement virtchnl commands for AVF support Jeff Kirsher
2018-10-03 15:48 ` [net-next 08/15] ice: Notify VF of link status change Jeff Kirsher
2018-10-03 17:23   ` Or Gerlitz
2018-10-04 17:36     ` Abodunrin, Akeem G
2018-10-03 15:48 ` [net-next 09/15] ice: Extend malicious operations detection logic Jeff Kirsher
2018-10-03 15:48 ` [net-next 10/15] ice: Fix forward to queue group logic Jeff Kirsher
2018-10-03 15:48 ` [net-next 11/15] ice: Add code to go from ICE_FWD_TO_VSI_LIST to ICE_FWD_TO_VSI Jeff Kirsher
2018-10-03 15:48 ` [net-next 12/15] ice: Fix potential null pointer issues Jeff Kirsher
2018-10-03 15:48 ` [net-next 13/15] ice: Add more flexibility on how we assign an ITR index Jeff Kirsher
2018-10-03 15:48 ` [net-next 14/15] ice: Use the right function to enable/disable VSI Jeff Kirsher
2018-10-03 15:48 ` [net-next 15/15] ice: Update version string Jeff Kirsher
2018-10-03 16:41 ` [net-next 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2018-10-03 David Miller

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=20181003154825.5440-1-jeffrey.t.kirsher@intel.com \
    --to=jeffrey.t.kirsher@intel.com \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    --cc=nhorman@redhat.com \
    --cc=sassmann@redhat.com \
    /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