mirror of
https://passt.top/passt
synced 2025-02-22 10:52:21 +00:00
vhost_user: Clear ring address on GET_VRING_BASE
GET_VRING_BASE stops the queue, clearing the call and kick fds. However, we don't clear vring.avail. That means that if vu_queue_notify() is called it won't realise the queue isn't ready and will die with an EBADFD. We get this during migration, because for some reason, qemu reconfigures the vhost-user device when a migration is triggered. There's a window between the GET_VRING_BASE and re-establishing the call fd where the notify function can be called, causing a crash. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
71249ef3f9
commit
7c33b12086
@ -732,6 +732,7 @@ static bool vu_get_vring_base_exec(struct vu_dev *vdev,
|
||||
msg->hdr.size = sizeof(msg->payload.state);
|
||||
|
||||
vdev->vq[idx].started = false;
|
||||
vdev->vq[idx].vring.avail = 0;
|
||||
|
||||
if (vdev->vq[idx].call_fd != -1) {
|
||||
close(vdev->vq[idx].call_fd);
|
||||
|
Loading…
x
Reference in New Issue
Block a user