File perf-script-Fix-hex-dump-character-output.patch of Package perf
65
1
From: Adrian Hunter <adrian.hunter@intel.com>
2
Date: Wed, 12 Jan 2022 10:50:57 +0200
3
Subject: perf script: Fix hex dump character output
4
Git-commit: 62942e9fda9fd1def10ffcbd5e1c025b3c9eec17
5
Patch-mainline: v5.17-rc1
6
References: git-fixes
7
8
Using grep -C with perf script -D can give erroneous results as grep loses
9
lines due to non-printable characters, for example, below the 0020, 0060
10
and 0070 lines are missing:
11
12
$ perf script -D | grep -C10 AUX | head
13
. 0010: 08 00 00 00 00 00 00 00 1f 00 00 00 00 00 00 00 ................
14
. 0030: 01 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 ................
15
. 0040: 00 08 00 00 00 00 00 00 02 00 00 00 00 00 00 00 ................
16
. 0050: 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 ................
17
. 0080: 02 00 00 00 00 00 00 00 1b 00 00 00 00 00 00 00 ................
18
. 0090: 00 00 00 00 00 00 00 00 ........
19
20
0 0 0x450 [0x98]: PERF_RECORD_AUXTRACE_INFO type: 1
21
PMU Type 8
22
Time Shift 31
23
24
perf's isprint() is a custom implementation from the kernel, but the
25
kernel's _ctype appears to include characters from Latin-1 Supplement which
26
is not compatible with, for example, UTF-8. Fix by checking also isascii().
27
28
After:
29
30
$ tools/perf/perf script -D | grep -C10 AUX | head
31
. 0010: 08 00 00 00 00 00 00 00 1f 00 00 00 00 00 00 00 ................
32
. 0020: 03 84 32 2f 00 00 00 00 63 7c 4f d2 fa ff ff ff ..2/....c|O.....
33
. 0030: 01 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 ................
34
. 0040: 00 08 00 00 00 00 00 00 02 00 00 00 00 00 00 00 ................
35
. 0050: 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 ................
36
. 0060: 00 02 00 00 00 00 00 00 00 c0 03 00 00 00 00 00 ................
37
. 0070: e2 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 ................
38
. 0080: 02 00 00 00 00 00 00 00 1b 00 00 00 00 00 00 00 ................
39
. 0090: 00 00 00 00 00 00 00 00 ........
40
41
Fixes: 3052ba56bcb58904 ("tools perf: Move from sane_ctype.h obtained from git to the Linux's original")
42
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
43
Cc: Jiri Olsa <jolsa@redhat.com>
44
Link: http://lore.kernel.org/lkml/20220112085057.277205-1-adrian.hunter@intel.com
45
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
46
Signed-off-by: Tony Jones <tonyj@suse.de>
47
---
48
tools/perf/util/debug.c | 2 +-
49
1 file changed, 1 insertion(+), 1 deletion(-)
50
51
diff --git a/tools/perf/util/debug.c b/tools/perf/util/debug.c
52
index 2c06abf6dcd2..65e6c22f38e4 100644
53
--- a/tools/perf/util/debug.c
54
+++ b/tools/perf/util/debug.c
55
56
break;
57
case BINARY_PRINT_CHAR_DATA:
58
printed += color_fprintf(fp, color, "%c",
59
- isprint(ch) ? ch : '.');
60
+ isprint(ch) && isascii(ch) ? ch : '.');
61
break;
62
case BINARY_PRINT_CHAR_PAD:
63
printed += color_fprintf(fp, color, " ");
64
65