All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tracing/hist: add in missing * in comment blocks
@ 2022-10-20 13:30 Colin Ian King
  2022-10-20 14:44 ` Masami Hiramatsu
  0 siblings, 1 reply; 5+ messages in thread
From: Colin Ian King @ 2022-10-20 13:30 UTC (permalink / raw)
  To: Steven Rostedt, Masami Hiramatsu; +Cc: kernel-janitors, linux-kernel

There are a couple of missing * in comment blocks. Fix these.
Cleans up two clang warnings:

kernel/trace/trace_events_hist.c:986: warning: bad line:
kernel/trace/trace_events_hist.c:3229: warning: bad line:

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 kernel/trace/trace_events_hist.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/trace/trace_events_hist.c b/kernel/trace/trace_events_hist.c
index 48465f7e97b4..087c19548049 100644
--- a/kernel/trace/trace_events_hist.c
+++ b/kernel/trace/trace_events_hist.c
@@ -983,7 +983,7 @@ static struct hist_field *find_any_var_ref(struct hist_trigger_data *hist_data,
  * A trigger can define one or more variables.  If any one of them is
  * currently referenced by any other trigger, this function will
  * determine that.
-
+ *
  * Typically used to determine whether or not a trigger can be removed
  * - if there are any references to a trigger's variables, it cannot.
  *
@@ -3226,7 +3226,7 @@ static struct field_var *create_field_var(struct hist_trigger_data *hist_data,
  * events.  However, for convenience, users are allowed to directly
  * specify an event field in an action, which will be automatically
  * converted into a variable on their behalf.
-
+ *
  * This function creates a field variable with the name var_name on
  * the hist trigger currently being defined on the target event.  If
  * subsys_name and event_name are specified, this function simply
-- 
2.37.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] tracing/hist: add in missing * in comment blocks
  2022-10-20 13:30 [PATCH] tracing/hist: add in missing * in comment blocks Colin Ian King
@ 2022-10-20 14:44 ` Masami Hiramatsu
  2022-10-20 15:10   ` Colin King (gmail)
  0 siblings, 1 reply; 5+ messages in thread
From: Masami Hiramatsu @ 2022-10-20 14:44 UTC (permalink / raw)
  To: Colin Ian King; +Cc: Steven Rostedt, kernel-janitors, linux-kernel

Hi,

On Thu, 20 Oct 2022 14:30:19 +0100
Colin Ian King <colin.i.king@gmail.com> wrote:

> There are a couple of missing * in comment blocks. Fix these.
> Cleans up two clang warnings:
> 
> kernel/trace/trace_events_hist.c:986: warning: bad line:
> kernel/trace/trace_events_hist.c:3229: warning: bad line:
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Thanks for the patch. 

Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>

BTW, what version of clang are you using?
I couldn't see this warning with clang 15.0.0. Maybe I need a kconfig option?

Thank you,

> ---
>  kernel/trace/trace_events_hist.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/kernel/trace/trace_events_hist.c b/kernel/trace/trace_events_hist.c
> index 48465f7e97b4..087c19548049 100644
> --- a/kernel/trace/trace_events_hist.c
> +++ b/kernel/trace/trace_events_hist.c
> @@ -983,7 +983,7 @@ static struct hist_field *find_any_var_ref(struct hist_trigger_data *hist_data,
>   * A trigger can define one or more variables.  If any one of them is
>   * currently referenced by any other trigger, this function will
>   * determine that.
> -
> + *
>   * Typically used to determine whether or not a trigger can be removed
>   * - if there are any references to a trigger's variables, it cannot.
>   *
> @@ -3226,7 +3226,7 @@ static struct field_var *create_field_var(struct hist_trigger_data *hist_data,
>   * events.  However, for convenience, users are allowed to directly
>   * specify an event field in an action, which will be automatically
>   * converted into a variable on their behalf.
> -
> + *
>   * This function creates a field variable with the name var_name on
>   * the hist trigger currently being defined on the target event.  If
>   * subsys_name and event_name are specified, this function simply
> -- 
> 2.37.3
> 


-- 
Masami Hiramatsu (Google) <mhiramat@kernel.org>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tracing/hist: add in missing * in comment blocks
  2022-10-20 14:44 ` Masami Hiramatsu
@ 2022-10-20 15:10   ` Colin King (gmail)
  2022-10-20 18:07     ` Randy Dunlap
  0 siblings, 1 reply; 5+ messages in thread
