summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice Hieronymus <mhi@mailbox.org>2025-11-21 23:18:29 +0100
committerSteven Rostedt (Google) <rostedt@goodmis.org>2025-12-05 15:43:40 -0500
commit86f320904e2f8795e3f1851f18ad7bf3f43d1c79 (patch)
tree428e0cd5bd369b14c914a107bed9224cf2650e5b
parentd4290963d5af2f10810a8887c1037f6d70e5a9bd (diff)
tracing: Fix typo in trace_events_filter.c
Fix typo "singe" to "single". Link: https://patch.msgid.link/20251121221835.28032-9-mhi@mailbox.org Signed-off-by: Maurice Hieronymus <mhi@mailbox.org> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
-rw-r--r--kernel/trace/trace_events_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c
index 54226b48b2d1..385af8405392 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -142,7 +142,7 @@ static bool is_not(const char *str)
}
/**
- * struct prog_entry - a singe entry in the filter program
+ * struct prog_entry - a single entry in the filter program
* @target: Index to jump to on a branch (actually one minus the index)
* @when_to_branch: The value of the result of the predicate to do a branch
* @pred: The predicate to execute.