From: Arnaldo Carvalho de Melo Date: Tue, 25 Sep 2018 14:52:10 +0000 (-0300) Subject: perf auxtrace: Include missing asm/bitsperlong.h to get BITS_PER_LONG X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=291ed51deee49ff35d0824fb7050538b449964d6;p=linux.git perf auxtrace: Include missing asm/bitsperlong.h to get BITS_PER_LONG The auxtrace.h header references BITS_PER_LONG without including the header where it is defined, getting it by luck from some other header, fix it. Cc: Adrian Hunter Cc: Alexander Sverdlin Cc: David Ahern Cc: Jiri Olsa Cc: Namhyung Kim Cc: Wang Nan Link: https://lkml.kernel.org/n/tip-v04ydmbh7tvpcctf3zld9j9s@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/auxtrace.h b/tools/perf/util/auxtrace.h index 0a6ce9c4fc118..d88f6e9eb4611 100644 --- a/tools/perf/util/auxtrace.h +++ b/tools/perf/util/auxtrace.h @@ -23,6 +23,7 @@ #include #include #include +#include #include "../perf.h" #include "event.h"