virtio-console: rename dvq to ovq

It isn't obvious what 'dvq' stands for. Since it's the output queue and
the corresponding input queue is called 'ivq', call this 'ovq'

Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Amit Shah 2009-08-20 15:03:25 +05:30 committed by Anthony Liguori
parent 0f2065a19b
commit bf0cb498c5
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
typedef struct VirtIOConsole
{
VirtIODevice vdev;
VirtQueue *ivq, *dvq;
VirtQueue *ivq, *ovq;
CharDriverState *chr;
} VirtIOConsole;
@ -132,7 +132,7 @@ VirtIODevice *virtio_console_init(DeviceState *dev)
s->vdev.get_features = virtio_console_get_features;
s->ivq = virtio_add_queue(&s->vdev, 128, virtio_console_handle_input);
s->dvq = virtio_add_queue(&s->vdev, 128, virtio_console_handle_output);
s->ovq = virtio_add_queue(&s->vdev, 128, virtio_console_handle_output);
s->chr = qdev_init_chardev(dev);
qemu_chr_add_handlers(s->chr, vcon_can_read, vcon_read, vcon_event, s);