[dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-01-28 Thread Kalesh A P
From: Kalesh AP Adding support for the device reset and recovery events in the rte_eth_event framework. FW error and FW reset conditions would be managed internally by the PMD without needing application intervention. In such cases, PMD would need reset/recovery events to notify application that

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-05-24 Thread Ray Kinsella
fengchengwen writes: > Hi all, > > This patch lasts for a long time. Are we waiting for 22.11 to deal with it? That was my read, as can't reliably change the value of _MAX at this stage without it having impact elsewhere. > We have the same requirements for the reset or recovery mechani

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-01 Thread Ferruh Yigit
On 1/28/2022 12:48 PM, Kalesh A P wrote: From: Kalesh AP Adding support for the device reset and recovery events in the rte_eth_event framework. FW error and FW reset conditions would be managed internally by the PMD without needing application intervention. In such cases, PMD would need reset/

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-01 Thread Ferruh Yigit
On 1/28/2022 12:48 PM, Kalesh A P wrote: From: Kalesh AP Adding support for the device reset and recovery events in the rte_eth_event framework. FW error and FW reset conditions would be managed internally by the PMD without needing application intervention. In such cases, PMD would need reset/

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-01 Thread Kalesh Anakkur Purayil
Thank you Ferruh for the review. Please see inline. On Tue, Feb 1, 2022 at 5:41 PM Ferruh Yigit wrote: > On 1/28/2022 12:48 PM, Kalesh A P wrote: > > From: Kalesh AP > > > > Adding support for the device reset and recovery events in the > > rte_eth_event framework. FW error and FW reset conditi

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-01 Thread Ferruh Yigit
On 2/1/2022 1:09 PM, Kalesh Anakkur Purayil wrote: Thank you Ferruh for the review. Please see inline. On Tue, Feb 1, 2022 at 5:41 PM Ferruh Yigit mailto:ferruh.yi...@intel.com>> wrote: On 1/28/2022 12:48 PM, Kalesh A P wrote: > From: Kalesh AP mailto:kalesh-anakkur.pura...@broadcom.co

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-02 Thread Ray Kinsella
Ferruh Yigit writes: > On 1/28/2022 12:48 PM, Kalesh A P wrote: >> From: Kalesh AP >> Adding support for the device reset and recovery events in the >> rte_eth_event framework. FW error and FW reset conditions would be >> managed internally by the PMD without needing application intervention.

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-03 Thread Ajit Khaparde
On Tue, Feb 1, 2022 at 5:20 AM Ferruh Yigit wrote: > > On 2/1/2022 1:09 PM, Kalesh Anakkur Purayil wrote: > > Thank you Ferruh for the review. Please see inline. > > > > On Tue, Feb 1, 2022 at 5:41 PM Ferruh Yigit > > wrote: > > > > On 1/28/2022 12:48 PM, Kalesh

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-10 Thread Thomas Monjalon
02/02/2022 12:44, Ray Kinsella: > Ferruh Yigit writes: > > On 1/28/2022 12:48 PM, Kalesh A P wrote: > >> --- a/lib/ethdev/rte_ethdev.h > >> +++ b/lib/ethdev/rte_ethdev.h > >> @@ -3818,6 +3818,24 @@ enum rte_eth_event_type { > >>RTE_ETH_EVENT_DESTROY, /**< port is released */ > >>RTE_ETH_E

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-10 Thread Thomas Monjalon
03/02/2022 21:28, Ajit Khaparde: > On Tue, Feb 1, 2022 at 5:20 AM Ferruh Yigit wrote: > > On 2/1/2022 1:09 PM, Kalesh Anakkur Purayil wrote: > > > On Tue, Feb 1, 2022 at 5:41 PM Ferruh Yigit > > > wrote: > > > On 1/28/2022 12:48 PM, Kalesh A P wrote: > > >

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-11 Thread Ray Kinsella
Thomas Monjalon writes: > 02/02/2022 12:44, Ray Kinsella: >> Ferruh Yigit writes: >> > On 1/28/2022 12:48 PM, Kalesh A P wrote: >> >> --- a/lib/ethdev/rte_ethdev.h >> >> +++ b/lib/ethdev/rte_ethdev.h >> >> @@ -3818,6 +3818,24 @@ enum rte_eth_event_type { >> >> RTE_ETH_EVENT_DESTROY,

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-14 Thread Ray Kinsella
Ray Kinsella writes: > Thomas Monjalon writes: > >> 02/02/2022 12:44, Ray Kinsella: >>> Ferruh Yigit writes: >>> > On 1/28/2022 12:48 PM, Kalesh A P wrote: >>> >> --- a/lib/ethdev/rte_ethdev.h >>> >> +++ b/lib/ethdev/rte_ethdev.h >>> >> @@ -3818,6 +3818,24 @@ enum rte_eth_event_type { >>> >>

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-14 Thread Thomas Monjalon
14/02/2022 11:16, Ray Kinsella: > Ray Kinsella writes: > > Thomas Monjalon writes: > >> 02/02/2022 12:44, Ray Kinsella: > >>> Ferruh Yigit writes: > >>> > On 1/28/2022 12:48 PM, Kalesh A P wrote: > >>> >> --- a/lib/ethdev/rte_ethdev.h > >>> >> +++ b/lib/ethdev/rte_ethdev.h > >>> >> @@ -3818,6 +3

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-14 Thread Ray Kinsella
Thomas Monjalon writes: > 14/02/2022 11:16, Ray Kinsella: >> Ray Kinsella writes: >> > Thomas Monjalon writes: >> >> 02/02/2022 12:44, Ray Kinsella: >> >>> Ferruh Yigit writes: >> >>> > On 1/28/2022 12:48 PM, Kalesh A P wrote: >> >>> >> --- a/lib/ethdev/rte_ethdev.h >> >>> >> +++ b/lib/ethde

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-14 Thread Thomas Monjalon
14/02/2022 17:06, Ray Kinsella: > Thomas Monjalon writes: > > 14/02/2022 11:16, Ray Kinsella: > >> Ray Kinsella writes: > >> > Thomas Monjalon writes: > >> >> 02/02/2022 12:44, Ray Kinsella: > >> >>> Ferruh Yigit writes: > >> >>> > On 1/28/2022 12:48 PM, Kalesh A P wrote: > >> >>> >> --- a/lib/

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-14 Thread Ray Kinsella
Thomas Monjalon writes: > 14/02/2022 17:06, Ray Kinsella: >> Thomas Monjalon writes: >> > 14/02/2022 11:16, Ray Kinsella: >> >> Ray Kinsella writes: >> >> > Thomas Monjalon writes: >> >> >> 02/02/2022 12:44, Ray Kinsella: >> >> >>> Ferruh Yigit writes: >> >> >>> > On 1/28/2022 12:48 PM, Kal

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-15 Thread Ray Kinsella
Ray Kinsella writes: > Thomas Monjalon writes: > >> 14/02/2022 17:06, Ray Kinsella: >>> Thomas Monjalon writes: >>> > 14/02/2022 11:16, Ray Kinsella: >>> >> Ray Kinsella writes: >>> >> > Thomas Monjalon writes: >>> >> >> 02/02/2022 12:44, Ray Kinsella: >>> >> >>> Ferruh Yigit writes: >>> >

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-15 Thread Thomas Monjalon
15/02/2022 14:55, Ray Kinsella: > Ray Kinsella writes: > > Thomas Monjalon writes: > >> 14/02/2022 17:06, Ray Kinsella: > >>> Thomas Monjalon writes: > >>> > 14/02/2022 11:16, Ray Kinsella: > >>> >> Ray Kinsella writes: > >>> >> > Thomas Monjalon writes: > >>> >> >> We never know how this enum

Re: [dpdk-dev] [PATCH v7 1/4] ethdev: support device reset and recovery events

2022-02-15 Thread Ray Kinsella
Thomas Monjalon writes: > 15/02/2022 14:55, Ray Kinsella: >> Ray Kinsella writes: >> > Thomas Monjalon writes: >> >> 14/02/2022 17:06, Ray Kinsella: >> >>> Thomas Monjalon writes: >> >>> > 14/02/2022 11:16, Ray Kinsella: >> >>> >> Ray Kinsella writes: >> >>> >> > Thomas Monjalon writes: >>