[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-faafec1e61e61d350248af2a7e5f047606adab6e@git.kernel.org>
Date: Fri, 12 Jun 2009 11:49:02 GMT
From: tip-bot for Yong Wang <yong.y.wang@...ux.intel.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, paulus@...ba.org, hpa@...or.com,
mingo@...hat.com, a.p.zijlstra@...llo.nl, yong.y.wang@...el.com,
yong.y.wang@...ux.intel.com, tglx@...utronix.de, mingo@...e.hu
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 <yong.y.wang@...ux.intel.com>
AuthorDate: Fri, 12 Jun 2009 11:17:06 +0800
Committer: Ingo Molnar <mingo@...e.hu>
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 <yong.y.wang@...el.com>
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>
Cc: Paul Mackerras <paulus@...ba.org>
LKML-Reference: <20090612031706.GA22126@...ng-moblin2.bj.intel.com>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
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" },
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists