From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4CC89A04AF for ; Thu, 20 Aug 2020 17:34:31 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 408121BEC4; Thu, 20 Aug 2020 17:34:31 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id 242BC1BEC4 for ; Thu, 20 Aug 2020 17:34:29 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1597937668; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=a3KHhvYId6UVluihI3YVGBQh1P9ewa1TyZqw14cZx98=; b=LSI/53oaNKdLMcno0G2ZMQY7Y0Kc2BKDPpkcABjy99WfWdabxzKVVOeL+8A5zsPQ0XOA31 tTD+IQXHa8hzaSr11PtONzlH06grbRE8YHaiXtnFG6jK6zzpGJT6K0aZYonWsQ0Oztrklk iLGTw49E1oqf55GWoLWo7Yj8uw2Chb0= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-243-tatGRkUhPFi8QGnd6Tu1hQ-1; Thu, 20 Aug 2020 11:34:21 -0400 X-MC-Unique: tatGRkUhPFi8QGnd6Tu1hQ-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id DB3531007461; Thu, 20 Aug 2020 15:34:20 +0000 (UTC) Received: from rh.redhat.com (unknown [10.33.36.18]) by smtp.corp.redhat.com (Postfix) with ESMTP id ED0D7100EBB3; Thu, 20 Aug 2020 15:34:19 +0000 (UTC) From: Kevin Traynor To: Pavel Ivashchenko Cc: Qi Zhang , dpdk stable Date: Thu, 20 Aug 2020 16:33:19 +0100 Message-Id: <20200820153341.171927-14-ktraynor@redhat.com> In-Reply-To: <20200820153341.171927-1-ktraynor@redhat.com> References: <20200820153341.171927-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=ktraynor@redhat.com X-Mimecast-Spam-Score: 0.001 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] patch 'net/i40e: fix getting EEPROM information' has been queued to LTS release 18.11.10 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Hi, FYI, your patch has been queued to LTS release 18.11.10 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 08/25/20. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable-queue This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable-queue/commit/ffa1d166d65da66b3bb75a24e1aa18948d25a8b0 Thanks. Kevin. --- >From ffa1d166d65da66b3bb75a24e1aa18948d25a8b0 Mon Sep 17 00:00:00 2001 From: Pavel Ivashchenko Date: Thu, 2 Jul 2020 12:37:17 +0000 Subject: [PATCH] net/i40e: fix getting EEPROM information [ upstream commit 2fc1d6da882563ab80786d69b6d7c9d0e4ce860a ] Fixes: 50130a0c4440 ("net/i40e/base: change AQ command for PHY access") Signed-off-by: Pavel Ivashchenko Acked-by: Qi Zhang --- drivers/net/i40e/i40e_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c index 3f1787728f..98c752bc4e 100644 --- a/drivers/net/i40e/i40e_ethdev.c +++ b/drivers/net/i40e/i40e_ethdev.c @@ -11849,5 +11849,5 @@ static int i40e_get_module_eeprom(struct rte_eth_dev *dev, status = i40e_aq_get_phy_register(hw, I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE, - addr, offset, 1, &value, NULL); + addr, 1, offset, &value, NULL); if (status) return -EIO; -- 2.26.2 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2020-08-20 16:26:16.395459811 +0100 +++ 0014-net-i40e-fix-getting-EEPROM-information.patch 2020-08-20 16:26:15.797324079 +0100 @@ -1 +1 @@ -From 2fc1d6da882563ab80786d69b6d7c9d0e4ce860a Mon Sep 17 00:00:00 2001 +From ffa1d166d65da66b3bb75a24e1aa18948d25a8b0 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 2fc1d6da882563ab80786d69b6d7c9d0e4ce860a ] + @@ -7 +8,0 @@ -Cc: stable@dpdk.org @@ -16 +17 @@ -index 472ce2a9e1..777e14926f 100644 +index 3f1787728f..98c752bc4e 100644 @@ -19 +20 @@ -@@ -12082,5 +12082,5 @@ static int i40e_get_module_eeprom(struct rte_eth_dev *dev, +@@ -11849,5 +11849,5 @@ static int i40e_get_module_eeprom(struct rte_eth_dev *dev,