From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5F405280CFB; Mon, 13 Apr 2026 16:05:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776096305; cv=none; b=AiOJOiLuYaS5pSNG9nCBo7fT0iSd/dR7sfe8kFAt7w3Td9Dx9YjAuYJDxML3YTlmfh3TvsyX0Rs5pmJmykZOlpjjnYs50xCeu7i6K2JmXguO7AJ2A9gqF6PLHXWu1OsGZD/X+0TNxCakLDZh5TIxfQ7wBS13bZO53Dy6C4A2q48= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776096305; c=relaxed/simple; bh=/lS2rvAXSR/0HCr+tqudfXRqcMtX3V3/yCHYi8WSawA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=CaEbJ5ffEFSKswNVpr7gU5QwzGPTqi+Gy5D4LZunS9hIiS12QJCwiXUcwwa1fv5r7P68nGAqbHApx6c3dx4YJQmVhkb5RR0RPpVDCxE0UW9MyTpYqK2hWRGmYUUGFFxa/MMtFifC6mH/ZX78+dPivFmdPZj39Kvsr6EBk/85i60= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=J0cHu3wX; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="J0cHu3wX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E5F57C2BCB0; Mon, 13 Apr 2026 16:05:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776096305; bh=/lS2rvAXSR/0HCr+tqudfXRqcMtX3V3/yCHYi8WSawA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=J0cHu3wXvDDR21Mz6rtqRSGeuA3SF3FVXp76G1oXm4FrfuO9EVOwaxe9Jclv3yh4O 5Ijz6OWUtxB2WULu+KCOibd6ohTvkZu4jH1DofYjI+zk+Y73UW7qkri6jfBX9E0Cg5 O8Z/LJ8opongW8sJU33wSLETOZ3o/xEWJpy66ajQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Michael Guralnik , Patrisious Haddad , Tariq Toukan , Simon Horman , Jakub Kicinski Subject: [PATCH 6.19 47/86] net/mlx5: Update the list of the PCI supported devices Date: Mon, 13 Apr 2026 17:59:54 +0200 Message-ID: <20260413155733.326944573@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260413155731.568515178@linuxfoundation.org> References: <20260413155731.568515178@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Michael Guralnik commit a9d4f4f6e65e0bf9bbddedecc84d67249991979c upstream. Add the upcoming ConnectX-10 NVLink-C2C device ID to the table of supported PCI device IDs. Cc: stable@vger.kernel.org Signed-off-by: Michael Guralnik Reviewed-by: Patrisious Haddad Signed-off-by: Tariq Toukan Reviewed-by: Simon Horman Link: https://patch.msgid.link/20260403091756.139583-1-tariqt@nvidia.com Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- drivers/net/ethernet/mellanox/mlx5/core/main.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/net/ethernet/mellanox/mlx5/core/main.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/main.c @@ -2267,6 +2267,7 @@ static const struct pci_device_id mlx5_c { PCI_VDEVICE(MELLANOX, 0x1023) }, /* ConnectX-8 */ { PCI_VDEVICE(MELLANOX, 0x1025) }, /* ConnectX-9 */ { PCI_VDEVICE(MELLANOX, 0x1027) }, /* ConnectX-10 */ + { PCI_VDEVICE(MELLANOX, 0x2101) }, /* ConnectX-10 NVLink-C2C */ { PCI_VDEVICE(MELLANOX, 0xa2d2) }, /* BlueField integrated ConnectX-5 network controller */ { PCI_VDEVICE(MELLANOX, 0xa2d3), MLX5_PCI_DEV_IS_VF}, /* BlueField integrated ConnectX-5 network controller VF */ { PCI_VDEVICE(MELLANOX, 0xa2d6) }, /* BlueField-2 integrated ConnectX-6 Dx network controller */