From: Colin King (gmail) @ 2022-10-20 15:10 UTC (permalink / raw)
  To: Masami Hiramatsu (Google); +Cc: Steven Rostedt, kernel-janitors, linux-kernel

On 20/10/2022 15:44, Masami Hiramatsu (Google) wrote:
> Hi,
> 
> On Thu, 20 Oct 2022 14:30:19 +0100
> Colin Ian King <colin.i.king@gmail.com> wrote:
> 
>> There are a couple of missing * in comment blocks. Fix these.
>> Cleans up two clang warnings:
>>
>> kernel/trace/trace_events_hist.c:986: warning: bad line:
>> kernel/trace/trace_events_hist.c:3229: warning: bad line:
>>
>> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> 
> Thanks for the patch.
> 
> Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
> 
> BTW, what version of clang are you using?
> I couldn't see this warning with clang 15.0.0. Maybe I need a kconfig option?

clang-13 and kernel W=1 for this specific case, e.g. kernel built using 
make  CC=clang-13 HOSTCC=clang-13 W=1


> 
> Thank you,
> 
>> ---
>>   kernel/trace/trace_events_hist.c | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/kernel/trace/trace_events_hist.c b/kernel/trace/trace_events_hist.c
>> index 48465f7e97b4..087c19548049 100644
>> --- a/kernel/trace/trace_events_hist.c
>> +++ b/kernel/trace/trace_events_hist.c
>> @@ -983,7 +983,7 @@ static struct hist_field *find_any_var_ref(struct hist_trigger_data *hist_data,
>>    * A trigger can define one or more variables.  If any one of them is
>>    * currently referenced by any other trigger, this function will
>>    * determine that.
>> -
>> + *
>>    * Typically used to determine whether or not a trigger can be removed
>>    * - if there are any references to a trigger's variables, it cannot.
>>    *
>> @@ -3226,7 +3226,7 @@ static struct field_var *create_field_var(struct hist_trigger_data *hist_data,
>>    * events.  However, for convenience, users are allowed to directly
>>    * specify an event field in an action, which will be automatically
>>    * converted into a variable on their behalf.
>> -
>> + *
>>    * This function creates a field variable with the name var_name on
>>    * the hist trigger currently being defined on the target event.  If
>>    * subsys_name and event_name are specified, this function simply
>> -- 
>> 2.37.3
>>
> 
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tracing/hist: add in missing * in comment blocks
  2022-10-20 15:10   ` Colin King (gmail)
@ 2022-10-20 18:07     ` Randy Dunlap
  2022-10-21 14:28       ` Masami Hiramatsu
  0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2022-10-20 18:07 UTC (permalink / raw)
  To: Colin King (gmail), Masami Hiramatsu (Google)
  Cc: Steven Rostedt, kernel-janitors, linux-kernel



On 10/20/22 08:10, Colin King (gmail) wrote:
> On 20/10/2022 15:44, Masami Hiramatsu (Google) wrote:
>> Hi,
>>
>> On Thu, 20 Oct 2022 14:30:19 +0100
>> Colin Ian King <colin.i.king@gmail.com> wrote:
>>
>>> There are a couple of missing * in comment blocks. Fix these.
>>> Cleans up two clang warnings:
>>>
>>> kernel/trace/trace_events_hist.c:986: warning: bad line:
>>> kernel/trace/trace_events_hist.c:3229: warning: bad line:
>>>
>>> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
>>
>> Thanks for the patch.
>>
>> Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
>>
>> BTW, what version of clang are you using?
>> I couldn't see this warning with clang 15.0.0. Maybe I need a kconfig option?
> 
> clang-13 and kernel W=1 for this specific case, e.g. kernel built using make  CC=clang-13 HOSTCC=clang-13 W=1
> 

but those are kernel-doc warnings, not clang (AFAIK).

> 
>>
>> Thank you,
>>
>>> ---
>>>   kernel/trace/trace_events_hist.c | 4 ++--
>>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/kernel/trace/trace_events_hist.c b/kernel/trace/trace_events_hist.c
>>> index 48465f7e97b4..087c19548049 100644
>>> --- a/kernel/trace/trace_events_hist.c
>>> +++ b/kernel/trace/trace_events_hist.c
>>> @@ -983,7 +983,7 @@ static struct hist_field *find_any_var_ref(struct hist_trigger_data *hist_data,
>>>    * A trigger can define one or more variables.  If any one of them is
>>>    * currently referenced by any other trigger, this function will
>>>    * determine that.
>>> -
>>> + *
>>>    * Typically used to determine whether or not a trigger can be removed
>>>    * - if there are any references to a trigger's variables, it cannot.
>>>    *
>>> @@ -3226,7 +3226,7 @@ static struct field_var *create_field_var(struct hist_trigger_data *hist_data,
>>>    * events.  However, for convenience, users are allowed to directly
>>>    * specify an event field in an action, which will be automatically
>>>    * converted into a variable on their behalf.
>>> -
>>> + *
>>>    * This function creates a field variable with the name var_name on
>>>    * the hist trigger currently being defined on the target event.  If
>>>    * subsys_name and event_name are specified, this function simply
>>> -- 
>>> 2.37.3
>>>
>>
>>
> 

-- 
~Randy

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tracing/hist: add in missing * in comment blocks
  2022-10-20 18:07     ` Randy Dunlap
@ 2022-10-21 14:28       ` Masami Hiramatsu
  0 siblings, 0 replies; 5+ messages in thread
From: Masami Hiramatsu @ 2022-10-21 14:28 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Colin King (gmail), Steven Rostedt, kernel-janitors, linux-kernel

On Thu, 20 Oct 2022 11:07:12 -0700
Randy Dunlap <rdunlap@infradead.org> wrote:

> 
> 
> On 10/20/22 08:10, Colin King (gmail) wrote:
> > On 20/10/2022 15:44, Masami Hiramatsu (Google) wrote:
> >> Hi,
> >>
> >> On Thu, 20 Oct 2022 14:30:19 +0100
> >> Colin Ian King <colin.i.king@gmail.com> wrote:
> >>
> >>> There are a couple of missing * in comment blocks. Fix these.
> >>> Cleans up two clang warnings:
> >>>
> >>> kernel/trace/trace_events_hist.c:986: warning: bad line:
> >>> kernel/trace/trace_events_hist.c:3229: warning: bad line:
> >>>
> >>> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> >>
> >> Thanks for the patch.
> >>
> >> Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
> >>
> >> BTW, what version of clang are you using?
> >> I couldn't see this warning with clang 15.0.0. Maybe I need a kconfig option?
> > 
> > clang-13 and kernel W=1 for this specific case, e.g. kernel built using make  CC=clang-13 HOSTCC=clang-13 W=1
> > 
> 
> but those are kernel-doc warnings, not clang (AFAIK).

Ah, I got it.

Thanks!

> 
> > 
> >>
> >> Thank you,
> >>
> >>> ---
> >>>   kernel/trace/trace_events_hist.c | 4 ++--
> >>>   1 file changed, 2 insertions(+), 2 deletions(-)
> >>>
> >>> diff --git a/kernel/trace/trace_events_hist.c b/kernel/trace/trace_events_hist.c
> >>> index 48465f7e97b4..087c19548049 100644
> >>> --- a/kernel/trace/trace_events_hist.c
> >>> +++ b/kernel/trace/trace_events_hist.c
> >>> @@ -983,7 +983,7 @@ static struct hist_field *find_any_var_ref(struct hist_trigger_data *hist_data,
> >>>    * A trigger can define one or more variables.  If any one of them is
> >>>    * currently referenced by any other trigger, this function will
> >>>    * determine that.
> >>> -
> >>> + *
> >>>    * Typically used to determine whether or not a trigger can be removed
> >>>    * - if there are any references to a trigger's variables, it cannot.
> >>>    *
> >>> @@ -3226,7 +3226,7 @@ static struct field_var *create_field_var(struct hist_trigger_data *hist_data,
> >>>    * events.  However, for convenience, users are allowed to directly
> >>>    * specify an event field in an action, which will be automatically
> >>>    * converted into a variable on their behalf.
> >>> -
> >>> + *
> >>>    * This function creates a field variable with the name var_name on
> >>>    * the hist trigger currently being defined on the target event.  If
> >>>    * subsys_name and event_name are specified, this function simply
> >>> -- 
> >>> 2.37.3
> >>>
> >>
> >>
> > 
> 
> -- 
> ~Randy


-- 
Masami Hiramatsu (Google) <mhiramat@kernel.org>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-10-21 14:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-20 13:30 [PATCH] tracing/hist: add in missing * in comment blocks Colin Ian King
2022-10-20 14:44 ` Masami Hiramatsu
2022-10-20 15:10   ` Colin King (gmail)
2022-10-20 18:07     ` Randy Dunlap
2022-10-21 14:28       ` Masami Hiramatsu

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.