2016-01-29 18:49:52 +01:00
|
|
|
#include "qemu/osdep.h"
|
2015-10-06 10:37:27 +02:00
|
|
|
#include "hw/virtio/vhost.h"
|
2018-05-24 12:33:33 +02:00
|
|
|
#include "hw/virtio/vhost-user.h"
|
2015-10-06 10:37:27 +02:00
|
|
|
|
|
|
|
bool vhost_has_free_slot(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2018-05-24 12:33:33 +02:00
|
|
|
|
2019-03-08 15:04:45 +01:00
|
|
|
bool vhost_user_init(VhostUserState *user, CharBackend *chr, Error **errp)
|
2018-05-24 12:33:33 +02:00
|
|
|
{
|
2019-03-08 15:04:45 +01:00
|
|
|
return false;
|
2018-05-24 12:33:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void vhost_user_cleanup(VhostUserState *user)
|
|
|
|
{
|
|
|
|
}
|