]> Git Repo - linux.git/commitdiff
arm64/sme: Set new vector length before reallocating
authorMark Brown <[email protected]>
Wed, 26 Jul 2023 12:12:26 +0000 (13:12 +0100)
committerCatalin Marinas <[email protected]>
Wed, 26 Jul 2023 17:34:00 +0000 (18:34 +0100)
As part of fixing the allocation of the buffer for SVE state when changing
SME vector length we introduced an immediate reallocation of the SVE state,
this is also done when changing the SVE vector length for consistency.
Unfortunately this reallocation is done prior to writing the new vector
length to the task struct, meaning the allocation is done with the old
vector length and can lead to memory corruption due to an undersized buffer
being used.

Move the update of the vector length before the allocation to ensure that
the new vector length is taken into account.

For some reason this isn't triggering any problems when running tests on
the arm64 fixes branch (even after repeated tries) but is triggering
issues very often after merge into mainline.

Fixes: d4d5be94a878 ("arm64/fpsimd: Ensure SME storage is allocated after SVE VL changes")
Signed-off-by: Mark Brown <[email protected]>
Cc: <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Catalin Marinas <[email protected]>
arch/arm64/kernel/fpsimd.c

index 9d7d10d60bfdc7397d25a0ffea03464857c86355..520b681a07bb0987ef595b7d0bbb795b7b8911ec 100644 (file)
@@ -917,6 +917,8 @@ int vec_set_vector_length(struct task_struct *task, enum vec_type type,
        if (task == current)
                put_cpu_fpsimd_context();
 
+       task_set_vl(task, type, vl);
+
        /*
         * Free the changed states if they are not in use, SME will be
         * reallocated to the correct size on next use and we just
@@ -931,8 +933,6 @@ int vec_set_vector_length(struct task_struct *task, enum vec_type type,
        if (free_sme)
                sme_free(task);
 
-       task_set_vl(task, type, vl);
-
 out:
        update_tsk_thread_flag(task, vec_vl_inherit_flag(type),
                               flags & PR_SVE_VL_INHERIT);
This page took 0.061303 seconds and 4 git commands to generate.