Re: [PATCH] target/mips: Fix PageMask with variable page size

2020-06-15 Thread Peter Maydell
On Mon, 15 Jun 2020 at 10:17, Jiaxun Yang wrote: > > > > 在 2020/6/15 17:13, Peter Maydell 写道: > > On Sun, 14 Jun 2020 at 22:52, Aleksandar Markovic > > wrote: > >> When you change machine.c the way you did it, you need to bump the > >> version. Please see git log on machine.c for details. > > >

Re: [PATCH] target/mips: Fix PageMask with variable page size

2020-06-15 Thread Jiaxun Yang
在 2020/6/15 17:13, Peter Maydell 写道: On Sun, 14 Jun 2020 at 22:52, Aleksandar Markovic wrote: When you change machine.c the way you did it, you need to bump the version. Please see git log on machine.c for details. --- a/target/mips/cpu.h +++ b/target/mips/cpu.h @@ -617,7 +617,8 @@ struc

Re: [PATCH] target/mips: Fix PageMask with variable page size

2020-06-15 Thread Peter Maydell
On Sun, 14 Jun 2020 at 22:52, Aleksandar Markovic wrote: > When you change machine.c the way you did it, you need to bump the version. > Please see git log on machine.c for details. >> --- a/target/mips/cpu.h >> +++ b/target/mips/cpu.h >> @@ -617,7 +617,8 @@ struct CPUMIPSState { >> /* >> * C

Re: [PATCH] target/mips: Fix PageMask with variable page size

2020-06-14 Thread Aleksandar Markovic
недеља, 14. јун 2020., Jiaxun Yang је написао/ла: > Our current code assumed the target page size is always 4k > when handling PageMask and VPN2, however, variable page size > was just added to mips target and that's nolonger true. > > So we refined this piece of code to handle any target page si

Re: [PATCH] target/mips: Fix PageMask with variable page size

2020-06-13 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200614034729.3004-1-jiaxun.y...@flygoat.com/ Hi, This series failed the docker-quick@centos7 build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN

[PATCH] target/mips: Fix PageMask with variable page size

2020-06-13 Thread Jiaxun Yang
Our current code assumed the target page size is always 4k when handling PageMask and VPN2, however, variable page size was just added to mips target and that's nolonger true. So we refined this piece of code to handle any target page size. Also added Big Page support defined by MIPS64 Release2.

Re: [PATCH] target/mips: Fix PageMask with variable page size

2020-06-08 Thread Jiaxun Yang
在 2020/6/9 10:47, Jiaxun Yang 写道: Our current code assumed the target page size is always 4k when handling PageMask and VPN2, however, variable page size was just added to mips target and that's nolonger true. So we refined this piece of code to handle any target page size. Also added Big Pag

[PATCH] target/mips: Fix PageMask with variable page size

2020-06-08 Thread Jiaxun Yang
Our current code assumed the target page size is always 4k when handling PageMask and VPN2, however, variable page size was just added to mips target and that's nolonger true. So we refined this piece of code to handle any target page size. Also added Big Page support defined by MIPS64 Release2.