projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf4ce5c
)
arm64: use SYSCALL_DEFINE6() for mmap
author
Mark Rutland
<mark.rutland@arm.com>
Wed, 11 Jul 2018 13:56:54 +0000
(14:56 +0100)
committer
Will Deacon
<will.deacon@arm.com>
Thu, 12 Jul 2018 13:49:48 +0000
(14:49 +0100)
We don't currently annotate our mmap implementation as a syscall, as we
need to do to use pt_regs syscall wrappers.
Let's mark it as a real syscall.
There should be no functional change as a result of this patch.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Reviewed-by: Dominik Brodowski <linux@dominikbrodowski.net>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm64/kernel/sys.c
patch
|
blob
|
history
diff --git
a/arch/arm64/kernel/sys.c
b/arch/arm64/kernel/sys.c
index
f4e02f6
..
f249d97
100644
(file)
--- a/
arch/arm64/kernel/sys.c
+++ b/
arch/arm64/kernel/sys.c
@@
-29,9
+29,9
@@
#include <asm/cpufeature.h>
#include <asm/syscall.h>
-
asmlinkage long sys_mmap(unsigned long addr, unsigned long
len,
-
unsigned long prot, unsigned long
flags,
-
unsigned long fd, off_t
off)
+
SYSCALL_DEFINE6(mmap, unsigned long, addr, unsigned long,
len,
+
unsigned long, prot, unsigned long,
flags,
+
unsigned long, fd, off_t,
off)
{
if (offset_in_page(off) != 0)
return -EINVAL;