2014-11-07 14:54:25

by Frans Klaver

[permalink] [raw]
Subject: [PATCH trivial] kernel: trace: fix typo

s,produciton,production

Signed-off-by: Frans Klaver <[email protected]>
---
kernel/trace/trace.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 8a52839..f3ef80c 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -2028,7 +2028,7 @@ void trace_printk_init_buffers(void)
pr_warning("** trace_printk() being used. Allocating extra memory. **\n");
pr_warning("** **\n");
pr_warning("** This means that this is a DEBUG kernel and it is **\n");
- pr_warning("** unsafe for produciton use. **\n");
+ pr_warning("** unsafe for production use. **\n");
pr_warning("** **\n");
pr_warning("** If you see this message and you are not debugging **\n");
pr_warning("** the kernel, report this immediately to your vendor! **\n");
--
2.1.0


2014-11-07 14:58:42

by Steven Rostedt

[permalink] [raw]
Subject: Re: [PATCH trivial] kernel: trace: fix typo

On Fri, 7 Nov 2014 15:53:44 +0100
Frans Klaver <[email protected]> wrote:

> s,produciton,production
>
> Signed-off-by: Frans Klaver <[email protected]>
> ---
> kernel/trace/trace.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
> index 8a52839..f3ef80c 100644
> --- a/kernel/trace/trace.c
> +++ b/kernel/trace/trace.c
> @@ -2028,7 +2028,7 @@ void trace_printk_init_buffers(void)
> pr_warning("** trace_printk() being used. Allocating extra memory. **\n");
> pr_warning("** **\n");
> pr_warning("** This means that this is a DEBUG kernel and it is **\n");
> - pr_warning("** unsafe for produciton use. **\n");
> + pr_warning("** unsafe for production use. **\n");

Hah!

With such a big annoying message like that, with several people that
have mentioned this to me (both good and bad), nobody noticed this typo!

Probably was so big that a little thing like this was hard to see.

> pr_warning("** **\n");
> pr_warning("** If you see this message and you are not debugging **\n");
> pr_warning("** the kernel, report this immediately to your vendor! **\n");


Thanks!

Acked-by: Steven Rostedt <[email protected]>

-- Steve