mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	time: Export tick start/stop functions for rcutorture
It turns out that rcutorture needs to ensure that the scheduling-clock interrupt is enabled in CONFIG_NO_HZ_FULL kernels before starting on CPU-bound in-kernel processing. This commit therefore exports tick_nohz_dep_set_task(), tick_nohz_dep_clear_task(), and tick_nohz_full_setup() to GPL kernel modules. Reported-by: kbuild test robot <lkp@intel.com> Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
This commit is contained in:
		
							parent
							
								
									01b4c39901
								
							
						
					
					
						commit
						ae9e557b5b
					
				
					 1 changed files with 4 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -172,6 +172,7 @@ static void tick_sched_handle(struct tick_sched *ts, struct pt_regs *regs)
 | 
			
		|||
#ifdef CONFIG_NO_HZ_FULL
 | 
			
		||||
cpumask_var_t tick_nohz_full_mask;
 | 
			
		||||
bool tick_nohz_full_running;
 | 
			
		||||
EXPORT_SYMBOL_GPL(tick_nohz_full_running);
 | 
			
		||||
static atomic_t tick_dep_mask;
 | 
			
		||||
 | 
			
		||||
static bool check_tick_dependency(atomic_t *dep)
 | 
			
		||||
| 
						 | 
				
			
			@ -351,11 +352,13 @@ void tick_nohz_dep_set_task(struct task_struct *tsk, enum tick_dep_bits bit)
 | 
			
		|||
	 */
 | 
			
		||||
	tick_nohz_dep_set_all(&tsk->tick_dep_mask, bit);
 | 
			
		||||
}
 | 
			
		||||
EXPORT_SYMBOL_GPL(tick_nohz_dep_set_task);
 | 
			
		||||
 | 
			
		||||
void tick_nohz_dep_clear_task(struct task_struct *tsk, enum tick_dep_bits bit)
 | 
			
		||||
{
 | 
			
		||||
	atomic_andnot(BIT(bit), &tsk->tick_dep_mask);
 | 
			
		||||
}
 | 
			
		||||
EXPORT_SYMBOL_GPL(tick_nohz_dep_clear_task);
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * Set a per-taskgroup tick dependency. Posix CPU timers need this in order to elapse
 | 
			
		||||
| 
						 | 
				
			
			@ -404,6 +407,7 @@ void __init tick_nohz_full_setup(cpumask_var_t cpumask)
 | 
			
		|||
	cpumask_copy(tick_nohz_full_mask, cpumask);
 | 
			
		||||
	tick_nohz_full_running = true;
 | 
			
		||||
}
 | 
			
		||||
EXPORT_SYMBOL_GPL(tick_nohz_full_setup);
 | 
			
		||||
 | 
			
		||||
static int tick_nohz_cpu_down(unsigned int cpu)
 | 
			
		||||
{
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue