diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-11-02 10:09:37 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-11-02 10:09:37 +0300 |
commit | 21e80f3841c01aeaf32d7aee7bbc87b3db1aa0c6 (patch) | |
tree | 5ce5eadd4c3eeb8d22c9e732ac36f09cc240e1fc /MAINTAINERS | |
parent | 426ee5196d1821d70192923e70c0f8347faade47 (diff) | |
parent | ea0b0bcef4917a2640ecc100c768b8e785784834 (diff) | |
download | linux-21e80f3841c01aeaf32d7aee7bbc87b3db1aa0c6.tar.xz |
Merge tag 'modules-6.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux
Pull modules updates from Luis Chamberlain:
"The only thing worth highligthing is that gzip moves to use vmalloc()
instead of kmalloc just as we had a fix for this for zstd on v6.6-rc1.
The rest is regular house keeping, keeping things neat, tidy, and
boring"
[ The kmalloc -> vmalloc conversion is not the right approach.
Unless you know you need huge areas or know you need to use virtual
mappings for some reason (playing with protection bits or whatever),
you should use kvmalloc()/kvfree, which automatically picks the right
allocation model - Linus ]
* tag 'modules-6.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux:
module: Annotate struct module_notes_attrs with __counted_by
module: Fix comment typo
module: Make is_valid_name() return bool
module: Make is_mapping_symbol() return bool
module/decompress: use vmalloc() for gzip decompression workspace
MAINTAINERS: add include/linux/module*.h to modules
module: Clarify documentation of module_param_call()
Diffstat (limited to 'MAINTAINERS')
-rw-r--r-- | MAINTAINERS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 05640522a6ab..dc56b0e1b994 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -14527,7 +14527,7 @@ L: linux-kernel@vger.kernel.org S: Maintained T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next F: include/linux/kmod.h -F: include/linux/module.h +F: include/linux/module*.h F: kernel/module/ F: lib/test_kmod.c F: scripts/module* |