Re: [Qemu-block] [Qemu-devel] [C v2 10/10] hw/m68k: define Macintosh Quadra 800

2018-07-07 Thread Thomas Huth
On 28.06.2018 01:23, Laurent Vivier wrote: > From: Laurent Vivier > > Co-developed-by: Mark Cave-Ayland > Signed-off-by: Mark Cave-Ayland > Signed-off-by: Laurent Vivier > --- > MAINTAINERS | 19 ++ > default-configs/m68k-softmmu.mak | 14 ++ > hw/intc/Makefile.objs

Re: [Qemu-block] [Qemu-devel] [C v2 09/10] dp8393x: manage big endian bus

2018-07-07 Thread Thomas Huth
On 28.06.2018 01:23, Laurent Vivier wrote: > This is needed by Quadra 800, this card can run on little-endian > or big-endian bus. > > Signed-off-by: Laurent Vivier > Tested-by: Hervé Poussineau > --- > hw/net/dp8393x.c | 88 > > 1 file

[Qemu-block] [PULL 1/1] nbd/server: fix nbd_co_send_block_status

2018-07-07 Thread Eric Blake
From: Vladimir Sementsov-Ogievskiy Call nbd_co_send_extents() with correct length parameter (extent.length may be smaller than original length). Also, switch length parameter type to uint32_t, to correspond with request->len and similar nbd_co_send_bitmap(). Signed-off-by: Vladimir Sementsov-Og

[Qemu-block] [PATCH V4] qemu-img: align result of is_allocated_sectors

2018-07-07 Thread Peter Lieven
We currently don't enforce that the sparse segments we detect during convert are aligned. This leads to unnecessary and costly read-modify-write cycles either internally in Qemu or in the background on the storage device as nearly all modern filesystems or hardware have a 4k alignment internally.