Re: [dpdk-dev] [PATCH 2/2] ipc: fix timeout not properly handled in async

2018-04-20 Thread Burakov, Anatoly
On 20-Apr-18 2:21 AM, Jianfeng Tan wrote: In original implementation, timeout event for an async request will be ignored. As a result, an async request will never trigger the action if it cannot receive any reply any more. We fix this by counting timeout as a processed reply. Fixes: f05e26051c1

Re: [dpdk-dev] [PATCH 2/2] ipc: fix timeout not properly handled in async

2018-04-19 Thread Tan, Jianfeng
> -Original Message- > From: Tan, Jianfeng > Sent: Friday, April 20, 2018 9:22 AM > To: dev@dpdk.org > Cc: tho...@monjalon.net; Burakov, Anatoly; Tan, Jianfeng > Subject: [PATCH 2/2] ipc: fix timeout not properly handled in async > > In original implementation, timeout event for an async

[dpdk-dev] [PATCH 2/2] ipc: fix timeout not properly handled in async

2018-04-19 Thread Jianfeng Tan
In original implementation, timeout event for an async request will be ignored. As a result, an async request will never trigger the action if it cannot receive any reply any more. We fix this by counting timeout as a processed reply. Fixes: f05e26051c15 ("eal: add IPC asynchronous request") Sig