aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2021-12-25 09:55:58 +0900
committerArnaldo Carvalho de Melo <acme@redhat.com>2022-02-06 09:03:06 -0300
commita2887b9b8d1db7be971e5951e08ffe8563ea412f (patch)
treef3f662ce8ebfd3b536811f1f0e308d9b01a76b18 /tools
parentperf synthetic-events: Return error if procfs isn't mounted for PID namespaces (diff)
downloadlinux-dev-a2887b9b8d1db7be971e5951e08ffe8563ea412f.tar.xz
linux-dev-a2887b9b8d1db7be971e5951e08ffe8563ea412f.zip
perf bpf: Fix a typo in bpf_counter_cgroup.c
This patch fixes a spelling typo in error message. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Peter Zijlstra <peterz@infradead.org> Link: https://lore.kernel.org/r/20211225005558.503935-1-standby24x7@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/bpf_counter_cgroup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/bpf_counter_cgroup.c b/tools/perf/util/bpf_counter_cgroup.c
index 631e34a0b66f..ac60c08e8e2a 100644
--- a/tools/perf/util/bpf_counter_cgroup.c
+++ b/tools/perf/util/bpf_counter_cgroup.c
@@ -266,7 +266,7 @@ static int bperf_cgrp__read(struct evsel *evsel)
idx = evsel->core.idx;
err = bpf_map_lookup_elem(reading_map_fd, &idx, values);
if (err) {
- pr_err("bpf map lookup falied: idx=%u, event=%s, cgrp=%s\n",
+ pr_err("bpf map lookup failed: idx=%u, event=%s, cgrp=%s\n",
idx, evsel__name(evsel), evsel->cgrp->name);
goto out;
}