From patchwork Thu Apr 18 08:00:24 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 237483 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 55B062C01CA for ; Thu, 18 Apr 2013 18:59:38 +1000 (EST) Received: from localhost ([::1]:35139 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USkgq-0001NB-6K for incoming@patchwork.ozlabs.org; Thu, 18 Apr 2013 04:59:36 -0400 Received: from eggs.gnu.org ([208.118.235.92]:56339) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USkgR-0001MR-VB for qemu-devel@nongnu.org; Thu, 18 Apr 2013 04:59:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1USkgN-0006aH-BI for qemu-devel@nongnu.org; Thu, 18 Apr 2013 04:59:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:11930) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USkgN-0006a9-37 for qemu-devel@nongnu.org; Thu, 18 Apr 2013 04:59:07 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3I8x5mi029579 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 18 Apr 2013 04:59:05 -0400 Received: from redhat.com (vpn1-4-42.ams2.redhat.com [10.36.4.42]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id r3I8x3QJ022845; Thu, 18 Apr 2013 04:59:03 -0400 Date: Thu, 18 Apr 2013 11:00:24 +0300 From: "Michael S. Tsirkin" To: qemu-devel@nongnu.org, Anthony Liguori Message-ID: MIME-Version: 1.0 Content-Disposition: inline X-Mutt-Fcc: =sent X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: mst@redhat.com Subject: [Qemu-devel] [PULL 0/4] pci: add pci test device X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The following changes since commit e2ec3f976803b360c70d9ae2ba13852fa5d11665: qjson: to_json() case QTYPE_QSTRING is buggy, rewrite (2013-04-13 19:40:25 +0000) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_anthony for you to fetch changes up to 22773d6066a7f01a95f78c270edf9dbd2e755ac3: pci: add pci test device (2013-04-16 01:41:53 +0300) ---------------------------------------------------------------- pci: add pci test device This adds a new device that we can use for testing PCI PIO and MMIO, with and without ioeventfd in different configurations. FAST_MMIO will be added if/when kvm supports it. Also included are minor cleanups in kvm APIs that it needs. Signed-off-by: Michael S. Tsirkin ---------------------------------------------------------------- Michael S. Tsirkin (4): kvm: remove unused APIs kvm: support any size for pio eventfd kvm: support non datamatch ioeventfd pci: add pci test device default-configs/pci.mak | 1 + docs/specs/pci-testdev.txt | 26 ++++ hw/misc/Makefile.objs | 1 + hw/misc/pci-testdev.c | 325 +++++++++++++++++++++++++++++++++++++++++++++ include/hw/pci/pci.h | 1 + include/sysemu/kvm.h | 4 - kvm-all.c | 133 ++++++++++--------- kvm-stub.c | 10 -- 8 files changed, 422 insertions(+), 79 deletions(-) create mode 100644 docs/specs/pci-testdev.txt create mode 100644 hw/misc/pci-testdev.c Michael S. Tsirkin (4): kvm: remove unused APIs kvm: support any size for pio eventfd kvm: support non datamatch ioeventfd pci: add pci test device default-configs/pci.mak | 1 + docs/specs/pci-testdev.txt | 26 ++++ hw/misc/Makefile.objs | 1 + hw/misc/pci-testdev.c | 325 +++++++++++++++++++++++++++++++++++++++++++++ include/hw/pci/pci.h | 1 + include/sysemu/kvm.h | 4 - kvm-all.c | 133 ++++++++++--------- kvm-stub.c | 10 -- 8 files changed, 422 insertions(+), 79 deletions(-) create mode 100644 docs/specs/pci-testdev.txt create mode 100644 hw/misc/pci-testdev.c