public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes
@ 2010-01-15  3:57 Steven Rostedt
  2010-01-15  3:57 ` [PATCH 1/8] tracing/x86: Derive arch from bits argument in recordmcount.pl Steven Rostedt
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Steven Rostedt @ 2010-01-15  3:57 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton


Ingo,

The patches fix one recordmcount.pl bug, and the rest fix
the filters for ftrace and the events.

Please pull the latest tip/tracing/urgent-1 tree, which can be found at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
tip/tracing/urgent-1


Jan Kiszka (1):
      tracing/x86: Derive arch from bits argument in recordmcount.pl

Li Zefan (7):
      ftrace: Fix MATCH_END_ONLY function filter
      tracing/filters: Fix MATCH_FRONT_ONLY filter matching
      tracing/filters: Fix MATCH_END_ONLY filter matching
      lib: Introduce strnstr()
      tracing/filters: Fix MATCH_MIDDLE_ONLY filter matching
      tracing/filters: Fix MATCH_FULL filter matching for PTR_STRING
      tracing/filters: Add comment for match callbacks

----
 include/linux/string.h             |    5 ++++-
 kernel/trace/ftrace.c              |    6 +++---
 kernel/trace/trace_events_filter.c |   29 ++++++++++++++++++++---------
 lib/string.c                       |   27 ++++++++++++++++++++++++++-
 scripts/recordmcount.pl            |    2 +-
 5 files changed, 54 insertions(+), 15 deletions(-)

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

* [PATCH 1/8] tracing/x86: Derive arch from bits argument in recordmcount.pl
  2010-01-15  3:57 [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Steven Rostedt
@ 2010-01-15  3:57 ` Steven Rostedt
  2010-01-15  3:57 ` [PATCH 2/8] ftrace: Fix MATCH_END_ONLY function filter Steven Rostedt
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Steven Rostedt @ 2010-01-15  3:57 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Jan Kiszka

[-- Attachment #1: 0001-tracing-x86-Derive-arch-from-bits-argument-in-record.patch --]
[-- Type: text/plain, Size: 826 bytes --]

From: Jan Kiszka <jan.kiszka@siemens.com>

Let the arch argument be overruled by bits. Otherwise, building of
external modules against a i386 target on a x86-64 host (and likely vice
versa as well) fails unless ARCH=i386 is explicitly passed to make.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
LKML-Reference: <4B4AFE10.8050109@siemens.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
 scripts/recordmcount.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl
index 92f09fe..ea6f6e3 100755
--- a/scripts/recordmcount.pl
+++ b/scripts/recordmcount.pl
@@ -194,7 +194,7 @@ sub check_objcopy
     }
 }
 
-if ($arch eq "x86") {
+if ($arch =~ /(x86(_64)?)|(i386)/) {
     if ($bits == 64) {
 	$arch = "x86_64";
     } else {
-- 
1.6.5



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

* [PATCH 2/8] ftrace: Fix MATCH_END_ONLY function filter
  2010-01-15  3:57 [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Steven Rostedt
  2010-01-15  3:57 ` [PATCH 1/8] tracing/x86: Derive arch from bits argument in recordmcount.pl Steven Rostedt
@ 2010-01-15  3:57 ` Steven Rostedt
  2010-01-15  3:57 ` [PATCH 3/8] tracing/filters: Fix MATCH_FRONT_ONLY filter matching Steven Rostedt
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Steven Rostedt @ 2010-01-15  3:57 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Li Zefan, Frederic Weisbecker

