From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 738721B517 for ; Fri, 30 Nov 2018 00:12:50 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from yskoh@mellanox.com) with ESMTPS (AES256-SHA encrypted); 30 Nov 2018 01:18:42 +0200 Received: from scfae-sc-2.mti.labs.mlnx (scfae-sc-2.mti.labs.mlnx [10.101.0.96]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id wATNCW79032075; Fri, 30 Nov 2018 01:12:47 +0200 From: Yongseok Koh To: Rami Rosen Cc: Tiwei Bie , dpdk stable Date: Thu, 29 Nov 2018 15:10:03 -0800 Message-Id: <20181129231202.30436-9-yskoh@mellanox.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20181129231202.30436-1-yskoh@mellanox.com> References: <20181129231202.30436-1-yskoh@mellanox.com> Subject: [dpdk-stable] patch 'examples/vhost: remove unnecessary constant' has been queued to LTS release 17.11.5 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, 29 Nov 2018 23:12:50 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.5 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 12/01/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. Yongseok --- >>From 6e3d90979922e8eb967cf9198fdde7c722443206 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 1f532fe3b..82660a673 100644 --- a/examples/vhost/main.c +++ b/examples/vhost/main.c @@ -87,9 +87,6 @@ /* Max number of devices. Limited by vmdq. */ #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.11.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-29 15:01:45.699995954 -0800 +++ 0009-examples-vhost-remove-unnecessary-constant.patch 2018-11-29 15:01:44.975963000 -0800 @@ -1,13 +1,14 @@ -From b24ec9bc1c43f7cada0b16709043f84f52f2b895 Mon Sep 17 00:00:00 2001 +From 6e3d90979922e8eb967cf9198fdde7c722443206 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 @@ -16,10 +17,10 @@ 1 file changed, 3 deletions(-) diff --git a/examples/vhost/main.c b/examples/vhost/main.c -index 2175c1186..5d28d03f6 100644 +index 1f532fe3b..82660a673 100644 --- a/examples/vhost/main.c +++ b/examples/vhost/main.c -@@ -58,9 +58,6 @@ +@@ -87,9 +87,6 @@ /* Max number of devices. Limited by vmdq. */ #define MAX_DEVICES 64