diff options
author | Mark Brown <broonie@kernel.org> | 2023-08-03 01:46:39 +0200 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2023-08-03 16:41:03 +0200 |
commit | c9bb40b7f786662e33d71afe236442b0b61f0446 (patch) | |
tree | 73ff36e97b9c1b24524c43c13030a47705f9273f /arch/arm64/kernel/fpsimd.c | |
parent | ACPI/IORT: Remove erroneous id_count check in iort_node_get_rmr_info() (diff) | |
download | linux-c9bb40b7f786662e33d71afe236442b0b61f0446.tar.xz linux-c9bb40b7f786662e33d71afe236442b0b61f0446.zip |
arm64/fpsimd: Clear SME state in the target task when setting the VL
When setting SME vector lengths we clear TIF_SME to reenable SME traps,
doing a reallocation of the backing storage on next use. We do this using
clear_thread_flag() which operates on the current thread, meaning that when
setting the vector length via ptrace we may both not force traps for the
target task and force a spurious flush of any SME state that the tracing
task may have.
Clear the flag in the target task.
Fixes: e12310a0d30f ("arm64/sme: Implement ptrace support for streaming mode SVE registers")
Reported-by: David Spickett <David.Spickett@arm.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20230803-arm64-fix-ptrace-tif-sme-v1-1-88312fd6fbfd@kernel.org
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to '')
-rw-r--r-- | arch/arm64/kernel/fpsimd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/fpsimd.c b/arch/arm64/kernel/fpsimd.c index 520b681a07bb..a61a1fd6492d 100644 --- a/arch/arm64/kernel/fpsimd.c +++ b/arch/arm64/kernel/fpsimd.c @@ -909,7 +909,7 @@ int vec_set_vector_length(struct task_struct *task, enum vec_type type, */ task->thread.svcr &= ~(SVCR_SM_MASK | SVCR_ZA_MASK); - clear_thread_flag(TIF_SME); + clear_tsk_thread_flag(task, TIF_SME); free_sme = true; } } |