mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
virtio: generation counter support
Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
dfb8e184db
commit
b8f059081d
3 changed files with 3 additions and 1 deletions
|
@ -977,7 +977,7 @@ static uint64_t virtio_pci_common_read(void *opaque, hwaddr addr,
|
||||||
val = vdev->status;
|
val = vdev->status;
|
||||||
break;
|
break;
|
||||||
case VIRTIO_PCI_COMMON_CFGGENERATION:
|
case VIRTIO_PCI_COMMON_CFGGENERATION:
|
||||||
val = 0; /* TODO */
|
val = vdev->generation;
|
||||||
break;
|
break;
|
||||||
case VIRTIO_PCI_COMMON_Q_SELECT:
|
case VIRTIO_PCI_COMMON_Q_SELECT:
|
||||||
val = vdev->queue_sel;
|
val = vdev->queue_sel;
|
||||||
|
|
|
@ -930,6 +930,7 @@ void virtio_notify_config(VirtIODevice *vdev)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
vdev->isr |= 0x03;
|
vdev->isr |= 0x03;
|
||||||
|
vdev->generation++;
|
||||||
virtio_notify_vector(vdev, vdev->config_vector);
|
virtio_notify_vector(vdev, vdev->config_vector);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -78,6 +78,7 @@ struct VirtIODevice
|
||||||
size_t config_len;
|
size_t config_len;
|
||||||
void *config;
|
void *config;
|
||||||
uint16_t config_vector;
|
uint16_t config_vector;
|
||||||
|
uint32_t generation;
|
||||||
int nvectors;
|
int nvectors;
|
||||||
VirtQueue *vq;
|
VirtQueue *vq;
|
||||||
uint16_t device_id;
|
uint16_t device_id;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue