mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	Btrfs: Avoid using __GFP_HIGHMEM with slab allocator
btrfs_releasepage may call kmem_cache_alloc indirectly, and provide same GFP flags it gets to kmem_cache_alloc. So it's possible to use __GFP_HIGHMEM with the slab allocator. Signed-off-by: Yan Zheng <zheng.yan@oracle.com>
This commit is contained in:
		
							parent
							
								
									e1df36d2f1
								
							
						
					
					
						commit
						b335b0034e
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -4263,7 +4263,7 @@ static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
 | 
			
		|||
{
 | 
			
		||||
	if (PageWriteback(page) || PageDirty(page))
 | 
			
		||||
		return 0;
 | 
			
		||||
	return __btrfs_releasepage(page, gfp_flags);
 | 
			
		||||
	return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void btrfs_invalidatepage(struct page *page, unsigned long offset)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue