Re: [PATCH net v2] virtio_net: fix missing lock protection on control_buf access

2024-06-01 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (main) by Jakub Kicinski : On Thu, 30 May 2024 11:41:43 +0800 you wrote: > Refactored the handling of control_buf to be within the cvq_lock > critical section, mitigating race conditions between reading device > responses and new command submissions

Re: [PATCH net v2] virtio_net: fix missing lock protection on control_buf access

2024-05-29 Thread Xuan Zhuo
On Thu, 30 May 2024 11:41:43 +0800, Heng Qi wrote: > Refactored the handling of control_buf to be within the cvq_lock > critical section, mitigating race conditions between reading device > responses and new command submissions. > > Fixes: 6f45ab3e0409 ("virtio_net: Add a lock for the command VQ."

Re: [PATCH net v2] virtio_net: fix missing lock protection on control_buf access

2024-05-29 Thread Jason Wang
On Thu, May 30, 2024 at 11:41 AM Heng Qi wrote: > > Refactored the handling of control_buf to be within the cvq_lock > critical section, mitigating race conditions between reading device > responses and new command submissions. > > Fixes: 6f45ab3e0409 ("virtio_net: Add a lock for the command VQ.")

[PATCH net v2] virtio_net: fix missing lock protection on control_buf access

2024-05-29 Thread Heng Qi
Refactored the handling of control_buf to be within the cvq_lock critical section, mitigating race conditions between reading device responses and new command submissions. Fixes: 6f45ab3e0409 ("virtio_net: Add a lock for the command VQ.") Signed-off-by: Heng Qi Reviewed-by: Hariprasad Kelam ---