* [PATCH -next] tracing/histogram: Update document for KEYS_MAX size
@ 2022-10-17 10:38 Zheng Yejian
2022-10-18 15:31 ` Masami Hiramatsu
0 siblings, 1 reply; 5+ messages in thread
From: Zheng Yejian @ 2022-10-17 10:38 UTC (permalink / raw)
To: rostedt, mhiramat, corbet, linux-doc, linux-kernel, tom.zanussi
Cc: zhengyejian1
After commit 4f36c2d85ced ("tracing: Increase tracing map KEYS_MAX size"),
'keys' supports up to three fields.
Signed-off-by: Zheng Yejian <zhengyejian1@huawei.com>
---
Documentation/trace/histogram.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/trace/histogram.rst b/Documentation/trace/histogram.rst
index c1b685a38f6b..87bd772836c0 100644
--- a/Documentation/trace/histogram.rst
+++ b/Documentation/trace/histogram.rst
@@ -39,7 +39,7 @@ Documentation written by Tom Zanussi
will use the event's kernel stacktrace as the key. The keywords
'keys' or 'key' can be used to specify keys, and the keywords
'values', 'vals', or 'val' can be used to specify values. Compound
- keys consisting of up to two fields can be specified by the 'keys'
+ keys consisting of up to three fields can be specified by the 'keys'
keyword. Hashing a compound key produces a unique entry in the
table for each unique combination of component keys, and can be
useful for providing more fine-grained summaries of event data.
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH -next] tracing/histogram: Update document for KEYS_MAX size
2022-10-17 10:38 [PATCH -next] tracing/histogram: Update document for KEYS_MAX size Zheng Yejian
@ 2022-10-18 15:31 ` Masami Hiramatsu
2022-10-18 15:35 ` Steven Rostedt
0 siblings, 1 reply; 5+ messages in thread
From: Masami Hiramatsu @ 2022-10-18 15:31 UTC (permalink / raw)
To: Zheng Yejian; +Cc: rostedt, corbet, linux-doc, linux-kernel, tom.zanussi
On Mon, 17 Oct 2022 10:38:06 +0000
Zheng Yejian <zhengyejian1@huawei.com> wrote:
> After commit 4f36c2d85ced ("tracing: Increase tracing map KEYS_MAX size"),
> 'keys' supports up to three fields.
This looks good to me.
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Steve, do you this this document fix should go into the stable trees?
Thank you,
>
> Signed-off-by: Zheng Yejian <zhengyejian1@huawei.com>
> ---
> Documentation/trace/histogram.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/trace/histogram.rst b/Documentation/trace/histogram.rst
> index c1b685a38f6b..87bd772836c0 100644
> --- a/Documentation/trace/histogram.rst
> +++ b/Documentation/trace/histogram.rst
> @@ -39,7 +39,7 @@ Documentation written by Tom Zanussi
> will use the event's kernel stacktrace as the key. The keywords
> 'keys' or 'key' can be used to specify keys, and the keywords
> 'values', 'vals', or 'val' can be used to specify values. Compound
> - keys consisting of up to two fields can be specified by the 'keys'
> + keys consisting of up to three fields can be specified by the 'keys'
> keyword. Hashing a compound key produces a unique entry in the
> table for each unique combination of component keys, and can be
> useful for providing more fine-grained summaries of event data.
> --
> 2.25.1
>
--
Masami Hiramatsu (Google) <mhiramat@kernel.org>
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH -next] tracing/histogram: Update document for KEYS_MAX size
2022-10-18 15:31 ` Masami Hiramatsu
@ 2022-10-18 15:35 ` Steven Rostedt
2022-10-18 15:49 ` Jonathan Corbet
0 siblings, 1 reply; 5+ messages in thread
From: Steven Rostedt @ 2022-10-18 15:35 UTC (permalink / raw)
To: Masami Hiramatsu (Google)
Cc: Zheng Yejian, corbet, linux-doc, linux-kernel, tom.zanussi
On Wed, 19 Oct 2022 00:31:34 +0900
Masami Hiramatsu (Google) <mhiramat@kernel.org> wrote:
> On Mon, 17 Oct 2022 10:38:06 +0000
> Zheng Yejian <zhengyejian1@huawei.com> wrote:
>
> > After commit 4f36c2d85ced ("tracing: Increase tracing map KEYS_MAX size"),
> > 'keys' supports up to three fields.
>
> This looks good to me.
>
> Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Thanks Masami.
>
> Steve, do you this this document fix should go into the stable trees?
We could label it as stable. Sure.
Jon, do you want to tag this for stable and pull it through your tree?
Should probably add a Fixes tag with the above commit.
-- Steve
>
> Thank you,
>
> >
> > Signed-off-by: Zheng Yejian <zhengyejian1@huawei.com>
> > ---
> > Documentation/trace/histogram.rst | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/Documentation/trace/histogram.rst b/Documentation/trace/histogram.rst
> > index c1b685a38f6b..87bd772836c0 100644
> > --- a/Documentation/trace/histogram.rst
> > +++ b/Documentation/trace/histogram.rst
> > @@ -39,7 +39,7 @@ Documentation written by Tom Zanussi
> > will use the event's kernel stacktrace as the key. The keywords
> > 'keys' or 'key' can be used to specify keys, and the keywords
> > 'values', 'vals', or 'val' can be used to specify values. Compound
> > - keys consisting of up to two fields can be specified by the 'keys'
> > + keys consisting of up to three fields can be specified by the 'keys'
> > keyword. Hashing a compound key produces a unique entry in the
> > table for each unique combination of component keys, and can be
> > useful for providing more fine-grained summaries of event data.
> > --
> > 2.25.1
> >
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH -next] tracing/histogram: Update document for KEYS_MAX size
2022-10-18 15:35 ` Steven Rostedt
@ 2022-10-18 15:49 ` Jonathan Corbet
2022-10-18 16:18 ` Steven Rostedt
0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Corbet @ 2022-10-18 15:49 UTC (permalink / raw)
To: Steven Rostedt, Masami Hiramatsu (Google)
Cc: Zheng Yejian, linux-doc, linux-kernel, tom.zanussi
Steven Rostedt <rostedt@goodmis.org> writes:
> On Wed, 19 Oct 2022 00:31:34 +0900
> Masami Hiramatsu (Google) <mhiramat@kernel.org> wrote:
>
>> On Mon, 17 Oct 2022 10:38:06 +0000
>> Zheng Yejian <zhengyejian1@huawei.com> wrote:
>>
>> > After commit 4f36c2d85ced ("tracing: Increase tracing map KEYS_MAX size"),
>> > 'keys' supports up to three fields.
>>
>> This looks good to me.
>>
>> Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
>
> Thanks Masami.
>
>>
>> Steve, do you this this document fix should go into the stable trees?
>
> We could label it as stable. Sure.
>
> Jon, do you want to tag this for stable and pull it through your tree?
Sure, I can do that.
Thanks,
jon
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-10-18 16:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-17 10:38 [PATCH -next] tracing/histogram: Update document for KEYS_MAX size Zheng Yejian
2022-10-18 15:31 ` Masami Hiramatsu
2022-10-18 15:35 ` Steven Rostedt
2022-10-18 15:49 ` Jonathan Corbet
2022-10-18 16:18 ` Steven Rostedt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox