From patchwork Wed Apr 14 16:20:29 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Nguyen X-Patchwork-Id: 421560 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=-21.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,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 17899C433B4 for ; Wed, 14 Apr 2021 16:18:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E3D71611B0 for ; Wed, 14 Apr 2021 16:18:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352686AbhDNQTO (ORCPT ); Wed, 14 Apr 2021 12:19:14 -0400 Received: from mga18.intel.com ([134.134.136.126]:61890 "EHLO mga18.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1352671AbhDNQTL (ORCPT ); Wed, 14 Apr 2021 12:19:11 -0400 IronPort-SDR: eNnIDkcjxemQjxezKxnejj5hbyEv8QN1Yj6SiU18isyxH4iYZuTcv1mC7j8FclRQUojxZsgd9s FHtOAL2QGYtw== X-IronPort-AV: E=McAfee;i="6200,9189,9954"; a="182179980" X-IronPort-AV: E=Sophos;i="5.82,222,1613462400"; d="scan'208";a="182179980" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Apr 2021 09:18:47 -0700 IronPort-SDR: XjlFZ4hqzP+9dYRnvy92dYfk7TTZfnXWP7VrtcD2nvfzna2AMmbEARc7ivCRtHHz2latLGWLfz NRWRqkDiNZhw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,222,1613462400"; d="scan'208";a="452520776" Received: from anguy11-desk2.jf.intel.com ([10.166.244.147]) by fmsmga002.fm.intel.com with ESMTP; 14 Apr 2021 09:18:47 -0700 From: Tony Nguyen To: davem@davemloft.net, kuba@kernel.org Cc: Tony Nguyen , netdev@vger.kernel.org, sassmann@redhat.com Subject: [PATCH net 0/3][pull request] Intel Wired LAN Driver Updates 2021-04-14 Date: Wed, 14 Apr 2021 09:20:29 -0700 Message-Id: <20210414162032.3846384-1-anthony.l.nguyen@intel.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This series contains updates to ixgbe and ice drivers. Alex Duyck fixes a NULL pointer dereference for ixgbe. Yongxin Liu fixes an unbalanced enable/disable which was causing a call trace with suspend for ixgbe. Colin King fixes a potential infinite loop for ice. The following are changes since commit 2afeec08ab5c86ae21952151f726bfe184f6b23d: xen-netback: Check for hotplug-status existence before watching and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue 10GbE Alexander Duyck (1): ixgbe: Fix NULL pointer dereference in ethtool loopback test Colin Ian King (1): ice: Fix potential infinite loop when using u8 loop counter Yongxin Liu (1): ixgbe: fix unbalanced device enable/disable in suspend/resume drivers/net/ethernet/intel/ice/ice_dcb.c | 4 ++-- drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 14 +++++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) Acked-by: Jakub Kicinski