From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id C0BD723A for ; Tue, 21 Nov 2017 14:31:26 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 6B2AA20921; Tue, 21 Nov 2017 08:31:26 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Tue, 21 Nov 2017 08:31:26 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=BdJ3z2OEHhGdfnBYv 0DLLtwIYg7KIdh/PZO+Nqj+ljM=; b=LiNB/R8uR0fEDDz574tOS5DrsZ01ABFJl 83DS7BFfwTzGzvOY/AH9aD5cBsYr1S6qvQds8++n27oDT6SciZu0N3NcYu5buZz6 IHbwNQS8gGEoehVmax/5qUnWMEuCWLvfNUdLs+WqVRYM7A8QnCCXob/GNB/khqHi Wi6/CMharEoRjhtI/OHoyXB6PQ/7PUQWBxDYKXsVA4kUhfubdUUEm3QK2k7OBIOW +nyfuyFRbCM3HUtYxNujYYKPtCpL4PiKWrcTvyZ3BeorcGi00uwh77aFwB8g08G7 jGoYiufqy23jhOiLBJkoNG95xCX1EZdQXO/Ln4+ZqeHQC+GwvChTw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=BdJ3z2OEHhGdfnBYv0DLLtwIYg7KIdh/PZO+Nqj+ljM=; b=X8nTHn4M KK2KRErsSbX8lOI5lRrg7RkV6UUZt5aIO2mXvPq+Z6O4rzMmNmirlfykRusbc/GX A02gcKiAfvqZDwlTZAUDbVTFzULJZyDJHaMr8cNxE8HBg/LY6O0vJporFa6oHhVh 9Ed6Ud7+J0SvdBL+TQ5rZMDacALr9CmUxaz3zz4hksX8zCFRfJccqmSozsAU8Nsn iTx/H7BrZtVRwcqkfhxIHW+8IU98yCvuWCk0iiBaJxtIVlTkp643KuckLEai3aeg 4dmRoRcVMk9bSPcK2cZ5iQz4VBnjSejUHLtLtdo/e9AkJ6izuep1ilFlMK6wxVsz EaxTy2Rvt/ii1g== X-ME-Sender: Received: from localhost.localdomain (unknown [180.158.62.0]) by mail.messagingengine.com (Postfix) with ESMTPA id C95F324631; Tue, 21 Nov 2017 08:31:23 -0500 (EST) From: Yuanhan Liu To: Pablo de Lara Cc: dpdk stable Date: Tue, 21 Nov 2017 21:18:49 +0800 Message-Id: <1511270333-31002-187-git-send-email-yliu@fridaylinux.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1511270333-31002-1-git-send-email-yliu@fridaylinux.org> References: <1511270333-31002-1-git-send-email-yliu@fridaylinux.org> Subject: [dpdk-stable] patch 'app/testpmd: fix topology error message' has been queued to stable release 17.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, 21 Nov 2017 13:31:27 -0000 Hi, FYI, your patch has been queued to stable release 17.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/24/17. So please shout if anyone has objections. Thanks. --yliu --- >>From c1fac88ae881fb72f114ec11c809b266cd7d8272 Mon Sep 17 00:00:00 2001 From: Pablo de Lara Date: Tue, 7 Nov 2017 18:11:26 +0000 Subject: [PATCH] app/testpmd: fix topology error message [ upstream commit 7535883327ad37b0631edd6ae1a3315400a6b95b ] Fixes: 3e2006d6186c ("app/testpmd: add loopback topology") Signed-off-by: Pablo de Lara --- app/test-pmd/parameters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-pmd/parameters.c b/app/test-pmd/parameters.c index 31023fe..1035f80 100644 --- a/app/test-pmd/parameters.c +++ b/app/test-pmd/parameters.c @@ -936,7 +936,7 @@ launch_args_parse(int argc, char** argv) port_topology = PORT_TOPOLOGY_LOOP; else rte_exit(EXIT_FAILURE, "port-topology %s invalid -" - " must be: paired or chained \n", + " must be: paired, chained or loop\n", optarg); } if (!strcmp(lgopts[opt_idx].name, "forward-mode")) -- 2.7.4