Re: [dpdk-dev] [PATCH v6 2/3] app/testpmd: add command for queue setup

2018-04-22 Thread Zhang, Qi Z
Hi Ferruh: > -Original Message- > From: Yigit, Ferruh > Sent: Friday, April 20, 2018 7:30 PM > To: Zhang, Qi Z ; tho...@monjalon.net; Ananyev, > Konstantin > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: Re: [dpdk-dev] [PATCH v6 2/3]

Re: [dpdk-dev] [PATCH v6 2/3] app/testpmd: add command for queue setup

2018-04-20 Thread Ferruh Yigit
On 4/8/2018 3:42 AM, Qi Zhang wrote: > Add new command to setup queue: > queue setup (rx|tx) (port_id) (queue_idx) (ring_size) (offloads) My almost classic comment for testpmd: Do we need a new high level command "queue setup" for this. Can't we extend existing port/queue setting commands for the

[dpdk-dev] [PATCH v6 2/3] app/testpmd: add command for queue setup

2018-04-07 Thread Qi Zhang
Add new command to setup queue: queue setup (rx|tx) (port_id) (queue_idx) (ring_size) (offloads) rte_eth_[rx|tx]_queue_setup will be called corresponsively Signed-off-by: Qi Zhang Acked-by: Konstantin Ananyev --- v6: - fix error message for rx_free_thresh check. v5: - fix command description.