From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 094093256 for ; Sun, 6 May 2018 08:38:04 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id A2363218EB; Sun, 6 May 2018 02:38:03 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Sun, 06 May 2018 02:38:03 -0400 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=fm2; bh=kDOGZs/lWpn8rp6F3 h0Zs35eKJI3zpDQ696Gt9H4mqU=; b=YVaeVmdsiKJYkzhr3kdbULynfAFzJyfdp mr56TlWVJpoZ/xES85nk2dJ61wZ7m6PrM8XXRC8qFsU2pHhEsjDLu3qeRO+bjVkv EZid6E2c0MCReODyfqdZykfjrqYHuxBfGsll0i5Wehqvsr9C4h7GL504OTX3IbBb /HAhohIx8Sc7FCDY0hzwE8F6eIWADUd6CNRR24csRvwfDe+/Wt4dtvHGV83ou5Aw VRt2jvIfYTfN23eBpLBKjSypy72oVOxq59P4hF8BeTVlVZf4gELsaQFU/o05iGzE oZumqEajnPRHFUacUBuV4PxKpm/qfgF/Xt4be6N1tvWYizdzupcDw== 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= fm2; bh=kDOGZs/lWpn8rp6F3h0Zs35eKJI3zpDQ696Gt9H4mqU=; b=RNvdqMRZ kuVv7SG/BdVORbIxhAWcp47IoGqRpFpiaiAOa3T5q3rRtQUq4gHd5hYSopgGhuNm nq47xtF4CAG4wbmUwK4YUG7YjRO45p0/zxnHiHcS+6/mSb2NsG1BJh6n1ez8k2Cg f/OqsfNats1W4h5Ti66ccE+O2W5Iir+aRXyeFlFqEF4BDa9hVPBTMf5HiJAd20cY PL6MpbmFrszCNFKhyjS+8gZp/OGvpS14b4nDDOaf46IMLjcVmeQSPNB/YuaHLyc2 h0EK4tP6QTT6hIQLtgL4FXYo8cw8p/Yn6Hppo7zzLtxUSHD4viyQ7rd6KXRmqpzs 8NeyOMpIBnJ0BQ== X-ME-Sender: Received: from yuanhanliu-NB0.tencent.com (unknown [223.74.148.102]) by mail.messagingengine.com (Postfix) with ESMTPA id D595F10253; Sun, 6 May 2018 02:38:01 -0400 (EDT) From: Yuanhan Liu To: Qi Zhang Cc: Ferruh Yigit , dpdk stable Date: Sun, 6 May 2018 14:36:34 +0800 Message-Id: <20180506063639.23196-21-yliu@fridaylinux.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180506063639.23196-1-yliu@fridaylinux.org> References: <20180506063639.23196-1-yliu@fridaylinux.org> Subject: [dpdk-stable] patch 'app/testpmd: fix command token' has been queued to LTS release 17.11.3 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: Sun, 06 May 2018 06:38:04 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.3 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 05/09/18. So please shout if anyone has objections. Thanks. --yliu --- >>From 9ade31d84dda22e9d8d817d3368b04eca5aacf50 Mon Sep 17 00:00:00 2001 From: Qi Zhang Date: Tue, 24 Apr 2018 13:59:57 +0800 Subject: [PATCH] app/testpmd: fix command token [ upstream commit 4c53d4eaf11551c69201b192a7da153d1d88a9a5 ] Correct token for queue start stop command. Fixes: 5f4ec54f1d16 ("testpmd: queue start and stop") Signed-off-by: Qi Zhang Reviewed-by: Ferruh Yigit --- app/test-pmd/cmdline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index b3c3f2419..77c11b841 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -2127,7 +2127,7 @@ cmdline_parse_inst_t cmd_config_rxtx_queue = { .data = NULL, .help_str = "port rxq|txq start|stop", .tokens = { - (void *)&cmd_config_speed_all_port, + (void *)&cmd_config_rxtx_queue_port, (void *)&cmd_config_rxtx_queue_portid, (void *)&cmd_config_rxtx_queue_rxtxq, (void *)&cmd_config_rxtx_queue_qid, -- 2.11.0