diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-18 11:53:31 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-18 11:53:31 +0200 |
commit | 667495de218c25e909c6b33ed647b592a8a71a02 (patch) | |
tree | e93836cdc4b368faaef1168a1a4cfc380ffdf9d5 /mm | |
parent | 7c9026b2b054540bb25203eee1b073a32da84020 (diff) | |
parent | 44f65d900698278a8451988abe0d5ca37fd46882 (diff) |
Merge tag 'execve-v6.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux
Pull execve updates from Kees Cook:
- binfmt_elf: Dump smaller VMAs first in ELF cores (Brian Mak)
- binfmt_elf: mseal address zero (Jeff Xu)
- binfmt_elf, coredump: Log the reason of the failed core dumps (Roman
Kisel)
* tag 'execve-v6.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
binfmt_elf: mseal address zero
binfmt_elf: Dump smaller VMAs first in ELF cores
binfmt_elf, coredump: Log the reason of the failed core dumps
coredump: Standartize and fix logging
Diffstat (limited to 'mm')
-rw-r--r-- | mm/mseal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mseal.c b/mm/mseal.c index 15bba28acc00..c8787cc6ba55 100644 --- a/mm/mseal.c +++ b/mm/mseal.c @@ -256,7 +256,7 @@ static int apply_mm_seal(unsigned long start, unsigned long end) * * unseal() is not supported. */ -static int do_mseal(unsigned long start, size_t len_in, unsigned long flags) +int do_mseal(unsigned long start, size_t len_in, unsigned long flags) { size_t len; int ret = 0; |