From f894c3d8e705fea9cb3244fa61684bfd8bdd1b2a Mon Sep 17 00:00:00 2001 From: Tamas K Lengyel Date: Sat, 20 Feb 2021 16:07:38 -0500 Subject: [PATCH] tools/misc/xen-vmtrace: use reset and enable The expected behavior while using xen-vmtrace is to get a clean start, even if the tool was used previously on the same VM. Signed-off-by: Tamas K Lengyel Release-Acked-by: Ian Jackson Reviewed-by: Ian Jackson --- tools/misc/xen-vmtrace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/misc/xen-vmtrace.c b/tools/misc/xen-vmtrace.c index 7572e880c5..35d14c6a9b 100644 --- a/tools/misc/xen-vmtrace.c +++ b/tools/misc/xen-vmtrace.c @@ -119,7 +119,7 @@ int main(int argc, char **argv) goto out; } - if ( xc_vmtrace_enable(xch, domid, vcpu) ) + if ( xc_vmtrace_reset_and_enable(xch, domid, vcpu) ) { perror("xc_vmtrace_enable()"); goto out; -- 2.39.5