Re: [Qemu-devel] [PATCH v9 03/10] virtio-blk: don't use pointer for configuration.

2013-03-19 Thread Kevin Wolf
Am 19.03.2013 um 14:38 hat KONRAD Frédéric geschrieben: > On 18/03/2013 09:59, Kevin Wolf wrote: > >Am 15.03.2013 um 19:48 hat fred.kon...@greensocs.com geschrieben: > >>From: KONRAD Frederic > >> > >>The configuration field must not be a pointer as it will be used for > >>virtio-blk > >>properti

Re: [Qemu-devel] [PATCH v9 03/10] virtio-blk: don't use pointer for configuration.

2013-03-19 Thread KONRAD Frédéric
On 18/03/2013 09:59, Kevin Wolf wrote: Am 15.03.2013 um 19:48 hat fred.kon...@greensocs.com geschrieben: From: KONRAD Frederic The configuration field must not be a pointer as it will be used for virtio-blk properties. So *blk is replaced by blk in VirtIOBlock structure. Signed-off-by: KONRAD

Re: [Qemu-devel] [PATCH v9 03/10] virtio-blk: don't use pointer for configuration.

2013-03-18 Thread Kevin Wolf
Am 15.03.2013 um 19:48 hat fred.kon...@greensocs.com geschrieben: > From: KONRAD Frederic > > The configuration field must not be a pointer as it will be used for > virtio-blk > properties. So *blk is replaced by blk in VirtIOBlock structure. > > Signed-off-by: KONRAD Frederic > Reviewed-by: P

[Qemu-devel] [PATCH v9 03/10] virtio-blk: don't use pointer for configuration.

2013-03-15 Thread fred . konrad
From: KONRAD Frederic The configuration field must not be a pointer as it will be used for virtio-blk properties. So *blk is replaced by blk in VirtIOBlock structure. Signed-off-by: KONRAD Frederic Reviewed-by: Peter Maydell --- hw/virtio-blk.c | 8 hw/virtio-blk.h | 2 +- 2 files ch