mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 00:53:40 +00:00
6a4d98d787
Adding perf_data_file__open interface to data object to open the perf.data file for both read and write. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Andi Kleen <andi@firstfloor.org> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1381847254-28809-3-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
34 lines
652 B
C
34 lines
652 B
C
#ifndef __PERF_DATA_H
|
|
#define __PERF_DATA_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
enum perf_data_mode {
|
|
PERF_DATA_MODE_WRITE,
|
|
PERF_DATA_MODE_READ,
|
|
};
|
|
|
|
struct perf_data_file {
|
|
const char *path;
|
|
int fd;
|
|
bool is_pipe;
|
|
bool force;
|
|
unsigned long size;
|
|
enum perf_data_mode mode;
|
|
};
|
|
|
|
static inline bool perf_data_file__is_read(struct perf_data_file *file)
|
|
{
|
|
return file->mode == PERF_DATA_MODE_READ;
|
|
}
|
|
|
|
static inline bool perf_data_file__is_write(struct perf_data_file *file)
|
|
{
|
|
return file->mode == PERF_DATA_MODE_WRITE;
|
|
}
|
|
|
|
int perf_data_file__open(struct perf_data_file *file);
|
|
void perf_data_file__close(struct perf_data_file *file);
|
|
|
|
#endif /* __PERF_DATA_H */
|