fork: move the real prepare_to_copy() users to arch_dup_task_struct()
[linux-2.6-block.git] / arch / um / include / asm / processor-generic.h
CommitLineData
1da177e4 1/*
ba180fd4 2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
3 * Licensed under the GPL
4 */
5
6#ifndef __UM_PROCESSOR_GENERIC_H
7#define __UM_PROCESSOR_GENERIC_H
8
9struct pt_regs;
10
11struct task_struct;
12
1da177e4 13#include "asm/ptrace.h"
fad1c45c 14#include "registers.h"
3c917350 15#include "sysdep/archsetjmp.h"
1da177e4 16
607647ab
RW
17#include <linux/prefetch.h>
18
1da177e4
LT
19struct mm_struct;
20
21struct thread_struct {
ba180fd4
JD
22 struct task_struct *saved_task;
23 /*
24 * This flag is set to 1 before calling do_fork (and analyzed in
acef2e55
PBG
25 * copy_thread) to mark that we are begin called from userspace (fork /
26 * vfork / clone), and reset to 0 after. It is left to 0 when called
ba180fd4
JD
27 * from kernelspace (i.e. kernel_thread() or fork_idle(),
28 * as of 2.6.11).
29 */
1da177e4 30 int forking;
1da177e4 31 struct pt_regs regs;
1da177e4
LT
32 int singlestep_syscall;
33 void *fault_addr;
fab95c55 34 jmp_buf *fault_catcher;
1da177e4
LT
35 struct task_struct *prev_sched;
36 unsigned long temp_stack;
fab95c55 37 jmp_buf *exec_buf;
1da177e4 38 struct arch_thread arch;
77bf4400
JD
39 jmp_buf switch_buf;
40 int mm_count;
1da177e4
LT
41 struct {
42 int op;
43 union {
44 struct {
45 int pid;
46 } fork, exec;
47 struct {
48 int (*proc)(void *);
49 void *arg;
50 } thread;
51 struct {
52 void (*proc)(void *);
53 void *arg;
54 } cb;
55 } u;
56 } request;
57};
58
59#define INIT_THREAD \
60{ \
61 .forking = 0, \
ba180fd4 62 .regs = EMPTY_REGS, \
1da177e4
LT
63 .fault_addr = NULL, \
64 .prev_sched = NULL, \
65 .temp_stack = 0, \
66 .exec_buf = NULL, \
67 .arch = INIT_ARCH_THREAD, \
68 .request = { 0 } \
69}
70
504f52b5 71extern struct task_struct *alloc_task_struct_node(int node);
1da177e4 72
77bf4400
JD
73static inline void release_thread(struct task_struct *task)
74{
75}
76
1da177e4 77extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
c16993d9 78
1da177e4
LT
79extern unsigned long thread_saved_pc(struct task_struct *t);
80
81static inline void mm_copy_segments(struct mm_struct *from_mm,
82 struct mm_struct *new_mm)
83{
84}
85
86#define init_stack (init_thread_union.stack)
87
88/*
89 * User space process size: 3GB (default).
90 */
536788fe
JD
91extern unsigned long task_size;
92
93#define TASK_SIZE (task_size)
1da177e4 94
922a70d3
DH
95#undef STACK_TOP
96#undef STACK_TOP_MAX
97
98extern unsigned long stacksizelim;
99
100#define STACK_ROOM (stacksizelim)
101#define STACK_TOP (TASK_SIZE - 2 * PAGE_SIZE)
102#define STACK_TOP_MAX STACK_TOP
103
1da177e4
LT
104/* This decides where the kernel will search for a free chunk of vm
105 * space during mmap's.
106 */
107#define TASK_UNMAPPED_BASE (0x40000000)
108
109extern void start_thread(struct pt_regs *regs, unsigned long entry,
110 unsigned long stack);
111
112struct cpuinfo_um {
113 unsigned long loops_per_jiffy;
114 int ipi_pipe[2];
115};
116
117extern struct cpuinfo_um boot_cpu_data;
118
119#define my_cpu_data cpu_data[smp_processor_id()]
120
121#ifdef CONFIG_SMP
122extern struct cpuinfo_um cpu_data[];
123#define current_cpu_data cpu_data[smp_processor_id()]
124#else
125#define cpu_data (&boot_cpu_data)
126#define current_cpu_data boot_cpu_data
127#endif
128
1da177e4 129
77bf4400 130#define KSTK_REG(tsk, reg) get_thread_reg(reg, &tsk->thread.switch_buf)
c1127465 131extern unsigned long get_wchan(struct task_struct *p);
1da177e4 132
fad1c45c 133#endif