Re: [dpdk-dev] [PATCH 1/2] vhost: fix lock on device readiness notification

2021-07-02 Thread Maxime Coquelin
On 5/28/21 10:11 AM, Jiayu Hu wrote: > The vhost notifies the application of device readiness via > vhost_user_notify_queue_state(), but calling this function > is not protected by the lock. This patch is to make this > function call lock protected. > > Fixes: d0fcc38f5fa4 ("vhost: improve devi

[dpdk-dev] [PATCH 1/2] vhost: fix lock on device readiness notification

2021-05-27 Thread Jiayu Hu
The vhost notifies the application of device readiness via vhost_user_notify_queue_state(), but calling this function is not protected by the lock. This patch is to make this function call lock protected. Fixes: d0fcc38f5fa4 ("vhost: improve device readiness notifications") Cc: sta...@dpdk.org Sig