Re: [Qemu-devel] [PATCH] translate-all.c: memory walker initial address miscalculation

2014-10-01 Thread Riku Voipio
Hi, Applied to linux-user tree, I'll send a pull req after a bit of testing. Riku On Tue, Sep 30, 2014 at 05:58:43PM +0400, Mikhail Ilin wrote: > ping > > http://patchwork.ozlabs.org/patch/386918/ > > On 22.09.2014 13:04, Mikhail Ilin wrote: > >ping > > > >http://patchwork.ozlabs.org/patch/386

Re: [Qemu-devel] [PATCH] translate-all.c: memory walker initial address miscalculation

2014-09-30 Thread Michael S. Tsirkin
On Mon, Sep 08, 2014 at 10:51:22AM +0400, m.i...@samsung.com wrote: > From: Mikhail Ilyin > > The initial base address is miscalculated in walk_memory_regions(). > It has to be shifted TARGET_PAGE_BITS more. Holder variables are > extended to target_ulong size otherwise they don't fit for MIPS N3

Re: [Qemu-devel] [PATCH] translate-all.c: memory walker initial address miscalculation

2014-09-30 Thread Mikhail Ilin
ping http://patchwork.ozlabs.org/patch/386918/ On 22.09.2014 13:04, Mikhail Ilin wrote: ping http://patchwork.ozlabs.org/patch/386918/ On 08.09.2014 17:28, m.i...@samsung.com wrote: From: Mikhail Ilyin The initial base address is miscalculated in walk_memory_regions(). It has to be shifted

Re: [Qemu-devel] [PATCH] translate-all.c: memory walker initial address miscalculation

2014-09-22 Thread Mikhail Ilin
ping http://patchwork.ozlabs.org/patch/386918/ On 08.09.2014 17:28, m.i...@samsung.com wrote: From: Mikhail Ilyin The initial base address is miscalculated in walk_memory_regions(). It has to be shifted TARGET_PAGE_BITS more. Holder variables are extended to target_ulong size otherwise they d

Re: [Qemu-devel] [PATCH] translate-all.c: memory walker initial address miscalculation

2014-09-08 Thread m . ilin
From: Mikhail Ilyin The initial base address is miscalculated in walk_memory_regions(). It has to be shifted TARGET_PAGE_BITS more. Holder variables are extended to target_ulong size otherwise they don't fit for MIPS N32 (a 32-bit ABI with a 64-bit address space) and qemu won't compile. The issue

[Qemu-devel] [PATCH] translate-all.c: memory walker initial address miscalculation

2014-09-07 Thread m . ilin
From: Mikhail Ilyin The initial base address is miscalculated in walk_memory_regions(). It has to be shifted TARGET_PAGE_BITS more. Holder variables are extended to target_ulong size otherwise they don't fit for MIPS N32 (a 32-bit ABI with a 64-bit address space) and qemu won't compile. The issue