1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#ifndef OCFS2_ALLOC_H
27#define OCFS2_ALLOC_H
28
29
30
31
32
33#define OCFS2_MAX_XATTR_TREE_LEAF_SIZE 65536
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55struct ocfs2_extent_tree_operations;
56struct ocfs2_extent_tree {
57 struct ocfs2_extent_tree_operations *et_ops;
58 struct buffer_head *et_root_bh;
59 struct ocfs2_extent_list *et_root_el;
60 struct ocfs2_caching_info *et_ci;
61 ocfs2_journal_access_func et_root_journal_access;
62 void *et_object;
63 unsigned int et_max_leaf_clusters;
64};
65
66
67
68
69
70void ocfs2_init_dinode_extent_tree(struct ocfs2_extent_tree *et,
71 struct ocfs2_caching_info *ci,
72 struct buffer_head *bh);
73void ocfs2_init_xattr_tree_extent_tree(struct ocfs2_extent_tree *et,
74 struct ocfs2_caching_info *ci,
75 struct buffer_head *bh);
76struct ocfs2_xattr_value_buf;
77void ocfs2_init_xattr_value_extent_tree(struct ocfs2_extent_tree *et,
78 struct ocfs2_caching_info *ci,
79 struct ocfs2_xattr_value_buf *vb);
80void ocfs2_init_dx_root_extent_tree(struct ocfs2_extent_tree *et,
81 struct ocfs2_caching_info *ci,
82 struct buffer_head *bh);
83void ocfs2_init_refcount_extent_tree(struct ocfs2_extent_tree *et,
84 struct ocfs2_caching_info *ci,
85 struct buffer_head *bh);
86
87
88
89
90
91
92int ocfs2_read_extent_block(struct ocfs2_caching_info *ci, u64 eb_blkno,
93 struct buffer_head **bh);
94
95struct ocfs2_alloc_context;
96int ocfs2_insert_extent(handle_t *handle,
97 struct ocfs2_extent_tree *et,
98 u32 cpos,
99 u64 start_blk,
100 u32 new_clusters,
101 u8 flags,
102 struct ocfs2_alloc_context *meta_ac);
103
104enum ocfs2_alloc_restarted {
105 RESTART_NONE = 0,
106 RESTART_TRANS,
107 RESTART_META
108};
109int ocfs2_add_clusters_in_btree(handle_t *handle,
110 struct ocfs2_extent_tree *et,
111 u32 *logical_offset,
112 u32 clusters_to_add,
113 int mark_unwritten,
114 struct ocfs2_alloc_context *data_ac,
115 struct ocfs2_alloc_context *meta_ac,
116 enum ocfs2_alloc_restarted *reason_ret);
117struct ocfs2_cached_dealloc_ctxt;
118struct ocfs2_path;
119int ocfs2_split_extent(handle_t *handle,
120 struct ocfs2_extent_tree *et,
121 struct ocfs2_path *path,
122 int split_index,
123 struct ocfs2_extent_rec *split_rec,
124 struct ocfs2_alloc_context *meta_ac,
125 struct ocfs2_cached_dealloc_ctxt *dealloc);
126int ocfs2_mark_extent_written(struct inode *inode,
127 struct ocfs2_extent_tree *et,
128 handle_t *handle, u32 cpos, u32 len, u32 phys,
129 struct ocfs2_alloc_context *meta_ac,
130 struct ocfs2_cached_dealloc_ctxt *dealloc);
131int ocfs2_change_extent_flag(handle_t *handle,
132 struct ocfs2_extent_tree *et,
133 u32 cpos, u32 len, u32 phys,
134 struct ocfs2_alloc_context *meta_ac,
135 struct ocfs2_cached_dealloc_ctxt *dealloc,
136 int new_flags, int clear_flags);
137int ocfs2_remove_extent(handle_t *handle, struct ocfs2_extent_tree *et,
138 u32 cpos, u32 len,
139 struct ocfs2_alloc_context *meta_ac,
140 struct ocfs2_cached_dealloc_ctxt *dealloc);
141int ocfs2_remove_btree_range(struct inode *inode,
142 struct ocfs2_extent_tree *et,
143 u32 cpos, u32 phys_cpos, u32 len, int flags,
144 struct ocfs2_cached_dealloc_ctxt *dealloc,
145 u64 refcount_loc);
146
147int ocfs2_num_free_extents(struct ocfs2_super *osb,
148 struct ocfs2_extent_tree *et);
149
150
151
152
153
154
155
156
157static inline int ocfs2_extend_meta_needed(struct ocfs2_extent_list *root_el)
158{
159
160
161
162
163
164
165
166
167 return le16_to_cpu(root_el->l_tree_depth) + 2;
168}
169
170void ocfs2_dinode_new_extent_list(struct inode *inode, struct ocfs2_dinode *di);
171void ocfs2_set_inode_data_inline(struct inode *inode, struct ocfs2_dinode *di);
172int ocfs2_convert_inline_data_to_extents(struct inode *inode,
173 struct buffer_head *di_bh);
174
175int ocfs2_truncate_log_init(struct ocfs2_super *osb);
176void ocfs2_truncate_log_shutdown(struct ocfs2_super *osb);
177void ocfs2_schedule_truncate_log_flush(struct ocfs2_super *osb,
178 int cancel);
179int ocfs2_flush_truncate_log(struct ocfs2_super *osb);
180int ocfs2_begin_truncate_log_recovery(struct ocfs2_super *osb,
181 int slot_num,
182 struct ocfs2_dinode **tl_copy);
183int ocfs2_complete_truncate_log_recovery(struct ocfs2_super *osb,
184 struct ocfs2_dinode *tl_copy);
185int ocfs2_truncate_log_needs_flush(struct ocfs2_super *osb);
186int ocfs2_truncate_log_append(struct ocfs2_super *osb,
187 handle_t *handle,
188 u64 start_blk,
189 unsigned int num_clusters);
190int __ocfs2_flush_truncate_log(struct ocfs2_super *osb);
191
192
193
194
195
196
197
198
199
200
201struct ocfs2_cached_dealloc_ctxt {
202 struct ocfs2_per_slot_free_list *c_first_suballocator;
203 struct ocfs2_cached_block_free *c_global_allocator;
204};
205static inline void ocfs2_init_dealloc_ctxt(struct ocfs2_cached_dealloc_ctxt *c)
206{
207 c->c_first_suballocator = NULL;
208 c->c_global_allocator = NULL;
209}
210int ocfs2_cache_cluster_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
211 u64 blkno, unsigned int bit);
212int ocfs2_cache_block_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
213 int type, int slot, u64 suballoc, u64 blkno,
214 unsigned int bit);
215static inline int ocfs2_dealloc_has_cluster(struct ocfs2_cached_dealloc_ctxt *c)
216{
217 return c->c_global_allocator != NULL;
218}
219int ocfs2_run_deallocs(struct ocfs2_super *osb,
220 struct ocfs2_cached_dealloc_ctxt *ctxt);
221
222struct ocfs2_truncate_context {
223 struct ocfs2_cached_dealloc_ctxt tc_dealloc;
224 int tc_ext_alloc_locked;
225
226 struct buffer_head *tc_last_eb_bh;
227};
228
229int ocfs2_zero_range_for_truncate(struct inode *inode, handle_t *handle,
230 u64 range_start, u64 range_end);
231int ocfs2_commit_truncate(struct ocfs2_super *osb,
232 struct inode *inode,
233 struct buffer_head *di_bh);
234int ocfs2_truncate_inline(struct inode *inode, struct buffer_head *di_bh,
235 unsigned int start, unsigned int end, int trunc);
236
237int ocfs2_find_leaf(struct ocfs2_caching_info *ci,
238 struct ocfs2_extent_list *root_el, u32 cpos,
239 struct buffer_head **leaf_bh);
240int ocfs2_search_extent_list(struct ocfs2_extent_list *el, u32 v_cluster);
241
242
243
244
245static inline unsigned int ocfs2_rec_clusters(struct ocfs2_extent_list *el,
246 struct ocfs2_extent_rec *rec)
247{
248
249
250
251
252
253
254
255 if (el->l_tree_depth)
256 return le32_to_cpu(rec->e_int_clusters);
257 else
258 return le16_to_cpu(rec->e_leaf_clusters);
259}
260
261
262
263
264
265static inline int ocfs2_is_empty_extent(struct ocfs2_extent_rec *rec)
266{
267 return !rec->e_leaf_clusters;
268}
269
270int ocfs2_grab_pages(struct inode *inode, loff_t start, loff_t end,
271 struct page **pages, int *num);
272void ocfs2_map_and_dirty_page(struct inode *inode, handle_t *handle,
273 unsigned int from, unsigned int to,
274 struct page *page, int zero, u64 *phys);
275
276
277
278
279
280
281
282struct ocfs2_path_item {
283 struct buffer_head *bh;
284 struct ocfs2_extent_list *el;
285};
286
287#define OCFS2_MAX_PATH_DEPTH 5
288
289struct ocfs2_path {
290 int p_tree_depth;
291 ocfs2_journal_access_func p_root_access;
292 struct ocfs2_path_item p_node[OCFS2_MAX_PATH_DEPTH];
293};
294
295#define path_root_bh(_path) ((_path)->p_node[0].bh)
296#define path_root_el(_path) ((_path)->p_node[0].el)
297#define path_root_access(_path)((_path)->p_root_access)
298#define path_leaf_bh(_path) ((_path)->p_node[(_path)->p_tree_depth].bh)
299#define path_leaf_el(_path) ((_path)->p_node[(_path)->p_tree_depth].el)
300#define path_num_items(_path) ((_path)->p_tree_depth + 1)
301
302void ocfs2_reinit_path(struct ocfs2_path *path, int keep_root);
303void ocfs2_free_path(struct ocfs2_path *path);
304int ocfs2_find_path(struct ocfs2_caching_info *ci,
305 struct ocfs2_path *path,
306 u32 cpos);
307struct ocfs2_path *ocfs2_new_path_from_path(struct ocfs2_path *path);
308struct ocfs2_path *ocfs2_new_path_from_et(struct ocfs2_extent_tree *et);
309int ocfs2_path_bh_journal_access(handle_t *handle,
310 struct ocfs2_caching_info *ci,
311 struct ocfs2_path *path,
312 int idx);
313int ocfs2_journal_access_path(struct ocfs2_caching_info *ci,
314 handle_t *handle,
315 struct ocfs2_path *path);
316int ocfs2_find_cpos_for_right_leaf(struct super_block *sb,
317 struct ocfs2_path *path, u32 *cpos);
318int ocfs2_find_cpos_for_left_leaf(struct super_block *sb,
319 struct ocfs2_path *path, u32 *cpos);
320int ocfs2_find_subtree_root(struct ocfs2_extent_tree *et,
321 struct ocfs2_path *left,
322 struct ocfs2_path *right);
323#endif
324