Re: [Qemu-devel] [PATCH 01/15] s390x: fix virtio feature bitmap

2011-04-10 Thread Aurelien Jarno
On Sun, Apr 10, 2011 at 10:11:15PM +0200, Alexander Graf wrote: > > On 10.04.2011, at 22:06, Aurelien Jarno wrote: > > > On Sun, Apr 10, 2011 at 09:26:26PM +0200, Alexander Graf wrote: > >> > >> On 10.04.2011, at 21:25, Aurelien Jarno wrote: > >> > >>> On Mon, Apr 04, 2011 at 04:32:10PM +0200,

Re: [Qemu-devel] [PATCH 01/15] s390x: fix virtio feature bitmap

2011-04-10 Thread Alexander Graf
On 10.04.2011, at 22:06, Aurelien Jarno wrote: > On Sun, Apr 10, 2011 at 09:26:26PM +0200, Alexander Graf wrote: >> >> On 10.04.2011, at 21:25, Aurelien Jarno wrote: >> >>> On Mon, Apr 04, 2011 at 04:32:10PM +0200, Alexander Graf wrote: The feature bitmap in the s390 virtio machine is litt

Re: [Qemu-devel] [PATCH 01/15] s390x: fix virtio feature bitmap

2011-04-10 Thread Aurelien Jarno
On Sun, Apr 10, 2011 at 09:26:26PM +0200, Alexander Graf wrote: > > On 10.04.2011, at 21:25, Aurelien Jarno wrote: > > > On Mon, Apr 04, 2011 at 04:32:10PM +0200, Alexander Graf wrote: > >> The feature bitmap in the s390 virtio machine is little endian. To > >> address for that, we need to bswap

Re: [Qemu-devel] [PATCH 01/15] s390x: fix virtio feature bitmap

2011-04-10 Thread Alexander Graf
On 10.04.2011, at 21:25, Aurelien Jarno wrote: > On Mon, Apr 04, 2011 at 04:32:10PM +0200, Alexander Graf wrote: >> The feature bitmap in the s390 virtio machine is little endian. To >> address for that, we need to bswap the values after reading them out. >> >> Signed-off-by: Alexander Graf >>

Re: [Qemu-devel] [PATCH 01/15] s390x: fix virtio feature bitmap

2011-04-10 Thread Aurelien Jarno
On Mon, Apr 04, 2011 at 04:32:10PM +0200, Alexander Graf wrote: > The feature bitmap in the s390 virtio machine is little endian. To > address for that, we need to bswap the values after reading them out. > > Signed-off-by: Alexander Graf > --- > hw/s390-virtio-bus.c |4 ++-- > 1 files chang

[Qemu-devel] [PATCH 01/15] s390x: fix virtio feature bitmap

2011-04-04 Thread Alexander Graf
The feature bitmap in the s390 virtio machine is little endian. To address for that, we need to bswap the values after reading them out. Signed-off-by: Alexander Graf --- hw/s390-virtio-bus.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/s390-virtio-bus.c b/hw/s3