[PATCH] uml: task_stack_page()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
@ -253,7 +253,7 @@ int copy_thread_tt(int nr, unsigned long clone_flags, unsigned long sp,
|
||||
|
||||
clone_flags &= CLONE_VM;
|
||||
p->thread.temp_stack = stack;
|
||||
new_pid = start_fork_tramp(p->thread_info, stack, clone_flags, tramp);
|
||||
new_pid = start_fork_tramp(task_stack_page(p), stack, clone_flags, tramp);
|
||||
if(new_pid < 0){
|
||||
printk(KERN_ERR "copy_thread : clone failed - errno = %d\n",
|
||||
-new_pid);
|
||||
@ -425,7 +425,7 @@ int start_uml_tt(void)
|
||||
int pages;
|
||||
|
||||
pages = (1 << CONFIG_KERNEL_STACK_ORDER);
|
||||
sp = (void *) ((unsigned long) init_task.thread_info) +
|
||||
sp = task_stack_page(&init_task) +
|
||||
pages * PAGE_SIZE - sizeof(unsigned long);
|
||||
return(tracer(start_kernel_proc, sp));
|
||||
}
|
||||
|
Reference in New Issue
Block a user