Skip to content

Commit

Permalink
switch do_brk() to get_unmapped_area()
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Dec 11, 2009
1 parent 9206de9 commit 2c6a101
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions mm/mmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1985,20 +1985,14 @@ unsigned long do_brk(unsigned long addr, unsigned long len)
if (!len)
return addr;

if ((addr + len) > TASK_SIZE || (addr + len) < addr)
return -EINVAL;

if (is_hugepage_only_range(mm, addr, len))
return -EINVAL;

error = security_file_mmap(NULL, 0, 0, 0, addr, 1);
if (error)
return error;

flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;

error = arch_mmap_check(addr, len, flags);
if (error)
error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
if (error & ~PAGE_MASK)
return error;

/*
Expand Down

0 comments on commit 2c6a101

Please sign in to comment.