#ifndef __PERF_DATA_H #define __PERF_DATA_H #include 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; } static inline int perf_data_file__is_pipe(struct perf_data_file *file) { return file->is_pipe; } static inline int perf_data_file__fd(struct perf_data_file *file) { return file->fd; } static inline unsigned long perf_data_file__size(struct perf_data_file *file) { return file->size; } int perf_data_file__open(struct perf_data_file *file); void perf_data_file__close(struct perf_data_file *file); ssize_t perf_data_file__write(struct perf_data_file *file, void *buf, size_t size); /* * If at_exit is set, only rename current perf.data to * perf.data., continue write on original file. * Set at_exit when flushing the last output. * * Return value is fd of new output. */ int perf_data_file__switch(struct perf_data_file *file, const char *postfix, size_t pos, bool at_exit); #endif /* __PERF_DATA_H */ t-rx-pump-back net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2017-01-31 00:47:30 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2017-01-31 00:51:06 -0800
commit05e0be7c900797e9164976a6014d534ce3035909 (patch)
tree6064ddf732b21c686c958cb9da73f6eae6de5a27 /include/soc/arc/mcip.h
parent3f5c34c6d4688b3b7e1dbc7bbc68a2f03a0d6b0c (diff)
Input: synaptics-rmi4 - fix reversed conditions in enable/disable_irq_wake
These tests are reversed. A warning should be displayed if an error is returned, not on success. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'include/soc/arc/mcip.h')