linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] docs: trace: boottime-trace.rst: fix typo
@ 2025-05-26 13:40 Runji Liu
  2025-05-27 14:01 ` Steven Rostedt
  2025-06-09 20:35 ` Jonathan Corbet
  0 siblings, 2 replies; 4+ messages in thread
From: Runji Liu @ 2025-05-26 13:40 UTC (permalink / raw)
  To: rostedt, mhiramat, mathieu.desnoyers, corbet
  Cc: linux-kernel, linux-trace-kernel, linux-doc, Runji Liu

Replace misspelled "eariler" with "earlier" and drop the stray period
after "example".

Signed-off-by: Runji Liu <runjiliu.tech@gmail.com>
---
 Documentation/trace/boottime-trace.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/trace/boottime-trace.rst b/Documentation/trace/boottime-trace.rst
index d594597201fd..3efac10adb36 100644
--- a/Documentation/trace/boottime-trace.rst
+++ b/Documentation/trace/boottime-trace.rst
@@ -198,8 +198,8 @@ Most of the subsystems and architecture dependent drivers will be initialized
 after that (arch_initcall or subsys_initcall). Thus, you can trace those with
 boot-time tracing.
 If you want to trace events before core_initcall, you can use the options
-starting with ``kernel``. Some of them will be enabled eariler than the initcall
-processing (for example,. ``kernel.ftrace=function`` and ``kernel.trace_event``
+starting with ``kernel``. Some of them will be enabled earlier than the initcall
+processing (for example, ``kernel.ftrace=function`` and ``kernel.trace_event``
 will start before the initcall.)
 
 
-- 
2.43.0


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

* Re: [PATCH] docs: trace: boottime-trace.rst: fix typo
  2025-05-26 13:40 [PATCH] docs: trace: boottime-trace.rst: fix typo Runji Liu
@ 2025-05-27 14:01 ` Steven Rostedt
  2025-05-27 23:40   ` Masami Hiramatsu
  2025-06-09 20:35 ` Jonathan Corbet
  1 sibling, 1 reply; 4+ messages in thread
From: Steven Rostedt @ 2025-05-27 14:01 UTC (permalink / raw)
  To: Runji Liu
  Cc: mhiramat, mathieu.desnoyers, corbet, linux-kernel,
	linux-trace-kernel, linux-doc

On Mon, 26 May 2025 21:40:46 +0800
Runji Liu <runjiliu.tech@gmail.com> wrote:

> Replace misspelled "eariler" with "earlier" and drop the stray period
> after "example".
> 
> Signed-off-by: Runji Liu <runjiliu.tech@gmail.com>

Acked-by: Steven Rostedt (Google) <rostedt@goodmis.org>

-- Steve

> ---
>  Documentation/trace/boottime-trace.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/trace/boottime-trace.rst b/Documentation/trace/boottime-trace.rst
> index d594597201fd..3efac10adb36 100644
> --- a/Documentation/trace/boottime-trace.rst
> +++ b/Documentation/trace/boottime-trace.rst
> @@ -198,8 +198,8 @@ Most of the subsystems and architecture dependent drivers will be initialized
>  after that (arch_initcall or subsys_initcall). Thus, you can trace those with
>  boot-time tracing.
>  If you want to trace events before core_initcall, you can use the options
> -starting with ``kernel``. Some of them will be enabled eariler than the initcall
> -processing (for example,. ``kernel.ftrace=function`` and ``kernel.trace_event``
> +starting with ``kernel``. Some of them will be enabled earlier than the initcall
> +processing (for example, ``kernel.ftrace=function`` and ``kernel.trace_event``
>  will start before the initcall.)
>  
>  


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

* Re: [PATCH] docs: trace: boottime-trace.rst: fix typo
  2025-05-27 14:01 ` Steven Rostedt
@ 2025-05-27 23:40   ` Masami Hiramatsu
  0 siblings, 0 replies; 4+ messages in thread
From: Masami Hiramatsu @ 2025-05-27 23:40 UTC (permalink / raw)
  To: Steven Rostedt
  Cc: Runji Liu, mhiramat, mathieu.desnoyers, corbet, linux-kernel,
	linux-trace-kernel, linux-doc

On Tue, 27 May 2025 10:01:45 -0400
Steven Rostedt <rostedt@goodmis.org> wrote:

> On Mon, 26 May 2025 21:40:46 +0800
> Runji Liu <runjiliu.tech@gmail.com> wrote:
> 
> > Replace misspelled "eariler" with "earlier" and drop the stray period
> > after "example".
> > 
> > Signed-off-by: Runji Liu <runjiliu.tech@gmail.com>
> 
> Acked-by: Steven Rostedt (Google) <rostedt@goodmis.org>

This looks good to me. Thanks!

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


> 
> -- Steve
> 
> > ---
> >  Documentation/trace/boottime-trace.rst | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/Documentation/trace/boottime-trace.rst b/Documentation/trace/boottime-trace.rst
> > index d594597201fd..3efac10adb36 100644
> > --- a/Documentation/trace/boottime-trace.rst
> > +++ b/Documentation/trace/boottime-trace.rst
> > @@ -198,8 +198,8 @@ Most of the subsystems and architecture dependent drivers will be initialized
> >  after that (arch_initcall or subsys_initcall). Thus, you can trace those with
> >  boot-time tracing.
> >  If you want to trace events before core_initcall, you can use the options
> > -starting with ``kernel``. Some of them will be enabled eariler than the initcall
> > -processing (for example,. ``kernel.ftrace=function`` and ``kernel.trace_event``
> > +starting with ``kernel``. Some of them will be enabled earlier than the initcall
> > +processing (for example, ``kernel.ftrace=function`` and ``kernel.trace_event``
> >  will start before the initcall.)
> >  
> >  
> 


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

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

* Re: [PATCH] docs: trace: boottime-trace.rst: fix typo
  2025-05-26 13:40 [PATCH] docs: trace: boottime-trace.rst: fix typo Runji Liu
  2025-05-27 14:01 ` Steven Rostedt
@ 2025-06-09 20:35 ` Jonathan Corbet
  1 sibling, 0 replies; 4+ messages in thread
From: Jonathan Corbet @ 2025-06-09 20:35 UTC (permalink / raw)
  To: Runji Liu, rostedt, mhiramat, mathieu.desnoyers
  Cc: linux-kernel, linux-trace-kernel, linux-doc, Runji Liu

Runji Liu <runjiliu.tech@gmail.com> writes:

> Replace misspelled "eariler" with "earlier" and drop the stray period
> after "example".
>
> Signed-off-by: Runji Liu <runjiliu.tech@gmail.com>
> ---
>  Documentation/trace/boottime-trace.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Applied, thanks.

jon

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

end of thread, other threads:[~2025-06-09 20:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-26 13:40 [PATCH] docs: trace: boottime-trace.rst: fix typo Runji Liu
2025-05-27 14:01 ` Steven Rostedt
2025-05-27 23:40   ` Masami Hiramatsu
2025-06-09 20:35 ` Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).