All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] tracing/boot: bootconfig: Fixes and API name change
@ 2021-09-09 12:48 Masami Hiramatsu
  2021-09-09 13:11 ` Steven Rostedt
  0 siblings, 1 reply; 4+ messages in thread
From: Masami Hiramatsu @ 2021-09-09 12:48 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: linux-kernel, Masami Hiramatsu

Hi,

Here is a series of patches to fix some issues on boot-time tracing
and bootconfig. Yesterday I sent a bugfix(*), and today I found some
other issues.

(*) https://lore.kernel.org/all/163112988361.74896.2267026262061819145.stgit@devnote2/T/#u

This includes following patches.

[1/3] tracing/boot: Fix trace_boot_hist_add_array() to check array is value

[2/3] tracing/boot: Fix to check the histogram control param is a leaf node

[3/3] bootconfig: Rename xbc_node_find_child() to xbc_node_find_subkey()
 - Rename xbc_node_find_child() to xbc_node_find_subkey() to avoid
   confusing "child" and "subkey" words.



Thank you,

---

Masami Hiramatsu (3):
      tracing/boot: Fix trace_boot_hist_add_array() to check array is value
      tracing/boot: Fix to check the histogram control param is a leaf node
      bootconfig: Rename xbc_node_find_child() to xbc_node_find_subkey()


 include/linux/bootconfig.h |    4 ++--
 kernel/trace/trace_boot.c  |   35 +++++++++++++++++------------------
 lib/bootconfig.c           |    8 ++++----
 3 files changed, 23 insertions(+), 24 deletions(-)

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

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

* Re: [PATCH 0/3] tracing/boot: bootconfig: Fixes and API name change
  2021-09-09 12:48 [PATCH 0/3] tracing/boot: bootconfig: Fixes and API name change Masami Hiramatsu
@ 2021-09-09 13:11 ` Steven Rostedt
  2021-09-09 13:26   ` Masami Hiramatsu
  0 siblings, 1 reply; 4+ messages in thread
From: Steven Rostedt @ 2021-09-09 13:11 UTC (permalink / raw)
  To: Masami Hiramatsu; +Cc: linux-kernel

On Thu,  9 Sep 2021 21:48:43 +0900
Masami Hiramatsu <mhiramat@kernel.org> wrote:

> Hi,
> 
> Here is a series of patches to fix some issues on boot-time tracing
> and bootconfig. Yesterday I sent a bugfix(*), and today I found some
> other issues.
> 
> (*) https://lore.kernel.org/all/163112988361.74896.2267026262061819145.stgit@devnote2/T/#u
> 
> This includes following patches.
> 
> [1/3] tracing/boot: Fix trace_boot_hist_add_array() to check array is value
> 
> [2/3] tracing/boot: Fix to check the histogram control param is a leaf node
> 
> [3/3] bootconfig: Rename xbc_node_find_child() to xbc_node_find_subkey()
>  - Rename xbc_node_find_child() to xbc_node_find_subkey() to avoid
>    confusing "child" and "subkey" words.
> 

Masami,

Did this go out correctly?

I only received this email, and this email is not showing up on LKML.

 (https://lore.kernel.org/r/163119172318.151131.7138254940364392100.stgit%40devnote2
 gives "Not found")

-- Steve


> 
> 
> Thank you,
> 
> ---
> 
> Masami Hiramatsu (3):
>       tracing/boot: Fix trace_boot_hist_add_array() to check array is value
>       tracing/boot: Fix to check the histogram control param is a leaf node
>       bootconfig: Rename xbc_node_find_child() to xbc_node_find_subkey()
> 
> 
>  include/linux/bootconfig.h |    4 ++--
>  kernel/trace/trace_boot.c  |   35 +++++++++++++++++------------------
>  lib/bootconfig.c           |    8 ++++----
>  3 files changed, 23 insertions(+), 24 deletions(-)
> 


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

* Re: [PATCH 0/3] tracing/boot: bootconfig: Fixes and API name change
  2021-09-09 13:11 ` Steven Rostedt
@ 2021-09-09 13:26   ` Masami Hiramatsu
  0 siblings, 0 replies; 4+ messages in thread
From: Masami Hiramatsu @ 2021-09-09 13:26 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: linux-kernel

On Thu, 9 Sep 2021 09:11:23 -0400
Steven Rostedt <rostedt@goodmis.org> wrote:

> On Thu,  9 Sep 2021 21:48:43 +0900
> Masami Hiramatsu <mhiramat@kernel.org> wrote:
> 
> > Hi,
> > 
> > Here is a series of patches to fix some issues on boot-time tracing
> > and bootconfig. Yesterday I sent a bugfix(*), and today I found some
> > other issues.
> > 
> > (*) https://lore.kernel.org/all/163112988361.74896.2267026262061819145.stgit@devnote2/T/#u
> > 
> > This includes following patches.
> > 
> > [1/3] tracing/boot: Fix trace_boot_hist_add_array() to check array is value
> > 
> > [2/3] tracing/boot: Fix to check the histogram control param is a leaf node
> > 
> > [3/3] bootconfig: Rename xbc_node_find_child() to xbc_node_find_subkey()
> >  - Rename xbc_node_find_child() to xbc_node_find_subkey() to avoid
> >    confusing "child" and "subkey" words.
> > 
> 
> Masami,
> 
> Did this go out correctly?
> 
> I only received this email, and this email is not showing up on LKML.
> 
>  (https://lore.kernel.org/r/163119172318.151131.7138254940364392100.stgit%40devnote2
>  gives "Not found")

Oops, please ignore this. Maybe something went wrong. 
Hmm, OK, let me resend it with [RESEND] tag.

Thank you,

-- 
Masami Hiramatsu <mhiramat@kernel.org>

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

* [PATCH 0/3] tracing/boot: bootconfig: Fixes and API name change
@ 2021-09-09 13:12 Masami Hiramatsu
  0 siblings, 0 replies; 4+ messages in thread
From: Masami Hiramatsu @ 2021-09-09 13:12 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: linux-kernel, Masami Hiramatsu

Hi,

Here is a series of patches to fix some issues on boot-time tracing
and bootconfig. Yesterday I sent a bugfix(*), and today I found some
other issues.

(*) https://lore.kernel.org/all/163112988361.74896.2267026262061819145.stgit@devnote2/T/#u

This includes following patches.

[1/3] tracing/boot: Fix trace_boot_hist_add_array() to check array is value

[2/3] tracing/boot: Fix to check the histogram control param is a leaf node

[3/3] bootconfig: Rename xbc_node_find_child() to xbc_node_find_subkey()
 - Rename xbc_node_find_child() to xbc_node_find_subkey() to avoid
   confusing "child" and "subkey" words.



Thank you,

---

Masami Hiramatsu (3):
      tracing/boot: Fix trace_boot_hist_add_array() to check array is value
      tracing/boot: Fix to check the histogram control param is a leaf node
      bootconfig: Rename xbc_node_find_child() to xbc_node_find_subkey()


 include/linux/bootconfig.h |    4 ++--
 kernel/trace/trace_boot.c  |   37 ++++++++++++++++++-------------------
 lib/bootconfig.c           |    8 ++++----
 3 files changed, 24 insertions(+), 25 deletions(-)

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

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

end of thread, other threads:[~2021-09-09 13:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-09 12:48 [PATCH 0/3] tracing/boot: bootconfig: Fixes and API name change Masami Hiramatsu
2021-09-09 13:11 ` Steven Rostedt
2021-09-09 13:26   ` Masami Hiramatsu
2021-09-09 13:12 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.