diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2014-06-04 16:07:58 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 16:54:03 -0700 |
commit | 23c8902d403ef9a04cdc367d0b76a3ed6d83f5c5 (patch) | |
tree | 060556fb56a1357f2d0a9cc017c6d15327488545 /mm/mempolicy.c | |
parent | f7f28ca98b9a7a99fc55df2dddcf49857ab004f0 (diff) | |
download | op-kernel-dev-23c8902d403ef9a04cdc367d0b76a3ed6d83f5c5.zip op-kernel-dev-23c8902d403ef9a04cdc367d0b76a3ed6d83f5c5.tar.gz |
mm: constify nmask argument to set_mempolicy()
The nmask argument to set_mempolicy() is const according to the user-space
header numaif.h, and since the kernel does indeed not modify it, it might
as well be declared const in the kernel.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/mempolicy.c')
-rw-r--r-- | mm/mempolicy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 727187f..b09586d 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@ -1383,7 +1383,7 @@ SYSCALL_DEFINE6(mbind, unsigned long, start, unsigned long, len, } /* Set the process memory policy */ -SYSCALL_DEFINE3(set_mempolicy, int, mode, unsigned long __user *, nmask, +SYSCALL_DEFINE3(set_mempolicy, int, mode, const unsigned long __user *, nmask, unsigned long, maxnode) { int err; |