RE: [PATCH v2 3/3] ethdev: document special cases of port start and stop

2022-11-14 Thread Dariusz Sosnowski
t;> Sent: Monday, November 14, 2022 15:08 > >> To: Dariusz Sosnowski ; Aman Singh > >> ; Yuying Zhang > ; > >> NBU-Contact-Thomas Monjalon (EXTERNAL) ; > Andrew > >> Rybchenko > >> Cc: dev@dpdk.org > >> Subject: Re: [PATCH v2 3/3] ethdev: doc

Re: [PATCH v2 3/3] ethdev: document special cases of port start and stop

2022-11-14 Thread Ferruh Yigit
3/3] ethdev: document special cases of port start and stop External email: Use caution opening links or attachments On 11/9/2022 7:06 PM, Dariusz Sosnowski wrote: This patch clarifies the handling of following cases in the ethdev API docs: - If rte_eth_dev_start() returns (-EAGAIN) for some

RE: [PATCH v2 3/3] ethdev: document special cases of port start and stop

2022-11-14 Thread Dariusz Sosnowski
Hi Ferruh, > -Original Message- > From: Ferruh Yigit > Sent: Monday, November 14, 2022 15:08 > To: Dariusz Sosnowski ; Aman Singh > ; Yuying Zhang ; > NBU-Contact-Thomas Monjalon (EXTERNAL) ; > Andrew Rybchenko > Cc: dev@dpdk.org > Subject: Re: [PATCH v2 3/

Re: [PATCH v2 3/3] ethdev: document special cases of port start and stop

2022-11-14 Thread Ferruh Yigit
On 11/9/2022 7:06 PM, Dariusz Sosnowski wrote: This patch clarifies the handling of following cases in the ethdev API docs: - If rte_eth_dev_start() returns (-EAGAIN) for some port, it cannot be started until other port is started. - If rte_eth_dev_stop() returns (-EBUSY) for some port, it

[PATCH v2 3/3] ethdev: document special cases of port start and stop

2022-11-09 Thread Dariusz Sosnowski
This patch clarifies the handling of following cases in the ethdev API docs: - If rte_eth_dev_start() returns (-EAGAIN) for some port, it cannot be started until other port is started. - If rte_eth_dev_stop() returns (-EBUSY) for some port, it cannot be stopped until other port is stopped. Wh