summaryrefslogtreecommitdiff
path: root/arch/s390/kernel
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2024-05-03 11:06:48 +0300
committerAlexander Gordeev <agordeev@linux.ibm.com>2024-05-14 14:37:08 +0300
commit980fffff14f8c788b54b44e5819ff9bc1d1290fb (patch)
tree92ec99489b3570c5dc61ec4ae3e5d0dbbd794b2e /arch/s390/kernel
parent7278a8fb8d032dfdc03d9b5d17e0bc451cdc1492 (diff)
downloadlinux-980fffff14f8c788b54b44e5819ff9bc1d1290fb.tar.xz
s390/fpu: Remove comment about TIF_FPU
It has been removed in commit 2c6b96762fbd ("s390/fpu: remove TIF_FPU"), so we should not mention TIF_FPU in the comment here anymore. Since the remaining parts of the comment just document the obvious fact that save_user_fpu_regs() saves the FPU state, simply remove the comment now completely. Signed-off-by: Thomas Huth <thuth@redhat.com> Acked-by: Heiko Carstens <hca@linux.ibm.com> Link: https://lore.kernel.org/r/20240503080648.81461-1-thuth@redhat.com Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
Diffstat (limited to 'arch/s390/kernel')
-rw-r--r--arch/s390/kernel/process.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/s390/kernel/process.c b/arch/s390/kernel/process.c
index dd456b475861..d8740631df4b 100644
--- a/arch/s390/kernel/process.c
+++ b/arch/s390/kernel/process.c
@@ -86,11 +86,6 @@ void arch_release_task_struct(struct task_struct *tsk)
int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
{
- /*
- * Save the floating-point or vector register state of the current
- * task and set the TIF_FPU flag to lazy restore the FPU register
- * state when returning to user space.
- */
save_user_fpu_regs();
*dst = *src;