The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH]append prompt in /debug/tracing/README file.
@ 2009-05-14  8:23 GeunSik Lim
  2009-05-14  8:28 ` Minchan Kim
  2009-05-15 17:45 ` [tip:tracing/urgent] tracing: Append " tip-bot for GeunSik Lim
  0 siblings, 2 replies; 6+ messages in thread
From: GeunSik Lim @ 2009-05-14  8:23 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: Ingo Molnar, linux-rt-users, linux-kernel, williams, tglx

[-- Attachment #1: Type: text/plain, Size: 1209 bytes --]


Dear Steven Rostedt,

    Please, Append prompt in /debug/tracing/README file.
    
    This is trivial issue. Fix typo Mini Howto file(README) for ftrace.

    Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>

diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 1ce5dc6..a4726f5 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -2380,7 +2380,7 @@ static const char readme_msg[] =
 	"# echo print-parent > /debug/tracing/trace_options\n"
 	"# echo 1 > /debug/tracing/tracing_enabled\n"
 	"# cat /debug/tracing/trace > /tmp/trace.txt\n"
-	"echo 0 > /debug/tracing/tracing_enabled\n"
+	"# echo 0 > /debug/tracing/tracing_enabled\n"
 ;
 
 static ssize_t



-----------------------------------------------
To unsubscribe from this list: send the line "unsubscribe linux-***" 
in the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

GeunSik Lim (ELS - OS Group - S/W Lab - SAIT - SAMSUNG)
e-Mail  :1) geunsik.lim@samsung.com
         2) leemgs@gmail.com , leemgs1@gmail.com
HomePage: http://intomail.dnip.net/invain/me/
-----------------------------------------------

[-- Attachment #2: append-prompt-in-readme-ftrace.patch --]
[-- Type: text/x-patch, Size: 779 bytes --]

commit 52d07e507de331cff1623d60cda05a5c2435fac8
Author: GeunSik,Lim <leemgs1@gmail.com>
Date:   Thu May 14 17:18:09 2009 +0900

    append prompt in /debug/tracing/README file.
    
    This is trivial issue. Fix typo Mini Howto file(README) for ftrace.

    Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>

diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 1ce5dc6..a4726f5 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -2380,7 +2380,7 @@ static const char readme_msg[] =
 	"# echo print-parent > /debug/tracing/trace_options\n"
 	"# echo 1 > /debug/tracing/tracing_enabled\n"
 	"# cat /debug/tracing/trace > /tmp/trace.txt\n"
-	"echo 0 > /debug/tracing/tracing_enabled\n"
+	"# echo 0 > /debug/tracing/tracing_enabled\n"
 ;
 
 static ssize_t

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

* Re: [PATCH]append prompt in /debug/tracing/README file.
  2009-05-14  8:23 [PATCH]append prompt in /debug/tracing/README file GeunSik Lim
@ 2009-05-14  8:28 ` Minchan Kim
  2009-05-14 12:18   ` GeunSik Lim
  2009-05-14 13:41   ` Jiri Kosina
  2009-05-15 17:45 ` [tip:tracing/urgent] tracing: Append " tip-bot for GeunSik Lim
  1 sibling, 2 replies; 6+ messages in thread
From: Minchan Kim @ 2009-05-14  8:28 UTC (permalink / raw)
  To: leemgs1
  Cc: Steven Rostedt, Ingo Molnar, linux-rt-users, linux-kernel,
	williams, tglx, Jiri Kosina

Hi, GeunkSik.

For fixing trivial typo, Let Cced trivial patch maintainer.

TRIVIAL PATCHES
P:  Jiri Kosina
M:  trivial@kernel.org
L:  linux-kernel@vger.kernel.org
T:  git kernel.org:/pub/scm/linux/kernel/git/jikos/trivial.git
S:  Maintained


2009/5/14 GeunSik Lim <leemgs1@gmail.com>:
>
> Dear Steven Rostedt,
>
>    Please, Append prompt in /debug/tracing/README file.
>
>    This is trivial issue. Fix typo Mini Howto file(README) for ftrace.
>
>    Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>
>
> diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
> index 1ce5dc6..a4726f5 100644
> --- a/kernel/trace/trace.c
> +++ b/kernel/trace/trace.c
> @@ -2380,7 +2380,7 @@ static const char readme_msg[] =
>        "# echo print-parent > /debug/tracing/trace_options\n"
>        "# echo 1 > /debug/tracing/tracing_enabled\n"
>        "# cat /debug/tracing/trace > /tmp/trace.txt\n"
> -       "echo 0 > /debug/tracing/tracing_enabled\n"
> +       "# echo 0 > /debug/tracing/tracing_enabled\n"
>  ;
>
>  static ssize_t
>
>
>
> -----------------------------------------------
> To unsubscribe from this list: send the line "unsubscribe linux-***"
> in the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>
> GeunSik Lim (ELS - OS Group - S/W Lab - SAIT - SAMSUNG)
> e-Mail  :1) geunsik.lim@samsung.com
>         2) leemgs@gmail.com , leemgs1@gmail.com
> HomePage: http://intomail.dnip.net/invain/me/
> -----------------------------------------------
>



