linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/4] tracing: some fixes for 2.6.31
@ 2009-06-15  2:56 Li Zefan
  2009-06-15  2:56 ` [PATCH 1/4] tracing: fix a typo in tracing_cpumask_write() Li Zefan
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Li Zefan @ 2009-06-15  2:56 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Steven Rostedt, Frederic Weisbecker, LKML

Some small but not trival fixes for 2.6.31:

[PATCH 1/4] tracing: fix a typo in tracing_cpumask_write()
[PATCH 2/4] tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation
[PATCH 3/4] tracing/filters: operand can be negative
[PATCH 4/4] tracing/filters: strloc should be unsigned short
---
 kernel/trace/trace.c               |    8 ++++----
 kernel/trace/trace_events_filter.c |    9 +++++++--
 2 files changed, 11 insertions(+), 6 deletions(-)



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

* [PATCH 1/4] tracing: fix a typo in tracing_cpumask_write()
  2009-06-15  2:56 [PATCH 0/4] tracing: some fixes for 2.6.31 Li Zefan
@ 2009-06-15  2:56 ` Li Zefan
  2009-06-15 18:13   ` [tip:tracing/urgent] " tip-bot for Li Zefan
  2009-06-15  2:57 ` [PATCH 2/4] tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation Li Zefan
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Li Zefan @ 2009-06-15  2:56 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Steven Rostedt, Frederic Weisbecker, LKML

It's tracing_cpumask_new that should be kfree()ed.

This causes tracing_cpumask to be freed due to the typo:

 # echo z > tracing_cpumask
 bash: echo: write error: Invalid argument

And subsequent reads/writes to tracing_cpuamsk will access this
already-freed tracing_cpumask, thus may lead to crash.

