https://github.com/torvalds/linux
Revision 51c4767503d5d3a5a0ae4dcb19b7f7cf38b40c6c authored by Linus Torvalds on 26 July 2024, 16:50:36 UTC, committed by Linus Torvalds on 26 July 2024, 16:50:36 UTC
Pull bitmap updates from Yury Norov:
 "Random fixes"

* tag 'bitmap-6.11-rc1' of https://github.com:/norov/linux:
  riscv: Remove unnecessary int cast in variable_fls()
  radix tree test suite: put definition of bitmap_clear() into lib/bitmap.c
  bitops: Add a comment explaining the double underscore macros
  lib: bitmap: add missing MODULE_DESCRIPTION() macros
  cpumask: introduce assign_cpu() macro
2 parent s 1722389 + fb9086e
Raw File
Tip revision: 51c4767503d5d3a5a0ae4dcb19b7f7cf38b40c6c authored by Linus Torvalds on 26 July 2024, 16:50:36 UTC
Merge tag 'bitmap-6.11-rc1' of https://github.com:/norov/linux
Tip revision: 51c4767
.editorconfig
# SPDX-License-Identifier: GPL-2.0-only

root = true

[{*.{awk,c,dts,dtsi,dtso,h,mk,s,S},Kconfig,Makefile,Makefile.*}]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = tab
indent_size = 8

[*.{json,py,rs}]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4

# this must be below the general *.py to overwrite it
[tools/{perf,power,rcu,testing/kunit}/**.py,]
indent_style = tab
indent_size = 8

[*.yaml]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
back to top