aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/perf/util/dso.h
diff options
context:
space:
mode:
authorAdrian Hunter <adrian.hunter@intel.com>2014-07-22 16:17:19 +0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2014-07-23 11:23:44 -0300
commit288be943b5024729cd6809b61b62f727960178f3 (patch)
treeac7ec9cebe169d8305059b0d2135680afd4f9f92 /tools/perf/util/dso.h
parentperf tools: Record whether a dso has data (diff)
downloadwireguard-linux-288be943b5024729cd6809b61b62f727960178f3.tar.xz
wireguard-linux-288be943b5024729cd6809b61b62f727960178f3.zip
perf tools: Add dso__data_status_seen()
Add a function to track whether a caller has seen the data status of a dso. This is needed to enable callers to report the error exactly once only per dso. Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/1406035081-14301-11-git-send-email-adrian.hunter@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/dso.h')
-rw-r--r--tools/perf/util/dso.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/util/dso.h b/tools/perf/util/dso.h
index aeb7bcbf0239..c805f604da1f 100644
--- a/tools/perf/util/dso.h
+++ b/tools/perf/util/dso.h
@@ -46,6 +46,10 @@ enum dso_data_status {
DSO_DATA_STATUS_OK = 1,
};
+enum dso_data_status_seen {
+ DSO_DATA_STATUS_SEEN_ITRACE,
+};
+
#define DSO__SWAP(dso, type, val) \
({ \
type ____r = val; \
@@ -111,6 +115,7 @@ struct dso {
struct rb_root cache;
int fd;
int status;
+ u32 status_seen;
size_t file_size;
struct list_head open_entry;
} data;
@@ -203,6 +208,7 @@ ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
struct machine *machine, u64 addr,
u8 *data, ssize_t size);
+bool dso__data_status_seen(struct dso *dso, enum dso_data_status_seen by);
struct map *dso__new_map(const char *name);
struct dso *dso__kernel_findnew(struct machine *machine, const char *name,