mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	sched/scs: Reset the shadow stack when idle_task_exit
Commitf1a0a376ca("sched/core: Initialize the idle task with preemption disabled") removed the init_idle() call from idle_thread_get(). This was the sole call-path on hotplug that resets the Shadow Call Stack (scs) Stack Pointer (sp). Not resetting the scs-sp leads to scs overflow after enough hotplug cycles. Therefore add an explicit scs_task_reset() to the hotplug code to make sure the scs-sp does get reset on hotplug. Fixes:f1a0a376ca("sched/core: Initialize the idle task with preemption disabled") Signed-off-by: Woody Lin <woodylin@google.com> [peterz: Changelog] Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Valentin Schneider <valentin.schneider@arm.com> Link: https://lore.kernel.org/r/20211012083521.973587-1-woodylin@google.com
This commit is contained in:
		
							parent
							
								
									519d81956e
								
							
						
					
					
						commit
						63acd42c0d
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		| 
						 | 
					@ -8795,6 +8795,7 @@ void idle_task_exit(void)
 | 
				
			||||||
		finish_arch_post_lock_switch();
 | 
							finish_arch_post_lock_switch();
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						scs_task_reset(current);
 | 
				
			||||||
	/* finish_cpu(), as ran on the BP, will clean up the active_mm state */
 | 
						/* finish_cpu(), as ran on the BP, will clean up the active_mm state */
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue