Commit df6c6500 authored by Wei Yang's avatar Wei Yang Committed by Linus Torvalds

mm/madvise.c: use PAGE_ALIGN[ED] for range checking

Improve readability, no functional change.

Link: http://lkml.kernel.org/r/20191118032857.22683-1-richardw.yang@linux.intel.comSigned-off-by: default avatarWei Yang <richardw.yang@linux.intel.com>
Reviewed-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent d3cd257c
...@@ -1059,9 +1059,9 @@ SYSCALL_DEFINE3(madvise, unsigned long, start, size_t, len_in, int, behavior) ...@@ -1059,9 +1059,9 @@ SYSCALL_DEFINE3(madvise, unsigned long, start, size_t, len_in, int, behavior)
if (!madvise_behavior_valid(behavior)) if (!madvise_behavior_valid(behavior))
return error; return error;
if (start & ~PAGE_MASK) if (!PAGE_ALIGNED(start))
return error; return error;
len = (len_in + ~PAGE_MASK) & PAGE_MASK; len = PAGE_ALIGN(len_in);
/* Check to see whether len was rounded up from small -ve to zero */ /* Check to see whether len was rounded up from small -ve to zero */
if (len_in && !len) if (len_in && !len)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment