s390/runtime instrumentation: simplify task exit handling
Free data structures required for runtime instrumentation from arch_release_task_struct(). This allows to simplify the code a bit, and also makes the semantics a bit easier: arch_release_task_struct() is never called from the task that is being removed. In addition this allows to get rid of exit_thread() in a later patch. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
d6e646ad7c
commit
8d9047f8b9
|
@ -85,6 +85,8 @@ static inline void restore_ri_cb(struct runtime_instr_cb *cb_next,
|
||||||
load_runtime_instr_cb(&runtime_instr_empty_cb);
|
load_runtime_instr_cb(&runtime_instr_empty_cb);
|
||||||
}
|
}
|
||||||
|
|
||||||
void exit_thread_runtime_instr(void);
|
struct task_struct;
|
||||||
|
|
||||||
|
void runtime_instr_release(struct task_struct *tsk);
|
||||||
|
|
||||||
#endif /* _RUNTIME_INSTR_H */
|
#endif /* _RUNTIME_INSTR_H */
|
||||||
|
|
|
@ -48,10 +48,8 @@ extern void kernel_thread_starter(void);
|
||||||
*/
|
*/
|
||||||
void exit_thread(struct task_struct *tsk)
|
void exit_thread(struct task_struct *tsk)
|
||||||
{
|
{
|
||||||
if (tsk == current) {
|
if (tsk == current)
|
||||||
exit_thread_runtime_instr();
|
|
||||||
exit_thread_gs();
|
exit_thread_gs();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void flush_thread(void)
|
void flush_thread(void)
|
||||||
|
@ -60,6 +58,7 @@ void flush_thread(void)
|
||||||
|
|
||||||
void arch_release_task_struct(struct task_struct *tsk)
|
void arch_release_task_struct(struct task_struct *tsk)
|
||||||
{
|
{
|
||||||
|
runtime_instr_release(tsk);
|
||||||
}
|
}
|
||||||
|
|
||||||
int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
|
int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
|
||||||
|
|
|
@ -20,11 +20,24 @@
|
||||||
/* empty control block to disable RI by loading it */
|
/* empty control block to disable RI by loading it */
|
||||||
struct runtime_instr_cb runtime_instr_empty_cb;
|
struct runtime_instr_cb runtime_instr_empty_cb;
|
||||||
|
|
||||||
|
void runtime_instr_release(struct task_struct *tsk)
|
||||||
|
{
|
||||||
|
kfree(tsk->thread.ri_cb);
|
||||||
|
}
|
||||||
|
|
||||||
static void disable_runtime_instr(void)
|
static void disable_runtime_instr(void)
|
||||||
{
|
{
|
||||||
struct pt_regs *regs = task_pt_regs(current);
|
struct task_struct *task = current;
|
||||||
|
struct pt_regs *regs;
|
||||||
|
|
||||||
|
if (!task->thread.ri_cb)
|
||||||
|
return;
|
||||||
|
regs = task_pt_regs(task);
|
||||||
|
preempt_disable();
|
||||||
load_runtime_instr_cb(&runtime_instr_empty_cb);
|
load_runtime_instr_cb(&runtime_instr_empty_cb);
|
||||||
|
kfree(task->thread.ri_cb);
|
||||||
|
task->thread.ri_cb = NULL;
|
||||||
|
preempt_enable();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Make sure the RI bit is deleted from the PSW. If the user did not
|
* Make sure the RI bit is deleted from the PSW. If the user did not
|
||||||
|
@ -45,19 +58,6 @@ static void init_runtime_instr_cb(struct runtime_instr_cb *cb)
|
||||||
cb->valid = 1;
|
cb->valid = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void exit_thread_runtime_instr(void)
|
|
||||||
{
|
|
||||||
struct task_struct *task = current;
|
|
||||||
|
|
||||||
preempt_disable();
|
|
||||||
if (!task->thread.ri_cb)
|
|
||||||
return;
|
|
||||||
disable_runtime_instr();
|
|
||||||
kfree(task->thread.ri_cb);
|
|
||||||
task->thread.ri_cb = NULL;
|
|
||||||
preempt_enable();
|
|
||||||
}
|
|
||||||
|
|
||||||
SYSCALL_DEFINE1(s390_runtime_instr, int, command)
|
SYSCALL_DEFINE1(s390_runtime_instr, int, command)
|
||||||
{
|
{
|
||||||
struct runtime_instr_cb *cb;
|
struct runtime_instr_cb *cb;
|
||||||
|
@ -66,7 +66,7 @@ SYSCALL_DEFINE1(s390_runtime_instr, int, command)
|
||||||
return -EOPNOTSUPP;
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
if (command == S390_RUNTIME_INSTR_STOP) {
|
if (command == S390_RUNTIME_INSTR_STOP) {
|
||||||
exit_thread_runtime_instr();
|
disable_runtime_instr();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue