qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "KONRAD Frédéric" <fred.konrad@greensocs.com>
To: Cornelia Huck <cornelia.huck@de.ibm.com>
Cc: peter.maydell@linaro.org, aliguori@us.ibm.com, mst@redhat.com,
	mark.burton@greensocs.com, qemu-devel@nongnu.org,
	afaerber@suse.de
Subject: Re: [Qemu-devel] [PATCH v10 00/11] virtio-blk refactoring.
Date: Mon, 18 Mar 2013 18:04:58 +0100	[thread overview]
Message-ID: <5147493A.1080505@greensocs.com> (raw)
In-Reply-To: <20130318180103.304ab8aa@gondolin>

On 18/03/2013 18:01, Cornelia Huck wrote:
> On Mon, 18 Mar 2013 17:37:17 +0100
> fred.konrad@greensocs.com wrote:
>
>> From: KONRAD Frederic <fred.konrad@greensocs.com>
>>
>> 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.
>>
>> You can checkout my branch here:
>>
>> git://project.greensocs.com/qemu-virtio.git virtio-blk-v10
> Comes up fine with virtio-ccw. device_add/device_del seems to work as
> well.
good thanks :).

>> I made basic tests (with linux guests) on:
>>   * qemu-system-i386
>>   * qemu-system-s390x
>>
>> Cornelia made virtio-ccw test, and Stefan tried dataplane.
>>
>> Changes v9 -> v10:
>>      * Fix the hot unplug issue spotted by Anthony.
>> Changes v8 -> v9:
>>      * Fix the hot unplug issue spotted by Cornelia.
>> Changes v7 -> v8:
>>      * Fix the allow_hotplug assertion spotted by Anthony.
>>      * Attached the make virtio device's structures public (v4).
>> Changes v6 -> v7:
>>      * Fix the DEFINE_VIRTIO_BLK_PROPERTIES macro issue spotted by Peter.
>>
>> Thanks,
>>
>> Fred
>>
>> KONRAD Frederic (11):
>>    virtio: make virtio device's structures public.
>>    virtio-x-bus: fix allow_hotplug assertion.
>>    virtio-pci: fix hot unplug.
>>    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 |  32 ++++++----
>>   hw/s390x/s390-virtio-bus.h |  13 +++-
>>   hw/s390x/virtio-ccw.c      |  35 ++++++-----
>>   hw/s390x/virtio-ccw.h      |  14 ++++-
>>   hw/virtio-balloon.c        |  15 -----
>>   hw/virtio-balloon.h        |  14 +++++
>>   hw/virtio-blk.c            | 151 +++++++++++++++++++++++++--------------------
>>   hw/virtio-blk.h            |  39 ++++++++++++
>>   hw/virtio-net.c            |  50 ---------------
>>   hw/virtio-net.h            |  50 +++++++++++++++
>>   hw/virtio-pci.c            | 142 ++++++++++++++++++------------------------
>>   hw/virtio-pci.h            |  15 ++++-
>>   hw/virtio-rng.c            |  19 ------
>>   hw/virtio-rng.h            |  19 ++++++
>>   hw/virtio-scsi.c           |  15 -----
>>   hw/virtio-scsi.h           |  16 +++++
>>   hw/virtio-serial-bus.c     |  41 ------------
>>   hw/virtio-serial.h         |  41 ++++++++++++
>>   hw/virtio.h                |   2 -
>>   19 files changed, 401 insertions(+), 322 deletions(-)
>>

  reply	other threads:[~2013-03-18 17:05 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-18 16:37 [Qemu-devel] [PATCH v10 00/11] virtio-blk refactoring fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 01/11] virtio: make virtio device's structures public fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 02/11] virtio-x-bus: fix allow_hotplug assertion fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 03/11] virtio-pci: fix hot unplug fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 04/11] virtio-blk: don't use pointer for configuration fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 05/11] virtio-blk: add the virtio-blk device fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 06/11] virtio-blk-pci: switch to new API fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 07/11] virtio-blk-s390: switch to the " fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 08/11] virtio-blk-ccw switch to " fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 09/11] virtio-blk: cleanup: init and exit functions fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 10/11] virtio-blk: cleanup: QOM cast fred.konrad
2013-03-18 16:37 ` [Qemu-devel] [PATCH v10 11/11] virtio-blk: cleanup: remove qdev field fred.konrad
2013-03-18 17:01 ` [Qemu-devel] [PATCH v10 00/11] virtio-blk refactoring Cornelia Huck
2013-03-18 17:04   ` KONRAD Frédéric [this message]
2013-03-19  1:38 ` Anthony Liguori

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5147493A.1080505@greensocs.com \
    --to=fred.konrad@greensocs.com \
    --cc=afaerber@suse.de \
    --cc=aliguori@us.ibm.com \
    --cc=cornelia.huck@de.ibm.com \
    --cc=mark.burton@greensocs.com \
    --cc=mst@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).