Linux Audio

Check our new training course

Loading...
v6.2
  1/* SPDX-License-Identifier: GPL-2.0 */
  2
  3#ifndef BTRFS_EXTENT_IO_H
  4#define BTRFS_EXTENT_IO_H
  5
  6#include <linux/rbtree.h>
  7#include <linux/refcount.h>
  8#include <linux/fiemap.h>
  9#include <linux/btrfs_tree.h>
 10#include "compression.h"
 11#include "ulist.h"
 12#include "misc.h"
 
 
 
 
 
 
 13
 14enum {
 15	EXTENT_BUFFER_UPTODATE,
 16	EXTENT_BUFFER_DIRTY,
 17	EXTENT_BUFFER_CORRUPT,
 18	/* this got triggered by readahead */
 19	EXTENT_BUFFER_READAHEAD,
 20	EXTENT_BUFFER_TREE_REF,
 21	EXTENT_BUFFER_STALE,
 22	EXTENT_BUFFER_WRITEBACK,
 23	/* read IO error */
 24	EXTENT_BUFFER_READ_ERR,
 25	EXTENT_BUFFER_UNMAPPED,
 26	EXTENT_BUFFER_IN_TREE,
 27	/* write IO error */
 28	EXTENT_BUFFER_WRITE_ERR,
 29	EXTENT_BUFFER_NO_CHECK,
 30};
 31
 32/* these are flags for __process_pages_contig */
 33enum {
 34	ENUM_BIT(PAGE_UNLOCK),
 35	/* Page starts writeback, clear dirty bit and set writeback bit */
 36	ENUM_BIT(PAGE_START_WRITEBACK),
 37	ENUM_BIT(PAGE_END_WRITEBACK),
 38	ENUM_BIT(PAGE_SET_ORDERED),
 39	ENUM_BIT(PAGE_SET_ERROR),
 40	ENUM_BIT(PAGE_LOCK),
 41};
 42
 43/*
 44 * page->private values.  Every page that is controlled by the extent
 45 * map has page->private set to one.
 46 */
 47#define EXTENT_PAGE_PRIVATE 1
 48
 49/*
 50 * The extent buffer bitmap operations are done with byte granularity instead of
 51 * word granularity for two reasons:
 52 * 1. The bitmaps must be little-endian on disk.
 53 * 2. Bitmap items are not guaranteed to be aligned to a word and therefore a
 54 *    single word in a bitmap may straddle two pages in the extent buffer.
 55 */
 56#define BIT_BYTE(nr) ((nr) / BITS_PER_BYTE)
 57#define BYTE_MASK ((1 << BITS_PER_BYTE) - 1)
 58#define BITMAP_FIRST_BYTE_MASK(start) \
 59	((BYTE_MASK << ((start) & (BITS_PER_BYTE - 1))) & BYTE_MASK)
 60#define BITMAP_LAST_BYTE_MASK(nbits) \
 61	(BYTE_MASK >> (-(nbits) & (BITS_PER_BYTE - 1)))
 62
 63struct btrfs_bio;
 64struct btrfs_root;
 65struct btrfs_inode;
 
 66struct btrfs_fs_info;
 67struct io_failure_record;
 68struct extent_io_tree;
 69struct btrfs_tree_parent_check;
 70
 71int __init extent_buffer_init_cachep(void);
 72void __cold extent_buffer_free_cachep(void);
 
 
 
 
 73
 74#define INLINE_EXTENT_BUFFER_PAGES     (BTRFS_MAX_METADATA_BLOCKSIZE / PAGE_SIZE)
 75struct extent_buffer {
 76	u64 start;
 77	unsigned long len;
 78	unsigned long bflags;
 79	struct btrfs_fs_info *fs_info;
 80	spinlock_t refs_lock;
 81	atomic_t refs;
 82	atomic_t io_pages;
 83	int read_mirror;
 84	struct rcu_head rcu_head;
 85	pid_t lock_owner;
 86	/* >= 0 if eb belongs to a log tree, -1 otherwise */
 87	s8 log_index;
 88
 89	struct rw_semaphore lock;
 90
 91	struct page *pages[INLINE_EXTENT_BUFFER_PAGES];
 92	struct list_head release_list;
 93#ifdef CONFIG_BTRFS_DEBUG
 94	struct list_head leak_list;
 95#endif
 96};
 97
 98/*
 99 * Get the correct offset inside the page of extent buffer.
100 *
101 * @eb:		target extent buffer
102 * @start:	offset inside the extent buffer
103 *
104 * Will handle both sectorsize == PAGE_SIZE and sectorsize < PAGE_SIZE cases.
105 */
106static inline size_t get_eb_offset_in_page(const struct extent_buffer *eb,
107					   unsigned long offset)
108{
109	/*
110	 * For sectorsize == PAGE_SIZE case, eb->start will always be aligned
111	 * to PAGE_SIZE, thus adding it won't cause any difference.
112	 *
113	 * For sectorsize < PAGE_SIZE, we must only read the data that belongs
114	 * to the eb, thus we have to take the eb->start into consideration.
115	 */
116	return offset_in_page(offset + eb->start);
117}
118
119static inline unsigned long get_eb_page_index(unsigned long offset)
120{
121	/*
122	 * For sectorsize == PAGE_SIZE case, plain >> PAGE_SHIFT is enough.
123	 *
124	 * For sectorsize < PAGE_SIZE case, we only support 64K PAGE_SIZE,
125	 * and have ensured that all tree blocks are contained in one page,
126	 * thus we always get index == 0.
127	 */
128	return offset >> PAGE_SHIFT;
129}
130
131/*
132 * Structure to record how many bytes and which ranges are set/cleared
133 */
134struct extent_changeset {
135	/* How many bytes are set/cleared in this operation */
136	u64 bytes_changed;
137
138	/* Changed ranges */
139	struct ulist range_changed;
140};
141
142static inline void extent_changeset_init(struct extent_changeset *changeset)
143{
144	changeset->bytes_changed = 0;
145	ulist_init(&changeset->range_changed);
146}
147
148static inline struct extent_changeset *extent_changeset_alloc(void)
149{
150	struct extent_changeset *ret;
151
152	ret = kmalloc(sizeof(*ret), GFP_KERNEL);
153	if (!ret)
154		return NULL;
155
156	extent_changeset_init(ret);
157	return ret;
158}
159
160static inline void extent_changeset_release(struct extent_changeset *changeset)
161{
162	if (!changeset)
163		return;
164	changeset->bytes_changed = 0;
165	ulist_release(&changeset->range_changed);
166}
167
168static inline void extent_changeset_free(struct extent_changeset *changeset)
169{
170	if (!changeset)
171		return;
172	extent_changeset_release(changeset);
173	kfree(changeset);
174}
175
 
 
 
 
 
 
 
 
 
 
 
