Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion perf evlist: add initialzation function for tracepoints

Received: by 10.68.244.73 with SMTP id xe9mr4552165pbc.1.1349716804263;
        Mon, 08 Oct 2012 10:20:04 -0700 (PDT)
MIME-Version: 1.0
Path: t10ni23656726pbh.0!nntp.google.com!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!news.glorb.com!bofh.it!news.nic.it!robomod
From: David Ahern <dsah...@gmail.com>
Newsgroups: linux.kernel
Subject: [PATCH 03/12] perf evlist: add initialzation function for tracepoints
Date: Mon, 08 Oct 2012 19:20:03 +0200
Message-ID: <jSp9N-1bi-47@gated-at.bofh.it>
References: <jSp9L-1bi-9@gated-at.bofh.it>
X-Original-To: a...@ghostprotocols.net, linux-ker...@vger.kernel.org
Dkim-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=20120113;
        h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references;
        bh=JmzJDHBbDjAYSi3lJ3tQTdzCUR0+wAxnwqdR86PhWVI=;
        b=eWgp2qBQxToYSneKedO9ijOkxzH0Kfhn6KMhVZtV7spLECwQrckuF6j9sJONizvvQf
         /1LjWa/ODbo96Zh/a/vZ8O+AUC3RpgnfeED2yaxC2ZFf8sx9pNNwgM94TE1DwyVDSBqU
         jjkl4VqBTvPYmucJisJtXNU+c4xp+D1d5mfK4QnnPbmV5C/O1jl37tqltWnjoKCONvP7
         vACf8zBfYbA+7a52Kynd12kdGnwuMYqQ/wm9zAfnZ4BOSK/PbjZVkgL0jAc8Aj98D5Uh
         82dxAknYexJ3YkKW/on5U4+VHfW0REe6esEo93yiAyYNlz/WvQQlIrEaUu15gOwYAxE8
         dhiw==
X-Mailer: git-send-email 1.7.10.1
Sender: robo...@news.nic.it
List-ID: <linux-kernel.vger.kernel.org>
X-Mailing-List: linux-kernel@vger.kernel.org
Approved: robo...@news.nic.it
Lines: 87
Organization: linux.* mail to news gateway
X-Original-Cc: mi...@kernel.org, pet...@infradead.org, fweis...@gmail.com,
	David Ahern <dsah...@gmail.com>
X-Original-Date: Mon,  8 Oct 2012 11:17:27 -0600
X-Original-Message-ID: <1349716656-48165-4-git-send-email-dsahern@gmail.com>
X-Original-References: <1349716656-48165-1-git-send-email-dsah...@gmail.com>
X-Original-Sender: linux-kernel-ow...@vger.kernel.org
X-Received-Bytes: 4319

Handles initializations typically done as part of processing the file
header and HEADER_TRACING_DATA event.

Signed-off-by: David Ahern <dsah...@gmail.com>
Cc: Arnaldo Carvalho de Melo <a...@ghostprotocols.net>
Cc: Ingo Molnar <mi...@kernel.org>
Cc: Frederic Weisbecker <fweis...@gmail.com>
Cc: Peter Zijlstra <pet...@infradead.org>
---
 tools/perf/util/evlist.c |   27 +++++++++++++++++++++++++++
 tools/perf/util/evlist.h |    3 +++
 2 files changed, 30 insertions(+)

diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c
index 7fff06f..d77135b 100644
--- a/tools/perf/util/evlist.c
+++ b/tools/perf/util/evlist.c
@@ -14,6 +14,7 @@
 #include "target.h"
 #include "evlist.h"
 #include "evsel.h"
+#include "trace-event.h"
 #include <unistd.h>
 
 #include "parse-events.h"
@@ -228,6 +229,32 @@ int perf_evlist__prepare_tracepoint_events(struct perf_evlist *evlist,
 	return 0;
 }
 
+int perf_evlist__trace_init(struct perf_evlist *evlist,
+			    struct perf_session *session)
+{
+	struct tracing_data *tdata;
+	char temp_file[] = "/tmp/perf-XXXXXXXX";
+	int fd;
+
+	fd = mkstemp(temp_file);
+	if (fd < 0) {
+		pr_err("mkstemp failed\n");
+		return -1;
+	}
+	unlink(temp_file);
+
+	tdata = tracing_data_get(&evlist->entries, fd, false);
+	if (!tdata)
+		return -1;
+
+	lseek(fd, 0, SEEK_SET);
+	(void) trace_report(fd, &session->pevent, false);
+	tracing_data_put(tdata);
+
+	return perf_evlist__prepare_tracepoint_events(evlist, session->pevent);
+}
+
+
 static int trace_event__id(const char *evname)
 {
 	char *filename, *colon;
diff --git a/tools/perf/util/evlist.h b/tools/perf/util/evlist.h
index 9959954..e375a18 100644
--- a/tools/perf/util/evlist.h
+++ b/tools/perf/util/evlist.h
@@ -8,6 +8,7 @@
 #include "event-parse.h"
 #include "evsel.h"
 #include "util.h"
+#include "session.h"
 #include <unistd.h>
 
 struct pollfd;
@@ -60,6 +61,8 @@ int perf_evlist__prepare_tracepoint_events(struct perf_evlist *evlist,
 int perf_evlist__add_tracepoints(struct perf_evlist *evlist,
 				 const char * const tracepoints[],
 				 size_t nr_tracepoints);
+int perf_evlist__trace_init(struct perf_evlist *evlist,
+			    struct perf_session *session);
 
 #define perf_evlist__add_default_attrs(evlist, array) \
 	__perf_evlist__add_default_attrs(evlist, array, ARRAY_SIZE(array))
-- 
1.7.10.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/