diff options
author | Markus Metzger <markus.t.metzger@intel.com> | 2009-04-03 10:43:48 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-07 07:36:31 -0400 |
commit | 0f4814065ff8c24ca8bfd75c9b73502be152c287 (patch) | |
tree | f3816ecb64ee198235d2e9c1649de3241c3f2ac2 /include | |
parent | ee811517a5604aa63fae803b7c044712699e1303 (diff) |
x86, ptrace: add bts context unconditionally
Add the ptrace bts context field to task_struct unconditionally.
Initialize the field directly in copy_process().
Remove all the unneeded functionality used to initialize that field.
Signed-off-by: Markus Metzger <markus.t.metzger@intel.com>
Cc: roland@redhat.com
Cc: eranian@googlemail.com
Cc: oleg@redhat.com
Cc: juan.villacis@intel.com
Cc: ak@linux.jf.intel.com
LKML-Reference: <20090403144603.292754000@intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ptrace.h | 10 | ||||
-rw-r--r-- | include/linux/sched.h | 2 |
2 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/ptrace.h b/include/linux/ptrace.h index 67c15653fc23..59e133d39d50 100644 --- a/include/linux/ptrace.h +++ b/include/linux/ptrace.h | |||
@@ -95,7 +95,6 @@ extern void __ptrace_link(struct task_struct *child, | |||
95 | struct task_struct *new_parent); | 95 | struct task_struct *new_parent); |
96 | extern void __ptrace_unlink(struct task_struct *child); | 96 | extern void __ptrace_unlink(struct task_struct *child); |
97 | extern void exit_ptrace(struct task_struct *tracer); | 97 | extern void exit_ptrace(struct task_struct *tracer); |
98 | extern void ptrace_fork(struct task_struct *task, unsigned long clone_flags); | ||
99 | #define PTRACE_MODE_READ 1 | 98 | #define PTRACE_MODE_READ 1 |
100 | #define PTRACE_MODE_ATTACH 2 | 99 | #define PTRACE_MODE_ATTACH 2 |
101 | /* Returns 0 on success, -errno on denial. */ | 100 | /* Returns 0 on success, -errno on denial. */ |
@@ -327,15 +326,6 @@ static inline void user_enable_block_step(struct task_struct *task) | |||
327 | #define arch_ptrace_untrace(task) do { } while (0) | 326 | #define arch_ptrace_untrace(task) do { } while (0) |
328 | #endif | 327 | #endif |
329 | 328 | ||
330 | #ifndef arch_ptrace_fork | ||
331 | /* | ||
332 | * Do machine-specific work to initialize a new task. | ||
333 | * | ||
334 | * This is called from copy_process(). | ||
335 | */ | ||
336 | #define arch_ptrace_fork(child, clone_flags) do { } while (0) | ||
337 | #endif | ||
338 | |||
339 | extern int task_current_syscall(struct task_struct *target, long *callno, | 329 | extern int task_current_syscall(struct task_struct *target, long *callno, |
340 | unsigned long args[6], unsigned int maxargs, | 330 | unsigned long args[6], unsigned int maxargs, |
341 | unsigned long *sp, unsigned long *pc); | 331 | unsigned long *sp, unsigned long *pc); |
diff --git a/include/linux/sched.h b/include/linux/sched.h index 52b8cd049c2e..451186a22ef5 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -1205,13 +1205,11 @@ struct task_struct { | |||
1205 | struct list_head ptraced; | 1205 | struct list_head ptraced; |
1206 | struct list_head ptrace_entry; | 1206 | struct list_head ptrace_entry; |
1207 | 1207 | ||
1208 | #ifdef CONFIG_X86_PTRACE_BTS | ||
1209 | /* | 1208 | /* |
1210 | * This is the tracer handle for the ptrace BTS extension. | 1209 | * This is the tracer handle for the ptrace BTS extension. |
1211 | * This field actually belongs to the ptracer task. | 1210 | * This field actually belongs to the ptracer task. |
1212 | */ | 1211 | */ |
1213 | struct bts_context *bts; | 1212 | struct bts_context *bts; |
1214 | #endif /* CONFIG_X86_PTRACE_BTS */ | ||
1215 | 1213 | ||
1216 | /* PID/PID hash table linkage. */ | 1214 | /* PID/PID hash table linkage. */ |
1217 | struct pid_link pids[PIDTYPE_MAX]; | 1215 | struct pid_link pids[PIDTYPE_MAX]; |