[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] riscv: rv32: Root page table address can be lar
From: |
Richard Henderson |
Subject: |
Re: [Qemu-devel] [PATCH] riscv: rv32: Root page table address can be larger than 32-bit |
Date: |
Thu, 1 Aug 2019 07:16:38 -0700 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 |
On 7/31/19 6:53 PM, Bin Meng wrote:
> I am not sure how (idx * ptesize) could overflow. It represents the
> offset by a page table which is [0, 4096).
You're right, I mis-read what was going on there.
However, lower down, "target_ulong ppn" needs to be promoted to hwaddr, so that
ppn = pte >> PTE_PPN_SHIFT;
...
base = ppn << PGSHIFT;
does not overflow. (Which is the part of the page table walk that I thought I
had gleaned from the patch without actually reading the entire function.)
r~
- Re: [Qemu-devel] [PATCH] riscv: rv32: Root page table address can be larger than 32-bit,
Richard Henderson <=