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 EE4BAA04C3 for ; Fri, 22 Nov 2019 15:42:20 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DE2FF2C2B; Fri, 22 Nov 2019 15:42:20 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 94F3C2BF1 for ; Fri, 22 Nov 2019 15:42:17 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574433737; 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=WWILAldxACsNe4bIeSVwvvFw6+CQcMpZXvJSQDP3MMI=; b=imO5up/QkN4oudd2OnxGvuUlYnx/QqQ2QKw/nuorriNfouiywry3cQHDO97lrmtrTRAhGe vc5bi6pQZdUBEUHD9aVsMzzg4O5mdVrkP9hh1ifjpBkvG53h1fSk28Sq55XvbQhQ1kEk67 /WLPvdd0kjacQOu28vcer9n5NO1o/8M= 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-412-4h5nIG-sPdSoc5MoKSj3KA-1; Fri, 22 Nov 2019 09:42:13 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id B36B310054E3; Fri, 22 Nov 2019 14:42:12 +0000 (UTC) Received: from rh.redhat.com (unknown [10.36.118.60]) by smtp.corp.redhat.com (Postfix) with ESMTP id C94628516; Fri, 22 Nov 2019 14:42:11 +0000 (UTC) From: Kevin Traynor To: Wei Zhao Cc: Xiaolong Ye , dpdk stable Date: Fri, 22 Nov 2019 14:41:03 +0000 Message-Id: <20191122144131.21231-17-ktraynor@redhat.com> In-Reply-To: <20191122144131.21231-1-ktraynor@redhat.com> References: <20191122144131.21231-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: 4h5nIG-sPdSoc5MoKSj3KA-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-stable] patch 'net/ixgbe: enable new PF host mbox version' has been queued to LTS release 18.11.6 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.6 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/29/19. 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 rebasi= ng (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/411e16651fb261f7d7= cf3694d9e4df712e4d7f4a Thanks. Kevin. --- >From 411e16651fb261f7d7cf3694d9e4df712e4d7f4a Mon Sep 17 00:00:00 2001 From: Wei Zhao Date: Wed, 28 Aug 2019 16:16:52 +0800 Subject: [PATCH] net/ixgbe: enable new PF host mbox version [ upstream commit 5e0a2c935bf6724b8419ad8f9237c48a564bb2ff ] A new mail box version of ixgbe_mbox_api_13 need to be enabled for PF host, in order that it can communicate with VF for queue number. Fixes: 46b14c231106 ("ixgbe: get VF queue number") Signed-off-by: Wei Zhao Acked-by: Xiaolong Ye --- drivers/net/ixgbe/ixgbe_pf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ixgbe/ixgbe_pf.c b/drivers/net/ixgbe/ixgbe_pf.c index be0c0768c..22d826cbf 100644 --- a/drivers/net/ixgbe/ixgbe_pf.c +++ b/drivers/net/ixgbe/ixgbe_pf.c @@ -633,4 +633,5 @@ ixgbe_get_vf_queues(struct rte_eth_dev *dev, uint32_t v= f, uint32_t *msgbuf) =09case ixgbe_mbox_api_11: =09case ixgbe_mbox_api_12: +=09case ixgbe_mbox_api_13: =09=09break; =09default: --=20 2.21.0 --- Diff of the applied patch vs upstream commit (please double-check if non-= empty: --- --- -=092019-11-22 14:36:56.137656029 +0000 +++ 0017-net-ixgbe-enable-new-PF-host-mbox-version.patch=092019-11-22 14:36= :55.179149671 +0000 @@ -1 +1 @@ -From 5e0a2c935bf6724b8419ad8f9237c48a564bb2ff Mon Sep 17 00:00:00 2001 +From 411e16651fb261f7d7cf3694d9e4df712e4d7f4a Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 5e0a2c935bf6724b8419ad8f9237c48a564bb2ff ] + @@ -10 +11,0 @@ -Cc: stable@dpdk.org @@ -19 +20 @@ -index c88d56e24..be729ba2d 100644 +index be0c0768c..22d826cbf 100644 @@ -22 +23 @@ -@@ -619,4 +619,5 @@ ixgbe_get_vf_queues(struct rte_eth_dev *dev, uint32_t = vf, uint32_t *msgbuf) +@@ -633,4 +633,5 @@ ixgbe_get_vf_queues(struct rte_eth_dev *dev, uint32_t = vf, uint32_t *msgbuf)