From 1fd74012750dcd8542708bdcc10becb8780f7493 Mon Sep 17 00:00:00 2001 From: Cam Macdonell Date: Sat, 14 Aug 2010 17:47:30 -0600 Subject: [PATCH] Add kvm_set_ioeventfd_mmio_long definition for non-KVM systems Signed-off-by: Cam Macdonell Signed-off-by: Blue Swirl --- kvm-stub.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kvm-stub.c b/kvm-stub.c index 3378bd3b21..d45f9fa1df 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; +}