From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1EB84C5ACAE for ; Wed, 11 Sep 2019 16:50:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id ECEB120872 for ; Wed, 11 Sep 2019 16:50:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729352AbfIKQuP (ORCPT ); Wed, 11 Sep 2019 12:50:15 -0400 Received: from mga14.intel.com ([192.55.52.115]:31967 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728825AbfIKQuP (ORCPT ); Wed, 11 Sep 2019 12:50:15 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Sep 2019 09:50:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,489,1559545200"; d="scan'208";a="385759035" Received: from jtkirshe-desk1.jf.intel.com ([134.134.177.96]) by fmsmga006.fm.intel.com with ESMTP; 11 Sep 2019 09:50:15 -0700 From: Jeff Kirsher To: davem@davemloft.net Cc: Jeff Kirsher , netdev@vger.kernel.org, nhorman@redhat.com, sassmann@redhat.com Subject: [net-next v2 00/13][pull request] Intel Wired LAN Driver Updates 2019-09-11 Date: Wed, 11 Sep 2019 09:50:01 -0700 Message-Id: <20190911165014.10742-1-jeffrey.t.kirsher@intel.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This series contains updates to i40e, ixgbe/vf and iavf. Wenwen Wang fixes a potential memory leak where 3 allocated variables are not properly cleaned up on failure for ixgbe. Stefan Assmann fixes a potential kernel panic found when repeatedly spawning and destroying VFs in i40e when a NULL pointer is dereferenced due to a race condition. Fixed up the i40e driver to clear the __I40E_VIRTCHNL_OP_PENDING bit before returning after an invalid minimum transmit rate is requested. Updates the iavf driver to only apply the MAC address change when the PF ACK's the requested change. Tonghao Zhang updates ixgbe to use the skb_get_queue_mapping() API call instead of the driver accessing the queue mapping directly. Jake updates i40e to use ktime_get_real_ts64() instead of ktime_to_timespec64(). Removes the define for bit 0x0001 for cloud filters, since it is a reserved bit and not a valid type. Also added code comments to clearly state which bits are reserved and should not be used or defined for cloud filter adminq command. Clarify the macros used to specify the cloud filter fields are individual bits, so use the BIT() macro. Aleksandr fixes up the print_link_message() to include the "negotiated" FEC status for i40e. Czeslaw also adds additional log message for devices without FEC in the print_link_message() for i40e. Colin Ian King reduces the object code size by making the array API static constant. Magnus fixes a potential receive buffer starvation issue for AF_XDP by kicking the NAPI context of any queue with an attached AF_XDP zero-copy socket. v2: Removed patch 11 from the original series (Alex Duyck's ITR fix), so that it can be sent to the net tree. The following are changes since commit c1609946b8b6485e1d405663004867ea9e92178a: Merge branch 'qed-Fix-series' and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 40GbE Aleksandr Loktionov (1): i40e: fix missed "Negotiated" string in i40e_print_link_message() Colin Ian King (1): net/ixgbevf: make array api static const, makes object smaller Czeslaw Zagorski (1): i40e: Fix message for other card without FEC. Jacob Keller (4): i40e: use ktime_get_real_ts64 instead of ktime_to_timespec64 i40e: remove I40E_AQC_ADD_CLOUD_FILTER_OIP i40e: mark additional missing bits as reserved i40e: use BIT macro to specify the cloud filter field flags Magnus Karlsson (1): i40e: fix potential RX buffer starvation for AF_XDP Stefan Assmann (3): i40e: check __I40E_VF_DISABLE bit in i40e_sync_filters_subtask i40e: clear __I40E_VIRTCHNL_OP_PENDING on invalid min Tx rate iavf: fix MAC address setting for VFs when filter is rejected Tonghao Zhang (1): ixgbe: use skb_get_queue_mapping in tx path Wenwen Wang (1): ixgbe: fix memory leaks drivers/net/ethernet/intel/i40e/i40e.h | 10 +++---- .../net/ethernet/intel/i40e/i40e_adminq_cmd.h | 5 +++- drivers/net/ethernet/intel/i40e/i40e_main.c | 30 ++++++++++++------- drivers/net/ethernet/intel/i40e/i40e_ptp.c | 2 +- .../ethernet/intel/i40e/i40e_virtchnl_pf.c | 3 +- drivers/net/ethernet/intel/i40e/i40e_xsk.c | 5 ++++ drivers/net/ethernet/intel/iavf/iavf_main.c | 1 - .../net/ethernet/intel/iavf/iavf_virtchnl.c | 7 +++++ drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 6 +++- .../net/ethernet/intel/ixgbevf/ixgbevf_main.c | 14 +++++---- 10 files changed, 57 insertions(+), 26 deletions(-) -- 2.21.0