]>
Commit | Line | Data |
---|---|---|
ccd979bd MF |
1 | /* -*- mode: c; c-basic-offset: 8; -*- |
2 | * vim: noexpandtab sw=8 ts=8 sts=0: | |
3 | * | |
4 | * alloc.c | |
5 | * | |
6 | * Extent allocs and frees | |
7 | * | |
8 | * Copyright (C) 2002, 2004 Oracle. All rights reserved. | |
9 | * | |
10 | * This program is free software; you can redistribute it and/or | |
11 | * modify it under the terms of the GNU General Public | |
12 | * License as published by the Free Software Foundation; either | |
13 | * version 2 of the License, or (at your option) any later version. | |
14 | * | |
15 | * This program is distributed in the hope that it will be useful, | |
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
18 | * General Public License for more details. | |
19 | * | |
20 | * You should have received a copy of the GNU General Public | |
21 | * License along with this program; if not, write to the | |
22 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 | * Boston, MA 021110-1307, USA. | |
24 | */ | |
25 | ||
26 | #include <linux/fs.h> | |
27 | #include <linux/types.h> | |
28 | #include <linux/slab.h> | |
29 | #include <linux/highmem.h> | |
60b11392 | 30 | #include <linux/swap.h> |
a90714c1 | 31 | #include <linux/quotaops.h> |
e80de36d | 32 | #include <linux/blkdev.h> |
174cd4b1 | 33 | #include <linux/sched/signal.h> |
ccd979bd | 34 | |
ccd979bd MF |
35 | #include <cluster/masklog.h> |
36 | ||
37 | #include "ocfs2.h" | |
38 | ||
39 | #include "alloc.h" | |
60b11392 | 40 | #include "aops.h" |
d6b32bbb | 41 | #include "blockcheck.h" |
ccd979bd MF |
42 | #include "dlmglue.h" |
43 | #include "extent_map.h" | |
44 | #include "inode.h" | |
45 | #include "journal.h" | |
46 | #include "localalloc.h" | |
47 | #include "suballoc.h" | |
48 | #include "sysfile.h" | |
49 | #include "file.h" | |
50 | #include "super.h" | |
51 | #include "uptodate.h" | |
2a50a743 | 52 | #include "xattr.h" |
bcbbb24a | 53 | #include "refcounttree.h" |
a09d09b8 | 54 | #include "ocfs2_trace.h" |
ccd979bd MF |
55 | |
56 | #include "buffer_head_io.h" | |
57 | ||
853a3a14 TM |
58 | enum ocfs2_contig_type { |
59 | CONTIG_NONE = 0, | |
60 | CONTIG_LEFT, | |
61 | CONTIG_RIGHT, | |
62 | CONTIG_LEFTRIGHT, | |
63 | }; | |
e7d4cb6b | 64 | |
853a3a14 TM |
65 | static enum ocfs2_contig_type |
66 | ocfs2_extent_rec_contig(struct super_block *sb, | |
67 | struct ocfs2_extent_rec *ext, | |
68 | struct ocfs2_extent_rec *insert_rec); | |
1625f8ac JB |
69 | /* |
70 | * Operations for a specific extent tree type. | |
71 | * | |
72 | * To implement an on-disk btree (extent tree) type in ocfs2, add | |
73 | * an ocfs2_extent_tree_operations structure and the matching | |
8d6220d6 | 74 | * ocfs2_init_<thingy>_extent_tree() function. That's pretty much it |
1625f8ac JB |
75 | * for the allocation portion of the extent tree. |
76 | */ | |
e7d4cb6b | 77 | struct ocfs2_extent_tree_operations { |
1625f8ac JB |
78 | /* |
79 | * last_eb_blk is the block number of the right most leaf extent | |
80 | * block. Most on-disk structures containing an extent tree store | |
81 | * this value for fast access. The ->eo_set_last_eb_blk() and | |
82 | * ->eo_get_last_eb_blk() operations access this value. They are | |
83 | * both required. | |
84 | */ | |
35dc0aa3 JB |
85 | void (*eo_set_last_eb_blk)(struct ocfs2_extent_tree *et, |
86 | u64 blkno); | |
87 | u64 (*eo_get_last_eb_blk)(struct ocfs2_extent_tree *et); | |
1625f8ac JB |
88 | |
89 | /* | |
90 | * The on-disk structure usually keeps track of how many total | |
91 | * clusters are stored in this extent tree. This function updates | |
92 | * that value. new_clusters is the delta, and must be | |
93 | * added to the total. Required. | |
94 | */ | |
6136ca5f | 95 | void (*eo_update_clusters)(struct ocfs2_extent_tree *et, |
35dc0aa3 | 96 | u32 new_clusters); |
1625f8ac | 97 | |
92ba470c JB |
98 | /* |
99 | * If this extent tree is supported by an extent map, insert | |
100 | * a record into the map. | |
101 | */ | |
102 | void (*eo_extent_map_insert)(struct ocfs2_extent_tree *et, | |
103 | struct ocfs2_extent_rec *rec); | |
104 | ||
4c911eef JB |
105 | /* |
106 | * If this extent tree is supported by an extent map, truncate the | |
107 | * map to clusters, | |
108 | */ | |
109 | void (*eo_extent_map_truncate)(struct ocfs2_extent_tree *et, | |
110 | u32 clusters); | |
111 | ||
1625f8ac JB |
112 | /* |
113 | * If ->eo_insert_check() exists, it is called before rec is | |
114 | * inserted into the extent tree. It is optional. | |
115 | */ | |
6136ca5f | 116 | int (*eo_insert_check)(struct ocfs2_extent_tree *et, |
1e61ee79 | 117 | struct ocfs2_extent_rec *rec); |
6136ca5f | 118 | int (*eo_sanity_check)(struct ocfs2_extent_tree *et); |
0ce1010f | 119 | |
1625f8ac JB |
120 | /* |
121 | * -------------------------------------------------------------- | |
122 | * The remaining are internal to ocfs2_extent_tree and don't have | |
123 | * accessor functions | |
124 | */ | |
125 | ||
126 | /* | |
127 | * ->eo_fill_root_el() takes et->et_object and sets et->et_root_el. | |
128 | * It is required. | |
129 | */ | |
0ce1010f | 130 | void (*eo_fill_root_el)(struct ocfs2_extent_tree *et); |
1625f8ac JB |
131 | |
132 | /* | |
133 | * ->eo_fill_max_leaf_clusters sets et->et_max_leaf_clusters if | |
134 | * it exists. If it does not, et->et_max_leaf_clusters is set | |
135 | * to 0 (unlimited). Optional. | |
136 | */ | |
6136ca5f | 137 | void (*eo_fill_max_leaf_clusters)(struct ocfs2_extent_tree *et); |
853a3a14 TM |
138 | |
139 | /* | |
140 | * ->eo_extent_contig test whether the 2 ocfs2_extent_rec | |
141 | * are contiguous or not. Optional. Don't need to set it if use | |
142 | * ocfs2_extent_rec as the tree leaf. | |
143 | */ | |
144 | enum ocfs2_contig_type | |
145 | (*eo_extent_contig)(struct ocfs2_extent_tree *et, | |
146 | struct ocfs2_extent_rec *ext, | |
147 | struct ocfs2_extent_rec *insert_rec); | |
e7d4cb6b TM |
148 | }; |
149 | ||
e7d4cb6b | 150 | |
f99b9b7c JB |
151 | /* |
152 | * Pre-declare ocfs2_dinode_et_ops so we can use it as a sanity check | |
153 | * in the methods. | |
154 | */ | |
155 | static u64 ocfs2_dinode_get_last_eb_blk(struct ocfs2_extent_tree *et); | |
156 | static void ocfs2_dinode_set_last_eb_blk(struct ocfs2_extent_tree *et, | |
157 | u64 blkno); | |
6136ca5f | 158 | static void ocfs2_dinode_update_clusters(struct ocfs2_extent_tree *et, |
f99b9b7c | 159 | u32 clusters); |
92ba470c JB |
160 | static void ocfs2_dinode_extent_map_insert(struct ocfs2_extent_tree *et, |
161 | struct ocfs2_extent_rec *rec); | |
4c911eef JB |
162 | static void ocfs2_dinode_extent_map_truncate(struct ocfs2_extent_tree *et, |
163 | u32 clusters); | |
6136ca5f | 164 | static int ocfs2_dinode_insert_check(struct ocfs2_extent_tree *et, |
f99b9b7c | 165 | struct ocfs2_extent_rec *rec); |
6136ca5f | 166 | static int ocfs2_dinode_sanity_check(struct ocfs2_extent_tree *et); |
f99b9b7c | 167 | static void ocfs2_dinode_fill_root_el(struct ocfs2_extent_tree *et); |
71a36944 CG |
168 | |
169 | static int ocfs2_reuse_blk_from_dealloc(handle_t *handle, | |
170 | struct ocfs2_extent_tree *et, | |
171 | struct buffer_head **new_eb_bh, | |
172 | int blk_wanted, int *blk_given); | |
173 | static int ocfs2_is_dealloc_empty(struct ocfs2_extent_tree *et); | |
174 | ||
9e62dc09 | 175 | static const struct ocfs2_extent_tree_operations ocfs2_dinode_et_ops = { |
f99b9b7c JB |
176 | .eo_set_last_eb_blk = ocfs2_dinode_set_last_eb_blk, |
177 | .eo_get_last_eb_blk = ocfs2_dinode_get_last_eb_blk, | |
178 | .eo_update_clusters = ocfs2_dinode_update_clusters, | |
92ba470c | 179 | .eo_extent_map_insert = ocfs2_dinode_extent_map_insert, |
4c911eef | 180 | .eo_extent_map_truncate = ocfs2_dinode_extent_map_truncate, |
f99b9b7c JB |
181 | .eo_insert_check = ocfs2_dinode_insert_check, |
182 | .eo_sanity_check = ocfs2_dinode_sanity_check, | |
183 | .eo_fill_root_el = ocfs2_dinode_fill_root_el, | |
184 | }; | |
0ce1010f | 185 | |
e7d4cb6b TM |
186 | static void ocfs2_dinode_set_last_eb_blk(struct ocfs2_extent_tree *et, |
187 | u64 blkno) | |
188 | { | |
ea5efa15 | 189 | struct ocfs2_dinode *di = et->et_object; |
e7d4cb6b | 190 | |
f99b9b7c | 191 | BUG_ON(et->et_ops != &ocfs2_dinode_et_ops); |
e7d4cb6b TM |
192 | di->i_last_eb_blk = cpu_to_le64(blkno); |
193 | } | |
194 | ||
195 | static u64 ocfs2_dinode_get_last_eb_blk(struct ocfs2_extent_tree *et) | |
196 | { | |
ea5efa15 | 197 | struct ocfs2_dinode *di = et->et_object; |
e7d4cb6b | 198 | |
f99b9b7c | 199 | BUG_ON(et->et_ops != &ocfs2_dinode_et_ops); |
e7d4cb6b TM |
200 | return le64_to_cpu(di->i_last_eb_blk); |
201 | } | |
202 | ||
6136ca5f | 203 | static void ocfs2_dinode_update_clusters(struct ocfs2_extent_tree *et, |
e7d4cb6b TM |
204 | u32 clusters) |
205 | { | |
6136ca5f | 206 | struct ocfs2_inode_info *oi = cache_info_to_inode(et->et_ci); |
ea5efa15 | 207 | struct ocfs2_dinode *di = et->et_object; |
e7d4cb6b TM |
208 | |
209 | le32_add_cpu(&di->i_clusters, clusters); | |
6136ca5f JB |
210 | spin_lock(&oi->ip_lock); |
211 | oi->ip_clusters = le32_to_cpu(di->i_clusters); | |
212 | spin_unlock(&oi->ip_lock); | |
e7d4cb6b TM |
213 | } |
214 | ||
92ba470c JB |
215 | static void ocfs2_dinode_extent_map_insert(struct ocfs2_extent_tree *et, |
216 | struct ocfs2_extent_rec *rec) | |
217 | { | |
218 | struct inode *inode = &cache_info_to_inode(et->et_ci)->vfs_inode; | |
219 | ||
220 | ocfs2_extent_map_insert_rec(inode, rec); | |
221 | } | |
222 | ||
4c911eef JB |
223 | static void ocfs2_dinode_extent_map_truncate(struct ocfs2_extent_tree *et, |
224 | u32 clusters) | |
225 | { | |
226 | struct inode *inode = &cache_info_to_inode(et->et_ci)->vfs_inode; | |
227 | ||
228 | ocfs2_extent_map_trunc(inode, clusters); | |
229 | } | |
230 | ||
6136ca5f | 231 | static int ocfs2_dinode_insert_check(struct ocfs2_extent_tree *et, |
1e61ee79 JB |
232 | struct ocfs2_extent_rec *rec) |
233 | { | |
6136ca5f JB |
234 | struct ocfs2_inode_info *oi = cache_info_to_inode(et->et_ci); |
235 | struct ocfs2_super *osb = OCFS2_SB(oi->vfs_inode.i_sb); | |
1e61ee79 | 236 | |
6136ca5f | 237 | BUG_ON(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL); |
1e61ee79 | 238 | mlog_bug_on_msg(!ocfs2_sparse_alloc(osb) && |
6136ca5f | 239 | (oi->ip_clusters != le32_to_cpu(rec->e_cpos)), |
1e61ee79 JB |
240 | "Device %s, asking for sparse allocation: inode %llu, " |
241 | "cpos %u, clusters %u\n", | |
242 | osb->dev_str, | |
6136ca5f JB |
243 | (unsigned long long)oi->ip_blkno, |
244 | rec->e_cpos, oi->ip_clusters); | |
1e61ee79 JB |
245 | |
246 | return 0; | |
247 | } | |
248 | ||
6136ca5f | 249 | static int ocfs2_dinode_sanity_check(struct ocfs2_extent_tree *et) |
e7d4cb6b | 250 | { |
10995aa2 | 251 | struct ocfs2_dinode *di = et->et_object; |
e7d4cb6b | 252 | |
f99b9b7c | 253 | BUG_ON(et->et_ops != &ocfs2_dinode_et_ops); |
10995aa2 | 254 | BUG_ON(!OCFS2_IS_VALID_DINODE(di)); |
e7d4cb6b | 255 | |
10995aa2 | 256 | return 0; |
e7d4cb6b TM |
257 | } |
258 | ||
f99b9b7c JB |
259 | static void ocfs2_dinode_fill_root_el(struct ocfs2_extent_tree *et) |
260 | { | |
261 | struct ocfs2_dinode *di = et->et_object; | |
262 | ||
263 | et->et_root_el = &di->id2.i_list; | |
264 | } | |
265 | ||
e7d4cb6b | 266 | |
0ce1010f JB |
267 | static void ocfs2_xattr_value_fill_root_el(struct ocfs2_extent_tree *et) |
268 | { | |
2a50a743 | 269 | struct ocfs2_xattr_value_buf *vb = et->et_object; |
0ce1010f | 270 | |
2a50a743 | 271 | et->et_root_el = &vb->vb_xv->xr_list; |
0ce1010f JB |
272 | } |
273 | ||
f56654c4 TM |
274 | static void ocfs2_xattr_value_set_last_eb_blk(struct ocfs2_extent_tree *et, |
275 | u64 blkno) | |
276 | { | |
2a50a743 | 277 | struct ocfs2_xattr_value_buf *vb = et->et_object; |
f56654c4 | 278 | |
2a50a743 | 279 | vb->vb_xv->xr_last_eb_blk = cpu_to_le64(blkno); |
f56654c4 TM |
280 | } |
281 | ||
282 | static u64 ocfs2_xattr_value_get_last_eb_blk(struct ocfs2_extent_tree *et) | |
283 | { | |
2a50a743 | 284 | struct ocfs2_xattr_value_buf *vb = et->et_object; |
f56654c4 | 285 | |
2a50a743 | 286 | return le64_to_cpu(vb->vb_xv->xr_last_eb_blk); |
f56654c4 TM |
287 | } |
288 | ||
6136ca5f | 289 | static void ocfs2_xattr_value_update_clusters(struct ocfs2_extent_tree *et, |
f56654c4 TM |
290 | u32 clusters) |
291 | { | |
2a50a743 | 292 | struct ocfs2_xattr_value_buf *vb = et->et_object; |
f56654c4 | 293 | |
2a50a743 | 294 | le32_add_cpu(&vb->vb_xv->xr_clusters, clusters); |
f56654c4 TM |
295 | } |
296 | ||
9e62dc09 | 297 | static const struct ocfs2_extent_tree_operations ocfs2_xattr_value_et_ops = { |
35dc0aa3 JB |
298 | .eo_set_last_eb_blk = ocfs2_xattr_value_set_last_eb_blk, |
299 | .eo_get_last_eb_blk = ocfs2_xattr_value_get_last_eb_blk, | |
300 | .eo_update_clusters = ocfs2_xattr_value_update_clusters, | |
0ce1010f | 301 | .eo_fill_root_el = ocfs2_xattr_value_fill_root_el, |
f56654c4 TM |
302 | }; |
303 | ||
0ce1010f JB |
304 | static void ocfs2_xattr_tree_fill_root_el(struct ocfs2_extent_tree *et) |
305 | { | |
306 | struct ocfs2_xattr_block *xb = et->et_object; | |
307 | ||
308 | et->et_root_el = &xb->xb_attrs.xb_root.xt_list; | |
309 | } | |
310 | ||
6136ca5f | 311 | static void ocfs2_xattr_tree_fill_max_leaf_clusters(struct ocfs2_extent_tree *et) |
943cced3 | 312 | { |
6136ca5f | 313 | struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci); |
943cced3 | 314 | et->et_max_leaf_clusters = |
6136ca5f | 315 | ocfs2_clusters_for_bytes(sb, OCFS2_MAX_XATTR_TREE_LEAF_SIZE); |
943cced3 JB |
316 | } |
317 | ||
ba492615 TM |
318 | static void ocfs2_xattr_tree_set_last_eb_blk(struct ocfs2_extent_tree *et, |
319 | u64 blkno) | |
320 | { | |
ea5efa15 | 321 | struct ocfs2_xattr_block *xb = et->et_object; |
ba492615 TM |
322 | struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root; |
323 | ||
324 | xt->xt_last_eb_blk = cpu_to_le64(blkno); | |
325 | } | |
326 | ||
327 | static u64 ocfs2_xattr_tree_get_last_eb_blk(struct ocfs2_extent_tree *et) | |
328 | { | |
ea5efa15 | 329 | struct ocfs2_xattr_block *xb = et->et_object; |
ba492615 TM |
330 | struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root; |
331 | ||
332 | return le64_to_cpu(xt->xt_last_eb_blk); | |
333 | } | |
334 | ||
6136ca5f | 335 | static void ocfs2_xattr_tree_update_clusters(struct ocfs2_extent_tree *et, |
ba492615 TM |
336 | u32 clusters) |
337 | { | |
ea5efa15 | 338 | struct ocfs2_xattr_block *xb = et->et_object; |
ba492615 TM |
339 | |
340 | le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, clusters); | |
341 | } | |
342 | ||
9e62dc09 | 343 | static const struct ocfs2_extent_tree_operations ocfs2_xattr_tree_et_ops = { |
35dc0aa3 JB |
344 | .eo_set_last_eb_blk = ocfs2_xattr_tree_set_last_eb_blk, |
345 | .eo_get_last_eb_blk = ocfs2_xattr_tree_get_last_eb_blk, | |
346 | .eo_update_clusters = ocfs2_xattr_tree_update_clusters, | |
0ce1010f | 347 | .eo_fill_root_el = ocfs2_xattr_tree_fill_root_el, |
943cced3 | 348 | .eo_fill_max_leaf_clusters = ocfs2_xattr_tree_fill_max_leaf_clusters, |
ba492615 TM |
349 | }; |
350 | ||
9b7895ef MF |
351 | static void ocfs2_dx_root_set_last_eb_blk(struct ocfs2_extent_tree *et, |
352 | u64 blkno) | |
353 | { | |
354 | struct ocfs2_dx_root_block *dx_root = et->et_object; | |
355 | ||
356 | dx_root->dr_last_eb_blk = cpu_to_le64(blkno); | |
357 | } | |
358 | ||
359 | static u64 ocfs2_dx_root_get_last_eb_blk(struct ocfs2_extent_tree *et) | |
360 | { | |
361 | struct ocfs2_dx_root_block *dx_root = et->et_object; | |
362 | ||
363 | return le64_to_cpu(dx_root->dr_last_eb_blk); | |
364 | } | |
365 | ||
6136ca5f | 366 | static void ocfs2_dx_root_update_clusters(struct ocfs2_extent_tree *et, |
9b7895ef MF |
367 | u32 clusters) |
368 | { | |
369 | struct ocfs2_dx_root_block *dx_root = et->et_object; | |
370 | ||
371 | le32_add_cpu(&dx_root->dr_clusters, clusters); | |
372 | } | |
373 | ||
6136ca5f | 374 | static int ocfs2_dx_root_sanity_check(struct ocfs2_extent_tree *et) |
9b7895ef MF |
375 | { |
376 | struct ocfs2_dx_root_block *dx_root = et->et_object; | |
377 | ||
378 | BUG_ON(!OCFS2_IS_VALID_DX_ROOT(dx_root)); | |
379 | ||
380 | return 0; | |
381 | } | |
382 | ||
383 | static void ocfs2_dx_root_fill_root_el(struct ocfs2_extent_tree *et) | |
384 | { | |
385 | struct ocfs2_dx_root_block *dx_root = et->et_object; | |
386 | ||
387 | et->et_root_el = &dx_root->dr_list; | |
388 | } | |
389 | ||
9e62dc09 | 390 | static const struct ocfs2_extent_tree_operations ocfs2_dx_root_et_ops = { |
9b7895ef MF |
391 | .eo_set_last_eb_blk = ocfs2_dx_root_set_last_eb_blk, |
392 | .eo_get_last_eb_blk = ocfs2_dx_root_get_last_eb_blk, | |
393 | .eo_update_clusters = ocfs2_dx_root_update_clusters, | |
394 | .eo_sanity_check = ocfs2_dx_root_sanity_check, | |
395 | .eo_fill_root_el = ocfs2_dx_root_fill_root_el, | |
396 | }; | |
397 | ||
fe924415 TM |
398 | static void ocfs2_refcount_tree_fill_root_el(struct ocfs2_extent_tree *et) |
399 | { | |
400 | struct ocfs2_refcount_block *rb = et->et_object; | |
401 | ||
402 | et->et_root_el = &rb->rf_list; | |
403 | } | |
404 | ||
405 | static void ocfs2_refcount_tree_set_last_eb_blk(struct ocfs2_extent_tree *et, | |
406 | u64 blkno) | |
407 | { | |
408 | struct ocfs2_refcount_block *rb = et->et_object; | |
409 | ||
410 | rb->rf_last_eb_blk = cpu_to_le64(blkno); | |
411 | } | |
412 | ||
413 | static u64 ocfs2_refcount_tree_get_last_eb_blk(struct ocfs2_extent_tree *et) | |
414 | { | |
415 | struct ocfs2_refcount_block *rb = et->et_object; | |
416 | ||
417 | return le64_to_cpu(rb->rf_last_eb_blk); | |
418 | } | |
419 | ||
420 | static void ocfs2_refcount_tree_update_clusters(struct ocfs2_extent_tree *et, | |
421 | u32 clusters) | |
422 | { | |
423 | struct ocfs2_refcount_block *rb = et->et_object; | |
424 | ||
425 | le32_add_cpu(&rb->rf_clusters, clusters); | |
426 | } | |
427 | ||
428 | static enum ocfs2_contig_type | |
429 | ocfs2_refcount_tree_extent_contig(struct ocfs2_extent_tree *et, | |
430 | struct ocfs2_extent_rec *ext, | |
431 | struct ocfs2_extent_rec *insert_rec) | |
432 | { | |
433 | return CONTIG_NONE; | |
434 | } | |
435 | ||
9e62dc09 | 436 | static const struct ocfs2_extent_tree_operations ocfs2_refcount_tree_et_ops = { |
fe924415 TM |
437 | .eo_set_last_eb_blk = ocfs2_refcount_tree_set_last_eb_blk, |
438 | .eo_get_last_eb_blk = ocfs2_refcount_tree_get_last_eb_blk, | |
439 | .eo_update_clusters = ocfs2_refcount_tree_update_clusters, | |
440 | .eo_fill_root_el = ocfs2_refcount_tree_fill_root_el, | |
441 | .eo_extent_contig = ocfs2_refcount_tree_extent_contig, | |
442 | }; | |
443 | ||
8d6220d6 | 444 | static void __ocfs2_init_extent_tree(struct ocfs2_extent_tree *et, |
5e404e9e | 445 | struct ocfs2_caching_info *ci, |
8d6220d6 | 446 | struct buffer_head *bh, |
13723d00 | 447 | ocfs2_journal_access_func access, |
8d6220d6 | 448 | void *obj, |
9e62dc09 | 449 | const struct ocfs2_extent_tree_operations *ops) |
e7d4cb6b | 450 | { |
1a09f556 | 451 | et->et_ops = ops; |
ce1d9ea6 | 452 | et->et_root_bh = bh; |
5e404e9e | 453 | et->et_ci = ci; |
13723d00 | 454 | et->et_root_journal_access = access; |
ea5efa15 JB |
455 | if (!obj) |
456 | obj = (void *)bh->b_data; | |
457 | et->et_object = obj; | |
71a36944 | 458 | et->et_dealloc = NULL; |
e7d4cb6b | 459 | |
0ce1010f | 460 | et->et_ops->eo_fill_root_el(et); |
943cced3 JB |
461 | if (!et->et_ops->eo_fill_max_leaf_clusters) |
462 | et->et_max_leaf_clusters = 0; | |
463 | else | |
6136ca5f | 464 | et->et_ops->eo_fill_max_leaf_clusters(et); |
e7d4cb6b TM |
465 | } |
466 | ||
8d6220d6 | 467 | void ocfs2_init_dinode_extent_tree(struct ocfs2_extent_tree *et, |
5e404e9e | 468 | struct ocfs2_caching_info *ci, |
8d6220d6 | 469 | struct buffer_head *bh) |
1a09f556 | 470 | { |
5e404e9e | 471 | __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_di, |
13723d00 | 472 | NULL, &ocfs2_dinode_et_ops); |
1a09f556 JB |
473 | } |
474 | ||
8d6220d6 | 475 | void ocfs2_init_xattr_tree_extent_tree(struct ocfs2_extent_tree *et, |
5e404e9e | 476 | struct ocfs2_caching_info *ci, |
8d6220d6 | 477 | struct buffer_head *bh) |
1a09f556 | 478 | { |
5e404e9e | 479 | __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_xb, |
13723d00 | 480 | NULL, &ocfs2_xattr_tree_et_ops); |
1a09f556 JB |
481 | } |
482 | ||
8d6220d6 | 483 | void ocfs2_init_xattr_value_extent_tree(struct ocfs2_extent_tree *et, |
5e404e9e | 484 | struct ocfs2_caching_info *ci, |
2a50a743 | 485 | struct ocfs2_xattr_value_buf *vb) |
e7d4cb6b | 486 | { |
5e404e9e | 487 | __ocfs2_init_extent_tree(et, ci, vb->vb_bh, vb->vb_access, vb, |
8d6220d6 | 488 | &ocfs2_xattr_value_et_ops); |
e7d4cb6b TM |
489 | } |
490 | ||
9b7895ef | 491 | void ocfs2_init_dx_root_extent_tree(struct ocfs2_extent_tree *et, |
5e404e9e | 492 | struct ocfs2_caching_info *ci, |
9b7895ef MF |
493 | struct buffer_head *bh) |
494 | { | |
5e404e9e | 495 | __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_dr, |
9b7895ef MF |
496 | NULL, &ocfs2_dx_root_et_ops); |
497 | } | |
498 | ||
fe924415 TM |
499 | void ocfs2_init_refcount_extent_tree(struct ocfs2_extent_tree *et, |
500 | struct ocfs2_caching_info *ci, | |
501 | struct buffer_head *bh) | |
502 | { | |
503 | __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_rb, | |
504 | NULL, &ocfs2_refcount_tree_et_ops); | |
505 | } | |
506 | ||
35dc0aa3 JB |
507 | static inline void ocfs2_et_set_last_eb_blk(struct ocfs2_extent_tree *et, |
508 | u64 new_last_eb_blk) | |
e7d4cb6b | 509 | { |
ce1d9ea6 | 510 | et->et_ops->eo_set_last_eb_blk(et, new_last_eb_blk); |
e7d4cb6b TM |
511 | } |
512 | ||
35dc0aa3 | 513 | static inline u64 ocfs2_et_get_last_eb_blk(struct ocfs2_extent_tree *et) |
e7d4cb6b | 514 | { |
ce1d9ea6 | 515 | return et->et_ops->eo_get_last_eb_blk(et); |
e7d4cb6b TM |
516 | } |
517 | ||
6136ca5f | 518 | static inline void ocfs2_et_update_clusters(struct ocfs2_extent_tree *et, |
35dc0aa3 JB |
519 | u32 clusters) |
520 | { | |
6136ca5f | 521 | et->et_ops->eo_update_clusters(et, clusters); |
35dc0aa3 JB |
522 | } |
523 | ||
92ba470c JB |
524 | static inline void ocfs2_et_extent_map_insert(struct ocfs2_extent_tree *et, |
525 | struct ocfs2_extent_rec *rec) | |
526 | { | |
527 | if (et->et_ops->eo_extent_map_insert) | |
528 | et->et_ops->eo_extent_map_insert(et, rec); | |
529 | } | |
530 | ||
4c911eef JB |
531 | static inline void ocfs2_et_extent_map_truncate(struct ocfs2_extent_tree *et, |
532 | u32 clusters) | |
533 | { | |
534 | if (et->et_ops->eo_extent_map_truncate) | |
535 | et->et_ops->eo_extent_map_truncate(et, clusters); | |
536 | } | |
537 | ||
13723d00 | 538 | static inline int ocfs2_et_root_journal_access(handle_t *handle, |
13723d00 JB |
539 | struct ocfs2_extent_tree *et, |
540 | int type) | |
541 | { | |
d9a0a1f8 | 542 | return et->et_root_journal_access(handle, et->et_ci, et->et_root_bh, |
13723d00 JB |
543 | type); |
544 | } | |
545 | ||
853a3a14 TM |
546 | static inline enum ocfs2_contig_type |
547 | ocfs2_et_extent_contig(struct ocfs2_extent_tree *et, | |
548 | struct ocfs2_extent_rec *rec, | |
549 | struct ocfs2_extent_rec *insert_rec) | |
550 | { | |
551 | if (et->et_ops->eo_extent_contig) | |
552 | return et->et_ops->eo_extent_contig(et, rec, insert_rec); | |
553 | ||
554 | return ocfs2_extent_rec_contig( | |
555 | ocfs2_metadata_cache_get_super(et->et_ci), | |
556 | rec, insert_rec); | |
557 | } | |
558 | ||
6136ca5f | 559 | static inline int ocfs2_et_insert_check(struct ocfs2_extent_tree *et, |
1e61ee79 JB |
560 | struct ocfs2_extent_rec *rec) |
561 | { | |
562 | int ret = 0; | |
563 | ||
564 | if (et->et_ops->eo_insert_check) | |
6136ca5f | 565 | ret = et->et_ops->eo_insert_check(et, rec); |
1e61ee79 JB |
566 | return ret; |
567 | } | |
568 | ||
6136ca5f | 569 | static inline int ocfs2_et_sanity_check(struct ocfs2_extent_tree *et) |
e7d4cb6b | 570 | { |
1e61ee79 JB |
571 | int ret = 0; |
572 | ||
573 | if (et->et_ops->eo_sanity_check) | |
6136ca5f | 574 | ret = et->et_ops->eo_sanity_check(et); |
1e61ee79 | 575 | return ret; |
e7d4cb6b TM |
576 | } |
577 | ||
59a5e416 MF |
578 | static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt, |
579 | struct ocfs2_extent_block *eb); | |
d401dc12 JB |
580 | static void ocfs2_adjust_rightmost_records(handle_t *handle, |
581 | struct ocfs2_extent_tree *et, | |
6b791bcc TM |
582 | struct ocfs2_path *path, |
583 | struct ocfs2_extent_rec *insert_rec); | |
dcd0538f MF |
584 | /* |
585 | * Reset the actual path elements so that we can re-use the structure | |
586 | * to build another path. Generally, this involves freeing the buffer | |
587 | * heads. | |
588 | */ | |
e2e9f608 | 589 | void ocfs2_reinit_path(struct ocfs2_path *path, int keep_root) |
dcd0538f MF |
590 | { |
591 | int i, start = 0, depth = 0; | |
592 | struct ocfs2_path_item *node; | |
ccd979bd | 593 | |
dcd0538f MF |
594 | if (keep_root) |
595 | start = 1; | |
ccd979bd | 596 | |
dcd0538f MF |
597 | for(i = start; i < path_num_items(path); i++) { |
598 | node = &path->p_node[i]; | |
599 | ||
600 | brelse(node->bh); | |
601 | node->bh = NULL; | |
602 | node->el = NULL; | |
603 | } | |
604 | ||
605 | /* | |
606 | * Tree depth may change during truncate, or insert. If we're | |
607 | * keeping the root extent list, then make sure that our path | |
608 | * structure reflects the proper depth. | |
609 | */ | |
610 | if (keep_root) | |
611 | depth = le16_to_cpu(path_root_el(path)->l_tree_depth); | |
13723d00 JB |
612 | else |
613 | path_root_access(path) = NULL; | |
dcd0538f MF |
614 | |
615 | path->p_tree_depth = depth; | |
616 | } | |
617 | ||
e2e9f608 | 618 | void ocfs2_free_path(struct ocfs2_path *path) |
dcd0538f MF |
619 | { |
620 | if (path) { | |
621 | ocfs2_reinit_path(path, 0); | |
622 | kfree(path); | |
623 | } | |
624 | } | |
625 | ||
328d5752 MF |
626 | /* |
627 | * All the elements of src into dest. After this call, src could be freed | |
628 | * without affecting dest. | |
629 | * | |
630 | * Both paths should have the same root. Any non-root elements of dest | |
631 | * will be freed. | |
632 | */ | |
633 | static void ocfs2_cp_path(struct ocfs2_path *dest, struct ocfs2_path *src) | |
634 | { | |
635 | int i; | |
636 | ||
637 | BUG_ON(path_root_bh(dest) != path_root_bh(src)); | |
638 | BUG_ON(path_root_el(dest) != path_root_el(src)); | |
13723d00 | 639 | BUG_ON(path_root_access(dest) != path_root_access(src)); |
328d5752 MF |
640 | |
641 | ocfs2_reinit_path(dest, 1); | |
642 | ||
643 | for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) { | |
644 | dest->p_node[i].bh = src->p_node[i].bh; | |
645 | dest->p_node[i].el = src->p_node[i].el; | |
646 | ||
647 | if (dest->p_node[i].bh) | |
648 | get_bh(dest->p_node[i].bh); | |
649 | } | |
650 | } | |
651 | ||
dcd0538f MF |
652 | /* |
653 | * Make the *dest path the same as src and re-initialize src path to | |
654 | * have a root only. | |
655 | */ | |
656 | static void ocfs2_mv_path(struct ocfs2_path *dest, struct ocfs2_path *src) | |
657 | { | |
658 | int i; | |
659 | ||
660 | BUG_ON(path_root_bh(dest) != path_root_bh(src)); | |
13723d00 | 661 | BUG_ON(path_root_access(dest) != path_root_access(src)); |
dcd0538f MF |
662 | |
663 | for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) { | |
664 | brelse(dest->p_node[i].bh); | |
665 | ||
666 | dest->p_node[i].bh = src->p_node[i].bh; | |
667 | dest->p_node[i].el = src->p_node[i].el; | |
668 | ||
669 | src->p_node[i].bh = NULL; | |
670 | src->p_node[i].el = NULL; | |
671 | } | |
672 | } | |
673 | ||
674 | /* | |
675 | * Insert an extent block at given index. | |
676 | * | |
677 | * This will not take an additional reference on eb_bh. | |
678 | */ | |
679 | static inline void ocfs2_path_insert_eb(struct ocfs2_path *path, int index, | |
680 | struct buffer_head *eb_bh) | |
681 | { | |
682 | struct ocfs2_extent_block *eb = (struct ocfs2_extent_block *)eb_bh->b_data; | |
683 | ||
684 | /* | |
685 | * Right now, no root bh is an extent block, so this helps | |
686 | * catch code errors with dinode trees. The assertion can be | |
687 | * safely removed if we ever need to insert extent block | |
688 | * structures at the root. | |
689 | */ | |
690 | BUG_ON(index == 0); | |
691 | ||
692 | path->p_node[index].bh = eb_bh; | |
693 | path->p_node[index].el = &eb->h_list; | |
694 | } | |
695 | ||
696 | static struct ocfs2_path *ocfs2_new_path(struct buffer_head *root_bh, | |
13723d00 JB |
697 | struct ocfs2_extent_list *root_el, |
698 | ocfs2_journal_access_func access) | |
dcd0538f MF |
699 | { |
700 | struct ocfs2_path *path; | |
ccd979bd | 701 | |
dcd0538f MF |
702 | BUG_ON(le16_to_cpu(root_el->l_tree_depth) >= OCFS2_MAX_PATH_DEPTH); |
703 | ||
704 | path = kzalloc(sizeof(*path), GFP_NOFS); | |
705 | if (path) { | |
706 | path->p_tree_depth = le16_to_cpu(root_el->l_tree_depth); | |
707 | get_bh(root_bh); | |
708 | path_root_bh(path) = root_bh; | |
709 | path_root_el(path) = root_el; | |
13723d00 | 710 | path_root_access(path) = access; |
dcd0538f MF |
711 | } |
712 | ||
713 | return path; | |
714 | } | |
715 | ||
e2e9f608 | 716 | struct ocfs2_path *ocfs2_new_path_from_path(struct ocfs2_path *path) |
ffdd7a54 | 717 | { |
13723d00 JB |
718 | return ocfs2_new_path(path_root_bh(path), path_root_el(path), |
719 | path_root_access(path)); | |
ffdd7a54 JB |
720 | } |
721 | ||
e2e9f608 | 722 | struct ocfs2_path *ocfs2_new_path_from_et(struct ocfs2_extent_tree *et) |
ffdd7a54 | 723 | { |
13723d00 JB |
724 | return ocfs2_new_path(et->et_root_bh, et->et_root_el, |
725 | et->et_root_journal_access); | |
726 | } | |
727 | ||
728 | /* | |
729 | * Journal the buffer at depth idx. All idx>0 are extent_blocks, | |
730 | * otherwise it's the root_access function. | |
731 | * | |
732 | * I don't like the way this function's name looks next to | |
733 | * ocfs2_journal_access_path(), but I don't have a better one. | |
734 | */ | |
e2e9f608 TM |
735 | int ocfs2_path_bh_journal_access(handle_t *handle, |
736 | struct ocfs2_caching_info *ci, | |
737 | struct ocfs2_path *path, | |
738 | int idx) | |
13723d00 JB |
739 | { |
740 | ocfs2_journal_access_func access = path_root_access(path); | |
741 | ||
742 | if (!access) | |
743 | access = ocfs2_journal_access; | |
744 | ||
745 | if (idx) | |
746 | access = ocfs2_journal_access_eb; | |
747 | ||
0cf2f763 | 748 | return access(handle, ci, path->p_node[idx].bh, |
13723d00 | 749 | OCFS2_JOURNAL_ACCESS_WRITE); |
ffdd7a54 JB |
750 | } |
751 | ||
dcd0538f MF |
752 | /* |
753 | * Convenience function to journal all components in a path. | |
754 | */ | |
e2e9f608 TM |
755 | int ocfs2_journal_access_path(struct ocfs2_caching_info *ci, |
756 | handle_t *handle, | |
757 | struct ocfs2_path *path) | |
dcd0538f MF |
758 | { |
759 | int i, ret = 0; | |
760 | ||
761 | if (!path) | |
762 | goto out; | |
763 | ||
764 | for(i = 0; i < path_num_items(path); i++) { | |
0cf2f763 | 765 | ret = ocfs2_path_bh_journal_access(handle, ci, path, i); |
dcd0538f MF |
766 | if (ret < 0) { |
767 | mlog_errno(ret); | |
768 | goto out; | |
769 | } | |
770 | } | |
771 | ||
772 | out: | |
773 | return ret; | |
774 | } | |
775 | ||
328d5752 MF |
776 | /* |
777 | * Return the index of the extent record which contains cluster #v_cluster. | |
778 | * -1 is returned if it was not found. | |
779 | * | |
780 | * Should work fine on interior and exterior nodes. | |
781 | */ | |
782 | int ocfs2_search_extent_list(struct ocfs2_extent_list *el, u32 v_cluster) | |
783 | { | |
784 | int ret = -1; | |
785 | int i; | |
786 | struct ocfs2_extent_rec *rec; | |
787 | u32 rec_end, rec_start, clusters; | |
788 | ||
789 | for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) { | |
790 | rec = &el->l_recs[i]; | |
791 | ||
792 | rec_start = le32_to_cpu(rec->e_cpos); | |
793 | clusters = ocfs2_rec_clusters(el, rec); | |
794 | ||
795 | rec_end = rec_start + clusters; | |
796 | ||
797 | if (v_cluster >= rec_start && v_cluster < rec_end) { | |
798 | ret = i; | |
799 | break; | |
800 | } | |
801 | } | |
802 | ||
803 | return ret; | |
804 | } | |
805 | ||
e48edee2 MF |
806 | /* |
807 | * NOTE: ocfs2_block_extent_contig(), ocfs2_extents_adjacent() and | |
853a3a14 | 808 | * ocfs2_extent_rec_contig only work properly against leaf nodes! |
e48edee2 | 809 | */ |
dcd0538f MF |
810 | static int ocfs2_block_extent_contig(struct super_block *sb, |
811 | struct ocfs2_extent_rec *ext, | |
812 | u64 blkno) | |
ccd979bd | 813 | { |
e48edee2 MF |
814 | u64 blk_end = le64_to_cpu(ext->e_blkno); |
815 | ||
816 | blk_end += ocfs2_clusters_to_blocks(sb, | |
817 | le16_to_cpu(ext->e_leaf_clusters)); | |
818 | ||
819 | return blkno == blk_end; | |
ccd979bd MF |
820 | } |
821 | ||
dcd0538f MF |
822 | static int ocfs2_extents_adjacent(struct ocfs2_extent_rec *left, |
823 | struct ocfs2_extent_rec *right) | |
824 | { | |
e48edee2 MF |
825 | u32 left_range; |
826 | ||
827 | left_range = le32_to_cpu(left->e_cpos) + | |
828 | le16_to_cpu(left->e_leaf_clusters); | |
829 | ||
830 | return (left_range == le32_to_cpu(right->e_cpos)); | |
dcd0538f MF |
831 | } |
832 | ||
833 | static enum ocfs2_contig_type | |
853a3a14 TM |
834 | ocfs2_extent_rec_contig(struct super_block *sb, |
835 | struct ocfs2_extent_rec *ext, | |
836 | struct ocfs2_extent_rec *insert_rec) | |
dcd0538f MF |
837 | { |
838 | u64 blkno = le64_to_cpu(insert_rec->e_blkno); | |
839 | ||
328d5752 MF |
840 | /* |
841 | * Refuse to coalesce extent records with different flag | |
842 | * fields - we don't want to mix unwritten extents with user | |
843 | * data. | |
844 | */ | |
845 | if (ext->e_flags != insert_rec->e_flags) | |
846 | return CONTIG_NONE; | |
847 | ||
dcd0538f | 848 | if (ocfs2_extents_adjacent(ext, insert_rec) && |
b4a17651 | 849 | ocfs2_block_extent_contig(sb, ext, blkno)) |
dcd0538f MF |
850 | return CONTIG_RIGHT; |
851 | ||
852 | blkno = le64_to_cpu(ext->e_blkno); | |
853 | if (ocfs2_extents_adjacent(insert_rec, ext) && | |
b4a17651 | 854 | ocfs2_block_extent_contig(sb, insert_rec, blkno)) |
dcd0538f MF |
855 | return CONTIG_LEFT; |
856 | ||
857 | return CONTIG_NONE; | |
858 | } | |
859 | ||
860 | /* | |
861 | * NOTE: We can have pretty much any combination of contiguousness and | |
862 | * appending. | |
863 | * | |
864 | * The usefulness of APPEND_TAIL is more in that it lets us know that | |
865 | * we'll have to update the path to that leaf. | |
866 | */ | |
867 | enum ocfs2_append_type { | |
868 | APPEND_NONE = 0, | |
869 | APPEND_TAIL, | |
870 | }; | |
871 | ||
328d5752 MF |
872 | enum ocfs2_split_type { |
873 | SPLIT_NONE = 0, | |
874 | SPLIT_LEFT, | |
875 | SPLIT_RIGHT, | |
876 | }; | |
877 | ||
dcd0538f | 878 | struct ocfs2_insert_type { |
328d5752 | 879 | enum ocfs2_split_type ins_split; |
dcd0538f MF |
880 | enum ocfs2_append_type ins_appending; |
881 | enum ocfs2_contig_type ins_contig; | |
882 | int ins_contig_index; | |
dcd0538f MF |
883 | int ins_tree_depth; |
884 | }; | |
885 | ||
328d5752 MF |
886 | struct ocfs2_merge_ctxt { |
887 | enum ocfs2_contig_type c_contig_type; | |
888 | int c_has_empty_extent; | |
889 | int c_split_covers_rec; | |
328d5752 MF |
890 | }; |
891 | ||
5e96581a JB |
892 | static int ocfs2_validate_extent_block(struct super_block *sb, |
893 | struct buffer_head *bh) | |
894 | { | |
d6b32bbb | 895 | int rc; |
5e96581a JB |
896 | struct ocfs2_extent_block *eb = |
897 | (struct ocfs2_extent_block *)bh->b_data; | |
898 | ||
a09d09b8 | 899 | trace_ocfs2_validate_extent_block((unsigned long long)bh->b_blocknr); |
970e4936 | 900 | |
d6b32bbb JB |
901 | BUG_ON(!buffer_uptodate(bh)); |
902 | ||
903 | /* | |
904 | * If the ecc fails, we return the error but otherwise | |
905 | * leave the filesystem running. We know any error is | |
906 | * local to this block. | |
907 | */ | |
908 | rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &eb->h_check); | |
13723d00 JB |
909 | if (rc) { |
910 | mlog(ML_ERROR, "Checksum failed for extent block %llu\n", | |
911 | (unsigned long long)bh->b_blocknr); | |
d6b32bbb | 912 | return rc; |
13723d00 | 913 | } |
d6b32bbb JB |
914 | |
915 | /* | |
916 | * Errors after here are fatal. | |
917 | */ | |
918 | ||
5e96581a | 919 | if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) { |
17a5b9ab | 920 | rc = ocfs2_error(sb, |
7ecef14a JP |
921 | "Extent block #%llu has bad signature %.*s\n", |
922 | (unsigned long long)bh->b_blocknr, 7, | |
923 | eb->h_signature); | |
17a5b9ab | 924 | goto bail; |
5e96581a JB |
925 | } |
926 | ||
927 | if (le64_to_cpu(eb->h_blkno) != bh->b_blocknr) { | |
17a5b9ab | 928 | rc = ocfs2_error(sb, |
7ecef14a JP |
929 | "Extent block #%llu has an invalid h_blkno of %llu\n", |
930 | (unsigned long long)bh->b_blocknr, | |
931 | (unsigned long long)le64_to_cpu(eb->h_blkno)); | |
17a5b9ab | 932 | goto bail; |
5e96581a JB |
933 | } |
934 | ||
229ba1f8 | 935 | if (le32_to_cpu(eb->h_fs_generation) != OCFS2_SB(sb)->fs_generation) |
17a5b9ab | 936 | rc = ocfs2_error(sb, |
7ecef14a JP |
937 | "Extent block #%llu has an invalid h_fs_generation of #%u\n", |
938 | (unsigned long long)bh->b_blocknr, | |
939 | le32_to_cpu(eb->h_fs_generation)); | |
17a5b9ab GR |
940 | bail: |
941 | return rc; | |
5e96581a JB |
942 | } |
943 | ||
3d03a305 | 944 | int ocfs2_read_extent_block(struct ocfs2_caching_info *ci, u64 eb_blkno, |
5e96581a JB |
945 | struct buffer_head **bh) |
946 | { | |
947 | int rc; | |
948 | struct buffer_head *tmp = *bh; | |
949 | ||
3d03a305 | 950 | rc = ocfs2_read_block(ci, eb_blkno, &tmp, |
970e4936 | 951 | ocfs2_validate_extent_block); |
5e96581a JB |
952 | |
953 | /* If ocfs2_read_block() got us a new bh, pass it up. */ | |
970e4936 | 954 | if (!rc && !*bh) |
5e96581a JB |
955 | *bh = tmp; |
956 | ||
5e96581a JB |
957 | return rc; |
958 | } | |
959 | ||
960 | ||
ccd979bd MF |
961 | /* |
962 | * How many free extents have we got before we need more meta data? | |
963 | */ | |
964f14a0 | 964 | int ocfs2_num_free_extents(struct ocfs2_extent_tree *et) |
ccd979bd MF |
965 | { |
966 | int retval; | |
e7d4cb6b | 967 | struct ocfs2_extent_list *el = NULL; |
ccd979bd MF |
968 | struct ocfs2_extent_block *eb; |
969 | struct buffer_head *eb_bh = NULL; | |
e7d4cb6b | 970 | u64 last_eb_blk = 0; |
ccd979bd | 971 | |
f99b9b7c JB |
972 | el = et->et_root_el; |
973 | last_eb_blk = ocfs2_et_get_last_eb_blk(et); | |
ccd979bd | 974 | |
e7d4cb6b | 975 | if (last_eb_blk) { |
3d03a305 JB |
976 | retval = ocfs2_read_extent_block(et->et_ci, last_eb_blk, |
977 | &eb_bh); | |
ccd979bd MF |
978 | if (retval < 0) { |
979 | mlog_errno(retval); | |
980 | goto bail; | |
981 | } | |
982 | eb = (struct ocfs2_extent_block *) eb_bh->b_data; | |
983 | el = &eb->h_list; | |
e7d4cb6b | 984 | } |
ccd979bd MF |
985 | |
986 | BUG_ON(el->l_tree_depth != 0); | |
987 | ||
988 | retval = le16_to_cpu(el->l_count) - le16_to_cpu(el->l_next_free_rec); | |
989 | bail: | |
a81cb88b | 990 | brelse(eb_bh); |
ccd979bd | 991 | |
a09d09b8 | 992 | trace_ocfs2_num_free_extents(retval); |
ccd979bd MF |
993 | return retval; |
994 | } | |
995 | ||
996 | /* expects array to already be allocated | |
997 | * | |
998 | * sets h_signature, h_blkno, h_suballoc_bit, h_suballoc_slot, and | |
999 | * l_count for you | |
1000 | */ | |
42a5a7a9 JB |
1001 | static int ocfs2_create_new_meta_bhs(handle_t *handle, |
1002 | struct ocfs2_extent_tree *et, | |
ccd979bd MF |
1003 | int wanted, |
1004 | struct ocfs2_alloc_context *meta_ac, | |
1005 | struct buffer_head *bhs[]) | |
1006 | { | |
1007 | int count, status, i; | |
1008 | u16 suballoc_bit_start; | |
1009 | u32 num_got; | |
2b6cb576 | 1010 | u64 suballoc_loc, first_blkno; |
42a5a7a9 JB |
1011 | struct ocfs2_super *osb = |
1012 | OCFS2_SB(ocfs2_metadata_cache_get_super(et->et_ci)); | |
ccd979bd MF |
1013 | struct ocfs2_extent_block *eb; |
1014 | ||
ccd979bd MF |
1015 | count = 0; |
1016 | while (count < wanted) { | |
1ed9b777 | 1017 | status = ocfs2_claim_metadata(handle, |
ccd979bd MF |
1018 | meta_ac, |
1019 | wanted - count, | |
2b6cb576 | 1020 | &suballoc_loc, |
ccd979bd MF |
1021 | &suballoc_bit_start, |
1022 | &num_got, | |
1023 | &first_blkno); | |
1024 | if (status < 0) { | |
1025 | mlog_errno(status); | |
1026 | goto bail; | |
1027 | } | |
1028 | ||
1029 | for(i = count; i < (num_got + count); i++) { | |
1030 | bhs[i] = sb_getblk(osb->sb, first_blkno); | |
1031 | if (bhs[i] == NULL) { | |
7391a294 | 1032 | status = -ENOMEM; |
ccd979bd MF |
1033 | mlog_errno(status); |
1034 | goto bail; | |
1035 | } | |
42a5a7a9 | 1036 | ocfs2_set_new_buffer_uptodate(et->et_ci, bhs[i]); |
ccd979bd | 1037 | |
42a5a7a9 JB |
1038 | status = ocfs2_journal_access_eb(handle, et->et_ci, |
1039 | bhs[i], | |
13723d00 | 1040 | OCFS2_JOURNAL_ACCESS_CREATE); |
ccd979bd MF |
1041 | if (status < 0) { |
1042 | mlog_errno(status); | |
1043 | goto bail; | |
1044 | } | |
1045 | ||
1046 | memset(bhs[i]->b_data, 0, osb->sb->s_blocksize); | |
1047 | eb = (struct ocfs2_extent_block *) bhs[i]->b_data; | |
1048 | /* Ok, setup the minimal stuff here. */ | |
1049 | strcpy(eb->h_signature, OCFS2_EXTENT_BLOCK_SIGNATURE); | |
1050 | eb->h_blkno = cpu_to_le64(first_blkno); | |
1051 | eb->h_fs_generation = cpu_to_le32(osb->fs_generation); | |
b89c5428 TY |
1052 | eb->h_suballoc_slot = |
1053 | cpu_to_le16(meta_ac->ac_alloc_slot); | |
2b6cb576 | 1054 | eb->h_suballoc_loc = cpu_to_le64(suballoc_loc); |
ccd979bd MF |
1055 | eb->h_suballoc_bit = cpu_to_le16(suballoc_bit_start); |
1056 | eb->h_list.l_count = | |
1057 | cpu_to_le16(ocfs2_extent_recs_per_eb(osb->sb)); | |
1058 | ||
1059 | suballoc_bit_start++; | |
1060 | first_blkno++; | |
1061 | ||
1062 | /* We'll also be dirtied by the caller, so | |
1063 | * this isn't absolutely necessary. */ | |
ec20cec7 | 1064 | ocfs2_journal_dirty(handle, bhs[i]); |
ccd979bd MF |
1065 | } |
1066 | ||
1067 | count += num_got; | |
1068 | } | |
1069 | ||
1070 | status = 0; | |
1071 | bail: | |
1072 | if (status < 0) { | |
1073 | for(i = 0; i < wanted; i++) { | |
a81cb88b | 1074 | brelse(bhs[i]); |
ccd979bd MF |
1075 | bhs[i] = NULL; |
1076 | } | |
c1e8d35e | 1077 | mlog_errno(status); |
ccd979bd | 1078 | } |
ccd979bd MF |
1079 | return status; |
1080 | } | |
1081 | ||
dcd0538f MF |
1082 | /* |
1083 | * Helper function for ocfs2_add_branch() and ocfs2_shift_tree_depth(). | |
1084 | * | |
1085 | * Returns the sum of the rightmost extent rec logical offset and | |
1086 | * cluster count. | |
1087 | * | |
1088 | * ocfs2_add_branch() uses this to determine what logical cluster | |
1089 | * value should be populated into the leftmost new branch records. | |
1090 | * | |
1091 | * ocfs2_shift_tree_depth() uses this to determine the # clusters | |
1092 | * value for the new topmost tree record. | |
1093 | */ | |
1094 | static inline u32 ocfs2_sum_rightmost_rec(struct ocfs2_extent_list *el) | |
1095 | { | |
1096 | int i; | |
1097 | ||
1098 | i = le16_to_cpu(el->l_next_free_rec) - 1; | |
1099 | ||
1100 | return le32_to_cpu(el->l_recs[i].e_cpos) + | |
e48edee2 | 1101 | ocfs2_rec_clusters(el, &el->l_recs[i]); |
dcd0538f MF |
1102 | } |
1103 | ||
6b791bcc TM |
1104 | /* |
1105 | * Change range of the branches in the right most path according to the leaf | |
1106 | * extent block's rightmost record. | |
1107 | */ | |
1108 | static int ocfs2_adjust_rightmost_branch(handle_t *handle, | |
6b791bcc TM |
1109 | struct ocfs2_extent_tree *et) |
1110 | { | |
1111 | int status; | |
1112 | struct ocfs2_path *path = NULL; | |
1113 | struct ocfs2_extent_list *el; | |
1114 | struct ocfs2_extent_rec *rec; | |
1115 | ||
1116 | path = ocfs2_new_path_from_et(et); | |
1117 | if (!path) { | |
1118 | status = -ENOMEM; | |
1119 | return status; | |
1120 | } | |
1121 | ||
facdb77f | 1122 | status = ocfs2_find_path(et->et_ci, path, UINT_MAX); |
6b791bcc TM |
1123 | if (status < 0) { |
1124 | mlog_errno(status); | |
1125 | goto out; | |
1126 | } | |
1127 | ||
c901fb00 | 1128 | status = ocfs2_extend_trans(handle, path_num_items(path)); |
6b791bcc TM |
1129 | if (status < 0) { |
1130 | mlog_errno(status); | |
1131 | goto out; | |
1132 | } | |
1133 | ||
d401dc12 | 1134 | status = ocfs2_journal_access_path(et->et_ci, handle, path); |
6b791bcc TM |
1135 | if (status < 0) { |
1136 | mlog_errno(status); | |
1137 | goto out; | |
1138 | } | |
1139 | ||
1140 | el = path_leaf_el(path); | |
3a251f04 | 1141 | rec = &el->l_recs[le16_to_cpu(el->l_next_free_rec) - 1]; |
6b791bcc | 1142 | |
d401dc12 | 1143 | ocfs2_adjust_rightmost_records(handle, et, path, rec); |
6b791bcc TM |
1144 | |
1145 | out: | |
1146 | ocfs2_free_path(path); | |
1147 | return status; | |
1148 | } | |
1149 | ||
ccd979bd MF |
1150 | /* |
1151 | * Add an entire tree branch to our inode. eb_bh is the extent block | |
d401dc12 | 1152 | * to start at, if we don't want to start the branch at the root |
ccd979bd MF |
1153 | * structure. |
1154 | * | |
1155 | * last_eb_bh is required as we have to update it's next_leaf pointer | |
1156 | * for the new last extent block. | |
1157 | * | |
1158 | * the new branch will be 'empty' in the sense that every block will | |
e48edee2 | 1159 | * contain a single record with cluster count == 0. |
ccd979bd | 1160 | */ |
d401dc12 | 1161 | static int ocfs2_add_branch(handle_t *handle, |
e7d4cb6b | 1162 | struct ocfs2_extent_tree *et, |
ccd979bd | 1163 | struct buffer_head *eb_bh, |
328d5752 | 1164 | struct buffer_head **last_eb_bh, |
ccd979bd MF |
1165 | struct ocfs2_alloc_context *meta_ac) |
1166 | { | |
71a36944 | 1167 | int status, new_blocks, i, block_given = 0; |
ccd979bd MF |
1168 | u64 next_blkno, new_last_eb_blk; |
1169 | struct buffer_head *bh; | |
1170 | struct buffer_head **new_eb_bhs = NULL; | |
ccd979bd MF |
1171 | struct ocfs2_extent_block *eb; |
1172 | struct ocfs2_extent_list *eb_el; | |
1173 | struct ocfs2_extent_list *el; | |
6b791bcc | 1174 | u32 new_cpos, root_end; |
ccd979bd | 1175 | |
328d5752 | 1176 | BUG_ON(!last_eb_bh || !*last_eb_bh); |
ccd979bd | 1177 | |
ccd979bd MF |
1178 | if (eb_bh) { |
1179 | eb = (struct ocfs2_extent_block *) eb_bh->b_data; | |
1180 | el = &eb->h_list; | |
1181 | } else | |
ce1d9ea6 | 1182 | el = et->et_root_el; |
ccd979bd MF |
1183 | |
1184 | /* we never add a branch to a leaf. */ | |
1185 | BUG_ON(!el->l_tree_depth); | |
1186 | ||
1187 | new_blocks = le16_to_cpu(el->l_tree_depth); | |
1188 | ||
6b791bcc TM |
1189 | eb = (struct ocfs2_extent_block *)(*last_eb_bh)->b_data; |
1190 | new_cpos = ocfs2_sum_rightmost_rec(&eb->h_list); | |
1191 | root_end = ocfs2_sum_rightmost_rec(et->et_root_el); | |
1192 | ||
1193 | /* | |
1194 | * If there is a gap before the root end and the real end | |
1195 | * of the righmost leaf block, we need to remove the gap | |
1196 | * between new_cpos and root_end first so that the tree | |
1197 | * is consistent after we add a new branch(it will start | |
1198 | * from new_cpos). | |
1199 | */ | |
1200 | if (root_end > new_cpos) { | |
a09d09b8 TM |
1201 | trace_ocfs2_adjust_rightmost_branch( |
1202 | (unsigned long long) | |
1203 | ocfs2_metadata_cache_owner(et->et_ci), | |
1204 | root_end, new_cpos); | |
1205 | ||
d401dc12 | 1206 | status = ocfs2_adjust_rightmost_branch(handle, et); |
6b791bcc TM |
1207 | if (status) { |
1208 | mlog_errno(status); | |
1209 | goto bail; | |
1210 | } | |
1211 | } | |
1212 | ||
ccd979bd MF |
1213 | /* allocate the number of new eb blocks we need */ |
1214 | new_eb_bhs = kcalloc(new_blocks, sizeof(struct buffer_head *), | |
1215 | GFP_KERNEL); | |
1216 | if (!new_eb_bhs) { | |
1217 | status = -ENOMEM; | |
1218 | mlog_errno(status); | |
1219 | goto bail; | |
1220 | } | |
1221 | ||
71a36944 CG |
1222 | /* Firstyly, try to reuse dealloc since we have already estimated how |
1223 | * many extent blocks we may use. | |
1224 | */ | |
1225 | if (!ocfs2_is_dealloc_empty(et)) { | |
1226 | status = ocfs2_reuse_blk_from_dealloc(handle, et, | |
1227 | new_eb_bhs, new_blocks, | |
1228 | &block_given); | |
1229 | if (status < 0) { | |
1230 | mlog_errno(status); | |
1231 | goto bail; | |
1232 | } | |
1233 | } | |
1234 | ||
1235 | BUG_ON(block_given > new_blocks); | |
1236 | ||
1237 | if (block_given < new_blocks) { | |
1238 | BUG_ON(!meta_ac); | |
1239 | status = ocfs2_create_new_meta_bhs(handle, et, | |
1240 | new_blocks - block_given, | |
1241 | meta_ac, | |
1242 | &new_eb_bhs[block_given]); | |
1243 | if (status < 0) { | |
1244 | mlog_errno(status); | |
1245 | goto bail; | |
1246 | } | |
ccd979bd MF |
1247 | } |
1248 | ||
1249 | /* Note: new_eb_bhs[new_blocks - 1] is the guy which will be | |
1250 | * linked with the rest of the tree. | |
1251 | * conversly, new_eb_bhs[0] is the new bottommost leaf. | |
1252 | * | |
1253 | * when we leave the loop, new_last_eb_blk will point to the | |
1254 | * newest leaf, and next_blkno will point to the topmost extent | |
1255 | * block. */ | |
1256 | next_blkno = new_last_eb_blk = 0; | |
1257 | for(i = 0; i < new_blocks; i++) { | |
1258 | bh = new_eb_bhs[i]; | |
1259 | eb = (struct ocfs2_extent_block *) bh->b_data; | |
5e96581a JB |
1260 | /* ocfs2_create_new_meta_bhs() should create it right! */ |
1261 | BUG_ON(!OCFS2_IS_VALID_EXTENT_BLOCK(eb)); | |
ccd979bd MF |
1262 | eb_el = &eb->h_list; |
1263 | ||
d401dc12 | 1264 | status = ocfs2_journal_access_eb(handle, et->et_ci, bh, |
13723d00 | 1265 | OCFS2_JOURNAL_ACCESS_CREATE); |
ccd979bd MF |
1266 | if (status < 0) { |
1267 | mlog_errno(status); | |
1268 | goto bail; | |
1269 | } | |
1270 | ||
1271 | eb->h_next_leaf_blk = 0; | |
1272 | eb_el->l_tree_depth = cpu_to_le16(i); | |
1273 | eb_el->l_next_free_rec = cpu_to_le16(1); | |
dcd0538f MF |
1274 | /* |
1275 | * This actually counts as an empty extent as | |
1276 | * c_clusters == 0 | |
1277 | */ | |
1278 | eb_el->l_recs[0].e_cpos = cpu_to_le32(new_cpos); | |
ccd979bd | 1279 | eb_el->l_recs[0].e_blkno = cpu_to_le64(next_blkno); |
e48edee2 MF |
1280 | /* |
1281 | * eb_el isn't always an interior node, but even leaf | |
1282 | * nodes want a zero'd flags and reserved field so | |
1283 | * this gets the whole 32 bits regardless of use. | |
1284 | */ | |
1285 | eb_el->l_recs[0].e_int_clusters = cpu_to_le32(0); | |
ccd979bd MF |
1286 | if (!eb_el->l_tree_depth) |
1287 | new_last_eb_blk = le64_to_cpu(eb->h_blkno); | |
1288 | ||
ec20cec7 | 1289 | ocfs2_journal_dirty(handle, bh); |
ccd979bd MF |
1290 | next_blkno = le64_to_cpu(eb->h_blkno); |
1291 | } | |
1292 | ||
1293 | /* This is a bit hairy. We want to update up to three blocks | |
1294 | * here without leaving any of them in an inconsistent state | |
1295 | * in case of error. We don't have to worry about | |
1296 | * journal_dirty erroring as it won't unless we've aborted the | |
1297 | * handle (in which case we would never be here) so reserving | |
1298 | * the write with journal_access is all we need to do. */ | |
d401dc12 | 1299 | status = ocfs2_journal_access_eb(handle, et->et_ci, *last_eb_bh, |
13723d00 | 1300 | OCFS2_JOURNAL_ACCESS_WRITE); |
ccd979bd MF |
1301 | if (status < 0) { |
1302 | mlog_errno(status); | |
1303 | goto bail; | |
1304 | } | |
d9a0a1f8 | 1305 | status = ocfs2_et_root_journal_access(handle, et, |
13723d00 | 1306 | OCFS2_JOURNAL_ACCESS_WRITE); |
ccd979bd MF |
1307 | if (status < 0) { |
1308 | mlog_errno(status); | |
1309 | goto bail; | |
1310 | } | |
1311 | if (eb_bh) { | |
d401dc12 | 1312 | status = ocfs2_journal_access_eb(handle, et->et_ci, eb_bh, |
13723d00 | 1313 | OCFS2_JOURNAL_ACCESS_WRITE); |
ccd979bd MF |
1314 | if (status < 0) { |
1315 | mlog_errno(status); | |
1316 | goto bail; | |
1317 | } | |
1318 | } | |
1319 | ||
1320 | /* Link the new branch into the rest of the tree (el will | |
e7d4cb6b | 1321 | * either be on the root_bh, or the extent block passed in. */ |
ccd979bd MF |
1322 | i = le16_to_cpu(el->l_next_free_rec); |
1323 | el->l_recs[i].e_blkno = cpu_to_le64(next_blkno); | |
dcd0538f | 1324 | el->l_recs[i].e_cpos = cpu_to_le32(new_cpos); |
e48edee2 | 1325 | el->l_recs[i].e_int_clusters = 0; |
ccd979bd MF |
1326 | le16_add_cpu(&el->l_next_free_rec, 1); |
1327 | ||
1328 | /* fe needs a new last extent block pointer, as does the | |
1329 | * next_leaf on the previously last-extent-block. */ | |
35dc0aa3 | 1330 | ocfs2_et_set_last_eb_blk(et, new_last_eb_blk); |
ccd979bd | 1331 | |
328d5752 | 1332 | eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data; |
ccd979bd MF |
1333 | eb->h_next_leaf_blk = cpu_to_le64(new_last_eb_blk); |
1334 | ||
ec20cec7 JB |
1335 | ocfs2_journal_dirty(handle, *last_eb_bh); |
1336 | ocfs2_journal_dirty(handle, et->et_root_bh); | |
1337 | if (eb_bh) | |
1338 | ocfs2_journal_dirty(handle, eb_bh); | |
ccd979bd | 1339 | |
328d5752 MF |
1340 | /* |
1341 | * Some callers want to track the rightmost leaf so pass it | |
1342 | * back here. | |
1343 | */ | |
1344 | brelse(*last_eb_bh); | |
1345 | get_bh(new_eb_bhs[0]); | |
1346 | *last_eb_bh = new_eb_bhs[0]; | |
1347 | ||
ccd979bd MF |
1348 | status = 0; |
1349 | bail: | |
1350 | if (new_eb_bhs) { | |
1351 | for (i = 0; i < new_blocks; i++) | |
a81cb88b | 1352 | brelse(new_eb_bhs[i]); |
ccd979bd MF |
1353 | kfree(new_eb_bhs); |
1354 | } | |
1355 | ||
ccd979bd MF |
1356 | return status; |
1357 | } | |
1358 | ||
1359 | /* | |
1360 | * adds another level to the allocation tree. | |
1361 | * returns back the new extent block so you can add a branch to it | |
1362 | * after this call. | |
1363 | */ | |
d401dc12 | 1364 | static int ocfs2_shift_tree_depth(handle_t *handle, |
e7d4cb6b | 1365 | struct ocfs2_extent_tree *et, |
ccd979bd MF |
1366 | struct ocfs2_alloc_context *meta_ac, |
1367 | struct buffer_head **ret_new_eb_bh) | |
1368 | { | |
71a36944 | 1369 | int status, i, block_given = 0; |
dcd0538f | 1370 | u32 new_clusters; |
ccd979bd | 1371 | struct buffer_head *new_eb_bh = NULL; |
ccd979bd | 1372 | struct ocfs2_extent_block *eb; |
e7d4cb6b | 1373 | struct ocfs2_extent_list *root_el; |
ccd979bd MF |
1374 | struct ocfs2_extent_list *eb_el; |
1375 | ||
71a36944 CG |
1376 | if (!ocfs2_is_dealloc_empty(et)) { |
1377 | status = ocfs2_reuse_blk_from_dealloc(handle, et, | |
1378 | &new_eb_bh, 1, | |
1379 | &block_given); | |
1380 | } else if (meta_ac) { | |
1381 | status = ocfs2_create_new_meta_bhs(handle, et, 1, meta_ac, | |
1382 | &new_eb_bh); | |
1383 | ||
1384 | } else { | |
1385 | BUG(); | |
1386 | } | |
1387 | ||
ccd979bd MF |
1388 | if (status < 0) { |
1389 | mlog_errno(status); | |
1390 | goto bail; | |
1391 | } | |
1392 | ||
1393 | eb = (struct ocfs2_extent_block *) new_eb_bh->b_data; | |
5e96581a JB |
1394 | /* ocfs2_create_new_meta_bhs() should create it right! */ |
1395 | BUG_ON(!OCFS2_IS_VALID_EXTENT_BLOCK(eb)); | |
ccd979bd MF |
1396 | |
1397 | eb_el = &eb->h_list; | |
ce1d9ea6 | 1398 | root_el = et->et_root_el; |
ccd979bd | 1399 | |
d401dc12 | 1400 | status = ocfs2_journal_access_eb(handle, et->et_ci, new_eb_bh, |
13723d00 | 1401 | OCFS2_JOURNAL_ACCESS_CREATE); |
ccd979bd MF |
1402 | if (status < 0) { |
1403 | mlog_errno(status); | |
1404 | goto bail; | |
1405 | } | |
1406 | ||
e7d4cb6b TM |
1407 | /* copy the root extent list data into the new extent block */ |
1408 | eb_el->l_tree_depth = root_el->l_tree_depth; | |
1409 | eb_el->l_next_free_rec = root_el->l_next_free_rec; | |
1410 | for (i = 0; i < le16_to_cpu(root_el->l_next_free_rec); i++) | |
1411 | eb_el->l_recs[i] = root_el->l_recs[i]; | |
ccd979bd | 1412 | |
ec20cec7 | 1413 | ocfs2_journal_dirty(handle, new_eb_bh); |
ccd979bd | 1414 | |
d9a0a1f8 | 1415 | status = ocfs2_et_root_journal_access(handle, et, |
13723d00 | 1416 | OCFS2_JOURNAL_ACCESS_WRITE); |
ccd979bd MF |
1417 | if (status < 0) { |
1418 | mlog_errno(status); | |
1419 | goto bail; | |
1420 | } | |
1421 | ||
dcd0538f MF |
1422 | new_clusters = ocfs2_sum_rightmost_rec(eb_el); |
1423 | ||
e7d4cb6b TM |
1424 | /* update root_bh now */ |
1425 | le16_add_cpu(&root_el->l_tree_depth, 1); | |
1426 | root_el->l_recs[0].e_cpos = 0; | |
1427 | root_el->l_recs[0].e_blkno = eb->h_blkno; | |
1428 | root_el->l_recs[0].e_int_clusters = cpu_to_le32(new_clusters); | |
1429 | for (i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++) | |
1430 | memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec)); | |
1431 | root_el->l_next_free_rec = cpu_to_le16(1); | |
ccd979bd MF |
1432 | |
1433 | /* If this is our 1st tree depth shift, then last_eb_blk | |
1434 | * becomes the allocated extent block */ | |
e7d4cb6b | 1435 | if (root_el->l_tree_depth == cpu_to_le16(1)) |
35dc0aa3 | 1436 | ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno)); |
ccd979bd | 1437 | |
ec20cec7 | 1438 | ocfs2_journal_dirty(handle, et->et_root_bh); |
ccd979bd MF |
1439 | |
1440 | *ret_new_eb_bh = new_eb_bh; | |
1441 | new_eb_bh = NULL; | |
1442 | status = 0; | |
1443 | bail: | |
a81cb88b | 1444 | brelse(new_eb_bh); |
ccd979bd | 1445 | |
ccd979bd MF |
1446 | return status; |
1447 | } | |
1448 | ||
ccd979bd MF |
1449 | /* |
1450 | * Should only be called when there is no space left in any of the | |
1451 | * leaf nodes. What we want to do is find the lowest tree depth | |
1452 | * non-leaf extent block with room for new records. There are three | |
1453 | * valid results of this search: | |
1454 | * | |
1455 | * 1) a lowest extent block is found, then we pass it back in | |
1456 | * *lowest_eb_bh and return '0' | |
1457 | * | |
e7d4cb6b | 1458 | * 2) the search fails to find anything, but the root_el has room. We |
ccd979bd MF |
1459 | * pass NULL back in *lowest_eb_bh, but still return '0' |
1460 | * | |
e7d4cb6b | 1461 | * 3) the search fails to find anything AND the root_el is full, in |
ccd979bd MF |
1462 | * which case we return > 0 |
1463 | * | |
1464 | * return status < 0 indicates an error. | |
1465 | */ | |
d401dc12 | 1466 | static int ocfs2_find_branch_target(struct ocfs2_extent_tree *et, |
ccd979bd MF |
1467 | struct buffer_head **target_bh) |
1468 | { | |
1469 | int status = 0, i; | |
1470 | u64 blkno; | |
ccd979bd MF |
1471 | struct ocfs2_extent_block *eb; |
1472 | struct ocfs2_extent_list *el; | |
1473 | struct buffer_head *bh = NULL; | |
1474 | struct buffer_head *lowest_bh = NULL; | |
1475 | ||
ccd979bd MF |
1476 | *target_bh = NULL; |
1477 | ||
ce1d9ea6 | 1478 | el = et->et_root_el; |
ccd979bd MF |
1479 | |
1480 | while(le16_to_cpu(el->l_tree_depth) > 1) { | |
1481 | if (le16_to_cpu(el->l_next_free_rec) == 0) { | |
93f5920d JP |
1482 | status = ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci), |
1483 | "Owner %llu has empty extent list (next_free_rec == 0)\n", | |
1484 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci)); | |
ccd979bd MF |
1485 | goto bail; |
1486 | } | |
1487 | i = le16_to_cpu(el->l_next_free_rec) - 1; | |
1488 | blkno = le64_to_cpu(el->l_recs[i].e_blkno); | |
1489 | if (!blkno) { | |
93f5920d JP |
1490 | status = ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci), |
1491 | "Owner %llu has extent list where extent # %d has no physical block start\n", | |
1492 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), i); | |
ccd979bd MF |
1493 | goto bail; |
1494 | } | |
1495 | ||
a81cb88b MF |
1496 | brelse(bh); |
1497 | bh = NULL; | |
ccd979bd | 1498 | |
3d03a305 | 1499 | status = ocfs2_read_extent_block(et->et_ci, blkno, &bh); |
ccd979bd MF |
1500 | if (status < 0) { |
1501 | mlog_errno(status); | |
1502 | goto bail; | |
1503 | } | |
dcd0538f MF |
1504 | |
1505 | eb = (struct ocfs2_extent_block *) bh->b_data; | |
dcd0538f MF |
1506 | el = &eb->h_list; |
1507 | ||
1508 | if (le16_to_cpu(el->l_next_free_rec) < | |
1509 | le16_to_cpu(el->l_count)) { | |
a81cb88b | 1510 | brelse(lowest_bh); |
dcd0538f MF |
1511 | lowest_bh = bh; |
1512 | get_bh(lowest_bh); | |
1513 | } | |
1514 | } | |
1515 | ||
1516 | /* If we didn't find one and the fe doesn't have any room, | |
1517 | * then return '1' */ | |
ce1d9ea6 | 1518 | el = et->et_root_el; |
e7d4cb6b | 1519 | if (!lowest_bh && (el->l_next_free_rec == el->l_count)) |
dcd0538f MF |
1520 | status = 1; |
1521 | ||
1522 | *target_bh = lowest_bh; | |
1523 | bail: | |
a81cb88b | 1524 | brelse(bh); |
dcd0538f | 1525 | |
dcd0538f MF |
1526 | return status; |
1527 | } | |
1528 | ||
c3afcbb3 MF |
1529 | /* |
1530 | * Grow a b-tree so that it has more records. | |
1531 | * | |
1532 | * We might shift the tree depth in which case existing paths should | |
1533 | * be considered invalid. | |
1534 | * | |
1535 | * Tree depth after the grow is returned via *final_depth. | |
328d5752 MF |
1536 | * |
1537 | * *last_eb_bh will be updated by ocfs2_add_branch(). | |
c3afcbb3 | 1538 | */ |
d401dc12 JB |
1539 | static int ocfs2_grow_tree(handle_t *handle, struct ocfs2_extent_tree *et, |
1540 | int *final_depth, struct buffer_head **last_eb_bh, | |
c3afcbb3 MF |
1541 | struct ocfs2_alloc_context *meta_ac) |
1542 | { | |
1543 | int ret, shift; | |
ce1d9ea6 | 1544 | struct ocfs2_extent_list *el = et->et_root_el; |
e7d4cb6b | 1545 | int depth = le16_to_cpu(el->l_tree_depth); |
c3afcbb3 MF |
1546 | struct buffer_head *bh = NULL; |
1547 | ||
71a36944 | 1548 | BUG_ON(meta_ac == NULL && ocfs2_is_dealloc_empty(et)); |
c3afcbb3 | 1549 | |
d401dc12 | 1550 | shift = ocfs2_find_branch_target(et, &bh); |
c3afcbb3 MF |
1551 | if (shift < 0) { |
1552 | ret = shift; | |
1553 | mlog_errno(ret); | |
1554 | goto out; | |
1555 | } | |
1556 | ||
1557 | /* We traveled all the way to the bottom of the allocation tree | |
1558 | * and didn't find room for any more extents - we need to add | |
1559 | * another tree level */ | |
1560 | if (shift) { | |
1561 | BUG_ON(bh); | |
a09d09b8 TM |
1562 | trace_ocfs2_grow_tree( |
1563 | (unsigned long long) | |
1564 | ocfs2_metadata_cache_owner(et->et_ci), | |
1565 | depth); | |
c3afcbb3 MF |
1566 | |
1567 | /* ocfs2_shift_tree_depth will return us a buffer with | |
1568 | * the new extent block (so we can pass that to | |
1569 | * ocfs2_add_branch). */ | |
d401dc12 | 1570 | ret = ocfs2_shift_tree_depth(handle, et, meta_ac, &bh); |
c3afcbb3 MF |
1571 | if (ret < 0) { |
1572 | mlog_errno(ret); | |
1573 | goto out; | |
1574 | } | |
1575 | depth++; | |
328d5752 MF |
1576 | if (depth == 1) { |
1577 | /* | |
1578 | * Special case: we have room now if we shifted from | |
1579 | * tree_depth 0, so no more work needs to be done. | |
1580 | * | |
1581 | * We won't be calling add_branch, so pass | |
1582 | * back *last_eb_bh as the new leaf. At depth | |
1583 | * zero, it should always be null so there's | |
1584 | * no reason to brelse. | |
1585 | */ | |
1586 | BUG_ON(*last_eb_bh); | |
1587 | get_bh(bh); | |
1588 | *last_eb_bh = bh; | |
c3afcbb3 | 1589 | goto out; |
328d5752 | 1590 | } |
c3afcbb3 MF |
1591 | } |
1592 | ||
1593 | /* call ocfs2_add_branch to add the final part of the tree with | |
1594 | * the new data. */ | |
d401dc12 | 1595 | ret = ocfs2_add_branch(handle, et, bh, last_eb_bh, |
c3afcbb3 | 1596 | meta_ac); |
229ba1f8 | 1597 | if (ret < 0) |
c3afcbb3 | 1598 | mlog_errno(ret); |
c3afcbb3 MF |
1599 | |
1600 | out: | |
1601 | if (final_depth) | |
1602 | *final_depth = depth; | |
1603 | brelse(bh); | |
1604 | return ret; | |
1605 | } | |
1606 | ||
dcd0538f MF |
1607 | /* |
1608 | * This function will discard the rightmost extent record. | |
1609 | */ | |
1610 | static void ocfs2_shift_records_right(struct ocfs2_extent_list *el) | |
1611 | { | |
1612 | int next_free = le16_to_cpu(el->l_next_free_rec); | |
1613 | int count = le16_to_cpu(el->l_count); | |
1614 | unsigned int num_bytes; | |
1615 | ||
1616 | BUG_ON(!next_free); | |
1617 | /* This will cause us to go off the end of our extent list. */ | |
1618 | BUG_ON(next_free >= count); | |
1619 | ||
1620 | num_bytes = sizeof(struct ocfs2_extent_rec) * next_free; | |
1621 | ||
1622 | memmove(&el->l_recs[1], &el->l_recs[0], num_bytes); | |
1623 | } | |
1624 | ||
1625 | static void ocfs2_rotate_leaf(struct ocfs2_extent_list *el, | |
1626 | struct ocfs2_extent_rec *insert_rec) | |
1627 | { | |
1628 | int i, insert_index, next_free, has_empty, num_bytes; | |
1629 | u32 insert_cpos = le32_to_cpu(insert_rec->e_cpos); | |
1630 | struct ocfs2_extent_rec *rec; | |
1631 | ||
1632 | next_free = le16_to_cpu(el->l_next_free_rec); | |
1633 | has_empty = ocfs2_is_empty_extent(&el->l_recs[0]); | |
1634 | ||
1635 | BUG_ON(!next_free); | |
1636 | ||
1637 | /* The tree code before us didn't allow enough room in the leaf. */ | |
b1f3550f | 1638 | BUG_ON(el->l_next_free_rec == el->l_count && !has_empty); |
dcd0538f MF |
1639 | |
1640 | /* | |
1641 | * The easiest way to approach this is to just remove the | |
1642 | * empty extent and temporarily decrement next_free. | |
1643 | */ | |
1644 | if (has_empty) { | |
1645 | /* | |
1646 | * If next_free was 1 (only an empty extent), this | |
1647 | * loop won't execute, which is fine. We still want | |
1648 | * the decrement above to happen. | |
1649 | */ | |
1650 | for(i = 0; i < (next_free - 1); i++) | |
1651 | el->l_recs[i] = el->l_recs[i+1]; | |
1652 | ||
1653 | next_free--; | |
1654 | } | |
1655 | ||
1656 | /* | |
1657 | * Figure out what the new record index should be. | |
1658 | */ | |
1659 | for(i = 0; i < next_free; i++) { | |
1660 | rec = &el->l_recs[i]; | |
1661 | ||
1662 | if (insert_cpos < le32_to_cpu(rec->e_cpos)) | |
1663 | break; | |
1664 | } | |
1665 | insert_index = i; | |
1666 | ||
a09d09b8 TM |
1667 | trace_ocfs2_rotate_leaf(insert_cpos, insert_index, |
1668 | has_empty, next_free, | |
1669 | le16_to_cpu(el->l_count)); | |
dcd0538f MF |
1670 | |
1671 | BUG_ON(insert_index < 0); | |
1672 | BUG_ON(insert_index >= le16_to_cpu(el->l_count)); | |
1673 | BUG_ON(insert_index > next_free); | |
1674 | ||
1675 | /* | |
1676 | * No need to memmove if we're just adding to the tail. | |
1677 | */ | |
1678 | if (insert_index != next_free) { | |
1679 | BUG_ON(next_free >= le16_to_cpu(el->l_count)); | |
1680 | ||
1681 | num_bytes = next_free - insert_index; | |
1682 | num_bytes *= sizeof(struct ocfs2_extent_rec); | |
1683 | memmove(&el->l_recs[insert_index + 1], | |
1684 | &el->l_recs[insert_index], | |
1685 | num_bytes); | |
1686 | } | |
1687 | ||
1688 | /* | |
1689 | * Either we had an empty extent, and need to re-increment or | |
1690 | * there was no empty extent on a non full rightmost leaf node, | |
1691 | * in which case we still need to increment. | |
1692 | */ | |
1693 | next_free++; | |
1694 | el->l_next_free_rec = cpu_to_le16(next_free); | |
1695 | /* | |
1696 | * Make sure none of the math above just messed up our tree. | |
1697 | */ | |
1698 | BUG_ON(le16_to_cpu(el->l_next_free_rec) > le16_to_cpu(el->l_count)); | |
1699 | ||
1700 | el->l_recs[insert_index] = *insert_rec; | |
1701 | ||
1702 | } | |
1703 | ||
328d5752 MF |
1704 | static void ocfs2_remove_empty_extent(struct ocfs2_extent_list *el) |
1705 | { | |
1706 | int size, num_recs = le16_to_cpu(el->l_next_free_rec); | |
1707 | ||
1708 | BUG_ON(num_recs == 0); | |
1709 | ||
1710 | if (ocfs2_is_empty_extent(&el->l_recs[0])) { | |
1711 | num_recs--; | |
1712 | size = num_recs * sizeof(struct ocfs2_extent_rec); | |
1713 | memmove(&el->l_recs[0], &el->l_recs[1], size); | |
1714 | memset(&el->l_recs[num_recs], 0, | |
1715 | sizeof(struct ocfs2_extent_rec)); | |
1716 | el->l_next_free_rec = cpu_to_le16(num_recs); | |
1717 | } | |
1718 | } | |
1719 | ||
dcd0538f MF |
1720 | /* |
1721 | * Create an empty extent record . | |
1722 | * | |
1723 | * l_next_free_rec may be updated. | |
1724 | * | |
1725 | * If an empty extent already exists do nothing. | |
1726 | */ | |
1727 | static void ocfs2_create_empty_extent(struct ocfs2_extent_list *el) | |
1728 | { | |
1729 | int next_free = le16_to_cpu(el->l_next_free_rec); | |
1730 | ||
e48edee2 MF |
1731 | BUG_ON(le16_to_cpu(el->l_tree_depth) != 0); |
1732 | ||
dcd0538f MF |
1733 | if (next_free == 0) |
1734 | goto set_and_inc; | |
1735 | ||
1736 | if (ocfs2_is_empty_extent(&el->l_recs[0])) | |
1737 | return; | |
1738 | ||
1739 | mlog_bug_on_msg(el->l_count == el->l_next_free_rec, | |
1740 | "Asked to create an empty extent in a full list:\n" | |
1741 | "count = %u, tree depth = %u", | |
1742 | le16_to_cpu(el->l_count), | |
1743 | le16_to_cpu(el->l_tree_depth)); | |
1744 | ||
1745 | ocfs2_shift_records_right(el); | |
1746 | ||
1747 | set_and_inc: | |
1748 | le16_add_cpu(&el->l_next_free_rec, 1); | |
1749 | memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec)); | |
1750 | } | |
1751 | ||
1752 | /* | |
1753 | * For a rotation which involves two leaf nodes, the "root node" is | |
1754 | * the lowest level tree node which contains a path to both leafs. This | |
1755 | * resulting set of information can be used to form a complete "subtree" | |
1756 | * | |
1757 | * This function is passed two full paths from the dinode down to a | |
1758 | * pair of adjacent leaves. It's task is to figure out which path | |
1759 | * index contains the subtree root - this can be the root index itself | |
1760 | * in a worst-case rotation. | |
1761 | * | |
1762 | * The array index of the subtree root is passed back. | |
1763 | */ | |
38a04e43 TM |
1764 | int ocfs2_find_subtree_root(struct ocfs2_extent_tree *et, |
1765 | struct ocfs2_path *left, | |
1766 | struct ocfs2_path *right) | |
dcd0538f MF |
1767 | { |
1768 | int i = 0; | |
1769 | ||
1770 | /* | |
1771 | * Check that the caller passed in two paths from the same tree. | |
1772 | */ | |
1773 | BUG_ON(path_root_bh(left) != path_root_bh(right)); | |
1774 | ||
1775 | do { | |
1776 | i++; | |
1777 | ||
1778 | /* | |
1779 | * The caller didn't pass two adjacent paths. | |
1780 | */ | |
1781 | mlog_bug_on_msg(i > left->p_tree_depth, | |
7dc02805 | 1782 | "Owner %llu, left depth %u, right depth %u\n" |
dcd0538f | 1783 | "left leaf blk %llu, right leaf blk %llu\n", |
7dc02805 JB |
1784 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), |
1785 | left->p_tree_depth, right->p_tree_depth, | |
dcd0538f MF |
1786 | (unsigned long long)path_leaf_bh(left)->b_blocknr, |
1787 | (unsigned long long)path_leaf_bh(right)->b_blocknr); | |
1788 | } while (left->p_node[i].bh->b_blocknr == | |
1789 | right->p_node[i].bh->b_blocknr); | |
1790 | ||
1791 | return i - 1; | |
1792 | } | |
1793 | ||
1794 | typedef void (path_insert_t)(void *, struct buffer_head *); | |
1795 | ||
1796 | /* | |
1797 | * Traverse a btree path in search of cpos, starting at root_el. | |
1798 | * | |
1799 | * This code can be called with a cpos larger than the tree, in which | |
1800 | * case it will return the rightmost path. | |
1801 | */ | |
facdb77f | 1802 | static int __ocfs2_find_path(struct ocfs2_caching_info *ci, |
dcd0538f MF |
1803 | struct ocfs2_extent_list *root_el, u32 cpos, |
1804 | path_insert_t *func, void *data) | |
1805 | { | |
1806 | int i, ret = 0; | |
1807 | u32 range; | |
1808 | u64 blkno; | |
1809 | struct buffer_head *bh = NULL; | |
1810 | struct ocfs2_extent_block *eb; | |
1811 | struct ocfs2_extent_list *el; | |
1812 | struct ocfs2_extent_rec *rec; | |
dcd0538f MF |
1813 | |
1814 | el = root_el; | |
1815 | while (el->l_tree_depth) { | |
1816 | if (le16_to_cpu(el->l_next_free_rec) == 0) { | |
facdb77f | 1817 | ocfs2_error(ocfs2_metadata_cache_get_super(ci), |
7ecef14a | 1818 | "Owner %llu has empty extent list at depth %u\n", |
facdb77f | 1819 | (unsigned long long)ocfs2_metadata_cache_owner(ci), |
dcd0538f MF |
1820 | le16_to_cpu(el->l_tree_depth)); |
1821 | ret = -EROFS; | |
1822 | goto out; | |
1823 | ||
1824 | } | |
1825 | ||
1826 | for(i = 0; i < le16_to_cpu(el->l_next_free_rec) - 1; i++) { | |
1827 | rec = &el->l_recs[i]; | |
1828 | ||
1829 | /* | |
1830 | * In the case that cpos is off the allocation | |
1831 | * tree, this should just wind up returning the | |
1832 | * rightmost record. | |
1833 | */ | |
1834 | range = le32_to_cpu(rec->e_cpos) + | |
e48edee2 | 1835 | ocfs2_rec_clusters(el, rec); |
dcd0538f MF |
1836 | if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range) |
1837 | break; | |
1838 | } | |
1839 | ||
1840 | blkno = le64_to_cpu(el->l_recs[i].e_blkno); | |
1841 | if (blkno == 0) { | |
facdb77f | 1842 | ocfs2_error(ocfs2_metadata_cache_get_super(ci), |
7ecef14a | 1843 | "Owner %llu has bad blkno in extent list at depth %u (index %d)\n", |
facdb77f | 1844 | (unsigned long long)ocfs2_metadata_cache_owner(ci), |
dcd0538f MF |
1845 | le16_to_cpu(el->l_tree_depth), i); |
1846 | ret = -EROFS; | |
1847 | goto out; | |
1848 | } | |
1849 | ||
1850 | brelse(bh); | |
1851 | bh = NULL; | |
facdb77f | 1852 | ret = ocfs2_read_extent_block(ci, blkno, &bh); |
dcd0538f MF |
1853 | if (ret) { |
1854 | mlog_errno(ret); | |
1855 | goto out; | |
1856 | } | |
1857 | ||
1858 | eb = (struct ocfs2_extent_block *) bh->b_data; | |
1859 | el = &eb->h_list; | |
dcd0538f MF |
1860 | |
1861 | if (le16_to_cpu(el->l_next_free_rec) > | |
1862 | le16_to_cpu(el->l_count)) { | |
facdb77f | 1863 | ocfs2_error(ocfs2_metadata_cache_get_super(ci), |
7ecef14a | 1864 | "Owner %llu has bad count in extent list at block %llu (next free=%u, count=%u)\n", |
facdb77f | 1865 | (unsigned long long)ocfs2_metadata_cache_owner(ci), |
dcd0538f MF |
1866 | (unsigned long long)bh->b_blocknr, |
1867 | le16_to_cpu(el->l_next_free_rec), | |
1868 | le16_to_cpu(el->l_count)); | |
1869 | ret = -EROFS; | |
1870 | goto out; | |
1871 | } | |
1872 | ||
1873 | if (func) | |
1874 | func(data, bh); | |
1875 | } | |
1876 | ||
1877 | out: | |
1878 | /* | |
1879 | * Catch any trailing bh that the loop didn't handle. | |
1880 | */ | |
1881 | brelse(bh); | |
1882 | ||
1883 | return ret; | |
1884 | } | |
1885 | ||
1886 | /* | |
1887 | * Given an initialized path (that is, it has a valid root extent | |
1888 | * list), this function will traverse the btree in search of the path | |
1889 | * which would contain cpos. | |
1890 | * | |
1891 | * The path traveled is recorded in the path structure. | |
1892 | * | |
1893 | * Note that this will not do any comparisons on leaf node extent | |
1894 | * records, so it will work fine in the case that we just added a tree | |
1895 | * branch. | |
1896 | */ | |
1897 | struct find_path_data { | |
1898 | int index; | |
1899 | struct ocfs2_path *path; | |
1900 | }; | |
1901 | static void find_path_ins(void *data, struct buffer_head *bh) | |
1902 | { | |
1903 | struct find_path_data *fp = data; | |
1904 | ||
1905 | get_bh(bh); | |
1906 | ocfs2_path_insert_eb(fp->path, fp->index, bh); | |
1907 | fp->index++; | |
1908 | } | |
e2e9f608 TM |
1909 | int ocfs2_find_path(struct ocfs2_caching_info *ci, |
1910 | struct ocfs2_path *path, u32 cpos) | |
dcd0538f MF |
1911 | { |
1912 | struct find_path_data data; | |
1913 | ||
1914 | data.index = 1; | |
1915 | data.path = path; | |
facdb77f | 1916 | return __ocfs2_find_path(ci, path_root_el(path), cpos, |
dcd0538f MF |
1917 | find_path_ins, &data); |
1918 | } | |
1919 | ||
1920 | static void find_leaf_ins(void *data, struct buffer_head *bh) | |
1921 | { | |
1922 | struct ocfs2_extent_block *eb =(struct ocfs2_extent_block *)bh->b_data; | |
1923 | struct ocfs2_extent_list *el = &eb->h_list; | |
1924 | struct buffer_head **ret = data; | |
1925 | ||
1926 | /* We want to retain only the leaf block. */ | |
1927 | if (le16_to_cpu(el->l_tree_depth) == 0) { | |
1928 | get_bh(bh); | |
1929 | *ret = bh; | |
1930 | } | |
1931 | } | |
1932 | /* | |
1933 | * Find the leaf block in the tree which would contain cpos. No | |
1934 | * checking of the actual leaf is done. | |
1935 | * | |
1936 | * Some paths want to call this instead of allocating a path structure | |
1937 | * and calling ocfs2_find_path(). | |
1938 | * | |
1939 | * This function doesn't handle non btree extent lists. | |
1940 | */ | |
facdb77f JB |
1941 | int ocfs2_find_leaf(struct ocfs2_caching_info *ci, |
1942 | struct ocfs2_extent_list *root_el, u32 cpos, | |
1943 | struct buffer_head **leaf_bh) | |
dcd0538f MF |
1944 | { |
1945 | int ret; | |
1946 | struct buffer_head *bh = NULL; | |
1947 | ||
facdb77f | 1948 | ret = __ocfs2_find_path(ci, root_el, cpos, find_leaf_ins, &bh); |
dcd0538f MF |
1949 | if (ret) { |
1950 | mlog_errno(ret); | |
1951 | goto out; | |
1952 | } | |
1953 | ||
1954 | *leaf_bh = bh; | |
1955 | out: | |
1956 | return ret; | |
1957 | } | |
1958 | ||
1959 | /* | |
1960 | * Adjust the adjacent records (left_rec, right_rec) involved in a rotation. | |
1961 | * | |
1962 | * Basically, we've moved stuff around at the bottom of the tree and | |
1963 | * we need to fix up the extent records above the changes to reflect | |
1964 | * the new changes. | |
1965 | * | |
1966 | * left_rec: the record on the left. | |
dcd0538f MF |
1967 | * right_rec: the record to the right of left_rec |
1968 | * right_child_el: is the child list pointed to by right_rec | |
1969 | * | |
1970 | * By definition, this only works on interior nodes. | |
1971 | */ | |
1972 | static void ocfs2_adjust_adjacent_records(struct ocfs2_extent_rec *left_rec, | |
dcd0538f MF |
1973 | struct ocfs2_extent_rec *right_rec, |
1974 | struct ocfs2_extent_list *right_child_el) | |
1975 | { | |
1976 | u32 left_clusters, right_end; | |
1977 | ||
1978 | /* | |
1979 | * Interior nodes never have holes. Their cpos is the cpos of | |
1980 | * the leftmost record in their child list. Their cluster | |
1981 | * count covers the full theoretical range of their child list | |
1982 | * - the range between their cpos and the cpos of the record | |
1983 | * immediately to their right. | |
1984 | */ | |
1985 | left_clusters = le32_to_cpu(right_child_el->l_recs[0].e_cpos); | |
82e12644 TM |
1986 | if (!ocfs2_rec_clusters(right_child_el, &right_child_el->l_recs[0])) { |
1987 | BUG_ON(right_child_el->l_tree_depth); | |
328d5752 MF |
1988 | BUG_ON(le16_to_cpu(right_child_el->l_next_free_rec) <= 1); |
1989 | left_clusters = le32_to_cpu(right_child_el->l_recs[1].e_cpos); | |
1990 | } | |
dcd0538f | 1991 | left_clusters -= le32_to_cpu(left_rec->e_cpos); |
e48edee2 | 1992 | left_rec->e_int_clusters = cpu_to_le32(left_clusters); |
dcd0538f MF |
1993 | |
1994 | /* | |
1995 | * Calculate the rightmost cluster count boundary before | |
e48edee2 | 1996 | * moving cpos - we will need to adjust clusters after |
dcd0538f MF |
1997 | * updating e_cpos to keep the same highest cluster count. |
1998 | */ | |
1999 | right_end = le32_to_cpu(right_rec->e_cpos); | |
e48edee2 | 2000 | right_end += le32_to_cpu(right_rec->e_int_clusters); |
dcd0538f MF |
2001 | |
2002 | right_rec->e_cpos = left_rec->e_cpos; | |
2003 | le32_add_cpu(&right_rec->e_cpos, left_clusters); | |
2004 | ||
2005 | right_end -= le32_to_cpu(right_rec->e_cpos); | |
e48edee2 | 2006 | right_rec->e_int_clusters = cpu_to_le32(right_end); |
dcd0538f MF |
2007 | } |
2008 | ||
2009 | /* | |
2010 | * Adjust the adjacent root node records involved in a | |
2011 | * rotation. left_el_blkno is passed in as a key so that we can easily | |
2012 | * find it's index in the root list. | |
2013 | */ | |
2014 | static void ocfs2_adjust_root_records(struct ocfs2_extent_list *root_el, | |
2015 | struct ocfs2_extent_list *left_el, | |
2016 | struct ocfs2_extent_list *right_el, | |
2017 | u64 left_el_blkno) | |
2018 | { | |
2019 | int i; | |
2020 | ||
2021 | BUG_ON(le16_to_cpu(root_el->l_tree_depth) <= | |
2022 | le16_to_cpu(left_el->l_tree_depth)); | |
2023 | ||
2024 | for(i = 0; i < le16_to_cpu(root_el->l_next_free_rec) - 1; i++) { | |
2025 | if (le64_to_cpu(root_el->l_recs[i].e_blkno) == left_el_blkno) | |
2026 | break; | |
2027 | } | |
2028 | ||
2029 | /* | |
2030 | * The path walking code should have never returned a root and | |
2031 | * two paths which are not adjacent. | |
2032 | */ | |
2033 | BUG_ON(i >= (le16_to_cpu(root_el->l_next_free_rec) - 1)); | |
2034 | ||
964f14a0 | 2035 | ocfs2_adjust_adjacent_records(&root_el->l_recs[i], |
dcd0538f MF |
2036 | &root_el->l_recs[i + 1], right_el); |
2037 | } | |
2038 | ||
2039 | /* | |
2040 | * We've changed a leaf block (in right_path) and need to reflect that | |
2041 | * change back up the subtree. | |
2042 | * | |
2043 | * This happens in multiple places: | |
2044 | * - When we've moved an extent record from the left path leaf to the right | |
2045 | * path leaf to make room for an empty extent in the left path leaf. | |
2046 | * - When our insert into the right path leaf is at the leftmost edge | |
2047 | * and requires an update of the path immediately to it's left. This | |
2048 | * can occur at the end of some types of rotation and appending inserts. | |
677b9752 TM |
2049 | * - When we've adjusted the last extent record in the left path leaf and the |
2050 | * 1st extent record in the right path leaf during cross extent block merge. | |
dcd0538f | 2051 | */ |
4619c73e | 2052 | static void ocfs2_complete_edge_insert(handle_t *handle, |
dcd0538f MF |
2053 | struct ocfs2_path *left_path, |
2054 | struct ocfs2_path *right_path, | |
2055 | int subtree_index) | |
2056 | { | |
ec20cec7 | 2057 | int i, idx; |
dcd0538f MF |
2058 | struct ocfs2_extent_list *el, *left_el, *right_el; |
2059 | struct ocfs2_extent_rec *left_rec, *right_rec; | |
2060 | struct buffer_head *root_bh = left_path->p_node[subtree_index].bh; | |
2061 | ||
2062 | /* | |
2063 | * Update the counts and position values within all the | |
2064 | * interior nodes to reflect the leaf rotation we just did. | |
2065 | * | |
2066 | * The root node is handled below the loop. | |
2067 | * | |
2068 | * We begin the loop with right_el and left_el pointing to the | |
2069 | * leaf lists and work our way up. | |
2070 | * | |
2071 | * NOTE: within this loop, left_el and right_el always refer | |
2072 | * to the *child* lists. | |
2073 | */ | |
2074 | left_el = path_leaf_el(left_path); | |
2075 | right_el = path_leaf_el(right_path); | |
2076 | for(i = left_path->p_tree_depth - 1; i > subtree_index; i--) { | |
a09d09b8 | 2077 | trace_ocfs2_complete_edge_insert(i); |
dcd0538f MF |
2078 | |
2079 | /* | |
2080 | * One nice property of knowing that all of these | |
2081 | * nodes are below the root is that we only deal with | |
2082 | * the leftmost right node record and the rightmost | |
2083 | * left node record. | |
2084 | */ | |
2085 | el = left_path->p_node[i].el; | |
2086 | idx = le16_to_cpu(left_el->l_next_free_rec) - 1; | |
2087 | left_rec = &el->l_recs[idx]; | |
2088 | ||
2089 | el = right_path->p_node[i].el; | |
2090 | right_rec = &el->l_recs[0]; | |
2091 | ||
964f14a0 | 2092 | ocfs2_adjust_adjacent_records(left_rec, right_rec, right_el); |
dcd0538f | 2093 | |
ec20cec7 JB |
2094 | ocfs2_journal_dirty(handle, left_path->p_node[i].bh); |
2095 | ocfs2_journal_dirty(handle, right_path->p_node[i].bh); | |
dcd0538f MF |
2096 | |
2097 | /* | |
2098 | * Setup our list pointers now so that the current | |
2099 | * parents become children in the next iteration. | |
2100 | */ | |
2101 | left_el = left_path->p_node[i].el; | |
2102 | right_el = right_path->p_node[i].el; | |
2103 | } | |
2104 | ||
2105 | /* | |
2106 | * At the root node, adjust the two adjacent records which | |
2107 | * begin our path to the leaves. | |
2108 | */ | |
2109 | ||
2110 | el = left_path->p_node[subtree_index].el; | |
2111 | left_el = left_path->p_node[subtree_index + 1].el; | |
2112 | right_el = right_path->p_node[subtree_index + 1].el; | |
2113 | ||
2114 | ocfs2_adjust_root_records(el, left_el, right_el, | |
2115 | left_path->p_node[subtree_index + 1].bh->b_blocknr); | |
2116 | ||
2117 | root_bh = left_path->p_node[subtree_index].bh; | |
2118 | ||
ec20cec7 | 2119 | ocfs2_journal_dirty(handle, root_bh); |
dcd0538f MF |
2120 | } |
2121 | ||
5c601aba JB |
2122 | static int ocfs2_rotate_subtree_right(handle_t *handle, |
2123 | struct ocfs2_extent_tree *et, | |
dcd0538f MF |
2124 | struct ocfs2_path *left_path, |
2125 | struct ocfs2_path *right_path, | |
2126 | int subtree_index) | |
2127 | { | |
2128 | int ret, i; | |
2129 | struct buffer_head *right_leaf_bh; | |
2130 | struct buffer_head *left_leaf_bh = NULL; | |
2131 | struct buffer_head *root_bh; | |
2132 | struct ocfs2_extent_list *right_el, *left_el; | |
2133 | struct ocfs2_extent_rec move_rec; | |
2134 | ||
2135 | left_leaf_bh = path_leaf_bh(left_path); | |
2136 | left_el = path_leaf_el(left_path); | |
2137 | ||
2138 | if (left_el->l_next_free_rec != left_el->l_count) { | |
5c601aba | 2139 | ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci), |
7ecef14a | 2140 | "Inode %llu has non-full interior leaf node %llu (next free = %u)\n", |
5c601aba | 2141 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), |
dcd0538f MF |
2142 | (unsigned long long)left_leaf_bh->b_blocknr, |
2143 | le16_to_cpu(left_el->l_next_free_rec)); | |
2144 | return -EROFS; | |
2145 | } | |
2146 | ||
2147 | /* | |
2148 | * This extent block may already have an empty record, so we | |
2149 | * return early if so. | |
2150 | */ | |
2151 | if (ocfs2_is_empty_extent(&left_el->l_recs[0])) | |
2152 | return 0; | |
2153 | ||
2154 | root_bh = left_path->p_node[subtree_index].bh; | |
2155 | BUG_ON(root_bh != right_path->p_node[subtree_index].bh); | |
2156 | ||
5c601aba | 2157 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path, |
13723d00 | 2158 | subtree_index); |
dcd0538f MF |
2159 | if (ret) { |
2160 | mlog_errno(ret); | |
2161 | goto out; | |
2162 | } | |
2163 | ||
2164 | for(i = subtree_index + 1; i < path_num_items(right_path); i++) { | |
5c601aba | 2165 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, |
13723d00 | 2166 | right_path, i); |
dcd0538f MF |
2167 | if (ret) { |
2168 | mlog_errno(ret); | |
2169 | goto out; | |
2170 | } | |
2171 | ||
5c601aba | 2172 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, |
13723d00 | 2173 | left_path, i); |
dcd0538f MF |
2174 | if (ret) { |
2175 | mlog_errno(ret); | |
2176 | goto out; | |
2177 | } | |
2178 | } | |
2179 | ||
2180 | right_leaf_bh = path_leaf_bh(right_path); | |
2181 | right_el = path_leaf_el(right_path); | |
2182 | ||
2183 | /* This is a code error, not a disk corruption. */ | |
2184 | mlog_bug_on_msg(!right_el->l_next_free_rec, "Inode %llu: Rotate fails " | |
2185 | "because rightmost leaf block %llu is empty\n", | |
5c601aba | 2186 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), |
dcd0538f MF |
2187 | (unsigned long long)right_leaf_bh->b_blocknr); |
2188 | ||
2189 | ocfs2_create_empty_extent(right_el); | |
2190 | ||
ec20cec7 | 2191 | ocfs2_journal_dirty(handle, right_leaf_bh); |
dcd0538f MF |
2192 | |
2193 | /* Do the copy now. */ | |
2194 | i = le16_to_cpu(left_el->l_next_free_rec) - 1; | |
2195 | move_rec = left_el->l_recs[i]; | |
2196 | right_el->l_recs[0] = move_rec; | |
2197 | ||
2198 | /* | |
2199 | * Clear out the record we just copied and shift everything | |
2200 | * over, leaving an empty extent in the left leaf. | |
2201 | * | |
2202 | * We temporarily subtract from next_free_rec so that the | |
2203 | * shift will lose the tail record (which is now defunct). | |
2204 | */ | |
2205 | le16_add_cpu(&left_el->l_next_free_rec, -1); | |
2206 | ocfs2_shift_records_right(left_el); | |
2207 | memset(&left_el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec)); | |
2208 | le16_add_cpu(&left_el->l_next_free_rec, 1); | |
2209 | ||
ec20cec7 | 2210 | ocfs2_journal_dirty(handle, left_leaf_bh); |
dcd0538f | 2211 | |
4619c73e JB |
2212 | ocfs2_complete_edge_insert(handle, left_path, right_path, |
2213 | subtree_index); | |
dcd0538f MF |
2214 | |
2215 | out: | |
2216 | return ret; | |
2217 | } | |
2218 | ||
2219 | /* | |
2220 | * Given a full path, determine what cpos value would return us a path | |
2221 | * containing the leaf immediately to the left of the current one. | |
2222 | * | |
2223 | * Will return zero if the path passed in is already the leftmost path. | |
2224 | */ | |
ee149a7c TY |
2225 | int ocfs2_find_cpos_for_left_leaf(struct super_block *sb, |
2226 | struct ocfs2_path *path, u32 *cpos) | |
dcd0538f MF |
2227 | { |
2228 | int i, j, ret = 0; | |
2229 | u64 blkno; | |
2230 | struct ocfs2_extent_list *el; | |
2231 | ||
e48edee2 MF |
2232 | BUG_ON(path->p_tree_depth == 0); |
2233 | ||
dcd0538f MF |
2234 | *cpos = 0; |
2235 | ||
2236 | blkno = path_leaf_bh(path)->b_blocknr; | |
2237 | ||
2238 | /* Start at the tree node just above the leaf and work our way up. */ | |
2239 | i = path->p_tree_depth - 1; | |
2240 | while (i >= 0) { | |
2241 | el = path->p_node[i].el; | |
2242 | ||
2243 | /* | |
2244 | * Find the extent record just before the one in our | |
2245 | * path. | |
2246 | */ | |
2247 | for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) { | |
2248 | if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) { | |
2249 | if (j == 0) { | |
2250 | if (i == 0) { | |
2251 | /* | |
2252 | * We've determined that the | |
2253 | * path specified is already | |
2254 | * the leftmost one - return a | |
2255 | * cpos of zero. | |
2256 | */ | |
2257 | goto out; | |
2258 | } | |
2259 | /* | |
2260 | * The leftmost record points to our | |
2261 | * leaf - we need to travel up the | |
2262 | * tree one level. | |
2263 | */ | |
2264 | goto next_node; | |
2265 | } | |
2266 | ||
2267 | *cpos = le32_to_cpu(el->l_recs[j - 1].e_cpos); | |
e48edee2 MF |
2268 | *cpos = *cpos + ocfs2_rec_clusters(el, |
2269 | &el->l_recs[j - 1]); | |
2270 | *cpos = *cpos - 1; | |
dcd0538f MF |
2271 | goto out; |
2272 | } | |
2273 | } | |
2274 | ||
2275 | /* | |
2276 | * If we got here, we never found a valid node where | |
2277 | * the tree indicated one should be. | |
2278 | */ | |
7ecef14a | 2279 | ocfs2_error(sb, "Invalid extent tree at extent block %llu\n", |
dcd0538f MF |
2280 | (unsigned long long)blkno); |
2281 | ret = -EROFS; | |
2282 | goto out; | |
2283 | ||
2284 | next_node: | |
2285 | blkno = path->p_node[i].bh->b_blocknr; | |
2286 | i--; | |
2287 | } | |
2288 | ||
2289 | out: | |
2290 | return ret; | |
2291 | } | |
2292 | ||
328d5752 MF |
2293 | /* |
2294 | * Extend the transaction by enough credits to complete the rotation, | |
2295 | * and still leave at least the original number of credits allocated | |
2296 | * to this transaction. | |
2297 | */ | |
dcd0538f | 2298 | static int ocfs2_extend_rotate_transaction(handle_t *handle, int subtree_depth, |
328d5752 | 2299 | int op_credits, |
dcd0538f MF |
2300 | struct ocfs2_path *path) |
2301 | { | |
c901fb00 | 2302 | int ret = 0; |
328d5752 | 2303 | int credits = (path->p_tree_depth - subtree_depth) * 2 + 1 + op_credits; |
dcd0538f | 2304 | |
c901fb00 | 2305 | if (handle->h_buffer_credits < credits) |
c18b812d TM |
2306 | ret = ocfs2_extend_trans(handle, |
2307 | credits - handle->h_buffer_credits); | |
dcd0538f | 2308 | |
c901fb00 | 2309 | return ret; |
dcd0538f MF |
2310 | } |
2311 | ||
2312 | /* | |
2313 | * Trap the case where we're inserting into the theoretical range past | |
2314 | * the _actual_ left leaf range. Otherwise, we'll rotate a record | |
2315 | * whose cpos is less than ours into the right leaf. | |
2316 | * | |
2317 | * It's only necessary to look at the rightmost record of the left | |
2318 | * leaf because the logic that calls us should ensure that the | |
2319 | * theoretical ranges in the path components above the leaves are | |
2320 | * correct. | |
2321 | */ | |
2322 | static int ocfs2_rotate_requires_path_adjustment(struct ocfs2_path *left_path, | |
2323 | u32 insert_cpos) | |
2324 | { | |
2325 | struct ocfs2_extent_list *left_el; | |
2326 | struct ocfs2_extent_rec *rec; | |
2327 | int next_free; | |
2328 | ||
2329 | left_el = path_leaf_el(left_path); | |
2330 | next_free = le16_to_cpu(left_el->l_next_free_rec); | |
2331 | rec = &left_el->l_recs[next_free - 1]; | |
2332 | ||
2333 | if (insert_cpos > le32_to_cpu(rec->e_cpos)) | |
2334 | return 1; | |
2335 | return 0; | |
2336 | } | |
2337 | ||
328d5752 MF |
2338 | static int ocfs2_leftmost_rec_contains(struct ocfs2_extent_list *el, u32 cpos) |
2339 | { | |
2340 | int next_free = le16_to_cpu(el->l_next_free_rec); | |
2341 | unsigned int range; | |
2342 | struct ocfs2_extent_rec *rec; | |
2343 | ||
2344 | if (next_free == 0) | |
2345 | return 0; | |
2346 | ||
2347 | rec = &el->l_recs[0]; | |
2348 | if (ocfs2_is_empty_extent(rec)) { | |
2349 | /* Empty list. */ | |
2350 | if (next_free == 1) | |
2351 | return 0; | |
2352 | rec = &el->l_recs[1]; | |
2353 | } | |
2354 | ||
2355 | range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec); | |
2356 | if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range) | |
2357 | return 1; | |
2358 | return 0; | |
2359 | } | |
2360 | ||
dcd0538f MF |
2361 | /* |
2362 | * Rotate all the records in a btree right one record, starting at insert_cpos. | |
2363 | * | |
2364 | * The path to the rightmost leaf should be passed in. | |
2365 | * | |
2366 | * The array is assumed to be large enough to hold an entire path (tree depth). | |
2367 | * | |
af901ca1 | 2368 | * Upon successful return from this function: |
dcd0538f MF |
2369 | * |
2370 | * - The 'right_path' array will contain a path to the leaf block | |
2371 | * whose range contains e_cpos. | |
2372 | * - That leaf block will have a single empty extent in list index 0. | |
2373 | * - In the case that the rotation requires a post-insert update, | |
2374 | * *ret_left_path will contain a valid path which can be passed to | |
2375 | * ocfs2_insert_path(). | |
2376 | */ | |
1bbf0b8d | 2377 | static int ocfs2_rotate_tree_right(handle_t *handle, |
5c601aba | 2378 | struct ocfs2_extent_tree *et, |
328d5752 | 2379 | enum ocfs2_split_type split, |
dcd0538f MF |
2380 | u32 insert_cpos, |
2381 | struct ocfs2_path *right_path, | |
2382 | struct ocfs2_path **ret_left_path) | |
2383 | { | |
328d5752 | 2384 | int ret, start, orig_credits = handle->h_buffer_credits; |
dcd0538f MF |
2385 | u32 cpos; |
2386 | struct ocfs2_path *left_path = NULL; | |
5c601aba | 2387 | struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci); |
dcd0538f MF |
2388 | |
2389 | *ret_left_path = NULL; | |
2390 | ||
ffdd7a54 | 2391 | left_path = ocfs2_new_path_from_path(right_path); |
dcd0538f MF |
2392 | if (!left_path) { |
2393 | ret = -ENOMEM; | |
2394 | mlog_errno(ret); | |
2395 | goto out; | |
2396 | } | |
2397 | ||
5c601aba | 2398 | ret = ocfs2_find_cpos_for_left_leaf(sb, right_path, &cpos); |
dcd0538f MF |
2399 | if (ret) { |
2400 | mlog_errno(ret); | |
2401 | goto out; | |
2402 | } | |
2403 | ||
a09d09b8 TM |
2404 | trace_ocfs2_rotate_tree_right( |
2405 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), | |
2406 | insert_cpos, cpos); | |
dcd0538f MF |
2407 | |
2408 | /* | |
2409 | * What we want to do here is: | |
2410 | * | |
2411 | * 1) Start with the rightmost path. | |
2412 | * | |
2413 | * 2) Determine a path to the leaf block directly to the left | |
2414 | * of that leaf. | |
2415 | * | |
2416 | * 3) Determine the 'subtree root' - the lowest level tree node | |
2417 | * which contains a path to both leaves. | |
2418 | * | |
2419 | * 4) Rotate the subtree. | |
2420 | * | |
2421 | * 5) Find the next subtree by considering the left path to be | |
2422 | * the new right path. | |
2423 | * | |
2424 | * The check at the top of this while loop also accepts | |
2425 | * insert_cpos == cpos because cpos is only a _theoretical_ | |
2426 | * value to get us the left path - insert_cpos might very well | |
2427 | * be filling that hole. | |
2428 | * | |
2429 | * Stop at a cpos of '0' because we either started at the | |
2430 | * leftmost branch (i.e., a tree with one branch and a | |
2431 | * rotation inside of it), or we've gone as far as we can in | |
2432 | * rotating subtrees. | |
2433 | */ | |
2434 | while (cpos && insert_cpos <= cpos) { | |
a09d09b8 TM |
2435 | trace_ocfs2_rotate_tree_right( |
2436 | (unsigned long long) | |
2437 | ocfs2_metadata_cache_owner(et->et_ci), | |
2438 | insert_cpos, cpos); | |
dcd0538f | 2439 | |
5c601aba | 2440 | ret = ocfs2_find_path(et->et_ci, left_path, cpos); |
dcd0538f MF |
2441 | if (ret) { |
2442 | mlog_errno(ret); | |
2443 | goto out; | |
2444 | } | |
2445 | ||
2446 | mlog_bug_on_msg(path_leaf_bh(left_path) == | |
2447 | path_leaf_bh(right_path), | |
5c601aba | 2448 | "Owner %llu: error during insert of %u " |
dcd0538f MF |
2449 | "(left path cpos %u) results in two identical " |
2450 | "paths ending at %llu\n", | |
5c601aba JB |
2451 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), |
2452 | insert_cpos, cpos, | |
dcd0538f MF |
2453 | (unsigned long long) |
2454 | path_leaf_bh(left_path)->b_blocknr); | |
2455 | ||
328d5752 MF |
2456 | if (split == SPLIT_NONE && |
2457 | ocfs2_rotate_requires_path_adjustment(left_path, | |
dcd0538f | 2458 | insert_cpos)) { |
dcd0538f MF |
2459 | |
2460 | /* | |
2461 | * We've rotated the tree as much as we | |
2462 | * should. The rest is up to | |
2463 | * ocfs2_insert_path() to complete, after the | |
2464 | * record insertion. We indicate this | |
2465 | * situation by returning the left path. | |
2466 | * | |
2467 | * The reason we don't adjust the records here | |
2468 | * before the record insert is that an error | |
2469 | * later might break the rule where a parent | |
2470 | * record e_cpos will reflect the actual | |
2471 | * e_cpos of the 1st nonempty record of the | |
2472 | * child list. | |
2473 | */ | |
2474 | *ret_left_path = left_path; | |
2475 | goto out_ret_path; | |
2476 | } | |
2477 | ||
7dc02805 | 2478 | start = ocfs2_find_subtree_root(et, left_path, right_path); |
dcd0538f | 2479 | |
a09d09b8 TM |
2480 | trace_ocfs2_rotate_subtree(start, |
2481 | (unsigned long long) | |
2482 | right_path->p_node[start].bh->b_blocknr, | |
2483 | right_path->p_tree_depth); | |
dcd0538f MF |
2484 | |
2485 | ret = ocfs2_extend_rotate_transaction(handle, start, | |
328d5752 | 2486 | orig_credits, right_path); |
dcd0538f MF |
2487 | if (ret) { |
2488 | mlog_errno(ret); | |
2489 | goto out; | |
2490 | } | |
2491 | ||
5c601aba | 2492 | ret = ocfs2_rotate_subtree_right(handle, et, left_path, |
dcd0538f MF |
2493 | right_path, start); |
2494 | if (ret) { | |
2495 | mlog_errno(ret); | |
2496 | goto out; | |
2497 | } | |
2498 | ||
328d5752 MF |
2499 | if (split != SPLIT_NONE && |
2500 | ocfs2_leftmost_rec_contains(path_leaf_el(right_path), | |
2501 | insert_cpos)) { | |
2502 | /* | |
2503 | * A rotate moves the rightmost left leaf | |
2504 | * record over to the leftmost right leaf | |
2505 | * slot. If we're doing an extent split | |
2506 | * instead of a real insert, then we have to | |
2507 | * check that the extent to be split wasn't | |
2508 | * just moved over. If it was, then we can | |
2509 | * exit here, passing left_path back - | |
2510 | * ocfs2_split_extent() is smart enough to | |
2511 | * search both leaves. | |
2512 | */ | |
2513 | *ret_left_path = left_path; | |
2514 | goto out_ret_path; | |
2515 | } | |
2516 | ||
dcd0538f MF |
2517 | /* |
2518 | * There is no need to re-read the next right path | |
2519 | * as we know that it'll be our current left | |
2520 | * path. Optimize by copying values instead. | |
2521 | */ | |
2522 | ocfs2_mv_path(right_path, left_path); | |
2523 | ||
5c601aba | 2524 | ret = ocfs2_find_cpos_for_left_leaf(sb, right_path, &cpos); |
dcd0538f MF |
2525 | if (ret) { |
2526 | mlog_errno(ret); | |
2527 | goto out; | |
2528 | } | |
2529 | } | |
2530 | ||
2531 | out: | |
2532 | ocfs2_free_path(left_path); | |
2533 | ||
2534 | out_ret_path: | |
2535 | return ret; | |
2536 | } | |
2537 | ||
09106bae JB |
2538 | static int ocfs2_update_edge_lengths(handle_t *handle, |
2539 | struct ocfs2_extent_tree *et, | |
964f14a0 | 2540 | struct ocfs2_path *path) |
dcd0538f | 2541 | { |
3c5e1068 | 2542 | int i, idx, ret; |
dcd0538f | 2543 | struct ocfs2_extent_rec *rec; |
328d5752 MF |
2544 | struct ocfs2_extent_list *el; |
2545 | struct ocfs2_extent_block *eb; | |
2546 | u32 range; | |
dcd0538f | 2547 | |
09106bae | 2548 | ret = ocfs2_journal_access_path(et->et_ci, handle, path); |
3c5e1068 TM |
2549 | if (ret) { |
2550 | mlog_errno(ret); | |
2551 | goto out; | |
2552 | } | |
2553 | ||
328d5752 MF |
2554 | /* Path should always be rightmost. */ |
2555 | eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data; | |
2556 | BUG_ON(eb->h_next_leaf_blk != 0ULL); | |
dcd0538f | 2557 | |
328d5752 MF |
2558 | el = &eb->h_list; |
2559 | BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0); | |
2560 | idx = le16_to_cpu(el->l_next_free_rec) - 1; | |
2561 | rec = &el->l_recs[idx]; | |
2562 | range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec); | |
dcd0538f | 2563 | |
328d5752 MF |
2564 | for (i = 0; i < path->p_tree_depth; i++) { |
2565 | el = path->p_node[i].el; | |
2566 | idx = le16_to_cpu(el->l_next_free_rec) - 1; | |
2567 | rec = &el->l_recs[idx]; | |
dcd0538f | 2568 | |
328d5752 MF |
2569 | rec->e_int_clusters = cpu_to_le32(range); |
2570 | le32_add_cpu(&rec->e_int_clusters, -le32_to_cpu(rec->e_cpos)); | |
dcd0538f | 2571 | |
328d5752 | 2572 | ocfs2_journal_dirty(handle, path->p_node[i].bh); |
dcd0538f | 2573 | } |
3c5e1068 TM |
2574 | out: |
2575 | return ret; | |
dcd0538f MF |
2576 | } |
2577 | ||
6641b0ce JB |
2578 | static void ocfs2_unlink_path(handle_t *handle, |
2579 | struct ocfs2_extent_tree *et, | |
328d5752 MF |
2580 | struct ocfs2_cached_dealloc_ctxt *dealloc, |
2581 | struct ocfs2_path *path, int unlink_start) | |
dcd0538f | 2582 | { |
328d5752 MF |
2583 | int ret, i; |
2584 | struct ocfs2_extent_block *eb; | |
2585 | struct ocfs2_extent_list *el; | |
2586 | struct buffer_head *bh; | |
2587 | ||
2588 | for(i = unlink_start; i < path_num_items(path); i++) { | |
2589 | bh = path->p_node[i].bh; | |
2590 | ||
2591 | eb = (struct ocfs2_extent_block *)bh->b_data; | |
2592 | /* | |
2593 | * Not all nodes might have had their final count | |
2594 | * decremented by the caller - handle this here. | |
2595 | */ | |
2596 | el = &eb->h_list; | |
2597 | if (le16_to_cpu(el->l_next_free_rec) > 1) { | |
2598 | mlog(ML_ERROR, | |
2599 | "Inode %llu, attempted to remove extent block " | |
2600 | "%llu with %u records\n", | |
6641b0ce | 2601 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), |
328d5752 MF |
2602 | (unsigned long long)le64_to_cpu(eb->h_blkno), |
2603 | le16_to_cpu(el->l_next_free_rec)); | |
2604 | ||
2605 | ocfs2_journal_dirty(handle, bh); | |
6641b0ce | 2606 | ocfs2_remove_from_cache(et->et_ci, bh); |
328d5752 MF |
2607 | continue; |
2608 | } | |
2609 | ||
2610 | el->l_next_free_rec = 0; | |
2611 | memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec)); | |
2612 | ||
2613 | ocfs2_journal_dirty(handle, bh); | |
2614 | ||
2615 | ret = ocfs2_cache_extent_block_free(dealloc, eb); | |
2616 | if (ret) | |
2617 | mlog_errno(ret); | |
2618 | ||
6641b0ce | 2619 | ocfs2_remove_from_cache(et->et_ci, bh); |
328d5752 | 2620 | } |
dcd0538f MF |
2621 | } |
2622 | ||
6641b0ce JB |
2623 | static void ocfs2_unlink_subtree(handle_t *handle, |
2624 | struct ocfs2_extent_tree *et, | |
328d5752 MF |
2625 | struct ocfs2_path *left_path, |
2626 | struct ocfs2_path *right_path, | |
2627 | int subtree_index, | |
2628 | struct ocfs2_cached_dealloc_ctxt *dealloc) | |
dcd0538f | 2629 | { |
328d5752 MF |
2630 | int i; |
2631 | struct buffer_head *root_bh = left_path->p_node[subtree_index].bh; | |
2632 | struct ocfs2_extent_list *root_el = left_path->p_node[subtree_index].el; | |
328d5752 | 2633 | struct ocfs2_extent_block *eb; |
dcd0538f | 2634 | |
328d5752 | 2635 | eb = (struct ocfs2_extent_block *)right_path->p_node[subtree_index + 1].bh->b_data; |
e48edee2 | 2636 | |
328d5752 MF |
2637 | for(i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++) |
2638 | if (root_el->l_recs[i].e_blkno == eb->h_blkno) | |
2639 | break; | |
dcd0538f | 2640 | |
328d5752 | 2641 | BUG_ON(i >= le16_to_cpu(root_el->l_next_free_rec)); |
dcd0538f | 2642 | |
328d5752 MF |
2643 | memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec)); |
2644 | le16_add_cpu(&root_el->l_next_free_rec, -1); | |
2645 | ||
2646 | eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data; | |
2647 | eb->h_next_leaf_blk = 0; | |
2648 | ||
2649 | ocfs2_journal_dirty(handle, root_bh); | |
2650 | ocfs2_journal_dirty(handle, path_leaf_bh(left_path)); | |
2651 | ||
6641b0ce | 2652 | ocfs2_unlink_path(handle, et, dealloc, right_path, |
328d5752 MF |
2653 | subtree_index + 1); |
2654 | } | |
2655 | ||
1e2dd63f JB |
2656 | static int ocfs2_rotate_subtree_left(handle_t *handle, |
2657 | struct ocfs2_extent_tree *et, | |
328d5752 MF |
2658 | struct ocfs2_path *left_path, |
2659 | struct ocfs2_path *right_path, | |
2660 | int subtree_index, | |
2661 | struct ocfs2_cached_dealloc_ctxt *dealloc, | |
1e2dd63f | 2662 | int *deleted) |
328d5752 MF |
2663 | { |
2664 | int ret, i, del_right_subtree = 0, right_has_empty = 0; | |
e7d4cb6b | 2665 | struct buffer_head *root_bh, *et_root_bh = path_root_bh(right_path); |
328d5752 MF |
2666 | struct ocfs2_extent_list *right_leaf_el, *left_leaf_el; |
2667 | struct ocfs2_extent_block *eb; | |
2668 | ||
2669 | *deleted = 0; | |
2670 | ||
2671 | right_leaf_el = path_leaf_el(right_path); | |
2672 | left_leaf_el = path_leaf_el(left_path); | |
2673 | root_bh = left_path->p_node[subtree_index].bh; | |
2674 | BUG_ON(root_bh != right_path->p_node[subtree_index].bh); | |
2675 | ||
2676 | if (!ocfs2_is_empty_extent(&left_leaf_el->l_recs[0])) | |
2677 | return 0; | |
dcd0538f | 2678 | |
328d5752 MF |
2679 | eb = (struct ocfs2_extent_block *)path_leaf_bh(right_path)->b_data; |
2680 | if (ocfs2_is_empty_extent(&right_leaf_el->l_recs[0])) { | |
dcd0538f | 2681 | /* |
328d5752 MF |
2682 | * It's legal for us to proceed if the right leaf is |
2683 | * the rightmost one and it has an empty extent. There | |
2684 | * are two cases to handle - whether the leaf will be | |
2685 | * empty after removal or not. If the leaf isn't empty | |
2686 | * then just remove the empty extent up front. The | |
2687 | * next block will handle empty leaves by flagging | |
2688 | * them for unlink. | |
2689 | * | |
2690 | * Non rightmost leaves will throw -EAGAIN and the | |
2691 | * caller can manually move the subtree and retry. | |
dcd0538f | 2692 | */ |
dcd0538f | 2693 | |
328d5752 MF |
2694 | if (eb->h_next_leaf_blk != 0ULL) |
2695 | return -EAGAIN; | |
2696 | ||
2697 | if (le16_to_cpu(right_leaf_el->l_next_free_rec) > 1) { | |
1e2dd63f | 2698 | ret = ocfs2_journal_access_eb(handle, et->et_ci, |
13723d00 JB |
2699 | path_leaf_bh(right_path), |
2700 | OCFS2_JOURNAL_ACCESS_WRITE); | |
dcd0538f MF |
2701 | if (ret) { |
2702 | mlog_errno(ret); | |
2703 | goto out; | |
2704 | } | |
2705 | ||
328d5752 MF |
2706 | ocfs2_remove_empty_extent(right_leaf_el); |
2707 | } else | |
2708 | right_has_empty = 1; | |
dcd0538f MF |
2709 | } |
2710 | ||
328d5752 MF |
2711 | if (eb->h_next_leaf_blk == 0ULL && |
2712 | le16_to_cpu(right_leaf_el->l_next_free_rec) == 1) { | |
2713 | /* | |
2714 | * We have to update i_last_eb_blk during the meta | |
2715 | * data delete. | |
2716 | */ | |
d9a0a1f8 | 2717 | ret = ocfs2_et_root_journal_access(handle, et, |
13723d00 | 2718 | OCFS2_JOURNAL_ACCESS_WRITE); |
328d5752 MF |
2719 | if (ret) { |
2720 | mlog_errno(ret); | |
2721 | goto out; | |
2722 | } | |
2723 | ||
2724 | del_right_subtree = 1; | |
2725 | } | |
2726 | ||
2727 | /* | |
2728 | * Getting here with an empty extent in the right path implies | |
2729 | * that it's the rightmost path and will be deleted. | |
2730 | */ | |
2731 | BUG_ON(right_has_empty && !del_right_subtree); | |
2732 | ||
1e2dd63f | 2733 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path, |
13723d00 | 2734 | subtree_index); |
328d5752 MF |
2735 | if (ret) { |
2736 | mlog_errno(ret); | |
2737 | goto out; | |
2738 | } | |
2739 | ||
2740 | for(i = subtree_index + 1; i < path_num_items(right_path); i++) { | |
1e2dd63f | 2741 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, |
13723d00 | 2742 | right_path, i); |
328d5752 MF |
2743 | if (ret) { |
2744 | mlog_errno(ret); | |
2745 | goto out; | |
2746 | } | |
2747 | ||
1e2dd63f | 2748 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, |
13723d00 | 2749 | left_path, i); |
328d5752 MF |
2750 | if (ret) { |
2751 | mlog_errno(ret); | |
2752 | goto out; | |
2753 | } | |
2754 | } | |
2755 | ||
2756 | if (!right_has_empty) { | |
2757 | /* | |
2758 | * Only do this if we're moving a real | |
2759 | * record. Otherwise, the action is delayed until | |
2760 | * after removal of the right path in which case we | |
2761 | * can do a simple shift to remove the empty extent. | |
2762 | */ | |
2763 | ocfs2_rotate_leaf(left_leaf_el, &right_leaf_el->l_recs[0]); | |
2764 | memset(&right_leaf_el->l_recs[0], 0, | |
2765 | sizeof(struct ocfs2_extent_rec)); | |
2766 | } | |
2767 | if (eb->h_next_leaf_blk == 0ULL) { | |
2768 | /* | |
2769 | * Move recs over to get rid of empty extent, decrease | |
2770 | * next_free. This is allowed to remove the last | |
2771 | * extent in our leaf (setting l_next_free_rec to | |
2772 | * zero) - the delete code below won't care. | |
2773 | */ | |
2774 | ocfs2_remove_empty_extent(right_leaf_el); | |
2775 | } | |
2776 | ||
ec20cec7 JB |
2777 | ocfs2_journal_dirty(handle, path_leaf_bh(left_path)); |
2778 | ocfs2_journal_dirty(handle, path_leaf_bh(right_path)); | |
328d5752 MF |
2779 | |
2780 | if (del_right_subtree) { | |
6641b0ce | 2781 | ocfs2_unlink_subtree(handle, et, left_path, right_path, |
328d5752 | 2782 | subtree_index, dealloc); |
964f14a0 | 2783 | ret = ocfs2_update_edge_lengths(handle, et, left_path); |
3c5e1068 TM |
2784 | if (ret) { |
2785 | mlog_errno(ret); | |
2786 | goto out; | |
2787 | } | |
328d5752 MF |
2788 | |
2789 | eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data; | |
35dc0aa3 | 2790 | ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno)); |
328d5752 MF |
2791 | |
2792 | /* | |
2793 | * Removal of the extent in the left leaf was skipped | |
2794 | * above so we could delete the right path | |
2795 | * 1st. | |
2796 | */ | |
2797 | if (right_has_empty) | |
2798 | ocfs2_remove_empty_extent(left_leaf_el); | |
2799 | ||
ec20cec7 | 2800 | ocfs2_journal_dirty(handle, et_root_bh); |
328d5752 MF |
2801 | |
2802 | *deleted = 1; | |
2803 | } else | |
4619c73e | 2804 | ocfs2_complete_edge_insert(handle, left_path, right_path, |
328d5752 MF |
2805 | subtree_index); |
2806 | ||
2807 | out: | |
2808 | return ret; | |
2809 | } | |
2810 | ||
2811 | /* | |
2812 | * Given a full path, determine what cpos value would return us a path | |
2813 | * containing the leaf immediately to the right of the current one. | |
2814 | * | |
2815 | * Will return zero if the path passed in is already the rightmost path. | |
2816 | * | |
2817 | * This looks similar, but is subtly different to | |
2818 | * ocfs2_find_cpos_for_left_leaf(). | |
2819 | */ | |
38a04e43 TM |
2820 | int ocfs2_find_cpos_for_right_leaf(struct super_block *sb, |
2821 | struct ocfs2_path *path, u32 *cpos) | |
328d5752 MF |
2822 | { |
2823 | int i, j, ret = 0; | |
2824 | u64 blkno; | |
2825 | struct ocfs2_extent_list *el; | |
2826 | ||
2827 | *cpos = 0; | |
2828 | ||
2829 | if (path->p_tree_depth == 0) | |
2830 | return 0; | |
2831 | ||
2832 | blkno = path_leaf_bh(path)->b_blocknr; | |
2833 | ||
2834 | /* Start at the tree node just above the leaf and work our way up. */ | |
2835 | i = path->p_tree_depth - 1; | |
2836 | while (i >= 0) { | |
2837 | int next_free; | |
2838 | ||
2839 | el = path->p_node[i].el; | |
2840 | ||
2841 | /* | |
2842 | * Find the extent record just after the one in our | |
2843 | * path. | |
2844 | */ | |
2845 | next_free = le16_to_cpu(el->l_next_free_rec); | |
2846 | for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) { | |
2847 | if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) { | |
2848 | if (j == (next_free - 1)) { | |
2849 | if (i == 0) { | |
2850 | /* | |
2851 | * We've determined that the | |
2852 | * path specified is already | |
2853 | * the rightmost one - return a | |
2854 | * cpos of zero. | |
2855 | */ | |
2856 | goto out; | |
2857 | } | |
2858 | /* | |
2859 | * The rightmost record points to our | |
2860 | * leaf - we need to travel up the | |
2861 | * tree one level. | |
2862 | */ | |
2863 | goto next_node; | |
2864 | } | |
2865 | ||
2866 | *cpos = le32_to_cpu(el->l_recs[j + 1].e_cpos); | |
2867 | goto out; | |
2868 | } | |
2869 | } | |
2870 | ||
2871 | /* | |
2872 | * If we got here, we never found a valid node where | |
2873 | * the tree indicated one should be. | |
2874 | */ | |
7ecef14a | 2875 | ocfs2_error(sb, "Invalid extent tree at extent block %llu\n", |
328d5752 MF |
2876 | (unsigned long long)blkno); |
2877 | ret = -EROFS; | |
2878 | goto out; | |
2879 | ||
2880 | next_node: | |
2881 | blkno = path->p_node[i].bh->b_blocknr; | |
2882 | i--; | |
2883 | } | |
2884 | ||
2885 | out: | |
2886 | return ret; | |
2887 | } | |
2888 | ||
70f18c08 JB |
2889 | static int ocfs2_rotate_rightmost_leaf_left(handle_t *handle, |
2890 | struct ocfs2_extent_tree *et, | |
13723d00 | 2891 | struct ocfs2_path *path) |
328d5752 MF |
2892 | { |
2893 | int ret; | |
13723d00 JB |
2894 | struct buffer_head *bh = path_leaf_bh(path); |
2895 | struct ocfs2_extent_list *el = path_leaf_el(path); | |
328d5752 MF |
2896 | |
2897 | if (!ocfs2_is_empty_extent(&el->l_recs[0])) | |
2898 | return 0; | |
2899 | ||
70f18c08 | 2900 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, path, |
13723d00 | 2901 | path_num_items(path) - 1); |
328d5752 MF |
2902 | if (ret) { |
2903 | mlog_errno(ret); | |
2904 | goto out; | |
2905 | } | |
2906 | ||
2907 | ocfs2_remove_empty_extent(el); | |
ec20cec7 | 2908 | ocfs2_journal_dirty(handle, bh); |
328d5752 MF |
2909 | |
2910 | out: | |
2911 | return ret; | |
2912 | } | |
2913 | ||
e46f74dc JB |
2914 | static int __ocfs2_rotate_tree_left(handle_t *handle, |
2915 | struct ocfs2_extent_tree *et, | |
2916 | int orig_credits, | |
328d5752 MF |
2917 | struct ocfs2_path *path, |
2918 | struct ocfs2_cached_dealloc_ctxt *dealloc, | |
e46f74dc | 2919 | struct ocfs2_path **empty_extent_path) |
328d5752 MF |
2920 | { |
2921 | int ret, subtree_root, deleted; | |
2922 | u32 right_cpos; | |
2923 | struct ocfs2_path *left_path = NULL; | |
2924 | struct ocfs2_path *right_path = NULL; | |
e46f74dc | 2925 | struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci); |
328d5752 | 2926 | |
099768b0 X |
2927 | if (!ocfs2_is_empty_extent(&(path_leaf_el(path)->l_recs[0]))) |
2928 | return 0; | |
328d5752 MF |
2929 | |
2930 | *empty_extent_path = NULL; | |
2931 | ||
e46f74dc | 2932 | ret = ocfs2_find_cpos_for_right_leaf(sb, path, &right_cpos); |
328d5752 MF |
2933 | if (ret) { |
2934 | mlog_errno(ret); | |
2935 | goto out; | |
2936 | } | |
2937 | ||
ffdd7a54 | 2938 | left_path = ocfs2_new_path_from_path(path); |
328d5752 MF |
2939 | if (!left_path) { |
2940 | ret = -ENOMEM; | |
2941 | mlog_errno(ret); | |
2942 | goto out; | |
2943 | } | |
2944 | ||
2945 | ocfs2_cp_path(left_path, path); | |
2946 | ||
ffdd7a54 | 2947 | right_path = ocfs2_new_path_from_path(path); |
328d5752 MF |
2948 | if (!right_path) { |
2949 | ret = -ENOMEM; | |
2950 | mlog_errno(ret); | |
2951 | goto out; | |
2952 | } | |
2953 | ||
2954 | while (right_cpos) { | |
facdb77f | 2955 | ret = ocfs2_find_path(et->et_ci, right_path, right_cpos); |
328d5752 MF |
2956 | if (ret) { |
2957 | mlog_errno(ret); | |
2958 | goto out; | |
2959 | } | |
2960 | ||
7dc02805 | 2961 | subtree_root = ocfs2_find_subtree_root(et, left_path, |
328d5752 MF |
2962 | right_path); |
2963 | ||
a09d09b8 | 2964 | trace_ocfs2_rotate_subtree(subtree_root, |
328d5752 MF |
2965 | (unsigned long long) |
2966 | right_path->p_node[subtree_root].bh->b_blocknr, | |
2967 | right_path->p_tree_depth); | |
2968 | ||
17215989 | 2969 | ret = ocfs2_extend_rotate_transaction(handle, 0, |
328d5752 MF |
2970 | orig_credits, left_path); |
2971 | if (ret) { | |
2972 | mlog_errno(ret); | |
2973 | goto out; | |
2974 | } | |
2975 | ||
e8aed345 MF |
2976 | /* |
2977 | * Caller might still want to make changes to the | |
2978 | * tree root, so re-add it to the journal here. | |
2979 | */ | |
e46f74dc | 2980 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, |
13723d00 | 2981 | left_path, 0); |
e8aed345 MF |
2982 | if (ret) { |
2983 | mlog_errno(ret); | |
2984 | goto out; | |
2985 | } | |
2986 | ||
1e2dd63f | 2987 | ret = ocfs2_rotate_subtree_left(handle, et, left_path, |
328d5752 | 2988 | right_path, subtree_root, |
1e2dd63f | 2989 | dealloc, &deleted); |
328d5752 MF |
2990 | if (ret == -EAGAIN) { |
2991 | /* | |
2992 | * The rotation has to temporarily stop due to | |
2993 | * the right subtree having an empty | |
2994 | * extent. Pass it back to the caller for a | |
2995 | * fixup. | |
2996 | */ | |
2997 | *empty_extent_path = right_path; | |
2998 | right_path = NULL; | |
2999 | goto out; | |
3000 | } | |
3001 | if (ret) { | |
3002 | mlog_errno(ret); | |
3003 | goto out; | |
3004 | } | |
3005 | ||
3006 | /* | |
3007 | * The subtree rotate might have removed records on | |
3008 | * the rightmost edge. If so, then rotation is | |
3009 | * complete. | |
3010 | */ | |
3011 | if (deleted) | |
3012 | break; | |
3013 | ||
3014 | ocfs2_mv_path(left_path, right_path); | |
3015 | ||
e46f74dc | 3016 | ret = ocfs2_find_cpos_for_right_leaf(sb, left_path, |
328d5752 MF |
3017 | &right_cpos); |
3018 | if (ret) { | |
3019 | mlog_errno(ret); | |
3020 | goto out; | |
3021 | } | |
3022 | } | |
3023 | ||
3024 | out: | |
3025 | ocfs2_free_path(right_path); | |
3026 | ocfs2_free_path(left_path); | |
3027 | ||
3028 | return ret; | |
3029 | } | |
3030 | ||
70f18c08 JB |
3031 | static int ocfs2_remove_rightmost_path(handle_t *handle, |
3032 | struct ocfs2_extent_tree *et, | |
e7d4cb6b | 3033 | struct ocfs2_path *path, |
70f18c08 | 3034 | struct ocfs2_cached_dealloc_ctxt *dealloc) |
328d5752 MF |
3035 | { |
3036 | int ret, subtree_index; | |
3037 | u32 cpos; | |
3038 | struct ocfs2_path *left_path = NULL; | |
328d5752 MF |
3039 | struct ocfs2_extent_block *eb; |
3040 | struct ocfs2_extent_list *el; | |
3041 | ||
6136ca5f | 3042 | ret = ocfs2_et_sanity_check(et); |
e7d4cb6b TM |
3043 | if (ret) |
3044 | goto out; | |
328d5752 | 3045 | |
d9a0a1f8 | 3046 | ret = ocfs2_journal_access_path(et->et_ci, handle, path); |
328d5752 MF |
3047 | if (ret) { |
3048 | mlog_errno(ret); | |
3049 | goto out; | |
3050 | } | |
3051 | ||
3d03a305 JB |
3052 | ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci), |
3053 | path, &cpos); | |
328d5752 MF |
3054 | if (ret) { |
3055 | mlog_errno(ret); | |
3056 | goto out; | |
3057 | } | |
3058 | ||
3059 | if (cpos) { | |
3060 | /* | |
3061 | * We have a path to the left of this one - it needs | |
3062 | * an update too. | |
3063 | */ | |
ffdd7a54 | 3064 | left_path = ocfs2_new_path_from_path(path); |
328d5752 MF |
3065 | if (!left_path) { |
3066 | ret = -ENOMEM; | |
3067 | mlog_errno(ret); | |
3068 | goto out; | |
3069 | } | |
3070 | ||
facdb77f | 3071 | ret = ocfs2_find_path(et->et_ci, left_path, cpos); |
328d5752 MF |
3072 | if (ret) { |
3073 | mlog_errno(ret); | |
3074 | goto out; | |
3075 | } | |
3076 | ||
d9a0a1f8 | 3077 | ret = ocfs2_journal_access_path(et->et_ci, handle, left_path); |
328d5752 MF |
3078 | if (ret) { |
3079 | mlog_errno(ret); | |
3080 | goto out; | |
3081 | } | |
3082 | ||
7dc02805 | 3083 | subtree_index = ocfs2_find_subtree_root(et, left_path, path); |
328d5752 | 3084 | |
6641b0ce | 3085 | ocfs2_unlink_subtree(handle, et, left_path, path, |
328d5752 | 3086 | subtree_index, dealloc); |
964f14a0 | 3087 | ret = ocfs2_update_edge_lengths(handle, et, left_path); |
3c5e1068 TM |
3088 | if (ret) { |
3089 | mlog_errno(ret); | |
3090 | goto out; | |
3091 | } | |
328d5752 MF |
3092 | |
3093 | eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data; | |
35dc0aa3 | 3094 | ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno)); |
328d5752 MF |
3095 | } else { |
3096 | /* | |
3097 | * 'path' is also the leftmost path which | |
3098 | * means it must be the only one. This gets | |
3099 | * handled differently because we want to | |
70f18c08 | 3100 | * revert the root back to having extents |
328d5752 MF |
3101 | * in-line. |
3102 | */ | |
6641b0ce | 3103 | ocfs2_unlink_path(handle, et, dealloc, path, 1); |
328d5752 | 3104 | |
ce1d9ea6 | 3105 | el = et->et_root_el; |
328d5752 MF |
3106 | el->l_tree_depth = 0; |
3107 | el->l_next_free_rec = 0; | |
3108 | memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec)); | |
3109 | ||
35dc0aa3 | 3110 | ocfs2_et_set_last_eb_blk(et, 0); |
328d5752 MF |
3111 | } |
3112 | ||
3113 | ocfs2_journal_dirty(handle, path_root_bh(path)); | |
3114 | ||
3115 | out: | |
3116 | ocfs2_free_path(left_path); | |
3117 | return ret; | |
3118 | } | |
3119 | ||
d0c97d52 X |
3120 | static int ocfs2_remove_rightmost_empty_extent(struct ocfs2_super *osb, |
3121 | struct ocfs2_extent_tree *et, | |
3122 | struct ocfs2_path *path, | |
3123 | struct ocfs2_cached_dealloc_ctxt *dealloc) | |
3124 | { | |
3125 | handle_t *handle; | |
3126 | int ret; | |
3127 | int credits = path->p_tree_depth * 2 + 1; | |
3128 | ||
3129 | handle = ocfs2_start_trans(osb, credits); | |
3130 | if (IS_ERR(handle)) { | |
3131 | ret = PTR_ERR(handle); | |
3132 | mlog_errno(ret); | |
3133 | return ret; | |
3134 | } | |
3135 | ||
3136 | ret = ocfs2_remove_rightmost_path(handle, et, path, dealloc); | |
3137 | if (ret) | |
3138 | mlog_errno(ret); | |
3139 | ||
3140 | ocfs2_commit_trans(osb, handle); | |
3141 | return ret; | |
3142 | } | |
3143 | ||
328d5752 MF |
3144 | /* |
3145 | * Left rotation of btree records. | |
3146 | * | |
3147 | * In many ways, this is (unsurprisingly) the opposite of right | |
3148 | * rotation. We start at some non-rightmost path containing an empty | |
3149 | * extent in the leaf block. The code works its way to the rightmost | |
3150 | * path by rotating records to the left in every subtree. | |
3151 | * | |
3152 | * This is used by any code which reduces the number of extent records | |
3153 | * in a leaf. After removal, an empty record should be placed in the | |
3154 | * leftmost list position. | |
3155 | * | |
3156 | * This won't handle a length update of the rightmost path records if | |
3157 | * the rightmost tree leaf record is removed so the caller is | |
3158 | * responsible for detecting and correcting that. | |
3159 | */ | |
70f18c08 JB |
3160 | static int ocfs2_rotate_tree_left(handle_t *handle, |
3161 | struct ocfs2_extent_tree *et, | |
328d5752 | 3162 | struct ocfs2_path *path, |
70f18c08 | 3163 | struct ocfs2_cached_dealloc_ctxt *dealloc) |
328d5752 MF |
3164 | { |
3165 | int ret, orig_credits = handle->h_buffer_credits; | |
3166 | struct ocfs2_path *tmp_path = NULL, *restart_path = NULL; | |
3167 | struct ocfs2_extent_block *eb; | |
3168 | struct ocfs2_extent_list *el; | |
3169 | ||
3170 | el = path_leaf_el(path); | |
3171 | if (!ocfs2_is_empty_extent(&el->l_recs[0])) | |
3172 | return 0; | |
3173 | ||
3174 | if (path->p_tree_depth == 0) { | |
3175 | rightmost_no_delete: | |
3176 | /* | |
e7d4cb6b | 3177 | * Inline extents. This is trivially handled, so do |
328d5752 MF |
3178 | * it up front. |
3179 | */ | |
70f18c08 | 3180 | ret = ocfs2_rotate_rightmost_leaf_left(handle, et, path); |
328d5752 MF |
3181 | if (ret) |
3182 | mlog_errno(ret); | |
3183 | goto out; | |
3184 | } | |
3185 | ||
3186 | /* | |
3187 | * Handle rightmost branch now. There's several cases: | |
3188 | * 1) simple rotation leaving records in there. That's trivial. | |
3189 | * 2) rotation requiring a branch delete - there's no more | |
3190 | * records left. Two cases of this: | |
3191 | * a) There are branches to the left. | |
3192 | * b) This is also the leftmost (the only) branch. | |
3193 | * | |
3194 | * 1) is handled via ocfs2_rotate_rightmost_leaf_left() | |
3195 | * 2a) we need the left branch so that we can update it with the unlink | |
70f18c08 | 3196 | * 2b) we need to bring the root back to inline extents. |
328d5752 MF |
3197 | */ |
3198 | ||
3199 | eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data; | |
3200 | el = &eb->h_list; | |
3201 | if (eb->h_next_leaf_blk == 0) { | |
3202 | /* | |
3203 | * This gets a bit tricky if we're going to delete the | |
3204 | * rightmost path. Get the other cases out of the way | |
3205 | * 1st. | |
3206 | */ | |
3207 | if (le16_to_cpu(el->l_next_free_rec) > 1) | |
3208 | goto rightmost_no_delete; | |
3209 | ||
3210 | if (le16_to_cpu(el->l_next_free_rec) == 0) { | |
93f5920d JP |
3211 | ret = ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci), |
3212 | "Owner %llu has empty extent block at %llu\n", | |
3213 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), | |
3214 | (unsigned long long)le64_to_cpu(eb->h_blkno)); | |
328d5752 MF |
3215 | goto out; |
3216 | } | |
3217 | ||
3218 | /* | |
3219 | * XXX: The caller can not trust "path" any more after | |
3220 | * this as it will have been deleted. What do we do? | |
3221 | * | |
3222 | * In theory the rotate-for-merge code will never get | |
3223 | * here because it'll always ask for a rotate in a | |
3224 | * nonempty list. | |
3225 | */ | |
3226 | ||
70f18c08 JB |
3227 | ret = ocfs2_remove_rightmost_path(handle, et, path, |
3228 | dealloc); | |
328d5752 MF |
3229 | if (ret) |
3230 | mlog_errno(ret); | |
3231 | goto out; | |
3232 | } | |
3233 | ||
3234 | /* | |
3235 | * Now we can loop, remembering the path we get from -EAGAIN | |
3236 | * and restarting from there. | |
3237 | */ | |
3238 | try_rotate: | |
e46f74dc JB |
3239 | ret = __ocfs2_rotate_tree_left(handle, et, orig_credits, path, |
3240 | dealloc, &restart_path); | |
328d5752 MF |
3241 | if (ret && ret != -EAGAIN) { |
3242 | mlog_errno(ret); | |
3243 | goto out; | |
3244 | } | |
3245 | ||
3246 | while (ret == -EAGAIN) { | |
3247 | tmp_path = restart_path; | |
3248 | restart_path = NULL; | |
3249 | ||
e46f74dc | 3250 | ret = __ocfs2_rotate_tree_left(handle, et, orig_credits, |
328d5752 | 3251 | tmp_path, dealloc, |
e46f74dc | 3252 | &restart_path); |
328d5752 MF |
3253 | if (ret && ret != -EAGAIN) { |
3254 | mlog_errno(ret); | |
3255 | goto out; | |
3256 | } | |
3257 | ||
3258 | ocfs2_free_path(tmp_path); | |
3259 | tmp_path = NULL; | |
3260 | ||
3261 | if (ret == 0) | |
3262 | goto try_rotate; | |
3263 | } | |
3264 | ||
3265 | out: | |
3266 | ocfs2_free_path(tmp_path); | |
3267 | ocfs2_free_path(restart_path); | |
3268 | return ret; | |
3269 | } | |
3270 | ||
3271 | static void ocfs2_cleanup_merge(struct ocfs2_extent_list *el, | |
3272 | int index) | |
3273 | { | |
3274 | struct ocfs2_extent_rec *rec = &el->l_recs[index]; | |
3275 | unsigned int size; | |
3276 | ||
3277 | if (rec->e_leaf_clusters == 0) { | |
3278 | /* | |
3279 | * We consumed all of the merged-from record. An empty | |
3280 | * extent cannot exist anywhere but the 1st array | |
3281 | * position, so move things over if the merged-from | |
3282 | * record doesn't occupy that position. | |
3283 | * | |
3284 | * This creates a new empty extent so the caller | |
3285 | * should be smart enough to have removed any existing | |
3286 | * ones. | |
3287 | */ | |
3288 | if (index > 0) { | |
3289 | BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0])); | |
3290 | size = index * sizeof(struct ocfs2_extent_rec); | |
3291 | memmove(&el->l_recs[1], &el->l_recs[0], size); | |
3292 | } | |
3293 | ||
3294 | /* | |
3295 | * Always memset - the caller doesn't check whether it | |
3296 | * created an empty extent, so there could be junk in | |
3297 | * the other fields. | |
3298 | */ | |
3299 | memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec)); | |
3300 | } | |
3301 | } | |
3302 | ||
4fe82c31 | 3303 | static int ocfs2_get_right_path(struct ocfs2_extent_tree *et, |
677b9752 TM |
3304 | struct ocfs2_path *left_path, |
3305 | struct ocfs2_path **ret_right_path) | |
3306 | { | |
3307 | int ret; | |
3308 | u32 right_cpos; | |
3309 | struct ocfs2_path *right_path = NULL; | |
3310 | struct ocfs2_extent_list *left_el; | |
3311 | ||
3312 | *ret_right_path = NULL; | |
3313 | ||
3314 | /* This function shouldn't be called for non-trees. */ | |
3315 | BUG_ON(left_path->p_tree_depth == 0); | |
3316 | ||
3317 | left_el = path_leaf_el(left_path); | |
3318 | BUG_ON(left_el->l_next_free_rec != left_el->l_count); | |
3319 | ||
4fe82c31 JB |
3320 | ret = ocfs2_find_cpos_for_right_leaf(ocfs2_metadata_cache_get_super(et->et_ci), |
3321 | left_path, &right_cpos); | |
677b9752 TM |
3322 | if (ret) { |
3323 | mlog_errno(ret); | |
3324 | goto out; | |
3325 | } | |
3326 | ||
3327 | /* This function shouldn't be called for the rightmost leaf. */ | |
3328 | BUG_ON(right_cpos == 0); | |
3329 | ||
ffdd7a54 | 3330 | right_path = ocfs2_new_path_from_path(left_path); |
677b9752 TM |
3331 | if (!right_path) { |
3332 | ret = -ENOMEM; | |
3333 | mlog_errno(ret); | |
3334 | goto out; | |
3335 | } | |
3336 | ||
4fe82c31 | 3337 | ret = ocfs2_find_path(et->et_ci, right_path, right_cpos); |
677b9752 TM |
3338 | if (ret) { |
3339 | mlog_errno(ret); | |
3340 | goto out; | |
3341 | } | |
3342 | ||
3343 | *ret_right_path = right_path; | |
3344 | out: | |
3345 | if (ret) | |
3346 | ocfs2_free_path(right_path); | |
3347 | return ret; | |
3348 | } | |
3349 | ||
328d5752 MF |
3350 | /* |
3351 | * Remove split_rec clusters from the record at index and merge them | |
677b9752 TM |
3352 | * onto the beginning of the record "next" to it. |
3353 | * For index < l_count - 1, the next means the extent rec at index + 1. | |
3354 | * For index == l_count - 1, the "next" means the 1st extent rec of the | |
3355 | * next extent block. | |
328d5752 | 3356 | */ |
4fe82c31 | 3357 | static int ocfs2_merge_rec_right(struct ocfs2_path *left_path, |
677b9752 | 3358 | handle_t *handle, |
7dc02805 | 3359 | struct ocfs2_extent_tree *et, |
677b9752 TM |
3360 | struct ocfs2_extent_rec *split_rec, |
3361 | int index) | |
328d5752 | 3362 | { |
677b9752 | 3363 | int ret, next_free, i; |
328d5752 MF |
3364 | unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters); |
3365 | struct ocfs2_extent_rec *left_rec; | |
3366 | struct ocfs2_extent_rec *right_rec; | |
677b9752 TM |
3367 | struct ocfs2_extent_list *right_el; |
3368 | struct ocfs2_path *right_path = NULL; | |
3369 | int subtree_index = 0; | |
3370 | struct ocfs2_extent_list *el = path_leaf_el(left_path); | |
3371 | struct buffer_head *bh = path_leaf_bh(left_path); | |
3372 | struct buffer_head *root_bh = NULL; | |
328d5752 MF |
3373 | |
3374 | BUG_ON(index >= le16_to_cpu(el->l_next_free_rec)); | |
328d5752 | 3375 | left_rec = &el->l_recs[index]; |
677b9752 | 3376 | |
9d8df6aa | 3377 | if (index == le16_to_cpu(el->l_next_free_rec) - 1 && |
677b9752 TM |
3378 | le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count)) { |
3379 | /* we meet with a cross extent block merge. */ | |
4fe82c31 | 3380 | ret = ocfs2_get_right_path(et, left_path, &right_path); |
677b9752 TM |
3381 | if (ret) { |
3382 | mlog_errno(ret); | |
629a3b5f | 3383 | return ret; |
677b9752 TM |
3384 | } |
3385 | ||
3386 | right_el = path_leaf_el(right_path); | |
3387 | next_free = le16_to_cpu(right_el->l_next_free_rec); | |
3388 | BUG_ON(next_free <= 0); | |
3389 | right_rec = &right_el->l_recs[0]; | |
3390 | if (ocfs2_is_empty_extent(right_rec)) { | |
9d8df6aa | 3391 | BUG_ON(next_free <= 1); |
677b9752 TM |
3392 | right_rec = &right_el->l_recs[1]; |
3393 | } | |
3394 | ||
3395 | BUG_ON(le32_to_cpu(left_rec->e_cpos) + | |
3396 | le16_to_cpu(left_rec->e_leaf_clusters) != | |
3397 | le32_to_cpu(right_rec->e_cpos)); | |
3398 | ||
7dc02805 JB |
3399 | subtree_index = ocfs2_find_subtree_root(et, left_path, |
3400 | right_path); | |
677b9752 TM |
3401 | |
3402 | ret = ocfs2_extend_rotate_transaction(handle, subtree_index, | |
3403 | handle->h_buffer_credits, | |
3404 | right_path); | |
3405 | if (ret) { | |
3406 | mlog_errno(ret); | |
3407 | goto out; | |
3408 | } | |
3409 | ||
3410 | root_bh = left_path->p_node[subtree_index].bh; | |
3411 | BUG_ON(root_bh != right_path->p_node[subtree_index].bh); | |
3412 | ||
7dc02805 | 3413 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path, |
13723d00 | 3414 | subtree_index); |
677b9752 TM |
3415 | if (ret) { |
3416 | mlog_errno(ret); | |
3417 | goto out; | |
3418 | } | |
3419 | ||
3420 | for (i = subtree_index + 1; | |
3421 | i < path_num_items(right_path); i++) { | |
7dc02805 | 3422 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, |
13723d00 | 3423 | right_path, i); |
677b9752 TM |
3424 | if (ret) { |
3425 | mlog_errno(ret); | |
3426 | goto out; | |
3427 | } | |
3428 | ||
7dc02805 | 3429 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, |
13723d00 | 3430 | left_path, i); |
677b9752 TM |
3431 | if (ret) { |
3432 | mlog_errno(ret); | |
3433 | goto out; | |
3434 | } | |
3435 | } | |
3436 | ||
3437 | } else { | |
3438 | BUG_ON(index == le16_to_cpu(el->l_next_free_rec) - 1); | |
3439 | right_rec = &el->l_recs[index + 1]; | |
3440 | } | |
328d5752 | 3441 | |
7dc02805 | 3442 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, left_path, |
13723d00 | 3443 | path_num_items(left_path) - 1); |
328d5752 MF |
3444 | if (ret) { |
3445 | mlog_errno(ret); | |
3446 | goto out; | |
3447 | } | |
3448 | ||
3449 | le16_add_cpu(&left_rec->e_leaf_clusters, -split_clusters); | |
3450 | ||
3451 | le32_add_cpu(&right_rec->e_cpos, -split_clusters); | |
3452 | le64_add_cpu(&right_rec->e_blkno, | |
7dc02805 JB |
3453 | -ocfs2_clusters_to_blocks(ocfs2_metadata_cache_get_super(et->et_ci), |
3454 | split_clusters)); | |
328d5752 MF |
3455 | le16_add_cpu(&right_rec->e_leaf_clusters, split_clusters); |
3456 | ||
3457 | ocfs2_cleanup_merge(el, index); | |
3458 | ||
ec20cec7 | 3459 | ocfs2_journal_dirty(handle, bh); |
677b9752 | 3460 | if (right_path) { |
ec20cec7 | 3461 | ocfs2_journal_dirty(handle, path_leaf_bh(right_path)); |
4619c73e JB |
3462 | ocfs2_complete_edge_insert(handle, left_path, right_path, |
3463 | subtree_index); | |
677b9752 TM |
3464 | } |
3465 | out: | |
fd90d4df | 3466 | ocfs2_free_path(right_path); |
677b9752 TM |
3467 | return ret; |
3468 | } | |
3469 | ||
4fe82c31 | 3470 | static int ocfs2_get_left_path(struct ocfs2_extent_tree *et, |
677b9752 TM |
3471 | struct ocfs2_path *right_path, |
3472 | struct ocfs2_path **ret_left_path) | |
3473 | { | |
3474 | int ret; | |
3475 | u32 left_cpos; | |
3476 | struct ocfs2_path *left_path = NULL; | |
3477 | ||
3478 | *ret_left_path = NULL; | |
3479 | ||
3480 | /* This function shouldn't be called for non-trees. */ | |
3481 | BUG_ON(right_path->p_tree_depth == 0); | |
3482 | ||
4fe82c31 | 3483 | ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci), |
677b9752 TM |
3484 | right_path, &left_cpos); |
3485 | if (ret) { | |
3486 | mlog_errno(ret); | |
3487 | goto out; | |
3488 | } | |
3489 | ||
3490 | /* This function shouldn't be called for the leftmost leaf. */ | |
3491 | BUG_ON(left_cpos == 0); | |
3492 | ||
ffdd7a54 | 3493 | left_path = ocfs2_new_path_from_path(right_path); |
677b9752 TM |
3494 | if (!left_path) { |
3495 | ret = -ENOMEM; | |
3496 | mlog_errno(ret); | |
3497 | goto out; | |
3498 | } | |
3499 | ||
4fe82c31 | 3500 | ret = ocfs2_find_path(et->et_ci, left_path, left_cpos); |
677b9752 TM |
3501 | if (ret) { |
3502 | mlog_errno(ret); | |
3503 | goto out; | |
3504 | } | |
3505 | ||
3506 | *ret_left_path = left_path; | |
328d5752 | 3507 | out: |
677b9752 TM |
3508 | if (ret) |
3509 | ocfs2_free_path(left_path); | |
328d5752 MF |
3510 | return ret; |
3511 | } | |
3512 | ||
3513 | /* | |
3514 | * Remove split_rec clusters from the record at index and merge them | |
677b9752 TM |
3515 | * onto the tail of the record "before" it. |
3516 | * For index > 0, the "before" means the extent rec at index - 1. | |
3517 | * | |
3518 | * For index == 0, the "before" means the last record of the previous | |
3519 | * extent block. And there is also a situation that we may need to | |
3520 | * remove the rightmost leaf extent block in the right_path and change | |
3521 | * the right path to indicate the new rightmost path. | |
328d5752 | 3522 | */ |
4fe82c31 | 3523 | static int ocfs2_merge_rec_left(struct ocfs2_path *right_path, |
328d5752 | 3524 | handle_t *handle, |
4fe82c31 | 3525 | struct ocfs2_extent_tree *et, |
328d5752 | 3526 | struct ocfs2_extent_rec *split_rec, |
677b9752 TM |
3527 | struct ocfs2_cached_dealloc_ctxt *dealloc, |
3528 | int index) | |
328d5752 | 3529 | { |
677b9752 | 3530 | int ret, i, subtree_index = 0, has_empty_extent = 0; |
328d5752 MF |
3531 | unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters); |
3532 | struct ocfs2_extent_rec *left_rec; | |
3533 | struct ocfs2_extent_rec *right_rec; | |
677b9752 TM |
3534 | struct ocfs2_extent_list *el = path_leaf_el(right_path); |
3535 | struct buffer_head *bh = path_leaf_bh(right_path); | |
3536 | struct buffer_head *root_bh = NULL; | |
3537 | struct ocfs2_path *left_path = NULL; | |
3538 | struct ocfs2_extent_list *left_el; | |
328d5752 | 3539 | |
677b9752 | 3540 | BUG_ON(index < 0); |
328d5752 | 3541 | |
328d5752 | 3542 | right_rec = &el->l_recs[index]; |
677b9752 TM |
3543 | if (index == 0) { |
3544 | /* we meet with a cross extent block merge. */ | |
4fe82c31 | 3545 | ret = ocfs2_get_left_path(et, right_path, &left_path); |
677b9752 TM |
3546 | if (ret) { |
3547 | mlog_errno(ret); | |
992ef6e7 | 3548 | return ret; |
677b9752 TM |
3549 | } |
3550 | ||
3551 | left_el = path_leaf_el(left_path); | |
3552 | BUG_ON(le16_to_cpu(left_el->l_next_free_rec) != | |
3553 | le16_to_cpu(left_el->l_count)); | |
3554 | ||
3555 | left_rec = &left_el->l_recs[ | |
3556 | le16_to_cpu(left_el->l_next_free_rec) - 1]; | |
3557 | BUG_ON(le32_to_cpu(left_rec->e_cpos) + | |
3558 | le16_to_cpu(left_rec->e_leaf_clusters) != | |
3559 | le32_to_cpu(split_rec->e_cpos)); | |
3560 | ||
7dc02805 JB |
3561 | subtree_index = ocfs2_find_subtree_root(et, left_path, |
3562 | right_path); | |
677b9752 TM |
3563 | |
3564 | ret = ocfs2_extend_rotate_transaction(handle, subtree_index, | |
3565 | handle->h_buffer_credits, | |
3566 | left_path); | |
3567 | if (ret) { | |
3568 | mlog_errno(ret); | |
3569 | goto out; | |
3570 | } | |
3571 | ||
3572 | root_bh = left_path->p_node[subtree_index].bh; | |
3573 | BUG_ON(root_bh != right_path->p_node[subtree_index].bh); | |
3574 | ||
4fe82c31 | 3575 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path, |
13723d00 | 3576 | subtree_index); |
677b9752 TM |
3577 | if (ret) { |
3578 | mlog_errno(ret); | |
3579 | goto out; | |
3580 | } | |
3581 | ||
3582 | for (i = subtree_index + 1; | |
3583 | i < path_num_items(right_path); i++) { | |
4fe82c31 | 3584 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, |
13723d00 | 3585 | right_path, i); |
677b9752 TM |
3586 | if (ret) { |
3587 | mlog_errno(ret); | |
3588 | goto out; | |
3589 | } | |
3590 | ||
4fe82c31 | 3591 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, |
13723d00 | 3592 | left_path, i); |
677b9752 TM |
3593 | if (ret) { |
3594 | mlog_errno(ret); | |
3595 | goto out; | |
3596 | } | |
3597 | } | |
3598 | } else { | |
3599 | left_rec = &el->l_recs[index - 1]; | |
3600 | if (ocfs2_is_empty_extent(&el->l_recs[0])) | |
3601 | has_empty_extent = 1; | |
3602 | } | |
328d5752 | 3603 | |
4fe82c31 | 3604 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path, |
9047beab | 3605 | path_num_items(right_path) - 1); |
328d5752 MF |
3606 | if (ret) { |
3607 | mlog_errno(ret); | |
3608 | goto out; | |
3609 | } | |
3610 | ||
3611 | if (has_empty_extent && index == 1) { | |
3612 | /* | |
3613 | * The easy case - we can just plop the record right in. | |
3614 | */ | |
3615 | *left_rec = *split_rec; | |
677b9752 | 3616 | } else |
328d5752 | 3617 | le16_add_cpu(&left_rec->e_leaf_clusters, split_clusters); |
328d5752 MF |
3618 | |
3619 | le32_add_cpu(&right_rec->e_cpos, split_clusters); | |
3620 | le64_add_cpu(&right_rec->e_blkno, | |
4fe82c31 JB |
3621 | ocfs2_clusters_to_blocks(ocfs2_metadata_cache_get_super(et->et_ci), |
3622 | split_clusters)); | |
328d5752 MF |
3623 | le16_add_cpu(&right_rec->e_leaf_clusters, -split_clusters); |
3624 | ||
3625 | ocfs2_cleanup_merge(el, index); | |
3626 | ||
ec20cec7 | 3627 | ocfs2_journal_dirty(handle, bh); |
677b9752 | 3628 | if (left_path) { |
ec20cec7 | 3629 | ocfs2_journal_dirty(handle, path_leaf_bh(left_path)); |
677b9752 TM |
3630 | |
3631 | /* | |
3632 | * In the situation that the right_rec is empty and the extent | |
3633 | * block is empty also, ocfs2_complete_edge_insert can't handle | |
3634 | * it and we need to delete the right extent block. | |
3635 | */ | |
3636 | if (le16_to_cpu(right_rec->e_leaf_clusters) == 0 && | |
3637 | le16_to_cpu(el->l_next_free_rec) == 1) { | |
17215989 X |
3638 | /* extend credit for ocfs2_remove_rightmost_path */ |
3639 | ret = ocfs2_extend_rotate_transaction(handle, 0, | |
3640 | handle->h_buffer_credits, | |
3641 | right_path); | |
3642 | if (ret) { | |
3643 | mlog_errno(ret); | |
3644 | goto out; | |
3645 | } | |
677b9752 | 3646 | |
70f18c08 | 3647 | ret = ocfs2_remove_rightmost_path(handle, et, |
e7d4cb6b | 3648 | right_path, |
70f18c08 | 3649 | dealloc); |
677b9752 TM |
3650 | if (ret) { |
3651 | mlog_errno(ret); | |
3652 | goto out; | |
3653 | } | |
3654 | ||
3655 | /* Now the rightmost extent block has been deleted. | |
3656 | * So we use the new rightmost path. | |
3657 | */ | |
3658 | ocfs2_mv_path(right_path, left_path); | |
3659 | left_path = NULL; | |
3660 | } else | |
4619c73e | 3661 | ocfs2_complete_edge_insert(handle, left_path, |
677b9752 TM |
3662 | right_path, subtree_index); |
3663 | } | |
328d5752 | 3664 | out: |
fd90d4df | 3665 | ocfs2_free_path(left_path); |
328d5752 MF |
3666 | return ret; |
3667 | } | |
3668 | ||
c495dd24 JB |
3669 | static int ocfs2_try_to_merge_extent(handle_t *handle, |
3670 | struct ocfs2_extent_tree *et, | |
677b9752 | 3671 | struct ocfs2_path *path, |
328d5752 MF |
3672 | int split_index, |
3673 | struct ocfs2_extent_rec *split_rec, | |
3674 | struct ocfs2_cached_dealloc_ctxt *dealloc, | |
c495dd24 | 3675 | struct ocfs2_merge_ctxt *ctxt) |
328d5752 | 3676 | { |
518d7269 | 3677 | int ret = 0; |
677b9752 | 3678 | struct ocfs2_extent_list *el = path_leaf_el(path); |
328d5752 MF |
3679 | struct ocfs2_extent_rec *rec = &el->l_recs[split_index]; |
3680 | ||
3681 | BUG_ON(ctxt->c_contig_type == CONTIG_NONE); | |
3682 | ||
518d7269 | 3683 | if (ctxt->c_split_covers_rec && ctxt->c_has_empty_extent) { |
17215989 X |
3684 | /* extend credit for ocfs2_remove_rightmost_path */ |
3685 | ret = ocfs2_extend_rotate_transaction(handle, 0, | |
3686 | handle->h_buffer_credits, | |
3687 | path); | |
3688 | if (ret) { | |
3689 | mlog_errno(ret); | |
3690 | goto out; | |
3691 | } | |
518d7269 TM |
3692 | /* |
3693 | * The merge code will need to create an empty | |
3694 | * extent to take the place of the newly | |
3695 | * emptied slot. Remove any pre-existing empty | |
3696 | * extents - having more than one in a leaf is | |
3697 | * illegal. | |
3698 | */ | |
70f18c08 | 3699 | ret = ocfs2_rotate_tree_left(handle, et, path, dealloc); |
518d7269 TM |
3700 | if (ret) { |
3701 | mlog_errno(ret); | |
3702 | goto out; | |
328d5752 | 3703 | } |
518d7269 TM |
3704 | split_index--; |
3705 | rec = &el->l_recs[split_index]; | |
328d5752 MF |
3706 | } |
3707 | ||
3708 | if (ctxt->c_contig_type == CONTIG_LEFTRIGHT) { | |
3709 | /* | |
3710 | * Left-right contig implies this. | |
3711 | */ | |
3712 | BUG_ON(!ctxt->c_split_covers_rec); | |
328d5752 MF |
3713 | |
3714 | /* | |
3715 | * Since the leftright insert always covers the entire | |
3716 | * extent, this call will delete the insert record | |
3717 | * entirely, resulting in an empty extent record added to | |
3718 | * the extent block. | |
3719 | * | |
3720 | * Since the adding of an empty extent shifts | |
3721 | * everything back to the right, there's no need to | |
3722 | * update split_index here. | |
677b9752 TM |
3723 | * |
3724 | * When the split_index is zero, we need to merge it to the | |
3725 | * prevoius extent block. It is more efficient and easier | |
3726 | * if we do merge_right first and merge_left later. | |
328d5752 | 3727 | */ |
4fe82c31 | 3728 | ret = ocfs2_merge_rec_right(path, handle, et, split_rec, |
677b9752 | 3729 | split_index); |
328d5752 MF |
3730 | if (ret) { |
3731 | mlog_errno(ret); | |
3732 | goto out; | |
3733 | } | |
3734 | ||
3735 | /* | |
3736 | * We can only get this from logic error above. | |
3737 | */ | |
3738 | BUG_ON(!ocfs2_is_empty_extent(&el->l_recs[0])); | |
3739 | ||
17215989 X |
3740 | /* extend credit for ocfs2_remove_rightmost_path */ |
3741 | ret = ocfs2_extend_rotate_transaction(handle, 0, | |
3742 | handle->h_buffer_credits, | |
3743 | path); | |
3744 | if (ret) { | |
3745 | mlog_errno(ret); | |
3746 | goto out; | |
3747 | } | |
3748 | ||
677b9752 | 3749 | /* The merge left us with an empty extent, remove it. */ |
70f18c08 | 3750 | ret = ocfs2_rotate_tree_left(handle, et, path, dealloc); |
328d5752 MF |
3751 | if (ret) { |
3752 | mlog_errno(ret); | |
3753 | goto out; | |
3754 | } | |
677b9752 | 3755 | |
328d5752 MF |
3756 | rec = &el->l_recs[split_index]; |
3757 | ||
3758 | /* | |
3759 | * Note that we don't pass split_rec here on purpose - | |
677b9752 | 3760 | * we've merged it into the rec already. |
328d5752 | 3761 | */ |
4fe82c31 JB |
3762 | ret = ocfs2_merge_rec_left(path, handle, et, rec, |
3763 | dealloc, split_index); | |
677b9752 | 3764 | |
328d5752 MF |
3765 | if (ret) { |
3766 | mlog_errno(ret); | |
3767 | goto out; | |
3768 | } | |
3769 | ||
17215989 X |
3770 | /* extend credit for ocfs2_remove_rightmost_path */ |
3771 | ret = ocfs2_extend_rotate_transaction(handle, 0, | |
3772 | handle->h_buffer_credits, | |
3773 | path); | |
3774 | if (ret) { | |
3775 | mlog_errno(ret); | |
3776 | goto out; | |
3777 | } | |
3778 | ||
70f18c08 | 3779 | ret = ocfs2_rotate_tree_left(handle, et, path, dealloc); |
328d5752 MF |
3780 | /* |
3781 | * Error from this last rotate is not critical, so | |
3782 | * print but don't bubble it up. | |
3783 | */ | |
3784 | if (ret) | |
3785 | mlog_errno(ret); | |
3786 | ret = 0; | |
3787 | } else { | |
3788 | /* | |
3789 | * Merge a record to the left or right. | |
3790 | * | |
3791 | * 'contig_type' is relative to the existing record, | |
3792 | * so for example, if we're "right contig", it's to | |
3793 | * the record on the left (hence the left merge). | |
3794 | */ | |
3795 | if (ctxt->c_contig_type == CONTIG_RIGHT) { | |
4fe82c31 JB |
3796 | ret = ocfs2_merge_rec_left(path, handle, et, |
3797 | split_rec, dealloc, | |
328d5752 MF |
3798 | split_index); |
3799 | if (ret) { | |
3800 | mlog_errno(ret); | |
3801 | goto out; | |
3802 | } | |
3803 | } else { | |
4fe82c31 | 3804 | ret = ocfs2_merge_rec_right(path, handle, |
7dc02805 | 3805 | et, split_rec, |
328d5752 MF |
3806 | split_index); |
3807 | if (ret) { | |
3808 | mlog_errno(ret); | |
3809 | goto out; | |
3810 | } | |
3811 | } | |
3812 | ||
3813 | if (ctxt->c_split_covers_rec) { | |
17215989 X |
3814 | /* extend credit for ocfs2_remove_rightmost_path */ |
3815 | ret = ocfs2_extend_rotate_transaction(handle, 0, | |
3816 | handle->h_buffer_credits, | |
3817 | path); | |
3818 | if (ret) { | |
3819 | mlog_errno(ret); | |
3820 | ret = 0; | |
3821 | goto out; | |
3822 | } | |
3823 | ||
328d5752 MF |
3824 | /* |
3825 | * The merge may have left an empty extent in | |
3826 | * our leaf. Try to rotate it away. | |
3827 | */ | |
70f18c08 JB |
3828 | ret = ocfs2_rotate_tree_left(handle, et, path, |
3829 | dealloc); | |
328d5752 MF |
3830 | if (ret) |
3831 | mlog_errno(ret); | |
3832 | ret = 0; | |
3833 | } | |
3834 | } | |
3835 | ||
3836 | out: | |
3837 | return ret; | |
3838 | } | |
3839 | ||
3840 | static void ocfs2_subtract_from_rec(struct super_block *sb, | |
3841 | enum ocfs2_split_type split, | |
3842 | struct ocfs2_extent_rec *rec, | |
3843 | struct ocfs2_extent_rec *split_rec) | |
3844 | { | |
3845 | u64 len_blocks; | |
3846 | ||
3847 | len_blocks = ocfs2_clusters_to_blocks(sb, | |
3848 | le16_to_cpu(split_rec->e_leaf_clusters)); | |
3849 | ||
3850 | if (split == SPLIT_LEFT) { | |
3851 | /* | |
3852 | * Region is on the left edge of the existing | |
3853 | * record. | |
3854 | */ | |
3855 | le32_add_cpu(&rec->e_cpos, | |
3856 | le16_to_cpu(split_rec->e_leaf_clusters)); | |
3857 | le64_add_cpu(&rec->e_blkno, len_blocks); | |
3858 | le16_add_cpu(&rec->e_leaf_clusters, | |
3859 | -le16_to_cpu(split_rec->e_leaf_clusters)); | |
3860 | } else { | |
3861 | /* | |
3862 | * Region is on the right edge of the existing | |
3863 | * record. | |
3864 | */ | |
3865 | le16_add_cpu(&rec->e_leaf_clusters, | |
3866 | -le16_to_cpu(split_rec->e_leaf_clusters)); | |
3867 | } | |
3868 | } | |
3869 | ||
3870 | /* | |
3871 | * Do the final bits of extent record insertion at the target leaf | |
3872 | * list. If this leaf is part of an allocation tree, it is assumed | |
3873 | * that the tree above has been prepared. | |
3874 | */ | |
d5628623 JB |
3875 | static void ocfs2_insert_at_leaf(struct ocfs2_extent_tree *et, |
3876 | struct ocfs2_extent_rec *insert_rec, | |
328d5752 | 3877 | struct ocfs2_extent_list *el, |
d5628623 | 3878 | struct ocfs2_insert_type *insert) |
328d5752 MF |
3879 | { |
3880 | int i = insert->ins_contig_index; | |
3881 | unsigned int range; | |
3882 | struct ocfs2_extent_rec *rec; | |
3883 | ||
3884 | BUG_ON(le16_to_cpu(el->l_tree_depth) != 0); | |
3885 | ||
3886 | if (insert->ins_split != SPLIT_NONE) { | |
3887 | i = ocfs2_search_extent_list(el, le32_to_cpu(insert_rec->e_cpos)); | |
3888 | BUG_ON(i == -1); | |
3889 | rec = &el->l_recs[i]; | |
d5628623 JB |
3890 | ocfs2_subtract_from_rec(ocfs2_metadata_cache_get_super(et->et_ci), |
3891 | insert->ins_split, rec, | |
328d5752 MF |
3892 | insert_rec); |
3893 | goto rotate; | |
3894 | } | |
3895 | ||
3896 | /* | |
3897 | * Contiguous insert - either left or right. | |
3898 | */ | |
3899 | if (insert->ins_contig != CONTIG_NONE) { | |
3900 | rec = &el->l_recs[i]; | |
3901 | if (insert->ins_contig == CONTIG_LEFT) { | |
3902 | rec->e_blkno = insert_rec->e_blkno; | |
3903 | rec->e_cpos = insert_rec->e_cpos; | |
3904 | } | |
3905 | le16_add_cpu(&rec->e_leaf_clusters, | |
3906 | le16_to_cpu(insert_rec->e_leaf_clusters)); | |
3907 | return; | |
3908 | } | |
3909 | ||
3910 | /* | |
3911 | * Handle insert into an empty leaf. | |
3912 | */ | |
3913 | if (le16_to_cpu(el->l_next_free_rec) == 0 || | |
3914 | ((le16_to_cpu(el->l_next_free_rec) == 1) && | |
3915 | ocfs2_is_empty_extent(&el->l_recs[0]))) { | |
3916 | el->l_recs[0] = *insert_rec; | |
3917 | el->l_next_free_rec = cpu_to_le16(1); | |
3918 | return; | |
3919 | } | |
3920 | ||
3921 | /* | |
3922 | * Appending insert. | |
3923 | */ | |
3924 | if (insert->ins_appending == APPEND_TAIL) { | |
3925 | i = le16_to_cpu(el->l_next_free_rec) - 1; | |
3926 | rec = &el->l_recs[i]; | |
3927 | range = le32_to_cpu(rec->e_cpos) | |
3928 | + le16_to_cpu(rec->e_leaf_clusters); | |
3929 | BUG_ON(le32_to_cpu(insert_rec->e_cpos) < range); | |
3930 | ||
3931 | mlog_bug_on_msg(le16_to_cpu(el->l_next_free_rec) >= | |
3932 | le16_to_cpu(el->l_count), | |
d5628623 | 3933 | "owner %llu, depth %u, count %u, next free %u, " |
328d5752 MF |
3934 | "rec.cpos %u, rec.clusters %u, " |
3935 | "insert.cpos %u, insert.clusters %u\n", | |
d5628623 | 3936 | ocfs2_metadata_cache_owner(et->et_ci), |
328d5752 MF |
3937 | le16_to_cpu(el->l_tree_depth), |
3938 | le16_to_cpu(el->l_count), | |
3939 | le16_to_cpu(el->l_next_free_rec), | |
3940 | le32_to_cpu(el->l_recs[i].e_cpos), | |
3941 | le16_to_cpu(el->l_recs[i].e_leaf_clusters), | |
3942 | le32_to_cpu(insert_rec->e_cpos), | |
3943 | le16_to_cpu(insert_rec->e_leaf_clusters)); | |
3944 | i++; | |
3945 | el->l_recs[i] = *insert_rec; | |
3946 | le16_add_cpu(&el->l_next_free_rec, 1); | |
3947 | return; | |
3948 | } | |
3949 | ||
3950 | rotate: | |
3951 | /* | |
3952 | * Ok, we have to rotate. | |
3953 | * | |
3954 | * At this point, it is safe to assume that inserting into an | |
3955 | * empty leaf and appending to a leaf have both been handled | |
3956 | * above. | |
3957 | * | |
3958 | * This leaf needs to have space, either by the empty 1st | |
3959 | * extent record, or by virtue of an l_next_rec < l_count. | |
3960 | */ | |
3961 | ocfs2_rotate_leaf(el, insert_rec); | |
3962 | } | |
3963 | ||
d401dc12 JB |
3964 | static void ocfs2_adjust_rightmost_records(handle_t *handle, |
3965 | struct ocfs2_extent_tree *et, | |
328d5752 MF |
3966 | struct ocfs2_path *path, |
3967 | struct ocfs2_extent_rec *insert_rec) | |
3968 | { | |
d22aa615 | 3969 | int i, next_free; |
328d5752 MF |
3970 | struct buffer_head *bh; |
3971 | struct ocfs2_extent_list *el; | |
3972 | struct ocfs2_extent_rec *rec; | |
3973 | ||
3974 | /* | |
3975 | * Update everything except the leaf block. | |
3976 | */ | |
3977 | for (i = 0; i < path->p_tree_depth; i++) { | |
3978 | bh = path->p_node[i].bh; | |
3979 | el = path->p_node[i].el; | |
3980 | ||
dcd0538f MF |
3981 | next_free = le16_to_cpu(el->l_next_free_rec); |
3982 | if (next_free == 0) { | |
d401dc12 | 3983 | ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci), |
7ecef14a | 3984 | "Owner %llu has a bad extent list\n", |
d401dc12 | 3985 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci)); |
328d5752 MF |
3986 | return; |
3987 | } | |
3988 | ||
3989 | rec = &el->l_recs[next_free - 1]; | |
3990 | ||
3991 | rec->e_int_clusters = insert_rec->e_cpos; | |
3992 | le32_add_cpu(&rec->e_int_clusters, | |
3993 | le16_to_cpu(insert_rec->e_leaf_clusters)); | |
3994 | le32_add_cpu(&rec->e_int_clusters, | |
3995 | -le32_to_cpu(rec->e_cpos)); | |
3996 | ||
ec20cec7 | 3997 | ocfs2_journal_dirty(handle, bh); |
328d5752 MF |
3998 | } |
3999 | } | |
4000 | ||
d401dc12 JB |
4001 | static int ocfs2_append_rec_to_path(handle_t *handle, |
4002 | struct ocfs2_extent_tree *et, | |
328d5752 MF |
4003 | struct ocfs2_extent_rec *insert_rec, |
4004 | struct ocfs2_path *right_path, | |
4005 | struct ocfs2_path **ret_left_path) | |
4006 | { | |
4007 | int ret, next_free; | |
4008 | struct ocfs2_extent_list *el; | |
4009 | struct ocfs2_path *left_path = NULL; | |
4010 | ||
4011 | *ret_left_path = NULL; | |
4012 | ||
4013 | /* | |
4014 | * This shouldn't happen for non-trees. The extent rec cluster | |
4015 | * count manipulation below only works for interior nodes. | |
4016 | */ | |
4017 | BUG_ON(right_path->p_tree_depth == 0); | |
4018 | ||
4019 | /* | |
4020 | * If our appending insert is at the leftmost edge of a leaf, | |
4021 | * then we might need to update the rightmost records of the | |
4022 | * neighboring path. | |
4023 | */ | |
4024 | el = path_leaf_el(right_path); | |
4025 | next_free = le16_to_cpu(el->l_next_free_rec); | |
4026 | if (next_free == 0 || | |
4027 | (next_free == 1 && ocfs2_is_empty_extent(&el->l_recs[0]))) { | |
4028 | u32 left_cpos; | |
4029 | ||
d401dc12 JB |
4030 | ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci), |
4031 | right_path, &left_cpos); | |
328d5752 MF |
4032 | if (ret) { |
4033 | mlog_errno(ret); | |
dcd0538f MF |
4034 | goto out; |
4035 | } | |
4036 | ||
a09d09b8 TM |
4037 | trace_ocfs2_append_rec_to_path( |
4038 | (unsigned long long) | |
4039 | ocfs2_metadata_cache_owner(et->et_ci), | |
4040 | le32_to_cpu(insert_rec->e_cpos), | |
4041 | left_cpos); | |
e48edee2 | 4042 | |
328d5752 MF |
4043 | /* |
4044 | * No need to worry if the append is already in the | |
4045 | * leftmost leaf. | |
4046 | */ | |
4047 | if (left_cpos) { | |
ffdd7a54 | 4048 | left_path = ocfs2_new_path_from_path(right_path); |
328d5752 MF |
4049 | if (!left_path) { |
4050 | ret = -ENOMEM; | |
4051 | mlog_errno(ret); | |
4052 | goto out; | |
4053 | } | |
dcd0538f | 4054 | |
d401dc12 | 4055 | ret = ocfs2_find_path(et->et_ci, left_path, |
facdb77f | 4056 | left_cpos); |
328d5752 MF |
4057 | if (ret) { |
4058 | mlog_errno(ret); | |
4059 | goto out; | |
4060 | } | |
dcd0538f | 4061 | |
328d5752 MF |
4062 | /* |
4063 | * ocfs2_insert_path() will pass the left_path to the | |
4064 | * journal for us. | |
4065 | */ | |
4066 | } | |
4067 | } | |
dcd0538f | 4068 | |
d401dc12 | 4069 | ret = ocfs2_journal_access_path(et->et_ci, handle, right_path); |
328d5752 MF |
4070 | if (ret) { |
4071 | mlog_errno(ret); | |
4072 | goto out; | |
dcd0538f MF |
4073 | } |
4074 | ||
d401dc12 | 4075 | ocfs2_adjust_rightmost_records(handle, et, right_path, insert_rec); |
328d5752 | 4076 | |
dcd0538f MF |
4077 | *ret_left_path = left_path; |
4078 | ret = 0; | |
4079 | out: | |
4080 | if (ret != 0) | |
4081 | ocfs2_free_path(left_path); | |
4082 | ||
4083 | return ret; | |
4084 | } | |
4085 | ||
c38e52bb | 4086 | static void ocfs2_split_record(struct ocfs2_extent_tree *et, |
328d5752 MF |
4087 | struct ocfs2_path *left_path, |
4088 | struct ocfs2_path *right_path, | |
4089 | struct ocfs2_extent_rec *split_rec, | |
4090 | enum ocfs2_split_type split) | |
4091 | { | |
4092 | int index; | |
4093 | u32 cpos = le32_to_cpu(split_rec->e_cpos); | |
4094 | struct ocfs2_extent_list *left_el = NULL, *right_el, *insert_el, *el; | |
4095 | struct ocfs2_extent_rec *rec, *tmprec; | |
4096 | ||
c19a28e1 | 4097 | right_el = path_leaf_el(right_path); |
328d5752 MF |
4098 | if (left_path) |
4099 | left_el = path_leaf_el(left_path); | |
4100 | ||
4101 | el = right_el; | |
4102 | insert_el = right_el; | |
4103 | index = ocfs2_search_extent_list(el, cpos); | |
4104 | if (index != -1) { | |
4105 | if (index == 0 && left_path) { | |
4106 | BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0])); | |
4107 | ||
4108 | /* | |
4109 | * This typically means that the record | |
4110 | * started in the left path but moved to the | |
4111 | * right as a result of rotation. We either | |
4112 | * move the existing record to the left, or we | |
4113 | * do the later insert there. | |
4114 | * | |
4115 | * In this case, the left path should always | |
4116 | * exist as the rotate code will have passed | |
4117 | * it back for a post-insert update. | |
4118 | */ | |
4119 | ||
4120 | if (split == SPLIT_LEFT) { | |
4121 | /* | |
4122 | * It's a left split. Since we know | |
4123 | * that the rotate code gave us an | |
4124 | * empty extent in the left path, we | |
4125 | * can just do the insert there. | |
4126 | */ | |
4127 | insert_el = left_el; | |
4128 | } else { | |
4129 | /* | |
4130 | * Right split - we have to move the | |
4131 | * existing record over to the left | |
4132 | * leaf. The insert will be into the | |
4133 | * newly created empty extent in the | |
4134 | * right leaf. | |
4135 | */ | |
4136 | tmprec = &right_el->l_recs[index]; | |
4137 | ocfs2_rotate_leaf(left_el, tmprec); | |
4138 | el = left_el; | |
4139 | ||
4140 | memset(tmprec, 0, sizeof(*tmprec)); | |
4141 | index = ocfs2_search_extent_list(left_el, cpos); | |
4142 | BUG_ON(index == -1); | |
4143 | } | |
4144 | } | |
4145 | } else { | |
4146 | BUG_ON(!left_path); | |
4147 | BUG_ON(!ocfs2_is_empty_extent(&left_el->l_recs[0])); | |
4148 | /* | |
4149 | * Left path is easy - we can just allow the insert to | |
4150 | * happen. | |
4151 | */ | |
4152 | el = left_el; | |
4153 | insert_el = left_el; | |
4154 | index = ocfs2_search_extent_list(el, cpos); | |
4155 | BUG_ON(index == -1); | |
4156 | } | |
4157 | ||
4158 | rec = &el->l_recs[index]; | |
c38e52bb JB |
4159 | ocfs2_subtract_from_rec(ocfs2_metadata_cache_get_super(et->et_ci), |
4160 | split, rec, split_rec); | |
328d5752 MF |
4161 | ocfs2_rotate_leaf(insert_el, split_rec); |
4162 | } | |
4163 | ||
dcd0538f | 4164 | /* |
e7d4cb6b TM |
4165 | * This function only does inserts on an allocation b-tree. For tree |
4166 | * depth = 0, ocfs2_insert_at_leaf() is called directly. | |
dcd0538f MF |
4167 | * |
4168 | * right_path is the path we want to do the actual insert | |
4169 | * in. left_path should only be passed in if we need to update that | |
4170 | * portion of the tree after an edge insert. | |
4171 | */ | |
3505bec0 | 4172 | static int ocfs2_insert_path(handle_t *handle, |
7dc02805 | 4173 | struct ocfs2_extent_tree *et, |
dcd0538f MF |
4174 | struct ocfs2_path *left_path, |
4175 | struct ocfs2_path *right_path, | |
4176 | struct ocfs2_extent_rec *insert_rec, | |
4177 | struct ocfs2_insert_type *insert) | |
4178 | { | |
4179 | int ret, subtree_index; | |
4180 | struct buffer_head *leaf_bh = path_leaf_bh(right_path); | |
dcd0538f | 4181 | |
dcd0538f | 4182 | if (left_path) { |
dcd0538f MF |
4183 | /* |
4184 | * There's a chance that left_path got passed back to | |
4185 | * us without being accounted for in the | |
4186 | * journal. Extend our transaction here to be sure we | |
4187 | * can change those blocks. | |
4188 | */ | |
c901fb00 | 4189 | ret = ocfs2_extend_trans(handle, left_path->p_tree_depth); |
dcd0538f MF |
4190 | if (ret < 0) { |
4191 | mlog_errno(ret); | |
4192 | goto out; | |
4193 | } | |
4194 | ||
7dc02805 | 4195 | ret = ocfs2_journal_access_path(et->et_ci, handle, left_path); |
dcd0538f MF |
4196 | if (ret < 0) { |
4197 | mlog_errno(ret); | |
4198 | goto out; | |
4199 | } | |
4200 | } | |
4201 | ||
e8aed345 MF |
4202 | /* |
4203 | * Pass both paths to the journal. The majority of inserts | |
4204 | * will be touching all components anyway. | |
4205 | */ | |
7dc02805 | 4206 | ret = ocfs2_journal_access_path(et->et_ci, handle, right_path); |
e8aed345 MF |
4207 | if (ret < 0) { |
4208 | mlog_errno(ret); | |
4209 | goto out; | |
4210 | } | |
4211 | ||
328d5752 MF |
4212 | if (insert->ins_split != SPLIT_NONE) { |
4213 | /* | |
4214 | * We could call ocfs2_insert_at_leaf() for some types | |
c78bad11 | 4215 | * of splits, but it's easier to just let one separate |
328d5752 MF |
4216 | * function sort it all out. |
4217 | */ | |
c38e52bb | 4218 | ocfs2_split_record(et, left_path, right_path, |
328d5752 | 4219 | insert_rec, insert->ins_split); |
e8aed345 MF |
4220 | |
4221 | /* | |
4222 | * Split might have modified either leaf and we don't | |
4223 | * have a guarantee that the later edge insert will | |
4224 | * dirty this for us. | |
4225 | */ | |
4226 | if (left_path) | |
ec20cec7 JB |
4227 | ocfs2_journal_dirty(handle, |
4228 | path_leaf_bh(left_path)); | |
328d5752 | 4229 | } else |
d5628623 JB |
4230 | ocfs2_insert_at_leaf(et, insert_rec, path_leaf_el(right_path), |
4231 | insert); | |
dcd0538f | 4232 | |
ec20cec7 | 4233 | ocfs2_journal_dirty(handle, leaf_bh); |
dcd0538f MF |
4234 | |
4235 | if (left_path) { | |
4236 | /* | |
4237 | * The rotate code has indicated that we need to fix | |
4238 | * up portions of the tree after the insert. | |
4239 | * | |
4240 | * XXX: Should we extend the transaction here? | |
4241 | */ | |
7dc02805 | 4242 | subtree_index = ocfs2_find_subtree_root(et, left_path, |
dcd0538f | 4243 | right_path); |
4619c73e JB |
4244 | ocfs2_complete_edge_insert(handle, left_path, right_path, |
4245 | subtree_index); | |
dcd0538f MF |
4246 | } |
4247 | ||
4248 | ret = 0; | |
4249 | out: | |
4250 | return ret; | |
4251 | } | |
4252 | ||
3505bec0 | 4253 | static int ocfs2_do_insert_extent(handle_t *handle, |
e7d4cb6b | 4254 | struct ocfs2_extent_tree *et, |
dcd0538f MF |
4255 | struct ocfs2_extent_rec *insert_rec, |
4256 | struct ocfs2_insert_type *type) | |
4257 | { | |
4258 | int ret, rotate = 0; | |
4259 | u32 cpos; | |
4260 | struct ocfs2_path *right_path = NULL; | |
4261 | struct ocfs2_path *left_path = NULL; | |
dcd0538f MF |
4262 | struct ocfs2_extent_list *el; |
4263 | ||
ce1d9ea6 | 4264 | el = et->et_root_el; |
dcd0538f | 4265 | |
d9a0a1f8 | 4266 | ret = ocfs2_et_root_journal_access(handle, et, |
13723d00 | 4267 | OCFS2_JOURNAL_ACCESS_WRITE); |
dcd0538f MF |
4268 | if (ret) { |
4269 | mlog_errno(ret); | |
4270 | goto out; | |
4271 | } | |
4272 | ||
4273 | if (le16_to_cpu(el->l_tree_depth) == 0) { | |
d5628623 | 4274 | ocfs2_insert_at_leaf(et, insert_rec, el, type); |
dcd0538f MF |
4275 | goto out_update_clusters; |
4276 | } | |
4277 | ||
ffdd7a54 | 4278 | right_path = ocfs2_new_path_from_et(et); |
dcd0538f MF |
4279 | if (!right_path) { |
4280 | ret = -ENOMEM; | |
4281 | mlog_errno(ret); | |
4282 | goto out; | |
4283 | } | |
4284 | ||
4285 | /* | |
4286 | * Determine the path to start with. Rotations need the | |
4287 | * rightmost path, everything else can go directly to the | |
4288 | * target leaf. | |
4289 | */ | |
4290 | cpos = le32_to_cpu(insert_rec->e_cpos); | |
4291 | if (type->ins_appending == APPEND_NONE && | |
4292 | type->ins_contig == CONTIG_NONE) { | |
4293 | rotate = 1; | |
4294 | cpos = UINT_MAX; | |
4295 | } | |
4296 | ||
facdb77f | 4297 | ret = ocfs2_find_path(et->et_ci, right_path, cpos); |
dcd0538f MF |
4298 | if (ret) { |
4299 | mlog_errno(ret); | |
4300 | goto out; | |
4301 | } | |
4302 | ||
4303 | /* | |
4304 | * Rotations and appends need special treatment - they modify | |
4305 | * parts of the tree's above them. | |
4306 | * | |
4307 | * Both might pass back a path immediate to the left of the | |
4308 | * one being inserted to. This will be cause | |
4309 | * ocfs2_insert_path() to modify the rightmost records of | |
4310 | * left_path to account for an edge insert. | |
4311 | * | |
4312 | * XXX: When modifying this code, keep in mind that an insert | |
4313 | * can wind up skipping both of these two special cases... | |
4314 | */ | |
4315 | if (rotate) { | |
1bbf0b8d | 4316 | ret = ocfs2_rotate_tree_right(handle, et, type->ins_split, |
dcd0538f MF |
4317 | le32_to_cpu(insert_rec->e_cpos), |
4318 | right_path, &left_path); | |
4319 | if (ret) { | |
4320 | mlog_errno(ret); | |
4321 | goto out; | |
4322 | } | |
e8aed345 MF |
4323 | |
4324 | /* | |
4325 | * ocfs2_rotate_tree_right() might have extended the | |
4326 | * transaction without re-journaling our tree root. | |
4327 | */ | |
d9a0a1f8 | 4328 | ret = ocfs2_et_root_journal_access(handle, et, |
13723d00 | 4329 | OCFS2_JOURNAL_ACCESS_WRITE); |
e8aed345 MF |
4330 | if (ret) { |
4331 | mlog_errno(ret); | |
4332 | goto out; | |
4333 | } | |
dcd0538f MF |
4334 | } else if (type->ins_appending == APPEND_TAIL |
4335 | && type->ins_contig != CONTIG_LEFT) { | |
d401dc12 | 4336 | ret = ocfs2_append_rec_to_path(handle, et, insert_rec, |
dcd0538f MF |
4337 | right_path, &left_path); |
4338 | if (ret) { | |
4339 | mlog_errno(ret); | |
4340 | goto out; | |
4341 | } | |
4342 | } | |
4343 | ||
3505bec0 | 4344 | ret = ocfs2_insert_path(handle, et, left_path, right_path, |
dcd0538f MF |
4345 | insert_rec, type); |
4346 | if (ret) { | |
4347 | mlog_errno(ret); | |
4348 | goto out; | |
4349 | } | |
4350 | ||
4351 | out_update_clusters: | |
328d5752 | 4352 | if (type->ins_split == SPLIT_NONE) |
6136ca5f | 4353 | ocfs2_et_update_clusters(et, |
35dc0aa3 | 4354 | le16_to_cpu(insert_rec->e_leaf_clusters)); |
dcd0538f | 4355 | |
ec20cec7 | 4356 | ocfs2_journal_dirty(handle, et->et_root_bh); |
dcd0538f MF |
4357 | |
4358 | out: | |
4359 | ocfs2_free_path(left_path); | |
4360 | ocfs2_free_path(right_path); | |
4361 | ||
4362 | return ret; | |
4363 | } | |
4364 | ||
9f99ad08 | 4365 | static int ocfs2_figure_merge_contig_type(struct ocfs2_extent_tree *et, |
a2970291 | 4366 | struct ocfs2_path *path, |
328d5752 | 4367 | struct ocfs2_extent_list *el, int index, |
9f99ad08 X |
4368 | struct ocfs2_extent_rec *split_rec, |
4369 | struct ocfs2_merge_ctxt *ctxt) | |
328d5752 | 4370 | { |
9f99ad08 | 4371 | int status = 0; |
328d5752 | 4372 | enum ocfs2_contig_type ret = CONTIG_NONE; |
ad5a4d70 TM |
4373 | u32 left_cpos, right_cpos; |
4374 | struct ocfs2_extent_rec *rec = NULL; | |
4375 | struct ocfs2_extent_list *new_el; | |
4376 | struct ocfs2_path *left_path = NULL, *right_path = NULL; | |
4377 | struct buffer_head *bh; | |
4378 | struct ocfs2_extent_block *eb; | |
a2970291 | 4379 | struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci); |
ad5a4d70 TM |
4380 | |
4381 | if (index > 0) { | |
4382 | rec = &el->l_recs[index - 1]; | |
4383 | } else if (path->p_tree_depth > 0) { | |
a2970291 | 4384 | status = ocfs2_find_cpos_for_left_leaf(sb, path, &left_cpos); |
ad5a4d70 | 4385 | if (status) |
06a269cc | 4386 | goto exit; |
ad5a4d70 TM |
4387 | |
4388 | if (left_cpos != 0) { | |
ffdd7a54 | 4389 | left_path = ocfs2_new_path_from_path(path); |
9f99ad08 X |
4390 | if (!left_path) { |
4391 | status = -ENOMEM; | |
4392 | mlog_errno(status); | |
06a269cc | 4393 | goto exit; |
9f99ad08 | 4394 | } |
ad5a4d70 | 4395 | |
a2970291 JB |
4396 | status = ocfs2_find_path(et->et_ci, left_path, |
4397 | left_cpos); | |
ad5a4d70 | 4398 | if (status) |
06a269cc | 4399 | goto free_left_path; |
ad5a4d70 TM |
4400 | |
4401 | new_el = path_leaf_el(left_path); | |
4402 | ||
4403 | if (le16_to_cpu(new_el->l_next_free_rec) != | |
4404 | le16_to_cpu(new_el->l_count)) { | |
4405 | bh = path_leaf_bh(left_path); | |
4406 | eb = (struct ocfs2_extent_block *)bh->b_data; | |
93f5920d JP |
4407 | status = ocfs2_error(sb, |
4408 | "Extent block #%llu has an invalid l_next_free_rec of %d. It should have matched the l_count of %d\n", | |
4409 | (unsigned long long)le64_to_cpu(eb->h_blkno), | |
4410 | le16_to_cpu(new_el->l_next_free_rec), | |
4411 | le16_to_cpu(new_el->l_count)); | |
06a269cc | 4412 | goto free_left_path; |
ad5a4d70 TM |
4413 | } |
4414 | rec = &new_el->l_recs[ | |
4415 | le16_to_cpu(new_el->l_next_free_rec) - 1]; | |
4416 | } | |
4417 | } | |
328d5752 MF |
4418 | |
4419 | /* | |
4420 | * We're careful to check for an empty extent record here - | |
4421 | * the merge code will know what to do if it sees one. | |
4422 | */ | |
ad5a4d70 | 4423 | if (rec) { |
328d5752 MF |
4424 | if (index == 1 && ocfs2_is_empty_extent(rec)) { |
4425 | if (split_rec->e_cpos == el->l_recs[index].e_cpos) | |
4426 | ret = CONTIG_RIGHT; | |
4427 | } else { | |
853a3a14 | 4428 | ret = ocfs2_et_extent_contig(et, rec, split_rec); |
328d5752 MF |
4429 | } |
4430 | } | |
4431 | ||
ad5a4d70 TM |
4432 | rec = NULL; |
4433 | if (index < (le16_to_cpu(el->l_next_free_rec) - 1)) | |
4434 | rec = &el->l_recs[index + 1]; | |
4435 | else if (le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count) && | |
4436 | path->p_tree_depth > 0) { | |
a2970291 | 4437 | status = ocfs2_find_cpos_for_right_leaf(sb, path, &right_cpos); |
ad5a4d70 | 4438 | if (status) |
06a269cc | 4439 | goto free_left_path; |
ad5a4d70 TM |
4440 | |
4441 | if (right_cpos == 0) | |
06a269cc | 4442 | goto free_left_path; |
ad5a4d70 | 4443 | |
ffdd7a54 | 4444 | right_path = ocfs2_new_path_from_path(path); |
9f99ad08 X |
4445 | if (!right_path) { |
4446 | status = -ENOMEM; | |
4447 | mlog_errno(status); | |
06a269cc | 4448 | goto free_left_path; |
9f99ad08 | 4449 | } |
ad5a4d70 | 4450 | |
a2970291 | 4451 | status = ocfs2_find_path(et->et_ci, right_path, right_cpos); |
ad5a4d70 | 4452 | if (status) |
06a269cc | 4453 | goto free_right_path; |
ad5a4d70 TM |
4454 | |
4455 | new_el = path_leaf_el(right_path); | |
4456 | rec = &new_el->l_recs[0]; | |
4457 | if (ocfs2_is_empty_extent(rec)) { | |
4458 | if (le16_to_cpu(new_el->l_next_free_rec) <= 1) { | |
4459 | bh = path_leaf_bh(right_path); | |
4460 | eb = (struct ocfs2_extent_block *)bh->b_data; | |
93f5920d JP |
4461 | status = ocfs2_error(sb, |
4462 | "Extent block #%llu has an invalid l_next_free_rec of %d\n", | |
4463 | (unsigned long long)le64_to_cpu(eb->h_blkno), | |
4464 | le16_to_cpu(new_el->l_next_free_rec)); | |
06a269cc | 4465 | goto free_right_path; |
ad5a4d70 TM |
4466 | } |
4467 | rec = &new_el->l_recs[1]; | |
4468 | } | |
4469 | } | |
4470 | ||
4471 | if (rec) { | |
328d5752 MF |
4472 | enum ocfs2_contig_type contig_type; |
4473 | ||
853a3a14 | 4474 | contig_type = ocfs2_et_extent_contig(et, rec, split_rec); |
328d5752 MF |
4475 | |
4476 | if (contig_type == CONTIG_LEFT && ret == CONTIG_RIGHT) | |
4477 | ret = CONTIG_LEFTRIGHT; | |
4478 | else if (ret == CONTIG_NONE) | |
4479 | ret = contig_type; | |
4480 | } | |
4481 | ||
06a269cc | 4482 | free_right_path: |
fd90d4df | 4483 | ocfs2_free_path(right_path); |
06a269cc ME |
4484 | free_left_path: |
4485 | ocfs2_free_path(left_path); | |
4486 | exit: | |
9f99ad08 X |
4487 | if (status == 0) |
4488 | ctxt->c_contig_type = ret; | |
4489 | ||
4490 | return status; | |
328d5752 MF |
4491 | } |
4492 | ||
1ef61b33 | 4493 | static void ocfs2_figure_contig_type(struct ocfs2_extent_tree *et, |
dcd0538f MF |
4494 | struct ocfs2_insert_type *insert, |
4495 | struct ocfs2_extent_list *el, | |
1ef61b33 | 4496 | struct ocfs2_extent_rec *insert_rec) |
dcd0538f MF |
4497 | { |
4498 | int i; | |
4499 | enum ocfs2_contig_type contig_type = CONTIG_NONE; | |
4500 | ||
e48edee2 MF |
4501 | BUG_ON(le16_to_cpu(el->l_tree_depth) != 0); |
4502 | ||
dcd0538f | 4503 | for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) { |
853a3a14 TM |
4504 | contig_type = ocfs2_et_extent_contig(et, &el->l_recs[i], |
4505 | insert_rec); | |
dcd0538f MF |
4506 | if (contig_type != CONTIG_NONE) { |
4507 | insert->ins_contig_index = i; | |
4508 | break; | |
4509 | } | |
4510 | } | |
4511 | insert->ins_contig = contig_type; | |
ca12b7c4 TM |
4512 | |
4513 | if (insert->ins_contig != CONTIG_NONE) { | |
4514 | struct ocfs2_extent_rec *rec = | |
4515 | &el->l_recs[insert->ins_contig_index]; | |
4516 | unsigned int len = le16_to_cpu(rec->e_leaf_clusters) + | |
4517 | le16_to_cpu(insert_rec->e_leaf_clusters); | |
4518 | ||
4519 | /* | |
4520 | * Caller might want us to limit the size of extents, don't | |
4521 | * calculate contiguousness if we might exceed that limit. | |
4522 | */ | |
ce1d9ea6 JB |
4523 | if (et->et_max_leaf_clusters && |
4524 | (len > et->et_max_leaf_clusters)) | |
ca12b7c4 TM |
4525 | insert->ins_contig = CONTIG_NONE; |
4526 | } | |
dcd0538f MF |
4527 | } |
4528 | ||
4529 | /* | |
4530 | * This should only be called against the righmost leaf extent list. | |
4531 | * | |
4532 | * ocfs2_figure_appending_type() will figure out whether we'll have to | |
4533 | * insert at the tail of the rightmost leaf. | |
4534 | * | |
e7d4cb6b TM |
4535 | * This should also work against the root extent list for tree's with 0 |
4536 | * depth. If we consider the root extent list to be the rightmost leaf node | |
dcd0538f MF |
4537 | * then the logic here makes sense. |
4538 | */ | |
4539 | static void ocfs2_figure_appending_type(struct ocfs2_insert_type *insert, | |
4540 | struct ocfs2_extent_list *el, | |
4541 | struct ocfs2_extent_rec *insert_rec) | |
4542 | { | |
4543 | int i; | |
4544 | u32 cpos = le32_to_cpu(insert_rec->e_cpos); | |
4545 | struct ocfs2_extent_rec *rec; | |
4546 | ||
4547 | insert->ins_appending = APPEND_NONE; | |
4548 | ||
e48edee2 | 4549 | BUG_ON(le16_to_cpu(el->l_tree_depth) != 0); |
dcd0538f MF |
4550 | |
4551 | if (!el->l_next_free_rec) | |
4552 | goto set_tail_append; | |
4553 | ||
4554 | if (ocfs2_is_empty_extent(&el->l_recs[0])) { | |
4555 | /* Were all records empty? */ | |
4556 | if (le16_to_cpu(el->l_next_free_rec) == 1) | |
4557 | goto set_tail_append; | |
4558 | } | |
4559 | ||
4560 | i = le16_to_cpu(el->l_next_free_rec) - 1; | |
4561 | rec = &el->l_recs[i]; | |
4562 | ||
e48edee2 MF |
4563 | if (cpos >= |
4564 | (le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters))) | |
dcd0538f MF |
4565 | goto set_tail_append; |
4566 | ||
4567 | return; | |
4568 | ||
4569 | set_tail_append: | |
4570 | insert->ins_appending = APPEND_TAIL; | |
4571 | } | |
4572 | ||
4573 | /* | |
25985edc | 4574 | * Helper function called at the beginning of an insert. |
dcd0538f MF |
4575 | * |
4576 | * This computes a few things that are commonly used in the process of | |
4577 | * inserting into the btree: | |
4578 | * - Whether the new extent is contiguous with an existing one. | |
4579 | * - The current tree depth. | |
4580 | * - Whether the insert is an appending one. | |
4581 | * - The total # of free records in the tree. | |
4582 | * | |
4583 | * All of the information is stored on the ocfs2_insert_type | |
4584 | * structure. | |
4585 | */ | |
627961b7 | 4586 | static int ocfs2_figure_insert_type(struct ocfs2_extent_tree *et, |
dcd0538f MF |
4587 | struct buffer_head **last_eb_bh, |
4588 | struct ocfs2_extent_rec *insert_rec, | |
c77534f6 | 4589 | int *free_records, |
dcd0538f MF |
4590 | struct ocfs2_insert_type *insert) |
4591 | { | |
4592 | int ret; | |
dcd0538f MF |
4593 | struct ocfs2_extent_block *eb; |
4594 | struct ocfs2_extent_list *el; | |
4595 | struct ocfs2_path *path = NULL; | |
4596 | struct buffer_head *bh = NULL; | |
4597 | ||
328d5752 MF |
4598 | insert->ins_split = SPLIT_NONE; |
4599 | ||
ce1d9ea6 | 4600 | el = et->et_root_el; |
dcd0538f MF |
4601 | insert->ins_tree_depth = le16_to_cpu(el->l_tree_depth); |
4602 | ||
4603 | if (el->l_tree_depth) { | |
4604 | /* | |
4605 | * If we have tree depth, we read in the | |
4606 | * rightmost extent block ahead of time as | |
4607 | * ocfs2_figure_insert_type() and ocfs2_add_branch() | |
4608 | * may want it later. | |
4609 | */ | |
3d03a305 | 4610 | ret = ocfs2_read_extent_block(et->et_ci, |
5e96581a JB |
4611 | ocfs2_et_get_last_eb_blk(et), |
4612 | &bh); | |
dcd0538f | 4613 | if (ret) { |
c1e8d35e | 4614 | mlog_errno(ret); |
dcd0538f MF |
4615 | goto out; |
4616 | } | |
ccd979bd | 4617 | eb = (struct ocfs2_extent_block *) bh->b_data; |
ccd979bd | 4618 | el = &eb->h_list; |
dcd0538f | 4619 | } |
ccd979bd | 4620 | |
dcd0538f MF |
4621 | /* |
4622 | * Unless we have a contiguous insert, we'll need to know if | |
4623 | * there is room left in our allocation tree for another | |
4624 | * extent record. | |
4625 | * | |
4626 | * XXX: This test is simplistic, we can search for empty | |
4627 | * extent records too. | |
4628 | */ | |
c77534f6 | 4629 | *free_records = le16_to_cpu(el->l_count) - |
dcd0538f MF |
4630 | le16_to_cpu(el->l_next_free_rec); |
4631 | ||
4632 | if (!insert->ins_tree_depth) { | |
1ef61b33 | 4633 | ocfs2_figure_contig_type(et, insert, el, insert_rec); |
dcd0538f MF |
4634 | ocfs2_figure_appending_type(insert, el, insert_rec); |
4635 | return 0; | |
ccd979bd MF |
4636 | } |
4637 | ||
ffdd7a54 | 4638 | path = ocfs2_new_path_from_et(et); |
dcd0538f MF |
4639 | if (!path) { |
4640 | ret = -ENOMEM; | |
4641 | mlog_errno(ret); | |
4642 | goto out; | |
4643 | } | |
ccd979bd | 4644 | |
dcd0538f MF |
4645 | /* |
4646 | * In the case that we're inserting past what the tree | |
4647 | * currently accounts for, ocfs2_find_path() will return for | |
4648 | * us the rightmost tree path. This is accounted for below in | |
4649 | * the appending code. | |
4650 | */ | |
facdb77f | 4651 | ret = ocfs2_find_path(et->et_ci, path, le32_to_cpu(insert_rec->e_cpos)); |
dcd0538f MF |
4652 | if (ret) { |
4653 | mlog_errno(ret); | |
4654 | goto out; | |
4655 | } | |
ccd979bd | 4656 | |
dcd0538f MF |
4657 | el = path_leaf_el(path); |
4658 | ||
4659 | /* | |
4660 | * Now that we have the path, there's two things we want to determine: | |
4661 | * 1) Contiguousness (also set contig_index if this is so) | |
4662 | * | |
4663 | * 2) Are we doing an append? We can trivially break this up | |
4664 | * into two types of appends: simple record append, or a | |
4665 | * rotate inside the tail leaf. | |
4666 | */ | |
1ef61b33 | 4667 | ocfs2_figure_contig_type(et, insert, el, insert_rec); |
dcd0538f MF |
4668 | |
4669 | /* | |
4670 | * The insert code isn't quite ready to deal with all cases of | |
4671 | * left contiguousness. Specifically, if it's an insert into | |
4672 | * the 1st record in a leaf, it will require the adjustment of | |
e48edee2 | 4673 | * cluster count on the last record of the path directly to it's |
dcd0538f MF |
4674 | * left. For now, just catch that case and fool the layers |
4675 | * above us. This works just fine for tree_depth == 0, which | |
4676 | * is why we allow that above. | |
4677 | */ | |
4678 | if (insert->ins_contig == CONTIG_LEFT && | |
4679 | insert->ins_contig_index == 0) | |
4680 | insert->ins_contig = CONTIG_NONE; | |
4681 | ||
4682 | /* | |
4683 | * Ok, so we can simply compare against last_eb to figure out | |
4684 | * whether the path doesn't exist. This will only happen in | |
4685 | * the case that we're doing a tail append, so maybe we can | |
4686 | * take advantage of that information somehow. | |
4687 | */ | |
35dc0aa3 | 4688 | if (ocfs2_et_get_last_eb_blk(et) == |
e7d4cb6b | 4689 | path_leaf_bh(path)->b_blocknr) { |
dcd0538f MF |
4690 | /* |
4691 | * Ok, ocfs2_find_path() returned us the rightmost | |
4692 | * tree path. This might be an appending insert. There are | |
4693 | * two cases: | |
4694 | * 1) We're doing a true append at the tail: | |
4695 | * -This might even be off the end of the leaf | |
4696 | * 2) We're "appending" by rotating in the tail | |
4697 | */ | |
4698 | ocfs2_figure_appending_type(insert, el, insert_rec); | |
4699 | } | |
4700 | ||
4701 | out: | |
4702 | ocfs2_free_path(path); | |
4703 | ||
4704 | if (ret == 0) | |
4705 | *last_eb_bh = bh; | |
4706 | else | |
4707 | brelse(bh); | |
4708 | return ret; | |
ccd979bd MF |
4709 | } |
4710 | ||
dcd0538f | 4711 | /* |
cc79d8c1 | 4712 | * Insert an extent into a btree. |
dcd0538f | 4713 | * |
cc79d8c1 | 4714 | * The caller needs to update the owning btree's cluster count. |
dcd0538f | 4715 | */ |
cc79d8c1 | 4716 | int ocfs2_insert_extent(handle_t *handle, |
f99b9b7c JB |
4717 | struct ocfs2_extent_tree *et, |
4718 | u32 cpos, | |
4719 | u64 start_blk, | |
4720 | u32 new_clusters, | |
4721 | u8 flags, | |
4722 | struct ocfs2_alloc_context *meta_ac) | |
ccd979bd | 4723 | { |
c3afcbb3 | 4724 | int status; |
c77534f6 | 4725 | int uninitialized_var(free_records); |
ccd979bd | 4726 | struct buffer_head *last_eb_bh = NULL; |
dcd0538f MF |
4727 | struct ocfs2_insert_type insert = {0, }; |
4728 | struct ocfs2_extent_rec rec; | |
4729 | ||
a09d09b8 TM |
4730 | trace_ocfs2_insert_extent_start( |
4731 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), | |
4732 | cpos, new_clusters); | |
dcd0538f | 4733 | |
e48edee2 | 4734 | memset(&rec, 0, sizeof(rec)); |
dcd0538f MF |
4735 | rec.e_cpos = cpu_to_le32(cpos); |
4736 | rec.e_blkno = cpu_to_le64(start_blk); | |
e48edee2 | 4737 | rec.e_leaf_clusters = cpu_to_le16(new_clusters); |
2ae99a60 | 4738 | rec.e_flags = flags; |
6136ca5f | 4739 | status = ocfs2_et_insert_check(et, &rec); |
1e61ee79 JB |
4740 | if (status) { |
4741 | mlog_errno(status); | |
4742 | goto bail; | |
4743 | } | |
dcd0538f | 4744 | |
627961b7 | 4745 | status = ocfs2_figure_insert_type(et, &last_eb_bh, &rec, |
c77534f6 | 4746 | &free_records, &insert); |
dcd0538f MF |
4747 | if (status < 0) { |
4748 | mlog_errno(status); | |
4749 | goto bail; | |
ccd979bd MF |
4750 | } |
4751 | ||
a09d09b8 TM |
4752 | trace_ocfs2_insert_extent(insert.ins_appending, insert.ins_contig, |
4753 | insert.ins_contig_index, free_records, | |
4754 | insert.ins_tree_depth); | |
ccd979bd | 4755 | |
c77534f6 | 4756 | if (insert.ins_contig == CONTIG_NONE && free_records == 0) { |
d401dc12 | 4757 | status = ocfs2_grow_tree(handle, et, |
328d5752 | 4758 | &insert.ins_tree_depth, &last_eb_bh, |
c3afcbb3 MF |
4759 | meta_ac); |
4760 | if (status) { | |
ccd979bd MF |
4761 | mlog_errno(status); |
4762 | goto bail; | |
4763 | } | |
ccd979bd MF |
4764 | } |
4765 | ||
dcd0538f | 4766 | /* Finally, we can add clusters. This might rotate the tree for us. */ |
3505bec0 | 4767 | status = ocfs2_do_insert_extent(handle, et, &rec, &insert); |
ccd979bd MF |
4768 | if (status < 0) |
4769 | mlog_errno(status); | |
92ba470c JB |
4770 | else |
4771 | ocfs2_et_extent_map_insert(et, &rec); | |
ccd979bd MF |
4772 | |
4773 | bail: | |
a81cb88b | 4774 | brelse(last_eb_bh); |
ccd979bd | 4775 | |
f56654c4 TM |
4776 | return status; |
4777 | } | |
4778 | ||
0eb8d47e TM |
4779 | /* |
4780 | * Allcate and add clusters into the extent b-tree. | |
4781 | * The new clusters(clusters_to_add) will be inserted at logical_offset. | |
f99b9b7c | 4782 | * The extent b-tree's root is specified by et, and |
0eb8d47e TM |
4783 | * it is not limited to the file storage. Any extent tree can use this |
4784 | * function if it implements the proper ocfs2_extent_tree. | |
4785 | */ | |
cbee7e1a JB |
4786 | int ocfs2_add_clusters_in_btree(handle_t *handle, |
4787 | struct ocfs2_extent_tree *et, | |
0eb8d47e TM |
4788 | u32 *logical_offset, |
4789 | u32 clusters_to_add, | |
4790 | int mark_unwritten, | |
0eb8d47e TM |
4791 | struct ocfs2_alloc_context *data_ac, |
4792 | struct ocfs2_alloc_context *meta_ac, | |
f99b9b7c | 4793 | enum ocfs2_alloc_restarted *reason_ret) |
0eb8d47e | 4794 | { |
a09d09b8 | 4795 | int status = 0, err = 0; |
fb951eb5 | 4796 | int need_free = 0; |
0eb8d47e TM |
4797 | int free_extents; |
4798 | enum ocfs2_alloc_restarted reason = RESTART_NONE; | |
4799 | u32 bit_off, num_bits; | |
4800 | u64 block; | |
4801 | u8 flags = 0; | |
cbee7e1a JB |
4802 | struct ocfs2_super *osb = |
4803 | OCFS2_SB(ocfs2_metadata_cache_get_super(et->et_ci)); | |
0eb8d47e TM |
4804 | |
4805 | BUG_ON(!clusters_to_add); | |
4806 | ||
4807 | if (mark_unwritten) | |
4808 | flags = OCFS2_EXT_UNWRITTEN; | |
4809 | ||
964f14a0 | 4810 | free_extents = ocfs2_num_free_extents(et); |
0eb8d47e TM |
4811 | if (free_extents < 0) { |
4812 | status = free_extents; | |
4813 | mlog_errno(status); | |
4814 | goto leave; | |
4815 | } | |
4816 | ||
4817 | /* there are two cases which could cause us to EAGAIN in the | |
4818 | * we-need-more-metadata case: | |
4819 | * 1) we haven't reserved *any* | |
4820 | * 2) we are so fragmented, we've needed to add metadata too | |
4821 | * many times. */ | |
4822 | if (!free_extents && !meta_ac) { | |
a09d09b8 | 4823 | err = -1; |
0eb8d47e TM |
4824 | status = -EAGAIN; |
4825 | reason = RESTART_META; | |
4826 | goto leave; | |
4827 | } else if ((!free_extents) | |
4828 | && (ocfs2_alloc_context_bits_left(meta_ac) | |
f99b9b7c | 4829 | < ocfs2_extend_meta_needed(et->et_root_el))) { |
a09d09b8 | 4830 | err = -2; |
0eb8d47e TM |
4831 | status = -EAGAIN; |
4832 | reason = RESTART_META; | |
4833 | goto leave; | |
4834 | } | |
4835 | ||
1ed9b777 | 4836 | status = __ocfs2_claim_clusters(handle, data_ac, 1, |
0eb8d47e TM |
4837 | clusters_to_add, &bit_off, &num_bits); |
4838 | if (status < 0) { | |
4839 | if (status != -ENOSPC) | |
4840 | mlog_errno(status); | |
4841 | goto leave; | |
4842 | } | |
4843 | ||
4844 | BUG_ON(num_bits > clusters_to_add); | |
4845 | ||
13723d00 | 4846 | /* reserve our write early -- insert_extent may update the tree root */ |
d9a0a1f8 | 4847 | status = ocfs2_et_root_journal_access(handle, et, |
13723d00 | 4848 | OCFS2_JOURNAL_ACCESS_WRITE); |
0eb8d47e TM |
4849 | if (status < 0) { |
4850 | mlog_errno(status); | |
fb951eb5 ZW |
4851 | need_free = 1; |
4852 | goto bail; | |
0eb8d47e TM |
4853 | } |
4854 | ||
4855 | block = ocfs2_clusters_to_blocks(osb->sb, bit_off); | |
a09d09b8 TM |
4856 | trace_ocfs2_add_clusters_in_btree( |
4857 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), | |
4858 | bit_off, num_bits); | |
cc79d8c1 | 4859 | status = ocfs2_insert_extent(handle, et, *logical_offset, block, |
f99b9b7c | 4860 | num_bits, flags, meta_ac); |
0eb8d47e TM |
4861 | if (status < 0) { |
4862 | mlog_errno(status); | |
fb951eb5 ZW |
4863 | need_free = 1; |
4864 | goto bail; | |
0eb8d47e TM |
4865 | } |
4866 | ||
ec20cec7 | 4867 | ocfs2_journal_dirty(handle, et->et_root_bh); |
0eb8d47e TM |
4868 | |
4869 | clusters_to_add -= num_bits; | |
4870 | *logical_offset += num_bits; | |
4871 | ||
4872 | if (clusters_to_add) { | |
a09d09b8 | 4873 | err = clusters_to_add; |
0eb8d47e TM |
4874 | status = -EAGAIN; |
4875 | reason = RESTART_TRANS; | |
4876 | } | |
4877 | ||
fb951eb5 ZW |
4878 | bail: |
4879 | if (need_free) { | |
4880 | if (data_ac->ac_which == OCFS2_AC_USE_LOCAL) | |
4881 | ocfs2_free_local_alloc_bits(osb, handle, data_ac, | |
4882 | bit_off, num_bits); | |
4883 | else | |
4884 | ocfs2_free_clusters(handle, | |
4885 | data_ac->ac_inode, | |
4886 | data_ac->ac_bh, | |
4887 | ocfs2_clusters_to_blocks(osb->sb, bit_off), | |
4888 | num_bits); | |
4889 | } | |
4890 | ||
0eb8d47e | 4891 | leave: |
0eb8d47e TM |
4892 | if (reason_ret) |
4893 | *reason_ret = reason; | |
a09d09b8 | 4894 | trace_ocfs2_add_clusters_in_btree_ret(status, reason, err); |
0eb8d47e TM |
4895 | return status; |
4896 | } | |
4897 | ||
328d5752 MF |
4898 | static void ocfs2_make_right_split_rec(struct super_block *sb, |
4899 | struct ocfs2_extent_rec *split_rec, | |
4900 | u32 cpos, | |
4901 | struct ocfs2_extent_rec *rec) | |
4902 | { | |
4903 | u32 rec_cpos = le32_to_cpu(rec->e_cpos); | |
4904 | u32 rec_range = rec_cpos + le16_to_cpu(rec->e_leaf_clusters); | |
4905 | ||
4906 | memset(split_rec, 0, sizeof(struct ocfs2_extent_rec)); | |
4907 | ||
4908 | split_rec->e_cpos = cpu_to_le32(cpos); | |
4909 | split_rec->e_leaf_clusters = cpu_to_le16(rec_range - cpos); | |
4910 | ||
4911 | split_rec->e_blkno = rec->e_blkno; | |
4912 | le64_add_cpu(&split_rec->e_blkno, | |
4913 | ocfs2_clusters_to_blocks(sb, cpos - rec_cpos)); | |
4914 | ||
4915 | split_rec->e_flags = rec->e_flags; | |
4916 | } | |
4917 | ||
d231129f | 4918 | static int ocfs2_split_and_insert(handle_t *handle, |
e7d4cb6b | 4919 | struct ocfs2_extent_tree *et, |
d231129f | 4920 | struct ocfs2_path *path, |
328d5752 MF |
4921 | struct buffer_head **last_eb_bh, |
4922 | int split_index, | |
4923 | struct ocfs2_extent_rec *orig_split_rec, | |
4924 | struct ocfs2_alloc_context *meta_ac) | |
4925 | { | |
4926 | int ret = 0, depth; | |
4927 | unsigned int insert_range, rec_range, do_leftright = 0; | |
4928 | struct ocfs2_extent_rec tmprec; | |
4929 | struct ocfs2_extent_list *rightmost_el; | |
4930 | struct ocfs2_extent_rec rec; | |
4931 | struct ocfs2_extent_rec split_rec = *orig_split_rec; | |
4932 | struct ocfs2_insert_type insert; | |
4933 | struct ocfs2_extent_block *eb; | |
328d5752 MF |
4934 | |
4935 | leftright: | |
4936 | /* | |
4937 | * Store a copy of the record on the stack - it might move | |
4938 | * around as the tree is manipulated below. | |
4939 | */ | |
4940 | rec = path_leaf_el(path)->l_recs[split_index]; | |
4941 | ||
ce1d9ea6 | 4942 | rightmost_el = et->et_root_el; |
328d5752 MF |
4943 | |
4944 | depth = le16_to_cpu(rightmost_el->l_tree_depth); | |
4945 | if (depth) { | |
4946 | BUG_ON(!(*last_eb_bh)); | |
4947 | eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data; | |
4948 | rightmost_el = &eb->h_list; | |
4949 | } | |
4950 | ||
4951 | if (le16_to_cpu(rightmost_el->l_next_free_rec) == | |
4952 | le16_to_cpu(rightmost_el->l_count)) { | |
d401dc12 | 4953 | ret = ocfs2_grow_tree(handle, et, |
e7d4cb6b | 4954 | &depth, last_eb_bh, meta_ac); |
328d5752 MF |
4955 | if (ret) { |
4956 | mlog_errno(ret); | |
4957 | goto out; | |
4958 | } | |
328d5752 MF |
4959 | } |
4960 | ||
4961 | memset(&insert, 0, sizeof(struct ocfs2_insert_type)); | |
4962 | insert.ins_appending = APPEND_NONE; | |
4963 | insert.ins_contig = CONTIG_NONE; | |
328d5752 MF |
4964 | insert.ins_tree_depth = depth; |
4965 | ||
4966 | insert_range = le32_to_cpu(split_rec.e_cpos) + | |
4967 | le16_to_cpu(split_rec.e_leaf_clusters); | |
4968 | rec_range = le32_to_cpu(rec.e_cpos) + | |
4969 | le16_to_cpu(rec.e_leaf_clusters); | |
4970 | ||
4971 | if (split_rec.e_cpos == rec.e_cpos) { | |
4972 | insert.ins_split = SPLIT_LEFT; | |
4973 | } else if (insert_range == rec_range) { | |
4974 | insert.ins_split = SPLIT_RIGHT; | |
4975 | } else { | |
4976 | /* | |
4977 | * Left/right split. We fake this as a right split | |
4978 | * first and then make a second pass as a left split. | |
4979 | */ | |
4980 | insert.ins_split = SPLIT_RIGHT; | |
4981 | ||
d231129f JB |
4982 | ocfs2_make_right_split_rec(ocfs2_metadata_cache_get_super(et->et_ci), |
4983 | &tmprec, insert_range, &rec); | |
328d5752 MF |
4984 | |
4985 | split_rec = tmprec; | |
4986 | ||
4987 | BUG_ON(do_leftright); | |
4988 | do_leftright = 1; | |
4989 | } | |
4990 | ||
3505bec0 | 4991 | ret = ocfs2_do_insert_extent(handle, et, &split_rec, &insert); |
328d5752 MF |
4992 | if (ret) { |
4993 | mlog_errno(ret); | |
4994 | goto out; | |
4995 | } | |
4996 | ||
4997 | if (do_leftright == 1) { | |
4998 | u32 cpos; | |
4999 | struct ocfs2_extent_list *el; | |
5000 | ||
5001 | do_leftright++; | |
5002 | split_rec = *orig_split_rec; | |
5003 | ||
5004 | ocfs2_reinit_path(path, 1); | |
5005 | ||
5006 | cpos = le32_to_cpu(split_rec.e_cpos); | |
facdb77f | 5007 | ret = ocfs2_find_path(et->et_ci, path, cpos); |
328d5752 MF |
5008 | if (ret) { |
5009 | mlog_errno(ret); | |
5010 | goto out; | |
5011 | } | |
5012 | ||
5013 | el = path_leaf_el(path); | |
5014 | split_index = ocfs2_search_extent_list(el, cpos); | |
981035b4 YX |
5015 | if (split_index == -1) { |
5016 | ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci), | |
7ecef14a JP |
5017 | "Owner %llu has an extent at cpos %u which can no longer be found\n", |
5018 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), | |
5019 | cpos); | |
981035b4 YX |
5020 | ret = -EROFS; |
5021 | goto out; | |
5022 | } | |
328d5752 MF |
5023 | goto leftright; |
5024 | } | |
5025 | out: | |
5026 | ||
5027 | return ret; | |
5028 | } | |
5029 | ||
f3868d0f JB |
5030 | static int ocfs2_replace_extent_rec(handle_t *handle, |
5031 | struct ocfs2_extent_tree *et, | |
47be12e4 TM |
5032 | struct ocfs2_path *path, |
5033 | struct ocfs2_extent_list *el, | |
5034 | int split_index, | |
5035 | struct ocfs2_extent_rec *split_rec) | |
5036 | { | |
5037 | int ret; | |
5038 | ||
f3868d0f | 5039 | ret = ocfs2_path_bh_journal_access(handle, et->et_ci, path, |
47be12e4 TM |
5040 | path_num_items(path) - 1); |
5041 | if (ret) { | |
5042 | mlog_errno(ret); | |
5043 | goto out; | |
5044 | } | |
5045 | ||
5046 | el->l_recs[split_index] = *split_rec; | |
5047 | ||
5048 | ocfs2_journal_dirty(handle, path_leaf_bh(path)); | |
5049 | out: | |
5050 | return ret; | |
5051 | } | |
5052 | ||
328d5752 | 5053 | /* |
555936bf TM |
5054 | * Split part or all of the extent record at split_index in the leaf |
5055 | * pointed to by path. Merge with the contiguous extent record if needed. | |
328d5752 MF |
5056 | * |
5057 | * Care is taken to handle contiguousness so as to not grow the tree. | |
5058 | * | |
5059 | * meta_ac is not strictly necessary - we only truly need it if growth | |
5060 | * of the tree is required. All other cases will degrade into a less | |
5061 | * optimal tree layout. | |
5062 | * | |
e7d4cb6b TM |
5063 | * last_eb_bh should be the rightmost leaf block for any extent |
5064 | * btree. Since a split may grow the tree or a merge might shrink it, | |
5065 | * the caller cannot trust the contents of that buffer after this call. | |
328d5752 MF |
5066 | * |
5067 | * This code is optimized for readability - several passes might be | |
5068 | * made over certain portions of the tree. All of those blocks will | |
5069 | * have been brought into cache (and pinned via the journal), so the | |
5070 | * extra overhead is not expressed in terms of disk reads. | |
5071 | */ | |
e2e9f608 TM |
5072 | int ocfs2_split_extent(handle_t *handle, |
5073 | struct ocfs2_extent_tree *et, | |
5074 | struct ocfs2_path *path, | |
5075 | int split_index, | |
5076 | struct ocfs2_extent_rec *split_rec, | |
5077 | struct ocfs2_alloc_context *meta_ac, | |
5078 | struct ocfs2_cached_dealloc_ctxt *dealloc) | |
328d5752 MF |
5079 | { |
5080 | int ret = 0; | |
5081 | struct ocfs2_extent_list *el = path_leaf_el(path); | |
e8aed345 | 5082 | struct buffer_head *last_eb_bh = NULL; |
328d5752 MF |
5083 | struct ocfs2_extent_rec *rec = &el->l_recs[split_index]; |
5084 | struct ocfs2_merge_ctxt ctxt; | |
328d5752 | 5085 | |
328d5752 MF |
5086 | if (le32_to_cpu(rec->e_cpos) > le32_to_cpu(split_rec->e_cpos) || |
5087 | ((le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)) < | |
5088 | (le32_to_cpu(split_rec->e_cpos) + le16_to_cpu(split_rec->e_leaf_clusters)))) { | |
5089 | ret = -EIO; | |
5090 | mlog_errno(ret); | |
5091 | goto out; | |
5092 | } | |
5093 | ||
9f99ad08 X |
5094 | ret = ocfs2_figure_merge_contig_type(et, path, el, |
5095 | split_index, | |
5096 | split_rec, | |
5097 | &ctxt); | |
5098 | if (ret) { | |
5099 | mlog_errno(ret); | |
5100 | goto out; | |
5101 | } | |
328d5752 MF |
5102 | |
5103 | /* | |
5104 | * The core merge / split code wants to know how much room is | |
a1cf076b | 5105 | * left in this allocation tree, so we pass the |
328d5752 MF |
5106 | * rightmost extent list. |
5107 | */ | |
5108 | if (path->p_tree_depth) { | |
3d03a305 | 5109 | ret = ocfs2_read_extent_block(et->et_ci, |
5e96581a JB |
5110 | ocfs2_et_get_last_eb_blk(et), |
5111 | &last_eb_bh); | |
328d5752 | 5112 | if (ret) { |
c1e8d35e | 5113 | mlog_errno(ret); |
328d5752 MF |
5114 | goto out; |
5115 | } | |
d22aa615 | 5116 | } |
328d5752 | 5117 | |
328d5752 MF |
5118 | if (rec->e_cpos == split_rec->e_cpos && |
5119 | rec->e_leaf_clusters == split_rec->e_leaf_clusters) | |
5120 | ctxt.c_split_covers_rec = 1; | |
5121 | else | |
5122 | ctxt.c_split_covers_rec = 0; | |
5123 | ||
5124 | ctxt.c_has_empty_extent = ocfs2_is_empty_extent(&el->l_recs[0]); | |
5125 | ||
a09d09b8 TM |
5126 | trace_ocfs2_split_extent(split_index, ctxt.c_contig_type, |
5127 | ctxt.c_has_empty_extent, | |
5128 | ctxt.c_split_covers_rec); | |
328d5752 MF |
5129 | |
5130 | if (ctxt.c_contig_type == CONTIG_NONE) { | |
5131 | if (ctxt.c_split_covers_rec) | |
f3868d0f | 5132 | ret = ocfs2_replace_extent_rec(handle, et, path, el, |
47be12e4 | 5133 | split_index, split_rec); |
328d5752 | 5134 | else |
d231129f | 5135 | ret = ocfs2_split_and_insert(handle, et, path, |
328d5752 MF |
5136 | &last_eb_bh, split_index, |
5137 | split_rec, meta_ac); | |
5138 | if (ret) | |
5139 | mlog_errno(ret); | |
5140 | } else { | |
c495dd24 | 5141 | ret = ocfs2_try_to_merge_extent(handle, et, path, |
328d5752 | 5142 | split_index, split_rec, |
c495dd24 | 5143 | dealloc, &ctxt); |
328d5752 MF |
5144 | if (ret) |
5145 | mlog_errno(ret); | |
5146 | } | |
5147 | ||
328d5752 MF |
5148 | out: |
5149 | brelse(last_eb_bh); | |
5150 | return ret; | |
5151 | } | |
5152 | ||
5153 | /* | |
555936bf TM |
5154 | * Change the flags of the already-existing extent at cpos for len clusters. |
5155 | * | |
5156 | * new_flags: the flags we want to set. | |
5157 | * clear_flags: the flags we want to clear. | |
5158 | * phys: the new physical offset we want this new extent starts from. | |
328d5752 MF |
5159 | * |
5160 | * If the existing extent is larger than the request, initiate a | |
5161 | * split. An attempt will be made at merging with adjacent extents. | |
5162 | * | |
5163 | * The caller is responsible for passing down meta_ac if we'll need it. | |
5164 | */ | |
1aa75fea TM |
5165 | int ocfs2_change_extent_flag(handle_t *handle, |
5166 | struct ocfs2_extent_tree *et, | |
5167 | u32 cpos, u32 len, u32 phys, | |
5168 | struct ocfs2_alloc_context *meta_ac, | |
5169 | struct ocfs2_cached_dealloc_ctxt *dealloc, | |
5170 | int new_flags, int clear_flags) | |
328d5752 MF |
5171 | { |
5172 | int ret, index; | |
555936bf TM |
5173 | struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci); |
5174 | u64 start_blkno = ocfs2_clusters_to_blocks(sb, phys); | |
328d5752 MF |
5175 | struct ocfs2_extent_rec split_rec; |
5176 | struct ocfs2_path *left_path = NULL; | |
5177 | struct ocfs2_extent_list *el; | |
555936bf | 5178 | struct ocfs2_extent_rec *rec; |
328d5752 | 5179 | |
ffdd7a54 | 5180 | left_path = ocfs2_new_path_from_et(et); |
328d5752 MF |
5181 | if (!left_path) { |
5182 | ret = -ENOMEM; | |
5183 | mlog_errno(ret); | |
5184 | goto out; | |
5185 | } | |
5186 | ||
facdb77f | 5187 | ret = ocfs2_find_path(et->et_ci, left_path, cpos); |
328d5752 MF |
5188 | if (ret) { |
5189 | mlog_errno(ret); | |
5190 | goto out; | |
5191 | } | |
5192 | el = path_leaf_el(left_path); | |
5193 | ||
5194 | index = ocfs2_search_extent_list(el, cpos); | |
981035b4 | 5195 | if (index == -1) { |
555936bf | 5196 | ocfs2_error(sb, |
7ecef14a JP |
5197 | "Owner %llu has an extent at cpos %u which can no longer be found\n", |
5198 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), | |
5199 | cpos); | |
328d5752 MF |
5200 | ret = -EROFS; |
5201 | goto out; | |
5202 | } | |
5203 | ||
555936bf TM |
5204 | ret = -EIO; |
5205 | rec = &el->l_recs[index]; | |
5206 | if (new_flags && (rec->e_flags & new_flags)) { | |
5207 | mlog(ML_ERROR, "Owner %llu tried to set %d flags on an " | |
86544fbd | 5208 | "extent that already had them\n", |
555936bf TM |
5209 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), |
5210 | new_flags); | |
5211 | goto out; | |
5212 | } | |
5213 | ||
5214 | if (clear_flags && !(rec->e_flags & clear_flags)) { | |
5215 | mlog(ML_ERROR, "Owner %llu tried to clear %d flags on an " | |
86544fbd | 5216 | "extent that didn't have them\n", |
555936bf TM |
5217 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), |
5218 | clear_flags); | |
5219 | goto out; | |
5220 | } | |
5221 | ||
328d5752 MF |
5222 | memset(&split_rec, 0, sizeof(struct ocfs2_extent_rec)); |
5223 | split_rec.e_cpos = cpu_to_le32(cpos); | |
5224 | split_rec.e_leaf_clusters = cpu_to_le16(len); | |
5225 | split_rec.e_blkno = cpu_to_le64(start_blkno); | |
555936bf TM |
5226 | split_rec.e_flags = rec->e_flags; |
5227 | if (new_flags) | |
5228 | split_rec.e_flags |= new_flags; | |
5229 | if (clear_flags) | |
5230 | split_rec.e_flags &= ~clear_flags; | |
5231 | ||
e2e9f608 TM |
5232 | ret = ocfs2_split_extent(handle, et, left_path, |
5233 | index, &split_rec, meta_ac, | |
5234 | dealloc); | |
328d5752 MF |
5235 | if (ret) |
5236 | mlog_errno(ret); | |
5237 | ||
5238 | out: | |
5239 | ocfs2_free_path(left_path); | |
5240 | return ret; | |
555936bf TM |
5241 | |
5242 | } | |
5243 | ||
5244 | /* | |
5245 | * Mark the already-existing extent at cpos as written for len clusters. | |
5246 | * This removes the unwritten extent flag. | |
5247 | * | |
5248 | * If the existing extent is larger than the request, initiate a | |
5249 | * split. An attempt will be made at merging with adjacent extents. | |
5250 | * | |
5251 | * The caller is responsible for passing down meta_ac if we'll need it. | |
5252 | */ | |
5253 | int ocfs2_mark_extent_written(struct inode *inode, | |
5254 | struct ocfs2_extent_tree *et, | |
5255 | handle_t *handle, u32 cpos, u32 len, u32 phys, | |
5256 | struct ocfs2_alloc_context *meta_ac, | |
5257 | struct ocfs2_cached_dealloc_ctxt *dealloc) | |
5258 | { | |
5259 | int ret; | |
5260 | ||
a09d09b8 TM |
5261 | trace_ocfs2_mark_extent_written( |
5262 | (unsigned long long)OCFS2_I(inode)->ip_blkno, | |
5263 | cpos, len, phys); | |
555936bf TM |
5264 | |
5265 | if (!ocfs2_writes_unwritten_extents(OCFS2_SB(inode->i_sb))) { | |
7ecef14a | 5266 | ocfs2_error(inode->i_sb, "Inode %llu has unwritten extents that are being written to, but the feature bit is not set in the super block\n", |
555936bf TM |
5267 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
5268 | ret = -EROFS; | |
5269 | goto out; | |
5270 | } | |
5271 | ||
5272 | /* | |
5273 | * XXX: This should be fixed up so that we just re-insert the | |
5274 | * next extent records. | |
5275 | */ | |
5276 | ocfs2_et_extent_map_truncate(et, 0); | |
5277 | ||
5278 | ret = ocfs2_change_extent_flag(handle, et, cpos, | |
5279 | len, phys, meta_ac, dealloc, | |
5280 | 0, OCFS2_EXT_UNWRITTEN); | |
5281 | if (ret) | |
5282 | mlog_errno(ret); | |
5283 | ||
5284 | out: | |
5285 | return ret; | |
328d5752 MF |
5286 | } |
5287 | ||
dbdcf6a4 JB |
5288 | static int ocfs2_split_tree(handle_t *handle, struct ocfs2_extent_tree *et, |
5289 | struct ocfs2_path *path, | |
d0c7d708 MF |
5290 | int index, u32 new_range, |
5291 | struct ocfs2_alloc_context *meta_ac) | |
5292 | { | |
c901fb00 | 5293 | int ret, depth, credits; |
d0c7d708 MF |
5294 | struct buffer_head *last_eb_bh = NULL; |
5295 | struct ocfs2_extent_block *eb; | |
5296 | struct ocfs2_extent_list *rightmost_el, *el; | |
5297 | struct ocfs2_extent_rec split_rec; | |
5298 | struct ocfs2_extent_rec *rec; | |
5299 | struct ocfs2_insert_type insert; | |
5300 | ||
5301 | /* | |
5302 | * Setup the record to split before we grow the tree. | |
5303 | */ | |
5304 | el = path_leaf_el(path); | |
5305 | rec = &el->l_recs[index]; | |
dbdcf6a4 JB |
5306 | ocfs2_make_right_split_rec(ocfs2_metadata_cache_get_super(et->et_ci), |
5307 | &split_rec, new_range, rec); | |
d0c7d708 MF |
5308 | |
5309 | depth = path->p_tree_depth; | |
5310 | if (depth > 0) { | |
3d03a305 | 5311 | ret = ocfs2_read_extent_block(et->et_ci, |
5e96581a JB |
5312 | ocfs2_et_get_last_eb_blk(et), |
5313 | &last_eb_bh); | |
d0c7d708 MF |
5314 | if (ret < 0) { |
5315 | mlog_errno(ret); | |
5316 | goto out; | |
5317 | } | |
5318 | ||
5319 | eb = (struct ocfs2_extent_block *) last_eb_bh->b_data; | |
5320 | rightmost_el = &eb->h_list; | |
5321 | } else | |
5322 | rightmost_el = path_leaf_el(path); | |
5323 | ||
c901fb00 TM |
5324 | credits = path->p_tree_depth + |
5325 | ocfs2_extend_meta_needed(et->et_root_el); | |
d0c7d708 MF |
5326 | ret = ocfs2_extend_trans(handle, credits); |
5327 | if (ret) { | |
5328 | mlog_errno(ret); | |
5329 | goto out; | |
5330 | } | |
5331 | ||
5332 | if (le16_to_cpu(rightmost_el->l_next_free_rec) == | |
5333 | le16_to_cpu(rightmost_el->l_count)) { | |
d401dc12 | 5334 | ret = ocfs2_grow_tree(handle, et, &depth, &last_eb_bh, |
d0c7d708 MF |
5335 | meta_ac); |
5336 | if (ret) { | |
5337 | mlog_errno(ret); | |
5338 | goto out; | |
5339 | } | |
d0c7d708 MF |
5340 | } |
5341 | ||
5342 | memset(&insert, 0, sizeof(struct ocfs2_insert_type)); | |
5343 | insert.ins_appending = APPEND_NONE; | |
5344 | insert.ins_contig = CONTIG_NONE; | |
5345 | insert.ins_split = SPLIT_RIGHT; | |
d0c7d708 MF |
5346 | insert.ins_tree_depth = depth; |
5347 | ||
3505bec0 | 5348 | ret = ocfs2_do_insert_extent(handle, et, &split_rec, &insert); |
d0c7d708 MF |
5349 | if (ret) |
5350 | mlog_errno(ret); | |
5351 | ||
5352 | out: | |
5353 | brelse(last_eb_bh); | |
5354 | return ret; | |
5355 | } | |
5356 | ||
043beebb JB |
5357 | static int ocfs2_truncate_rec(handle_t *handle, |
5358 | struct ocfs2_extent_tree *et, | |
d0c7d708 MF |
5359 | struct ocfs2_path *path, int index, |
5360 | struct ocfs2_cached_dealloc_ctxt *dealloc, | |
043beebb | 5361 | u32 cpos, u32 len) |
d0c7d708 MF |
5362 | { |
5363 | int ret; | |
5364 | u32 left_cpos, rec_range, trunc_range; | |
c14688ea | 5365 | int is_rightmost_tree_rec = 0; |
043beebb | 5366 | struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci); |
d0c7d708 MF |
5367 | struct ocfs2_path *left_path = NULL; |
5368 | struct ocfs2_extent_list *el = path_leaf_el(path); | |
5369 | struct ocfs2_extent_rec *rec; | |
5370 | struct ocfs2_extent_block *eb; | |
5371 | ||
5372 | if (ocfs2_is_empty_extent(&el->l_recs[0]) && index > 0) { | |
17215989 X |
5373 | /* extend credit for ocfs2_remove_rightmost_path */ |
5374 | ret = ocfs2_extend_rotate_transaction(handle, 0, | |
5375 | handle->h_buffer_credits, | |
5376 | path); | |
5377 | if (ret) { | |
5378 | mlog_errno(ret); | |
5379 | goto out; | |
5380 | } | |
5381 | ||
70f18c08 | 5382 | ret = ocfs2_rotate_tree_left(handle, et, path, dealloc); |
d0c7d708 MF |
5383 | if (ret) { |
5384 | mlog_errno(ret); | |
5385 | goto out; | |
5386 | } | |
5387 | ||
5388 | index--; | |
5389 | } | |
5390 | ||
5391 | if (index == (le16_to_cpu(el->l_next_free_rec) - 1) && | |
5392 | path->p_tree_depth) { | |
5393 | /* | |
5394 | * Check whether this is the rightmost tree record. If | |
5395 | * we remove all of this record or part of its right | |
5396 | * edge then an update of the record lengths above it | |
5397 | * will be required. | |
5398 | */ | |
5399 | eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data; | |
5400 | if (eb->h_next_leaf_blk == 0) | |
5401 | is_rightmost_tree_rec = 1; | |
5402 | } | |
5403 | ||
5404 | rec = &el->l_recs[index]; | |
5405 | if (index == 0 && path->p_tree_depth && | |
5406 | le32_to_cpu(rec->e_cpos) == cpos) { | |
5407 | /* | |
5408 | * Changing the leftmost offset (via partial or whole | |
5409 | * record truncate) of an interior (or rightmost) path | |
5410 | * means we have to update the subtree that is formed | |
5411 | * by this leaf and the one to it's left. | |
5412 | * | |
5413 | * There are two cases we can skip: | |
043beebb | 5414 | * 1) Path is the leftmost one in our btree. |
d0c7d708 MF |
5415 | * 2) The leaf is rightmost and will be empty after |
5416 | * we remove the extent record - the rotate code | |
5417 | * knows how to update the newly formed edge. | |
5418 | */ | |
5419 | ||
043beebb | 5420 | ret = ocfs2_find_cpos_for_left_leaf(sb, path, &left_cpos); |
d0c7d708 MF |
5421 | if (ret) { |
5422 | mlog_errno(ret); | |
5423 | goto out; | |
5424 | } | |
5425 | ||
5426 | if (left_cpos && le16_to_cpu(el->l_next_free_rec) > 1) { | |
ffdd7a54 | 5427 | left_path = ocfs2_new_path_from_path(path); |
d0c7d708 MF |
5428 | if (!left_path) { |
5429 | ret = -ENOMEM; | |
5430 | mlog_errno(ret); | |
5431 | goto out; | |
5432 | } | |
5433 | ||
facdb77f JB |
5434 | ret = ocfs2_find_path(et->et_ci, left_path, |
5435 | left_cpos); | |
d0c7d708 MF |
5436 | if (ret) { |
5437 | mlog_errno(ret); | |
5438 | goto out; | |
5439 | } | |
5440 | } | |
5441 | } | |
5442 | ||
5443 | ret = ocfs2_extend_rotate_transaction(handle, 0, | |
5444 | handle->h_buffer_credits, | |
5445 | path); | |
5446 | if (ret) { | |
5447 | mlog_errno(ret); | |
5448 | goto out; | |
5449 | } | |
5450 | ||
d9a0a1f8 | 5451 | ret = ocfs2_journal_access_path(et->et_ci, handle, path); |
d0c7d708 MF |
5452 | if (ret) { |
5453 | mlog_errno(ret); | |
5454 | goto out; | |
5455 | } | |
5456 | ||
d9a0a1f8 | 5457 | ret = ocfs2_journal_access_path(et->et_ci, handle, left_path); |
d0c7d708 MF |
5458 | if (ret) { |
5459 | mlog_errno(ret); | |
5460 | goto out; | |
5461 | } | |
5462 | ||
5463 | rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec); | |
5464 | trunc_range = cpos + len; | |
5465 | ||
5466 | if (le32_to_cpu(rec->e_cpos) == cpos && rec_range == trunc_range) { | |
5467 | int next_free; | |
5468 | ||
5469 | memset(rec, 0, sizeof(*rec)); | |
5470 | ocfs2_cleanup_merge(el, index); | |
d0c7d708 MF |
5471 | |
5472 | next_free = le16_to_cpu(el->l_next_free_rec); | |
5473 | if (is_rightmost_tree_rec && next_free > 1) { | |
5474 | /* | |
5475 | * We skip the edge update if this path will | |
5476 | * be deleted by the rotate code. | |
5477 | */ | |
5478 | rec = &el->l_recs[next_free - 1]; | |
d401dc12 | 5479 | ocfs2_adjust_rightmost_records(handle, et, path, |
d0c7d708 MF |
5480 | rec); |
5481 | } | |
5482 | } else if (le32_to_cpu(rec->e_cpos) == cpos) { | |
5483 | /* Remove leftmost portion of the record. */ | |
5484 | le32_add_cpu(&rec->e_cpos, len); | |
5485 | le64_add_cpu(&rec->e_blkno, ocfs2_clusters_to_blocks(sb, len)); | |
5486 | le16_add_cpu(&rec->e_leaf_clusters, -len); | |
5487 | } else if (rec_range == trunc_range) { | |
5488 | /* Remove rightmost portion of the record */ | |
5489 | le16_add_cpu(&rec->e_leaf_clusters, -len); | |
5490 | if (is_rightmost_tree_rec) | |
d401dc12 | 5491 | ocfs2_adjust_rightmost_records(handle, et, path, rec); |
d0c7d708 MF |
5492 | } else { |
5493 | /* Caller should have trapped this. */ | |
043beebb JB |
5494 | mlog(ML_ERROR, "Owner %llu: Invalid record truncate: (%u, %u) " |
5495 | "(%u, %u)\n", | |
5496 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), | |
d0c7d708 MF |
5497 | le32_to_cpu(rec->e_cpos), |
5498 | le16_to_cpu(rec->e_leaf_clusters), cpos, len); | |
5499 | BUG(); | |
5500 | } | |
5501 | ||
5502 | if (left_path) { | |
5503 | int subtree_index; | |
5504 | ||
7dc02805 | 5505 | subtree_index = ocfs2_find_subtree_root(et, left_path, path); |
4619c73e | 5506 | ocfs2_complete_edge_insert(handle, left_path, path, |
d0c7d708 MF |
5507 | subtree_index); |
5508 | } | |
5509 | ||
5510 | ocfs2_journal_dirty(handle, path_leaf_bh(path)); | |
5511 | ||
70f18c08 | 5512 | ret = ocfs2_rotate_tree_left(handle, et, path, dealloc); |
229ba1f8 | 5513 | if (ret) |
d0c7d708 | 5514 | mlog_errno(ret); |
d0c7d708 MF |
5515 | |
5516 | out: | |
5517 | ocfs2_free_path(left_path); | |
5518 | return ret; | |
5519 | } | |
5520 | ||
dbdcf6a4 | 5521 | int ocfs2_remove_extent(handle_t *handle, |
f99b9b7c | 5522 | struct ocfs2_extent_tree *et, |
dbdcf6a4 | 5523 | u32 cpos, u32 len, |
063c4561 | 5524 | struct ocfs2_alloc_context *meta_ac, |
f99b9b7c | 5525 | struct ocfs2_cached_dealloc_ctxt *dealloc) |
d0c7d708 MF |
5526 | { |
5527 | int ret, index; | |
5528 | u32 rec_range, trunc_range; | |
5529 | struct ocfs2_extent_rec *rec; | |
5530 | struct ocfs2_extent_list *el; | |
e7d4cb6b | 5531 | struct ocfs2_path *path = NULL; |
d0c7d708 | 5532 | |
4c911eef JB |
5533 | /* |
5534 | * XXX: Why are we truncating to 0 instead of wherever this | |
5535 | * affects us? | |
5536 | */ | |
5537 | ocfs2_et_extent_map_truncate(et, 0); | |
d0c7d708 | 5538 | |
ffdd7a54 | 5539 | path = ocfs2_new_path_from_et(et); |
d0c7d708 MF |
5540 | if (!path) { |
5541 | ret = -ENOMEM; | |
5542 | mlog_errno(ret); | |
5543 | goto out; | |
5544 | } | |
5545 | ||
facdb77f | 5546 | ret = ocfs2_find_path(et->et_ci, path, cpos); |
d0c7d708 MF |
5547 | if (ret) { |
5548 | mlog_errno(ret); | |
5549 | goto out; | |
5550 | } | |
5551 | ||
5552 | el = path_leaf_el(path); | |
5553 | index = ocfs2_search_extent_list(el, cpos); | |
981035b4 | 5554 | if (index == -1) { |
dbdcf6a4 | 5555 | ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci), |
7ecef14a | 5556 | "Owner %llu has an extent at cpos %u which can no longer be found\n", |
dbdcf6a4 JB |
5557 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), |
5558 | cpos); | |
d0c7d708 MF |
5559 | ret = -EROFS; |
5560 | goto out; | |
5561 | } | |
5562 | ||
5563 | /* | |
5564 | * We have 3 cases of extent removal: | |
5565 | * 1) Range covers the entire extent rec | |
5566 | * 2) Range begins or ends on one edge of the extent rec | |
5567 | * 3) Range is in the middle of the extent rec (no shared edges) | |
5568 | * | |
5569 | * For case 1 we remove the extent rec and left rotate to | |
5570 | * fill the hole. | |
5571 | * | |
5572 | * For case 2 we just shrink the existing extent rec, with a | |
5573 | * tree update if the shrinking edge is also the edge of an | |
5574 | * extent block. | |
5575 | * | |
5576 | * For case 3 we do a right split to turn the extent rec into | |
5577 | * something case 2 can handle. | |
5578 | */ | |
5579 | rec = &el->l_recs[index]; | |
5580 | rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec); | |
5581 | trunc_range = cpos + len; | |
5582 | ||
5583 | BUG_ON(cpos < le32_to_cpu(rec->e_cpos) || trunc_range > rec_range); | |
5584 | ||
a09d09b8 TM |
5585 | trace_ocfs2_remove_extent( |
5586 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), | |
5587 | cpos, len, index, le32_to_cpu(rec->e_cpos), | |
5588 | ocfs2_rec_clusters(el, rec)); | |
d0c7d708 MF |
5589 | |
5590 | if (le32_to_cpu(rec->e_cpos) == cpos || rec_range == trunc_range) { | |
043beebb JB |
5591 | ret = ocfs2_truncate_rec(handle, et, path, index, dealloc, |
5592 | cpos, len); | |
d0c7d708 MF |
5593 | if (ret) { |
5594 | mlog_errno(ret); | |
5595 | goto out; | |
5596 | } | |
5597 | } else { | |
dbdcf6a4 | 5598 | ret = ocfs2_split_tree(handle, et, path, index, |
d0c7d708 MF |
5599 | trunc_range, meta_ac); |
5600 | if (ret) { | |
5601 | mlog_errno(ret); | |
5602 | goto out; | |
5603 | } | |
5604 | ||
5605 | /* | |
5606 | * The split could have manipulated the tree enough to | |
5607 | * move the record location, so we have to look for it again. | |
5608 | */ | |
5609 | ocfs2_reinit_path(path, 1); | |
5610 | ||
facdb77f | 5611 | ret = ocfs2_find_path(et->et_ci, path, cpos); |
d0c7d708 MF |
5612 | if (ret) { |
5613 | mlog_errno(ret); | |
5614 | goto out; | |
5615 | } | |
5616 | ||
5617 | el = path_leaf_el(path); | |
5618 | index = ocfs2_search_extent_list(el, cpos); | |
981035b4 | 5619 | if (index == -1) { |
dbdcf6a4 | 5620 | ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci), |
7ecef14a | 5621 | "Owner %llu: split at cpos %u lost record\n", |
dbdcf6a4 | 5622 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), |
d0c7d708 MF |
5623 | cpos); |
5624 | ret = -EROFS; | |
5625 | goto out; | |
5626 | } | |
5627 | ||
5628 | /* | |
5629 | * Double check our values here. If anything is fishy, | |
5630 | * it's easier to catch it at the top level. | |
5631 | */ | |
5632 | rec = &el->l_recs[index]; | |
5633 | rec_range = le32_to_cpu(rec->e_cpos) + | |
5634 | ocfs2_rec_clusters(el, rec); | |
5635 | if (rec_range != trunc_range) { | |
dbdcf6a4 | 5636 | ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci), |
7ecef14a | 5637 | "Owner %llu: error after split at cpos %u trunc len %u, existing record is (%u,%u)\n", |
dbdcf6a4 | 5638 | (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), |
d0c7d708 MF |
5639 | cpos, len, le32_to_cpu(rec->e_cpos), |
5640 | ocfs2_rec_clusters(el, rec)); | |
5641 | ret = -EROFS; | |
5642 | goto out; | |
5643 | } | |
5644 | ||
043beebb JB |
5645 | ret = ocfs2_truncate_rec(handle, et, path, index, dealloc, |
5646 | cpos, len); | |
229ba1f8 | 5647 | if (ret) |
d0c7d708 | 5648 | mlog_errno(ret); |
d0c7d708 MF |
5649 | } |
5650 | ||
5651 | out: | |
5652 | ocfs2_free_path(path); | |
5653 | return ret; | |
5654 | } | |
5655 | ||
78f94673 TY |
5656 | /* |
5657 | * ocfs2_reserve_blocks_for_rec_trunc() would look basically the | |
5658 | * same as ocfs2_lock_alloctors(), except for it accepts a blocks | |
5659 | * number to reserve some extra blocks, and it only handles meta | |
5660 | * data allocations. | |
5661 | * | |
5662 | * Currently, only ocfs2_remove_btree_range() uses it for truncating | |
5663 | * and punching holes. | |
5664 | */ | |
5665 | static int ocfs2_reserve_blocks_for_rec_trunc(struct inode *inode, | |
5666 | struct ocfs2_extent_tree *et, | |
5667 | u32 extents_to_split, | |
5668 | struct ocfs2_alloc_context **ac, | |
5669 | int extra_blocks) | |
5670 | { | |
5671 | int ret = 0, num_free_extents; | |
5672 | unsigned int max_recs_needed = 2 * extents_to_split; | |
5673 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
5674 | ||
5675 | *ac = NULL; | |
5676 | ||
964f14a0 | 5677 | num_free_extents = ocfs2_num_free_extents(et); |
78f94673 TY |
5678 | if (num_free_extents < 0) { |
5679 | ret = num_free_extents; | |
5680 | mlog_errno(ret); | |
5681 | goto out; | |
5682 | } | |
5683 | ||
5684 | if (!num_free_extents || | |
5685 | (ocfs2_sparse_alloc(osb) && num_free_extents < max_recs_needed)) | |
5686 | extra_blocks += ocfs2_extend_meta_needed(et->et_root_el); | |
5687 | ||
5688 | if (extra_blocks) { | |
5689 | ret = ocfs2_reserve_new_metadata_blocks(osb, extra_blocks, ac); | |
5690 | if (ret < 0) { | |
5691 | if (ret != -ENOSPC) | |
5692 | mlog_errno(ret); | |
78f94673 TY |
5693 | } |
5694 | } | |
5695 | ||
5696 | out: | |
5697 | if (ret) { | |
5698 | if (*ac) { | |
5699 | ocfs2_free_alloc_context(*ac); | |
5700 | *ac = NULL; | |
5701 | } | |
5702 | } | |
5703 | ||
5704 | return ret; | |
5705 | } | |
5706 | ||
fecc0112 MF |
5707 | int ocfs2_remove_btree_range(struct inode *inode, |
5708 | struct ocfs2_extent_tree *et, | |
78f94673 TY |
5709 | u32 cpos, u32 phys_cpos, u32 len, int flags, |
5710 | struct ocfs2_cached_dealloc_ctxt *dealloc, | |
f62f12b3 | 5711 | u64 refcount_loc, bool refcount_tree_locked) |
fecc0112 | 5712 | { |
78f94673 | 5713 | int ret, credits = 0, extra_blocks = 0; |
fecc0112 MF |
5714 | u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos); |
5715 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
5716 | struct inode *tl_inode = osb->osb_tl_inode; | |
5717 | handle_t *handle; | |
5718 | struct ocfs2_alloc_context *meta_ac = NULL; | |
78f94673 TY |
5719 | struct ocfs2_refcount_tree *ref_tree = NULL; |
5720 | ||
5721 | if ((flags & OCFS2_EXT_REFCOUNTED) && len) { | |
84e40080 | 5722 | BUG_ON(!ocfs2_is_refcount_inode(inode)); |
78f94673 | 5723 | |
f62f12b3 JB |
5724 | if (!refcount_tree_locked) { |
5725 | ret = ocfs2_lock_refcount_tree(osb, refcount_loc, 1, | |
5726 | &ref_tree, NULL); | |
5727 | if (ret) { | |
5728 | mlog_errno(ret); | |
5729 | goto bail; | |
5730 | } | |
78f94673 TY |
5731 | } |
5732 | ||
5733 | ret = ocfs2_prepare_refcount_change_for_del(inode, | |
5734 | refcount_loc, | |
5735 | phys_blkno, | |
5736 | len, | |
5737 | &credits, | |
5738 | &extra_blocks); | |
5739 | if (ret < 0) { | |
5740 | mlog_errno(ret); | |
33add0e3 | 5741 | goto bail; |
78f94673 TY |
5742 | } |
5743 | } | |
fecc0112 | 5744 | |
78f94673 TY |
5745 | ret = ocfs2_reserve_blocks_for_rec_trunc(inode, et, 1, &meta_ac, |
5746 | extra_blocks); | |
fecc0112 MF |
5747 | if (ret) { |
5748 | mlog_errno(ret); | |
33add0e3 | 5749 | goto bail; |
fecc0112 MF |
5750 | } |
5751 | ||
5955102c | 5752 | inode_lock(tl_inode); |
fecc0112 MF |
5753 | |
5754 | if (ocfs2_truncate_log_needs_flush(osb)) { | |
5755 | ret = __ocfs2_flush_truncate_log(osb); | |
5756 | if (ret < 0) { | |
5757 | mlog_errno(ret); | |
5758 | goto out; | |
5759 | } | |
5760 | } | |
5761 | ||
78f94673 TY |
5762 | handle = ocfs2_start_trans(osb, |
5763 | ocfs2_remove_extent_credits(osb->sb) + credits); | |
fecc0112 MF |
5764 | if (IS_ERR(handle)) { |
5765 | ret = PTR_ERR(handle); | |
5766 | mlog_errno(ret); | |
5767 | goto out; | |
5768 | } | |
5769 | ||
d9a0a1f8 | 5770 | ret = ocfs2_et_root_journal_access(handle, et, |
13723d00 | 5771 | OCFS2_JOURNAL_ACCESS_WRITE); |
fecc0112 MF |
5772 | if (ret) { |
5773 | mlog_errno(ret); | |
b8a0ae57 | 5774 | goto out_commit; |
fecc0112 MF |
5775 | } |
5776 | ||
5dd4056d | 5777 | dquot_free_space_nodirty(inode, |
fd4ef231 MF |
5778 | ocfs2_clusters_to_bytes(inode->i_sb, len)); |
5779 | ||
dbdcf6a4 | 5780 | ret = ocfs2_remove_extent(handle, et, cpos, len, meta_ac, dealloc); |
fecc0112 MF |
5781 | if (ret) { |
5782 | mlog_errno(ret); | |
5783 | goto out_commit; | |
5784 | } | |
5785 | ||
6136ca5f | 5786 | ocfs2_et_update_clusters(et, -len); |
6fdb702d | 5787 | ocfs2_update_inode_fsync_trans(handle, inode, 1); |
fecc0112 | 5788 | |
ec20cec7 | 5789 | ocfs2_journal_dirty(handle, et->et_root_bh); |
fecc0112 | 5790 | |
78f94673 TY |
5791 | if (phys_blkno) { |
5792 | if (flags & OCFS2_EXT_REFCOUNTED) | |
5793 | ret = ocfs2_decrease_refcount(inode, handle, | |
5794 | ocfs2_blocks_to_clusters(osb->sb, | |
5795 | phys_blkno), | |
5796 | len, meta_ac, | |
5797 | dealloc, 1); | |
5798 | else | |
5799 | ret = ocfs2_truncate_log_append(osb, handle, | |
5800 | phys_blkno, len); | |
5801 | if (ret) | |
5802 | mlog_errno(ret); | |
5803 | ||
5804 | } | |
fecc0112 MF |
5805 | |
5806 | out_commit: | |
5807 | ocfs2_commit_trans(osb, handle); | |
5808 | out: | |
5955102c | 5809 | inode_unlock(tl_inode); |
33add0e3 | 5810 | bail: |
fecc0112 MF |
5811 | if (meta_ac) |
5812 | ocfs2_free_alloc_context(meta_ac); | |
5813 | ||
78f94673 TY |
5814 | if (ref_tree) |
5815 | ocfs2_unlock_refcount_tree(osb, ref_tree, 1); | |
5816 | ||
fecc0112 MF |
5817 | return ret; |
5818 | } | |
5819 | ||
063c4561 | 5820 | int ocfs2_truncate_log_needs_flush(struct ocfs2_super *osb) |
ccd979bd MF |
5821 | { |
5822 | struct buffer_head *tl_bh = osb->osb_tl_bh; | |
5823 | struct ocfs2_dinode *di; | |
5824 | struct ocfs2_truncate_log *tl; | |
5825 | ||
5826 | di = (struct ocfs2_dinode *) tl_bh->b_data; | |
5827 | tl = &di->id2.i_dealloc; | |
5828 | ||
5829 | mlog_bug_on_msg(le16_to_cpu(tl->tl_used) > le16_to_cpu(tl->tl_count), | |
5830 | "slot %d, invalid truncate log parameters: used = " | |
5831 | "%u, count = %u\n", osb->slot_num, | |
5832 | le16_to_cpu(tl->tl_used), le16_to_cpu(tl->tl_count)); | |
5833 | return le16_to_cpu(tl->tl_used) == le16_to_cpu(tl->tl_count); | |
5834 | } | |
5835 | ||
5836 | static int ocfs2_truncate_log_can_coalesce(struct ocfs2_truncate_log *tl, | |
5837 | unsigned int new_start) | |
5838 | { | |
5839 | unsigned int tail_index; | |
5840 | unsigned int current_tail; | |
5841 | ||
5842 | /* No records, nothing to coalesce */ | |
5843 | if (!le16_to_cpu(tl->tl_used)) | |
5844 | return 0; | |
5845 | ||
5846 | tail_index = le16_to_cpu(tl->tl_used) - 1; | |
5847 | current_tail = le32_to_cpu(tl->tl_recs[tail_index].t_start); | |
5848 | current_tail += le32_to_cpu(tl->tl_recs[tail_index].t_clusters); | |
5849 | ||
5850 | return current_tail == new_start; | |
5851 | } | |
5852 | ||
063c4561 MF |
5853 | int ocfs2_truncate_log_append(struct ocfs2_super *osb, |
5854 | handle_t *handle, | |
5855 | u64 start_blk, | |
5856 | unsigned int num_clusters) | |
ccd979bd MF |
5857 | { |
5858 | int status, index; | |
5859 | unsigned int start_cluster, tl_count; | |
5860 | struct inode *tl_inode = osb->osb_tl_inode; | |
5861 | struct buffer_head *tl_bh = osb->osb_tl_bh; | |
5862 | struct ocfs2_dinode *di; | |
5863 | struct ocfs2_truncate_log *tl; | |
5864 | ||
5955102c | 5865 | BUG_ON(inode_trylock(tl_inode)); |
ccd979bd MF |
5866 | |
5867 | start_cluster = ocfs2_blocks_to_clusters(osb->sb, start_blk); | |
5868 | ||
5869 | di = (struct ocfs2_dinode *) tl_bh->b_data; | |
ccd979bd | 5870 | |
10995aa2 JB |
5871 | /* tl_bh is loaded from ocfs2_truncate_log_init(). It's validated |
5872 | * by the underlying call to ocfs2_read_inode_block(), so any | |
5873 | * corruption is a code bug */ | |
5874 | BUG_ON(!OCFS2_IS_VALID_DINODE(di)); | |
5875 | ||
5876 | tl = &di->id2.i_dealloc; | |
ccd979bd MF |
5877 | tl_count = le16_to_cpu(tl->tl_count); |
5878 | mlog_bug_on_msg(tl_count > ocfs2_truncate_recs_per_inode(osb->sb) || | |
5879 | tl_count == 0, | |
b0697053 MF |
5880 | "Truncate record count on #%llu invalid " |
5881 | "wanted %u, actual %u\n", | |
5882 | (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, | |
ccd979bd MF |
5883 | ocfs2_truncate_recs_per_inode(osb->sb), |
5884 | le16_to_cpu(tl->tl_count)); | |
5885 | ||
5886 | /* Caller should have known to flush before calling us. */ | |
5887 | index = le16_to_cpu(tl->tl_used); | |
5888 | if (index >= tl_count) { | |
5889 | status = -ENOSPC; | |
5890 | mlog_errno(status); | |
5891 | goto bail; | |
5892 | } | |
5893 | ||
0cf2f763 | 5894 | status = ocfs2_journal_access_di(handle, INODE_CACHE(tl_inode), tl_bh, |
13723d00 | 5895 | OCFS2_JOURNAL_ACCESS_WRITE); |
ccd979bd MF |
5896 | if (status < 0) { |
5897 | mlog_errno(status); | |
5898 | goto bail; | |
5899 | } | |
5900 | ||
a09d09b8 TM |
5901 | trace_ocfs2_truncate_log_append( |
5902 | (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, index, | |
5903 | start_cluster, num_clusters); | |
ccd979bd MF |
5904 | if (ocfs2_truncate_log_can_coalesce(tl, start_cluster)) { |
5905 | /* | |
5906 | * Move index back to the record we are coalescing with. | |
5907 | * ocfs2_truncate_log_can_coalesce() guarantees nonzero | |
5908 | */ | |
5909 | index--; | |
5910 | ||
5911 | num_clusters += le32_to_cpu(tl->tl_recs[index].t_clusters); | |
a09d09b8 TM |
5912 | trace_ocfs2_truncate_log_append( |
5913 | (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, | |
5914 | index, le32_to_cpu(tl->tl_recs[index].t_start), | |
5915 | num_clusters); | |
ccd979bd MF |
5916 | } else { |
5917 | tl->tl_recs[index].t_start = cpu_to_le32(start_cluster); | |
5918 | tl->tl_used = cpu_to_le16(index + 1); | |
5919 | } | |
5920 | tl->tl_recs[index].t_clusters = cpu_to_le32(num_clusters); | |
5921 | ||
ec20cec7 | 5922 | ocfs2_journal_dirty(handle, tl_bh); |
ccd979bd | 5923 | |
50308d81 | 5924 | osb->truncated_clusters += num_clusters; |
ccd979bd | 5925 | bail: |
ccd979bd MF |
5926 | return status; |
5927 | } | |
5928 | ||
5929 | static int ocfs2_replay_truncate_records(struct ocfs2_super *osb, | |
ccd979bd MF |
5930 | struct inode *data_alloc_inode, |
5931 | struct buffer_head *data_alloc_bh) | |
5932 | { | |
5933 | int status = 0; | |
5934 | int i; | |
5935 | unsigned int num_clusters; | |
5936 | u64 start_blk; | |
5937 | struct ocfs2_truncate_rec rec; | |
5938 | struct ocfs2_dinode *di; | |
5939 | struct ocfs2_truncate_log *tl; | |
5940 | struct inode *tl_inode = osb->osb_tl_inode; | |
5941 | struct buffer_head *tl_bh = osb->osb_tl_bh; | |
2b0ad008 | 5942 | handle_t *handle; |
ccd979bd | 5943 | |
ccd979bd MF |
5944 | di = (struct ocfs2_dinode *) tl_bh->b_data; |
5945 | tl = &di->id2.i_dealloc; | |
5946 | i = le16_to_cpu(tl->tl_used) - 1; | |
5947 | while (i >= 0) { | |
2b0ad008 JB |
5948 | handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_FLUSH_ONE_REC); |
5949 | if (IS_ERR(handle)) { | |
5950 | status = PTR_ERR(handle); | |
5951 | mlog_errno(status); | |
5952 | goto bail; | |
5953 | } | |
5954 | ||
ccd979bd MF |
5955 | /* Caller has given us at least enough credits to |
5956 | * update the truncate log dinode */ | |
0cf2f763 | 5957 | status = ocfs2_journal_access_di(handle, INODE_CACHE(tl_inode), tl_bh, |
13723d00 | 5958 | OCFS2_JOURNAL_ACCESS_WRITE); |
ccd979bd MF |
5959 | if (status < 0) { |
5960 | mlog_errno(status); | |
5961 | goto bail; | |
5962 | } | |
5963 | ||
5964 | tl->tl_used = cpu_to_le16(i); | |
5965 | ||
ec20cec7 | 5966 | ocfs2_journal_dirty(handle, tl_bh); |
ccd979bd | 5967 | |
ccd979bd MF |
5968 | rec = tl->tl_recs[i]; |
5969 | start_blk = ocfs2_clusters_to_blocks(data_alloc_inode->i_sb, | |
5970 | le32_to_cpu(rec.t_start)); | |
5971 | num_clusters = le32_to_cpu(rec.t_clusters); | |
5972 | ||
5973 | /* if start_blk is not set, we ignore the record as | |
5974 | * invalid. */ | |
5975 | if (start_blk) { | |
a09d09b8 TM |
5976 | trace_ocfs2_replay_truncate_records( |
5977 | (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, | |
5978 | i, le32_to_cpu(rec.t_start), num_clusters); | |
ccd979bd MF |
5979 | |
5980 | status = ocfs2_free_clusters(handle, data_alloc_inode, | |
5981 | data_alloc_bh, start_blk, | |
5982 | num_clusters); | |
5983 | if (status < 0) { | |
5984 | mlog_errno(status); | |
5985 | goto bail; | |
5986 | } | |
5987 | } | |
102c2595 | 5988 | |
2b0ad008 | 5989 | ocfs2_commit_trans(osb, handle); |
ccd979bd MF |
5990 | i--; |
5991 | } | |
5992 | ||
50308d81 TM |
5993 | osb->truncated_clusters = 0; |
5994 | ||
ccd979bd | 5995 | bail: |
ccd979bd MF |
5996 | return status; |
5997 | } | |
5998 | ||
1b1dcc1b | 5999 | /* Expects you to already be holding tl_inode->i_mutex */ |
063c4561 | 6000 | int __ocfs2_flush_truncate_log(struct ocfs2_super *osb) |
ccd979bd MF |
6001 | { |
6002 | int status; | |
6003 | unsigned int num_to_flush; | |
ccd979bd MF |
6004 | struct inode *tl_inode = osb->osb_tl_inode; |
6005 | struct inode *data_alloc_inode = NULL; | |
6006 | struct buffer_head *tl_bh = osb->osb_tl_bh; | |
6007 | struct buffer_head *data_alloc_bh = NULL; | |
6008 | struct ocfs2_dinode *di; | |
6009 | struct ocfs2_truncate_log *tl; | |
6010 | ||
5955102c | 6011 | BUG_ON(inode_trylock(tl_inode)); |
ccd979bd MF |
6012 | |
6013 | di = (struct ocfs2_dinode *) tl_bh->b_data; | |
ccd979bd | 6014 | |
10995aa2 JB |
6015 | /* tl_bh is loaded from ocfs2_truncate_log_init(). It's validated |
6016 | * by the underlying call to ocfs2_read_inode_block(), so any | |
6017 | * corruption is a code bug */ | |
6018 | BUG_ON(!OCFS2_IS_VALID_DINODE(di)); | |
6019 | ||
6020 | tl = &di->id2.i_dealloc; | |
ccd979bd | 6021 | num_to_flush = le16_to_cpu(tl->tl_used); |
a09d09b8 TM |
6022 | trace_ocfs2_flush_truncate_log( |
6023 | (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, | |
6024 | num_to_flush); | |
ccd979bd MF |
6025 | if (!num_to_flush) { |
6026 | status = 0; | |
e08dc8b9 | 6027 | goto out; |
ccd979bd MF |
6028 | } |
6029 | ||
6030 | data_alloc_inode = ocfs2_get_system_file_inode(osb, | |
6031 | GLOBAL_BITMAP_SYSTEM_INODE, | |
6032 | OCFS2_INVALID_SLOT); | |
6033 | if (!data_alloc_inode) { | |
6034 | status = -EINVAL; | |
6035 | mlog(ML_ERROR, "Could not get bitmap inode!\n"); | |
e08dc8b9 | 6036 | goto out; |
ccd979bd MF |
6037 | } |
6038 | ||
5955102c | 6039 | inode_lock(data_alloc_inode); |
e08dc8b9 | 6040 | |
e63aecb6 | 6041 | status = ocfs2_inode_lock(data_alloc_inode, &data_alloc_bh, 1); |
ccd979bd MF |
6042 | if (status < 0) { |
6043 | mlog_errno(status); | |
e08dc8b9 | 6044 | goto out_mutex; |
ccd979bd MF |
6045 | } |
6046 | ||
2b0ad008 | 6047 | status = ocfs2_replay_truncate_records(osb, data_alloc_inode, |
ccd979bd | 6048 | data_alloc_bh); |
e08dc8b9 | 6049 | if (status < 0) |
ccd979bd | 6050 | mlog_errno(status); |
ccd979bd | 6051 | |
e08dc8b9 | 6052 | brelse(data_alloc_bh); |
e63aecb6 | 6053 | ocfs2_inode_unlock(data_alloc_inode, 1); |
ccd979bd | 6054 | |
e08dc8b9 | 6055 | out_mutex: |
5955102c | 6056 | inode_unlock(data_alloc_inode); |
e08dc8b9 | 6057 | iput(data_alloc_inode); |
ccd979bd | 6058 | |
e08dc8b9 | 6059 | out: |
ccd979bd MF |
6060 | return status; |
6061 | } | |
6062 | ||
6063 | int ocfs2_flush_truncate_log(struct ocfs2_super *osb) | |
6064 | { | |
6065 | int status; | |
6066 | struct inode *tl_inode = osb->osb_tl_inode; | |
6067 | ||
5955102c | 6068 | inode_lock(tl_inode); |
ccd979bd | 6069 | status = __ocfs2_flush_truncate_log(osb); |
5955102c | 6070 | inode_unlock(tl_inode); |
ccd979bd MF |
6071 | |
6072 | return status; | |
6073 | } | |
6074 | ||
c4028958 | 6075 | static void ocfs2_truncate_log_worker(struct work_struct *work) |
ccd979bd MF |
6076 | { |
6077 | int status; | |
c4028958 DH |
6078 | struct ocfs2_super *osb = |
6079 | container_of(work, struct ocfs2_super, | |
6080 | osb_truncate_log_wq.work); | |
ccd979bd | 6081 | |
ccd979bd MF |
6082 | status = ocfs2_flush_truncate_log(osb); |
6083 | if (status < 0) | |
6084 | mlog_errno(status); | |
4d0ddb2c | 6085 | else |
b89c5428 | 6086 | ocfs2_init_steal_slots(osb); |
ccd979bd MF |
6087 | } |
6088 | ||
6089 | #define OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL (2 * HZ) | |
6090 | void ocfs2_schedule_truncate_log_flush(struct ocfs2_super *osb, | |
6091 | int cancel) | |
6092 | { | |
a9e9acae X |
6093 | if (osb->osb_tl_inode && |
6094 | atomic_read(&osb->osb_tl_disable) == 0) { | |
ccd979bd MF |
6095 | /* We want to push off log flushes while truncates are |
6096 | * still running. */ | |
6097 | if (cancel) | |
6098 | cancel_delayed_work(&osb->osb_truncate_log_wq); | |
6099 | ||
35ddf78e | 6100 | queue_delayed_work(osb->ocfs2_wq, &osb->osb_truncate_log_wq, |
ccd979bd MF |
6101 | OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL); |
6102 | } | |
6103 | } | |
6104 | ||
2070ad1a ER |
6105 | /* |
6106 | * Try to flush truncate logs if we can free enough clusters from it. | |
6107 | * As for return value, "< 0" means error, "0" no space and "1" means | |
6108 | * we have freed enough spaces and let the caller try to allocate again. | |
6109 | */ | |
6110 | int ocfs2_try_to_free_truncate_log(struct ocfs2_super *osb, | |
6111 | unsigned int needed) | |
6112 | { | |
6113 | tid_t target; | |
6114 | int ret = 0; | |
6115 | unsigned int truncated_clusters; | |
6116 | ||
6117 | inode_lock(osb->osb_tl_inode); | |
6118 | truncated_clusters = osb->truncated_clusters; | |
6119 | inode_unlock(osb->osb_tl_inode); | |
6120 | ||
6121 | /* | |
6122 | * Check whether we can succeed in allocating if we free | |
6123 | * the truncate log. | |
6124 | */ | |
6125 | if (truncated_clusters < needed) | |
6126 | goto out; | |
6127 | ||
6128 | ret = ocfs2_flush_truncate_log(osb); | |
6129 | if (ret) { | |
6130 | mlog_errno(ret); | |
6131 | goto out; | |
6132 | } | |
6133 | ||
6134 | if (jbd2_journal_start_commit(osb->journal->j_journal, &target)) { | |
6135 | jbd2_log_wait_commit(osb->journal->j_journal, target); | |
6136 | ret = 1; | |
6137 | } | |
6138 | out: | |
6139 | return ret; | |
6140 | } | |
6141 | ||
ccd979bd MF |
6142 | static int ocfs2_get_truncate_log_info(struct ocfs2_super *osb, |
6143 | int slot_num, | |
6144 | struct inode **tl_inode, | |
6145 | struct buffer_head **tl_bh) | |
6146 | { | |
6147 | int status; | |
6148 | struct inode *inode = NULL; | |
6149 | struct buffer_head *bh = NULL; | |
6150 | ||
6151 | inode = ocfs2_get_system_file_inode(osb, | |
6152 | TRUNCATE_LOG_SYSTEM_INODE, | |
6153 | slot_num); | |
6154 | if (!inode) { | |
6155 | status = -EINVAL; | |
6156 | mlog(ML_ERROR, "Could not get load truncate log inode!\n"); | |
6157 | goto bail; | |
6158 | } | |
6159 | ||
b657c95c | 6160 | status = ocfs2_read_inode_block(inode, &bh); |
ccd979bd MF |
6161 | if (status < 0) { |
6162 | iput(inode); | |
6163 | mlog_errno(status); | |
6164 | goto bail; | |
6165 | } | |
6166 | ||
6167 | *tl_inode = inode; | |
6168 | *tl_bh = bh; | |
6169 | bail: | |
ccd979bd MF |
6170 | return status; |
6171 | } | |
6172 | ||
6173 | /* called during the 1st stage of node recovery. we stamp a clean | |
6174 | * truncate log and pass back a copy for processing later. if the | |
6175 | * truncate log does not require processing, a *tl_copy is set to | |
6176 | * NULL. */ | |
6177 | int ocfs2_begin_truncate_log_recovery(struct ocfs2_super *osb, | |
6178 | int slot_num, | |
6179 | struct ocfs2_dinode **tl_copy) | |
6180 | { | |
6181 | int status; | |
6182 | struct inode *tl_inode = NULL; | |
6183 | struct buffer_head *tl_bh = NULL; | |
6184 | struct ocfs2_dinode *di; | |
6185 | struct ocfs2_truncate_log *tl; | |
6186 | ||
6187 | *tl_copy = NULL; | |
6188 | ||
a09d09b8 | 6189 | trace_ocfs2_begin_truncate_log_recovery(slot_num); |
ccd979bd MF |
6190 | |
6191 | status = ocfs2_get_truncate_log_info(osb, slot_num, &tl_inode, &tl_bh); | |
6192 | if (status < 0) { | |
6193 | mlog_errno(status); | |
6194 | goto bail; | |
6195 | } | |
6196 | ||
6197 | di = (struct ocfs2_dinode *) tl_bh->b_data; | |
ccd979bd | 6198 | |
10995aa2 JB |
6199 | /* tl_bh is loaded from ocfs2_get_truncate_log_info(). It's |
6200 | * validated by the underlying call to ocfs2_read_inode_block(), | |
6201 | * so any corruption is a code bug */ | |
6202 | BUG_ON(!OCFS2_IS_VALID_DINODE(di)); | |
6203 | ||
6204 | tl = &di->id2.i_dealloc; | |
ccd979bd | 6205 | if (le16_to_cpu(tl->tl_used)) { |
a09d09b8 | 6206 | trace_ocfs2_truncate_log_recovery_num(le16_to_cpu(tl->tl_used)); |
ccd979bd MF |
6207 | |
6208 | *tl_copy = kmalloc(tl_bh->b_size, GFP_KERNEL); | |
6209 | if (!(*tl_copy)) { | |
6210 | status = -ENOMEM; | |
6211 | mlog_errno(status); | |
6212 | goto bail; | |
6213 | } | |
6214 | ||
6215 | /* Assuming the write-out below goes well, this copy | |
6216 | * will be passed back to recovery for processing. */ | |
6217 | memcpy(*tl_copy, tl_bh->b_data, tl_bh->b_size); | |
6218 | ||
6219 | /* All we need to do to clear the truncate log is set | |
6220 | * tl_used. */ | |
6221 | tl->tl_used = 0; | |
6222 | ||
13723d00 | 6223 | ocfs2_compute_meta_ecc(osb->sb, tl_bh->b_data, &di->i_check); |
8cb471e8 | 6224 | status = ocfs2_write_block(osb, tl_bh, INODE_CACHE(tl_inode)); |
ccd979bd MF |
6225 | if (status < 0) { |
6226 | mlog_errno(status); | |
6227 | goto bail; | |
6228 | } | |
6229 | } | |
6230 | ||
6231 | bail: | |
72865d92 | 6232 | iput(tl_inode); |
a81cb88b | 6233 | brelse(tl_bh); |
ccd979bd | 6234 | |
46359295 | 6235 | if (status < 0) { |
ccd979bd MF |
6236 | kfree(*tl_copy); |
6237 | *tl_copy = NULL; | |
c1e8d35e | 6238 | mlog_errno(status); |
ccd979bd MF |
6239 | } |
6240 | ||
ccd979bd MF |
6241 | return status; |
6242 | } | |
6243 | ||
6244 | int ocfs2_complete_truncate_log_recovery(struct ocfs2_super *osb, | |
6245 | struct ocfs2_dinode *tl_copy) | |
6246 | { | |
6247 | int status = 0; | |
6248 | int i; | |
6249 | unsigned int clusters, num_recs, start_cluster; | |
6250 | u64 start_blk; | |
1fabe148 | 6251 | handle_t *handle; |
ccd979bd MF |
6252 | struct inode *tl_inode = osb->osb_tl_inode; |
6253 | struct ocfs2_truncate_log *tl; | |
6254 | ||
ccd979bd MF |
6255 | if (OCFS2_I(tl_inode)->ip_blkno == le64_to_cpu(tl_copy->i_blkno)) { |
6256 | mlog(ML_ERROR, "Asked to recover my own truncate log!\n"); | |
6257 | return -EINVAL; | |
6258 | } | |
6259 | ||
6260 | tl = &tl_copy->id2.i_dealloc; | |
6261 | num_recs = le16_to_cpu(tl->tl_used); | |
a09d09b8 TM |
6262 | trace_ocfs2_complete_truncate_log_recovery( |
6263 | (unsigned long long)le64_to_cpu(tl_copy->i_blkno), | |
6264 | num_recs); | |
ccd979bd | 6265 | |
5955102c | 6266 | inode_lock(tl_inode); |
ccd979bd MF |
6267 | for(i = 0; i < num_recs; i++) { |
6268 | if (ocfs2_truncate_log_needs_flush(osb)) { | |
6269 | status = __ocfs2_flush_truncate_log(osb); | |
6270 | if (status < 0) { | |
6271 | mlog_errno(status); | |
6272 | goto bail_up; | |
6273 | } | |
6274 | } | |
6275 | ||
65eff9cc | 6276 | handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE); |
ccd979bd MF |
6277 | if (IS_ERR(handle)) { |
6278 | status = PTR_ERR(handle); | |
6279 | mlog_errno(status); | |
6280 | goto bail_up; | |
6281 | } | |
6282 | ||
6283 | clusters = le32_to_cpu(tl->tl_recs[i].t_clusters); | |
6284 | start_cluster = le32_to_cpu(tl->tl_recs[i].t_start); | |
6285 | start_blk = ocfs2_clusters_to_blocks(osb->sb, start_cluster); | |
6286 | ||
6287 | status = ocfs2_truncate_log_append(osb, handle, | |
6288 | start_blk, clusters); | |
02dc1af4 | 6289 | ocfs2_commit_trans(osb, handle); |
ccd979bd MF |
6290 | if (status < 0) { |
6291 | mlog_errno(status); | |
6292 | goto bail_up; | |
6293 | } | |
6294 | } | |
6295 | ||
6296 | bail_up: | |
5955102c | 6297 | inode_unlock(tl_inode); |
ccd979bd | 6298 | |
ccd979bd MF |
6299 | return status; |
6300 | } | |
6301 | ||
6302 | void ocfs2_truncate_log_shutdown(struct ocfs2_super *osb) | |
6303 | { | |
6304 | int status; | |
6305 | struct inode *tl_inode = osb->osb_tl_inode; | |
6306 | ||
a9e9acae X |
6307 | atomic_set(&osb->osb_tl_disable, 1); |
6308 | ||
ccd979bd MF |
6309 | if (tl_inode) { |
6310 | cancel_delayed_work(&osb->osb_truncate_log_wq); | |
35ddf78e | 6311 | flush_workqueue(osb->ocfs2_wq); |
ccd979bd MF |
6312 | |
6313 | status = ocfs2_flush_truncate_log(osb); | |
6314 | if (status < 0) | |
6315 | mlog_errno(status); | |
6316 | ||
6317 | brelse(osb->osb_tl_bh); | |
6318 | iput(osb->osb_tl_inode); | |
6319 | } | |
ccd979bd MF |
6320 | } |
6321 | ||
6322 | int ocfs2_truncate_log_init(struct ocfs2_super *osb) | |
6323 | { | |
6324 | int status; | |
6325 | struct inode *tl_inode = NULL; | |
6326 | struct buffer_head *tl_bh = NULL; | |
6327 | ||
ccd979bd MF |
6328 | status = ocfs2_get_truncate_log_info(osb, |
6329 | osb->slot_num, | |
6330 | &tl_inode, | |
6331 | &tl_bh); | |
6332 | if (status < 0) | |
6333 | mlog_errno(status); | |
6334 | ||
6335 | /* ocfs2_truncate_log_shutdown keys on the existence of | |
6336 | * osb->osb_tl_inode so we don't set any of the osb variables | |
6337 | * until we're sure all is well. */ | |
c4028958 DH |
6338 | INIT_DELAYED_WORK(&osb->osb_truncate_log_wq, |
6339 | ocfs2_truncate_log_worker); | |
a9e9acae | 6340 | atomic_set(&osb->osb_tl_disable, 0); |
ccd979bd MF |
6341 | osb->osb_tl_bh = tl_bh; |
6342 | osb->osb_tl_inode = tl_inode; | |
6343 | ||
ccd979bd MF |
6344 | return status; |
6345 | } | |
6346 | ||
2b604351 MF |
6347 | /* |
6348 | * Delayed de-allocation of suballocator blocks. | |
6349 | * | |
6350 | * Some sets of block de-allocations might involve multiple suballocator inodes. | |
6351 | * | |
6352 | * The locking for this can get extremely complicated, especially when | |
6353 | * the suballocator inodes to delete from aren't known until deep | |
6354 | * within an unrelated codepath. | |
6355 | * | |
6356 | * ocfs2_extent_block structures are a good example of this - an inode | |
6357 | * btree could have been grown by any number of nodes each allocating | |
6358 | * out of their own suballoc inode. | |
6359 | * | |
6360 | * These structures allow the delay of block de-allocation until a | |
6361 | * later time, when locking of multiple cluster inodes won't cause | |
6362 | * deadlock. | |
6363 | */ | |
6364 | ||
6365 | /* | |
2891d290 TM |
6366 | * Describe a single bit freed from a suballocator. For the block |
6367 | * suballocators, it represents one block. For the global cluster | |
6368 | * allocator, it represents some clusters and free_bit indicates | |
6369 | * clusters number. | |
2b604351 MF |
6370 | */ |
6371 | struct ocfs2_cached_block_free { | |
6372 | struct ocfs2_cached_block_free *free_next; | |
74380c47 | 6373 | u64 free_bg; |
2b604351 MF |
6374 | u64 free_blk; |
6375 | unsigned int free_bit; | |
6376 | }; | |
6377 | ||
6378 | struct ocfs2_per_slot_free_list { | |
6379 | struct ocfs2_per_slot_free_list *f_next_suballocator; | |
6380 | int f_inode_type; | |
6381 | int f_slot; | |
6382 | struct ocfs2_cached_block_free *f_first; | |
6383 | }; | |
6384 | ||
2891d290 TM |
6385 | static int ocfs2_free_cached_blocks(struct ocfs2_super *osb, |
6386 | int sysfile_type, | |
6387 | int slot, | |
6388 | struct ocfs2_cached_block_free *head) | |
2b604351 MF |
6389 | { |
6390 | int ret; | |
6391 | u64 bg_blkno; | |
6392 | handle_t *handle; | |
6393 | struct inode *inode; | |
6394 | struct buffer_head *di_bh = NULL; | |
6395 | struct ocfs2_cached_block_free *tmp; | |
6396 | ||
6397 | inode = ocfs2_get_system_file_inode(osb, sysfile_type, slot); | |
6398 | if (!inode) { | |
6399 | ret = -EINVAL; | |
6400 | mlog_errno(ret); | |
6401 | goto out; | |
6402 | } | |
6403 | ||
5955102c | 6404 | inode_lock(inode); |
2b604351 | 6405 | |
e63aecb6 | 6406 | ret = ocfs2_inode_lock(inode, &di_bh, 1); |
2b604351 MF |
6407 | if (ret) { |
6408 | mlog_errno(ret); | |
6409 | goto out_mutex; | |
6410 | } | |
6411 | ||
2b604351 | 6412 | while (head) { |
74380c47 TM |
6413 | if (head->free_bg) |
6414 | bg_blkno = head->free_bg; | |
6415 | else | |
6416 | bg_blkno = ocfs2_which_suballoc_group(head->free_blk, | |
6417 | head->free_bit); | |
d5bf1418 JB |
6418 | handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE); |
6419 | if (IS_ERR(handle)) { | |
6420 | ret = PTR_ERR(handle); | |
6421 | mlog_errno(ret); | |
6422 | goto out_unlock; | |
6423 | } | |
6424 | ||
a09d09b8 TM |
6425 | trace_ocfs2_free_cached_blocks( |
6426 | (unsigned long long)head->free_blk, head->free_bit); | |
2b604351 MF |
6427 | |
6428 | ret = ocfs2_free_suballoc_bits(handle, inode, di_bh, | |
6429 | head->free_bit, bg_blkno, 1); | |
d5bf1418 | 6430 | if (ret) |
2b604351 | 6431 | mlog_errno(ret); |
2b604351 | 6432 | |
d5bf1418 | 6433 | ocfs2_commit_trans(osb, handle); |
2b604351 MF |
6434 | |
6435 | tmp = head; | |
6436 | head = head->free_next; | |
6437 | kfree(tmp); | |
6438 | } | |
6439 | ||
2b604351 | 6440 | out_unlock: |
e63aecb6 | 6441 | ocfs2_inode_unlock(inode, 1); |
2b604351 MF |
6442 | brelse(di_bh); |
6443 | out_mutex: | |
5955102c | 6444 | inode_unlock(inode); |
2b604351 MF |
6445 | iput(inode); |
6446 | out: | |
6447 | while(head) { | |
6448 | /* Premature exit may have left some dangling items. */ | |
6449 | tmp = head; | |
6450 | head = head->free_next; | |
6451 | kfree(tmp); | |
6452 | } | |
6453 | ||
6454 | return ret; | |
6455 | } | |
6456 | ||
2891d290 TM |
6457 | int ocfs2_cache_cluster_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt, |
6458 | u64 blkno, unsigned int bit) | |
6459 | { | |
6460 | int ret = 0; | |
6461 | struct ocfs2_cached_block_free *item; | |
6462 | ||
74380c47 | 6463 | item = kzalloc(sizeof(*item), GFP_NOFS); |
2891d290 TM |
6464 | if (item == NULL) { |
6465 | ret = -ENOMEM; | |
6466 | mlog_errno(ret); | |
6467 | return ret; | |
6468 | } | |
6469 | ||
a09d09b8 | 6470 | trace_ocfs2_cache_cluster_dealloc((unsigned long long)blkno, bit); |
2891d290 TM |
6471 | |
6472 | item->free_blk = blkno; | |
6473 | item->free_bit = bit; | |
6474 | item->free_next = ctxt->c_global_allocator; | |
6475 | ||
6476 | ctxt->c_global_allocator = item; | |
6477 | return ret; | |
6478 | } | |
6479 | ||
6480 | static int ocfs2_free_cached_clusters(struct ocfs2_super *osb, | |
6481 | struct ocfs2_cached_block_free *head) | |
6482 | { | |
6483 | struct ocfs2_cached_block_free *tmp; | |
6484 | struct inode *tl_inode = osb->osb_tl_inode; | |
6485 | handle_t *handle; | |
6486 | int ret = 0; | |
6487 | ||
5955102c | 6488 | inode_lock(tl_inode); |
2891d290 TM |
6489 | |
6490 | while (head) { | |
6491 | if (ocfs2_truncate_log_needs_flush(osb)) { | |
6492 | ret = __ocfs2_flush_truncate_log(osb); | |
6493 | if (ret < 0) { | |
6494 | mlog_errno(ret); | |
6495 | break; | |
6496 | } | |
6497 | } | |
6498 | ||
6499 | handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE); | |
6500 | if (IS_ERR(handle)) { | |
6501 | ret = PTR_ERR(handle); | |
6502 | mlog_errno(ret); | |
6503 | break; | |
6504 | } | |
6505 | ||
6506 | ret = ocfs2_truncate_log_append(osb, handle, head->free_blk, | |
6507 | head->free_bit); | |
6508 | ||
6509 | ocfs2_commit_trans(osb, handle); | |
6510 | tmp = head; | |
6511 | head = head->free_next; | |
6512 | kfree(tmp); | |
6513 | ||
6514 | if (ret < 0) { | |
6515 | mlog_errno(ret); | |
6516 | break; | |
6517 | } | |
6518 | } | |
6519 | ||
5955102c | 6520 | inode_unlock(tl_inode); |
2891d290 TM |
6521 | |
6522 | while (head) { | |
6523 | /* Premature exit may have left some dangling items. */ | |
6524 | tmp = head; | |
6525 | head = head->free_next; | |
6526 | kfree(tmp); | |
6527 | } | |
6528 | ||
6529 | return ret; | |
6530 | } | |
6531 | ||
2b604351 MF |
6532 | int ocfs2_run_deallocs(struct ocfs2_super *osb, |
6533 | struct ocfs2_cached_dealloc_ctxt *ctxt) | |
6534 | { | |
6535 | int ret = 0, ret2; | |
6536 | struct ocfs2_per_slot_free_list *fl; | |
6537 | ||
6538 | if (!ctxt) | |
6539 | return 0; | |
6540 | ||
6541 | while (ctxt->c_first_suballocator) { | |
6542 | fl = ctxt->c_first_suballocator; | |
6543 | ||
6544 | if (fl->f_first) { | |
a09d09b8 TM |
6545 | trace_ocfs2_run_deallocs(fl->f_inode_type, |
6546 | fl->f_slot); | |
2891d290 TM |
6547 | ret2 = ocfs2_free_cached_blocks(osb, |
6548 | fl->f_inode_type, | |
6549 | fl->f_slot, | |
6550 | fl->f_first); | |
2b604351 MF |
6551 | if (ret2) |
6552 | mlog_errno(ret2); | |
6553 | if (!ret) | |
6554 | ret = ret2; | |
6555 | } | |
6556 | ||
6557 | ctxt->c_first_suballocator = fl->f_next_suballocator; | |
6558 | kfree(fl); | |
6559 | } | |
6560 | ||
2891d290 TM |
6561 | if (ctxt->c_global_allocator) { |
6562 | ret2 = ocfs2_free_cached_clusters(osb, | |
6563 | ctxt->c_global_allocator); | |
6564 | if (ret2) | |
6565 | mlog_errno(ret2); | |
6566 | if (!ret) | |
6567 | ret = ret2; | |
6568 | ||
6569 | ctxt->c_global_allocator = NULL; | |
6570 | } | |
6571 | ||
2b604351 MF |
6572 | return ret; |
6573 | } | |
6574 | ||
6575 | static struct ocfs2_per_slot_free_list * | |
6576 | ocfs2_find_per_slot_free_list(int type, | |
6577 | int slot, | |
6578 | struct ocfs2_cached_dealloc_ctxt *ctxt) | |
6579 | { | |
6580 | struct ocfs2_per_slot_free_list *fl = ctxt->c_first_suballocator; | |
6581 | ||
6582 | while (fl) { | |
6583 | if (fl->f_inode_type == type && fl->f_slot == slot) | |
6584 | return fl; | |
6585 | ||
6586 | fl = fl->f_next_suballocator; | |
6587 | } | |
6588 | ||
6589 | fl = kmalloc(sizeof(*fl), GFP_NOFS); | |
6590 | if (fl) { | |
6591 | fl->f_inode_type = type; | |
6592 | fl->f_slot = slot; | |
6593 | fl->f_first = NULL; | |
6594 | fl->f_next_suballocator = ctxt->c_first_suballocator; | |
6595 | ||
6596 | ctxt->c_first_suballocator = fl; | |
6597 | } | |
6598 | return fl; | |
6599 | } | |
6600 | ||
71a36944 CG |
6601 | static struct ocfs2_per_slot_free_list * |
6602 | ocfs2_find_preferred_free_list(int type, | |
6603 | int preferred_slot, | |
6604 | int *real_slot, | |
6605 | struct ocfs2_cached_dealloc_ctxt *ctxt) | |
6606 | { | |
6607 | struct ocfs2_per_slot_free_list *fl = ctxt->c_first_suballocator; | |
6608 | ||
6609 | while (fl) { | |
6610 | if (fl->f_inode_type == type && fl->f_slot == preferred_slot) { | |
6611 | *real_slot = fl->f_slot; | |
6612 | return fl; | |
6613 | } | |
6614 | ||
6615 | fl = fl->f_next_suballocator; | |
6616 | } | |
6617 | ||
6618 | /* If we can't find any free list matching preferred slot, just use | |
6619 | * the first one. | |
6620 | */ | |
6621 | fl = ctxt->c_first_suballocator; | |
6622 | *real_slot = fl->f_slot; | |
6623 | ||
6624 | return fl; | |
6625 | } | |
6626 | ||
6627 | /* Return Value 1 indicates empty */ | |
6628 | static int ocfs2_is_dealloc_empty(struct ocfs2_extent_tree *et) | |
6629 | { | |
6630 | struct ocfs2_per_slot_free_list *fl = NULL; | |
6631 | ||
6632 | if (!et->et_dealloc) | |
6633 | return 1; | |
6634 | ||
6635 | fl = et->et_dealloc->c_first_suballocator; | |
6636 | if (!fl) | |
6637 | return 1; | |
6638 | ||
6639 | if (!fl->f_first) | |
6640 | return 1; | |
6641 | ||
6642 | return 0; | |
6643 | } | |
6644 | ||
6645 | /* If extent was deleted from tree due to extent rotation and merging, and | |
6646 | * no metadata is reserved ahead of time. Try to reuse some extents | |
6647 | * just deleted. This is only used to reuse extent blocks. | |
6648 | * It is supposed to find enough extent blocks in dealloc if our estimation | |
6649 | * on metadata is accurate. | |
6650 | */ | |
6651 | static int ocfs2_reuse_blk_from_dealloc(handle_t *handle, | |
6652 | struct ocfs2_extent_tree *et, | |
6653 | struct buffer_head **new_eb_bh, | |
6654 | int blk_wanted, int *blk_given) | |
6655 | { | |
6656 | int i, status = 0, real_slot; | |
6657 | struct ocfs2_cached_dealloc_ctxt *dealloc; | |
6658 | struct ocfs2_per_slot_free_list *fl; | |
6659 | struct ocfs2_cached_block_free *bf; | |
6660 | struct ocfs2_extent_block *eb; | |
6661 | struct ocfs2_super *osb = | |
6662 | OCFS2_SB(ocfs2_metadata_cache_get_super(et->et_ci)); | |
6663 | ||
6664 | *blk_given = 0; | |
6665 | ||
6666 | /* If extent tree doesn't have a dealloc, this is not faulty. Just | |
6667 | * tell upper caller dealloc can't provide any block and it should | |
6668 | * ask for alloc to claim more space. | |
6669 | */ | |
6670 | dealloc = et->et_dealloc; | |
6671 | if (!dealloc) | |
6672 | goto bail; | |
6673 | ||
6674 | for (i = 0; i < blk_wanted; i++) { | |
6675 | /* Prefer to use local slot */ | |
6676 | fl = ocfs2_find_preferred_free_list(EXTENT_ALLOC_SYSTEM_INODE, | |
6677 | osb->slot_num, &real_slot, | |
6678 | dealloc); | |
6679 | /* If no more block can be reused, we should claim more | |
6680 | * from alloc. Just return here normally. | |
6681 | */ | |
6682 | if (!fl) { | |
6683 | status = 0; | |
6684 | break; | |
6685 | } | |
6686 | ||
6687 | bf = fl->f_first; | |
6688 | fl->f_first = bf->free_next; | |
6689 | ||
6690 | new_eb_bh[i] = sb_getblk(osb->sb, bf->free_blk); | |
6691 | if (new_eb_bh[i] == NULL) { | |
6692 | status = -ENOMEM; | |
6693 | mlog_errno(status); | |
6694 | goto bail; | |
6695 | } | |
6696 | ||
6697 | mlog(0, "Reusing block(%llu) from " | |
6698 | "dealloc(local slot:%d, real slot:%d)\n", | |
6699 | bf->free_blk, osb->slot_num, real_slot); | |
6700 | ||
6701 | ocfs2_set_new_buffer_uptodate(et->et_ci, new_eb_bh[i]); | |
6702 | ||
6703 | status = ocfs2_journal_access_eb(handle, et->et_ci, | |
6704 | new_eb_bh[i], | |
6705 | OCFS2_JOURNAL_ACCESS_CREATE); | |
6706 | if (status < 0) { | |
6707 | mlog_errno(status); | |
6708 | goto bail; | |
6709 | } | |
6710 | ||
6711 | memset(new_eb_bh[i]->b_data, 0, osb->sb->s_blocksize); | |
6712 | eb = (struct ocfs2_extent_block *) new_eb_bh[i]->b_data; | |
6713 | ||
6714 | /* We can't guarantee that buffer head is still cached, so | |
6715 | * polutlate the extent block again. | |
6716 | */ | |
6717 | strcpy(eb->h_signature, OCFS2_EXTENT_BLOCK_SIGNATURE); | |
6718 | eb->h_blkno = cpu_to_le64(bf->free_blk); | |
6719 | eb->h_fs_generation = cpu_to_le32(osb->fs_generation); | |
6720 | eb->h_suballoc_slot = cpu_to_le16(real_slot); | |
6721 | eb->h_suballoc_loc = cpu_to_le64(bf->free_bg); | |
6722 | eb->h_suballoc_bit = cpu_to_le16(bf->free_bit); | |
6723 | eb->h_list.l_count = | |
6724 | cpu_to_le16(ocfs2_extent_recs_per_eb(osb->sb)); | |
6725 | ||
6726 | /* We'll also be dirtied by the caller, so | |
6727 | * this isn't absolutely necessary. | |
6728 | */ | |
6729 | ocfs2_journal_dirty(handle, new_eb_bh[i]); | |
6730 | ||
6731 | if (!fl->f_first) { | |
6732 | dealloc->c_first_suballocator = fl->f_next_suballocator; | |
6733 | kfree(fl); | |
6734 | } | |
6735 | kfree(bf); | |
6736 | } | |
6737 | ||
6738 | *blk_given = i; | |
6739 | ||
6740 | bail: | |
6741 | if (unlikely(status < 0)) { | |
6742 | for (i = 0; i < blk_wanted; i++) | |
6743 | brelse(new_eb_bh[i]); | |
6744 | } | |
6745 | ||
6746 | return status; | |
6747 | } | |
6748 | ||
1823cb0b | 6749 | int ocfs2_cache_block_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt, |
74380c47 TM |
6750 | int type, int slot, u64 suballoc, |
6751 | u64 blkno, unsigned int bit) | |
2b604351 MF |
6752 | { |
6753 | int ret; | |
6754 | struct ocfs2_per_slot_free_list *fl; | |
6755 | struct ocfs2_cached_block_free *item; | |
6756 | ||
6757 | fl = ocfs2_find_per_slot_free_list(type, slot, ctxt); | |
6758 | if (fl == NULL) { | |
6759 | ret = -ENOMEM; | |
6760 | mlog_errno(ret); | |
6761 | goto out; | |
6762 | } | |
6763 | ||
74380c47 | 6764 | item = kzalloc(sizeof(*item), GFP_NOFS); |
2b604351 MF |
6765 | if (item == NULL) { |
6766 | ret = -ENOMEM; | |
6767 | mlog_errno(ret); | |
6768 | goto out; | |
6769 | } | |
6770 | ||
a09d09b8 TM |
6771 | trace_ocfs2_cache_block_dealloc(type, slot, |
6772 | (unsigned long long)suballoc, | |
6773 | (unsigned long long)blkno, bit); | |
2b604351 | 6774 | |
74380c47 | 6775 | item->free_bg = suballoc; |
2b604351 MF |
6776 | item->free_blk = blkno; |
6777 | item->free_bit = bit; | |
6778 | item->free_next = fl->f_first; | |
6779 | ||
6780 | fl->f_first = item; | |
6781 | ||
6782 | ret = 0; | |
6783 | out: | |
6784 | return ret; | |
6785 | } | |
6786 | ||
59a5e416 MF |
6787 | static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt, |
6788 | struct ocfs2_extent_block *eb) | |
6789 | { | |
6790 | return ocfs2_cache_block_dealloc(ctxt, EXTENT_ALLOC_SYSTEM_INODE, | |
6791 | le16_to_cpu(eb->h_suballoc_slot), | |
74380c47 | 6792 | le64_to_cpu(eb->h_suballoc_loc), |
59a5e416 MF |
6793 | le64_to_cpu(eb->h_blkno), |
6794 | le16_to_cpu(eb->h_suballoc_bit)); | |
6795 | } | |
6796 | ||
2b4e30fb | 6797 | static int ocfs2_zero_func(handle_t *handle, struct buffer_head *bh) |
60b11392 MF |
6798 | { |
6799 | set_buffer_uptodate(bh); | |
6800 | mark_buffer_dirty(bh); | |
6801 | return 0; | |
6802 | } | |
6803 | ||
6f70fa51 TM |
6804 | void ocfs2_map_and_dirty_page(struct inode *inode, handle_t *handle, |
6805 | unsigned int from, unsigned int to, | |
6806 | struct page *page, int zero, u64 *phys) | |
1d410a6e MF |
6807 | { |
6808 | int ret, partial = 0; | |
6809 | ||
6810 | ret = ocfs2_map_page_blocks(page, phys, inode, from, to, 0); | |
6811 | if (ret) | |
6812 | mlog_errno(ret); | |
6813 | ||
6814 | if (zero) | |
eebd2aa3 | 6815 | zero_user_segment(page, from, to); |
1d410a6e MF |
6816 | |
6817 | /* | |
6818 | * Need to set the buffers we zero'd into uptodate | |
6819 | * here if they aren't - ocfs2_map_page_blocks() | |
6820 | * might've skipped some | |
6821 | */ | |
2b4e30fb JB |
6822 | ret = walk_page_buffers(handle, page_buffers(page), |
6823 | from, to, &partial, | |
6824 | ocfs2_zero_func); | |
6825 | if (ret < 0) | |
6826 | mlog_errno(ret); | |
6827 | else if (ocfs2_should_order_data(inode)) { | |
6828 | ret = ocfs2_jbd2_file_inode(handle, inode); | |
1d410a6e MF |
6829 | if (ret < 0) |
6830 | mlog_errno(ret); | |
6831 | } | |
6832 | ||
6833 | if (!partial) | |
6834 | SetPageUptodate(page); | |
6835 | ||
6836 | flush_dcache_page(page); | |
6837 | } | |
6838 | ||
35edec1d MF |
6839 | static void ocfs2_zero_cluster_pages(struct inode *inode, loff_t start, |
6840 | loff_t end, struct page **pages, | |
6841 | int numpages, u64 phys, handle_t *handle) | |
60b11392 | 6842 | { |
1d410a6e | 6843 | int i; |
60b11392 | 6844 | struct page *page; |
09cbfeaf | 6845 | unsigned int from, to = PAGE_SIZE; |
60b11392 MF |
6846 | struct super_block *sb = inode->i_sb; |
6847 | ||
6848 | BUG_ON(!ocfs2_sparse_alloc(OCFS2_SB(sb))); | |
6849 | ||
6850 | if (numpages == 0) | |
6851 | goto out; | |
6852 | ||
09cbfeaf | 6853 | to = PAGE_SIZE; |
60b11392 MF |
6854 | for(i = 0; i < numpages; i++) { |
6855 | page = pages[i]; | |
6856 | ||
09cbfeaf KS |
6857 | from = start & (PAGE_SIZE - 1); |
6858 | if ((end >> PAGE_SHIFT) == page->index) | |
6859 | to = end & (PAGE_SIZE - 1); | |
35edec1d | 6860 | |
09cbfeaf KS |
6861 | BUG_ON(from > PAGE_SIZE); |
6862 | BUG_ON(to > PAGE_SIZE); | |
60b11392 | 6863 | |
1d410a6e MF |
6864 | ocfs2_map_and_dirty_page(inode, handle, from, to, page, 1, |
6865 | &phys); | |
60b11392 | 6866 | |
09cbfeaf | 6867 | start = (page->index + 1) << PAGE_SHIFT; |
60b11392 MF |
6868 | } |
6869 | out: | |
1d410a6e MF |
6870 | if (pages) |
6871 | ocfs2_unlock_and_free_pages(pages, numpages); | |
60b11392 MF |
6872 | } |
6873 | ||
6f70fa51 TM |
6874 | int ocfs2_grab_pages(struct inode *inode, loff_t start, loff_t end, |
6875 | struct page **pages, int *num) | |
60b11392 | 6876 | { |
1d410a6e | 6877 | int numpages, ret = 0; |
60b11392 MF |
6878 | struct address_space *mapping = inode->i_mapping; |
6879 | unsigned long index; | |
35edec1d | 6880 | loff_t last_page_bytes; |
60b11392 | 6881 | |
35edec1d | 6882 | BUG_ON(start > end); |
60b11392 | 6883 | |
1d410a6e | 6884 | numpages = 0; |
35edec1d | 6885 | last_page_bytes = PAGE_ALIGN(end); |
09cbfeaf | 6886 | index = start >> PAGE_SHIFT; |
60b11392 | 6887 | do { |
9b4c0ff3 | 6888 | pages[numpages] = find_or_create_page(mapping, index, GFP_NOFS); |
60b11392 MF |
6889 | if (!pages[numpages]) { |
6890 | ret = -ENOMEM; | |
6891 | mlog_errno(ret); | |
6892 | goto out; | |
6893 | } | |
6894 | ||
6895 | numpages++; | |
6896 | index++; | |
09cbfeaf | 6897 | } while (index < (last_page_bytes >> PAGE_SHIFT)); |
60b11392 MF |
6898 | |
6899 | out: | |
6900 | if (ret != 0) { | |
1d410a6e MF |
6901 | if (pages) |
6902 | ocfs2_unlock_and_free_pages(pages, numpages); | |
60b11392 MF |
6903 | numpages = 0; |
6904 | } | |
6905 | ||
6906 | *num = numpages; | |
6907 | ||
6908 | return ret; | |
6909 | } | |
6910 | ||
6f70fa51 TM |
6911 | static int ocfs2_grab_eof_pages(struct inode *inode, loff_t start, loff_t end, |
6912 | struct page **pages, int *num) | |
6913 | { | |
6914 | struct super_block *sb = inode->i_sb; | |
6915 | ||
6916 | BUG_ON(start >> OCFS2_SB(sb)->s_clustersize_bits != | |
6917 | (end - 1) >> OCFS2_SB(sb)->s_clustersize_bits); | |
6918 | ||
6919 | return ocfs2_grab_pages(inode, start, end, pages, num); | |
6920 | } | |
6921 | ||
60b11392 MF |
6922 | /* |
6923 | * Zero the area past i_size but still within an allocated | |
6924 | * cluster. This avoids exposing nonzero data on subsequent file | |
6925 | * extends. | |
6926 | * | |
6927 | * We need to call this before i_size is updated on the inode because | |
6928 | * otherwise block_write_full_page() will skip writeout of pages past | |
6929 | * i_size. The new_i_size parameter is passed for this reason. | |
6930 | */ | |
35edec1d MF |
6931 | int ocfs2_zero_range_for_truncate(struct inode *inode, handle_t *handle, |
6932 | u64 range_start, u64 range_end) | |
60b11392 | 6933 | { |
1d410a6e | 6934 | int ret = 0, numpages; |
60b11392 MF |
6935 | struct page **pages = NULL; |
6936 | u64 phys; | |
1d410a6e MF |
6937 | unsigned int ext_flags; |
6938 | struct super_block *sb = inode->i_sb; | |
60b11392 MF |
6939 | |
6940 | /* | |
6941 | * File systems which don't support sparse files zero on every | |
6942 | * extend. | |
6943 | */ | |
1d410a6e | 6944 | if (!ocfs2_sparse_alloc(OCFS2_SB(sb))) |
60b11392 MF |
6945 | return 0; |
6946 | ||
1d410a6e | 6947 | pages = kcalloc(ocfs2_pages_per_cluster(sb), |
60b11392 MF |
6948 | sizeof(struct page *), GFP_NOFS); |
6949 | if (pages == NULL) { | |
6950 | ret = -ENOMEM; | |
6951 | mlog_errno(ret); | |
6952 | goto out; | |
6953 | } | |
6954 | ||
1d410a6e MF |
6955 | if (range_start == range_end) |
6956 | goto out; | |
6957 | ||
6958 | ret = ocfs2_extent_map_get_blocks(inode, | |
6959 | range_start >> sb->s_blocksize_bits, | |
6960 | &phys, NULL, &ext_flags); | |
60b11392 MF |
6961 | if (ret) { |
6962 | mlog_errno(ret); | |
6963 | goto out; | |
6964 | } | |
6965 | ||
1d410a6e MF |
6966 | /* |
6967 | * Tail is a hole, or is marked unwritten. In either case, we | |
6968 | * can count on read and write to return/push zero's. | |
6969 | */ | |
6970 | if (phys == 0 || ext_flags & OCFS2_EXT_UNWRITTEN) | |
60b11392 MF |
6971 | goto out; |
6972 | ||
1d410a6e MF |
6973 | ret = ocfs2_grab_eof_pages(inode, range_start, range_end, pages, |
6974 | &numpages); | |
6975 | if (ret) { | |
6976 | mlog_errno(ret); | |
6977 | goto out; | |
6978 | } | |
6979 | ||
35edec1d MF |
6980 | ocfs2_zero_cluster_pages(inode, range_start, range_end, pages, |
6981 | numpages, phys, handle); | |
60b11392 MF |
6982 | |
6983 | /* | |
6984 | * Initiate writeout of the pages we zero'd here. We don't | |
6985 | * wait on them - the truncate_inode_pages() call later will | |
6986 | * do that for us. | |
6987 | */ | |
2cfd30ad CH |
6988 | ret = filemap_fdatawrite_range(inode->i_mapping, range_start, |
6989 | range_end - 1); | |
60b11392 MF |
6990 | if (ret) |
6991 | mlog_errno(ret); | |
6992 | ||
6993 | out: | |
d787ab09 | 6994 | kfree(pages); |
60b11392 MF |
6995 | |
6996 | return ret; | |
6997 | } | |
6998 | ||
fdd77704 TY |
6999 | static void ocfs2_zero_dinode_id2_with_xattr(struct inode *inode, |
7000 | struct ocfs2_dinode *di) | |
1afc32b9 MF |
7001 | { |
7002 | unsigned int blocksize = 1 << inode->i_sb->s_blocksize_bits; | |
fdd77704 | 7003 | unsigned int xattrsize = le16_to_cpu(di->i_xattr_inline_size); |
1afc32b9 | 7004 | |
fdd77704 TY |
7005 | if (le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_XATTR_FL) |
7006 | memset(&di->id2, 0, blocksize - | |
7007 | offsetof(struct ocfs2_dinode, id2) - | |
7008 | xattrsize); | |
7009 | else | |
7010 | memset(&di->id2, 0, blocksize - | |
7011 | offsetof(struct ocfs2_dinode, id2)); | |
1afc32b9 MF |
7012 | } |
7013 | ||
5b6a3a2b MF |
7014 | void ocfs2_dinode_new_extent_list(struct inode *inode, |
7015 | struct ocfs2_dinode *di) | |
7016 | { | |
fdd77704 | 7017 | ocfs2_zero_dinode_id2_with_xattr(inode, di); |
5b6a3a2b MF |
7018 | di->id2.i_list.l_tree_depth = 0; |
7019 | di->id2.i_list.l_next_free_rec = 0; | |
fdd77704 TY |
7020 | di->id2.i_list.l_count = cpu_to_le16( |
7021 | ocfs2_extent_recs_per_inode_with_xattr(inode->i_sb, di)); | |
5b6a3a2b MF |
7022 | } |
7023 | ||
1afc32b9 MF |
7024 | void ocfs2_set_inode_data_inline(struct inode *inode, struct ocfs2_dinode *di) |
7025 | { | |
7026 | struct ocfs2_inode_info *oi = OCFS2_I(inode); | |
7027 | struct ocfs2_inline_data *idata = &di->id2.i_data; | |
7028 | ||
7029 | spin_lock(&oi->ip_lock); | |
7030 | oi->ip_dyn_features |= OCFS2_INLINE_DATA_FL; | |
7031 | di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features); | |
7032 | spin_unlock(&oi->ip_lock); | |
7033 | ||
7034 | /* | |
7035 | * We clear the entire i_data structure here so that all | |
7036 | * fields can be properly initialized. | |
7037 | */ | |
fdd77704 | 7038 | ocfs2_zero_dinode_id2_with_xattr(inode, di); |
1afc32b9 | 7039 | |
fdd77704 TY |
7040 | idata->id_count = cpu_to_le16( |
7041 | ocfs2_max_inline_data_with_xattr(inode->i_sb, di)); | |
1afc32b9 MF |
7042 | } |
7043 | ||
7044 | int ocfs2_convert_inline_data_to_extents(struct inode *inode, | |
7045 | struct buffer_head *di_bh) | |
7046 | { | |
7047 | int ret, i, has_data, num_pages = 0; | |
fb951eb5 ZW |
7048 | int need_free = 0; |
7049 | u32 bit_off, num; | |
1afc32b9 MF |
7050 | handle_t *handle; |
7051 | u64 uninitialized_var(block); | |
7052 | struct ocfs2_inode_info *oi = OCFS2_I(inode); | |
7053 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
7054 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; | |
1afc32b9 MF |
7055 | struct ocfs2_alloc_context *data_ac = NULL; |
7056 | struct page **pages = NULL; | |
7057 | loff_t end = osb->s_clustersize; | |
f99b9b7c | 7058 | struct ocfs2_extent_tree et; |
a90714c1 | 7059 | int did_quota = 0; |
1afc32b9 MF |
7060 | |
7061 | has_data = i_size_read(inode) ? 1 : 0; | |
7062 | ||
7063 | if (has_data) { | |
7064 | pages = kcalloc(ocfs2_pages_per_cluster(osb->sb), | |
7065 | sizeof(struct page *), GFP_NOFS); | |
7066 | if (pages == NULL) { | |
7067 | ret = -ENOMEM; | |
7068 | mlog_errno(ret); | |
3cc79b79 | 7069 | return ret; |
1afc32b9 MF |
7070 | } |
7071 | ||
7072 | ret = ocfs2_reserve_clusters(osb, 1, &data_ac); | |
7073 | if (ret) { | |
7074 | mlog_errno(ret); | |
3cc79b79 | 7075 | goto free_pages; |
1afc32b9 MF |
7076 | } |
7077 | } | |
7078 | ||
a90714c1 JK |
7079 | handle = ocfs2_start_trans(osb, |
7080 | ocfs2_inline_to_extents_credits(osb->sb)); | |
1afc32b9 MF |
7081 | if (IS_ERR(handle)) { |
7082 | ret = PTR_ERR(handle); | |
7083 | mlog_errno(ret); | |
15eba0fe | 7084 | goto out; |
1afc32b9 MF |
7085 | } |
7086 | ||
0cf2f763 | 7087 | ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh, |
13723d00 | 7088 | OCFS2_JOURNAL_ACCESS_WRITE); |
1afc32b9 MF |
7089 | if (ret) { |
7090 | mlog_errno(ret); | |
7091 | goto out_commit; | |
7092 | } | |
7093 | ||
7094 | if (has_data) { | |
1afc32b9 MF |
7095 | unsigned int page_end; |
7096 | u64 phys; | |
7097 | ||
5dd4056d CH |
7098 | ret = dquot_alloc_space_nodirty(inode, |
7099 | ocfs2_clusters_to_bytes(osb->sb, 1)); | |
7100 | if (ret) | |
a90714c1 | 7101 | goto out_commit; |
a90714c1 JK |
7102 | did_quota = 1; |
7103 | ||
d324cd4c | 7104 | data_ac->ac_resv = &oi->ip_la_data_resv; |
4fe370af | 7105 | |
1ed9b777 | 7106 | ret = ocfs2_claim_clusters(handle, data_ac, 1, &bit_off, |
1afc32b9 MF |
7107 | &num); |
7108 | if (ret) { | |
7109 | mlog_errno(ret); | |
7110 | goto out_commit; | |
7111 | } | |
7112 | ||
7113 | /* | |
7114 | * Save two copies, one for insert, and one that can | |
7115 | * be changed by ocfs2_map_and_dirty_page() below. | |
7116 | */ | |
7117 | block = phys = ocfs2_clusters_to_blocks(inode->i_sb, bit_off); | |
7118 | ||
7119 | /* | |
7120 | * Non sparse file systems zero on extend, so no need | |
7121 | * to do that now. | |
7122 | */ | |
7123 | if (!ocfs2_sparse_alloc(osb) && | |
09cbfeaf KS |
7124 | PAGE_SIZE < osb->s_clustersize) |
7125 | end = PAGE_SIZE; | |
1afc32b9 MF |
7126 | |
7127 | ret = ocfs2_grab_eof_pages(inode, 0, end, pages, &num_pages); | |
7128 | if (ret) { | |
7129 | mlog_errno(ret); | |
fb951eb5 | 7130 | need_free = 1; |
1afc32b9 MF |
7131 | goto out_commit; |
7132 | } | |
7133 | ||
7134 | /* | |
7135 | * This should populate the 1st page for us and mark | |
7136 | * it up to date. | |
7137 | */ | |
7138 | ret = ocfs2_read_inline_data(inode, pages[0], di_bh); | |
7139 | if (ret) { | |
7140 | mlog_errno(ret); | |
fb951eb5 | 7141 | need_free = 1; |
15eba0fe | 7142 | goto out_unlock; |
1afc32b9 MF |
7143 | } |
7144 | ||
09cbfeaf KS |
7145 | page_end = PAGE_SIZE; |
7146 | if (PAGE_SIZE > osb->s_clustersize) | |
1afc32b9 MF |
7147 | page_end = osb->s_clustersize; |
7148 | ||
7149 | for (i = 0; i < num_pages; i++) | |
7150 | ocfs2_map_and_dirty_page(inode, handle, 0, page_end, | |
7151 | pages[i], i > 0, &phys); | |
7152 | } | |
7153 | ||
7154 | spin_lock(&oi->ip_lock); | |
7155 | oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL; | |
7156 | di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features); | |
7157 | spin_unlock(&oi->ip_lock); | |
7158 | ||
2931cdcb | 7159 | ocfs2_update_inode_fsync_trans(handle, inode, 1); |
5b6a3a2b | 7160 | ocfs2_dinode_new_extent_list(inode, di); |
1afc32b9 MF |
7161 | |
7162 | ocfs2_journal_dirty(handle, di_bh); | |
7163 | ||
7164 | if (has_data) { | |
7165 | /* | |
7166 | * An error at this point should be extremely rare. If | |
7167 | * this proves to be false, we could always re-build | |
7168 | * the in-inode data from our pages. | |
7169 | */ | |
5e404e9e | 7170 | ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh); |
cc79d8c1 | 7171 | ret = ocfs2_insert_extent(handle, &et, 0, block, 1, 0, NULL); |
1afc32b9 MF |
7172 | if (ret) { |
7173 | mlog_errno(ret); | |
fb951eb5 | 7174 | need_free = 1; |
15eba0fe | 7175 | goto out_unlock; |
1afc32b9 MF |
7176 | } |
7177 | ||
7178 | inode->i_blocks = ocfs2_inode_sector_count(inode); | |
7179 | } | |
7180 | ||
15eba0fe | 7181 | out_unlock: |
7182 | if (pages) | |
7183 | ocfs2_unlock_and_free_pages(pages, num_pages); | |
7184 | ||
1afc32b9 | 7185 | out_commit: |
a90714c1 | 7186 | if (ret < 0 && did_quota) |
5dd4056d | 7187 | dquot_free_space_nodirty(inode, |
a90714c1 JK |
7188 | ocfs2_clusters_to_bytes(osb->sb, 1)); |
7189 | ||
fb951eb5 ZW |
7190 | if (need_free) { |
7191 | if (data_ac->ac_which == OCFS2_AC_USE_LOCAL) | |
7192 | ocfs2_free_local_alloc_bits(osb, handle, data_ac, | |
7193 | bit_off, num); | |
7194 | else | |
7195 | ocfs2_free_clusters(handle, | |
7196 | data_ac->ac_inode, | |
7197 | data_ac->ac_bh, | |
7198 | ocfs2_clusters_to_blocks(osb->sb, bit_off), | |
7199 | num); | |
7200 | } | |
7201 | ||
1afc32b9 MF |
7202 | ocfs2_commit_trans(osb, handle); |
7203 | ||
15eba0fe | 7204 | out: |
1afc32b9 MF |
7205 | if (data_ac) |
7206 | ocfs2_free_alloc_context(data_ac); | |
3cc79b79 | 7207 | free_pages: |
fd90d4df | 7208 | kfree(pages); |
1afc32b9 MF |
7209 | return ret; |
7210 | } | |
7211 | ||
ccd979bd MF |
7212 | /* |
7213 | * It is expected, that by the time you call this function, | |
7214 | * inode->i_size and fe->i_size have been adjusted. | |
7215 | * | |
7216 | * WARNING: This will kfree the truncate context | |
7217 | */ | |
7218 | int ocfs2_commit_truncate(struct ocfs2_super *osb, | |
7219 | struct inode *inode, | |
78f94673 | 7220 | struct buffer_head *di_bh) |
ccd979bd | 7221 | { |
78f94673 TY |
7222 | int status = 0, i, flags = 0; |
7223 | u32 new_highest_cpos, range, trunc_cpos, trunc_len, phys_cpos, coff; | |
bcbbb24a | 7224 | u64 blkno = 0; |
ccd979bd | 7225 | struct ocfs2_extent_list *el; |
78f94673 | 7226 | struct ocfs2_extent_rec *rec; |
dcd0538f | 7227 | struct ocfs2_path *path = NULL; |
78f94673 TY |
7228 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
7229 | struct ocfs2_extent_list *root_el = &(di->id2.i_list); | |
7230 | u64 refcount_loc = le64_to_cpu(di->i_refcount_loc); | |
7231 | struct ocfs2_extent_tree et; | |
7232 | struct ocfs2_cached_dealloc_ctxt dealloc; | |
f62f12b3 | 7233 | struct ocfs2_refcount_tree *ref_tree = NULL; |
ccd979bd | 7234 | |
78f94673 TY |
7235 | ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh); |
7236 | ocfs2_init_dealloc_ctxt(&dealloc); | |
7237 | ||
dcd0538f | 7238 | new_highest_cpos = ocfs2_clusters_for_bytes(osb->sb, |
ccd979bd MF |
7239 | i_size_read(inode)); |
7240 | ||
78f94673 | 7241 | path = ocfs2_new_path(di_bh, &di->id2.i_list, |
13723d00 | 7242 | ocfs2_journal_access_di); |
dcd0538f MF |
7243 | if (!path) { |
7244 | status = -ENOMEM; | |
7245 | mlog_errno(status); | |
7246 | goto bail; | |
7247 | } | |
83418978 MF |
7248 | |
7249 | ocfs2_extent_map_trunc(inode, new_highest_cpos); | |
7250 | ||
ccd979bd | 7251 | start: |
3a0782d0 MF |
7252 | /* |
7253 | * Check that we still have allocation to delete. | |
7254 | */ | |
7255 | if (OCFS2_I(inode)->ip_clusters == 0) { | |
7256 | status = 0; | |
7257 | goto bail; | |
7258 | } | |
7259 | ||
dcd0538f MF |
7260 | /* |
7261 | * Truncate always works against the rightmost tree branch. | |
7262 | */ | |
facdb77f | 7263 | status = ocfs2_find_path(INODE_CACHE(inode), path, UINT_MAX); |
dcd0538f MF |
7264 | if (status) { |
7265 | mlog_errno(status); | |
7266 | goto bail; | |
ccd979bd MF |
7267 | } |
7268 | ||
a09d09b8 TM |
7269 | trace_ocfs2_commit_truncate( |
7270 | (unsigned long long)OCFS2_I(inode)->ip_blkno, | |
7271 | new_highest_cpos, | |
7272 | OCFS2_I(inode)->ip_clusters, | |
7273 | path->p_tree_depth); | |
dcd0538f MF |
7274 | |
7275 | /* | |
7276 | * By now, el will point to the extent list on the bottom most | |
7277 | * portion of this tree. Only the tail record is considered in | |
7278 | * each pass. | |
7279 | * | |
7280 | * We handle the following cases, in order: | |
7281 | * - empty extent: delete the remaining branch | |
7282 | * - remove the entire record | |
7283 | * - remove a partial record | |
7284 | * - no record needs to be removed (truncate has completed) | |
7285 | */ | |
7286 | el = path_leaf_el(path); | |
3a0782d0 MF |
7287 | if (le16_to_cpu(el->l_next_free_rec) == 0) { |
7288 | ocfs2_error(inode->i_sb, | |
7289 | "Inode %llu has empty extent block at %llu\n", | |
7290 | (unsigned long long)OCFS2_I(inode)->ip_blkno, | |
7291 | (unsigned long long)path_leaf_bh(path)->b_blocknr); | |
7292 | status = -EROFS; | |
7293 | goto bail; | |
7294 | } | |
7295 | ||
ccd979bd | 7296 | i = le16_to_cpu(el->l_next_free_rec) - 1; |
78f94673 TY |
7297 | rec = &el->l_recs[i]; |
7298 | flags = rec->e_flags; | |
7299 | range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec); | |
7300 | ||
7301 | if (i == 0 && ocfs2_is_empty_extent(rec)) { | |
7302 | /* | |
7303 | * Lower levels depend on this never happening, but it's best | |
7304 | * to check it up here before changing the tree. | |
7305 | */ | |
7306 | if (root_el->l_tree_depth && rec->e_int_clusters == 0) { | |
d0c97d52 | 7307 | mlog(ML_ERROR, "Inode %lu has an empty " |
78f94673 TY |
7308 | "extent record, depth %u\n", inode->i_ino, |
7309 | le16_to_cpu(root_el->l_tree_depth)); | |
d0c97d52 X |
7310 | status = ocfs2_remove_rightmost_empty_extent(osb, |
7311 | &et, path, &dealloc); | |
7312 | if (status) { | |
7313 | mlog_errno(status); | |
7314 | goto bail; | |
7315 | } | |
7316 | ||
7317 | ocfs2_reinit_path(path, 1); | |
7318 | goto start; | |
7319 | } else { | |
7320 | trunc_cpos = le32_to_cpu(rec->e_cpos); | |
7321 | trunc_len = 0; | |
7322 | blkno = 0; | |
78f94673 | 7323 | } |
78f94673 TY |
7324 | } else if (le32_to_cpu(rec->e_cpos) >= new_highest_cpos) { |
7325 | /* | |
7326 | * Truncate entire record. | |
7327 | */ | |
7328 | trunc_cpos = le32_to_cpu(rec->e_cpos); | |
7329 | trunc_len = ocfs2_rec_clusters(el, rec); | |
7330 | blkno = le64_to_cpu(rec->e_blkno); | |
dcd0538f | 7331 | } else if (range > new_highest_cpos) { |
78f94673 TY |
7332 | /* |
7333 | * Partial truncate. it also should be | |
7334 | * the last truncate we're doing. | |
7335 | */ | |
7336 | trunc_cpos = new_highest_cpos; | |
7337 | trunc_len = range - new_highest_cpos; | |
7338 | coff = new_highest_cpos - le32_to_cpu(rec->e_cpos); | |
7339 | blkno = le64_to_cpu(rec->e_blkno) + | |
7340 | ocfs2_clusters_to_blocks(inode->i_sb, coff); | |
dcd0538f | 7341 | } else { |
78f94673 TY |
7342 | /* |
7343 | * Truncate completed, leave happily. | |
7344 | */ | |
dcd0538f MF |
7345 | status = 0; |
7346 | goto bail; | |
7347 | } | |
ccd979bd | 7348 | |
78f94673 | 7349 | phys_cpos = ocfs2_blocks_to_clusters(inode->i_sb, blkno); |
bcbbb24a | 7350 | |
f62f12b3 JB |
7351 | if ((flags & OCFS2_EXT_REFCOUNTED) && trunc_len && !ref_tree) { |
7352 | status = ocfs2_lock_refcount_tree(osb, refcount_loc, 1, | |
7353 | &ref_tree, NULL); | |
7354 | if (status) { | |
7355 | mlog_errno(status); | |
7356 | goto bail; | |
7357 | } | |
7358 | } | |
7359 | ||
78f94673 TY |
7360 | status = ocfs2_remove_btree_range(inode, &et, trunc_cpos, |
7361 | phys_cpos, trunc_len, flags, &dealloc, | |
f62f12b3 | 7362 | refcount_loc, true); |
ccd979bd MF |
7363 | if (status < 0) { |
7364 | mlog_errno(status); | |
7365 | goto bail; | |
7366 | } | |
7367 | ||
dcd0538f MF |
7368 | ocfs2_reinit_path(path, 1); |
7369 | ||
7370 | /* | |
3a0782d0 MF |
7371 | * The check above will catch the case where we've truncated |
7372 | * away all allocation. | |
dcd0538f | 7373 | */ |
3a0782d0 MF |
7374 | goto start; |
7375 | ||
ccd979bd | 7376 | bail: |
f62f12b3 JB |
7377 | if (ref_tree) |
7378 | ocfs2_unlock_refcount_tree(osb, ref_tree, 1); | |
ccd979bd MF |
7379 | |
7380 | ocfs2_schedule_truncate_log_flush(osb, 1); | |
7381 | ||
78f94673 | 7382 | ocfs2_run_deallocs(osb, &dealloc); |
59a5e416 | 7383 | |
dcd0538f | 7384 | ocfs2_free_path(path); |
ccd979bd | 7385 | |
ccd979bd MF |
7386 | return status; |
7387 | } | |
7388 | ||
1afc32b9 MF |
7389 | /* |
7390 | * 'start' is inclusive, 'end' is not. | |
7391 | */ | |
7392 | int ocfs2_truncate_inline(struct inode *inode, struct buffer_head *di_bh, | |
7393 | unsigned int start, unsigned int end, int trunc) | |
7394 | { | |
7395 | int ret; | |
7396 | unsigned int numbytes; | |
7397 | handle_t *handle; | |
7398 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
7399 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; | |
7400 | struct ocfs2_inline_data *idata = &di->id2.i_data; | |
7401 | ||
7402 | if (end > i_size_read(inode)) | |
7403 | end = i_size_read(inode); | |
7404 | ||
d62e74be | 7405 | BUG_ON(start > end); |
1afc32b9 MF |
7406 | |
7407 | if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) || | |
7408 | !(le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_DATA_FL) || | |
7409 | !ocfs2_supports_inline_data(osb)) { | |
7410 | ocfs2_error(inode->i_sb, | |
7ecef14a | 7411 | "Inline data flags for inode %llu don't agree! Disk: 0x%x, Memory: 0x%x, Superblock: 0x%x\n", |
1afc32b9 MF |
7412 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
7413 | le16_to_cpu(di->i_dyn_features), | |
7414 | OCFS2_I(inode)->ip_dyn_features, | |
7415 | osb->s_feature_incompat); | |
7416 | ret = -EROFS; | |
7417 | goto out; | |
7418 | } | |
7419 | ||
7420 | handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); | |
7421 | if (IS_ERR(handle)) { | |
7422 | ret = PTR_ERR(handle); | |
7423 | mlog_errno(ret); | |
7424 | goto out; | |
7425 | } | |
7426 | ||
0cf2f763 | 7427 | ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh, |
13723d00 | 7428 | OCFS2_JOURNAL_ACCESS_WRITE); |
1afc32b9 MF |
7429 | if (ret) { |
7430 | mlog_errno(ret); | |
7431 | goto out_commit; | |
7432 | } | |
7433 | ||
7434 | numbytes = end - start; | |
7435 | memset(idata->id_data + start, 0, numbytes); | |
7436 | ||
7437 | /* | |
7438 | * No need to worry about the data page here - it's been | |
7439 | * truncated already and inline data doesn't need it for | |
7440 | * pushing zero's to disk, so we'll let readpage pick it up | |
7441 | * later. | |
7442 | */ | |
7443 | if (trunc) { | |
7444 | i_size_write(inode, start); | |
7445 | di->i_size = cpu_to_le64(start); | |
7446 | } | |
7447 | ||
7448 | inode->i_blocks = ocfs2_inode_sector_count(inode); | |
078cd827 | 7449 | inode->i_ctime = inode->i_mtime = current_time(inode); |
1afc32b9 MF |
7450 | |
7451 | di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec); | |
7452 | di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec); | |
7453 | ||
6fdb702d | 7454 | ocfs2_update_inode_fsync_trans(handle, inode, 1); |
1afc32b9 MF |
7455 | ocfs2_journal_dirty(handle, di_bh); |
7456 | ||
7457 | out_commit: | |
7458 | ocfs2_commit_trans(osb, handle); | |
7459 | ||
7460 | out: | |
7461 | return ret; | |
7462 | } | |
e80de36d TM |
7463 | |
7464 | static int ocfs2_trim_extent(struct super_block *sb, | |
7465 | struct ocfs2_group_desc *gd, | |
105ddc93 | 7466 | u64 group, u32 start, u32 count) |
e80de36d TM |
7467 | { |
7468 | u64 discard, bcount; | |
105ddc93 | 7469 | struct ocfs2_super *osb = OCFS2_SB(sb); |
e80de36d TM |
7470 | |
7471 | bcount = ocfs2_clusters_to_blocks(sb, count); | |
105ddc93 AS |
7472 | discard = ocfs2_clusters_to_blocks(sb, start); |
7473 | ||
7474 | /* | |
7475 | * For the first cluster group, the gd->bg_blkno is not at the start | |
7476 | * of the group, but at an offset from the start. If we add it while | |
7477 | * calculating discard for first group, we will wrongly start fstrim a | |
7478 | * few blocks after the desried start block and the range can cross | |
7479 | * over into the next cluster group. So, add it only if this is not | |
7480 | * the first cluster group. | |
7481 | */ | |
7482 | if (group != osb->first_cluster_group_blkno) | |
7483 | discard += le64_to_cpu(gd->bg_blkno); | |
e80de36d | 7484 | |
10fca35f TM |
7485 | trace_ocfs2_trim_extent(sb, (unsigned long long)discard, bcount); |
7486 | ||
e80de36d TM |
7487 | return sb_issue_discard(sb, discard, bcount, GFP_NOFS, 0); |
7488 | } | |
7489 | ||
7490 | static int ocfs2_trim_group(struct super_block *sb, | |
105ddc93 | 7491 | struct ocfs2_group_desc *gd, u64 group, |
e80de36d TM |
7492 | u32 start, u32 max, u32 minbits) |
7493 | { | |
7494 | int ret = 0, count = 0, next; | |
7495 | void *bitmap = gd->bg_bitmap; | |
7496 | ||
7497 | if (le16_to_cpu(gd->bg_free_bits_count) < minbits) | |
7498 | return 0; | |
7499 | ||
10fca35f TM |
7500 | trace_ocfs2_trim_group((unsigned long long)le64_to_cpu(gd->bg_blkno), |
7501 | start, max, minbits); | |
7502 | ||
e80de36d TM |
7503 | while (start < max) { |
7504 | start = ocfs2_find_next_zero_bit(bitmap, max, start); | |
7505 | if (start >= max) | |
7506 | break; | |
7507 | next = ocfs2_find_next_bit(bitmap, max, start); | |
7508 | ||
7509 | if ((next - start) >= minbits) { | |
105ddc93 | 7510 | ret = ocfs2_trim_extent(sb, gd, group, |
e80de36d TM |
7511 | start, next - start); |
7512 | if (ret < 0) { | |
7513 | mlog_errno(ret); | |
7514 | break; | |
7515 | } | |
7516 | count += next - start; | |
7517 | } | |
7518 | start = next + 1; | |
7519 | ||
7520 | if (fatal_signal_pending(current)) { | |
7521 | count = -ERESTARTSYS; | |
7522 | break; | |
7523 | } | |
7524 | ||
7525 | if ((le16_to_cpu(gd->bg_free_bits_count) - count) < minbits) | |
7526 | break; | |
7527 | } | |
7528 | ||
7529 | if (ret < 0) | |
7530 | count = ret; | |
7531 | ||
7532 | return count; | |
7533 | } | |
7534 | ||
7535 | int ocfs2_trim_fs(struct super_block *sb, struct fstrim_range *range) | |
7536 | { | |
7537 | struct ocfs2_super *osb = OCFS2_SB(sb); | |
7538 | u64 start, len, trimmed, first_group, last_group, group; | |
7539 | int ret, cnt; | |
7540 | u32 first_bit, last_bit, minlen; | |
7541 | struct buffer_head *main_bm_bh = NULL; | |
7542 | struct inode *main_bm_inode = NULL; | |
7543 | struct buffer_head *gd_bh = NULL; | |
7544 | struct ocfs2_dinode *main_bm; | |
7545 | struct ocfs2_group_desc *gd = NULL; | |
637dd20c | 7546 | struct ocfs2_trim_fs_info info, *pinfo = NULL; |
e80de36d TM |
7547 | |
7548 | start = range->start >> osb->s_clustersize_bits; | |
7549 | len = range->len >> osb->s_clustersize_bits; | |
7550 | minlen = range->minlen >> osb->s_clustersize_bits; | |
e80de36d | 7551 | |
aa89762c | 7552 | if (minlen >= osb->bitmap_cpg || range->len < sb->s_blocksize) |
e80de36d TM |
7553 | return -EINVAL; |
7554 | ||
7555 | main_bm_inode = ocfs2_get_system_file_inode(osb, | |
7556 | GLOBAL_BITMAP_SYSTEM_INODE, | |
7557 | OCFS2_INVALID_SLOT); | |
7558 | if (!main_bm_inode) { | |
7559 | ret = -EIO; | |
7560 | mlog_errno(ret); | |
7561 | goto out; | |
7562 | } | |
7563 | ||
5955102c | 7564 | inode_lock(main_bm_inode); |
e80de36d TM |
7565 | |
7566 | ret = ocfs2_inode_lock(main_bm_inode, &main_bm_bh, 0); | |
7567 | if (ret < 0) { | |
7568 | mlog_errno(ret); | |
7569 | goto out_mutex; | |
7570 | } | |
7571 | main_bm = (struct ocfs2_dinode *)main_bm_bh->b_data; | |
7572 | ||
7573 | if (start >= le32_to_cpu(main_bm->i_clusters)) { | |
7574 | ret = -EINVAL; | |
7575 | goto out_unlock; | |
7576 | } | |
7577 | ||
aa89762c | 7578 | len = range->len >> osb->s_clustersize_bits; |
e80de36d TM |
7579 | if (start + len > le32_to_cpu(main_bm->i_clusters)) |
7580 | len = le32_to_cpu(main_bm->i_clusters) - start; | |
7581 | ||
10fca35f TM |
7582 | trace_ocfs2_trim_fs(start, len, minlen); |
7583 | ||
637dd20c GH |
7584 | ocfs2_trim_fs_lock_res_init(osb); |
7585 | ret = ocfs2_trim_fs_lock(osb, NULL, 1); | |
7586 | if (ret < 0) { | |
7587 | if (ret != -EAGAIN) { | |
7588 | mlog_errno(ret); | |
7589 | ocfs2_trim_fs_lock_res_uninit(osb); | |
7590 | goto out_unlock; | |
7591 | } | |
7592 | ||
7593 | mlog(ML_NOTICE, "Wait for trim on device (%s) to " | |
7594 | "finish, which is running from another node.\n", | |
7595 | osb->dev_str); | |
7596 | ret = ocfs2_trim_fs_lock(osb, &info, 0); | |
7597 | if (ret < 0) { | |
7598 | mlog_errno(ret); | |
7599 | ocfs2_trim_fs_lock_res_uninit(osb); | |
7600 | goto out_unlock; | |
7601 | } | |
7602 | ||
7603 | if (info.tf_valid && info.tf_success && | |
7604 | info.tf_start == start && info.tf_len == len && | |
7605 | info.tf_minlen == minlen) { | |
7606 | /* Avoid sending duplicated trim to a shared device */ | |
7607 | mlog(ML_NOTICE, "The same trim on device (%s) was " | |
7608 | "just done from node (%u), return.\n", | |
7609 | osb->dev_str, info.tf_nodenum); | |
7610 | range->len = info.tf_trimlen; | |
7611 | goto out_trimunlock; | |
7612 | } | |
7613 | } | |
7614 | ||
7615 | info.tf_nodenum = osb->node_num; | |
7616 | info.tf_start = start; | |
7617 | info.tf_len = len; | |
7618 | info.tf_minlen = minlen; | |
7619 | ||
e80de36d TM |
7620 | /* Determine first and last group to examine based on start and len */ |
7621 | first_group = ocfs2_which_cluster_group(main_bm_inode, start); | |
7622 | if (first_group == osb->first_cluster_group_blkno) | |
7623 | first_bit = start; | |
7624 | else | |
7625 | first_bit = start - ocfs2_blocks_to_clusters(sb, first_group); | |
7626 | last_group = ocfs2_which_cluster_group(main_bm_inode, start + len - 1); | |
7627 | last_bit = osb->bitmap_cpg; | |
7628 | ||
aa89762c | 7629 | trimmed = 0; |
e80de36d TM |
7630 | for (group = first_group; group <= last_group;) { |
7631 | if (first_bit + len >= osb->bitmap_cpg) | |
7632 | last_bit = osb->bitmap_cpg; | |
7633 | else | |
7634 | last_bit = first_bit + len; | |
7635 | ||
7636 | ret = ocfs2_read_group_descriptor(main_bm_inode, | |
7637 | main_bm, group, | |
7638 | &gd_bh); | |
7639 | if (ret < 0) { | |
7640 | mlog_errno(ret); | |
7641 | break; | |
7642 | } | |
7643 | ||
7644 | gd = (struct ocfs2_group_desc *)gd_bh->b_data; | |
105ddc93 AS |
7645 | cnt = ocfs2_trim_group(sb, gd, group, |
7646 | first_bit, last_bit, minlen); | |
e80de36d TM |
7647 | brelse(gd_bh); |
7648 | gd_bh = NULL; | |
7649 | if (cnt < 0) { | |
7650 | ret = cnt; | |
7651 | mlog_errno(ret); | |
7652 | break; | |
7653 | } | |
7654 | ||
7655 | trimmed += cnt; | |
7656 | len -= osb->bitmap_cpg - first_bit; | |
7657 | first_bit = 0; | |
7658 | if (group == osb->first_cluster_group_blkno) | |
7659 | group = ocfs2_clusters_to_blocks(sb, osb->bitmap_cpg); | |
7660 | else | |
7661 | group += ocfs2_clusters_to_blocks(sb, osb->bitmap_cpg); | |
7662 | } | |
7663 | range->len = trimmed * sb->s_blocksize; | |
637dd20c GH |
7664 | |
7665 | info.tf_trimlen = range->len; | |
7666 | info.tf_success = (ret ? 0 : 1); | |
7667 | pinfo = &info; | |
7668 | out_trimunlock: | |
7669 | ocfs2_trim_fs_unlock(osb, pinfo); | |
7670 | ocfs2_trim_fs_lock_res_uninit(osb); | |
e80de36d TM |
7671 | out_unlock: |
7672 | ocfs2_inode_unlock(main_bm_inode, 0); | |
7673 | brelse(main_bm_bh); | |
7674 | out_mutex: | |
5955102c | 7675 | inode_unlock(main_bm_inode); |
e80de36d TM |
7676 | iput(main_bm_inode); |
7677 | out: | |
7678 | return ret; | |
7679 | } |