mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	btrfs: introduce helpers for subpage error status
Introduce the following functions to handle subpage error status: - btrfs_subpage_set_error() - btrfs_subpage_clear_error() - btrfs_subpage_test_error() These helpers can only be called when the page has subpage attached and the range is ensured to be inside the page. - btrfs_page_set_error() - btrfs_page_clear_error() - btrfs_page_test_error() These helpers can handle both regular sector size and subpage without problem. Reviewed-by: Josef Bacik <josef@toxicpanda.com> Signed-off-by: Qu Wenruo <wqu@suse.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
		
							parent
							
								
									a1d767c11c
								
							
						
					
					
						commit
						03a816b32b
					
				
					 2 changed files with 31 additions and 0 deletions
				
			
		| 
						 | 
					@ -160,6 +160,33 @@ void btrfs_subpage_clear_uptodate(const struct btrfs_fs_info *fs_info,
 | 
				
			||||||
	spin_unlock_irqrestore(&subpage->lock, flags);
 | 
						spin_unlock_irqrestore(&subpage->lock, flags);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void btrfs_subpage_set_error(const struct btrfs_fs_info *fs_info,
 | 
				
			||||||
 | 
							struct page *page, u64 start, u32 len)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						struct btrfs_subpage *subpage = (struct btrfs_subpage *)page->private;
 | 
				
			||||||
 | 
						const u16 tmp = btrfs_subpage_calc_bitmap(fs_info, page, start, len);
 | 
				
			||||||
 | 
						unsigned long flags;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						spin_lock_irqsave(&subpage->lock, flags);
 | 
				
			||||||
 | 
						subpage->error_bitmap |= tmp;
 | 
				
			||||||
 | 
						SetPageError(page);
 | 
				
			||||||
 | 
						spin_unlock_irqrestore(&subpage->lock, flags);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void btrfs_subpage_clear_error(const struct btrfs_fs_info *fs_info,
 | 
				
			||||||
 | 
							struct page *page, u64 start, u32 len)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						struct btrfs_subpage *subpage = (struct btrfs_subpage *)page->private;
 | 
				
			||||||
 | 
						const u16 tmp = btrfs_subpage_calc_bitmap(fs_info, page, start, len);
 | 
				
			||||||
 | 
						unsigned long flags;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						spin_lock_irqsave(&subpage->lock, flags);
 | 
				
			||||||
 | 
						subpage->error_bitmap &= ~tmp;
 | 
				
			||||||
 | 
						if (subpage->error_bitmap == 0)
 | 
				
			||||||
 | 
							ClearPageError(page);
 | 
				
			||||||
 | 
						spin_unlock_irqrestore(&subpage->lock, flags);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * Unlike set/clear which is dependent on each page status, for test all bits
 | 
					 * Unlike set/clear which is dependent on each page status, for test all bits
 | 
				
			||||||
 * are tested in the same way.
 | 
					 * are tested in the same way.
 | 
				
			||||||
| 
						 | 
					@ -179,6 +206,7 @@ bool btrfs_subpage_test_##name(const struct btrfs_fs_info *fs_info,	\
 | 
				
			||||||
	return ret;							\
 | 
						return ret;							\
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
IMPLEMENT_BTRFS_SUBPAGE_TEST_OP(uptodate);
 | 
					IMPLEMENT_BTRFS_SUBPAGE_TEST_OP(uptodate);
 | 
				
			||||||
 | 
					IMPLEMENT_BTRFS_SUBPAGE_TEST_OP(error);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * Note that, in selftests (extent-io-tests), we can have empty fs_info passed
 | 
					 * Note that, in selftests (extent-io-tests), we can have empty fs_info passed
 | 
				
			||||||
| 
						 | 
					@ -214,3 +242,4 @@ bool btrfs_page_test_##name(const struct btrfs_fs_info *fs_info,	\
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
IMPLEMENT_BTRFS_PAGE_OPS(uptodate, SetPageUptodate, ClearPageUptodate,
 | 
					IMPLEMENT_BTRFS_PAGE_OPS(uptodate, SetPageUptodate, ClearPageUptodate,
 | 
				
			||||||
			 PageUptodate);
 | 
								 PageUptodate);
 | 
				
			||||||
 | 
					IMPLEMENT_BTRFS_PAGE_OPS(error, SetPageError, ClearPageError, PageError);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,6 +19,7 @@ struct btrfs_subpage {
 | 
				
			||||||
	/* Common members for both data and metadata pages */
 | 
						/* Common members for both data and metadata pages */
 | 
				
			||||||
	spinlock_t lock;
 | 
						spinlock_t lock;
 | 
				
			||||||
	u16 uptodate_bitmap;
 | 
						u16 uptodate_bitmap;
 | 
				
			||||||
 | 
						u16 error_bitmap;
 | 
				
			||||||
	union {
 | 
						union {
 | 
				
			||||||
		/*
 | 
							/*
 | 
				
			||||||
		 * Structures only used by metadata
 | 
							 * Structures only used by metadata
 | 
				
			||||||
| 
						 | 
					@ -77,5 +78,6 @@ bool btrfs_page_test_##name(const struct btrfs_fs_info *fs_info,	\
 | 
				
			||||||
		struct page *page, u64 start, u32 len);
 | 
							struct page *page, u64 start, u32 len);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DECLARE_BTRFS_SUBPAGE_OPS(uptodate);
 | 
					DECLARE_BTRFS_SUBPAGE_OPS(uptodate);
 | 
				
			||||||
 | 
					DECLARE_BTRFS_SUBPAGE_OPS(error);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue