mmap.h 3.3 KB
Newer Older
1 2 3 4 5 6
#ifndef __PERF_MMAP_H
#define __PERF_MMAP_H 1

#include <linux/compiler.h>
#include <linux/refcount.h>
#include <linux/types.h>
7
#include <linux/ring_buffer.h>
8
#include <stdbool.h>
9 10 11
#ifdef HAVE_AIO_SUPPORT
#include <aio.h>
#endif
12 13 14
#include "auxtrace.h"
#include "event.h"

15
struct aiocb;
16 17 18 19 20 21 22 23 24
/**
 * struct perf_mmap - perf's ring buffer mmap details
 *
 * @refcnt - e.g. code using PERF_EVENT_IOC_SET_OUTPUT to share this
 */
struct perf_mmap {
	void		 *base;
	int		 mask;
	int		 fd;
25
	int		 cpu;
26 27
	refcount_t	 refcnt;
	u64		 prev;
28 29
	u64		 start;
	u64		 end;
30
	bool		 overwrite;
31 32
	struct auxtrace_mmap auxtrace_mmap;
	char		 event_copy[PERF_SAMPLE_MAX_SIZE] __aligned(8);
33 34
#ifdef HAVE_AIO_SUPPORT
	struct {
35 36 37
		void		 **data;
		struct aiocb	 *cblocks;
		struct aiocb	 **aiocb;
38
		int		 nr_cblocks;
39 40
	} aio;
#endif
41
	cpu_set_t	affinity_mask;
42
	u64		flush;
43 44
	void		*data;
	int		comp_level;
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
};

/*
 * State machine of bkw_mmap_state:
 *
 *                     .________________(forbid)_____________.
 *                     |                                     V
 * NOTREADY --(0)--> RUNNING --(1)--> DATA_PENDING --(2)--> EMPTY
 *                     ^  ^              |   ^               |
 *                     |  |__(forbid)____/   |___(forbid)___/|
 *                     |                                     |
 *                      \_________________(3)_______________/
 *
 * NOTREADY     : Backward ring buffers are not ready
 * RUNNING      : Backward ring buffers are recording
 * DATA_PENDING : We are required to collect data from backward ring buffers
 * EMPTY        : We have collected data from backward ring buffers.
 *
 * (0): Setup backward ring buffer
 * (1): Pause ring buffers for reading
 * (2): Read from ring buffers
 * (3): Resume ring buffers for recording
 */
enum bkw_mmap_state {
	BKW_MMAP_NOTREADY,
	BKW_MMAP_RUNNING,
	BKW_MMAP_DATA_PENDING,
	BKW_MMAP_EMPTY,
};

struct mmap_params {
76
	int prot, mask, nr_cblocks, affinity, flush, comp_level;
77 78 79
	struct auxtrace_mmap_params auxtrace_mp;
};

80
int perf_mmap__mmap(struct perf_mmap *map, struct mmap_params *mp, int fd, int cpu);
81 82 83 84 85
void perf_mmap__munmap(struct perf_mmap *map);

void perf_mmap__get(struct perf_mmap *map);
void perf_mmap__put(struct perf_mmap *map);

86
void perf_mmap__consume(struct perf_mmap *map);
87 88 89

static inline u64 perf_mmap__read_head(struct perf_mmap *mm)
{
90
	return ring_buffer_read_head(mm->base);
91 92 93 94
}

static inline void perf_mmap__write_tail(struct perf_mmap *md, u64 tail)
{
95
	ring_buffer_write_tail(md->base, tail);
96 97
}

98
union perf_event *perf_mmap__read_forward(struct perf_mmap *map);
99

100
union perf_event *perf_mmap__read_event(struct perf_mmap *map);
101

102
int perf_mmap__push(struct perf_mmap *md, void *to,
103
		    int push(struct perf_mmap *map, void *to, void *buf, size_t size));
104
#ifdef HAVE_AIO_SUPPORT
105
int perf_mmap__aio_push(struct perf_mmap *md, void *to, int idx,
106 107 108
			int push(void *to, struct aiocb *cblock, void *buf, size_t size, off_t off),
			off_t *off);
#else
109
static inline int perf_mmap__aio_push(struct perf_mmap *md __maybe_unused, void *to __maybe_unused, int idx __maybe_unused,
110 111 112 113 114 115
	int push(void *to, struct aiocb *cblock, void *buf, size_t size, off_t off) __maybe_unused,
	off_t *off __maybe_unused)
{
	return 0;
}
#endif
116

117 118
size_t perf_mmap__mmap_len(struct perf_mmap *map);

119
int perf_mmap__read_init(struct perf_mmap *md);
120
void perf_mmap__read_done(struct perf_mmap *map);
121
#endif /*__PERF_MMAP_H */