perf tools: Replace needless mmap.h with what is needed, event.h
The perf_sample struct definition and the event_attr_init() are in util/event.h, but some places were getting it thru an otherwise needless util/mmap.h header, fix it by including util/event.h directly. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-p1anwyjdbbvghrkl9dlxv7h5@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
95be9d197d
commit
252a2fdc74
|
@ -34,7 +34,7 @@
|
||||||
#include "bpf-event.h"
|
#include "bpf-event.h"
|
||||||
#include "block-range.h"
|
#include "block-range.h"
|
||||||
#include "string2.h"
|
#include "string2.h"
|
||||||
#include "util/mmap.h"
|
#include "util/event.h"
|
||||||
#include "arch/common.h"
|
#include "arch/common.h"
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
#include "util/parse-branch-options.h"
|
#include "util/parse-branch-options.h"
|
||||||
#include "metricgroup.h"
|
#include "metricgroup.h"
|
||||||
#include "util/evsel_config.h"
|
#include "util/evsel_config.h"
|
||||||
#include "util/mmap.h"
|
#include "util/event.h"
|
||||||
|
|
||||||
#define MAX_NAME_LEN 100
|
#define MAX_NAME_LEN 100
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue