aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2022-07-21 13:45:28 +0100
committerArnaldo Carvalho de Melo <[email protected]>2022-07-26 16:31:54 -0300
commit8147f79ea575463d60ddc0735bceaef89bb34a4c (patch)
tree1402c040a2d876eb21a4cddc81aeb7cadf7805d2
parentacfb65fe1d11a97fcbac2e9dd857eb60a1af2897 (diff)
perf inject: Fix spelling mistake "theads" -> "threads"
There is a spelling mistake in a pr_err message. Fix it. Signed-off-by: Colin Ian King <[email protected]> Acked-by: Ian Rogers <[email protected]> Cc: Alexander Shishkin <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Mark Rutland <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: [email protected] Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r--tools/perf/builtin-inject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-inject.c b/tools/perf/builtin-inject.c
index fd4547bb75f7..2a0f992ca0be 100644
--- a/tools/perf/builtin-inject.c
+++ b/tools/perf/builtin-inject.c
@@ -1501,7 +1501,7 @@ static int host__finished_init(struct perf_session *session, union perf_event *e
return ret;
if (!gs->vcpu_cnt) {
- pr_err("No VCPU theads found for pid %u\n", gs->machine_pid);
+ pr_err("No VCPU threads found for pid %u\n", gs->machine_pid);
return -EINVAL;
}