提交 128b52e8 编写于 作者: P Paolo Bonzini

target/i386: fix "info mem" for LA57 mode

Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
上级 8e1fe175
...@@ -447,7 +447,7 @@ static void mem_info_la57(Monitor *mon, CPUArchState *env) ...@@ -447,7 +447,7 @@ static void mem_info_la57(Monitor *mon, CPUArchState *env)
start = -1; start = -1;
for (l0 = 0; l0 < 512; l0++) { for (l0 = 0; l0 < 512; l0++) {
cpu_physical_memory_read(pml5_addr + l0 * 8, &pml5e, 8); cpu_physical_memory_read(pml5_addr + l0 * 8, &pml5e, 8);
pml4e = le64_to_cpu(pml5e); pml5e = le64_to_cpu(pml5e);
end = l0 << 48; end = l0 << 48;
if (!(pml5e & PG_PRESENT_MASK)) { if (!(pml5e & PG_PRESENT_MASK)) {
prot = 0; prot = 0;
...@@ -480,7 +480,7 @@ static void mem_info_la57(Monitor *mon, CPUArchState *env) ...@@ -480,7 +480,7 @@ static void mem_info_la57(Monitor *mon, CPUArchState *env)
if (pdpe & PG_PSE_MASK) { if (pdpe & PG_PSE_MASK) {
prot = pdpe & (PG_USER_MASK | PG_RW_MASK | prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
PG_PRESENT_MASK); PG_PRESENT_MASK);
prot &= pml4e; prot &= pml5e & pml4e;
mem_print(mon, &start, &last_prot, end, prot); mem_print(mon, &start, &last_prot, end, prot);
continue; continue;
} }
...@@ -499,7 +499,7 @@ static void mem_info_la57(Monitor *mon, CPUArchState *env) ...@@ -499,7 +499,7 @@ static void mem_info_la57(Monitor *mon, CPUArchState *env)
if (pde & PG_PSE_MASK) { if (pde & PG_PSE_MASK) {
prot = pde & (PG_USER_MASK | PG_RW_MASK | prot = pde & (PG_USER_MASK | PG_RW_MASK |
PG_PRESENT_MASK); PG_PRESENT_MASK);
prot &= pml4e & pdpe; prot &= pml5e & pml4e & pdpe;
mem_print(mon, &start, &last_prot, end, prot); mem_print(mon, &start, &last_prot, end, prot);
continue; continue;
} }
...@@ -513,7 +513,7 @@ static void mem_info_la57(Monitor *mon, CPUArchState *env) ...@@ -513,7 +513,7 @@ static void mem_info_la57(Monitor *mon, CPUArchState *env)
if (pte & PG_PRESENT_MASK) { if (pte & PG_PRESENT_MASK) {
prot = pte & (PG_USER_MASK | PG_RW_MASK | prot = pte & (PG_USER_MASK | PG_RW_MASK |
PG_PRESENT_MASK); PG_PRESENT_MASK);
prot &= pml4e & pdpe & pde; prot &= pml5e & pml4e & pdpe & pde;
} else { } else {
prot = 0; prot = 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册