From: Linus Torvalds Date: Tue, 10 Feb 2026 19:39:45 +0000 (-0800) Subject: Merge tag 'bitmap-for-6.20' of https://github.com/norov/linux X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f144367d012929326f15a399394a9a8be4f98acb;p=thirdparty%2Flinux.git Merge tag 'bitmap-for-6.20' of https://github.com/norov/linux Pull bitmap updates from Yury Norov: - more rust helpers (Alice) - more bitops tests (Ryota) - FIND_NTH_BIT() uninitialized variable fix (Lee Yongjun) - random cleanups (Andy, H. Peter) * tag 'bitmap-for-6.20' of https://github.com/norov/linux: lib/tests: extend KUnit test for bitops with more cases bitops: Add more files to the MAINTAINERS lib/find_bit: fix uninitialized variable use in FIND_NTH_BIT lib/tests: add KUnit test for bitops rust: cpumask: add __rust_helper to helpers rust: bitops: add __rust_helper to helpers rust: bitmap: add __rust_helper to helpers linux/bitfield.h: replace __auto_type with auto --- f144367d012929326f15a399394a9a8be4f98acb diff --cc rust/helpers/bitops.c index e79ef9e6d98f9,f875692ead30a..271b8a712dee5 --- a/rust/helpers/bitops.c +++ b/rust/helpers/bitops.c @@@ -1,8 -1,8 +1,9 @@@ // SPDX-License-Identifier: GPL-2.0 #include +#include + __rust_helper void rust_helper___set_bit(unsigned long nr, unsigned long *addr) { __set_bit(nr, addr);