forked from mirrors/linux
		
	slab: fix a crash by reading /proc/slab_allocators
The commit510ded33e0("slab: implement slab_root_caches list") changes the name of the list node within "struct kmem_cache" from "list" to "root_caches_node", but leaks_show() still use the "list" which causes a crash when reading /proc/slab_allocators. You need to have CONFIG_SLAB=y and CONFIG_MEMCG=y to see the problem, because without MEMCG all slab caches are root caches, and the "list" node happens to be the right one. Fixes:510ded33e0("slab: implement slab_root_caches list") Signed-off-by: Qian Cai <cai@lca.pw> Reviewed-by: Tobin C. Harding <tobin@kernel.org> Cc: Tejun Heo <tj@kernel.org> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									15ade5d2e7
								
							
						
					
					
						commit
						fcf88917dd
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -4308,7 +4308,8 @@ static void show_symbol(struct seq_file *m, unsigned long address)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int leaks_show(struct seq_file *m, void *p)
 | 
					static int leaks_show(struct seq_file *m, void *p)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
 | 
						struct kmem_cache *cachep = list_entry(p, struct kmem_cache,
 | 
				
			||||||
 | 
										       root_caches_node);
 | 
				
			||||||
	struct page *page;
 | 
						struct page *page;
 | 
				
			||||||
	struct kmem_cache_node *n;
 | 
						struct kmem_cache_node *n;
 | 
				
			||||||
	const char *name;
 | 
						const char *name;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue