From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander Sverdlin Subject: Re: [PATCH 02/12] perf auxtrace: Include missing asm/bitsperlong.h to get BITS_PER_LONG Date: Tue, 9 Oct 2018 10:43:56 +0200 Message-ID: References: <20181009005427.6607-1-acme@kernel.org> <20181009005427.6607-3-acme@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20181009005427.6607-3-acme@kernel.org> Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org To: Arnaldo Carvalho de Melo , Ingo Molnar Cc: Clark Williams , linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , David Ahern , Jiri Olsa , Namhyung Kim , Wang Nan List-Id: linux-perf-users.vger.kernel.org Hi! On 09/10/2018 02:54, Arnaldo Carvalho de Melo wrote: > From: Arnaldo Carvalho de Melo > > 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 Reviewed-by: Alexander Sverdlin > Signed-off-by: Arnaldo Carvalho de Melo > --- > tools/perf/util/auxtrace.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tools/perf/util/auxtrace.h b/tools/perf/util/auxtrace.h > index 0a6ce9c4fc11..d88f6e9eb461 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" > -- Best regards, Alexander Sverdlin.