cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

vhost-stub.c (289B)


      1#include "qemu/osdep.h"
      2#include "hw/virtio/vhost.h"
      3#include "hw/virtio/vhost-user.h"
      4
      5bool vhost_has_free_slot(void)
      6{
      7    return true;
      8}
      9
     10bool vhost_user_init(VhostUserState *user, CharBackend *chr, Error **errp)
     11{
     12    return false;
     13}
     14
     15void vhost_user_cleanup(VhostUserState *user)
     16{
     17}