mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 12:41:55 +00:00
8755a8f27a
The trace event name<->id mapping is dynamic for each kernel compile. In order for perf.data to be useable outside the actual system, we thus need to store a table of this mapping for later use. This patch adds this table to perf.data, and provides helper functions for lookup up fields from this table. To avoid mistakes, lookup-from-table is kept completely seprate from lookup-from-local-debugfs. Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> Cc: Frederic Weisbecker <fweisbec@gmail.com> LKML-Reference: <20090912130405.6960d099@infradead.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
#ifndef _PERF_HEADER_H
|
|
#define _PERF_HEADER_H
|
|
|
|
#include "../../../include/linux/perf_counter.h"
|
|
#include <sys/types.h>
|
|
#include "types.h"
|
|
|
|
struct perf_header_attr {
|
|
struct perf_counter_attr attr;
|
|
int ids, size;
|
|
u64 *id;
|
|
off_t id_offset;
|
|
};
|
|
|
|
struct perf_header {
|
|
int frozen;
|
|
int attrs, size;
|
|
struct perf_header_attr **attr;
|
|
s64 attr_offset;
|
|
u64 data_offset;
|
|
u64 data_size;
|
|
u64 event_offset;
|
|
u64 event_size;
|
|
};
|
|
|
|
struct perf_header *perf_header__read(int fd);
|
|
void perf_header__write(struct perf_header *self, int fd);
|
|
|
|
void perf_header__add_attr(struct perf_header *self,
|
|
struct perf_header_attr *attr);
|
|
|
|
void perf_header__push_event(u64 id, const char *name);
|
|
char *perf_header__find_event(u64 id);
|
|
|
|
|
|
struct perf_header_attr *
|
|
perf_header_attr__new(struct perf_counter_attr *attr);
|
|
void perf_header_attr__add_id(struct perf_header_attr *self, u64 id);
|
|
|
|
u64 perf_header__sample_type(struct perf_header *header);
|
|
struct perf_counter_attr *
|
|
perf_header__find_attr(u64 id, struct perf_header *header);
|
|
|
|
|
|
struct perf_header *perf_header__new(void);
|
|
|
|
#endif /* _PERF_HEADER_H */
|