]> git.itanic.dy.fi Git - linux-stable/commitdiff
perf intel-pt: Add event type names UINTR and UIRET
authorAdrian Hunter <adrian.hunter@intel.com>
Mon, 20 Mar 2023 18:35:16 +0000 (20:35 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 20 Mar 2023 22:25:27 +0000 (19:25 -0300)
UINTR and UIRET are listed in table 32-50 "CFE Packet Type and Vector
Fields Details" in the Intel Processor Trace chapter of The Intel SDM
Volume 3 version 078.

The codes are for "User interrupt delivered" and "Exiting from user
interrupt routine" respectively.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Acked-by: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lore.kernel.org/r/20230320183517.15099-2-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-script.c

index 976f8bfe099cabd7e8b0ea4c19293c2cbdbeaa09..c9296d8b33c0b750cafbefe9401774c9a55597c5 100644 (file)
@@ -1906,7 +1906,7 @@ static int perf_sample__fprintf_synth_evt(struct perf_sample *sample, FILE *fp)
        struct perf_synth_intel_evt *data = perf_sample__synth_ptr(sample);
        const char *cfe[32] = {NULL, "INTR", "IRET", "SMI", "RSM", "SIPI",
                               "INIT", "VMENTRY", "VMEXIT", "VMEXIT_INTR",
-                              "SHUTDOWN"};
+                              "SHUTDOWN", NULL, "UINTR", "UIRET"};
        const char *evd[64] = {"PFA", "VMXQ", "VMXR"};
        const char *s;
        int len, i;