[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150708110651.GC6944@e104818-lin.cambridge.arm.com>
Date: Wed, 8 Jul 2015 12:06:51 +0100
From: Catalin Marinas <catalin.marinas@....com>
To: Eric B Munson <emunson@...mai.com>
Cc: Andrew Morton <akpm@...ux-foundation.org>,
linux-arch@...r.kernel.org, Michal Hocko <mhocko@...e.cz>,
linux-am33-list@...hat.com, linux-ia64@...r.kernel.org,
linux-parisc@...r.kernel.org, linux-cris-kernel@...s.com,
linux-mips@...ux-mips.org, linux-s390@...r.kernel.org,
linux-xtensa@...ux-xtensa.org, linux-sh@...r.kernel.org,
linux-kernel@...r.kernel.org,
adi-buildroot-devel@...ts.sourceforge.net, linux-mm@...ck.org,
linux-m68k@...ts.linux-m68k.org, Vlastimil Babka <vbabka@...e.cz>,
linux-alpha@...r.kernel.org, sparclinux@...r.kernel.org,
linux-api@...r.kernel.org, linuxppc-dev@...ts.ozlabs.org,
linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH V3 2/5] mm: mlock: Add new mlock, munlock, and munlockall
system calls
On Tue, Jul 07, 2015 at 01:03:40PM -0400, Eric B Munson wrote:
> diff --git a/arch/arm/kernel/calls.S b/arch/arm/kernel/calls.S
> index 05745eb..514e77b 100644
> --- a/arch/arm/kernel/calls.S
> +++ b/arch/arm/kernel/calls.S
> @@ -397,6 +397,9 @@
> /* 385 */ CALL(sys_memfd_create)
> CALL(sys_bpf)
> CALL(sys_execveat)
> + CALL(sys_mlock2)
> + CALL(sys_munlock2)
> +/* 400 */ CALL(sys_munlockall2)
s/400/390/
> diff --git a/arch/arm64/include/asm/unistd32.h b/arch/arm64/include/asm/unistd32.h
> index cef934a..318072aa 100644
> --- a/arch/arm64/include/asm/unistd32.h
> +++ b/arch/arm64/include/asm/unistd32.h
> @@ -797,3 +797,9 @@ __SYSCALL(__NR_memfd_create, sys_memfd_create)
> __SYSCALL(__NR_bpf, sys_bpf)
> #define __NR_execveat 387
> __SYSCALL(__NR_execveat, compat_sys_execveat)
> +#define __NR_mlock2 388
> +__SYSCALL(__NR_mlock2, sys_mlock2)
> +#define __NR_munlock2 389
> +__SYSCALL(__NR_munlock2, sys_munlock2)
> +#define __NR_munlockall2 390
> +__SYSCALL(__NR_munlockall2, sys_munlockall2)
These look fine.
Catalin
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists