aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCam Macdonell <cam@cs.ualberta.ca>2010-08-14 17:47:30 -0600
committerAnthony Liguori <aliguori@us.ibm.com>2010-10-11 16:33:56 -0500
commit41de2f0c864dd94908015ca6846e635f028b9b93 (patch)
tree5a9ab116707372cef8388a5c379e9b9d33050222
parentec810f662a2944a3042426838c8715a016c855fc (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> (cherry picked from commit 1fd74012750dcd8542708bdcc10becb8780f7493)
-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;
+}