Re: [Qemu-devel] [PATCH V1 3/7] cputlb: fix the way get_page_addr_code fills the tlb

2017-02-23 Thread Frederic Konrad
On 02/23/2017 01:31 AM, Richard Henderson wrote: > On 02/17/2017 01:30 AM, fred.kon...@greensocs.com wrote: >> From: KONRAD Frederic >> >> get_page_addr_code(..) does a cpu_ldub_code to fill the tlb: >> This can lead to some side effects if a device is mapped at this

Re: [Qemu-devel] [PATCH V1 3/7] cputlb: fix the way get_page_addr_code fills the tlb

2017-02-22 Thread Richard Henderson
On 02/17/2017 01:30 AM, fred.kon...@greensocs.com wrote: From: KONRAD Frederic get_page_addr_code(..) does a cpu_ldub_code to fill the tlb: This can lead to some side effects if a device is mapped at this address. So this patch replaces the cpu_memory_ld by a

[Qemu-devel] [PATCH V1 3/7] cputlb: fix the way get_page_addr_code fills the tlb

2017-02-16 Thread fred . konrad
From: KONRAD Frederic get_page_addr_code(..) does a cpu_ldub_code to fill the tlb: This can lead to some side effects if a device is mapped at this address. So this patch replaces the cpu_memory_ld by a tlb_fill. Signed-off-by: KONRAD Frederic