Re: 回复: 回复: [PATCH v3] vhost: add notify reply ops to fix message deadlock

2023-07-12 Thread Maxime Coquelin
with? Regards, Maxime Thanks. Best wishes, Rma ---------------- *发件人:* Rma Ma *发送时间:* 2023年7月4日 10:52 *收件人:* dpdk-dev *抄送:* Maxime Coquelin ; Chenbo Xia ; Rma Ma *主题:* [PATCH v3] vhost: add notify reply ops to fix message deadlock S

回复: 回复: [PATCH v3] vhost: add notify reply ops to fix message deadlock

2023-07-11 Thread Rma Ma
and other backend messages take this into account, so I think this message also needs a flag to fix it. and jmnd vdpa driver will subsequently be open-sourced to the community. Best wishes, Rma ____________ 发件人: Maxime Coquelin 发送时间: 2023年7月11日 21:25 收件人: Rma Ma ; dp

Re: 回复: [PATCH v3] vhost: add notify reply ops to fix message deadlock

2023-07-11 Thread Maxime Coquelin
enbo Xia ; Rma Ma *主题:* [PATCH v3] vhost: add notify reply ops to fix message deadlock Since backend and frontend message are synchronous in the same thread, there will be a probability of message deadlock. Consider each driver to determine whether to wait for response. Fixes: d90cf

回复: [PATCH v3] vhost: add notify reply ops to fix message deadlock

2023-07-11 Thread Rma Ma
: 2023年7月4日 10:52 收件人: dpdk-dev 抄送: Maxime Coquelin ; Chenbo Xia ; Rma Ma 主题: [PATCH v3] vhost: add notify reply ops to fix message deadlock Since backend and frontend message are synchronous in the same thread, there will be a probability of message deadlock. Consider each driver to det

[PATCH v3] vhost: add notify reply ops to fix message deadlock

2023-07-03 Thread Rma Ma
Since backend and frontend message are synchronous in the same thread, there will be a probability of message deadlock. Consider each driver to determine whether to wait for response. Fixes: d90cf7d111ac ("vhost: support host notifier") Cc: maxime.coque...@redhat.com Signed-off-by: Rma Ma --- v2