From patchwork Wed Aug 11 18:16:22 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Cam Macdonell X-Patchwork-Id: 61495 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id ABB74B70DC for ; Thu, 12 Aug 2010 04:18:53 +1000 (EST) Received: from localhost ([127.0.0.1]:43274 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OjFt4-00064Q-06 for incoming@patchwork.ozlabs.org; Wed, 11 Aug 2010 14:18:50 -0400 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 Received: from localhost.localdomain (botha-w4.cs.ualberta.ca [129.128.184.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp-auth.cs.ualberta.ca (Postfix) with ESMTP id 9554428015; Wed, 11 Aug 2010 12:16:25 -0600 (MDT) From: Cam Macdonell To: qemu-devel@nongnu.org Date: Wed, 11 Aug 2010 12:16:22 -0600 Message-Id: <1281550583-11908-1-git-send-email-cam@cs.ualberta.ca> X-Mailer: git-send-email 1.6.2.5 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Cc: Cam Macdonell , kvm@vger.kernel.org Subject: [Qemu-devel] [PATCH 1/2] Add kvm_set_ioeventfd_mmio_long definition for non-KVM systems X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org --- kvm-stub.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) Acked-by: Andreas Färber 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; +}