summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorMichel Lespinasse <walken@google.com>2013-02-07 12:26:20 +1100
committerStephen Rothwell <sfr@canb.auug.org.au>2013-02-14 15:25:14 +1100
commita10db6a8a85985fa2edf8f3386940bf9e555aad7 (patch)
treedfdb30f1c5f3114a6db1de22dc8044e4c3893708 /include/linux
parent7a9c5f4f8d35c4991385aac5ed976d477001b3d9 (diff)
mm: make do_mmap_pgoff return populate as a size in bytes, not as a bool
do_mmap_pgoff() rounds up the desired size to the next PAGE_SIZE multiple, however there was no equivalent code in mm_populate(), which caused issues. This could be fixed by introduced the same rounding in mm_populate(), however I think it's preferable to make do_mmap_pgoff() return populate as a size rather than as a boolean, so we don't have to duplicate the size rounding logic in mm_populate(). Signed-off-by: Michel Lespinasse <walken@google.com> Acked-by: Rik van Riel <riel@redhat.com> Tested-by: Andy Lutomirski <luto@amacapital.net> Cc: Greg Ungerer <gregungerer@westnet.com.au> Cc: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index e7fedf5b8c03..0fb35f7d277b 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1477,7 +1477,7 @@ extern unsigned long mmap_region(struct file *file, unsigned long addr,
unsigned long len, vm_flags_t vm_flags, unsigned long pgoff);
extern unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
unsigned long len, unsigned long prot, unsigned long flags,
- unsigned long pgoff, bool *populate);
+ unsigned long pgoff, unsigned long *populate);
extern int do_munmap(struct mm_struct *, unsigned long, size_t);
#ifdef CONFIG_MMU