176struct extent_map_tree;
177
 
 
 
 
178int try_release_extent_mapping(struct page *page, gfp_t mask);
179int try_release_extent_buffer(struct page *page);
180
181int btrfs_read_folio(struct file *file, struct folio *folio);
182int extent_write_locked_range(struct inode *inode, u64 start, u64 end);
 
 
 
 
 
 
183int extent_writepages(struct address_space *mapping,
184		      struct writeback_control *wbc);
185int btree_write_cache_pages(struct address_space *mapping,
186			    struct writeback_control *wbc);
187void extent_readahead(struct readahead_control *rac);
188int extent_fiemap(struct btrfs_inode *inode, struct fiemap_extent_info *fieinfo,
189		  u64 start, u64 len);
190int set_page_extent_mapped(struct page *page);
191void clear_page_extent_mapped(struct page *page);
192
193struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
194					  u64 start, u64 owner_root, int level);
195struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
196						  u64 start, unsigned long len);
197struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
198						u64 start);
199struct extent_buffer *btrfs_clone_extent_buffer(const struct extent_buffer *src);
200struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
201					 u64 start);
202void free_extent_buffer(struct extent_buffer *eb);
203void free_extent_buffer_stale(struct extent_buffer *eb);
204#define WAIT_NONE	0
205#define WAIT_COMPLETE	1
206#define WAIT_PAGE_LOCK	2
207int read_extent_buffer_pages(struct extent_buffer *eb, int wait, int mirror_num,
208			     struct btrfs_tree_parent_check *parent_check);
209void wait_on_extent_buffer_writeback(struct extent_buffer *eb);
210void btrfs_readahead_tree_block(struct btrfs_fs_info *fs_info,
211				u64 bytenr, u64 owner_root, u64 gen, int level);
212void btrfs_readahead_node_child(struct extent_buffer *node, int slot);
213
214static inline int num_extent_pages(const struct extent_buffer *eb)
215{
216	/*
217	 * For sectorsize == PAGE_SIZE case, since nodesize is always aligned to
218	 * sectorsize, it's just eb->len >> PAGE_SHIFT.
219	 *
220	 * For sectorsize < PAGE_SIZE case, we could have nodesize < PAGE_SIZE,
221	 * thus have to ensure we get at least one page.
222	 */
223	return (eb->len >> PAGE_SHIFT) ?: 1;
224}
225
226static inline int extent_buffer_uptodate(const struct extent_buffer *eb)
227{
228	return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
229}
230
231int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
232			 unsigned long start, unsigned long len);
233void read_extent_buffer(const struct extent_buffer *eb, void *dst,
234			unsigned long start,
235			unsigned long len);
236int read_extent_buffer_to_user_nofault(const struct extent_buffer *eb,
237				       void __user *dst, unsigned long start,
238				       unsigned long len);
239void write_extent_buffer_fsid(const struct extent_buffer *eb, const void *src);
240void write_extent_buffer_chunk_tree_uuid(const struct extent_buffer *eb,
241		const void *src);
242void write_extent_buffer(const struct extent_buffer *eb, const void *src,
243			 unsigned long start, unsigned long len);
244void copy_extent_buffer_full(const struct extent_buffer *dst,
245			     const struct extent_buffer *src);
246void copy_extent_buffer(const struct extent_buffer *dst,
247			const struct extent_buffer *src,
248			unsigned long dst_offset, unsigned long src_offset,
249			unsigned long len);
250void memcpy_extent_buffer(const struct extent_buffer *dst,
251			  unsigned long dst_offset, unsigned long src_offset,
252			  unsigned long len);
253void memmove_extent_buffer(const struct extent_buffer *dst,
254			   unsigned long dst_offset, unsigned long src_offset,
255			   unsigned long len);
256void memzero_extent_buffer(const struct extent_buffer *eb, unsigned long start,
257			   unsigned long len);
258int extent_buffer_test_bit(const struct extent_buffer *eb, unsigned long start,
259			   unsigned long pos);
260void extent_buffer_bitmap_set(const struct extent_buffer *eb, unsigned long start,
261			      unsigned long pos, unsigned long len);
262void extent_buffer_bitmap_clear(const struct extent_buffer *eb,
263				unsigned long start, unsigned long pos,
264				unsigned long len);
265void clear_extent_buffer_dirty(const struct extent_buffer *eb);
266bool set_extent_buffer_dirty(struct extent_buffer *eb);
267void set_extent_buffer_uptodate(struct extent_buffer *eb);
268void clear_extent_buffer_uptodate(struct extent_buffer *eb);
269int extent_buffer_under_io(const struct extent_buffer *eb);
270void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end);
271void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end);
272void extent_clear_unlock_delalloc(struct btrfs_inode *inode, u64 start, u64 end,
273				  struct page *locked_page,
274				  u32 bits_to_clear, unsigned long page_ops);
275int extent_invalidate_folio(struct extent_io_tree *tree,
276			    struct folio *folio, size_t offset);
277
278int btrfs_alloc_page_array(unsigned int nr_pages, struct page **page_array);
279
 
 
 
