Re: [dpdk-dev] [PATCH v6 2/2] eal: add synchronous multi-process communication

2018-01-26 Thread Burakov, Anatoly
On 26-Jan-18 3:41 AM, Jianfeng Tan wrote: We need the synchronous way for multi-process communication, i.e., blockingly waiting for reply message when we send a request to the peer process. We add two APIs rte_eal_mp_request() and rte_eal_mp_reply() for such use case. By invoking rte_eal_mp_requ

[dpdk-dev] [PATCH v6 2/2] eal: add synchronous multi-process communication

2018-01-25 Thread Jianfeng Tan
We need the synchronous way for multi-process communication, i.e., blockingly waiting for reply message when we send a request to the peer process. We add two APIs rte_eal_mp_request() and rte_eal_mp_reply() for such use case. By invoking rte_eal_mp_request(), a request message is sent out, and th