aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm64/kernel/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c
index 0337cdb0667b..c2cc2493481b 100644
--- a/arch/arm64/kernel/process.c
+++ b/arch/arm64/kernel/process.c
@@ -311,11 +311,11 @@ struct task_struct *__switch_to(struct task_struct *prev,
311 fpsimd_thread_switch(next); 311 fpsimd_thread_switch(next);
312 tls_thread_switch(next); 312 tls_thread_switch(next);
313 hw_breakpoint_thread_switch(next); 313 hw_breakpoint_thread_switch(next);
314 contextidr_thread_switch(next);
314 315
315 /* the actual thread switch */ 316 /* the actual thread switch */
316 last = cpu_switch_to(prev, next); 317 last = cpu_switch_to(prev, next);
317 318
318 contextidr_thread_switch(next);
319 return last; 319 return last;
320} 320}
321 321