2 * Copyright (C) 2007 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #ifndef __BTRFS_EXTENT_IO_H__
20 #define __BTRFS_EXTENT_IO_H__
22 #if BTRFS_FLAT_INCLUDES
23 #include "kerncompat.h"
24 #include "extent-cache.h"
27 #include <btrfs/kerncompat.h>
28 #include <btrfs/extent-cache.h>
29 #include <btrfs/list.h>
30 #endif /* BTRFS_FLAT_INCLUDES */
32 #define EXTENT_DIRTY 1
33 #define EXTENT_WRITEBACK (1 << 1)
34 #define EXTENT_UPTODATE (1 << 2)
35 #define EXTENT_LOCKED (1 << 3)
36 #define EXTENT_NEW (1 << 4)
37 #define EXTENT_DELALLOC (1 << 5)
38 #define EXTENT_DEFRAG (1 << 6)
39 #define EXTENT_DEFRAG_DONE (1 << 7)
40 #define EXTENT_BUFFER_FILLED (1 << 8)
41 #define EXTENT_CSUM (1 << 9)
42 #define EXTENT_BAD_TRANSID (1 << 10)
43 #define EXTENT_BUFFER_DUMMY (1 << 11)
44 #define EXTENT_IOBITS (EXTENT_LOCKED | EXTENT_WRITEBACK)
46 #define BLOCK_GROUP_DATA EXTENT_WRITEBACK
47 #define BLOCK_GROUP_METADATA EXTENT_UPTODATE
48 #define BLOCK_GROUP_SYSTEM EXTENT_NEW
50 #define BLOCK_GROUP_DIRTY EXTENT_DIRTY
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.
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)))
66 static inline int le_test_bit(int nr, const u8 *addr)
68 return 1U & (addr[BIT_BYTE(nr)] >> (nr & (BITS_PER_BYTE-1)));
73 struct extent_io_tree {
74 struct cache_tree state;
75 struct cache_tree cache;
81 struct cache_extent cache_node;
89 struct extent_buffer {
90 struct cache_extent cache_node;
94 struct extent_io_tree *tree;
96 struct list_head recow;
103 static inline void extent_buffer_get(struct extent_buffer *eb)
108 void extent_io_tree_init(struct extent_io_tree *tree);
109 void extent_io_tree_cleanup(struct extent_io_tree *tree);
110 int set_extent_bits(struct extent_io_tree *tree, u64 start,
111 u64 end, int bits, gfp_t mask);
112 int clear_extent_bits(struct extent_io_tree *tree, u64 start,
113 u64 end, int bits, gfp_t mask);
114 int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
115 u64 *start_ret, u64 *end_ret, int bits);
116 int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
117 int bits, int filled);
118 int set_extent_dirty(struct extent_io_tree *tree, u64 start,
119 u64 end, gfp_t mask);
120 int clear_extent_dirty(struct extent_io_tree *tree, u64 start,
121 u64 end, gfp_t mask);
122 static inline int set_extent_buffer_uptodate(struct extent_buffer *eb)
124 eb->flags |= EXTENT_UPTODATE;
128 static inline int clear_extent_buffer_uptodate(struct extent_io_tree *tree,
129 struct extent_buffer *eb)
131 eb->flags &= ~EXTENT_UPTODATE;
135 static inline int extent_buffer_uptodate(struct extent_buffer *eb)
137 if (!eb || IS_ERR(eb))
139 if (eb->flags & EXTENT_UPTODATE)
144 int set_state_private(struct extent_io_tree *tree, u64 start, u64 xprivate);
145 int get_state_private(struct extent_io_tree *tree, u64 start, u64 *xprivate);
146 struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
147 u64 bytenr, u32 blocksize);
148 struct extent_buffer *find_first_extent_buffer(struct extent_io_tree *tree,
150 struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
151 u64 bytenr, u32 blocksize);
152 struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src);
153 void free_extent_buffer(struct extent_buffer *eb);
154 int read_extent_from_disk(struct extent_buffer *eb,
155 unsigned long offset, unsigned long len);
156 int write_extent_to_disk(struct extent_buffer *eb);
157 int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
158 unsigned long start, unsigned long len);
159 void read_extent_buffer(struct extent_buffer *eb, void *dst,
160 unsigned long start, unsigned long len);
161 void write_extent_buffer(struct extent_buffer *eb, const void *src,
162 unsigned long start, unsigned long len);
163 void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
164 unsigned long dst_offset, unsigned long src_offset,
166 void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
167 unsigned long src_offset, unsigned long len);
168 void memset_extent_buffer(struct extent_buffer *eb, char c,
169 unsigned long start, unsigned long len);
170 int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
172 int set_extent_buffer_dirty(struct extent_buffer *eb);
173 int clear_extent_buffer_dirty(struct extent_buffer *eb);
174 int read_data_from_disk(struct btrfs_fs_info *info, void *buf, u64 offset,
175 u64 bytes, int mirror);
176 int write_data_to_disk(struct btrfs_fs_info *info, void *buf, u64 offset,
177 u64 bytes, int mirror);