Re: [dpdk-dev] [PATCH V20 4/4] app/testpmd: show example to handler hot unplug

2018-05-03 Thread Matan Azrad
Hi Guo From: Guo, Jia, Thursday, May 3, 2018 12:36 PM > hi, matan > > > On 5/3/2018 3:25 PM, Matan Azrad wrote: > > Hi Jeff > > > >> From: Jeff Guo, Wednesday, April 18, 2018 4:38 PM Use testpmd for > >> example, to show how an application smoothly handle failure when > >> device being hot unplu

Re: [dpdk-dev] [PATCH V20 4/4] app/testpmd: show example to handler hot unplug

2018-05-03 Thread Guo, Jia
hi, matan On 5/3/2018 3:25 PM, Matan Azrad wrote: Hi Jeff From: Jeff Guo, Wednesday, April 18, 2018 4:38 PM Use testpmd for example, to show how an application smoothly handle failure when device being hot unplug. Once app detect the removal event, the callback would be called, it first stop

Re: [dpdk-dev] [PATCH V20 4/4] app/testpmd: show example to handler hot unplug

2018-05-03 Thread Matan Azrad
Hi Jeff > From: Jeff Guo, Wednesday, April 18, 2018 4:38 PM > Use testpmd for example, to show how an application smoothly handle > failure when device being hot unplug. Once app detect the removal event, > the callback would be called, it first stop the packet forwarding, then stop > the > port,

[dpdk-dev] [PATCH V20 4/4] app/testpmd: show example to handler hot unplug

2018-04-18 Thread Jeff Guo
Use testpmd for example, to show how an application smoothly handle failure when device being hot unplug. Once app detect the removal event, the callback would be called, it first stop the packet forwarding, then stop the port, close the port and finally detach the port. Signed-off-by: Jeff Guo -