From patchwork Fri Feb 8 20:50:47 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anirudh Venkataramanan X-Patchwork-Id: 1039004 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=osuosl.org (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=intel-wired-lan-bounces@osuosl.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=intel.com Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43x6rk37k8z9sMp for ; Sat, 9 Feb 2019 07:55:18 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0A09787BBE; Fri, 8 Feb 2019 20:55:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nrRVrJLD3Fua; Fri, 8 Feb 2019 20:55:15 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 36E4E88145; Fri, 8 Feb 2019 20:55:14 +0000 (UTC) X-Original-To: intel-wired-lan@lists.osuosl.org Delivered-To: intel-wired-lan@lists.osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 43BCF1BF976 for ; Fri, 8 Feb 2019 20:53:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id BFB3F86A51 for ; Fri, 8 Feb 2019 20:53:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dCCayPNhql66 for ; Fri, 8 Feb 2019 20:53:13 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 65AAF86A3C for ; Fri, 8 Feb 2019 20:51:02 +0000 (UTC) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Feb 2019 12:51:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,348,1544515200"; d="scan'208";a="141869781" Received: from shasta.jf.intel.com ([10.166.241.11]) by fmsmga002.fm.intel.com with ESMTP; 08 Feb 2019 12:51:01 -0800 From: Anirudh Venkataramanan To: intel-wired-lan@lists.osuosl.org Date: Fri, 8 Feb 2019 12:50:47 -0800 Message-Id: <20190208205101.12078-1-anirudh.venkataramanan@intel.com> X-Mailer: git-send-email 2.14.5 Subject: [Intel-wired-lan] [PATCH S12 00/14] Bug fixes and minor feature updates for ice X-BeenThere: intel-wired-lan@osuosl.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel Wired Ethernet Linux Kernel Driver Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-wired-lan-bounces@osuosl.org Sender: "Intel-wired-lan" Akeem G Abodunrin (5): ice: Fix issue with VF reset and multiple VFs support on PFs ice: Implement flow to reset VFs with PFR and other resets ice: Reset all VFs with VFLR during SR-IOV init flow ice: Enable MAC anti-spoof by default ice: Fix issue reclaiming resources back to the pool after reset Brett Creeley (5): ice: remove redundant variable and if condition ice: use ice_for_each_vsi macro when possible ice: configure GLINT_ITR to always have an ITR gran of 2 ice: Get resources per function ice: Determine descriptor count and ring size based on PAGE_SIZE Bruce Allan (1): ice: avoid multiple unnecessary de-references in probe Chinh T Cao (1): ice : Ensure only valid bits are set in ice_aq_set_phy_cfg Henry Tieman (1): ice: implement ethtool set channels Michal Swiatkowski (1): ice: Fix broadcast traffic in port VLAN mode drivers/net/ethernet/intel/ice/ice.h | 19 ++- drivers/net/ethernet/intel/ice/ice_adminq_cmd.h | 5 +- drivers/net/ethernet/intel/ice/ice_common.c | 24 +++- drivers/net/ethernet/intel/ice/ice_ethtool.c | 88 ++++++++++++- drivers/net/ethernet/intel/ice/ice_hw_autogen.h | 10 ++ drivers/net/ethernet/intel/ice/ice_lib.c | 157 +++++++++++++++++++---- drivers/net/ethernet/intel/ice/ice_lib.h | 2 +- drivers/net/ethernet/intel/ice/ice_main.c | 125 +++++++++++------- drivers/net/ethernet/intel/ice/ice_txrx.c | 10 +- drivers/net/ethernet/intel/ice/ice_txrx.h | 1 + drivers/net/ethernet/intel/ice/ice_type.h | 1 + drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c | 100 +++++++++------ 12 files changed, 411 insertions(+), 131 deletions(-)