Skip to content

Commit a2887b9

Browse files
standby24x7acmel
authored andcommitted
perf bpf: Fix a typo in bpf_counter_cgroup.c
This patch fixes a spelling typo in error message. Signed-off-by: Masanari Iida <[email protected]> Acked-by: Namhyung Kim <[email protected]> Cc: Alexander Shishkin <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Mark Rutland <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
1 parent bc9c806 commit a2887b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/perf/util/bpf_counter_cgroup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ static int bperf_cgrp__read(struct evsel *evsel)
266266
idx = evsel->core.idx;
267267
err = bpf_map_lookup_elem(reading_map_fd, &idx, values);
268268
if (err) {
269-
pr_err("bpf map lookup falied: idx=%u, event=%s, cgrp=%s\n",
269+
pr_err("bpf map lookup failed: idx=%u, event=%s, cgrp=%s\n",
270270
idx, evsel__name(evsel), evsel->cgrp->name);
271271
goto out;
272272
}

0 commit comments

Comments
 (0)