|
@@ -1246,7 +1246,7 @@ static int enable_restore_fp_context(int msa)
|
|
|
err = init_fpu();
|
|
|
if (msa && !err) {
|
|
|
enable_msa();
|
|
|
- _init_msa_upper();
|
|
|
+ init_msa_upper();
|
|
|
set_thread_flag(TIF_USEDMSA);
|
|
|
set_thread_flag(TIF_MSA_CTX_LIVE);
|
|
|
}
|
|
@@ -1309,7 +1309,7 @@ static int enable_restore_fp_context(int msa)
|
|
|
*/
|
|
|
prior_msa = test_and_set_thread_flag(TIF_MSA_CTX_LIVE);
|
|
|
if (!prior_msa && was_fpu_owner) {
|
|
|
- _init_msa_upper();
|
|
|
+ init_msa_upper();
|
|
|
|
|
|
goto out;
|
|
|
}
|
|
@@ -1326,7 +1326,7 @@ static int enable_restore_fp_context(int msa)
|
|
|
* of each vector register such that it cannot see data left
|
|
|
* behind by another task.
|
|
|
*/
|
|
|
- _init_msa_upper();
|
|
|
+ init_msa_upper();
|
|
|
} else {
|
|
|
/* We need to restore the vector context. */
|
|
|
restore_msa(current);
|