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