parse-events.c (a43783aeec5fac8ef372ff8c0a5bbb3056fc0604) | parse-events.c (20a9ed280dde6292c529dfdaaf9ce743ef71bb1f) |
---|---|
1#include "parse-events.h" 2#include "evsel.h" 3#include "evlist.h" 4#include <api/fs/fs.h> 5#include "tests.h" 6#include "debug.h" 7#include "util.h" 8#include <errno.h> 9#include <linux/kernel.h> 10#include <linux/hw_breakpoint.h> 11#include <api/fs/fs.h> | 1#include "parse-events.h" 2#include "evsel.h" 3#include "evlist.h" 4#include <api/fs/fs.h> 5#include "tests.h" 6#include "debug.h" 7#include "util.h" 8#include <errno.h> 9#include <linux/kernel.h> 10#include <linux/hw_breakpoint.h> 11#include <api/fs/fs.h> |
12#include <api/fs/tracing_path.h> |
|
12 13#define PERF_TP_SAMPLE_TYPE (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME | \ 14 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD) 15 16static int test__checkevent_tracepoint(struct perf_evlist *evlist) 17{ 18 struct perf_evsel *evsel = perf_evlist__first(evlist); 19 --- 1829 unchanged lines hidden --- | 13 14#define PERF_TP_SAMPLE_TYPE (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME | \ 15 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD) 16 17static int test__checkevent_tracepoint(struct perf_evlist *evlist) 18{ 19 struct perf_evsel *evsel = perf_evlist__first(evlist); 20 --- 1829 unchanged lines hidden --- |