All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] tracing: fix comments of event_trigger_separate_filter()
@ 2022-05-26  7:29 sunliming
  0 siblings, 0 replies; only message in thread
From: sunliming @ 2022-05-26  7:29 UTC (permalink / raw)
  To: rostedt, mingo; +Cc: linux-kernel, kelulanainsley, sunliming

The parameter name in comments of event_trigger_separate_filter() is
inconsistent with actual parameter name, fix it.

Signed-off-by: sunliming <sunliming@kylinos.cn>
---
 kernel/trace/trace_events_trigger.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/kernel/trace/trace_events_trigger.c b/kernel/trace/trace_events_trigger.c
index 21592bed2e89..cb866c3141af 100644
--- a/kernel/trace/trace_events_trigger.c
+++ b/kernel/trace/trace_events_trigger.c
@@ -738,15 +738,15 @@ bool event_trigger_empty_param(const char *param)
 
 /**
  * event_trigger_separate_filter - separate an event trigger from a filter
- * @param: The param string containing trigger and possibly filter
- * @trigger: outparam, will be filled with a pointer to the trigger
+ * @param_and_filter: String containing trigger and possibly filter
+ * @param: outparam, will be filled with a pointer to the trigger
  * @filter: outparam, will be filled with a pointer to the filter
  * @param_required: Specifies whether or not the param string is required
  *
  * Given a param string of the form '[trigger] [if filter]', this
  * function separates the filter from the trigger and returns the
- * trigger in *trigger and the filter in *filter.  Either the *trigger
- * or the *filter may be set to NULL by this function - if not set to
+ * trigger in @param and the filter in @filter.  Either the @param
+ * or the @filter may be set to NULL by this function - if not set to
  * NULL, they will contain strings corresponding to the trigger and
  * filter.
  *
-- 
2.25.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-05-26  7:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-26  7:29 [PATCH V2] tracing: fix comments of event_trigger_separate_filter() sunliming

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.