From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 52D2FC432BE for ; Tue, 31 Aug 2021 19:22:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 36E3A60234 for ; Tue, 31 Aug 2021 19:22:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240707AbhHaTXQ (ORCPT ); Tue, 31 Aug 2021 15:23:16 -0400 Received: from mail.kernel.org ([198.145.29.99]:40446 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231634AbhHaTXQ (ORCPT ); Tue, 31 Aug 2021 15:23:16 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 449E160234; Tue, 31 Aug 2021 19:22:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1630437740; bh=i1Y1hbT/RZr4nx6BdPpIbKxSIJvrWrIGnl09XjmbwrQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=BT9a29McinkaEPxJSYihIRCbncF/2ez4ztp1fuytYb1LpHiNyaEdYcYmcy3yRg1xf /30XDjHFoAh4Bx9kP90BULDT3FiPaTYhov+ExVCYV5tUbSMn8WhKRQqO+IB+jRJSF2 u04d1g0/9hdavW6FocQWFJYhjnXW8R5aY9yJM4WYe8kTLv9nWx9Vrb+GN8ueu2emOR k9ZfZfONJWg6lK6VN8TiMlU6c7w9b7NjgBOlctI3GuzVRVyjrw3t5XLSnJCQ4TwyhU saSQ5aodm9AZ3J6SV3QHrjqERvAHFi8velP5wB60FoZetUp+hNrh0iAEyay1/LWpSb yKh6SBooUKhxQ== Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 20C934007E; Tue, 31 Aug 2021 16:22:18 -0300 (-03) Date: Tue, 31 Aug 2021 16:22:18 -0300 From: Arnaldo Carvalho de Melo To: Riccardo Mancini Cc: Ian Rogers , Namhyung Kim , Peter Zijlstra , Ingo Molnar , Mark Rutland , Jiri Olsa , linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org Subject: Re: [RFC PATCH v1 05/37] perf util/mmap: add missing bitops.h header Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Url: http://acmel.wordpress.com Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Sat, Aug 21, 2021 at 11:19:11AM +0200, Riccardo Mancini escreveu: > MMAP_CPU_MASK_BYTES uses the BITS_TO_LONGS macro, which is defined in > linux/bitops.h. > However, this header is not included directly, but gets imported > indirectly in files using the macro. > This patch adds the missing include. Thanks, applied. - Arnaldo > Signed-off-by: Riccardo Mancini > --- > tools/perf/util/mmap.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tools/perf/util/mmap.h b/tools/perf/util/mmap.h > index b4923e587fd7749c..8e259b9610f83c96 100644 > --- a/tools/perf/util/mmap.h > +++ b/tools/perf/util/mmap.h > @@ -6,6 +6,7 @@ > #include > #include > #include > +#include > #include > #include // for cpu_set_t > #ifdef HAVE_AIO_SUPPORT > -- > 2.31.1 -- - Arnaldo