aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/util/parse-events.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c
index 05d0c5c2030c..a2014459125a 100644
--- a/tools/perf/util/parse-events.c
+++ b/tools/perf/util/parse-events.c
@@ -656,6 +656,10 @@ parse_raw_event(const char **strp, struct perf_event_attr *attr)
656 return EVT_FAILED; 656 return EVT_FAILED;
657 n = hex2u64(str + 1, &config); 657 n = hex2u64(str + 1, &config);
658 if (n > 0) { 658 if (n > 0) {
659 if (str[n+1] == 'p') {
660 attr->precise = 1;
661 n++;
662 }
659 *strp = str + n + 1; 663 *strp = str + n + 1;
660 attr->type = PERF_TYPE_RAW; 664 attr->type = PERF_TYPE_RAW;
661 attr->config = config; 665 attr->config = config;