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