libperf: Add 'mask' to struct perf_mmap

Move 'mask' from tools/perf's mmap to libperf's perf_mmap struct.

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 <a.p.zijlstra@chello.nl>
Link: http://lore.kernel.org/lkml/20190913132355.21634-12-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Jiri Olsa
2019-07-27 22:27:55 +02:00
committed by Arnaldo Carvalho de Melo
parent 547740f7b3
commit 4fd0cef2c7
3 changed files with 13 additions and 13 deletions

View File

@@ -9,6 +9,7 @@
*/
struct perf_mmap {
void *base;
int mask;
};
#endif /* __LIBPERF_INTERNAL_MMAP_H */