From: Alexander Kuleshov Date: Fri, 6 Nov 2015 02:46:32 +0000 (-0800) Subject: mm/msync: use offset_in_page macro X-Git-Tag: v4.4-rc1~99^2~103 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b0d61c7e56815b0b881c81f6779a65f4fdae4bc0;p=karo-tx-linux.git 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 Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- 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) if (flags & ~(MS_ASYNC | MS_INVALIDATE | MS_SYNC)) goto out; - if (start & ~PAGE_MASK) + if (offset_in_page(start)) goto out; if ((flags & MS_ASYNC) && (flags & MS_SYNC)) goto out;