forked from mirrors/linux
		
	mm: vmalloc: correct use of __GFP_NOWARN mask in __vmalloc_area_node()
This function sets __GFP_NOWARN in the gfp_mask rendering the warn_alloc() invocations no-ops. Remove this and instead rely on this flag being set only for the vm_area_alloc_pages() function, ensuring it is cleared for each of the warn_alloc() calls. Link: https://lkml.kernel.org/r/20221219123659.90614-1-lstoakes@gmail.com Signed-off-by: Lorenzo Stoakes <lstoakes@gmail.com> Reviewed-by: Uladzislau Rezki (Sony) <urezki@gmail.com> Cc: Baoquan He <bhe@redhat.com> Cc: Christoph Hellwig <hch@infradead.org> Cc: Matthew Wilcox (Oracle) <willy@infradead.org> Cc: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									ef1faf0e37
								
							
						
					
					
						commit
						80b1d8fdfa
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -3031,7 +3031,7 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask, | ||||||
| 	int ret; | 	int ret; | ||||||
| 
 | 
 | ||||||
| 	array_size = (unsigned long)nr_small_pages * sizeof(struct page *); | 	array_size = (unsigned long)nr_small_pages * sizeof(struct page *); | ||||||
| 	gfp_mask |= __GFP_NOWARN; | 
 | ||||||
| 	if (!(gfp_mask & (GFP_DMA | GFP_DMA32))) | 	if (!(gfp_mask & (GFP_DMA | GFP_DMA32))) | ||||||
| 		gfp_mask |= __GFP_HIGHMEM; | 		gfp_mask |= __GFP_HIGHMEM; | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Lorenzo Stoakes
						Lorenzo Stoakes