mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 16:48:26 +02:00 
			
		
		
		
	cgroup_freezer: cgroup_freezing: Check if not frozen
__thaw_task() was recently updated to warn if the task being thawed was
part of a freezer cgroup that is still currently freezing:
	void __thaw_task(struct task_struct *p)
	{
	...
		if (WARN_ON_ONCE(freezing(p)))
			goto unlock;
This has exposed a bug in cgroup1 freezing where when CGROUP_FROZEN is
asserted, the CGROUP_FREEZING bits are not also cleared at the same
time. Meaning, when a cgroup is marked FROZEN it continues to be marked
FREEZING as well. This causes the WARNING to trigger, because
cgroup_freezing() thinks the cgroup is still freezing.
There are two ways to fix this:
1. Whenever FROZEN is set, clear FREEZING for the cgroup and all
children cgroups.
2. Update cgroup_freezing() to also verify that FROZEN is not set.
This patch implements option (2), since it's smaller and more
straightforward.
Signed-off-by: Tim Van Patten <timvp@google.com>
Tested-by: Mark Hasemeyer <markhas@chromium.org>
Fixes: f5d39b0208 ("freezer,sched: Rewrite core freezer logic")
Cc: stable@vger.kernel.org # v6.1+
Signed-off-by: Tejun Heo <tj@kernel.org>
			
			
This commit is contained in:
		
							parent
							
								
									037266a5f7
								
							
						
					
					
						commit
						cff5f49d43
					
				
					 1 changed files with 7 additions and 1 deletions
				
			
		|  | @ -66,9 +66,15 @@ static struct freezer *parent_freezer(struct freezer *freezer) | ||||||
| bool cgroup_freezing(struct task_struct *task) | bool cgroup_freezing(struct task_struct *task) | ||||||
| { | { | ||||||
| 	bool ret; | 	bool ret; | ||||||
|  | 	unsigned int state; | ||||||
| 
 | 
 | ||||||
| 	rcu_read_lock(); | 	rcu_read_lock(); | ||||||
| 	ret = task_freezer(task)->state & CGROUP_FREEZING; | 	/* Check if the cgroup is still FREEZING, but not FROZEN. The extra
 | ||||||
|  | 	 * !FROZEN check is required, because the FREEZING bit is not cleared | ||||||
|  | 	 * when the state FROZEN is reached. | ||||||
|  | 	 */ | ||||||
|  | 	state = task_freezer(task)->state; | ||||||
|  | 	ret = (state & CGROUP_FREEZING) && !(state & CGROUP_FROZEN); | ||||||
| 	rcu_read_unlock(); | 	rcu_read_unlock(); | ||||||
| 
 | 
 | ||||||
| 	return ret; | 	return ret; | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Tim Van Patten
						Tim Van Patten