280void end_extent_writepage(struct page *page, int err, u64 start, u64 end);
 
281
282/*
283 * When IO fails, either with EIO or csum verification fails, we
284 * try other mirrors that might have a good copy of the data.  This
285 * io_failure_record is used to record state as we go through all the
286 * mirrors.  If another mirror has good data, the sector is set up to date
287 * and things continue.  If a good mirror can't be found, the original
288 * bio end_io callback is called to indicate things have failed.
289 */
290struct io_failure_record {
291	/* Use rb_simple_node for search/insert */
292	struct {
293		struct rb_node rb_node;
294		u64 bytenr;
295	};
296	struct page *page;
 
297	u64 len;
298	u64 logical;
 
299	int this_mirror;
300	int failed_mirror;
301	int num_copies;
302};
303
304int btrfs_repair_one_sector(struct btrfs_inode *inode, struct btrfs_bio *failed_bbio,
305			    u32 bio_offset, struct page *page, unsigned int pgoff,
306			    bool submit_buffered);
307void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end);
308int btrfs_clean_io_failure(struct btrfs_inode *inode, u64 start,
309			   struct page *page, unsigned int pg_offset);
310
311#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
312bool find_lock_delalloc_range(struct inode *inode,
313			     struct page *locked_page, u64 *start,
314			     u64 *end);
315#endif
316struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
317					       u64 start);
318
319#ifdef CONFIG_BTRFS_DEBUG
320void btrfs_extent_buffer_leak_debug_check(struct btrfs_fs_info *fs_info);
321#else
322#define btrfs_extent_buffer_leak_debug_check(fs_info)	do {} while (0)
323#endif
324
325#endif
v5.14.15
  1/* SPDX-License-Identifier: GPL-2.0 */
  2
  3#ifndef BTRFS_EXTENT_IO_H
  4#define BTRFS_EXTENT_IO_H
  5
  6#include <linux/rbtree.h>
  7#include <linux/refcount.h>
  8#include <linux/fiemap.h>
  9#include <linux/btrfs_tree.h>
 
 10#include "ulist.h"
 11
 12/*
 13 * flags for bio submission. The high bits indicate the compression
 14 * type for this bio
 15 */
 16#define EXTENT_BIO_COMPRESSED 1
 17#define EXTENT_BIO_FLAG_SHIFT 16
 18
 19enum {
 20	EXTENT_BUFFER_UPTODATE,
 21	EXTENT_BUFFER_DIRTY,
 22	EXTENT_BUFFER_CORRUPT,
 23	/* this got triggered by readahead */
 24	EXTENT_BUFFER_READAHEAD,
 25	EXTENT_BUFFER_TREE_REF,
 26	EXTENT_BUFFER_STALE,
 27	EXTENT_BUFFER_WRITEBACK,
 28	/* read IO error */
 29	EXTENT_BUFFER_READ_ERR,
 30	EXTENT_BUFFER_UNMAPPED,
 31	EXTENT_BUFFER_IN_TREE,
 32	/* write IO error */
 33	EXTENT_BUFFER_WRITE_ERR,
 34	EXTENT_BUFFER_NO_CHECK,
 35};
 36
 37/* these are flags for __process_pages_contig */
 38#define PAGE_UNLOCK		(1 << 0)
 39/* Page starts writeback, clear dirty bit and set writeback bit */
 40#define PAGE_START_WRITEBACK	(1 << 1)
 41#define PAGE_END_WRITEBACK	(1 << 2)
 42#define PAGE_SET_ORDERED	(1 << 3)
 43#define PAGE_SET_ERROR		(1 << 4)
 44#define PAGE_LOCK		(1 << 5)
 
 
 45
 46/*
 47 * page->private values.  Every page that is controlled by the extent
 48 * map has page->private set to one.
 49 */
 50#define EXTENT_PAGE_PRIVATE 1
 51
 52/*
 53 * The extent buffer bitmap operations are done with byte granularity instead of
 54 * word granularity for two reasons:
 55 * 1. The bitmaps must be little-endian on disk.
 56 * 2. Bitmap items are not guaranteed to be aligned to a word and therefore a
 57 *    single word in a bitmap may straddle two pages in the extent buffer.
 58 */
 59#define BIT_BYTE(nr) ((nr) / BITS_PER_BYTE)
 60#define BYTE_MASK ((1 << BITS_PER_BYTE) - 1)
 61#define BITMAP_FIRST_BYTE_MASK(start) \
 62	((BYTE_MASK << ((start) & (BITS_PER_BYTE - 1))) & BYTE_MASK)
 63#define BITMAP_LAST_BYTE_MASK(nbits) \
 64	(BYTE_MASK >> (-(nbits) & (BITS_PER_BYTE - 1)))
 65
 
 66struct btrfs_root;
 67struct btrfs_inode;
 68struct btrfs_io_bio;
 69struct btrfs_fs_info;
 70struct io_failure_record;
 71struct extent_io_tree;
 
 72
 73typedef blk_status_t (submit_bio_hook_t)(struct inode *inode, struct bio *bio,
 74					 int mirror_num,
 75					 unsigned long bio_flags);
 76
 77typedef blk_status_t (extent_submit_bio_start_t)(struct inode *inode,
 78		struct bio *bio, u64 dio_file_offset);
 79
 80#define INLINE_EXTENT_BUFFER_PAGES     (BTRFS_MAX_METADATA_BLOCKSIZE / PAGE_SIZE)
 81struct extent_buffer {
 82	u64 start;
 83	unsigned long len;
 84	unsigned long bflags;
 85	struct btrfs_fs_info *fs_info;
 86	spinlock_t refs_lock;
 87	atomic_t refs;
 88	atomic_t io_pages;
 89	int read_mirror;
 90	struct rcu_head rcu_head;
 91	pid_t lock_owner;
 92	/* >= 0 if eb belongs to a log tree, -1 otherwise */
 93	s8 log_index;
 94
 95	struct rw_semaphore lock;
 96
 97	struct page *pages[INLINE_EXTENT_BUFFER_PAGES];
 98	struct list_head release_list;
 99#ifdef CONFIG_BTRFS_DEBUG
100	struct list_head leak_list;
101#endif
102};
103
104/*
105 * Structure to record info about the bio being assembled, and other info like
106 * how many bytes are there before stripe/ordered extent boundary.
 
 
 
 
107 */
108struct btrfs_bio_ctrl {
109	struct bio *bio;
110	unsigned long bio_flags;
111	u32 len_to_stripe_boundary;
112	u32 len_to_oe_boundary;
113};
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
115/*
116 * Structure to record how many bytes and which ranges are set/cleared
117 */
118struct extent_changeset {
119	/* How many bytes are set/cleared in this operation */
120	unsigned int bytes_changed;
121
122	/* Changed ranges */
123	struct ulist range_changed;
124};
125
126static inline void extent_changeset_init(struct extent_changeset *changeset)
127{
128	changeset->bytes_changed = 0;
129	ulist_init(&changeset->range_changed);
130}
131
132static inline struct extent_changeset *extent_changeset_alloc(void)
133{
134	struct extent_changeset *ret;
135
136	ret = kmalloc(sizeof(*ret), GFP_KERNEL);
137	if (!ret)
138		return NULL;
139
140	extent_changeset_init(ret);
141	return ret;
142}
143
144static inline void extent_changeset_release(struct extent_changeset *changeset)
145{
146	if (!changeset)
147		return;
148	changeset->bytes_changed = 0;
149	ulist_release(&changeset->range_changed);
150}
151
152static inline void extent_changeset_free(struct extent_changeset *changeset)
153{
154	if (!changeset)
155		return;
156	extent_changeset_release(changeset);
157	kfree(changeset);
158}
159
160static inline void extent_set_compress_type(unsigned long *bio_flags,
161					    int compress_type)
162{
163	*bio_flags |= compress_type << EXTENT_BIO_FLAG_SHIFT;
164}
165
166static inline int extent_compress_type(unsigned long bio_flags)
167{
168	return bio_flags >> EXTENT_BIO_FLAG_SHIFT;
169}
170
171struct extent_map_tree;
172
173typedef struct extent_map *(get_extent_t)(struct btrfs_inode *inode,
174					  struct page *page, size_t pg_offset,
175					  u64 start, u64 len);
176
177int try_release_extent_mapping(struct page *page, gfp_t mask);
178int try_release_extent_buffer(struct page *page);
179
180int __must_check submit_one_bio(struct bio *bio, int mirror_num,
181				unsigned long bio_flags);
182int btrfs_do_readpage(struct page *page, struct extent_map **em_cached,
183		      struct btrfs_bio_ctrl *bio_ctrl,
184		      unsigned int read_flags, u64 *prev_em_start);
185int extent_write_full_page(struct page *page, struct writeback_control *wbc);
186int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
187			      int mode);
188int extent_writepages(struct address_space *mapping,
189		      struct writeback_control *wbc);
190int btree_write_cache_pages(struct address_space *mapping,
191			    struct writeback_control *wbc);
192void extent_readahead(struct readahead_control *rac);
193int extent_fiemap(struct btrfs_inode *inode, struct fiemap_extent_info *fieinfo,
194		  u64 start, u64 len);
195int set_page_extent_mapped(struct page *page);
196void clear_page_extent_mapped(struct page *page);
197
198struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
199					  u64 start, u64 owner_root, int level);
200struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
201						  u64 start, unsigned long len);
202struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
203						u64 start);
204struct extent_buffer *btrfs_clone_extent_buffer(const struct extent_buffer *src);
205struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
206					 u64 start);
207void free_extent_buffer(struct extent_buffer *eb);
208void free_extent_buffer_stale(struct extent_buffer *eb);
209#define WAIT_NONE	0
210#define WAIT_COMPLETE	1
211#define WAIT_PAGE_LOCK	2
212int read_extent_buffer_pages(struct extent_buffer *eb, int wait,
213			     int mirror_num);
214void wait_on_extent_buffer_writeback(struct extent_buffer *eb);
215void btrfs_readahead_tree_block(struct btrfs_fs_info *fs_info,
216				u64 bytenr, u64 owner_root, u64 gen, int level);
217void btrfs_readahead_node_child(struct extent_buffer *node, int slot);
218
219static inline int num_extent_pages(const struct extent_buffer *eb)
220{
221	/*
222	 * For sectorsize == PAGE_SIZE case, since nodesize is always aligned to
223	 * sectorsize, it's just eb->len >> PAGE_SHIFT.
224	 *
225	 * For sectorsize < PAGE_SIZE case, we could have nodesize < PAGE_SIZE,
226	 * thus have to ensure we get at least one page.
227	 */
228	return (eb->len >> PAGE_SHIFT) ?: 1;
229}
230
231static inline int extent_buffer_uptodate(const struct extent_buffer *eb)
232{
233	return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
234}
235
236int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
237			 unsigned long start, unsigned long len);
238void read_extent_buffer(const struct extent_buffer *eb, void *dst,
239			unsigned long start,
240			unsigned long len);
241int read_extent_buffer_to_user_nofault(const struct extent_buffer *eb,
242				       void __user *dst, unsigned long start,
243				       unsigned long len);
244void write_extent_buffer_fsid(const struct extent_buffer *eb, const void *src);
245void write_extent_buffer_chunk_tree_uuid(const struct extent_buffer *eb,
246		const void *src);
247void write_extent_buffer(const struct extent_buffer *eb, const void *src,
248			 unsigned long start, unsigned long len);
249void copy_extent_buffer_full(const struct extent_buffer *dst,
250			     const struct extent_buffer *src);
251void copy_extent_buffer(const struct extent_buffer *dst,
252			const struct extent_buffer *src,
253			unsigned long dst_offset, unsigned long src_offset,
254			unsigned long len);
255void memcpy_extent_buffer(const struct extent_buffer *dst,
256			  unsigned long dst_offset, unsigned long src_offset,
257			  unsigned long len);
258void memmove_extent_buffer(const struct extent_buffer *dst,
259			   unsigned long dst_offset, unsigned long src_offset,
260			   unsigned long len);
261void memzero_extent_buffer(const struct extent_buffer *eb, unsigned long start,
262			   unsigned long len);
263int extent_buffer_test_bit(const struct extent_buffer *eb, unsigned long start,
264			   unsigned long pos);
265void extent_buffer_bitmap_set(const struct extent_buffer *eb, unsigned long start,
266			      unsigned long pos, unsigned long len);
267void extent_buffer_bitmap_clear(const struct extent_buffer *eb,
268				unsigned long start, unsigned long pos,
269				unsigned long len);
270void clear_extent_buffer_dirty(const struct extent_buffer *eb);
271bool set_extent_buffer_dirty(struct extent_buffer *eb);
272void set_extent_buffer_uptodate(struct extent_buffer *eb);
273void clear_extent_buffer_uptodate(struct extent_buffer *eb);
274int extent_buffer_under_io(const struct extent_buffer *eb);
275void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end);
276void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end);
277void extent_clear_unlock_delalloc(struct btrfs_inode *inode, u64 start, u64 end,
278				  struct page *locked_page,
279				  u32 bits_to_clear, unsigned long page_ops);
280struct bio *btrfs_bio_alloc(u64 first_byte);
281struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs);
282struct bio *btrfs_bio_clone(struct bio *bio);
283struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size);
284
285int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
286		      u64 length, u64 logical, struct page *page,
287		      unsigned int pg_offset, int mirror_num);
288void end_extent_writepage(struct page *page, int err, u64 start, u64 end);
289int btrfs_repair_eb_io_failure(const struct extent_buffer *eb, int mirror_num);
290
291/*
292 * When IO fails, either with EIO or csum verification fails, we
293 * try other mirrors that might have a good copy of the data.  This
294 * io_failure_record is used to record state as we go through all the
295 * mirrors.  If another mirror has good data, the sector is set up to date
296 * and things continue.  If a good mirror can't be found, the original
297 * bio end_io callback is called to indicate things have failed.
298 */
299struct io_failure_record {
 
 
 
 
 
300	struct page *page;
301	u64 start;
302	u64 len;
303	u64 logical;
304	unsigned long bio_flags;
305	int this_mirror;
306	int failed_mirror;
 
307};
308
309int btrfs_repair_one_sector(struct inode *inode,
310			    struct bio *failed_bio, u32 bio_offset,
311			    struct page *page, unsigned int pgoff,
312			    u64 start, int failed_mirror,
313			    submit_bio_hook_t *submit_bio_hook);
 
314
315#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
316bool find_lock_delalloc_range(struct inode *inode,
317			     struct page *locked_page, u64 *start,
318			     u64 *end);
319#endif
320struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
321					       u64 start);
322
323#ifdef CONFIG_BTRFS_DEBUG
324void btrfs_extent_buffer_leak_debug_check(struct btrfs_fs_info *fs_info);
325#else
326#define btrfs_extent_buffer_leak_debug_check(fs_info)	do {} while (0)
327#endif
328
329#endif