Re: [dpdk-dev] [PATCH 1/4] ether: support deferred queue setup

2018-02-12 Thread Thomas Monjalon
As a general comment, please review wording and explanations of this patchset. 12/02/2018 05:53, Qi Zhang: > +/** < Deferred queue setup / release capability */ > +#define DEV_DEFERRED_RX_QUEUE_SETUP 0x0001 > +#define DEV_DEFERRED_TX_QUEUE_SETUP 0x0002 > +#define DEV_DEFERRED_RX_QUEUE_RELE

[dpdk-dev] [PATCH 1/4] ether: support deferred queue setup

2018-02-11 Thread Qi Zhang
The patch let etherdev driver expose the capability flag through rte_eth_dev_info_get when it support deferred queue configuraiton, then base on the flag rte_eth_[rx|tx]_queue_setup could decide continue to setup the queue or just return fail when device already started. Signed-off-by: Qi Zhang -