From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:52666) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UFLSX-0003PE-Q1 for qemu-devel@nongnu.org; Tue, 12 Mar 2013 05:25:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UFLSV-0000Ea-18 for qemu-devel@nongnu.org; Tue, 12 Mar 2013 05:25:25 -0400 Received: from greensocs.com ([87.106.252.221]:33296 helo=s15328186.onlinehome-server.info) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UFLPo-0006tr-Kf for qemu-devel@nongnu.org; Tue, 12 Mar 2013 05:22:36 -0400 From: fred.konrad@greensocs.com Date: Tue, 12 Mar 2013 10:22:03 +0100 Message-Id: <1363080131-16427-1-git-send-email-fred.konrad@greensocs.com> Subject: [Qemu-devel] [PATCH v6 0/8] virtio-blk refactoring. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, aliguori@us.ibm.com, afaerber@suse.de Cc: peter.maydell@linaro.org, mst@redhat.com, mark.burton@greensocs.com, fred.konrad@greensocs.com From: KONRAD Frederic This is the next part of virtio-refactoring. Basically it creates virtio-blk device which extends virtio-device. Then a virtio-blk can be connected on a virtio-bus. virtio-blk-pci, virtio-blk-s390x, virtio-blk-ccw are created too, they extend respectively virtio-pci, virtio-s390-device, virtio-ccw-device and have a virtio-blk. It is on top of "virtio: make virtio device's structures public" (V4) I posted before, but you can checkout my branch here: git://project.greensocs.com/qemu-virtio.git virtio-blk-v6 I made basic tests (with linux guests) on: * qemu-system-i386 * qemu-system-s390x Cornelia made virtio-ccw test, and Stefan tried dataplane. There are no changes, just rebased on the current git. Thanks. Fred KONRAD Frederic (8): virtio-blk: don't use pointer for configuration. virtio-blk: add the virtio-blk device. virtio-blk-pci: switch to new API. virtio-blk-s390: switch to the new API. virtio-blk-ccw switch to new API. virtio-blk: cleanup: init and exit functions. virtio-blk: cleanup: QOM cast virtio-blk: cleanup: remove qdev field. hw/s390x/s390-virtio-bus.c | 30 +++++++---- hw/s390x/s390-virtio-bus.h | 13 ++++- hw/s390x/virtio-ccw.c | 37 ++++++++----- hw/s390x/virtio-ccw.h | 14 ++++- hw/virtio-blk.c | 131 +++++++++++++++++++++++++++++---------------- hw/virtio-blk.h | 33 ++++++++++-- hw/virtio-pci.c | 124 +++++++++++++++++++----------------------- hw/virtio-pci.h | 15 +++++- hw/virtio.h | 2 - 9 files changed, 250 insertions(+), 149 deletions(-) -- 1.7.11.7