From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53734) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKplb-0001hw-14 for qemu-devel@nongnu.org; Wed, 27 Mar 2013 08:47:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UKplZ-0003Gq-Lp for qemu-devel@nongnu.org; Wed, 27 Mar 2013 08:47:46 -0400 Received: from e06smtp10.uk.ibm.com ([195.75.94.106]:50862) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKplZ-0003GF-D0 for qemu-devel@nongnu.org; Wed, 27 Mar 2013 08:47:45 -0400 Received: from /spool/local by e06smtp10.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 27 Mar 2013 12:46:20 -0000 Received: from b06cxnps3075.portsmouth.uk.ibm.com (d06relay10.portsmouth.uk.ibm.com [9.149.109.195]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id E0163219005C for ; Wed, 27 Mar 2013 12:49:31 +0000 (GMT) Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by b06cxnps3075.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r2RClUY153280946 for ; Wed, 27 Mar 2013 12:47:30 GMT Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r2RClcam012968 for ; Wed, 27 Mar 2013 06:47:39 -0600 Date: Wed, 27 Mar 2013 13:47:36 +0100 From: Cornelia Huck Message-ID: <20130327134736.7e886d35@gondolin> In-Reply-To: <1364377755-15508-1-git-send-email-fred.konrad@greensocs.com> References: <1364377755-15508-1-git-send-email-fred.konrad@greensocs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 0/6] virtio-balloon refactoring. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: fred.konrad@greensocs.com Cc: peter.maydell@linaro.org, aliguori@us.ibm.com, mark.burton@greensocs.com, qemu-devel@nongnu.org On Wed, 27 Mar 2013 10:49:09 +0100 fred.konrad@greensocs.com wrote: > From: KONRAD Frederic > > This is the next part of virtio-refactoring. > > Basically it creates virtio-balloon device which extends virtio-device. > Then a virtio-balloon can be connected on a virtio-bus. > virtio-balloon-pci, virtio-balloon-ccw are created too, they extend > respectively virtio-pci, virtio-ccw-device and have a virtio-balloon. > > You can checkout my branch here: > > git://project.greensocs.com/qemu-virtio.git virtio-balloon-v3 > > Note that it is nearly the same series as virtio-blk and virtio-scsi > refactoring. Reviewed-by: Cornelia Huck > > I made basic tests (with linux guests) on: > * qemu-system-i386 For virtio-ccw on s390: Tested-by: Cornelia Huck > > Changes v2 -> v3: > * Added CCW device. > * Rebased. > > Thanks, > > Fred > > KONRAD Frederic (6): > virtio-balloon: add the virtio-balloon device. > virtio-balloon-pci: switch to the new API. > virtio-balloon-ccw: switch to the new API. > virtio-balloon: cleanup: init and exit function. > virtio-balloon: cleanup: QOM casts. > virtio-balloon: cleanup: remove qdev field. > > hw/s390x/virtio-ccw.c | 25 +++++++----- > hw/s390x/virtio-ccw.h | 11 +++++ > hw/virtio-balloon.c | 110 +++++++++++++++++++++++++++++++------------------ > hw/virtio-balloon.h | 7 +++- > hw/virtio-pci.c | 111 +++++++++++++++++++++++++------------------------- > hw/virtio-pci.h | 14 +++++++ > 6 files changed, 170 insertions(+), 108 deletions(-) >