]> git.proxmox.com Git - mirror_qemu.git/blame - hw/virtio/virtio-stub.c
hw/char/imx_serial: Implement receive FIFO and ageing timer
[mirror_qemu.git] / hw / virtio / virtio-stub.c
CommitLineData
a5ebce38
LV
1#include "qemu/osdep.h"
2#include "qapi/error.h"
3#include "qapi/qapi-commands-virtio.h"
4
5static void *qmp_virtio_unsupported(Error **errp)
6{
7 error_setg(errp, "Virtio is disabled");
8 return NULL;
9}
10
11VirtioInfoList *qmp_x_query_virtio(Error **errp)
12{
13 return qmp_virtio_unsupported(errp);
14}
90c066cd
LV
15
16VirtioStatus *qmp_x_query_virtio_status(const char *path, Error **errp)
17{
18 return qmp_virtio_unsupported(errp);
19}
07536ddd
LV
20
21VirtVhostQueueStatus *qmp_x_query_virtio_vhost_queue_status(const char *path,
22 uint16_t queue,
23 Error **errp)
24{
25 return qmp_virtio_unsupported(errp);
26}
27
28VirtQueueStatus *qmp_x_query_virtio_queue_status(const char *path,
29 uint16_t queue,
30 Error **errp)
31{
32 return qmp_virtio_unsupported(errp);
33}
1ee7bb5b
LV
34
35VirtioQueueElement *qmp_x_query_virtio_queue_element(const char *path,
36 uint16_t queue,
37 bool has_index,
38 uint16_t index,
39 Error **errp)
40{
41 return qmp_virtio_unsupported(errp);
42}