Commit a502a359 authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds

[PATCH] uml: fix vsyscall brokenness

The #if/#ifdef cleanup exposed a bug in UML's ELF header processing.  With
this bug fixed, UML recognizes the vsyscall info coming from the host.  On
FC4, there is a vsyscall page low in the address space, which UML doesn't
provide.  This causes an infinite page fault loop and a hang on boot.

This patch works around that by making this look like a no-vsyscall system.
Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent e4c5c820
...@@ -9,9 +9,10 @@ ...@@ -9,9 +9,10 @@
*/ */
#include <elf.h> #include <elf.h>
#include <stddef.h> #include <stddef.h>
#include <asm/elf.h>
#include "init.h" #include "init.h"
#include "elf_user.h" #include "elf_user.h"
#include <asm/elf.h> #include "mem_user.h"
#if ELF_CLASS == ELFCLASS32 #if ELF_CLASS == ELFCLASS32
typedef Elf32_auxv_t elf_auxv_t; typedef Elf32_auxv_t elf_auxv_t;
...@@ -41,6 +42,9 @@ __init void scan_elf_aux( char **envp) ...@@ -41,6 +42,9 @@ __init void scan_elf_aux( char **envp)
break; break;
case AT_SYSINFO_EHDR: case AT_SYSINFO_EHDR:
vsyscall_ehdr = auxv->a_un.a_val; vsyscall_ehdr = auxv->a_un.a_val;
/* See if the page is under TASK_SIZE */
if (vsyscall_ehdr < (unsigned long) envp)
vsyscall_ehdr = 0;
break; break;
case AT_HWCAP: case AT_HWCAP:
elf_aux_hwcap = auxv->a_un.a_val; elf_aux_hwcap = auxv->a_un.a_val;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment