mm/madvise: introduce process_madvise() syscall: an external memory hinting API
There is usecase that System Management Software(SMS) want to give a memory hint like MADV_[COLD|PAGEEOUT] to other processes and in the case of Android, it is the ActivityManagerService. The information required to make the reclaim decision is not known to the app. Instead, it is known to the centralized userspace daemon(ActivityManagerService), and that daemon must be able to initiate reclaim on its own without any app involvement. To solve the issue, this patch introduces a new syscall process_madvise(2). It uses pidfd of an external process to give the hint. It also supports vector address range because Android app has thousands of vmas due to zygote so it's totally waste of CPU and power if we should call the syscall one by one for each vma.(With testing 2000-vma syscall vs 1-vector syscall, it showed 15% performance improvement. I think it would be bigger in real practice because the testing ran very cache friendly...
Showing
- arch/alpha/kernel/syscalls/syscall.tbl 1 addition, 0 deletionsarch/alpha/kernel/syscalls/syscall.tbl
- arch/arm/tools/syscall.tbl 1 addition, 0 deletionsarch/arm/tools/syscall.tbl
- arch/arm64/include/asm/unistd.h 1 addition, 1 deletionarch/arm64/include/asm/unistd.h
- arch/arm64/include/asm/unistd32.h 2 additions, 0 deletionsarch/arm64/include/asm/unistd32.h
- arch/ia64/kernel/syscalls/syscall.tbl 1 addition, 0 deletionsarch/ia64/kernel/syscalls/syscall.tbl
- arch/m68k/kernel/syscalls/syscall.tbl 1 addition, 0 deletionsarch/m68k/kernel/syscalls/syscall.tbl
- arch/microblaze/kernel/syscalls/syscall.tbl 1 addition, 0 deletionsarch/microblaze/kernel/syscalls/syscall.tbl
- arch/mips/kernel/syscalls/syscall_n32.tbl 1 addition, 0 deletionsarch/mips/kernel/syscalls/syscall_n32.tbl
- arch/mips/kernel/syscalls/syscall_n64.tbl 1 addition, 0 deletionsarch/mips/kernel/syscalls/syscall_n64.tbl
- arch/mips/kernel/syscalls/syscall_o32.tbl 1 addition, 0 deletionsarch/mips/kernel/syscalls/syscall_o32.tbl
- arch/parisc/kernel/syscalls/syscall.tbl 1 addition, 0 deletionsarch/parisc/kernel/syscalls/syscall.tbl
- arch/powerpc/kernel/syscalls/syscall.tbl 1 addition, 0 deletionsarch/powerpc/kernel/syscalls/syscall.tbl
- arch/s390/kernel/syscalls/syscall.tbl 1 addition, 0 deletionsarch/s390/kernel/syscalls/syscall.tbl
- arch/sh/kernel/syscalls/syscall.tbl 1 addition, 0 deletionsarch/sh/kernel/syscalls/syscall.tbl
- arch/sparc/kernel/syscalls/syscall.tbl 1 addition, 0 deletionsarch/sparc/kernel/syscalls/syscall.tbl
- arch/x86/entry/syscalls/syscall_32.tbl 1 addition, 0 deletionsarch/x86/entry/syscalls/syscall_32.tbl
- arch/x86/entry/syscalls/syscall_64.tbl 1 addition, 0 deletionsarch/x86/entry/syscalls/syscall_64.tbl
- arch/xtensa/kernel/syscalls/syscall.tbl 1 addition, 0 deletionsarch/xtensa/kernel/syscalls/syscall.tbl
- include/linux/syscalls.h 2 additions, 0 deletionsinclude/linux/syscalls.h
- include/uapi/asm-generic/unistd.h 3 additions, 1 deletioninclude/uapi/asm-generic/unistd.h
Please register or sign in to comment