2009-06-12 03:34:00

by Yong Wang

[permalink] [raw]
Subject: [PATCH -tip] perf_counter tools: Remove one L1-data alias

Otherwise all L1-instruction aliases will be recognized as L1-data by strcasestr()
when calling function parse_aliases.

Signed-off-by: Yong Wang <[email protected]>

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

diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c
index 9d5f1ca..5a72586 100644
--- a/tools/perf/util/parse-events.c
+++ b/tools/perf/util/parse-events.c
@@ -75,7 +75,7 @@ static char *sw_event_names[] = {
#define MAX_ALIASES 8

static char *hw_cache [][MAX_ALIASES] = {
- { "L1-data" , "l1-d", "l1d", "l1" },
+ { "L1-data" , "l1-d", "l1d" },
{ "L1-instruction" , "l1-i", "l1i" },
{ "L2" , "l2" },
{ "Data-TLB" , "dtlb", "d-tlb" },


2009-06-12 11:49:48

by Yong Wang

[permalink] [raw]
Subject: [tip:perfcounters/core] perf_counter tools: Remove one L1-data alias

Commit-ID: faafec1e61e61d350248af2a7e5f047606adab6e
Gitweb: http://git.kernel.org/tip/faafec1e61e61d350248af2a7e5f047606adab6e
Author: Yong Wang <[email protected]>
AuthorDate: Fri, 12 Jun 2009 11:17:06 +0800
Committer: Ingo Molnar <[email protected]>
CommitDate: Fri, 12 Jun 2009 13:45:09 +0200

perf_counter tools: Remove one L1-data alias

Otherwise all L1-instruction aliases will be recognized as
L1-data by strcasestr() when calling function parse_aliases.

Signed-off-by: Yong Wang <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Paul Mackerras <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>


---
tools/perf/util/parse-events.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c
index 9d5f1ca..5a72586 100644
--- a/tools/perf/util/parse-events.c
+++ b/tools/perf/util/parse-events.c
@@ -75,7 +75,7 @@ static char *sw_event_names[] = {
#define MAX_ALIASES 8

static char *hw_cache [][MAX_ALIASES] = {
- { "L1-data" , "l1-d", "l1d", "l1" },
+ { "L1-data" , "l1-d", "l1d" },
{ "L1-instruction" , "l1-i", "l1i" },
{ "L2" , "l2" },
{ "Data-TLB" , "dtlb", "d-tlb" },