diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/personality.h | 40 | ||||
-rw-r--r-- | include/linux/sched.h | 6 |
2 files changed, 1 insertions, 45 deletions
diff --git a/include/linux/personality.h b/include/linux/personality.h index 646c0a7d50fa..aeb7892b2468 100644 --- a/include/linux/personality.h +++ b/include/linux/personality.h | |||
@@ -3,52 +3,14 @@ | |||
3 | 3 | ||
4 | #include <uapi/linux/personality.h> | 4 | #include <uapi/linux/personality.h> |
5 | 5 | ||
6 | |||
7 | /* | ||
8 | * Handling of different ABIs (personalities). | ||
9 | */ | ||
10 | |||
11 | struct exec_domain; | ||
12 | struct pt_regs; | ||
13 | |||
14 | extern int register_exec_domain(struct exec_domain *); | ||
15 | extern int unregister_exec_domain(struct exec_domain *); | ||
16 | extern int __set_personality(unsigned int); | ||
17 | |||
18 | |||
19 | /* | ||
20 | * Description of an execution domain. | ||
21 | * | ||
22 | * The first two members are refernced from assembly source | ||
23 | * and should stay where they are unless explicitly needed. | ||
24 | */ | ||
25 | typedef void (*handler_t)(int, struct pt_regs *); | ||
26 | |||
27 | struct exec_domain { | ||
28 | const char *name; /* name of the execdomain */ | ||
29 | handler_t handler; /* handler for syscalls */ | ||
30 | unsigned char pers_low; /* lowest personality */ | ||
31 | unsigned char pers_high; /* highest personality */ | ||
32 | unsigned long *signal_map; /* signal mapping */ | ||
33 | unsigned long *signal_invmap; /* reverse signal mapping */ | ||
34 | struct map_segment *err_map; /* error mapping */ | ||
35 | struct map_segment *socktype_map; /* socket type mapping */ | ||
36 | struct map_segment *sockopt_map; /* socket option mapping */ | ||
37 | struct map_segment *af_map; /* address family mapping */ | ||
38 | struct module *module; /* module context of the ed. */ | ||
39 | struct exec_domain *next; /* linked list (internal) */ | ||
40 | }; | ||
41 | |||
42 | /* | 6 | /* |
43 | * Return the base personality without flags. | 7 | * Return the base personality without flags. |
44 | */ | 8 | */ |
45 | #define personality(pers) (pers & PER_MASK) | 9 | #define personality(pers) (pers & PER_MASK) |
46 | 10 | ||
47 | |||
48 | /* | 11 | /* |
49 | * Change personality of the currently running process. | 12 | * Change personality of the currently running process. |
50 | */ | 13 | */ |
51 | #define set_personality(pers) \ | 14 | #define set_personality(pers) (current->personality = (pers)) |
52 | ((current->personality == (pers)) ? 0 : __set_personality(pers)) | ||
53 | 15 | ||
54 | #endif /* _LINUX_PERSONALITY_H */ | 16 | #endif /* _LINUX_PERSONALITY_H */ |
diff --git a/include/linux/sched.h b/include/linux/sched.h index a419b65770d6..14d9117ac463 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -125,7 +125,6 @@ struct sched_attr { | |||
125 | u64 sched_period; | 125 | u64 sched_period; |
126 | }; | 126 | }; |
127 | 127 | ||
128 | struct exec_domain; | ||
129 | struct futex_pi_state; | 128 | struct futex_pi_state; |
130 | struct robust_list_head; | 129 | struct robust_list_head; |
131 | struct bio_list; | 130 | struct bio_list; |
@@ -2288,11 +2287,6 @@ extern void set_curr_task(int cpu, struct task_struct *p); | |||
2288 | 2287 | ||
2289 | void yield(void); | 2288 | void yield(void); |
2290 | 2289 | ||
2291 | /* | ||
2292 | * The default (Linux) execution domain. | ||
2293 | */ | ||
2294 | extern struct exec_domain default_exec_domain; | ||
2295 | |||
2296 | union thread_union { | 2290 | union thread_union { |
2297 | struct thread_info thread_info; | 2291 | struct thread_info thread_info; |
2298 | unsigned long stack[THREAD_SIZE/sizeof(long)]; | 2292 | unsigned long stack[THREAD_SIZE/sizeof(long)]; |