aboutsummaryrefslogtreecommitdiff
path: root/kvm-stub.c
diff options
context:
space:
mode:
authorCam Macdonell <cam@cs.ualberta.ca>2010-08-14 17:47:30 -0600
committerBlue Swirl <blauwirbel@gmail.com>2010-08-15 09:44:47 +0000
commit1fd74012750dcd8542708bdcc10becb8780f7493 (patch)
tree531b298fdde41d5398087f3c25716a1f0b83e698 /kvm-stub.c
parentb1d6d51d958bc98f5b6faa4d1d527c785a9ba7d6 (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.c5
1 files changed, 5 insertions, 0 deletions
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;
+}