aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/include/asm
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2017-09-11 11:24:22 +0200
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2017-09-28 07:29:39 +0200
commit8d9047f8b967ce6181fd824ae922978e1b055cc0 (patch)
treeb63c9046e165224dd3ca9002260ea84a798ca021 /arch/s390/include/asm
parents390/runtime instrumention: fix possible memory corruption (diff)
downloadlinux-dev-8d9047f8b967ce6181fd824ae922978e1b055cc0.tar.xz
linux-dev-8d9047f8b967ce6181fd824ae922978e1b055cc0.zip
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>
Diffstat (limited to 'arch/s390/include/asm')
-rw-r--r--arch/s390/include/asm/runtime_instr.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/s390/include/asm/runtime_instr.h b/arch/s390/include/asm/runtime_instr.h
index 402ad6df4897..c54a9310d814 100644
--- a/arch/s390/include/asm/runtime_instr.h
+++ b/arch/s390/include/asm/runtime_instr.h
@@ -85,6 +85,8 @@ static inline void restore_ri_cb(struct runtime_instr_cb *cb_next,
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 */