From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34233) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XLplY-00039s-NX for qemu-devel@nongnu.org; Mon, 25 Aug 2014 04:36:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XLplO-0007nX-Mm for qemu-devel@nongnu.org; Mon, 25 Aug 2014 04:36:40 -0400 Received: from mail-we0-x22c.google.com ([2a00:1450:400c:c03::22c]:33257) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XLplO-0007ml-9u for qemu-devel@nongnu.org; Mon, 25 Aug 2014 04:36:30 -0400 Received: by mail-we0-f172.google.com with SMTP id x48so13084438wes.31 for ; Mon, 25 Aug 2014 01:36:29 -0700 (PDT) From: =?UTF-8?q?Marc=20Mar=C3=AD?= Date: Mon, 25 Aug 2014 10:36:06 +0200 Message-Id: <1408955773-4778-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 v6 0/7] Virtio PCI 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 v3: Solved problems, added indirect descriptor support and test for configuration changes v4: Solved bugs, changed some interfaces, added MSI-X and event_idx support. v5: Simplified virtio-blk-test, solved bugs, avoid patches already merged. v6: Solve bugs (qpci_iomap changed prototype) Marc MarĂ­ (7): tests: Functions bus_foreach and device_find from libqos virtio API tests: Add virtio device initialization libqos: Added basic virtqueue support to virtio implementation libqos: Added indirect descriptor support to virtio implementation libqos: Added test case for configuration changes in virtio-blk test libqos: Added MSI-X support libqos: Added EVENT_IDX support tests/Makefile | 3 +- tests/libqos/pci.c | 111 +++++++- tests/libqos/pci.h | 10 + tests/libqos/virtio-pci.c | 339 ++++++++++++++++++++++++ tests/libqos/virtio-pci.h | 61 +++++ tests/libqos/virtio.c | 257 +++++++++++++++++++ tests/libqos/virtio.h | 182 +++++++++++++ tests/virtio-blk-test.c | 622 ++++++++++++++++++++++++++++++++++++++++++++- 8 files changed, 1574 insertions(+), 11 deletions(-) create mode 100644 tests/libqos/virtio-pci.c create mode 100644 tests/libqos/virtio-pci.h create mode 100644 tests/libqos/virtio.c create mode 100644 tests/libqos/virtio.h -- 1.7.10.4