[dpdk-dev] [PATCH v2 2/4] eal: modify device event callback process func

2018-10-02 Thread Jeff Guo
This patch modify the device event callback process function name to be more explicit, change the variable to be const. And more, because not only eal device helper will use the callback, but also vfio bus will use the callback to handle hot-unplug, so exposure the API out from private eal. The bus

Re: [dpdk-dev] [PATCH v2 2/4] eal: modify device event callback process func

2018-10-01 Thread Andrew Rybchenko
On 10/2/18 7:45 AM, Jeff Guo wrote: andrew, On 10/1/2018 5:46 PM, Andrew Rybchenko wrote: On 9/30/18 5:16 PM, Jeff Guo wrote: This patch modify the device event callback process function name to be more explicit, change the variable to be const and exposure the API out from private eal. The bu

Re: [dpdk-dev] [PATCH v2 2/4] eal: modify device event callback process func

2018-10-01 Thread Jeff Guo
andrew, On 10/1/2018 5:46 PM, Andrew Rybchenko wrote: On 9/30/18 5:16 PM, Jeff Guo wrote: This patch modify the device event callback process function name to be more explicit, change the variable to be const and exposure the API out from private eal. The bus drivers and eal device would direct

Re: [dpdk-dev] [PATCH v2 2/4] eal: modify device event callback process func

2018-10-01 Thread Andrew Rybchenko
On 9/30/18 5:16 PM, Jeff Guo wrote: This patch modify the device event callback process function name to be more explicit, change the variable to be const and exposure the API out from private eal. The bus drivers and eal device would directly use this API to process device event callback. Sorr

[dpdk-dev] [PATCH v2 2/4] eal: modify device event callback process func

2018-09-30 Thread Jeff Guo
This patch modify the device event callback process function name to be more explicit, change the variable to be const and exposure the API out from private eal. The bus drivers and eal device would directly use this API to process device event callback. Signed-off-by: Jeff Guo --- v2->v1: change