diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-04-20 15:35:40 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-04-20 17:28:17 -0700 |
commit | e4eb1ff61b323d6141614e5458a1f53c7046ff8e (patch) | |
tree | 7a0251509c169b0df1a6bf4bc47c5bca709e06da /mm/nommu.c | |
parent | 3b422e9c2c020a1137349c614da7f9c9761a0922 (diff) | |
download | linux-3.10-e4eb1ff61b323d6141614e5458a1f53c7046ff8e.tar.gz linux-3.10-e4eb1ff61b323d6141614e5458a1f53c7046ff8e.tar.bz2 linux-3.10-e4eb1ff61b323d6141614e5458a1f53c7046ff8e.zip |
VM: add "vm_brk()" helper function
It does the same thing as "do_brk()", except it handles the VM locking
too.
It turns out that all external callers want that anyway, so we can make
do_brk() static to just mm/mmap.c while at it.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/nommu.c')
-rw-r--r-- | mm/nommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/nommu.c b/mm/nommu.c index f59e170fceb..634193324a6 100644 --- a/mm/nommu.c +++ b/mm/nommu.c @@ -1744,7 +1744,7 @@ void exit_mmap(struct mm_struct *mm) kleave(""); } -unsigned long do_brk(unsigned long addr, unsigned long len) +unsigned long vm_brk(unsigned long addr, unsigned long len) { return -ENOMEM; } |