From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Kirsher Subject: [net-next 0/8][pull request] 100GbE Intel Wired LAN Driver Updates 2018-10-01 Date: Mon, 1 Oct 2018 14:14:23 -0700 Message-ID: <20181001211431.14325-1-jeffrey.t.kirsher@intel.com> Cc: Jeff Kirsher , netdev@vger.kernel.org, nhorman@redhat.com, sassmann@redhat.com, jogreene@redhat.com To: davem@davemloft.net Return-path: Received: from mga12.intel.com ([192.55.52.136]:8343 "EHLO mga12.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726117AbeJBDvI (ORCPT ); Mon, 1 Oct 2018 23:51:08 -0400 Sender: netdev-owner@vger.kernel.org List-ID: This series contains updates to ice driver only. Anirudh provides several changes to "prep" the driver for upcoming features. Specifically, the functions that are used for PF VSI/netdev setup will also be used in SR-IOV support and to allow the reuse of these functions, code needs to move. Dave provides the only other change in the series, updates the driver to protect the reset patch in its entirety. This is done by adding the various bit checks to determine if a reset is scheduled/initiated and whether it came from the software or firmware. The following are changes since commit 804fe108fc92e591ddfe9447e7fb4691ed16daee: openvswitch: Use correct reply values in datapath and vport ops and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 100GbE Anirudh Venkataramanan (7): ice: Move common functions out of ice_main.c part 1/7 ice: Move common functions out of ice_main.c part 2/7 ice: Move common functions out of ice_main.c part 3/7 ice: Move common functions out of ice_main.c part 4/7 ice: Move common functions out of ice_main.c part 5/7 ice: Move common functions out of ice_main.c part 6/7 ice: Move common functions out of ice_main.c part 7/7 Dave Ertman (1): ice: Change pf state behavior to protect reset path drivers/net/ethernet/intel/ice/Makefile | 1 + drivers/net/ethernet/intel/ice/ice.h | 2 +- drivers/net/ethernet/intel/ice/ice_common.c | 61 + drivers/net/ethernet/intel/ice/ice_common.h | 4 + drivers/net/ethernet/intel/ice/ice_lib.c | 2379 +++++++++++++++ drivers/net/ethernet/intel/ice/ice_lib.h | 74 + drivers/net/ethernet/intel/ice/ice_main.c | 2901 ++----------------- 7 files changed, 2773 insertions(+), 2649 deletions(-) create mode 100644 drivers/net/ethernet/intel/ice/ice_lib.c create mode 100644 drivers/net/ethernet/intel/ice/ice_lib.h -- 2.17.1