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

2019-09-03 Thread Palmer Dabbelt
On Tue, 27 Aug 2019 18:31:18 PDT (-0700), bmeng...@gmail.com wrote: Hi Palmer, On Wed, Aug 28, 2019 at 7:18 AM Palmer Dabbelt wrote: On Sun, 18 Aug 2019 22:59:54 PDT (-0700), bmeng...@gmail.com wrote: > On Wed, Aug 14, 2019 at 11:33 PM Bin Meng wrote: >> >> This adds 'info mem' command for R

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

2019-08-27 Thread Bin Meng
Hi Palmer, On Wed, Aug 28, 2019 at 7:18 AM Palmer Dabbelt wrote: > > On Sun, 18 Aug 2019 22:59:54 PDT (-0700), bmeng...@gmail.com wrote: > > On Wed, Aug 14, 2019 at 11:33 PM Bin Meng wrote: > >> > >> This adds 'info mem' command for RISC-V, to show virtual memory > >> mappings that aids debuggin

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

2019-08-27 Thread Palmer Dabbelt
On Sun, 18 Aug 2019 22:59:54 PDT (-0700), bmeng...@gmail.com wrote: On Wed, Aug 14, 2019 at 11:33 PM Bin Meng 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 al

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

2019-08-18 Thread Bin Meng
On Wed, Aug 14, 2019 at 11:33 PM Bin Meng 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 o

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

2019-08-14 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