]> git.proxmox.com Git - mirror_qemu.git/blame - hw/virtio/vhost-stub.c
Merge tag 'pull-ufs-20231013' of https://gitlab.com/jeuk20.kim/qemu into staging
[mirror_qemu.git] / hw / virtio / vhost-stub.c
CommitLineData
87c9b5e0 1#include "qemu/osdep.h"
2ce68e4c 2#include "hw/virtio/vhost.h"
4d0cf552 3#include "hw/virtio/vhost-user.h"
2ce68e4c 4
cd89c065
DH
5unsigned int vhost_get_max_memslots(void)
6{
7 return UINT_MAX;
8}
9
8c49951c 10unsigned int vhost_get_free_memslots(void)
2ce68e4c 11{
8c49951c 12 return UINT_MAX;
2ce68e4c 13}
4d0cf552 14
0b99f224 15bool vhost_user_init(VhostUserState *user, CharBackend *chr, Error **errp)
4d0cf552 16{
0b99f224 17 return false;
4d0cf552
TB
18}
19
20void vhost_user_cleanup(VhostUserState *user)
21{
22}
ee071f67
VP
23
24void vhost_toggle_device_iotlb(VirtIODevice *vdev)
25{
26}