From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=56740 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OjFqx-00055b-A6 for qemu-devel@nongnu.org; Wed, 11 Aug 2010 14:16:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OjFqv-0005D0-Ny for qemu-devel@nongnu.org; Wed, 11 Aug 2010 14:16:39 -0400 Received: from fleet.cs.ualberta.ca ([129.128.22.22]:39110) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OjFqv-0005Ap-JW for qemu-devel@nongnu.org; Wed, 11 Aug 2010 14:16:37 -0400 From: Cam Macdonell Date: Wed, 11 Aug 2010 12:16:22 -0600 Message-Id: <1281550583-11908-1-git-send-email-cam@cs.ualberta.ca> Subject: [Qemu-devel] [PATCH 1/2] Add kvm_set_ioeventfd_mmio_long definition for non-KVM systems List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Cam Macdonell , kvm@vger.kernel.org --- kvm-stub.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/kvm-stub.c b/kvm-stub.c index 3378bd3..d45f9fa 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; +} -- 1.6.2.5