浏览代码

Cut hugetlb case early for 32bit on ia64

It won't work anyway (hugetlb addresses there are way beyond 4Gb)
and it's easier to stop it here.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Al Viro 15 年之前
父节点
当前提交
0067bd8a55
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      arch/ia64/ia32/sys_ia32.c

+ 3 - 0
arch/ia64/ia32/sys_ia32.c

@@ -858,6 +858,9 @@ ia32_do_mmap (struct file *file, unsigned long addr, unsigned long len, int prot
 
 
 	prot = get_prot32(prot);
 	prot = get_prot32(prot);
 
 
+	if (flags & MAP_HUGETLB)
+		return -ENOMEM;
+
 #if PAGE_SHIFT > IA32_PAGE_SHIFT
 #if PAGE_SHIFT > IA32_PAGE_SHIFT
 	mutex_lock(&ia32_mmap_mutex);
 	mutex_lock(&ia32_mmap_mutex);
 	{
 	{