Re: [PATCH v2 3/5] s390: Add new channel I/O based virtio transport.

2012-12-18 Thread Paolo Bonzini
Il 04/09/2012 17:13, Cornelia Huck ha scritto: +VirtioCcwBus *virtio_ccw_bus_init(void) +{ +VirtioCcwBus *cbus; +BusState *bus; +DeviceState *dev; + +/* Create bridge device */ +dev = qdev_create(NULL, virtio-ccw-bridge); +qdev_init_nofail(dev); + +/* Create

Re: [PATCH v2 3/5] s390: Add new channel I/O based virtio transport.

2012-12-18 Thread Cornelia Huck
On Tue, 18 Dec 2012 09:45:27 +0100 Paolo Bonzini pbonz...@redhat.com wrote: Il 04/09/2012 17:13, Cornelia Huck ha scritto: +VirtioCcwBus *virtio_ccw_bus_init(void) +{ +VirtioCcwBus *cbus; +BusState *bus; +DeviceState *dev; + +/* Create bridge device */ +dev =

Re: [PATCH v2 3/5] s390: Add new channel I/O based virtio transport.

2012-12-18 Thread Paolo Bonzini
Il 18/12/2012 15:58, Cornelia Huck ha scritto: On Tue, 18 Dec 2012 09:45:27 +0100 Paolo Bonzini pbonz...@redhat.com wrote: Il 04/09/2012 17:13, Cornelia Huck ha scritto: +VirtioCcwBus *virtio_ccw_bus_init(void) +{ +VirtioCcwBus *cbus; +BusState *bus; +DeviceState *dev; + +

Re: [PATCH v2 3/5] s390: Add new channel I/O based virtio transport.

2012-09-20 Thread Anthony Liguori
Cornelia Huck cornelia.h...@de.ibm.com writes: Add a new virtio transport that uses channel commands to perform virtio operations. Add a new machine type s390-ccw that uses this virtio-ccw transport and make it the default machine for s390. Signed-off-by: Cornelia Huck

Re: [PATCH v2 3/5] s390: Add new channel I/O based virtio transport.

2012-09-20 Thread Alexander Graf
On 20.09.2012, at 16:24, Anthony Liguori aligu...@us.ibm.com wrote: Cornelia Huck cornelia.h...@de.ibm.com writes: Add a new virtio transport that uses channel commands to perform virtio operations. Add a new machine type s390-ccw that uses this virtio-ccw transport and make it the

Re: [PATCH v2 3/5] s390: Add new channel I/O based virtio transport.

2012-09-19 Thread Alexander Graf
Just a really quick glimpse. This patch is huge :). On 04.09.2012, at 17:13, Cornelia Huck wrote: Add a new virtio transport that uses channel commands to perform virtio operations. Add a new machine type s390-ccw that uses this virtio-ccw transport and make it the default machine for

[PATCH v2 3/5] s390: Add new channel I/O based virtio transport.

2012-09-04 Thread Cornelia Huck
Add a new virtio transport that uses channel commands to perform virtio operations. Add a new machine type s390-ccw that uses this virtio-ccw transport and make it the default machine for s390. Signed-off-by: Cornelia Huck cornelia.h...@de.ibm.com --- Changes v1-v2: - update to virtio-ccw