* Philippe Mathieu-Daudé ([email protected]) wrote: > cpu_get_phys_page_debug() takes a vaddr type since commit > 00b941e581b ("cpu: Turn cpu_get_phys_page_debug() into a CPUClass > hook"). > > Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Dr. David Alan Gilbert <[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 e9820611466..2976f986d35 100644 > --- a/monitor/hmp-cmds-target.c > +++ b/monitor/hmp-cmds-target.c > @@ -301,7 +301,7 @@ void hmp_gpa2hva(Monitor *mon, const QDict *qdict) > > void hmp_gva2gpa(Monitor *mon, const QDict *qdict) > { > - target_ulong addr = qdict_get_int(qdict, "addr"); > + vaddr addr = qdict_get_int(qdict, "addr"); > CPUState *cs = mon_get_cpu(mon); > hwaddr gpa; > > -- > 2.52.0 > -- -----Open up your eyes, open up your mind, open up your code ------- / Dr. David Alan Gilbert | Running GNU/Linux | Happy \ \ dave @ treblig.org | | In Hex / \ _________________________|_____ http://www.treblig.org |_______/
