diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-05-24 22:47:28 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-05-24 22:47:28 +0300 |
commit | 0b32d436c015d5a88b3368405e3d8fe82f195a54 (patch) | |
tree | bca3ff3546fe073d766d527f87b3fb6cdfb87e0c /include/linux | |
parent | f1f9984fdc5e37303d7180ff7a85dfecb8e57e85 (diff) | |
parent | a52b4f11a2e17109c4b9f7df4ff19215b1752efc (diff) | |
download | linux-0b32d436c015d5a88b3368405e3d8fe82f195a54.tar.xz |
Merge tag 'mm-stable-2024-05-24-11-49' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
Pull more mm updates from Andrew Morton:
"Jeff Xu's implementation of the mseal() syscall"
* tag 'mm-stable-2024-05-24-11-49' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm:
selftest mm/mseal read-only elf memory segment
mseal: add documentation
selftest mm/mseal memory sealing
mseal: add mseal syscall
mseal: wire up mseal syscall
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/syscalls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index e619ac10cd23..9104952d323d 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h @@ -821,6 +821,7 @@ asmlinkage long sys_process_mrelease(int pidfd, unsigned int flags); asmlinkage long sys_remap_file_pages(unsigned long start, unsigned long size, unsigned long prot, unsigned long pgoff, unsigned long flags); +asmlinkage long sys_mseal(unsigned long start, size_t len, unsigned long flags); asmlinkage long sys_mbind(unsigned long start, unsigned long len, unsigned long mode, const unsigned long __user *nmask, |