Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'perf-tools-fixes-for-v6.19-2026-01-21' of git://git.kernel.org/pub/scm/linux/kernel/git/perf/perf-tools

Pull perf-tools fix from Namhyung Kim:
"A minor fix for error handling in the event parser"

* tag 'perf-tools-fixes-for-v6.19-2026-01-21' of git://git.kernel.org/pub/scm/linux/kernel/git/perf/perf-tools:
perf parse-events: Fix evsel allocation failure

+5 -2
+5 -2
tools/perf/util/parse-events.c
··· 251 251 event_attr_init(attr); 252 252 253 253 evsel = evsel__new_idx(attr, *idx); 254 - if (!evsel) 255 - goto out_err; 254 + if (!evsel) { 255 + perf_cpu_map__put(cpus); 256 + perf_cpu_map__put(pmu_cpus); 257 + return NULL; 258 + } 256 259 257 260 if (name) { 258 261 evsel->name = strdup(name);