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

[PATCH] uml: Fix a compile failure

Remove a UML/x86_64 warning (and build failure if CONFIG_MODE_TT is disabled).
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 ba9b4e63
......@@ -42,23 +42,12 @@ void arch_enter_kernel(void *task, int pid)
void arch_leave_kernel(void *task, int pid)
{
#ifdef UM_USER_CS
if(ptrace(PTRACE_POKEUSER, pid, CS, UM_USER_CS) < 0)
tracer_panic("POKEUSER CS failed");
if(ptrace(PTRACE_POKEUSER, pid, CS, UM_USER_CS) < 0)
printk("POKEUSR CS failed");
#endif
if(ptrace(PTRACE_POKEUSER, pid, DS, __USER_DS) < 0)
tracer_panic("POKEUSER DS failed");
if(ptrace(PTRACE_POKEUSER, pid, ES, __USER_DS) < 0)
tracer_panic("POKEUSER ES failed");
if(ptrace(PTRACE_POKEUSER, pid, DS, __USER_DS) < 0)
printk("POKEUSR DS failed");
if(ptrace(PTRACE_POKEUSER, pid, ES, __USER_DS) < 0)
printk("POKEUSR ES failed");
}
/*
* Overrides for Emacs so that we follow Linus's tabbing style.
* Emacs will notice this stuff at the end of the file and automatically
* adjust the settings for this buffer only. This must remain at the end
* of the file.
* ---------------------------------------------------------------------------
* Local variables:
* c-file-style: "linux"
* End:
*/
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