Merge tag 'bitmap-for-6.7' of https://github.com/norov/linux
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 3 Nov 2023 17:08:36 +0000 (07:08 -1000)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 3 Nov 2023 17:08:36 +0000 (07:08 -1000)
Pull bitmap updates from Yury Norov:
 "This includes the 'bitmap: cleanup bitmap_*_region() implementation'
  series, and scattered cleanup patches"

* tag 'bitmap-for-6.7' of https://github.com/norov/linux:
  buildid: reduce header file dependencies for module
  bitmap: move bitmap_*_region() functions to bitmap.h
  bitmap: drop _reg_op() function
  bitmap: replace _reg_op(REG_OP_ISFREE) with find_next_bit()
  bitmap: replace _reg_op(REG_OP_RELEASE) with bitmap_clear()
  bitmap: replace _reg_op(REG_OP_ALLOC) with bitmap_set()
  bitmap: fix opencoded bitmap_allocate_region()
  bitmap: add test for bitmap_*_region() functions
  bitmap: align __reg_op() wrappers with modern coding style
  lib/bitmap: split-out string-related operations to a separate files
  bitmap: Remove dead code, i.e. bitmap_copy_le()
  bitmap: Fix a typo ("identify map")
  cpumask: kernel-doc cleanups and additions

1  2 
MAINTAINERS
lib/Makefile
lib/cpumask.c

diff --cc MAINTAINERS
Simple merge
diff --cc lib/Makefile
index 9e0972f7b76434ddb9476de10321f2303d4a181a,9e8f9f6dd3b22235b1e0ac8a16aa57803d848c73..13455f47f9df6123150287816a7612dc5bc291f8
@@@ -45,10 -45,10 +45,10 @@@ obj-y      += lockref.
  obj-y += bcd.o sort.o parser.o debug_locks.o random32.o \
         bust_spinlocks.o kasprintf.o bitmap.o scatterlist.o \
         list_sort.o uuid.o iov_iter.o clz_ctz.o \
 -       bsearch.o find_bit.o llist.o memweight.o kfifo.o \
 +       bsearch.o find_bit.o llist.o lwq.o memweight.o kfifo.o \
         percpu-refcount.o rhashtable.o base64.o \
         once.o refcount.o rcuref.o usercopy.o errseq.o bucket_locks.o \
-        generic-radix-tree.o
+        generic-radix-tree.o bitmap-str.o
  obj-$(CONFIG_STRING_SELFTEST) += test_string.o
  obj-y += string_helpers.o
  obj-$(CONFIG_TEST_STRING_HELPERS) += test-string_helpers.o
diff --cc lib/cpumask.c
Simple merge