From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f65.google.com (mail-wm1-f65.google.com [209.85.128.65]) by dpdk.org (Postfix) with ESMTP id CC9111B110 for ; Thu, 27 Sep 2018 10:44:18 +0200 (CEST) Received: by mail-wm1-f65.google.com with SMTP id y3-v6so2821583wma.1 for ; Thu, 27 Sep 2018 01:44:18 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=moYVcHcnSHjH3h8NhWUlIPR6PdqLkGdqM2mOGIi625w=; b=Dzna1GUBASq3Z3i2xYAModLZSTur7bpttddUIPwQvDw51QFD7HGVdYDItPn8Sm3kh9 btocgfakTFY12g+DnrYj6LKvbdYH5gx+h+G3gILWRA1fJDvWdIypzmidIHw8jic1R3nn 4Q/ONN5MFnZ9fMlkAQtrKUgGYWIgRqD2DBRg6RhPq6N74pQW5bm0ipO1oy1Nz/57ywKX OsnxTL4Xh9R70/7/PbMuKaEc1sesekjAJFdB+BPFxWagCnnsxGCqB4osdCTA8MYtc4Bb 8iTFfCKjahmaY67ROMwykU25nYiJ1R44pU2HCKkmN5WR9WSXrE7bdaKoEwj8p2SdxH+6 kbCg== X-Gm-Message-State: ABuFfojMVXKlhr2LWysWN1GiohUZPSsZ8zQBCVvF+wwr0fkgHqaJh+Ql 4uPPJBqoiKdzh281cmxGXJGbJHIw X-Google-Smtp-Source: ACcGV63jfDOQMbmawTY4AaU746VSFteZCG9cuvxNh7qh5iib6FmcSckC8KkgCZG0PMmHmYyG3b6NLQ== X-Received: by 2002:a1c:958d:: with SMTP id x135-v6mr947260wmd.46.1538037858396; Thu, 27 Sep 2018 01:44:18 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id g75-v6sm2426900wrd.1.2018.09.27.01.44.17 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 27 Sep 2018 01:44:17 -0700 (PDT) From: Luca Boccassi To: Rami Rosen Cc: Tiwei Bie , dpdk stable Date: Thu, 27 Sep 2018 09:43:59 +0100 Message-Id: <20180927084403.19646-4-bluca@debian.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180927084403.19646-1-bluca@debian.org> References: <20180927084403.19646-1-bluca@debian.org> Subject: [dpdk-stable] patch 'examples/vhost: remove unnecessary constant' has been queued to LTS release 16.11.9 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, 27 Sep 2018 08:44:18 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.9 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 09/27/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. Luca Boccassi --- >>From 143430e947d745c42a20932c36950dd79a07382e 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 fe2327473d..89d21fc022 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.18.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-09-25 13:26:56.868552864 +0100 +++ 0004-examples-vhost-remove-unnecessary-constant.patch 2018-09-25 13:26:56.775424702 +0100 @@ -1,13 +1,14 @@ -From b24ec9bc1c43f7cada0b16709043f84f52f2b895 Mon Sep 17 00:00:00 2001 +From 143430e947d745c42a20932c36950dd79a07382e 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 2175c11864..5d28d03f63 100644 +index fe2327473d..89d21fc022 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