From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 333831B514 for ; Thu, 7 Feb 2019 14:27:22 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 7A5E6804ED; Thu, 7 Feb 2019 13:27:21 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.33.36.135]) by smtp.corp.redhat.com (Postfix) with ESMTP id 681BF6910E; Thu, 7 Feb 2019 13:27:20 +0000 (UTC) From: Kevin Traynor To: Rami Rosen Cc: Gavin Hu , dpdk stable Date: Thu, 7 Feb 2019 13:25:19 +0000 Message-Id: <20190207132614.20538-13-ktraynor@redhat.com> In-Reply-To: <20190207132614.20538-1-ktraynor@redhat.com> References: <20190207132614.20538-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Thu, 07 Feb 2019 13:27:21 +0000 (UTC) Subject: [dpdk-stable] patch 'examples/vhost: fix a typo' has been queued to LTS release 18.11.1 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: , X-List-Received-Date: Thu, 07 Feb 2019 13:27:22 -0000 Hi, FYI, your patch has been queued to LTS release 18.11.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 02/14/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 rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Thanks. Kevin Traynor --- >>From ef7a4a6a8b96703e90753431934c8f41fd093bf1 Mon Sep 17 00:00:00 2001 From: Rami Rosen Date: Mon, 14 Jan 2019 16:47:47 +0200 Subject: [PATCH] examples/vhost: fix a typo [ upstream commit 10b4270fff20287c5613d88a7ae5521dcbb44463 ] This minor patch fixes a typo in examples/vhost/main.c. Fixes: d19533e86f1d ("examples/vhost: copy old vhost example") Signed-off-by: Rami Rosen Reviewed-by: Gavin Hu --- examples/vhost/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vhost/main.c b/examples/vhost/main.c index dc9ea1018..c4bdd3c43 100644 --- a/examples/vhost/main.c +++ b/examples/vhost/main.c @@ -1221,5 +1221,5 @@ destroy_device(int vid) /* * A new device is added to a data core. First the device is added to the main linked list - * and the allocated to a specific data core. + * and then allocated to a specific data core. */ static int -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2019-02-07 13:19:55.824021743 +0000 +++ 0013-examples-vhost-fix-a-typo.patch 2019-02-07 13:19:55.000000000 +0000 @@ -1,12 +1,13 @@ -From 10b4270fff20287c5613d88a7ae5521dcbb44463 Mon Sep 17 00:00:00 2001 +From ef7a4a6a8b96703e90753431934c8f41fd093bf1 Mon Sep 17 00:00:00 2001 From: Rami Rosen Date: Mon, 14 Jan 2019 16:47:47 +0200 Subject: [PATCH] examples/vhost: fix a typo +[ upstream commit 10b4270fff20287c5613d88a7ae5521dcbb44463 ] + This minor patch fixes a typo in examples/vhost/main.c. Fixes: d19533e86f1d ("examples/vhost: copy old vhost example") -Cc: stable@dpdk.org Signed-off-by: Rami Rosen Reviewed-by: Gavin Hu @@ -15,10 +16,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vhost/main.c b/examples/vhost/main.c -index f722a13f6..645cf51e9 100644 +index dc9ea1018..c4bdd3c43 100644 --- a/examples/vhost/main.c +++ b/examples/vhost/main.c -@@ -1199,5 +1199,5 @@ destroy_device(int vid) +@@ -1221,5 +1221,5 @@ destroy_device(int vid) /* * A new device is added to a data core. First the device is added to the main linked list - * and the allocated to a specific data core.