From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 9EFD7254AFF; Fri, 21 Nov 2025 13:51:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763733106; cv=none; b=ndBhBuR3QO2dcmOfaC16antf27bo4lEGgTD+phU4djxUoyW1/uskGgwwdGjg8QjZ7F9Ip+nNVA6JV8WSAGSuf5MgIVhOLU5QwqH3XGlssmTvhIIsgH3hAbNpt1q2na0mnT0HOkI62CraBZOYxZxocnGvKYQqjm6pqWRfhmoIhhk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763733106; c=relaxed/simple; bh=wDw80e1/W3cht3hDEMftvqZrXXMUe/DmB+4ptLc39Sk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Ukmzsd6MsQ32RZZT5P5OLlU2vCm92CnJNpEY4VwaZ5PUo7cMg47mwbuTS2x9EEg327wCXYDTzV9pVggDiTXY86n9FHyp7Av5GNTfuoTzXS6y3WKw9O/OO+9VZouLYC6ete5EYbSufK/UKItgt9/+1InW2DfIvj/QLGQ1H5NvcrA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=NPqSH9j2; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="NPqSH9j2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 01C66C4CEFB; Fri, 21 Nov 2025 13:51:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1763733106; bh=wDw80e1/W3cht3hDEMftvqZrXXMUe/DmB+4ptLc39Sk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NPqSH9j2g6k3HAUKfHyJ5eDia5wdGt6h75kSrHxJrR6Lu2vfq8ZzGG4ENiN4CneEB rPU06KwSiYDx4n1F6JK/X5JdmygoHvxCnMq2iZw+trHDfezhsD/QTjZ1AuJO96Sf+Z GoKrVZrcE4/XivPweJU+P0tXzqua3tksa2Id/QMo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ian Rogers , Yury Norov , Adrian Hunter , Alexander Shishkin , =?UTF-8?q?Andr=C3=A9=20Almeida?= , Daniel Borkmann , Darren Hart , "David S. Miller" , Davidlohr Bueso , Ido Schimmel , Ingo Molnar , Jakub Kicinski , Jamal Hadi Salim , Jason Xing , Jiri Olsa , Jonas Gottlieb , Kan Liang , Mark Rutland , Maurice Lambert , Namhyung Kim , Paolo Abeni , Peter Zijlstra , Petr Machata , Rasmus Villemoes , Thomas Gleixner , Yuyang Huang , Arnaldo Carvalho de Melo , Sasha Levin Subject: [PATCH 6.6 320/529] tools bitmap: Add missing asm-generic/bitsperlong.h include Date: Fri, 21 Nov 2025 14:10:19 +0100 Message-ID: <20251121130242.412920830@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251121130230.985163914@linuxfoundation.org> References: <20251121130230.985163914@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ian Rogers [ Upstream commit f38ce0209ab4553906b44bd1159e35c740a84161 ] small_const_nbits is defined in asm-generic/bitsperlong.h which bitmap.h uses but doesn't include causing build failures in some build systems. Add the missing #include. Note the bitmap.h in tools has diverged from that of the kernel, so no changes are made there. Signed-off-by: Ian Rogers Acked-by: Yury Norov Cc: Adrian Hunter Cc: Alexander Shishkin Cc: André Almeida Cc: Daniel Borkmann Cc: Darren Hart Cc: David S. Miller Cc: Davidlohr Bueso Cc: Ido Schimmel Cc: Ingo Molnar Cc: Jakub Kicinski Cc: Jamal Hadi Salim Cc: Jason Xing Cc: Jiri Olsa Cc: Jonas Gottlieb Cc: Kan Liang Cc: Mark Rutland Cc: Maurice Lambert Cc: Namhyung Kim Cc: Paolo Abeni Cc: Peter Zijlstra Cc: Petr Machata Cc: Rasmus Villemoes Cc: Thomas Gleixner Cc: Yuyang Huang Signed-off-by: Arnaldo Carvalho de Melo Signed-off-by: Sasha Levin --- tools/include/linux/bitmap.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/include/linux/bitmap.h b/tools/include/linux/bitmap.h index 210c13b1b8570..926f3117d8e4f 100644 --- a/tools/include/linux/bitmap.h +++ b/tools/include/linux/bitmap.h @@ -3,6 +3,7 @@ #define _TOOLS_LINUX_BITMAP_H #include +#include #include #include #include -- 2.51.0