Re: [Qemu-devel] [PATCH 4/4] virtio-blk: introduce multiread

2014-12-15 Thread Peter Lieven
> Am 15.12.2014 um 17:00 schrieb Kevin Wolf : > > Am 15.12.2014 um 16:52 hat Peter Lieven geschrieben: >> On 15.12.2014 16:43, Peter Lieven wrote: >>> On 15.12.2014 16:01, Kevin Wolf wrote: Am 09.12.2014 um 17:26 hat Peter Lieven geschrieben: > this patch finally introduces multiread su

Re: [Qemu-devel] [PATCH 4/4] virtio-blk: introduce multiread

2014-12-15 Thread Kevin Wolf
Am 15.12.2014 um 16:52 hat Peter Lieven geschrieben: > On 15.12.2014 16:43, Peter Lieven wrote: > >On 15.12.2014 16:01, Kevin Wolf wrote: > >>Am 09.12.2014 um 17:26 hat Peter Lieven geschrieben: > >>>this patch finally introduces multiread support to virtio-blk. While > >>>multiwrite support was th

Re: [Qemu-devel] [PATCH 4/4] virtio-blk: introduce multiread

2014-12-15 Thread Kevin Wolf
Am 15.12.2014 um 16:43 hat Peter Lieven geschrieben: > On 15.12.2014 16:01, Kevin Wolf wrote: > >Am 09.12.2014 um 17:26 hat Peter Lieven geschrieben: > >>this patch finally introduces multiread support to virtio-blk. While > >>multiwrite support was there for a long time, read support was missing.

Re: [Qemu-devel] [PATCH 4/4] virtio-blk: introduce multiread

2014-12-15 Thread Peter Lieven
On 15.12.2014 16:43, Peter Lieven wrote: On 15.12.2014 16:01, Kevin Wolf wrote: Am 09.12.2014 um 17:26 hat Peter Lieven geschrieben: this patch finally introduces multiread support to virtio-blk. While multiwrite support was there for a long time, read support was missing. To achieve this the

Re: [Qemu-devel] [PATCH 4/4] virtio-blk: introduce multiread

2014-12-15 Thread Peter Lieven
On 15.12.2014 16:01, Kevin Wolf wrote: Am 09.12.2014 um 17:26 hat Peter Lieven geschrieben: this patch finally introduces multiread support to virtio-blk. While multiwrite support was there for a long time, read support was missing. To achieve this the patch does several things which might need

Re: [Qemu-devel] [PATCH 4/4] virtio-blk: introduce multiread

2014-12-15 Thread Kevin Wolf
Am 09.12.2014 um 17:26 hat Peter Lieven geschrieben: > this patch finally introduces multiread support to virtio-blk. While > multiwrite support was there for a long time, read support was missing. > > To achieve this the patch does several things which might need further > explanation: > > - th

Re: [Qemu-devel] [PATCH 4/4] virtio-blk: introduce multiread

2014-12-11 Thread Peter Lieven
On 10.12.2014 08:48, Fam Zheng wrote: On Tue, 12/09 17:26, Peter Lieven wrote: diff --git a/include/hw/virtio/virtio-blk.h b/include/hw/virtio/virtio-blk.h index 3f2652f..0ee9582 100644 --- a/include/hw/virtio/virtio-blk.h +++ b/include/hw/virtio/virtio-blk.h @@ -134,13 +134,6 @@ typedef struct

Re: [Qemu-devel] [PATCH 4/4] virtio-blk: introduce multiread

2014-12-10 Thread Fam Zheng
On Tue, 12/09 17:26, Peter Lieven wrote: > diff --git a/include/hw/virtio/virtio-blk.h b/include/hw/virtio/virtio-blk.h > index 3f2652f..0ee9582 100644 > --- a/include/hw/virtio/virtio-blk.h > +++ b/include/hw/virtio/virtio-blk.h > @@ -134,13 +134,6 @@ typedef struct VirtIOBlock { > struct Vir

[Qemu-devel] [PATCH 4/4] virtio-blk: introduce multiread

2014-12-09 Thread Peter Lieven
this patch finally introduces multiread support to virtio-blk. While multiwrite support was there for a long time, read support was missing. To achieve this the patch does several things which might need further explanation: - the whole merge and multireq logic is moved from block.c into virt