diff options
author | Alexander Kuleshov <kuleshovmail@gmail.com> | 2015-11-05 21:46:46 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-05 22:34:48 -0500 |
commit | ea53cde089e07cfd7996c2072f770ebb984ce8db (patch) | |
tree | e69eeafcdc456d92168ff0be6521125d49c9a4fa | |
parent | f09f1243ca2d5d297881bf2c2148d9ab35314314 (diff) |
mm/util: 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/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -309,7 +309,7 @@ unsigned long vm_mmap(struct file *file, unsigned long addr, | |||
309 | { | 309 | { |
310 | if (unlikely(offset + PAGE_ALIGN(len) < offset)) | 310 | if (unlikely(offset + PAGE_ALIGN(len) < offset)) |
311 | return -EINVAL; | 311 | return -EINVAL; |
312 | if (unlikely(offset & ~PAGE_MASK)) | 312 | if (unlikely(offset_in_page(offset))) |
313 | return -EINVAL; | 313 | return -EINVAL; |
314 | 314 | ||
315 | return vm_mmap_pgoff(file, addr, len, prot, flag, offset >> PAGE_SHIFT); | 315 | return vm_mmap_pgoff(file, addr, len, prot, flag, offset >> PAGE_SHIFT); |