[-- Attachment #1: 0002-ftrace-Fix-MATCH_END_ONLY-function-filter.patch --]
[-- Type: text/plain, Size: 1337 bytes --]

From: Li Zefan <lizf@cn.fujitsu.com>

For '*foo' pattern, we should allow any string ending with
'foo', but ftrace filter incorrectly disallows strings
like bar_foo_foo:

  # echo '*io' > set_ftrace_filter
  # cat set_ftrace_filter | grep 'req_bio_endio'
  # cat available_filter_functions | grep 'req_bio_endio'
  req_bio_endio

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4B4E870E.6060607@cn.fujitsu.com>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
 kernel/trace/ftrace.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index 7968762..1e6640f 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -1690,7 +1690,7 @@ ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
 static int ftrace_match(char *str, char *regex, int len, int type)
 {
 	int matched = 0;
-	char *ptr;
+	int slen;
 
 	switch (type) {
 	case MATCH_FULL:
@@ -1706,8 +1706,8 @@ static int ftrace_match(char *str, char *regex, int len, int type)
 			matched = 1;
 		break;
 	case MATCH_END_ONLY:
-		ptr = strstr(str, regex);
-		if (ptr && (ptr[len] == 0))
+		slen = strlen(str);
+		if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
 			matched = 1;
 		break;
 	}
-- 
1.6.5



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

* [PATCH 3/8] tracing/filters: Fix MATCH_FRONT_ONLY filter matching
  2010-01-15  3:57 [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Steven Rostedt
  2010-01-15  3:57 ` [PATCH 1/8] tracing/x86: Derive arch from bits argument in recordmcount.pl Steven Rostedt
  2010-01-15  3:57 ` [PATCH 2/8] ftrace: Fix MATCH_END_ONLY function filter Steven Rostedt
@ 2010-01-15  3:57 ` Steven Rostedt
  2010-01-15  3:57 ` [PATCH 4/8] tracing/filters: Fix MATCH_END_ONLY " Steven Rostedt
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Steven Rostedt @ 2010-01-15  3:57 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Li Zefan, Frederic Weisbecker

[-- Attachment #1: 0003-tracing-filters-Fix-MATCH_FRONT_ONLY-filter-matching.patch --]
[-- Type: text/plain, Size: 1043 bytes --]

From: Li Zefan <lizf@cn.fujitsu.com>

MATCH_FRONT_ONLY actually is a full matching:

  # ./perf record -R -f -a -e lock:lock_acquire \
	--filter 'name ~rcu_*' sleep 1
  # ./perf trace
  (no output)

We should pass the length of the pattern string to strncmp().

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4B4E8721.5090301@cn.fujitsu.com>
Acked-by: Frederic Weisbecker <fweisbec@gmail.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 50504cb..11c3973 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -261,7 +261,7 @@ static int regex_match_full(char *str, struct regex *r, int len)
 
 static int regex_match_front(char *str, struct regex *r, int len)
 {
-	if (strncmp(str, r->pattern, len) == 0)
+	if (strncmp(str, r->pattern, r->len) == 0)
 		return 1;
 	return 0;
 }
-- 
1.6.5



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

* [PATCH 4/8] tracing/filters: Fix MATCH_END_ONLY filter matching
  2010-01-15  3:57 [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Steven Rostedt
                   ` (2 preceding siblings ...)
  2010-01-15  3:57 ` [PATCH 3/8] tracing/filters: Fix MATCH_FRONT_ONLY filter matching Steven Rostedt
@ 2010-01-15  3:57 ` Steven Rostedt
  2010-01-15  3:57 ` [PATCH 5/8] lib: Introduce strnstr() Steven Rostedt
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Steven Rostedt @ 2010-01-15  3:57 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Li Zefan, Frederic Weisbecker

[-- Attachment #1: 0004-tracing-filters-Fix-MATCH_END_ONLY-filter-matching.patch --]
[-- Type: text/plain, Size: 1057 bytes --]

From: Li Zefan <lizf@cn.fujitsu.com>

For '*foo' pattern, we should allow any string ending with
'foo', but event filtering incorrectly disallows strings
like bar_foo_foo:

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4B4E8735.6070604@cn.fujitsu.com>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
 kernel/trace/trace_events_filter.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c
index 11c3973..49e44dd 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -275,9 +275,10 @@ static int regex_match_middle(char *str, struct regex *r, int len)
 
 static int regex_match_end(char *str, struct regex *r, int len)
 {
-	char *ptr = strstr(str, r->pattern);
+	int strlen = len - 1;
 
-	if (ptr && (ptr[r->len] == 0))
+	if (strlen >= r->len &&
+	    memcmp(str + strlen - r->len, r->pattern, r->len) == 0)
 		return 1;
 	return 0;
 }
-- 
1.6.5



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

* [PATCH 5/8] lib: Introduce strnstr()
  2010-01-15  3:57 [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Steven Rostedt
                   ` (3 preceding siblings ...)
  2010-01-15  3:57 ` [PATCH 4/8] tracing/filters: Fix MATCH_END_ONLY " Steven Rostedt
@ 2010-01-15  3:57 ` Steven Rostedt
  2010-01-15  3:57 ` [PATCH 6/8] tracing/filters: Fix MATCH_MIDDLE_ONLY filter matching Steven Rostedt
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Steven Rostedt @ 2010-01-15  3:57 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Li Zefan, Frederic Weisbecker

[-- Attachment #1: 0005-lib-Introduce-strnstr.patch --]
[-- Type: text/plain, Size: 1989 bytes --]

From: Li Zefan <lizf@cn.fujitsu.com>

It differs strstr() in that it limits the length to be searched
in the first string.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4B4E8743.6030805@cn.fujitsu.com>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
 include/linux/string.h |    5 ++++-
 lib/string.c           |   27 ++++++++++++++++++++++++++-
 2 files changed, 30 insertions(+), 2 deletions(-)

diff --git a/include/linux/string.h b/include/linux/string.h
index 651839a..a716ee2 100644
--- a/include/linux/string.h
+++ b/include/linux/string.h
@@ -72,7 +72,10 @@ static inline __must_check char *strstrip(char *str)
 }
 
 #ifndef __HAVE_ARCH_STRSTR
-extern char * strstr(const char *,const char *);
+extern char * strstr(const char *, const char *);
+#endif
+#ifndef __HAVE_ARCH_STRNSTR
+extern char * strnstr(const char *, const char *, size_t);
 #endif
 #ifndef __HAVE_ARCH_STRLEN
 extern __kernel_size_t strlen(const char *);
diff --git a/lib/string.c b/lib/string.c
index 9f75b4e..a1cdcfc 100644
--- a/lib/string.c
+++ b/lib/string.c
@@ -667,7 +667,7 @@ EXPORT_SYMBOL(memscan);
  */
 char *strstr(const char *s1, const char *s2)
 {
-	int l1, l2;
+	size_t l1, l2;
 
 	l2 = strlen(s2);
 	if (!l2)
@@ -684,6 +684,31 @@ char *strstr(const char *s1, const char *s2)
 EXPORT_SYMBOL(strstr);
 #endif
 
+#ifndef __HAVE_ARCH_STRNSTR
+/**
+ * strnstr - Find the first substring in a length-limited string
+ * @s1: The string to be searched
+ * @s2: The string to search for
+ * @len: the maximum number of characters to search
+ */
+char *strnstr(const char *s1, const char *s2, size_t len)
+{
+	size_t l1 = len, l2;
+
+	l2 = strlen(s2);
+	if (!l2)
+		return (char *)s1;
+	while (l1 >= l2) {
+		l1--;
+		if (!memcmp(s1, s2, l2))
+			return (char *)s1;
+		s1++;
+	}
+	return NULL;
+}
+EXPORT_SYMBOL(strnstr);
+#endif
+
 #ifndef __HAVE_ARCH_MEMCHR
 /**
  * memchr - Find a character in an area of memory.
-- 
1.6.5



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

* [PATCH 6/8] tracing/filters: Fix MATCH_MIDDLE_ONLY filter matching
  2010-01-15  3:57 [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Steven Rostedt
                   ` (4 preceding siblings ...)
  2010-01-15  3:57 ` [PATCH 5/8] lib: Introduce strnstr() Steven Rostedt
@ 2010-01-15  3:57 ` Steven Rostedt
  2010-01-15  3:57 ` [PATCH 7/8] tracing/filters: Fix MATCH_FULL filter matching for PTR_STRING Steven Rostedt
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Steven Rostedt @ 2010-01-15  3:57 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Li Zefan, Frederic Weisbecker

[-- Attachment #1: 0006-tracing-filters-Fix-MATCH_MIDDLE_ONLY-filter-matchin.patch --]
[-- Type: text/plain, Size: 934 bytes --]

From: Li Zefan <lizf@cn.fujitsu.com>

The @str might not be NULL-terminated if it's of type
DYN_STRING or STATIC_STRING, so we should use strnstr()
instead of strstr().

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4B4E8753.2000102@cn.fujitsu.com>
Acked-by: Frederic Weisbecker <fweisbec@gmail.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 49e44dd..f364b08 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -268,7 +268,7 @@ static int regex_match_front(char *str, struct regex *r, int len)
 
 static int regex_match_middle(char *str, struct regex *r, int len)
 {
-	if (strstr(str, r->pattern))
+	if (strnstr(str, r->pattern, len))
 		return 1;
 	return 0;
 }
-- 
1.6.5



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

* [PATCH 7/8] tracing/filters: Fix MATCH_FULL filter matching for PTR_STRING
  2010-01-15  3:57 [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Steven Rostedt
                   ` (5 preceding siblings ...)
  2010-01-15  3:57 ` [PATCH 6/8] tracing/filters: Fix MATCH_MIDDLE_ONLY filter matching Steven Rostedt
@ 2010-01-15  3:57 ` Steven Rostedt
  2010-01-15  3:57 ` [PATCH 8/8] tracing/filters: Add comment for match callbacks Steven Rostedt
  2010-01-16  6:56 ` [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Ingo Molnar
  8 siblings, 0 replies; 10+ messages in thread
From: Steven Rostedt @ 2010-01-15  3:57 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Li Zefan, Frederic Weisbecker

[-- Attachment #1: 0007-tracing-filters-Fix-MATCH_FULL-filter-matching-for-P.patch --]
[-- Type: text/plain, Size: 1780 bytes --]

From: Li Zefan <lizf@cn.fujitsu.com>

MATCH_FULL matching for PTR_STRING is not working correctly:

  # echo 'func == vt' > events/bkl/lock_kernel/filter
  # echo 1 > events/bkl/lock_kernel/enable
  ...
  # cat trace
   Xorg-1484  [000]  1973.392586: lock_kernel: ... func=vt_ioctl()
    gpm-1402  [001]  1974.027740: lock_kernel: ... func=vt_ioctl()

We should pass to regex.match(..., len) the length (including '\0')
of the source string instead of the length of the pattern string.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4B4E8763.5070707@cn.fujitsu.com>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
 kernel/trace/trace_events_filter.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c
index f364b08..60c2a4e 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -211,8 +211,9 @@ static int filter_pred_pchar(struct filter_pred *pred, void *event,
 {
 	char **addr = (char **)(event + pred->offset);
 	int cmp, match;
+	int len = strlen(*addr) + 1;	/* including tailing '\0' */
 
-	cmp = pred->regex.match(*addr, &pred->regex, pred->regex.field_len);
+	cmp = pred->regex.match(*addr, &pred->regex, len);
 
 	match = cmp ^ pred->not;
 
@@ -782,10 +783,8 @@ static int filter_add_pred(struct filter_parse_state *ps,
 			pred->regex.field_len = field->size;
 		} else if (field->filter_type == FILTER_DYN_STRING)
 			fn = filter_pred_strloc;
-		else {
+		else
 			fn = filter_pred_pchar;
-			pred->regex.field_len = strlen(pred->regex.pattern);
-		}
 	} else {
 		if (field->is_signed)
 			ret = strict_strtoll(pred->regex.pattern, 0, &val);
-- 
1.6.5



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

* [PATCH 8/8] tracing/filters: Add comment for match callbacks
  2010-01-15  3:57 [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Steven Rostedt
                   ` (6 preceding siblings ...)
  2010-01-15  3:57 ` [PATCH 7/8] tracing/filters: Fix MATCH_FULL filter matching for PTR_STRING Steven Rostedt
@ 2010-01-15  3:57 ` Steven Rostedt
  2010-01-16  6:56 ` [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Ingo Molnar
  8 siblings, 0 replies; 10+ messages in thread
From: Steven Rostedt @ 2010-01-15  3:57 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Li Zefan

[-- Attachment #1: 0008-tracing-filters-Add-comment-for-match-callbacks.patch --]
[-- Type: text/plain, Size: 1240 bytes --]

From: Li Zefan <lizf@cn.fujitsu.com>

We should be clear on 2 things:

- the length parameter of a match callback includes
  tailing '\0'.

- the string to be searched might not be NULL-terminated.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4B4E8770.7000608@cn.fujitsu.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
 kernel/trace/trace_events_filter.c |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c
index 60c2a4e..e42af9a 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -252,7 +252,18 @@ static int filter_pred_none(struct filter_pred *pred, void *event,
 	return 0;
 }
 
-/* Basic regex callbacks */
+/*
+ * regex_match_foo - Basic regex callbacks
+ *
+ * @str: the string to be searched
+ * @r:   the regex structure containing the pattern string
+ * @len: the length of the string to be searched (including '\0')
+ *
+ * Note:
+ * - @str might not be NULL-terminated if it's of type DYN_STRING
+ *   or STATIC_STRING
+ */
+
 static int regex_match_full(char *str, struct regex *r, int len)
 {
 	if (strncmp(str, r->pattern, len) == 0)
-- 
1.6.5



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

* Re: [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes
  2010-01-15  3:57 [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Steven Rostedt
                   ` (7 preceding siblings ...)
  2010-01-15  3:57 ` [PATCH 8/8] tracing/filters: Add comment for match callbacks Steven Rostedt
@ 2010-01-16  6:56 ` Ingo Molnar
  8 siblings, 0 replies; 10+ messages in thread
From: Ingo Molnar @ 2010-01-16  6:56 UTC (permalink / raw)
  To: Steven Rostedt
  Cc: linux-kernel, Andrew Morton,
	=?unknown-8bit?B?RnLDqWTDqXJpYw==?= Weisbecker


* Steven Rostedt <rostedt@goodmis.org> wrote:

> 
> Ingo,
> 
> The patches fix one recordmcount.pl bug, and the rest fix
> the filters for ftrace and the events.
> 
> Please pull the latest tip/tracing/urgent-1 tree, which can be found at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
> tip/tracing/urgent-1
> 
> 
> Jan Kiszka (1):
>       tracing/x86: Derive arch from bits argument in recordmcount.pl
> 
> Li Zefan (7):
>       ftrace: Fix MATCH_END_ONLY function filter
>       tracing/filters: Fix MATCH_FRONT_ONLY filter matching
>       tracing/filters: Fix MATCH_END_ONLY filter matching
>       lib: Introduce strnstr()
>       tracing/filters: Fix MATCH_MIDDLE_ONLY filter matching
>       tracing/filters: Fix MATCH_FULL filter matching for PTR_STRING
>       tracing/filters: Add comment for match callbacks
> 
> ----
>  include/linux/string.h             |    5 ++++-
>  kernel/trace/ftrace.c              |    6 +++---
>  kernel/trace/trace_events_filter.c |   29 ++++++++++++++++++++---------
>  lib/string.c                       |   27 ++++++++++++++++++++++++++-
>  scripts/recordmcount.pl            |    2 +-
>  5 files changed, 54 insertions(+), 15 deletions(-)

Pulled, thanks a lot Steve!

	Ingo

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

end of thread, other threads:[~2010-01-16  6:56 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-15  3:57 [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Steven Rostedt
2010-01-15  3:57 ` [PATCH 1/8] tracing/x86: Derive arch from bits argument in recordmcount.pl Steven Rostedt
2010-01-15  3:57 ` [PATCH 2/8] ftrace: Fix MATCH_END_ONLY function filter Steven Rostedt
2010-01-15  3:57 ` [PATCH 3/8] tracing/filters: Fix MATCH_FRONT_ONLY filter matching Steven Rostedt
2010-01-15  3:57 ` [PATCH 4/8] tracing/filters: Fix MATCH_END_ONLY " Steven Rostedt
2010-01-15  3:57 ` [PATCH 5/8] lib: Introduce strnstr() Steven Rostedt
2010-01-15  3:57 ` [PATCH 6/8] tracing/filters: Fix MATCH_MIDDLE_ONLY filter matching Steven Rostedt
2010-01-15  3:57 ` [PATCH 7/8] tracing/filters: Fix MATCH_FULL filter matching for PTR_STRING Steven Rostedt
2010-01-15  3:57 ` [PATCH 8/8] tracing/filters: Add comment for match callbacks Steven Rostedt
2010-01-16  6:56 ` [PATCH 0/8][GIT PULL][v2.6.33] tracing: fixes Ingo Molnar

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