staging/rdma/hfi1: Remove spurious error messages
[deliverable/linux.git] / mm / mincore.c
index be25efde64a4098c11eb126922a0d20b04bbadce..14bb9fb37f0ca4d91989bb9e37c269fbd6ec7d98 100644 (file)
@@ -234,7 +234,7 @@ SYSCALL_DEFINE3(mincore, unsigned long, start, size_t, len,
 
        /* This also avoids any overflows on PAGE_CACHE_ALIGN */
        pages = len >> PAGE_SHIFT;
-       pages += (len & ~PAGE_MASK) != 0;
+       pages += (offset_in_page(len)) != 0;
 
        if (!access_ok(VERIFY_WRITE, vec, pages))
                return -EFAULT;
This page took 0.027474 seconds and 5 git commands to generate.