mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	mm/memcg: iteration skip memcgs not yet fully initialized
It is surprising that the mem_cgroup iterator can return memcgs which have not yet been fully initialized. By accident (or trial and error?) this appears not to present an actual problem; but it may be better to prevent such surprises, by skipping memcgs not yet online. Signed-off-by: Hugh Dickins <hughd@google.com> Cc: Tejun Heo <tj@kernel.org> Acked-by: Michal Hocko <mhocko@suse.cz> Cc: Johannes Weiner <hannes@cmpxchg.org> Cc: <stable@vger.kernel.org> [3.12+] Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									d2ab70aaae
								
							
						
					
					
						commit
						d8ad305597
					
				
					 1 changed files with 2 additions and 4 deletions
				
			
		| 
						 | 
					@ -1119,10 +1119,8 @@ static struct mem_cgroup *__mem_cgroup_iter_next(struct mem_cgroup *root,
 | 
				
			||||||
	 * protected by css_get and the tree walk is rcu safe.
 | 
						 * protected by css_get and the tree walk is rcu safe.
 | 
				
			||||||
	 */
 | 
						 */
 | 
				
			||||||
	if (next_css) {
 | 
						if (next_css) {
 | 
				
			||||||
		struct mem_cgroup *mem = mem_cgroup_from_css(next_css);
 | 
							if ((next_css->flags & CSS_ONLINE) && css_tryget(next_css))
 | 
				
			||||||
 | 
								return mem_cgroup_from_css(next_css);
 | 
				
			||||||
		if (css_tryget(&mem->css))
 | 
					 | 
				
			||||||
			return mem;
 | 
					 | 
				
			||||||
		else {
 | 
							else {
 | 
				
			||||||
			prev_css = next_css;
 | 
								prev_css = next_css;
 | 
				
			||||||
			goto skip_node;
 | 
								goto skip_node;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue