Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / arch / um / kernel / exec.c
blob8c82786da823df2cdf53ad9361b9b950d85018c7
1 /*
2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
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>
14 #include <asm/uaccess.h>
15 #include "as-layout.h"
16 #include "mem_user.h"
17 #include "skas.h"
18 #include "os.h"
19 #include "internal.h"
21 void flush_thread(void)
23 void *data = NULL;
24 int ret;
26 arch_flush_thread(&current->thread.arch);
28 ret = unmap(&current->mm->context.id, 0, STUB_START, 0, &data);
29 ret = ret || unmap(&current->mm->context.id, STUB_END,
30 host_task_size - STUB_END, 1, &data);
31 if (ret) {
32 printk(KERN_ERR "flush_thread - clearing address space failed, "
33 "err = %d\n", ret);
34 force_sig(SIGKILL, current);
37 __switch_mm(&current->mm->context.id);
40 void start_thread(struct pt_regs *regs, unsigned long eip, unsigned long esp)
42 get_safe_registers(regs->regs.gp, regs->regs.fp);
43 PT_REGS_IP(regs) = eip;
44 PT_REGS_SP(regs) = esp;
45 current->ptrace &= ~PT_DTRACE;
46 #ifdef SUBARCH_EXECVE1
47 SUBARCH_EXECVE1(regs->regs);
48 #endif
50 EXPORT_SYMBOL(start_thread);
52 long um_execve(const char *file, const char __user *const __user *argv, const char __user *const __user *env)
54 long err;
56 err = do_execve(file, argv, env, &current->thread.regs);
57 if (!err)
58 UML_LONGJMP(current->thread.exec_buf, 1);
59 return err;
62 long sys_execve(const char __user *file, const char __user *const __user *argv,
63 const char __user *const __user *env)
65 long error;
66 char *filename;
68 filename = getname(file);
69 error = PTR_ERR(filename);
70 if (IS_ERR(filename)) goto out;
71 error = do_execve(filename, argv, env, &current->thread.regs);
72 putname(filename);
73 out:
74 return error;