Re: [dpdk-dev] [PATCH v2] vhost: fix missing virtqueue status check in async path

2020-07-21 Thread Ferruh Yigit
On 7/21/2020 9:36 AM, Maxime Coquelin wrote: > > > On 7/21/20 5:35 AM, patrick...@intel.com wrote: >> From: Patrick Fu >> >> Vring should not be touched if vq is disabled. This patch adds the vq >> status check in async enqueue polling to avoid accessing to a disabled >> queue. >> >> Fixes: cd67

Re: [dpdk-dev] [PATCH v2] vhost: fix missing virtqueue status check in async path

2020-07-21 Thread Maxime Coquelin
On 7/21/20 5:35 AM, patrick...@intel.com wrote: > From: Patrick Fu > > Vring should not be touched if vq is disabled. This patch adds the vq > status check in async enqueue polling to avoid accessing to a disabled > queue. > > Fixes: cd6760da1076 ("vhost: introduce async enqueue for split rin

[dpdk-dev] [PATCH v2] vhost: fix missing virtqueue status check in async path

2020-07-20 Thread patrick . fu
From: Patrick Fu Vring should not be touched if vq is disabled. This patch adds the vq status check in async enqueue polling to avoid accessing to a disabled queue. Fixes: cd6760da1076 ("vhost: introduce async enqueue for split ring") Signed-off-by: Patrick Fu --- v2: revise commit title li