On Thu, Jun 1, 2023 at 3:28 PM Olaf Hering <[email protected]> wrote: > The input values were always 32bit. > > Fixes 55ee5dea32 ("xentrace: add TRC_HVM_EMUL") > > Signed-off-by: Olaf Hering <[email protected]> > --- > tools/xentrace/formats | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tools/xentrace/formats b/tools/xentrace/formats > index 0fcc327a40..afb5ee0112 100644 > --- a/tools/xentrace/formats > +++ b/tools/xentrace/formats > @@ -211,8 +211,8 @@ > 0x00802008 CPU%(cpu)d %(tsc)d (+%(reltsc)8d) do_irq [ irq = %(1)d, > began = %(2)dus, ended = %(3)dus ] > > 0x00084001 CPU%(cpu)d %(tsc)d (+%(reltsc)8d) hpet create [ tn = %(1)d, > irq = %(2)d, delta = 0x%(4)08x%(3)08x, period = 0x%(6)08x%(5)08x ] > -0x00084002 CPU%(cpu)d %(tsc)d (+%(reltsc)8d) pit create [ delta = > 0x%(1)016x, period = 0x%(2)016x ] > -0x00084003 CPU%(cpu)d %(tsc)d (+%(reltsc)8d) rtc create [ delta = > 0x%(1)016x , period = 0x%(2)016x ] > +0x00084002 CPU%(cpu)d %(tsc)d (+%(reltsc)8d) pit create [ delta = > 0x%(1)08x, period = 0x%(2)08x ] > +0x00084003 CPU%(cpu)d %(tsc)d (+%(reltsc)8d) rtc create [ delta = > 0x%(1)08x, period = 0x%(2)08x ] >
Looks good. While we're here, any reason not to s/create/start/; to match up with the trace definition? Either way: Reviewed-by: George Dunlap <[email protected]>
