Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9faf140c authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mm: support vector address ranges for process_madvise"

parents e093936a a95f164e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -475,3 +475,4 @@
543	common	fspick				sys_fspick
544	common	pidfd_open			sys_pidfd_open
# 545 reserved for clone3
546	common	process_madvise			sys_process_madvise
+1 −0
Original line number Diff line number Diff line
@@ -449,3 +449,4 @@
433	common	fspick				sys_fspick
434	common	pidfd_open			sys_pidfd_open
435	common	clone3				sys_clone3
436	common	process_madvise			sys_process_madvise
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@
#define __ARM_NR_compat_set_tls		(__ARM_NR_COMPAT_BASE + 5)
#define __ARM_NR_COMPAT_END		(__ARM_NR_COMPAT_BASE + 0x800)

#define __NR_compat_syscalls		436
#define __NR_compat_syscalls		437
#endif

#define __ARCH_WANT_SYS_CLONE
+2 −0
Original line number Diff line number Diff line
@@ -879,6 +879,8 @@ __SYSCALL(__NR_fspick, sys_fspick)
__SYSCALL(__NR_pidfd_open, sys_pidfd_open)
#define __NR_clone3 435
__SYSCALL(__NR_clone3, sys_clone3)
#define __NR_process_madvise 436
__SYSCALL(__NR_process_madvise, sys_process_madvise)

/*
 * Please add new compat syscalls above this comment and update
+1 −0
Original line number Diff line number Diff line
@@ -356,3 +356,4 @@
433	common	fspick				sys_fspick
434	common	pidfd_open			sys_pidfd_open
# 435 reserved for clone3
436	common	process_madvise			sys_process_madvise
Loading