[ Impact: fix leak and crash when writing invalid val to tracing_cpumask ]

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
 kernel/trace/trace.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 8acd9b8..7355a38 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -2191,11 +2191,12 @@ tracing_cpumask_write(struct file *filp, const char __user *ubuf,
 	if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
 		return -ENOMEM;
 
-	mutex_lock(&tracing_cpumask_update_lock);
 	err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
 	if (err)
 		goto err_unlock;
 
+	mutex_lock(&tracing_cpumask_update_lock);
+
 	local_irq_disable();
 	__raw_spin_lock(&ftrace_max_lock);
 	for_each_tracing_cpu(cpu) {
@@ -2223,8 +2224,7 @@ tracing_cpumask_write(struct file *filp, const char __user *ubuf,
 	return count;
 
 err_unlock:
-	mutex_unlock(&tracing_cpumask_update_lock);
-	free_cpumask_var(tracing_cpumask);
+	free_cpumask_var(tracing_cpumask_new);
 
 	return err;
 }
-- 
1.5.4.rc3


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

* [PATCH 2/4] tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation
  2009-06-15  2:56 [PATCH 0/4] tracing: some fixes for 2.6.31 Li Zefan
  2009-06-15  2:56 ` [PATCH 1/4] tracing: fix a typo in tracing_cpumask_write() Li Zefan
@ 2009-06-15  2:57 ` Li Zefan
  2009-06-15 18:13   ` [tip:tracing/urgent] " tip-bot for Li Zefan
  2009-06-15  2:58 ` [PATCH 3/4] tracing/filters: operand can be negative Li Zefan
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Li Zefan @ 2009-06-15  2:57 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Steven Rostedt, Frederic Weisbecker, LKML

Atomic allocation is not needed here.

[ Impact: clean up ]

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
 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 7355a38..0f57f1b 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -3627,7 +3627,7 @@ tracing_stats_read(struct file *filp, char __user *ubuf,
 	struct trace_seq *s;
 	unsigned long cnt;
 
-	s = kmalloc(sizeof(*s), GFP_ATOMIC);
+	s = kmalloc(sizeof(*s), GFP_KERNEL);
 	if (!s)
 		return ENOMEM;
 
-- 
1.5.4.rc3



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

* [PATCH 3/4] tracing/filters: operand can be negative
  2009-06-15  2:56 [PATCH 0/4] tracing: some fixes for 2.6.31 Li Zefan
  2009-06-15  2:56 ` [PATCH 1/4] tracing: fix a typo in tracing_cpumask_write() Li Zefan
  2009-06-15  2:57 ` [PATCH 2/4] tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation Li Zefan
@ 2009-06-15  2:58 ` Li Zefan
  2009-06-15 18:13   ` [tip:tracing/urgent] " tip-bot for Li Zefan
  2009-06-15  2:59 ` [PATCH 4/4] tracing/filters: strloc should be unsigned short Li Zefan
  2009-06-15 12:21 ` [PATCH 0/4] tracing: some fixes for 2.6.31 Frederic Weisbecker
  4 siblings, 1 reply; 11+ messages in thread
From: Li Zefan @ 2009-06-15  2:58 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Steven Rostedt, Frederic Weisbecker, LKML

This should be a bug:

 # cat format
 name: foo_bar
 ID: 71
 format:
	 ...
         field:int bar;  offset:24;      size:4;
 # echo 'bar < 0' > filter
 # echo 'bar < -1' > filter
 bash: echo: write error: Invalid argument

[ Impact: fix to allow negative operand in filer expr ]

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
 kernel/trace/trace_events_filter.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c
index db6e54b..1d81923 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -546,6 +546,7 @@ static int filter_add_pred(struct filter_parse_state *ps,
 	filter_pred_fn_t fn;
 	unsigned long long val;
 	int string_type;
+	int ret;
 
 	pred->fn = filter_pred_none;
 
@@ -581,7 +582,11 @@ static int filter_add_pred(struct filter_parse_state *ps,
 			pred->not = 1;
 		return filter_add_pred_fn(ps, call, pred, fn);
 	} else {
-		if (strict_strtoull(pred->str_val, 0, &val)) {
+		if (field->is_signed)
+			ret = strict_strtoll(pred->str_val, 0, &val);
+		else
+			ret = strict_strtoull(pred->str_val, 0, &val);
+		if (ret) {
 			parse_error(ps, FILT_ERR_ILLEGAL_INTVAL, 0);
 			return -EINVAL;
 		}
-- 
1.5.4.rc3



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

* [PATCH 4/4] tracing/filters: strloc should be unsigned short
  2009-06-15  2:56 [PATCH 0/4] tracing: some fixes for 2.6.31 Li Zefan
                   ` (2 preceding siblings ...)
  2009-06-15  2:58 ` [PATCH 3/4] tracing/filters: operand can be negative Li Zefan
@ 2009-06-15  2:59 ` Li Zefan
  2009-06-15 18:13   ` [tip:tracing/urgent] " tip-bot for Li Zefan
  2009-06-15 12:21 ` [PATCH 0/4] tracing: some fixes for 2.6.31 Frederic Weisbecker
  4 siblings, 1 reply; 11+ messages in thread
From: Li Zefan @ 2009-06-15  2:59 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Steven Rostedt, Frederic Weisbecker, LKML

I forgot to update filter code accordingly in
"tracing/events: change the type of __str_loc_item to unsigned short"
(commt b0aae68cc5508f3c2fbf728988c954db4c8b8a53)

It can cause system crash:

 # echo 1 > tracing/events/irq/irq_handler_entry/enable
 # echo 'name == eth0' > tracing/events/irq/irq_handler_entry/filter

[ Impact: fix crash while filtering on __string() field ]

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
 kernel/trace/trace_events_filter.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c
index 1d81923..b24ab0e 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -178,7 +178,7 @@ static int filter_pred_string(struct filter_pred *pred, void *event,
 static int filter_pred_strloc(struct filter_pred *pred, void *event,
 			      int val1, int val2)
 {
-	int str_loc = *(int *)(event + pred->offset);
+	unsigned short str_loc = *(unsigned short *)(event + pred->offset);
 	char *addr = (char *)(event + str_loc);
 	int cmp, match;
 
-- 
1.5.4.rc3


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

* Re: [PATCH 0/4] tracing: some fixes for 2.6.31
  2009-06-15  2:56 [PATCH 0/4] tracing: some fixes for 2.6.31 Li Zefan
                   ` (3 preceding siblings ...)
  2009-06-15  2:59 ` [PATCH 4/4] tracing/filters: strloc should be unsigned short Li Zefan
@ 2009-06-15 12:21 ` Frederic Weisbecker
  2009-06-15 12:48   ` Steven Rostedt
  4 siblings, 1 reply; 11+ messages in thread
From: Frederic Weisbecker @ 2009-06-15 12:21 UTC (permalink / raw)
  To: Li Zefan; +Cc: Ingo Molnar, Steven Rostedt, LKML

On Mon, Jun 15, 2009 at 10:56:11AM +0800, Li Zefan wrote:
> Some small but not trival fixes for 2.6.31:
> 
> [PATCH 1/4] tracing: fix a typo in tracing_cpumask_write()
> [PATCH 2/4] tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation
> [PATCH 3/4] tracing/filters: operand can be negative
> [PATCH 4/4] tracing/filters: strloc should be unsigned short
> ---
>  kernel/trace/trace.c               |    8 ++++----
>  kernel/trace/trace_events_filter.c |    9 +++++++--
>  2 files changed, 11 insertions(+), 6 deletions(-)
> 
> 

Acked-by: Frederic Weisbecker <fweisbec@gmail.com> for
the whole series. Thanks!


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

* Re: [PATCH 0/4] tracing: some fixes for 2.6.31
  2009-06-15 12:21 ` [PATCH 0/4] tracing: some fixes for 2.6.31 Frederic Weisbecker
@ 2009-06-15 12:48   ` Steven Rostedt
  0 siblings, 0 replies; 11+ messages in thread
From: Steven Rostedt @ 2009-06-15 12:48 UTC (permalink / raw)
  To: Frederic Weisbecker; +Cc: Li Zefan, Ingo Molnar, LKML


On Mon, 15 Jun 2009, Frederic Weisbecker wrote:

> On Mon, Jun 15, 2009 at 10:56:11AM +0800, Li Zefan wrote:
> > Some small but not trival fixes for 2.6.31:
> > 
> > [PATCH 1/4] tracing: fix a typo in tracing_cpumask_write()
> > [PATCH 2/4] tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation
> > [PATCH 3/4] tracing/filters: operand can be negative
> > [PATCH 4/4] tracing/filters: strloc should be unsigned short
> > ---
> >  kernel/trace/trace.c               |    8 ++++----
> >  kernel/trace/trace_events_filter.c |    9 +++++++--
> >  2 files changed, 11 insertions(+), 6 deletions(-)
> > 
> > 
> 
> Acked-by: Frederic Weisbecker <fweisbec@gmail.com> for
> the whole series. Thanks!

Yeah, I got a few patches over the weekend, I'll go and pull these and the 
others in.

Thanks,

-- Steve


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

* [tip:tracing/urgent] tracing: fix a typo in tracing_cpumask_write()
  2009-06-15  2:56 ` [PATCH 1/4] tracing: fix a typo in tracing_cpumask_write() Li Zefan
@ 2009-06-15 18:13   ` tip-bot for Li Zefan
  0 siblings, 0 replies; 11+ messages in thread
From: tip-bot for Li Zefan @ 2009-06-15 18:13 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, fweisbec, rostedt, lizf, tglx

Commit-ID:  215368e8e59023d6a0abdda896923018d74fdf7f
Gitweb:     http://git.kernel.org/tip/215368e8e59023d6a0abdda896923018d74fdf7f
Author:     Li Zefan <lizf@cn.fujitsu.com>
AuthorDate: Mon, 15 Jun 2009 10:56:42 +0800
Committer:  Steven Rostedt <rostedt@goodmis.org>
CommitDate: Mon, 15 Jun 2009 11:37:12 -0400

tracing: fix a typo in tracing_cpumask_write()

It's tracing_cpumask_new that should be kfree()ed.

This causes tracing_cpumask to be freed due to the typo:

 # echo z > tracing_cpumask
 bash: echo: write error: Invalid argument

And subsequent reads/writes to tracing_cpuamsk will access this
already-freed tracing_cpumask, thus may lead to crash.

[ Impact: fix leak and crash when writing invalid val to tracing_cpumask ]

Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4A35B86A.7070608@cn.fujitsu.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>


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

diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 8acd9b8..7355a38 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -2191,11 +2191,12 @@ tracing_cpumask_write(struct file *filp, const char __user *ubuf,
 	if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
 		return -ENOMEM;
 
-	mutex_lock(&tracing_cpumask_update_lock);
 	err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
 	if (err)
 		goto err_unlock;
 
+	mutex_lock(&tracing_cpumask_update_lock);
+
 	local_irq_disable();
 	__raw_spin_lock(&ftrace_max_lock);
 	for_each_tracing_cpu(cpu) {
@@ -2223,8 +2224,7 @@ tracing_cpumask_write(struct file *filp, const char __user *ubuf,
 	return count;
 
 err_unlock:
-	mutex_unlock(&tracing_cpumask_update_lock);
-	free_cpumask_var(tracing_cpumask);
+	free_cpumask_var(tracing_cpumask_new);
 
 	return err;
 }

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

* [tip:tracing/urgent] tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation
  2009-06-15  2:57 ` [PATCH 2/4] tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation Li Zefan
@ 2009-06-15 18:13   ` tip-bot for Li Zefan
  0 siblings, 0 replies; 11+ messages in thread
From: tip-bot for Li Zefan @ 2009-06-15 18:13 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, fweisbec, rostedt, lizf, tglx

Commit-ID:  e4f2d10f479d18198ebafcb5e124cc3dd8b8817a
Gitweb:     http://git.kernel.org/tip/e4f2d10f479d18198ebafcb5e124cc3dd8b8817a
Author:     Li Zefan <lizf@cn.fujitsu.com>
AuthorDate: Mon, 15 Jun 2009 10:57:28 +0800
Committer:  Steven Rostedt <rostedt@goodmis.org>
CommitDate: Mon, 15 Jun 2009 11:37:14 -0400

tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation

Atomic allocation is not needed here.

[ Impact: clean up of memory alloction type ]

Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4A35B898.2050607@cn.fujitsu.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>


---
 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 7355a38..0f57f1b 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -3627,7 +3627,7 @@ tracing_stats_read(struct file *filp, char __user *ubuf,
 	struct trace_seq *s;
 	unsigned long cnt;
 
-	s = kmalloc(sizeof(*s), GFP_ATOMIC);
+	s = kmalloc(sizeof(*s), GFP_KERNEL);
 	if (!s)
 		return ENOMEM;
 

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

* [tip:tracing/urgent] tracing/filters: operand can be negative
  2009-06-15  2:58 ` [PATCH 3/4] tracing/filters: operand can be negative Li Zefan
@ 2009-06-15 18:13   ` tip-bot for Li Zefan
  0 siblings, 0 replies; 11+ messages in thread
From: tip-bot for Li Zefan @ 2009-06-15 18:13 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, fweisbec, rostedt, lizf, tglx

Commit-ID:  5e4904cb633177046bee5d26946a7ac918e642fc
Gitweb:     http://git.kernel.org/tip/5e4904cb633177046bee5d26946a7ac918e642fc
Author:     Li Zefan <lizf@cn.fujitsu.com>
AuthorDate: Mon, 15 Jun 2009 10:58:39 +0800
Committer:  Steven Rostedt <rostedt@goodmis.org>
CommitDate: Mon, 15 Jun 2009 11:37:16 -0400

tracing/filters: operand can be negative

This should be a bug:

 # cat format
 name: foo_bar
 ID: 71
 format:
	 ...
         field:int bar;  offset:24;      size:4;
 # echo 'bar < 0' > filter
 # echo 'bar < -1' > filter
 bash: echo: write error: Invalid argument

[ Impact: fix to allow negative operand in filer expr ]

Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4A35B8DF.60400@cn.fujitsu.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>


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

diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c
index db6e54b..1d81923 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -546,6 +546,7 @@ static int filter_add_pred(struct filter_parse_state *ps,
 	filter_pred_fn_t fn;
 	unsigned long long val;
 	int string_type;
+	int ret;
 
 	pred->fn = filter_pred_none;
 
@@ -581,7 +582,11 @@ static int filter_add_pred(struct filter_parse_state *ps,
 			pred->not = 1;
 		return filter_add_pred_fn(ps, call, pred, fn);
 	} else {
-		if (strict_strtoull(pred->str_val, 0, &val)) {
+		if (field->is_signed)
+			ret = strict_strtoll(pred->str_val, 0, &val);
+		else
+			ret = strict_strtoull(pred->str_val, 0, &val);
+		if (ret) {
 			parse_error(ps, FILT_ERR_ILLEGAL_INTVAL, 0);
 			return -EINVAL;
 		}

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

* [tip:tracing/urgent] tracing/filters: strloc should be unsigned short
  2009-06-15  2:59 ` [PATCH 4/4] tracing/filters: strloc should be unsigned short Li Zefan
@ 2009-06-15 18:13   ` tip-bot for Li Zefan
  0 siblings, 0 replies; 11+ messages in thread
From: tip-bot for Li Zefan @ 2009-06-15 18:13 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, fweisbec, rostedt, lizf, tglx

Commit-ID:  0ac2058f686a19fe8ab25c4f3104fc1580dce7cf
Gitweb:     http://git.kernel.org/tip/0ac2058f686a19fe8ab25c4f3104fc1580dce7cf
Author:     Li Zefan <lizf@cn.fujitsu.com>
AuthorDate: Mon, 15 Jun 2009 10:59:17 +0800
Committer:  Steven Rostedt <rostedt@goodmis.org>
CommitDate: Mon, 15 Jun 2009 11:37:18 -0400

tracing/filters: strloc should be unsigned short

I forgot to update filter code accordingly in
"tracing/events: change the type of __str_loc_item to unsigned short"
(commt b0aae68cc5508f3c2fbf728988c954db4c8b8a53)

It can cause system crash:

 # echo 1 > tracing/events/irq/irq_handler_entry/enable
 # echo 'name == eth0' > tracing/events/irq/irq_handler_entry/filter

[ Impact: fix crash while filtering on __string() field ]

Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4A35B905.3090500@cn.fujitsu.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>


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

diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c
index 1d81923..b24ab0e 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -178,7 +178,7 @@ static int filter_pred_string(struct filter_pred *pred, void *event,
 static int filter_pred_strloc(struct filter_pred *pred, void *event,
 			      int val1, int val2)
 {
-	int str_loc = *(int *)(event + pred->offset);
+	unsigned short str_loc = *(unsigned short *)(event + pred->offset);
 	char *addr = (char *)(event + str_loc);
 	int cmp, match;
 

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

end of thread, other threads:[~2009-06-15 18:14 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-15  2:56 [PATCH 0/4] tracing: some fixes for 2.6.31 Li Zefan
2009-06-15  2:56 ` [PATCH 1/4] tracing: fix a typo in tracing_cpumask_write() Li Zefan
2009-06-15 18:13   ` [tip:tracing/urgent] " tip-bot for Li Zefan
2009-06-15  2:57 ` [PATCH 2/4] tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation Li Zefan
2009-06-15 18:13   ` [tip:tracing/urgent] " tip-bot for Li Zefan
2009-06-15  2:58 ` [PATCH 3/4] tracing/filters: operand can be negative Li Zefan
2009-06-15 18:13   ` [tip:tracing/urgent] " tip-bot for Li Zefan
2009-06-15  2:59 ` [PATCH 4/4] tracing/filters: strloc should be unsigned short Li Zefan
2009-06-15 18:13   ` [tip:tracing/urgent] " tip-bot for Li Zefan
2009-06-15 12:21 ` [PATCH 0/4] tracing: some fixes for 2.6.31 Frederic Weisbecker
2009-06-15 12:48   ` Steven Rostedt

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).