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 5BA14326C for ; Tue, 20 Nov 2018 20:15:01 +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 C0F444A6F3; Tue, 20 Nov 2018 19:15:00 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id BF40C600C3; Tue, 20 Nov 2018 19:14:59 +0000 (UTC) From: Kevin Traynor To: Rami Rosen Cc: Tiwei Bie , dpdk stable Date: Tue, 20 Nov 2018 19:12:16 +0000 Message-Id: <20181120191252.30277-26-ktraynor@redhat.com> In-Reply-To: <20181120191252.30277-1-ktraynor@redhat.com> References: <20181120191252.30277-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.38]); Tue, 20 Nov 2018 19:15:00 +0000 (UTC) Subject: [dpdk-stable] patch 'examples/vhost: remove unnecessary constant' has been queued to stable release 18.08.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: Tue, 20 Nov 2018 19:15:01 -0000 Hi, FYI, your patch has been queued to stable release 18.08.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 11/23/18. 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. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Kevin Traynor --- >>From bd6787fc946187bd4376162eb905e74272039974 Mon Sep 17 00:00:00 2001 From: Rami Rosen Date: Sat, 25 Aug 2018 22:22:40 +0300 Subject: [PATCH] examples/vhost: remove unnecessary constant [ upstream commit b24ec9bc1c43f7cada0b16709043f84f52f2b895 ] This patch removes an unnecessary definition of MAX_PRINT_BUFF in examples/vhost/main.c, since it is no longer being used. Fixes: 68363d85857d ("examples/vhost: remove the non-working zero copy code") Signed-off-by: Rami Rosen Reviewed-by: Tiwei Bie --- examples/vhost/main.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/vhost/main.c b/examples/vhost/main.c index 2175c1186..5d28d03f6 100644 --- a/examples/vhost/main.c +++ b/examples/vhost/main.c @@ -59,7 +59,4 @@ #define MAX_DEVICES 64 -/* Size of buffers used for snprintfs. */ -#define MAX_PRINT_BUFF 6072 - /* Maximum long option length for option parsing. */ #define MAX_LONG_OPT_SZ 64 -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-20 17:53:08.096147283 +0000 +++ 0026-examples-vhost-remove-unnecessary-constant.patch 2018-11-20 17:53:07.000000000 +0000 @@ -1,13 +1,14 @@ -From b24ec9bc1c43f7cada0b16709043f84f52f2b895 Mon Sep 17 00:00:00 2001 +From bd6787fc946187bd4376162eb905e74272039974 Mon Sep 17 00:00:00 2001 From: Rami Rosen Date: Sat, 25 Aug 2018 22:22:40 +0300 Subject: [PATCH] examples/vhost: remove unnecessary constant +[ upstream commit b24ec9bc1c43f7cada0b16709043f84f52f2b895 ] + This patch removes an unnecessary definition of MAX_PRINT_BUFF in examples/vhost/main.c, since it is no longer being used. Fixes: 68363d85857d ("examples/vhost: remove the non-working zero copy code") -Cc: stable@dpdk.org Signed-off-by: Rami Rosen Reviewed-by: Tiwei Bie