On Wed, Dec 24, 2025 at 3:40 PM Philippe Mathieu-Daudé
<[email protected]> wrote:
>
> Pass a plain vaddr type to express virtual address.
>
> Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
> ---

Reviewed-by: Manos Pitsidianakis <[email protected]>

>  monitor/hmp-cmds-target.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/monitor/hmp-cmds-target.c b/monitor/hmp-cmds-target.c
> index c00f75eab3c..d2bdf44dafd 100644
> --- a/monitor/hmp-cmds-target.c
> +++ b/monitor/hmp-cmds-target.c
> @@ -232,7 +232,7 @@ void hmp_memory_dump(Monitor *mon, const QDict *qdict)
>      int count = qdict_get_int(qdict, "count");
>      int format = qdict_get_int(qdict, "format");
>      int size = qdict_get_int(qdict, "size");
> -    target_long addr = qdict_get_int(qdict, "addr");
> +    vaddr addr = qdict_get_int(qdict, "addr");
>
>      memory_dump(mon, count, format, size, addr, 0);
>  }
> --
> 2.52.0
>

Reply via email to