aboutsummaryrefslogtreecommitdiff
path: root/hw/virtio/vhost-stub.c
blob: c175148fceb12fbd7ad475b1b9501349cc5be8cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "qemu/osdep.h"
#include "hw/virtio/vhost.h"
#include "hw/virtio/vhost-user.h"

bool vhost_has_free_slot(void)
{
    return true;
}

bool vhost_user_init(VhostUserState *user, CharBackend *chr, Error **errp)
{
    return false;
}

void vhost_user_cleanup(VhostUserState *user)
{
}