Re: [dpdk-dev] [PATCH v6 1/6] ethdev: add devop to check removal status

2018-01-18 Thread Matan Azrad
Hi Ferruh From: Ferruh Yigit, Thursday, January 18, 2018 7:18 PM > On 1/18/2018 11:27 AM, Matan Azrad wrote: > > There is time between the physical removal of the device until PMDs > > get a RMV interrupt. At this time DPDK PMDs and applications still > > don't know about the removal. > > > > Curr

Re: [dpdk-dev] [PATCH v6 1/6] ethdev: add devop to check removal status

2018-01-18 Thread Adrien Mazarguil
On Thu, Jan 18, 2018 at 05:18:22PM +, Ferruh Yigit wrote: > On 1/18/2018 11:27 AM, Matan Azrad wrote: > > There is time between the physical removal of the device until PMDs get > > a RMV interrupt. At this time DPDK PMDs and applications still don't > > know about the removal. > > > > Current

Re: [dpdk-dev] [PATCH v6 1/6] ethdev: add devop to check removal status

2018-01-18 Thread Ferruh Yigit
On 1/18/2018 11:27 AM, Matan Azrad wrote: > There is time between the physical removal of the device until PMDs get > a RMV interrupt. At this time DPDK PMDs and applications still don't > know about the removal. > > Current removal detection is achieved only by registration to device RMV > event

[dpdk-dev] [PATCH v6 1/6] ethdev: add devop to check removal status

2018-01-18 Thread Matan Azrad
There is time between the physical removal of the device until PMDs get a RMV interrupt. At this time DPDK PMDs and applications still don't know about the removal. Current removal detection is achieved only by registration to device RMV event and the notification comes asynchronously. So, there i