Re: [dpdk-dev] [PATCH v5 2/2] eal: add asynchronous request API to DPDK IPC

2018-03-26 Thread Burakov, Anatoly
On 26-Mar-18 3:15 PM, Tan, Jianfeng wrote: On 3/24/2018 8:46 PM, Anatoly Burakov wrote: This API is similar to the blocking API that is already present, but reply will be received in a separate callback by the caller (callback specified at the time of request, rather than registering for it in

Re: [dpdk-dev] [PATCH v5 2/2] eal: add asynchronous request API to DPDK IPC

2018-03-26 Thread Tan, Jianfeng
On 3/24/2018 8:46 PM, Anatoly Burakov wrote: This API is similar to the blocking API that is already present, but reply will be received in a separate callback by the caller (callback specified at the time of request, rather than registering for it in advance). Under the hood, we create a sepa

[dpdk-dev] [PATCH v5 2/2] eal: add asynchronous request API to DPDK IPC

2018-03-24 Thread Anatoly Burakov
This API is similar to the blocking API that is already present, but reply will be received in a separate callback by the caller (callback specified at the time of request, rather than registering for it in advance). Under the hood, we create a separate thread to deal with replies to asynchronous