• B
    powerpc/kernel: Fix FP and vector register restoration · 1195892c
    Breno Leitao 提交于
    Currently tsk->thread->load_vec and load_fp are not initialized during
    task creation, which can lead to garbage values in these variables (non-zero
    values).
    
    These variables will be checked later in restore_math() to validate if the
    FP and vector registers are being utilized. Since these values might be
    non-zero, the restore_math() will continue to save the FP and vectors even if
    they were never utilized by the userspace application. load_fp and load_vec
    counters will then overflow (they wrap at 255) and the FP and Altivec will be
    finally disabled, but before that condition is reached (counter overflow)
    several context switches will have restored FP and vector registers without
    need, causing a performance degradation.
    
    Fixes: 70fe3d98 ("powerpc: Restore FPU/VEC/VSX if previously used")
    Cc: stable@vger.kernel.org # v4.6+
    Signed-off-by: NBreno Leitao <leitao@debian.org>
    Signed-off-by: NGustavo Romero <gusbromero@gmail.com>
    Acked-by: NAnton Blanchard <anton@samba.org>
    Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
    1195892c
process.c 50.8 KB