Re: [Qemu-devel] [PATCH] Fix unassigned memory access handling

2011-07-03 Thread Richard Henderson
On 07/03/2011 02:42 AM, Blue Swirl wrote: > } > > -void QEMU_NORETURN do_unassigned_access(target_phys_addr_t addr, int > is_write, > -int is_exec, int unused, int size) > +void QEMU_NORETURN cpu_unassigned_access(CPUState *env1, > +

[Qemu-devel] [PATCH] Fix unassigned memory access handling

2011-07-03 Thread Blue Swirl
cea5f9a28faa528b6b1b117c9ab2d8828f473fef exposed bugs in unassigned memory access handling. Fix them by always passing CPUState to the handlers. Reported-by: Hervé Poussineau Signed-off-by: Blue Swirl --- exec-all.h|2 +- exec.c| 12 ++--