From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 942B83DC; Tue, 24 Apr 2018 07:59:45 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Apr 2018 22:59:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,321,1520924400"; d="scan'208";a="48575093" Received: from dpdk51.sh.intel.com ([10.67.110.184]) by fmsmga004.fm.intel.com with ESMTP; 23 Apr 2018 22:59:43 -0700 From: Qi Zhang To: wenzhuo.lu@intel.com, jingjing.wu@intel.com Cc: dev@dpdk.org, Qi Zhang , stable@dpdk.org Date: Tue, 24 Apr 2018 13:59:57 +0800 Message-Id: <20180424055957.221434-2-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: <20180424055957.221434-1-qi.z.zhang@intel.com> References: <20180424055957.221434-1-qi.z.zhang@intel.com> Subject: [dpdk-stable] [PATCH 2/2] app/testpmd: fix command token 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, 24 Apr 2018 05:59:46 -0000 Correct token for queue start stop command. Fixes: 5f4ec54f1d16 ("testpmd: queue start and stop") Cc: stable@dpdk.org Signed-off-by: Qi Zhang --- 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 99dc557a7..ebf6ffb22 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -2271,7 +2271,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.13.6