From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43555) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XANni-0005GC-U1 for qemu-devel@nongnu.org; Thu, 24 Jul 2014 14:31:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XANnZ-0008GT-S0 for qemu-devel@nongnu.org; Thu, 24 Jul 2014 14:31:34 -0400 Received: from mail-we0-x235.google.com ([2a00:1450:400c:c03::235]:38417) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XANnZ-0008GH-K0 for qemu-devel@nongnu.org; Thu, 24 Jul 2014 14:31:25 -0400 Received: by mail-we0-f181.google.com with SMTP id k48so3189139wev.26 for ; Thu, 24 Jul 2014 11:31:24 -0700 (PDT) From: =?UTF-8?q?Marc=20Mar=C3=AD?= Date: Thu, 24 Jul 2014 20:30:58 +0200 Message-Id: <1406226665-1710-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/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 Add functions for virtio PCI libqos driver. Add more debugging tools. Solve bugs found while generating tests. Marc MarĂ­ (7): tests: Functions bus_foreach and device_find from libqos virtio API tests: Add virtio device initialization libqtest: add QTEST_LOG for debugging qtest testcases libqos: Correct mask to align size to PAGE_SIZE in malloc-pc libqos: Change free function called in malloc virtio-blk: Correct bug in support for flexible descriptor layout libqos: Added basic virtqueue support to virtio implementation hw/block/virtio-blk.c | 14 +-- tests/Makefile | 3 +- tests/libqos/malloc-pc.c | 2 +- tests/libqos/malloc.h | 2 +- tests/libqos/virtio-pci.c | 189 +++++++++++++++++++++++++++++++++++++ tests/libqos/virtio-pci.h | 48 ++++++++++ tests/libqos/virtio.c | 120 ++++++++++++++++++++++++ tests/libqos/virtio.h | 127 +++++++++++++++++++++++++ tests/libqtest.c | 11 ++- tests/virtio-blk-test.c | 228 +++++++++++++++++++++++++++++++++++++++++++-- 10 files changed, 725 insertions(+), 19 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