Re: [dpdk-dev] [PATCH v12 00/19] enable hotplug on multi-process

2018-07-12 Thread Thomas Monjalon
12/07/2018 11:11, Zhang, Qi Z: > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > 12/07/2018 03:14, Qi Zhang: > > > v13: > > > - Since rte_eth_dev_attach/rte_eth_dev_detach will be deprecated, > > > so, modify the sample code to use rte_eal_hotplug_add and > > > rte_eal_hotplug_remove to

Re: [dpdk-dev] [PATCH v12 00/19] enable hotplug on multi-process

2018-07-12 Thread Zhang, Qi Z
in H ; Vangati, Narender > > Subject: Re: [dpdk-dev] [PATCH v12 00/19] enable hotplug on multi-process > > 12/07/2018 03:14, Qi Zhang: > > v13: > > - Since rte_eth_dev_attach/rte_eth_dev_detach will be deprecated, > > so, modify the sample code to use rte_eal_hotplug_add an

Re: [dpdk-dev] [PATCH v12 00/19] enable hotplug on multi-process

2018-07-12 Thread Thomas Monjalon
12/07/2018 03:14, Qi Zhang: > v13: > - Since rte_eth_dev_attach/rte_eth_dev_detach will be deprecated, > so, modify the sample code to use rte_eal_hotplug_add and > rte_eal_hotplug_remove to attach/detach device. Yes, this is what I tried to explain you. I think it is now too late for 18.08.

[dpdk-dev] [PATCH v12 00/19] enable hotplug on multi-process

2018-07-11 Thread Qi Zhang
v13: - Since rte_eth_dev_attach/rte_eth_dev_detach will be deprecated, so, modify the sample code to use rte_eal_hotplug_add and rte_eal_hotplug_remove to attach/detach device. v12: - fix return value in eal_dev_hotplug_request_to_primary. - add more error log in rte_eal_hotplug_add. - fix ret

[dpdk-dev] [PATCH v12 00/19] enable hotplug on multi-process

2018-07-11 Thread Qi Zhang
v13: - Since rte_eth_dev_attach/rte_eth_dev_detach will be deprecated, so, modify the sample code to use rte_eal_hotplug_add and rte_eal_hotplug_remove to attach/detach device. v12: - fix return value in eal_dev_hotplug_request_to_primary. - add more error log in rte_eal_hotplug_add. - fix ret

[dpdk-dev] [PATCH v12 00/19] enable hotplug on multi-process

2018-07-11 Thread Qi Zhang
v12: - fix return value in eal_dev_hotplug_request_to_primary. - add more error log in rte_eal_hotplug_add. - fix return value in rte_eal_hotplug_add and rte_eal_hotplug_remove any failure due to IPC error will return -ENOMSG, but not -1. - remove unnecessary changes from previous rework. v11: -