From nobody Tue Feb 10 15:43:34 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id ED397C77B7C for ; Fri, 12 May 2023 23:40:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240828AbjELXkK (ORCPT ); Fri, 12 May 2023 19:40:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46724 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229611AbjELXkH (ORCPT ); Fri, 12 May 2023 19:40:07 -0400 X-Greylist: delayed 601 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Fri, 12 May 2023 16:40:06 PDT Received: from air.basealt.ru (air.basealt.ru [194.107.17.39]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 74B891FC1; Fri, 12 May 2023 16:40:06 -0700 (PDT) Received: by air.basealt.ru (Postfix, from userid 490) id E56FE2F20239; Fri, 12 May 2023 23:20:16 +0000 (UTC) Received: from localhost.localdomain (unknown [176.59.56.94]) by air.basealt.ru (Postfix) with ESMTPSA id 000B02F20227; Fri, 12 May 2023 23:20:12 +0000 (UTC) From: kovalev@altlinux.org To: kovalev@altlinux.org, nickel@altlinux.org, jesse.brandeburg@intel.com, anthony.l.nguyen@intel.com, davem@davemloft.net, kuba@kernel.org, sasha.neftin@intel.com, jeffrey.t.kirsher@intel.com, intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, pabeni@redhat.com, edumazet@google.com Subject: [PATCH] e1000e: Fix bind network card with ID = 0x0D4F Date: Sat, 13 May 2023 02:19:44 +0300 Message-Id: <20230512231944.100501-1-kovalev@altlinux.org> X-Mailer: git-send-email 2.33.6 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Vasiliy Kovalev This solution fixes packet loss during download, allowing you to get into the range of network cards of 639e298f432fb0 commit. Below is a summary of the hardware: $ cat /sys/devices/cpu_core/caps/pmu_name alderlake_hybrid $ lspci -nn | grep 'Ethernet' 00:1f.6 Ethernet controller [0200]: Intel Corporation Ethernet Connection (10) I219-V [8086:0d4f] (rev 01) Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=3D217436 Fixes: 914ee9c436cbe9 ("e1000e: Add support for Comet Lake") Signed-off-by: Vasiliy Kovalev --- drivers/net/ethernet/intel/e1000e/netdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ether= net/intel/e1000e/netdev.c index db8e06157da29..8b13f19309c39 100644 --- a/drivers/net/ethernet/intel/e1000e/netdev.c +++ b/drivers/net/ethernet/intel/e1000e/netdev.c @@ -7887,7 +7887,7 @@ static const struct pci_device_id e1000_pci_tbl[] =3D= { { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ICP_I219_LM9), board_pch_cnp }, { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ICP_I219_V9), board_pch_cnp }, { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_LM10), board_pch_cnp }, - { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_V10), board_pch_cnp }, + { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_V10), board_pch_adp }, { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_LM11), board_pch_cnp }, { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_V11), board_pch_cnp }, { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_LM12), board_pch_spt }, --=20 2.33.5