aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/mincore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mincore.c b/mm/mincore.c
index 566b6c2bae5f..8aca6f7167bb 100644
--- a/mm/mincore.c
+++ b/mm/mincore.c
@@ -142,7 +142,7 @@ asmlinkage long sys_mincore(unsigned long start, size_t len,
142 * the temporary buffer size. 142 * the temporary buffer size.
143 */ 143 */
144 down_read(&current->mm->mmap_sem); 144 down_read(&current->mm->mmap_sem);
145 retval = do_mincore(start, tmp, max(pages, PAGE_SIZE)); 145 retval = do_mincore(start, tmp, min(pages, PAGE_SIZE));
146 up_read(&current->mm->mmap_sem); 146 up_read(&current->mm->mmap_sem);
147 147
148 if (retval <= 0) 148 if (retval <= 0)