Re: [Qemu-devel] [PATCH] nand: fix address overflow

2015-11-13 Thread Paolo Bonzini
> > On 10/11/2015 14:25, Rabin Vincent wrote: > >> The shifts of the address mask and value shift beyond 32 bits when there > >> are 5 address cycles. > >> > >> Signed-off-by: Rabin Vincent > >> --- > >> hw/block/nand.c |4 ++-- > >> 1 file changed, 2 insertions(+), 2

Re: [Qemu-devel] [PATCH] nand: fix address overflow

2015-11-13 Thread Kevin Wolf
Am 13.11.2015 um 10:32 hat Paolo Bonzini geschrieben: > > > On 10/11/2015 14:25, Rabin Vincent wrote: > > >> The shifts of the address mask and value shift beyond 32 bits when there > > >> are 5 address cycles. > > >> > > >> Signed-off-by: Rabin Vincent > > >> --- > > >>

Re: [Qemu-devel] [PATCH] nand: fix address overflow

2015-11-12 Thread Peter Crosthwaite
On Tue, Nov 10, 2015 at 7:09 AM, Paolo Bonzini wrote: > > > On 10/11/2015 14:25, Rabin Vincent wrote: >> The shifts of the address mask and value shift beyond 32 bits when there >> are 5 address cycles. >> >> Signed-off-by: Rabin Vincent >> --- >>

[Qemu-devel] [PATCH] nand: fix address overflow

2015-11-10 Thread Rabin Vincent
The shifts of the address mask and value shift beyond 32 bits when there are 5 address cycles. Signed-off-by: Rabin Vincent --- hw/block/nand.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/block/nand.c b/hw/block/nand.c index

Re: [Qemu-devel] [PATCH] nand: fix address overflow

2015-11-10 Thread Paolo Bonzini
On 10/11/2015 14:25, Rabin Vincent wrote: > The shifts of the address mask and value shift beyond 32 bits when there > are 5 address cycles. > > Signed-off-by: Rabin Vincent > --- > hw/block/nand.c |4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >