From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54182) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XOOX6-0007xg-Tl for qemu-devel@nongnu.org; Mon, 01 Sep 2014 06:08:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XOOWx-0001q5-Ot for qemu-devel@nongnu.org; Mon, 01 Sep 2014 06:08:20 -0400 Received: from mail-wg0-x233.google.com ([2a00:1450:400c:c00::233]:37783) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XOOWx-0001pq-If for qemu-devel@nongnu.org; Mon, 01 Sep 2014 06:08:11 -0400 Received: by mail-wg0-f51.google.com with SMTP id l18so5154410wgh.22 for ; Mon, 01 Sep 2014 03:08:10 -0700 (PDT) From: =?UTF-8?q?Marc=20Mar=C3=AD?= Date: Mon, 1 Sep 2014 12:07:53 +0200 Message-Id: <1409566080-6313-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 v8 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) v7: Solve bugs (qvirtio_pci_config_readq endianness) v8: Solve bugs (qvirtio_pci_config_readq endianness) 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 | 343 +++++++++++++++++++++++++ tests/libqos/virtio-pci.h | 61 +++++ tests/libqos/virtio.c | 257 +++++++++++++++++++ tests/libqos/virtio.h | 182 +++++++++++++ tests/libqtest.c | 48 ++++ tests/libqtest.h | 7 + tests/virtio-blk-test.c | 622 ++++++++++++++++++++++++++++++++++++++++++++- 10 files changed, 1633 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