Re: [Qemu-devel] [PATCH] riscv: hmp: Add a command to show virtual memory mappings

2019-08-14 Thread Bin Meng
Hi Palmer, On Wed, Aug 14, 2019 at 9:35 AM Bin Meng wrote: > > Hi Palmer, > > On Tue, Aug 13, 2019 at 11:18 PM Palmer Dabbelt wrote: > > > > On Wed, 31 Jul 2019 05:49:15 PDT (-0700), bmeng...@gmail.com wrote: > > > This adds 'info mem' command for RISC-V, to show virtual memory > > > mappings th

Re: [Qemu-devel] [PATCH] riscv: hmp: Add a command to show virtual memory mappings

2019-08-13 Thread Bin Meng
Hi Palmer, On Tue, Aug 13, 2019 at 11:18 PM Palmer Dabbelt wrote: > > On Wed, 31 Jul 2019 05:49:15 PDT (-0700), bmeng...@gmail.com wrote: > > This adds 'info mem' command for RISC-V, to show virtual memory > > mappings that aids debugging. > > > > Rather than showing every valid PTE, the command

Re: [Qemu-devel] [PATCH] riscv: hmp: Add a command to show virtual memory mappings

2019-08-13 Thread Palmer Dabbelt
On Wed, 31 Jul 2019 05:49:15 PDT (-0700), bmeng...@gmail.com wrote: This adds 'info mem' command for RISC-V, to show virtual memory mappings that aids debugging. Rather than showing every valid PTE, the command compacts the output by merging all contiguous physical address mappings into one bloc

Re: [Qemu-devel] [PATCH] riscv: hmp: Add a command to show virtual memory mappings

2019-08-02 Thread Dr. David Alan Gilbert
* Bin Meng (bmeng...@gmail.com) wrote: > This adds 'info mem' command for RISC-V, to show virtual memory > mappings that aids debugging. > > Rather than showing every valid PTE, the command compacts the > output by merging all contiguous physical address mappings into > one block and only shows th

[Qemu-devel] [PATCH] riscv: hmp: Add a command to show virtual memory mappings

2019-07-31 Thread Bin Meng
This adds 'info mem' command for RISC-V, to show virtual memory mappings that aids debugging. Rather than showing every valid PTE, the command compacts the output by merging all contiguous physical address mappings into one block and only shows the merged block mapping details. Signed-off-by: Bin