mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:05:18 +07:00
151ed5d70d
Move perf_mmap__read_event() from tools/perf to libperf and export it in the perf/mmap.h header. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Michael Petlan <mpetlan@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lore.kernel.org/lkml/20191007125344.14268-13-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
56 lines
1.2 KiB
C
56 lines
1.2 KiB
C
#ifndef __PERF_MMAP_H
|
|
#define __PERF_MMAP_H 1
|
|
|
|
#include <internal/mmap.h>
|
|
#include <linux/compiler.h>
|
|
#include <linux/refcount.h>
|
|
#include <linux/types.h>
|
|
#include <linux/ring_buffer.h>
|
|
#include <stdbool.h>
|
|
#include <pthread.h> // for cpu_set_t
|
|
#ifdef HAVE_AIO_SUPPORT
|
|
#include <aio.h>
|
|
#endif
|
|
#include "auxtrace.h"
|
|
#include "event.h"
|
|
|
|
struct aiocb;
|
|
/**
|
|
* struct mmap - perf's ring buffer mmap details
|
|
*
|
|
* @refcnt - e.g. code using PERF_EVENT_IOC_SET_OUTPUT to share this
|
|
*/
|
|
struct mmap {
|
|
struct perf_mmap core;
|
|
struct auxtrace_mmap auxtrace_mmap;
|
|
#ifdef HAVE_AIO_SUPPORT
|
|
struct {
|
|
void **data;
|
|
struct aiocb *cblocks;
|
|
struct aiocb **aiocb;
|
|
int nr_cblocks;
|
|
} aio;
|
|
#endif
|
|
cpu_set_t affinity_mask;
|
|
void *data;
|
|
int comp_level;
|
|
};
|
|
|
|
struct mmap_params {
|
|
struct perf_mmap_param core;
|
|
int nr_cblocks, affinity, flush, comp_level;
|
|
struct auxtrace_mmap_params auxtrace_mp;
|
|
};
|
|
|
|
int mmap__mmap(struct mmap *map, struct mmap_params *mp, int fd, int cpu);
|
|
void mmap__munmap(struct mmap *map);
|
|
|
|
union perf_event *perf_mmap__read_forward(struct mmap *map);
|
|
|
|
int perf_mmap__push(struct mmap *md, void *to,
|
|
int push(struct mmap *map, void *to, void *buf, size_t size));
|
|
|
|
size_t mmap__mmap_len(struct mmap *map);
|
|
|
|
#endif /*__PERF_MMAP_H */
|