From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57340) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPZvS-00056V-PE for qemu-devel@nongnu.org; Thu, 04 Sep 2014 12:30:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPZvJ-0003X8-3G for qemu-devel@nongnu.org; Thu, 04 Sep 2014 12:30:22 -0400 Received: from mail-wi0-x22e.google.com ([2a00:1450:400c:c05::22e]:49822) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPZvI-0003X4-T1 for qemu-devel@nongnu.org; Thu, 04 Sep 2014 12:30:13 -0400 Received: by mail-wi0-f174.google.com with SMTP id d1so1447197wiv.7 for ; Thu, 04 Sep 2014 09:30:12 -0700 (PDT) From: =?UTF-8?q?Marc=20Mar=C3=AD?= Date: Thu, 4 Sep 2014 18:24:36 +0200 Message-Id: <1409847879-9783-1-git-send-email-marc.mari.barcelo@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 0/3] Virtio MMIO libqos driver List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Marc=20Mar=C3=AD?= , Paolo Bonzini , Stefan Hajnoczi Add virtio-mmio support to libqos. Based on virtio-pci libqos patches. Marc MarĂ­ (3): libqos: Remove PCI assumptions in virtio driver libqos: Add malloc generic libqos: Add virtio MMIO support tests/Makefile | 4 +- tests/libqos/malloc-generic.c | 54 +++++++++++ tests/libqos/malloc-generic.h | 18 ++++ tests/libqos/virtio-mmio.c | 191 ++++++++++++++++++++++++++++++++++++++ tests/libqos/virtio-mmio.h | 46 +++++++++ tests/libqos/virtio-pci.c | 50 +++++----- tests/libqos/virtio-pci.h | 24 ++--- tests/libqos/virtio.c | 8 +- tests/libqos/virtio.h | 16 ++-- tests/virtio-blk-test.c | 206 ++++++++++++++++++++++++++++++++++------- 10 files changed, 537 insertions(+), 80 deletions(-) create mode 100644 tests/libqos/malloc-generic.c create mode 100644 tests/libqos/malloc-generic.h create mode 100644 tests/libqos/virtio-mmio.c create mode 100644 tests/libqos/virtio-mmio.h -- 1.7.10.4