]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/um/kernel/exec.c
Replace <asm/uaccess.h> with <linux/uaccess.h> globally
[mirror_ubuntu-zesty-kernel.git] / arch / um / kernel / exec.c
CommitLineData
1d3468a6 1/*
ba180fd4 2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
3 * Licensed under the GPL
4 */
5
73395a00
AV
6#include <linux/stddef.h>
7#include <linux/module.h>
8#include <linux/fs.h>
9#include <linux/ptrace.h>
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <asm/current.h>
13#include <asm/processor.h>
7c0f6ba6 14#include <linux/uaccess.h>
37185b33
AV
15#include <as-layout.h>
16#include <mem_user.h>
17#include <skas.h>
18#include <os.h>
1da177e4
LT
19
20void flush_thread(void)
21{
77bf4400 22 void *data = NULL;
77bf4400
JD
23 int ret;
24
aa6758d4 25 arch_flush_thread(&current->thread.arch);
77bf4400 26
3963333f
JD
27 ret = unmap(&current->mm->context.id, 0, STUB_START, 0, &data);
28 ret = ret || unmap(&current->mm->context.id, STUB_END,
536788fe 29 host_task_size - STUB_END, 1, &data);
ba180fd4
JD
30 if (ret) {
31 printk(KERN_ERR "flush_thread - clearing address space failed, "
77bf4400
JD
32 "err = %d\n", ret);
33 force_sig(SIGKILL, current);
34 }
9436d5c3
AV
35 get_safe_registers(current_pt_regs()->regs.gp,
36 current_pt_regs()->regs.fp);
77bf4400 37
6c738ffa 38 __switch_mm(&current->mm->context.id);
1da177e4
LT
39}
40
41void start_thread(struct pt_regs *regs, unsigned long eip, unsigned long esp)
42{
77bf4400
JD
43 PT_REGS_IP(regs) = eip;
44 PT_REGS_SP(regs) = esp;
42459792 45 current->ptrace &= ~PT_DTRACE;
1d3468a6 46#ifdef SUBARCH_EXECVE1
42459792 47 SUBARCH_EXECVE1(regs->regs);
1d3468a6 48#endif
1da177e4 49}
42459792 50EXPORT_SYMBOL(start_thread);