diff options
author | Alexander Kuleshov <kuleshovmail@gmail.com> | 2015-11-05 21:46:32 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-05 22:34:48 -0500 |
commit | b0d61c7e56815b0b881c81f6779a65f4fdae4bc0 (patch) | |
tree | 74fe5a6b07d5ee5bd12b83c89823629163a765b1 | |
parent | c118baf802562688d46e6002f2b5fe66b947da21 (diff) |
mm/msync: use offset_in_page macro
linux/mm.h provides offset_in_page() macro. Let's use already predefined
macro instead of (addr & ~PAGE_MASK).
Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | mm/msync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/msync.c b/mm/msync.c index bb04d53ae852..24e612fefa04 100644 --- a/mm/msync.c +++ b/mm/msync.c | |||
@@ -38,7 +38,7 @@ SYSCALL_DEFINE3(msync, unsigned long, start, size_t, len, int, flags) | |||
38 | 38 | ||
39 | if (flags & ~(MS_ASYNC | MS_INVALIDATE | MS_SYNC)) | 39 | if (flags & ~(MS_ASYNC | MS_INVALIDATE | MS_SYNC)) |
40 | goto out; | 40 | goto out; |
41 | if (start & ~PAGE_MASK) | 41 | if (offset_in_page(start)) |
42 | goto out; | 42 | goto out; |
43 | if ((flags & MS_ASYNC) && (flags & MS_SYNC)) | 43 | if ((flags & MS_ASYNC) && (flags & MS_SYNC)) |
44 | goto out; | 44 | goto out; |