diff options
author | Ilkka Koskinen <[email protected]> | 2024-02-23 14:04:58 -0800 |
---|---|---|
committer | Namhyung Kim <[email protected]> | 2024-02-26 08:30:17 -0800 |
commit | bae4d1f86e4d6750d2fc11e040c7d49b180c4b8d (patch) | |
tree | 58637f6874f93b9092ea8d357faae6c903e1b50e | |
parent | 529d5818a3bb0272ced031e022e4b41d6410a4da (diff) |
perf data convert: Fix segfault when converting to json when cpu_desc isn't set
Arm64 doesn't have Model in /proc/cpuinfo and, thus, cpu_desc doesn't get
assigned.
Running
$ perf data convert --to-json perf.data.json
ends up calling output_json_string() with NULL pointer, which causes a
segmentation fault.
Signed-off-by: Ilkka Koskinen <[email protected]>
Acked-by: Arnaldo Carvalho de Melo <[email protected]>
Cc: James Clark <[email protected]>
Cc: Evgeny Pistun <[email protected]>
Signed-off-by: Namhyung Kim <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | tools/perf/util/data-convert-json.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/util/data-convert-json.c b/tools/perf/util/data-convert-json.c index 5bb3c2ba95ca..09d57efd2d9d 100644 --- a/tools/perf/util/data-convert-json.c +++ b/tools/perf/util/data-convert-json.c @@ -284,7 +284,9 @@ static void output_headers(struct perf_session *session, struct convert_json *c) output_json_key_string(out, true, 2, "os-release", header->env.os_release); output_json_key_string(out, true, 2, "arch", header->env.arch); - output_json_key_string(out, true, 2, "cpu-desc", header->env.cpu_desc); + if (header->env.cpu_desc) + output_json_key_string(out, true, 2, "cpu-desc", header->env.cpu_desc); + output_json_key_string(out, true, 2, "cpuid", header->env.cpuid); output_json_key_format(out, true, 2, "nrcpus-online", "%u", header->env.nr_cpus_online); output_json_key_format(out, true, 2, "nrcpus-avail", "%u", header->env.nr_cpus_avail); |