This is a note to let you know that I've just added the patch titled

    perf tools: Remove extraneous newline when parsing hardware cache events

to the 3.4-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     
perf-tools-remove-extraneous-newline-when-parsing-hardware-cache-events.patch
and it can be found in the queue-3.4 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From 42e1fb776087713b5482cd7cf6cac998fbdd6544 Mon Sep 17 00:00:00 2001
From: Arnaldo Carvalho de Melo <[email protected]>
Date: Thu, 6 Sep 2012 14:43:28 -0300
Subject: perf tools: Remove extraneous newline when parsing hardware cache 
events

From: Arnaldo Carvalho de Melo <[email protected]>

commit 42e1fb776087713b5482cd7cf6cac998fbdd6544 upstream.

Noticed while developing a 'perf test' entry to verify that
perf_evsel__name works.

Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Mike Galbraith <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Stephane Eranian <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Cc: Vinson Lee <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 tools/perf/util/parse-events.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/tools/perf/util/parse-events.c
+++ b/tools/perf/util/parse-events.c
@@ -413,7 +413,7 @@ int parse_events_add_cache(struct list_h
        for (i = 0; (i < 2) && (op_result[i]); i++) {
                char *str = op_result[i];
 
-               snprintf(name + n, MAX_NAME_LEN - n, "-%s\n", str);
+               snprintf(name + n, MAX_NAME_LEN - n, "-%s", str);
 
                if (cache_op == -1) {
                        cache_op = parse_aliases(str, hw_cache_op,


Patches currently in stable-queue which might be from [email protected] are

queue-3.4/perf-tools-remove-extraneous-newline-when-parsing-hardware-cache-events.patch
queue-3.4/perf-tools-fix-cache-event-name-generation.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to