mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 08:38:45 +02:00 
			
		
		
		
	btrfs: sink gfp parameter to set_extent_bits
All callers pass GFP_NOFS. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
		
							parent
							
								
									02da2d7217
								
							
						
					
					
						commit
						ceeb0ae7bf
					
				
					 6 changed files with 10 additions and 11 deletions
				
			
		|  | @ -231,9 +231,9 @@ static int add_excluded_extent(struct btrfs_root *root, | |||
| { | ||||
| 	u64 end = start + num_bytes - 1; | ||||
| 	set_extent_bits(&root->fs_info->freed_extents[0], | ||||
| 			start, end, EXTENT_UPTODATE, GFP_NOFS); | ||||
| 			start, end, EXTENT_UPTODATE); | ||||
| 	set_extent_bits(&root->fs_info->freed_extents[1], | ||||
| 			start, end, EXTENT_UPTODATE, GFP_NOFS); | ||||
| 			start, end, EXTENT_UPTODATE); | ||||
| 	return 0; | ||||
| } | ||||
| 
 | ||||
|  |  | |||
|  | @ -2232,13 +2232,12 @@ int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end, | |||
| 
 | ||||
| 		/* set the bits in the private failure tree */ | ||||
| 		ret = set_extent_bits(failure_tree, start, end, | ||||
| 					EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS); | ||||
| 					EXTENT_LOCKED | EXTENT_DIRTY); | ||||
| 		if (ret >= 0) | ||||
| 			ret = set_state_failrec(failure_tree, start, failrec); | ||||
| 		/* set the bits in the inode's tree */ | ||||
| 		if (ret >= 0) | ||||
| 			ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED, | ||||
| 						GFP_NOFS); | ||||
| 			ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED); | ||||
| 		if (ret < 0) { | ||||
| 			kfree(failrec); | ||||
| 			return ret; | ||||
|  |  | |||
|  | @ -259,9 +259,9 @@ int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, | |||
| 		   struct extent_state **cached_state, gfp_t mask); | ||||
| 
 | ||||
| static inline int set_extent_bits(struct extent_io_tree *tree, u64 start, | ||||
| 		u64 end, unsigned bits, gfp_t mask) | ||||
| 		u64 end, unsigned bits) | ||||
| { | ||||
| 	return set_extent_bit(tree, start, end, bits, NULL, NULL, mask); | ||||
| 	return set_extent_bit(tree, start, end, bits, NULL, NULL, GFP_NOFS); | ||||
| } | ||||
| 
 | ||||
| static inline int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, | ||||
|  |  | |||
|  | @ -248,7 +248,7 @@ static int __btrfs_lookup_bio_sums(struct btrfs_root *root, | |||
| 				    BTRFS_DATA_RELOC_TREE_OBJECTID) { | ||||
| 					set_extent_bits(io_tree, offset, | ||||
| 						offset + root->sectorsize - 1, | ||||
| 						EXTENT_NODATASUM, GFP_NOFS); | ||||
| 						EXTENT_NODATASUM); | ||||
| 				} else { | ||||
| 					btrfs_info(BTRFS_I(inode)->root->fs_info, | ||||
| 						   "no csum found for inode %llu start %llu", | ||||
|  |  | |||
|  | @ -2814,7 +2814,7 @@ static void mark_block_processed(struct reloc_control *rc, | |||
| 				 u64 bytenr, u32 blocksize) | ||||
| { | ||||
| 	set_extent_bits(&rc->processed_blocks, bytenr, bytenr + blocksize - 1, | ||||
| 			EXTENT_DIRTY, GFP_NOFS); | ||||
| 			EXTENT_DIRTY); | ||||
| } | ||||
| 
 | ||||
| static void __mark_block_processed(struct reloc_control *rc, | ||||
|  | @ -3182,7 +3182,7 @@ static int relocate_file_extent_cluster(struct inode *inode, | |||
| 		    page_start + offset == cluster->boundary[nr]) { | ||||
| 			set_extent_bits(&BTRFS_I(inode)->io_tree, | ||||
| 					page_start, page_end, | ||||
| 					EXTENT_BOUNDARY, GFP_NOFS); | ||||
| 					EXTENT_BOUNDARY); | ||||
| 			nr++; | ||||
| 		} | ||||
| 
 | ||||
|  |  | |||
|  | @ -745,7 +745,7 @@ static int scrub_fixup_readpage(u64 inum, u64 offset, u64 root, void *fixup_ctx) | |||
| 		 * sure we read the bad mirror. | ||||
| 		 */ | ||||
| 		ret = set_extent_bits(&BTRFS_I(inode)->io_tree, offset, end, | ||||
| 					EXTENT_DAMAGED, GFP_NOFS); | ||||
| 					EXTENT_DAMAGED); | ||||
| 		if (ret) { | ||||
| 			/* set_extent_bits should give proper error */ | ||||
| 			WARN_ON(ret > 0); | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 David Sterba
						David Sterba