-- 
Kinds regards,
Minchan Kim

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

* Re: [PATCH]append prompt in /debug/tracing/README file.
  2009-05-14  8:28 ` Minchan Kim
@ 2009-05-14 12:18   ` GeunSik Lim
  2009-05-14 13:41   ` Jiri Kosina
  1 sibling, 0 replies; 6+ messages in thread
From: GeunSik Lim @ 2009-05-14 12:18 UTC (permalink / raw)
  To: Minchan Kim
  Cc: Steven Rostedt, Ingo Molnar, linux-rt-users, linux-kernel,
	williams, tglx, Jiri Kosina

hi minchan,

thank you for explanation about a trivial patch.

regards,
geunsik lim ( invain )

2009/5/14 Minchan Kim <minchan.kim@gmail.com>:
> Hi, GeunkSik.
>
> For fixing trivial typo, Let Cced trivial patch maintainer.
>
> TRIVIAL PATCHES
> P:  Jiri Kosina
> M:  trivial@kernel.org
> L:  linux-kernel@vger.kernel.org
> T:  git kernel.org:/pub/scm/linux/kernel/git/jikos/trivial.git
> S:  Maintained
>
>
> 2009/5/14 GeunSik Lim <leemgs1@gmail.com>:
>>
>> Dear Steven Rostedt,
>>
>>    Please, Append prompt in /debug/tracing/README file.
>>
>>    This is trivial issue. Fix typo Mini Howto file(README) for ftrace.
>>
>>    Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>
>>
>> diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
>> index 1ce5dc6..a4726f5 100644
>> --- a/kernel/trace/trace.c
>> +++ b/kernel/trace/trace.c
>> @@ -2380,7 +2380,7 @@ static const char readme_msg[] =
>>        "# echo print-parent > /debug/tracing/trace_options\n"
>>        "# echo 1 > /debug/tracing/tracing_enabled\n"
>>        "# cat /debug/tracing/trace > /tmp/trace.txt\n"
>> -       "echo 0 > /debug/tracing/tracing_enabled\n"
>> +       "# echo 0 > /debug/tracing/tracing_enabled\n"
>>  ;
>>
>>  static ssize_t
>>
>>
>>
>> -----------------------------------------------
>> To unsubscribe from this list: send the line "unsubscribe linux-***"
>> in the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> Please read the FAQ at  http://www.tux.org/lkml/
>>
>> GeunSik Lim (ELS - OS Group - S/W Lab - SAIT - SAMSUNG)
>> e-Mail  :1) geunsik.lim@samsung.com
>>         2) leemgs@gmail.com , leemgs1@gmail.com
>> HomePage: http://intomail.dnip.net/invain/me/
>> -----------------------------------------------
>>
>
>
>
> --
> Kinds regards,
> Minchan Kim
>



-- 
Regards,
GeunSik Lim
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH]append prompt in /debug/tracing/README file.
  2009-05-14  8:28 ` Minchan Kim
  2009-05-14 12:18   ` GeunSik Lim
@ 2009-05-14 13:41   ` Jiri Kosina
  2009-05-14 14:01     ` Steven Rostedt
  1 sibling, 1 reply; 6+ messages in thread
From: Jiri Kosina @ 2009-05-14 13:41 UTC (permalink / raw)
  To: Minchan Kim
  Cc: leemgs1, Steven Rostedt, Ingo Molnar, linux-rt-users,
	linux-kernel, williams, tglx, Jiri Kosina

[-- Attachment #1: Type: TEXT/PLAIN, Size: 984 bytes --]

On Thu, 14 May 2009, Minchan Kim wrote:

> >    Please, Append prompt in /debug/tracing/README file.
> >
> >    This is trivial issue. Fix typo Mini Howto file(README) for ftrace.
> >
> >    Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>
> >
> > diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
> > index 1ce5dc6..a4726f5 100644
> > --- a/kernel/trace/trace.c
> > +++ b/kernel/trace/trace.c
> > @@ -2380,7 +2380,7 @@ static const char readme_msg[] =
> >        "# echo print-parent > /debug/tracing/trace_options\n"
> >        "# echo 1 > /debug/tracing/tracing_enabled\n"
> >        "# cat /debug/tracing/trace > /tmp/trace.txt\n"
> > -       "echo 0 > /debug/tracing/tracing_enabled\n"
> > +       "# echo 0 > /debug/tracing/tracing_enabled\n"
> >  ;
> >
> >  static ssize_t

I have applied this to trivial tree. If anyone else has already applied it 
to his tree, please let me know so that I can drop it.

Thanks,

-- 
Jiri Kosina
SUSE Labs

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

* Re: [PATCH]append prompt in /debug/tracing/README file.
  2009-05-14 13:41   ` Jiri Kosina
@ 2009-05-14 14:01     ` Steven Rostedt
  0 siblings, 0 replies; 6+ messages in thread
From: Steven Rostedt @ 2009-05-14 14:01 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: Minchan Kim, leemgs1, Ingo Molnar, linux-rt-users, linux-kernel,
	williams, tglx, Jiri Kosina

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1231 bytes --]


On Thu, 14 May 2009, Jiri Kosina wrote:

> On Thu, 14 May 2009, Minchan Kim wrote:
> 
> > >    Please, Append prompt in /debug/tracing/README file.
> > >
> > >    This is trivial issue. Fix typo Mini Howto file(README) for ftrace.
> > >
> > >    Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>
> > >
> > > diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
> > > index 1ce5dc6..a4726f5 100644
> > > --- a/kernel/trace/trace.c
> > > +++ b/kernel/trace/trace.c
> > > @@ -2380,7 +2380,7 @@ static const char readme_msg[] =
> > >        "# echo print-parent > /debug/tracing/trace_options\n"
> > >        "# echo 1 > /debug/tracing/tracing_enabled\n"
> > >        "# cat /debug/tracing/trace > /tmp/trace.txt\n"
> > > -       "echo 0 > /debug/tracing/tracing_enabled\n"
> > > +       "# echo 0 > /debug/tracing/tracing_enabled\n"
> > >  ;
> > >
> > >  static ssize_t
> 
> I have applied this to trivial tree. If anyone else has already applied it 
> to his tree, please let me know so that I can drop it.

It's fine with me that this goes via the trivial tree.

If you want, you can also add:

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

Thanks!

-- Steve

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

* [tip:tracing/urgent] tracing: Append prompt in /debug/tracing/README file
  2009-05-14  8:23 [PATCH]append prompt in /debug/tracing/README file GeunSik Lim
  2009-05-14  8:28 ` Minchan Kim
@ 2009-05-15 17:45 ` tip-bot for GeunSik Lim
  1 sibling, 0 replies; 6+ messages in thread
From: tip-bot for GeunSik Lim @ 2009-05-15 17:45 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, hpa, mingo, williams, geunsik.lim, leemgs1, rostedt,
	tglx, mingo

Commit-ID:  88fc86c283d9c3854e67e4155808027bc2519eb6
Gitweb:     http://git.kernel.org/tip/88fc86c283d9c3854e67e4155808027bc2519eb6
Author:     GeunSik Lim <leemgs1@gmail.com>
AuthorDate: Thu, 14 May 2009 17:23:38 +0900
Committer:  Ingo Molnar <mingo@elte.hu>
CommitDate: Fri, 15 May 2009 19:43:22 +0200

tracing: Append prompt in /debug/tracing/README file

append prompt in /debug/tracing/README file.

This is trivial issue. Fix typo Mini Howto file(README) for ftrace.

[ Impact: cleanup ]

Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Cc: williams <williams@redhat.com>
LKML-Reference: <1242289418.31161.45.camel@centos51>
Signed-off-by: Ingo Molnar <mingo@elte.hu>


---
 kernel/trace/trace.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index a884c09..cda81ec 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -2380,7 +2380,7 @@ static const char readme_msg[] =
 	"# echo print-parent > /debug/tracing/trace_options\n"
 	"# echo 1 > /debug/tracing/tracing_enabled\n"
 	"# cat /debug/tracing/trace > /tmp/trace.txt\n"
-	"echo 0 > /debug/tracing/tracing_enabled\n"
+	"# echo 0 > /debug/tracing/tracing_enabled\n"
 ;
 
 static ssize_t

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

end of thread, other threads:[~2009-05-15 17:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-14  8:23 [PATCH]append prompt in /debug/tracing/README file GeunSik Lim
2009-05-14  8:28 ` Minchan Kim
2009-05-14 12:18   ` GeunSik Lim
2009-05-14 13:41   ` Jiri Kosina
2009-05-14 14:01     ` Steven Rostedt
2009-05-15 17:45 ` [tip:tracing/urgent] tracing: Append " tip-bot for GeunSik Lim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox