|
|
@@ -98,7 +98,7 @@ SYSCALL_DEFINE6(mmap, unsigned long, addr, unsigned long, len,
|
|
|
static void find_start_end(unsigned long flags, unsigned long *begin,
|
|
|
unsigned long *end)
|
|
|
{
|
|
|
- if (!test_thread_flag(TIF_IA32) && (flags & MAP_32BIT)) {
|
|
|
+ if (!test_thread_flag(TIF_ADDR32) && (flags & MAP_32BIT)) {
|
|
|
unsigned long new_begin;
|
|
|
/* This is usually used needed to map code in small
|
|
|
model, so it needs to be in the first 31bit. Limit
|
|
|
@@ -144,7 +144,7 @@ arch_get_unmapped_area(struct file *filp, unsigned long addr,
|
|
|
(!vma || addr + len <= vma->vm_start))
|
|
|
return addr;
|
|
|
}
|
|
|
- if (((flags & MAP_32BIT) || test_thread_flag(TIF_IA32))
|
|
|
+ if (((flags & MAP_32BIT) || test_thread_flag(TIF_ADDR32))
|
|
|
&& len <= mm->cached_hole_size) {
|
|
|
mm->cached_hole_size = 0;
|
|
|
mm->free_area_cache = begin;
|
|
|
@@ -205,7 +205,7 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
|
|
|
return addr;
|
|
|
|
|
|
/* for MAP_32BIT mappings we force the legact mmap base */
|
|
|
- if (!test_thread_flag(TIF_IA32) && (flags & MAP_32BIT))
|
|
|
+ if (!test_thread_flag(TIF_ADDR32) && (flags & MAP_32BIT))
|
|
|
goto bottomup;
|
|
|
|
|
|
/* requesting a specific address */
|