Merge branch 'timers/urgent' into timers/core

Pick up dependent changes.
This commit is contained in:
Thomas Gleixner
2017-06-21 09:07:52 +02:00
787 changed files with 7199 additions and 4640 deletions

View File

@@ -65,7 +65,7 @@ arch_get_unmapped_area(struct file *filp, unsigned long addr,
vma = find_vma(mm, addr);
if (TASK_SIZE - len >= addr &&
(!vma || addr + len <= vma->vm_start))
(!vma || addr + len <= vm_start_gap(vma)))
return addr;
}