diff options
author | Cam Macdonell <cam@cs.ualberta.ca> | 2010-08-14 17:47:30 -0600 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-08-15 09:44:47 +0000 |
commit | 1fd74012750dcd8542708bdcc10becb8780f7493 (patch) | |
tree | 531b298fdde41d5398087f3c25716a1f0b83e698 /kvm-stub.c | |
parent | b1d6d51d958bc98f5b6faa4d1d527c785a9ba7d6 (diff) |
Add kvm_set_ioeventfd_mmio_long definition for non-KVM systems
Signed-off-by: Cam Macdonell <cam@cs.ualberta.ca>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'kvm-stub.c')
-rw-r--r-- | kvm-stub.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kvm-stub.c b/kvm-stub.c index 3378bd3b2..d45f9fa1d 100644 --- a/kvm-stub.c +++ b/kvm-stub.c @@ -136,3 +136,8 @@ int kvm_set_ioeventfd_pio_word(int fd, uint16_t addr, uint16_t val, bool assign) { return -ENOSYS; } + +int kvm_set_ioeventfd_mmio_long(int fd, uint32_t adr, uint32_t val, bool assign) +{ + return -ENOSYS; +} |