Re: [Qemu-devel] [PATCH v5 01/11] qcow2: Calculate refcount block entry count

2014-10-22 Thread Kevin Wolf
Am 21.10.2014 um 18:26 hat Max Reitz geschrieben: > On 2014-10-20 at 16:48, Kevin Wolf wrote: > >Am 20.10.2014 um 16:39 hat Max Reitz geschrieben: > >>On 20.10.2014 at 16:25, Kevin Wolf wrote: > >>>Am 29.08.2014 um 23:40 hat Max Reitz geschrieben: > The size of a refblock entry is (in theory) v

Re: [Qemu-devel] [PATCH v5 01/11] qcow2: Calculate refcount block entry count

2014-10-21 Thread Max Reitz
On 2014-10-20 at 16:48, Kevin Wolf wrote: Am 20.10.2014 um 16:39 hat Max Reitz geschrieben: On 20.10.2014 at 16:25, Kevin Wolf wrote: Am 29.08.2014 um 23:40 hat Max Reitz geschrieben: The size of a refblock entry is (in theory) variable; calculate therefore the number of entries per refblock a

Re: [Qemu-devel] [PATCH v5 01/11] qcow2: Calculate refcount block entry count

2014-10-20 Thread Kevin Wolf
Am 29.08.2014 um 23:40 hat Max Reitz geschrieben: > The size of a refblock entry is (in theory) variable; calculate > therefore the number of entries per refblock and the according bit shift > (1 << x == entry count) when opening an image. > > Signed-off-by: Max Reitz > --- > block/qcow2.c | 2 +

Re: [Qemu-devel] [PATCH v5 01/11] qcow2: Calculate refcount block entry count

2014-10-20 Thread Max Reitz
On 20.10.2014 at 16:25, Kevin Wolf wrote: Am 29.08.2014 um 23:40 hat Max Reitz geschrieben: The size of a refblock entry is (in theory) variable; calculate therefore the number of entries per refblock and the according bit shift (1 << x == entry count) when opening an image. Signed-off-by: Max

Re: [Qemu-devel] [PATCH v5 01/11] qcow2: Calculate refcount block entry count

2014-10-20 Thread Kevin Wolf
Am 20.10.2014 um 16:39 hat Max Reitz geschrieben: > On 20.10.2014 at 16:25, Kevin Wolf wrote: > >Am 29.08.2014 um 23:40 hat Max Reitz geschrieben: > >>The size of a refblock entry is (in theory) variable; calculate > >>therefore the number of entries per refblock and the according bit shift > >>(1

Re: [Qemu-devel] [PATCH v5 01/11] qcow2: Calculate refcount block entry count

2014-10-11 Thread Max Reitz
Am 10.10.2014 um 14:29 schrieb Benoît Canet: On Fri, Aug 29, 2014 at 11:40:53PM +0200, Max Reitz wrote: The size of a refblock entry is (in theory) variable; calculate therefore the number of entries per refblock and the according bit shift (1 << x == entry count) when opening an image. Signed-

Re: [Qemu-devel] [PATCH v5 01/11] qcow2: Calculate refcount block entry count

2014-10-10 Thread Benoît Canet
On Fri, Aug 29, 2014 at 11:40:53PM +0200, Max Reitz wrote: > The size of a refblock entry is (in theory) variable; calculate > therefore the number of entries per refblock and the according bit shift > (1 << x == entry count) when opening an image. > > Signed-off-by: Max Reitz > --- > block/qcow

Re: [Qemu-devel] [PATCH v5 01/11] qcow2: Calculate refcount block entry count

2014-09-02 Thread Max Reitz
On 30.08.2014 01:03, Eric Blake wrote: On 08/29/2014 03:40 PM, Max Reitz wrote: The size of a refblock entry is (in theory) variable; calculate therefore the number of entries per refblock and the according bit shift (1 << x == entry count) when opening an image. Signed-off-by: Max Reitz ---

Re: [Qemu-devel] [PATCH v5 01/11] qcow2: Calculate refcount block entry count

2014-08-29 Thread Eric Blake
On 08/29/2014 03:40 PM, Max Reitz wrote: > The size of a refblock entry is (in theory) variable; calculate > therefore the number of entries per refblock and the according bit shift > (1 << x == entry count) when opening an image. > > Signed-off-by: Max Reitz > --- > block/qcow2.c | 2 ++ > bloc

[Qemu-devel] [PATCH v5 01/11] qcow2: Calculate refcount block entry count

2014-08-29 Thread Max Reitz
The size of a refblock entry is (in theory) variable; calculate therefore the number of entries per refblock and the according bit shift (1 << x == entry count) when opening an image. Signed-off-by: Max Reitz --- block/qcow2.c | 2 ++ block/qcow2.h | 2 ++ 2 files changed, 4 insertions(+) diff