aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/Documentation/perf-script-python.txt
diff options
context:
space:
mode:
authorStephen Brennan <stephen.s.brennan@oracle.com>2021-08-06 13:45:01 -0700
committerArnaldo Carvalho de Melo <acme@redhat.com>2021-08-09 16:54:20 -0300
commitb7ae6d43786ed6b834892d444cee28eba24e56f6 (patch)
tree083e603513c91412da705fe8d4faa2f5c874e54d /tools/perf/Documentation/perf-script-python.txt
parentperf cs-etm: Add warnings for missing DSOs (diff)
downloadlinux-dev-b7ae6d43786ed6b834892d444cee28eba24e56f6.tar.xz
linux-dev-b7ae6d43786ed6b834892d444cee28eba24e56f6.zip
perf script python: Fix unintended underline
The text ranging from "subsystem__event_name" to "raw_syscalls__sys_enter()" is interpreted by asciidoc as a pair of unconstrained text formatting markers. The result is that the manual page displayed this text as underlined, and the HTML pages displayed this text as italicized. Escape the first double-underscore to prevent this. https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/ Signed-off-by: Stephen Brennan <stephen.s.brennan@oracle.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lore.kernel.org/lkml/20210806204502.110305-1-stephen.s.brennan@oracle.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/Documentation/perf-script-python.txt')
-rw-r--r--tools/perf/Documentation/perf-script-python.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/Documentation/perf-script-python.txt b/tools/perf/Documentation/perf-script-python.txt
index 5e43cfa5ea1e..0250dc61cf98 100644
--- a/tools/perf/Documentation/perf-script-python.txt
+++ b/tools/perf/Documentation/perf-script-python.txt
@@ -167,7 +167,7 @@ below).
Following those are the 'event handler' functions generated one for
every event in the 'perf record' output. The handler functions take
-the form subsystem__event_name, and contain named parameters, one for
+the form subsystem\__event_name, and contain named parameters, one for
each field in the event; in this case, there's only one event,
raw_syscalls__sys_enter(). (see the EVENT HANDLERS section below for
more info on event handlers).