blob: 4614614084dd933b90957b158412d47d9b2d3c21 [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- 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>
Mark Fasheh60b11392007-02-16 11:46:50 -080030#include <linux/swap.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080031
32#define MLOG_MASK_PREFIX ML_DISK_ALLOC
33#include <cluster/masklog.h>
34
35#include "ocfs2.h"
36
37#include "alloc.h"
Mark Fasheh60b11392007-02-16 11:46:50 -080038#include "aops.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080039#include "dlmglue.h"
40#include "extent_map.h"
41#include "inode.h"
42#include "journal.h"
43#include "localalloc.h"
44#include "suballoc.h"
45#include "sysfile.h"
46#include "file.h"
47#include "super.h"
48#include "uptodate.h"
49
50#include "buffer_head_io.h"
51
Tao Mae7d4cb62008-08-18 17:38:44 +080052
Joel Becker1625f8a2008-08-21 17:11:10 -070053/*
54 * Operations for a specific extent tree type.
55 *
56 * To implement an on-disk btree (extent tree) type in ocfs2, add
57 * an ocfs2_extent_tree_operations structure and the matching
Joel Becker8d6220d2008-08-22 12:46:09 -070058 * ocfs2_init_<thingy>_extent_tree() function. That's pretty much it
Joel Becker1625f8a2008-08-21 17:11:10 -070059 * for the allocation portion of the extent tree.
60 */
Tao Mae7d4cb62008-08-18 17:38:44 +080061struct ocfs2_extent_tree_operations {
Joel Becker1625f8a2008-08-21 17:11:10 -070062 /*
63 * last_eb_blk is the block number of the right most leaf extent
64 * block. Most on-disk structures containing an extent tree store
65 * this value for fast access. The ->eo_set_last_eb_blk() and
66 * ->eo_get_last_eb_blk() operations access this value. They are
67 * both required.
68 */
Joel Becker35dc0aa2008-08-20 16:25:06 -070069 void (*eo_set_last_eb_blk)(struct ocfs2_extent_tree *et,
70 u64 blkno);
71 u64 (*eo_get_last_eb_blk)(struct ocfs2_extent_tree *et);
Joel Becker1625f8a2008-08-21 17:11:10 -070072
73 /*
74 * The on-disk structure usually keeps track of how many total
75 * clusters are stored in this extent tree. This function updates
76 * that value. new_clusters is the delta, and must be
77 * added to the total. Required.
78 */
Joel Becker35dc0aa2008-08-20 16:25:06 -070079 void (*eo_update_clusters)(struct inode *inode,
80 struct ocfs2_extent_tree *et,
81 u32 new_clusters);
Joel Becker1625f8a2008-08-21 17:11:10 -070082
83 /*
84 * If ->eo_insert_check() exists, it is called before rec is
85 * inserted into the extent tree. It is optional.
86 */
Joel Becker1e61ee72008-08-20 18:32:45 -070087 int (*eo_insert_check)(struct inode *inode,
88 struct ocfs2_extent_tree *et,
89 struct ocfs2_extent_rec *rec);
Joel Becker35dc0aa2008-08-20 16:25:06 -070090 int (*eo_sanity_check)(struct inode *inode, struct ocfs2_extent_tree *et);
Joel Becker0ce10102008-08-20 17:19:50 -070091
Joel Becker1625f8a2008-08-21 17:11:10 -070092 /*
93 * --------------------------------------------------------------
94 * The remaining are internal to ocfs2_extent_tree and don't have
95 * accessor functions
96 */
97
98 /*
99 * ->eo_fill_root_el() takes et->et_object and sets et->et_root_el.
100 * It is required.
101 */
Joel Becker0ce10102008-08-20 17:19:50 -0700102 void (*eo_fill_root_el)(struct ocfs2_extent_tree *et);
Joel Becker1625f8a2008-08-21 17:11:10 -0700103
104 /*
105 * ->eo_fill_max_leaf_clusters sets et->et_max_leaf_clusters if
106 * it exists. If it does not, et->et_max_leaf_clusters is set
107 * to 0 (unlimited). Optional.
108 */
Joel Becker943cced2008-08-20 17:31:10 -0700109 void (*eo_fill_max_leaf_clusters)(struct inode *inode,
110 struct ocfs2_extent_tree *et);
Tao Mae7d4cb62008-08-18 17:38:44 +0800111};
112
Joel Beckerf99b9b72008-08-20 19:36:33 -0700113
114/*
115 * Pre-declare ocfs2_dinode_et_ops so we can use it as a sanity check
116 * in the methods.
117 */
118static u64 ocfs2_dinode_get_last_eb_blk(struct ocfs2_extent_tree *et);
119static void ocfs2_dinode_set_last_eb_blk(struct ocfs2_extent_tree *et,
120 u64 blkno);
121static void ocfs2_dinode_update_clusters(struct inode *inode,
122 struct ocfs2_extent_tree *et,
123 u32 clusters);
124static int ocfs2_dinode_insert_check(struct inode *inode,
125 struct ocfs2_extent_tree *et,
126 struct ocfs2_extent_rec *rec);
127static int ocfs2_dinode_sanity_check(struct inode *inode,
128 struct ocfs2_extent_tree *et);
129static void ocfs2_dinode_fill_root_el(struct ocfs2_extent_tree *et);
130static struct ocfs2_extent_tree_operations ocfs2_dinode_et_ops = {
131 .eo_set_last_eb_blk = ocfs2_dinode_set_last_eb_blk,
132 .eo_get_last_eb_blk = ocfs2_dinode_get_last_eb_blk,
133 .eo_update_clusters = ocfs2_dinode_update_clusters,
134 .eo_insert_check = ocfs2_dinode_insert_check,
135 .eo_sanity_check = ocfs2_dinode_sanity_check,
136 .eo_fill_root_el = ocfs2_dinode_fill_root_el,
Tao Mae7d4cb62008-08-18 17:38:44 +0800137};
138
139static void ocfs2_dinode_set_last_eb_blk(struct ocfs2_extent_tree *et,
140 u64 blkno)
141{
Joel Beckerea5efa12008-08-20 16:57:27 -0700142 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800143
Joel Beckerf99b9b72008-08-20 19:36:33 -0700144 BUG_ON(et->et_ops != &ocfs2_dinode_et_ops);
Tao Mae7d4cb62008-08-18 17:38:44 +0800145 di->i_last_eb_blk = cpu_to_le64(blkno);
146}
147
148static u64 ocfs2_dinode_get_last_eb_blk(struct ocfs2_extent_tree *et)
149{
Joel Beckerea5efa12008-08-20 16:57:27 -0700150 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800151
Joel Beckerf99b9b72008-08-20 19:36:33 -0700152 BUG_ON(et->et_ops != &ocfs2_dinode_et_ops);
Tao Mae7d4cb62008-08-18 17:38:44 +0800153 return le64_to_cpu(di->i_last_eb_blk);
154}
155
156static void ocfs2_dinode_update_clusters(struct inode *inode,
157 struct ocfs2_extent_tree *et,
158 u32 clusters)
159{
Joel Beckerea5efa12008-08-20 16:57:27 -0700160 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800161
162 le32_add_cpu(&di->i_clusters, clusters);
163 spin_lock(&OCFS2_I(inode)->ip_lock);
164 OCFS2_I(inode)->ip_clusters = le32_to_cpu(di->i_clusters);
165 spin_unlock(&OCFS2_I(inode)->ip_lock);
166}
167
Joel Becker1e61ee72008-08-20 18:32:45 -0700168static int ocfs2_dinode_insert_check(struct inode *inode,
169 struct ocfs2_extent_tree *et,
170 struct ocfs2_extent_rec *rec)
171{
172 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
173
174 BUG_ON(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL);
175 mlog_bug_on_msg(!ocfs2_sparse_alloc(osb) &&
176 (OCFS2_I(inode)->ip_clusters != rec->e_cpos),
177 "Device %s, asking for sparse allocation: inode %llu, "
178 "cpos %u, clusters %u\n",
179 osb->dev_str,
180 (unsigned long long)OCFS2_I(inode)->ip_blkno,
181 rec->e_cpos,
182 OCFS2_I(inode)->ip_clusters);
183
184 return 0;
185}
186
Tao Mae7d4cb62008-08-18 17:38:44 +0800187static int ocfs2_dinode_sanity_check(struct inode *inode,
188 struct ocfs2_extent_tree *et)
189{
190 int ret = 0;
191 struct ocfs2_dinode *di;
192
Joel Beckerf99b9b72008-08-20 19:36:33 -0700193 BUG_ON(et->et_ops != &ocfs2_dinode_et_ops);
Tao Mae7d4cb62008-08-18 17:38:44 +0800194
Joel Beckerea5efa12008-08-20 16:57:27 -0700195 di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800196 if (!OCFS2_IS_VALID_DINODE(di)) {
197 ret = -EIO;
198 ocfs2_error(inode->i_sb,
199 "Inode %llu has invalid path root",
200 (unsigned long long)OCFS2_I(inode)->ip_blkno);
201 }
202
203 return ret;
204}
205
Joel Beckerf99b9b72008-08-20 19:36:33 -0700206static void ocfs2_dinode_fill_root_el(struct ocfs2_extent_tree *et)
207{
208 struct ocfs2_dinode *di = et->et_object;
209
210 et->et_root_el = &di->id2.i_list;
211}
212
Tao Mae7d4cb62008-08-18 17:38:44 +0800213
Joel Becker0ce10102008-08-20 17:19:50 -0700214static void ocfs2_xattr_value_fill_root_el(struct ocfs2_extent_tree *et)
215{
216 struct ocfs2_xattr_value_root *xv = et->et_object;
217
218 et->et_root_el = &xv->xr_list;
219}
220
Tao Maf56654c2008-08-18 17:38:48 +0800221static void ocfs2_xattr_value_set_last_eb_blk(struct ocfs2_extent_tree *et,
222 u64 blkno)
223{
224 struct ocfs2_xattr_value_root *xv =
Joel Beckerea5efa12008-08-20 16:57:27 -0700225 (struct ocfs2_xattr_value_root *)et->et_object;
Tao Maf56654c2008-08-18 17:38:48 +0800226
227 xv->xr_last_eb_blk = cpu_to_le64(blkno);
228}
229
230static u64 ocfs2_xattr_value_get_last_eb_blk(struct ocfs2_extent_tree *et)
231{
232 struct ocfs2_xattr_value_root *xv =
Joel Beckerea5efa12008-08-20 16:57:27 -0700233 (struct ocfs2_xattr_value_root *) et->et_object;
Tao Maf56654c2008-08-18 17:38:48 +0800234
235 return le64_to_cpu(xv->xr_last_eb_blk);
236}
237
238static void ocfs2_xattr_value_update_clusters(struct inode *inode,
239 struct ocfs2_extent_tree *et,
240 u32 clusters)
241{
242 struct ocfs2_xattr_value_root *xv =
Joel Beckerea5efa12008-08-20 16:57:27 -0700243 (struct ocfs2_xattr_value_root *)et->et_object;
Tao Maf56654c2008-08-18 17:38:48 +0800244
245 le32_add_cpu(&xv->xr_clusters, clusters);
246}
247
Joel Becker1a09f552008-08-20 17:44:24 -0700248static struct ocfs2_extent_tree_operations ocfs2_xattr_value_et_ops = {
Joel Becker35dc0aa2008-08-20 16:25:06 -0700249 .eo_set_last_eb_blk = ocfs2_xattr_value_set_last_eb_blk,
250 .eo_get_last_eb_blk = ocfs2_xattr_value_get_last_eb_blk,
251 .eo_update_clusters = ocfs2_xattr_value_update_clusters,
Joel Becker0ce10102008-08-20 17:19:50 -0700252 .eo_fill_root_el = ocfs2_xattr_value_fill_root_el,
Tao Maf56654c2008-08-18 17:38:48 +0800253};
254
Joel Becker0ce10102008-08-20 17:19:50 -0700255static void ocfs2_xattr_tree_fill_root_el(struct ocfs2_extent_tree *et)
256{
257 struct ocfs2_xattr_block *xb = et->et_object;
258
259 et->et_root_el = &xb->xb_attrs.xb_root.xt_list;
260}
261
Joel Becker943cced2008-08-20 17:31:10 -0700262static void ocfs2_xattr_tree_fill_max_leaf_clusters(struct inode *inode,
263 struct ocfs2_extent_tree *et)
264{
265 et->et_max_leaf_clusters =
266 ocfs2_clusters_for_bytes(inode->i_sb,
267 OCFS2_MAX_XATTR_TREE_LEAF_SIZE);
268}
269
Tao Maba492612008-08-18 17:38:49 +0800270static void ocfs2_xattr_tree_set_last_eb_blk(struct ocfs2_extent_tree *et,
271 u64 blkno)
272{
Joel Beckerea5efa12008-08-20 16:57:27 -0700273 struct ocfs2_xattr_block *xb = et->et_object;
Tao Maba492612008-08-18 17:38:49 +0800274 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
275
276 xt->xt_last_eb_blk = cpu_to_le64(blkno);
277}
278
279static u64 ocfs2_xattr_tree_get_last_eb_blk(struct ocfs2_extent_tree *et)
280{
Joel Beckerea5efa12008-08-20 16:57:27 -0700281 struct ocfs2_xattr_block *xb = et->et_object;
Tao Maba492612008-08-18 17:38:49 +0800282 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
283
284 return le64_to_cpu(xt->xt_last_eb_blk);
285}
286
287static void ocfs2_xattr_tree_update_clusters(struct inode *inode,
288 struct ocfs2_extent_tree *et,
289 u32 clusters)
290{
Joel Beckerea5efa12008-08-20 16:57:27 -0700291 struct ocfs2_xattr_block *xb = et->et_object;
Tao Maba492612008-08-18 17:38:49 +0800292
293 le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, clusters);
294}
295
Tao Maba492612008-08-18 17:38:49 +0800296static struct ocfs2_extent_tree_operations ocfs2_xattr_tree_et_ops = {
Joel Becker35dc0aa2008-08-20 16:25:06 -0700297 .eo_set_last_eb_blk = ocfs2_xattr_tree_set_last_eb_blk,
298 .eo_get_last_eb_blk = ocfs2_xattr_tree_get_last_eb_blk,
299 .eo_update_clusters = ocfs2_xattr_tree_update_clusters,
Joel Becker0ce10102008-08-20 17:19:50 -0700300 .eo_fill_root_el = ocfs2_xattr_tree_fill_root_el,
Joel Becker943cced2008-08-20 17:31:10 -0700301 .eo_fill_max_leaf_clusters = ocfs2_xattr_tree_fill_max_leaf_clusters,
Tao Maba492612008-08-18 17:38:49 +0800302};
303
Joel Becker8d6220d2008-08-22 12:46:09 -0700304static void __ocfs2_init_extent_tree(struct ocfs2_extent_tree *et,
305 struct inode *inode,
306 struct buffer_head *bh,
307 void *obj,
308 struct ocfs2_extent_tree_operations *ops)
Tao Mae7d4cb62008-08-18 17:38:44 +0800309{
Joel Becker1a09f552008-08-20 17:44:24 -0700310 et->et_ops = ops;
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700311 et->et_root_bh = bh;
Joel Beckerea5efa12008-08-20 16:57:27 -0700312 if (!obj)
313 obj = (void *)bh->b_data;
314 et->et_object = obj;
Tao Mae7d4cb62008-08-18 17:38:44 +0800315
Joel Becker0ce10102008-08-20 17:19:50 -0700316 et->et_ops->eo_fill_root_el(et);
Joel Becker943cced2008-08-20 17:31:10 -0700317 if (!et->et_ops->eo_fill_max_leaf_clusters)
318 et->et_max_leaf_clusters = 0;
319 else
320 et->et_ops->eo_fill_max_leaf_clusters(inode, et);
Tao Mae7d4cb62008-08-18 17:38:44 +0800321}
322
Joel Becker8d6220d2008-08-22 12:46:09 -0700323void ocfs2_init_dinode_extent_tree(struct ocfs2_extent_tree *et,
324 struct inode *inode,
325 struct buffer_head *bh)
Joel Becker1a09f552008-08-20 17:44:24 -0700326{
Joel Becker8d6220d2008-08-22 12:46:09 -0700327 __ocfs2_init_extent_tree(et, inode, bh, NULL, &ocfs2_dinode_et_ops);
Joel Becker1a09f552008-08-20 17:44:24 -0700328}
329
Joel Becker8d6220d2008-08-22 12:46:09 -0700330void ocfs2_init_xattr_tree_extent_tree(struct ocfs2_extent_tree *et,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700331 struct inode *inode,
Joel Becker8d6220d2008-08-22 12:46:09 -0700332 struct buffer_head *bh)
Joel Becker1a09f552008-08-20 17:44:24 -0700333{
Joel Becker8d6220d2008-08-22 12:46:09 -0700334 __ocfs2_init_extent_tree(et, inode, bh, NULL,
335 &ocfs2_xattr_tree_et_ops);
Joel Becker1a09f552008-08-20 17:44:24 -0700336}
337
Joel Becker8d6220d2008-08-22 12:46:09 -0700338void ocfs2_init_xattr_value_extent_tree(struct ocfs2_extent_tree *et,
339 struct inode *inode,
340 struct buffer_head *bh,
341 struct ocfs2_xattr_value_root *xv)
Tao Mae7d4cb62008-08-18 17:38:44 +0800342{
Joel Becker8d6220d2008-08-22 12:46:09 -0700343 __ocfs2_init_extent_tree(et, inode, bh, xv,
344 &ocfs2_xattr_value_et_ops);
Tao Mae7d4cb62008-08-18 17:38:44 +0800345}
346
Joel Becker35dc0aa2008-08-20 16:25:06 -0700347static inline void ocfs2_et_set_last_eb_blk(struct ocfs2_extent_tree *et,
348 u64 new_last_eb_blk)
Tao Mae7d4cb62008-08-18 17:38:44 +0800349{
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700350 et->et_ops->eo_set_last_eb_blk(et, new_last_eb_blk);
Tao Mae7d4cb62008-08-18 17:38:44 +0800351}
352
Joel Becker35dc0aa2008-08-20 16:25:06 -0700353static inline u64 ocfs2_et_get_last_eb_blk(struct ocfs2_extent_tree *et)
Tao Mae7d4cb62008-08-18 17:38:44 +0800354{
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700355 return et->et_ops->eo_get_last_eb_blk(et);
Tao Mae7d4cb62008-08-18 17:38:44 +0800356}
357
Joel Becker35dc0aa2008-08-20 16:25:06 -0700358static inline void ocfs2_et_update_clusters(struct inode *inode,
359 struct ocfs2_extent_tree *et,
360 u32 clusters)
Tao Mae7d4cb62008-08-18 17:38:44 +0800361{
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700362 et->et_ops->eo_update_clusters(inode, et, clusters);
Joel Becker35dc0aa2008-08-20 16:25:06 -0700363}
364
Joel Becker1e61ee72008-08-20 18:32:45 -0700365static inline int ocfs2_et_insert_check(struct inode *inode,
366 struct ocfs2_extent_tree *et,
367 struct ocfs2_extent_rec *rec)
368{
369 int ret = 0;
370
371 if (et->et_ops->eo_insert_check)
372 ret = et->et_ops->eo_insert_check(inode, et, rec);
373 return ret;
374}
375
Joel Becker35dc0aa2008-08-20 16:25:06 -0700376static inline int ocfs2_et_sanity_check(struct inode *inode,
377 struct ocfs2_extent_tree *et)
378{
Joel Becker1e61ee72008-08-20 18:32:45 -0700379 int ret = 0;
380
381 if (et->et_ops->eo_sanity_check)
382 ret = et->et_ops->eo_sanity_check(inode, et);
383 return ret;
Tao Mae7d4cb62008-08-18 17:38:44 +0800384}
385
Mark Fashehccd979b2005-12-15 14:31:24 -0800386static void ocfs2_free_truncate_context(struct ocfs2_truncate_context *tc);
Mark Fasheh59a5e412007-06-22 15:52:36 -0700387static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt,
388 struct ocfs2_extent_block *eb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800389
Mark Fashehdcd05382007-01-16 11:32:23 -0800390/*
391 * Structures which describe a path through a btree, and functions to
392 * manipulate them.
393 *
394 * The idea here is to be as generic as possible with the tree
395 * manipulation code.
396 */
397struct ocfs2_path_item {
398 struct buffer_head *bh;
399 struct ocfs2_extent_list *el;
400};
401
402#define OCFS2_MAX_PATH_DEPTH 5
403
404struct ocfs2_path {
405 int p_tree_depth;
406 struct ocfs2_path_item p_node[OCFS2_MAX_PATH_DEPTH];
407};
408
409#define path_root_bh(_path) ((_path)->p_node[0].bh)
410#define path_root_el(_path) ((_path)->p_node[0].el)
411#define path_leaf_bh(_path) ((_path)->p_node[(_path)->p_tree_depth].bh)
412#define path_leaf_el(_path) ((_path)->p_node[(_path)->p_tree_depth].el)
413#define path_num_items(_path) ((_path)->p_tree_depth + 1)
414
415/*
416 * Reset the actual path elements so that we can re-use the structure
417 * to build another path. Generally, this involves freeing the buffer
418 * heads.
419 */
420static void ocfs2_reinit_path(struct ocfs2_path *path, int keep_root)
421{
422 int i, start = 0, depth = 0;
423 struct ocfs2_path_item *node;
424
425 if (keep_root)
426 start = 1;
427
428 for(i = start; i < path_num_items(path); i++) {
429 node = &path->p_node[i];
430
431 brelse(node->bh);
432 node->bh = NULL;
433 node->el = NULL;
434 }
435
436 /*
437 * Tree depth may change during truncate, or insert. If we're
438 * keeping the root extent list, then make sure that our path
439 * structure reflects the proper depth.
440 */
441 if (keep_root)
442 depth = le16_to_cpu(path_root_el(path)->l_tree_depth);
443
444 path->p_tree_depth = depth;
445}
446
447static void ocfs2_free_path(struct ocfs2_path *path)
448{
449 if (path) {
450 ocfs2_reinit_path(path, 0);
451 kfree(path);
452 }
453}
454
455/*
Mark Fasheh328d5752007-06-18 10:48:04 -0700456 * All the elements of src into dest. After this call, src could be freed
457 * without affecting dest.
458 *
459 * Both paths should have the same root. Any non-root elements of dest
460 * will be freed.
461 */
462static void ocfs2_cp_path(struct ocfs2_path *dest, struct ocfs2_path *src)
463{
464 int i;
465
466 BUG_ON(path_root_bh(dest) != path_root_bh(src));
467 BUG_ON(path_root_el(dest) != path_root_el(src));
468
469 ocfs2_reinit_path(dest, 1);
470
471 for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) {
472 dest->p_node[i].bh = src->p_node[i].bh;
473 dest->p_node[i].el = src->p_node[i].el;
474
475 if (dest->p_node[i].bh)
476 get_bh(dest->p_node[i].bh);
477 }
478}
479
480/*
Mark Fashehdcd05382007-01-16 11:32:23 -0800481 * Make the *dest path the same as src and re-initialize src path to
482 * have a root only.
483 */
484static void ocfs2_mv_path(struct ocfs2_path *dest, struct ocfs2_path *src)
485{
486 int i;
487
488 BUG_ON(path_root_bh(dest) != path_root_bh(src));
489
490 for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) {
491 brelse(dest->p_node[i].bh);
492
493 dest->p_node[i].bh = src->p_node[i].bh;
494 dest->p_node[i].el = src->p_node[i].el;
495
496 src->p_node[i].bh = NULL;
497 src->p_node[i].el = NULL;
498 }
499}
500
501/*
502 * Insert an extent block at given index.
503 *
504 * This will not take an additional reference on eb_bh.
505 */
506static inline void ocfs2_path_insert_eb(struct ocfs2_path *path, int index,
507 struct buffer_head *eb_bh)
508{
509 struct ocfs2_extent_block *eb = (struct ocfs2_extent_block *)eb_bh->b_data;
510
511 /*
512 * Right now, no root bh is an extent block, so this helps
513 * catch code errors with dinode trees. The assertion can be
514 * safely removed if we ever need to insert extent block
515 * structures at the root.
516 */
517 BUG_ON(index == 0);
518
519 path->p_node[index].bh = eb_bh;
520 path->p_node[index].el = &eb->h_list;
521}
522
523static struct ocfs2_path *ocfs2_new_path(struct buffer_head *root_bh,
524 struct ocfs2_extent_list *root_el)
525{
526 struct ocfs2_path *path;
527
528 BUG_ON(le16_to_cpu(root_el->l_tree_depth) >= OCFS2_MAX_PATH_DEPTH);
529
530 path = kzalloc(sizeof(*path), GFP_NOFS);
531 if (path) {
532 path->p_tree_depth = le16_to_cpu(root_el->l_tree_depth);
533 get_bh(root_bh);
534 path_root_bh(path) = root_bh;
535 path_root_el(path) = root_el;
536 }
537
538 return path;
539}
540
541/*
Mark Fashehdcd05382007-01-16 11:32:23 -0800542 * Convenience function to journal all components in a path.
543 */
544static int ocfs2_journal_access_path(struct inode *inode, handle_t *handle,
545 struct ocfs2_path *path)
546{
547 int i, ret = 0;
548
549 if (!path)
550 goto out;
551
552 for(i = 0; i < path_num_items(path); i++) {
553 ret = ocfs2_journal_access(handle, inode, path->p_node[i].bh,
554 OCFS2_JOURNAL_ACCESS_WRITE);
555 if (ret < 0) {
556 mlog_errno(ret);
557 goto out;
558 }
559 }
560
561out:
562 return ret;
563}
564
Mark Fasheh328d5752007-06-18 10:48:04 -0700565/*
566 * Return the index of the extent record which contains cluster #v_cluster.
567 * -1 is returned if it was not found.
568 *
569 * Should work fine on interior and exterior nodes.
570 */
571int ocfs2_search_extent_list(struct ocfs2_extent_list *el, u32 v_cluster)
572{
573 int ret = -1;
574 int i;
575 struct ocfs2_extent_rec *rec;
576 u32 rec_end, rec_start, clusters;
577
578 for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
579 rec = &el->l_recs[i];
580
581 rec_start = le32_to_cpu(rec->e_cpos);
582 clusters = ocfs2_rec_clusters(el, rec);
583
584 rec_end = rec_start + clusters;
585
586 if (v_cluster >= rec_start && v_cluster < rec_end) {
587 ret = i;
588 break;
589 }
590 }
591
592 return ret;
593}
594
Mark Fashehdcd05382007-01-16 11:32:23 -0800595enum ocfs2_contig_type {
596 CONTIG_NONE = 0,
597 CONTIG_LEFT,
Mark Fasheh328d5752007-06-18 10:48:04 -0700598 CONTIG_RIGHT,
599 CONTIG_LEFTRIGHT,
Mark Fashehdcd05382007-01-16 11:32:23 -0800600};
601
Mark Fashehe48edee2007-03-07 16:46:57 -0800602
603/*
604 * NOTE: ocfs2_block_extent_contig(), ocfs2_extents_adjacent() and
605 * ocfs2_extent_contig only work properly against leaf nodes!
606 */
Mark Fashehdcd05382007-01-16 11:32:23 -0800607static int ocfs2_block_extent_contig(struct super_block *sb,
608 struct ocfs2_extent_rec *ext,
609 u64 blkno)
Mark Fashehccd979b2005-12-15 14:31:24 -0800610{
Mark Fashehe48edee2007-03-07 16:46:57 -0800611 u64 blk_end = le64_to_cpu(ext->e_blkno);
612
613 blk_end += ocfs2_clusters_to_blocks(sb,
614 le16_to_cpu(ext->e_leaf_clusters));
615
616 return blkno == blk_end;
Mark Fashehccd979b2005-12-15 14:31:24 -0800617}
618
Mark Fashehdcd05382007-01-16 11:32:23 -0800619static int ocfs2_extents_adjacent(struct ocfs2_extent_rec *left,
620 struct ocfs2_extent_rec *right)
621{
Mark Fashehe48edee2007-03-07 16:46:57 -0800622 u32 left_range;
623
624 left_range = le32_to_cpu(left->e_cpos) +
625 le16_to_cpu(left->e_leaf_clusters);
626
627 return (left_range == le32_to_cpu(right->e_cpos));
Mark Fashehdcd05382007-01-16 11:32:23 -0800628}
629
630static enum ocfs2_contig_type
631 ocfs2_extent_contig(struct inode *inode,
632 struct ocfs2_extent_rec *ext,
633 struct ocfs2_extent_rec *insert_rec)
634{
635 u64 blkno = le64_to_cpu(insert_rec->e_blkno);
636
Mark Fasheh328d5752007-06-18 10:48:04 -0700637 /*
638 * Refuse to coalesce extent records with different flag
639 * fields - we don't want to mix unwritten extents with user
640 * data.
641 */
642 if (ext->e_flags != insert_rec->e_flags)
643 return CONTIG_NONE;
644
Mark Fashehdcd05382007-01-16 11:32:23 -0800645 if (ocfs2_extents_adjacent(ext, insert_rec) &&
646 ocfs2_block_extent_contig(inode->i_sb, ext, blkno))
647 return CONTIG_RIGHT;
648
649 blkno = le64_to_cpu(ext->e_blkno);
650 if (ocfs2_extents_adjacent(insert_rec, ext) &&
651 ocfs2_block_extent_contig(inode->i_sb, insert_rec, blkno))
652 return CONTIG_LEFT;
653
654 return CONTIG_NONE;
655}
656
657/*
658 * NOTE: We can have pretty much any combination of contiguousness and
659 * appending.
660 *
661 * The usefulness of APPEND_TAIL is more in that it lets us know that
662 * we'll have to update the path to that leaf.
663 */
664enum ocfs2_append_type {
665 APPEND_NONE = 0,
666 APPEND_TAIL,
667};
668
Mark Fasheh328d5752007-06-18 10:48:04 -0700669enum ocfs2_split_type {
670 SPLIT_NONE = 0,
671 SPLIT_LEFT,
672 SPLIT_RIGHT,
673};
674
Mark Fashehdcd05382007-01-16 11:32:23 -0800675struct ocfs2_insert_type {
Mark Fasheh328d5752007-06-18 10:48:04 -0700676 enum ocfs2_split_type ins_split;
Mark Fashehdcd05382007-01-16 11:32:23 -0800677 enum ocfs2_append_type ins_appending;
678 enum ocfs2_contig_type ins_contig;
679 int ins_contig_index;
Mark Fashehdcd05382007-01-16 11:32:23 -0800680 int ins_tree_depth;
681};
682
Mark Fasheh328d5752007-06-18 10:48:04 -0700683struct ocfs2_merge_ctxt {
684 enum ocfs2_contig_type c_contig_type;
685 int c_has_empty_extent;
686 int c_split_covers_rec;
Mark Fasheh328d5752007-06-18 10:48:04 -0700687};
688
Mark Fashehccd979b2005-12-15 14:31:24 -0800689/*
690 * How many free extents have we got before we need more meta data?
691 */
692int ocfs2_num_free_extents(struct ocfs2_super *osb,
693 struct inode *inode,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700694 struct ocfs2_extent_tree *et)
Mark Fashehccd979b2005-12-15 14:31:24 -0800695{
696 int retval;
Tao Mae7d4cb62008-08-18 17:38:44 +0800697 struct ocfs2_extent_list *el = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800698 struct ocfs2_extent_block *eb;
699 struct buffer_head *eb_bh = NULL;
Tao Mae7d4cb62008-08-18 17:38:44 +0800700 u64 last_eb_blk = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800701
702 mlog_entry_void();
703
Joel Beckerf99b9b72008-08-20 19:36:33 -0700704 el = et->et_root_el;
705 last_eb_blk = ocfs2_et_get_last_eb_blk(et);
Mark Fashehccd979b2005-12-15 14:31:24 -0800706
Tao Mae7d4cb62008-08-18 17:38:44 +0800707 if (last_eb_blk) {
Joel Becker31d33072008-10-09 17:20:30 -0700708 retval = ocfs2_read_block(inode, last_eb_blk,
Joel Becker0fcaa562008-10-09 17:20:31 -0700709 &eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800710 if (retval < 0) {
711 mlog_errno(retval);
712 goto bail;
713 }
714 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
715 el = &eb->h_list;
Tao Mae7d4cb62008-08-18 17:38:44 +0800716 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800717
718 BUG_ON(el->l_tree_depth != 0);
719
720 retval = le16_to_cpu(el->l_count) - le16_to_cpu(el->l_next_free_rec);
721bail:
Mark Fasheha81cb882008-10-07 14:25:16 -0700722 brelse(eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800723
724 mlog_exit(retval);
725 return retval;
726}
727
728/* expects array to already be allocated
729 *
730 * sets h_signature, h_blkno, h_suballoc_bit, h_suballoc_slot, and
731 * l_count for you
732 */
733static int ocfs2_create_new_meta_bhs(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -0700734 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800735 struct inode *inode,
736 int wanted,
737 struct ocfs2_alloc_context *meta_ac,
738 struct buffer_head *bhs[])
739{
740 int count, status, i;
741 u16 suballoc_bit_start;
742 u32 num_got;
743 u64 first_blkno;
744 struct ocfs2_extent_block *eb;
745
746 mlog_entry_void();
747
748 count = 0;
749 while (count < wanted) {
750 status = ocfs2_claim_metadata(osb,
751 handle,
752 meta_ac,
753 wanted - count,
754 &suballoc_bit_start,
755 &num_got,
756 &first_blkno);
757 if (status < 0) {
758 mlog_errno(status);
759 goto bail;
760 }
761
762 for(i = count; i < (num_got + count); i++) {
763 bhs[i] = sb_getblk(osb->sb, first_blkno);
764 if (bhs[i] == NULL) {
765 status = -EIO;
766 mlog_errno(status);
767 goto bail;
768 }
769 ocfs2_set_new_buffer_uptodate(inode, bhs[i]);
770
771 status = ocfs2_journal_access(handle, inode, bhs[i],
772 OCFS2_JOURNAL_ACCESS_CREATE);
773 if (status < 0) {
774 mlog_errno(status);
775 goto bail;
776 }
777
778 memset(bhs[i]->b_data, 0, osb->sb->s_blocksize);
779 eb = (struct ocfs2_extent_block *) bhs[i]->b_data;
780 /* Ok, setup the minimal stuff here. */
781 strcpy(eb->h_signature, OCFS2_EXTENT_BLOCK_SIGNATURE);
782 eb->h_blkno = cpu_to_le64(first_blkno);
783 eb->h_fs_generation = cpu_to_le32(osb->fs_generation);
Mark Fashehccd979b2005-12-15 14:31:24 -0800784 eb->h_suballoc_slot = cpu_to_le16(osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800785 eb->h_suballoc_bit = cpu_to_le16(suballoc_bit_start);
786 eb->h_list.l_count =
787 cpu_to_le16(ocfs2_extent_recs_per_eb(osb->sb));
788
789 suballoc_bit_start++;
790 first_blkno++;
791
792 /* We'll also be dirtied by the caller, so
793 * this isn't absolutely necessary. */
794 status = ocfs2_journal_dirty(handle, bhs[i]);
795 if (status < 0) {
796 mlog_errno(status);
797 goto bail;
798 }
799 }
800
801 count += num_got;
802 }
803
804 status = 0;
805bail:
806 if (status < 0) {
807 for(i = 0; i < wanted; i++) {
Mark Fasheha81cb882008-10-07 14:25:16 -0700808 brelse(bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -0800809 bhs[i] = NULL;
810 }
811 }
812 mlog_exit(status);
813 return status;
814}
815
816/*
Mark Fashehdcd05382007-01-16 11:32:23 -0800817 * Helper function for ocfs2_add_branch() and ocfs2_shift_tree_depth().
818 *
819 * Returns the sum of the rightmost extent rec logical offset and
820 * cluster count.
821 *
822 * ocfs2_add_branch() uses this to determine what logical cluster
823 * value should be populated into the leftmost new branch records.
824 *
825 * ocfs2_shift_tree_depth() uses this to determine the # clusters
826 * value for the new topmost tree record.
827 */
828static inline u32 ocfs2_sum_rightmost_rec(struct ocfs2_extent_list *el)
829{
830 int i;
831
832 i = le16_to_cpu(el->l_next_free_rec) - 1;
833
834 return le32_to_cpu(el->l_recs[i].e_cpos) +
Mark Fashehe48edee2007-03-07 16:46:57 -0800835 ocfs2_rec_clusters(el, &el->l_recs[i]);
Mark Fashehdcd05382007-01-16 11:32:23 -0800836}
837
838/*
Mark Fashehccd979b2005-12-15 14:31:24 -0800839 * Add an entire tree branch to our inode. eb_bh is the extent block
840 * to start at, if we don't want to start the branch at the dinode
841 * structure.
842 *
843 * last_eb_bh is required as we have to update it's next_leaf pointer
844 * for the new last extent block.
845 *
846 * the new branch will be 'empty' in the sense that every block will
Mark Fashehe48edee2007-03-07 16:46:57 -0800847 * contain a single record with cluster count == 0.
Mark Fashehccd979b2005-12-15 14:31:24 -0800848 */
849static int ocfs2_add_branch(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -0700850 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800851 struct inode *inode,
Tao Mae7d4cb62008-08-18 17:38:44 +0800852 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -0800853 struct buffer_head *eb_bh,
Mark Fasheh328d5752007-06-18 10:48:04 -0700854 struct buffer_head **last_eb_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -0800855 struct ocfs2_alloc_context *meta_ac)
856{
857 int status, new_blocks, i;
858 u64 next_blkno, new_last_eb_blk;
859 struct buffer_head *bh;
860 struct buffer_head **new_eb_bhs = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800861 struct ocfs2_extent_block *eb;
862 struct ocfs2_extent_list *eb_el;
863 struct ocfs2_extent_list *el;
Mark Fashehdcd05382007-01-16 11:32:23 -0800864 u32 new_cpos;
Mark Fashehccd979b2005-12-15 14:31:24 -0800865
866 mlog_entry_void();
867
Mark Fasheh328d5752007-06-18 10:48:04 -0700868 BUG_ON(!last_eb_bh || !*last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800869
Mark Fashehccd979b2005-12-15 14:31:24 -0800870 if (eb_bh) {
871 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
872 el = &eb->h_list;
873 } else
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700874 el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -0800875
876 /* we never add a branch to a leaf. */
877 BUG_ON(!el->l_tree_depth);
878
879 new_blocks = le16_to_cpu(el->l_tree_depth);
880
881 /* allocate the number of new eb blocks we need */
882 new_eb_bhs = kcalloc(new_blocks, sizeof(struct buffer_head *),
883 GFP_KERNEL);
884 if (!new_eb_bhs) {
885 status = -ENOMEM;
886 mlog_errno(status);
887 goto bail;
888 }
889
890 status = ocfs2_create_new_meta_bhs(osb, handle, inode, new_blocks,
891 meta_ac, new_eb_bhs);
892 if (status < 0) {
893 mlog_errno(status);
894 goto bail;
895 }
896
Mark Fasheh328d5752007-06-18 10:48:04 -0700897 eb = (struct ocfs2_extent_block *)(*last_eb_bh)->b_data;
Mark Fashehdcd05382007-01-16 11:32:23 -0800898 new_cpos = ocfs2_sum_rightmost_rec(&eb->h_list);
899
Mark Fashehccd979b2005-12-15 14:31:24 -0800900 /* Note: new_eb_bhs[new_blocks - 1] is the guy which will be
901 * linked with the rest of the tree.
902 * conversly, new_eb_bhs[0] is the new bottommost leaf.
903 *
904 * when we leave the loop, new_last_eb_blk will point to the
905 * newest leaf, and next_blkno will point to the topmost extent
906 * block. */
907 next_blkno = new_last_eb_blk = 0;
908 for(i = 0; i < new_blocks; i++) {
909 bh = new_eb_bhs[i];
910 eb = (struct ocfs2_extent_block *) bh->b_data;
911 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
912 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
913 status = -EIO;
914 goto bail;
915 }
916 eb_el = &eb->h_list;
917
918 status = ocfs2_journal_access(handle, inode, bh,
919 OCFS2_JOURNAL_ACCESS_CREATE);
920 if (status < 0) {
921 mlog_errno(status);
922 goto bail;
923 }
924
925 eb->h_next_leaf_blk = 0;
926 eb_el->l_tree_depth = cpu_to_le16(i);
927 eb_el->l_next_free_rec = cpu_to_le16(1);
Mark Fashehdcd05382007-01-16 11:32:23 -0800928 /*
929 * This actually counts as an empty extent as
930 * c_clusters == 0
931 */
932 eb_el->l_recs[0].e_cpos = cpu_to_le32(new_cpos);
Mark Fashehccd979b2005-12-15 14:31:24 -0800933 eb_el->l_recs[0].e_blkno = cpu_to_le64(next_blkno);
Mark Fashehe48edee2007-03-07 16:46:57 -0800934 /*
935 * eb_el isn't always an interior node, but even leaf
936 * nodes want a zero'd flags and reserved field so
937 * this gets the whole 32 bits regardless of use.
938 */
939 eb_el->l_recs[0].e_int_clusters = cpu_to_le32(0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800940 if (!eb_el->l_tree_depth)
941 new_last_eb_blk = le64_to_cpu(eb->h_blkno);
942
943 status = ocfs2_journal_dirty(handle, bh);
944 if (status < 0) {
945 mlog_errno(status);
946 goto bail;
947 }
948
949 next_blkno = le64_to_cpu(eb->h_blkno);
950 }
951
952 /* This is a bit hairy. We want to update up to three blocks
953 * here without leaving any of them in an inconsistent state
954 * in case of error. We don't have to worry about
955 * journal_dirty erroring as it won't unless we've aborted the
956 * handle (in which case we would never be here) so reserving
957 * the write with journal_access is all we need to do. */
Mark Fasheh328d5752007-06-18 10:48:04 -0700958 status = ocfs2_journal_access(handle, inode, *last_eb_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -0800959 OCFS2_JOURNAL_ACCESS_WRITE);
960 if (status < 0) {
961 mlog_errno(status);
962 goto bail;
963 }
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700964 status = ocfs2_journal_access(handle, inode, et->et_root_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -0800965 OCFS2_JOURNAL_ACCESS_WRITE);
966 if (status < 0) {
967 mlog_errno(status);
968 goto bail;
969 }
970 if (eb_bh) {
971 status = ocfs2_journal_access(handle, inode, eb_bh,
972 OCFS2_JOURNAL_ACCESS_WRITE);
973 if (status < 0) {
974 mlog_errno(status);
975 goto bail;
976 }
977 }
978
979 /* Link the new branch into the rest of the tree (el will
Tao Mae7d4cb62008-08-18 17:38:44 +0800980 * either be on the root_bh, or the extent block passed in. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800981 i = le16_to_cpu(el->l_next_free_rec);
982 el->l_recs[i].e_blkno = cpu_to_le64(next_blkno);
Mark Fashehdcd05382007-01-16 11:32:23 -0800983 el->l_recs[i].e_cpos = cpu_to_le32(new_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -0800984 el->l_recs[i].e_int_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800985 le16_add_cpu(&el->l_next_free_rec, 1);
986
987 /* fe needs a new last extent block pointer, as does the
988 * next_leaf on the previously last-extent-block. */
Joel Becker35dc0aa2008-08-20 16:25:06 -0700989 ocfs2_et_set_last_eb_blk(et, new_last_eb_blk);
Mark Fashehccd979b2005-12-15 14:31:24 -0800990
Mark Fasheh328d5752007-06-18 10:48:04 -0700991 eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800992 eb->h_next_leaf_blk = cpu_to_le64(new_last_eb_blk);
993
Mark Fasheh328d5752007-06-18 10:48:04 -0700994 status = ocfs2_journal_dirty(handle, *last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800995 if (status < 0)
996 mlog_errno(status);
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700997 status = ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800998 if (status < 0)
999 mlog_errno(status);
1000 if (eb_bh) {
1001 status = ocfs2_journal_dirty(handle, eb_bh);
1002 if (status < 0)
1003 mlog_errno(status);
1004 }
1005
Mark Fasheh328d5752007-06-18 10:48:04 -07001006 /*
1007 * Some callers want to track the rightmost leaf so pass it
1008 * back here.
1009 */
1010 brelse(*last_eb_bh);
1011 get_bh(new_eb_bhs[0]);
1012 *last_eb_bh = new_eb_bhs[0];
1013
Mark Fashehccd979b2005-12-15 14:31:24 -08001014 status = 0;
1015bail:
1016 if (new_eb_bhs) {
1017 for (i = 0; i < new_blocks; i++)
Mark Fasheha81cb882008-10-07 14:25:16 -07001018 brelse(new_eb_bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001019 kfree(new_eb_bhs);
1020 }
1021
1022 mlog_exit(status);
1023 return status;
1024}
1025
1026/*
1027 * adds another level to the allocation tree.
1028 * returns back the new extent block so you can add a branch to it
1029 * after this call.
1030 */
1031static int ocfs2_shift_tree_depth(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001032 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001033 struct inode *inode,
Tao Mae7d4cb62008-08-18 17:38:44 +08001034 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001035 struct ocfs2_alloc_context *meta_ac,
1036 struct buffer_head **ret_new_eb_bh)
1037{
1038 int status, i;
Mark Fashehdcd05382007-01-16 11:32:23 -08001039 u32 new_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -08001040 struct buffer_head *new_eb_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001041 struct ocfs2_extent_block *eb;
Tao Mae7d4cb62008-08-18 17:38:44 +08001042 struct ocfs2_extent_list *root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001043 struct ocfs2_extent_list *eb_el;
1044
1045 mlog_entry_void();
1046
1047 status = ocfs2_create_new_meta_bhs(osb, handle, inode, 1, meta_ac,
1048 &new_eb_bh);
1049 if (status < 0) {
1050 mlog_errno(status);
1051 goto bail;
1052 }
1053
1054 eb = (struct ocfs2_extent_block *) new_eb_bh->b_data;
1055 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
1056 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
1057 status = -EIO;
1058 goto bail;
1059 }
1060
1061 eb_el = &eb->h_list;
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001062 root_el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001063
1064 status = ocfs2_journal_access(handle, inode, new_eb_bh,
1065 OCFS2_JOURNAL_ACCESS_CREATE);
1066 if (status < 0) {
1067 mlog_errno(status);
1068 goto bail;
1069 }
1070
Tao Mae7d4cb62008-08-18 17:38:44 +08001071 /* copy the root extent list data into the new extent block */
1072 eb_el->l_tree_depth = root_el->l_tree_depth;
1073 eb_el->l_next_free_rec = root_el->l_next_free_rec;
1074 for (i = 0; i < le16_to_cpu(root_el->l_next_free_rec); i++)
1075 eb_el->l_recs[i] = root_el->l_recs[i];
Mark Fashehccd979b2005-12-15 14:31:24 -08001076
1077 status = ocfs2_journal_dirty(handle, new_eb_bh);
1078 if (status < 0) {
1079 mlog_errno(status);
1080 goto bail;
1081 }
1082
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001083 status = ocfs2_journal_access(handle, inode, et->et_root_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -08001084 OCFS2_JOURNAL_ACCESS_WRITE);
1085 if (status < 0) {
1086 mlog_errno(status);
1087 goto bail;
1088 }
1089
Mark Fashehdcd05382007-01-16 11:32:23 -08001090 new_clusters = ocfs2_sum_rightmost_rec(eb_el);
1091
Tao Mae7d4cb62008-08-18 17:38:44 +08001092 /* update root_bh now */
1093 le16_add_cpu(&root_el->l_tree_depth, 1);
1094 root_el->l_recs[0].e_cpos = 0;
1095 root_el->l_recs[0].e_blkno = eb->h_blkno;
1096 root_el->l_recs[0].e_int_clusters = cpu_to_le32(new_clusters);
1097 for (i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++)
1098 memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec));
1099 root_el->l_next_free_rec = cpu_to_le16(1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001100
1101 /* If this is our 1st tree depth shift, then last_eb_blk
1102 * becomes the allocated extent block */
Tao Mae7d4cb62008-08-18 17:38:44 +08001103 if (root_el->l_tree_depth == cpu_to_le16(1))
Joel Becker35dc0aa2008-08-20 16:25:06 -07001104 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fashehccd979b2005-12-15 14:31:24 -08001105
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001106 status = ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001107 if (status < 0) {
1108 mlog_errno(status);
1109 goto bail;
1110 }
1111
1112 *ret_new_eb_bh = new_eb_bh;
1113 new_eb_bh = NULL;
1114 status = 0;
1115bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001116 brelse(new_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001117
1118 mlog_exit(status);
1119 return status;
1120}
1121
1122/*
Mark Fashehccd979b2005-12-15 14:31:24 -08001123 * Should only be called when there is no space left in any of the
1124 * leaf nodes. What we want to do is find the lowest tree depth
1125 * non-leaf extent block with room for new records. There are three
1126 * valid results of this search:
1127 *
1128 * 1) a lowest extent block is found, then we pass it back in
1129 * *lowest_eb_bh and return '0'
1130 *
Tao Mae7d4cb62008-08-18 17:38:44 +08001131 * 2) the search fails to find anything, but the root_el has room. We
Mark Fashehccd979b2005-12-15 14:31:24 -08001132 * pass NULL back in *lowest_eb_bh, but still return '0'
1133 *
Tao Mae7d4cb62008-08-18 17:38:44 +08001134 * 3) the search fails to find anything AND the root_el is full, in
Mark Fashehccd979b2005-12-15 14:31:24 -08001135 * which case we return > 0
1136 *
1137 * return status < 0 indicates an error.
1138 */
1139static int ocfs2_find_branch_target(struct ocfs2_super *osb,
1140 struct inode *inode,
Tao Mae7d4cb62008-08-18 17:38:44 +08001141 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001142 struct buffer_head **target_bh)
1143{
1144 int status = 0, i;
1145 u64 blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -08001146 struct ocfs2_extent_block *eb;
1147 struct ocfs2_extent_list *el;
1148 struct buffer_head *bh = NULL;
1149 struct buffer_head *lowest_bh = NULL;
1150
1151 mlog_entry_void();
1152
1153 *target_bh = NULL;
1154
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001155 el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001156
1157 while(le16_to_cpu(el->l_tree_depth) > 1) {
1158 if (le16_to_cpu(el->l_next_free_rec) == 0) {
Mark Fashehb06970532006-03-03 10:24:33 -08001159 ocfs2_error(inode->i_sb, "Dinode %llu has empty "
Mark Fashehccd979b2005-12-15 14:31:24 -08001160 "extent list (next_free_rec == 0)",
Mark Fashehb06970532006-03-03 10:24:33 -08001161 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001162 status = -EIO;
1163 goto bail;
1164 }
1165 i = le16_to_cpu(el->l_next_free_rec) - 1;
1166 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
1167 if (!blkno) {
Mark Fashehb06970532006-03-03 10:24:33 -08001168 ocfs2_error(inode->i_sb, "Dinode %llu has extent "
Mark Fashehccd979b2005-12-15 14:31:24 -08001169 "list where extent # %d has no physical "
1170 "block start",
Mark Fashehb06970532006-03-03 10:24:33 -08001171 (unsigned long long)OCFS2_I(inode)->ip_blkno, i);
Mark Fashehccd979b2005-12-15 14:31:24 -08001172 status = -EIO;
1173 goto bail;
1174 }
1175
Mark Fasheha81cb882008-10-07 14:25:16 -07001176 brelse(bh);
1177 bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001178
Joel Becker0fcaa562008-10-09 17:20:31 -07001179 status = ocfs2_read_block(inode, blkno, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001180 if (status < 0) {
1181 mlog_errno(status);
1182 goto bail;
1183 }
1184
1185 eb = (struct ocfs2_extent_block *) bh->b_data;
1186 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
1187 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
1188 status = -EIO;
1189 goto bail;
1190 }
1191 el = &eb->h_list;
1192
1193 if (le16_to_cpu(el->l_next_free_rec) <
1194 le16_to_cpu(el->l_count)) {
Mark Fasheha81cb882008-10-07 14:25:16 -07001195 brelse(lowest_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001196 lowest_bh = bh;
1197 get_bh(lowest_bh);
1198 }
1199 }
1200
1201 /* If we didn't find one and the fe doesn't have any room,
1202 * then return '1' */
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001203 el = et->et_root_el;
Tao Mae7d4cb62008-08-18 17:38:44 +08001204 if (!lowest_bh && (el->l_next_free_rec == el->l_count))
Mark Fashehccd979b2005-12-15 14:31:24 -08001205 status = 1;
1206
1207 *target_bh = lowest_bh;
1208bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001209 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001210
1211 mlog_exit(status);
1212 return status;
1213}
1214
Mark Fashehe48edee2007-03-07 16:46:57 -08001215/*
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001216 * Grow a b-tree so that it has more records.
1217 *
1218 * We might shift the tree depth in which case existing paths should
1219 * be considered invalid.
1220 *
1221 * Tree depth after the grow is returned via *final_depth.
Mark Fasheh328d5752007-06-18 10:48:04 -07001222 *
1223 * *last_eb_bh will be updated by ocfs2_add_branch().
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001224 */
1225static int ocfs2_grow_tree(struct inode *inode, handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08001226 struct ocfs2_extent_tree *et, int *final_depth,
Mark Fasheh328d5752007-06-18 10:48:04 -07001227 struct buffer_head **last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001228 struct ocfs2_alloc_context *meta_ac)
1229{
1230 int ret, shift;
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001231 struct ocfs2_extent_list *el = et->et_root_el;
Tao Mae7d4cb62008-08-18 17:38:44 +08001232 int depth = le16_to_cpu(el->l_tree_depth);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001233 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1234 struct buffer_head *bh = NULL;
1235
1236 BUG_ON(meta_ac == NULL);
1237
Tao Mae7d4cb62008-08-18 17:38:44 +08001238 shift = ocfs2_find_branch_target(osb, inode, et, &bh);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001239 if (shift < 0) {
1240 ret = shift;
1241 mlog_errno(ret);
1242 goto out;
1243 }
1244
1245 /* We traveled all the way to the bottom of the allocation tree
1246 * and didn't find room for any more extents - we need to add
1247 * another tree level */
1248 if (shift) {
1249 BUG_ON(bh);
1250 mlog(0, "need to shift tree depth (current = %d)\n", depth);
1251
1252 /* ocfs2_shift_tree_depth will return us a buffer with
1253 * the new extent block (so we can pass that to
1254 * ocfs2_add_branch). */
Tao Mae7d4cb62008-08-18 17:38:44 +08001255 ret = ocfs2_shift_tree_depth(osb, handle, inode, et,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001256 meta_ac, &bh);
1257 if (ret < 0) {
1258 mlog_errno(ret);
1259 goto out;
1260 }
1261 depth++;
Mark Fasheh328d5752007-06-18 10:48:04 -07001262 if (depth == 1) {
1263 /*
1264 * Special case: we have room now if we shifted from
1265 * tree_depth 0, so no more work needs to be done.
1266 *
1267 * We won't be calling add_branch, so pass
1268 * back *last_eb_bh as the new leaf. At depth
1269 * zero, it should always be null so there's
1270 * no reason to brelse.
1271 */
1272 BUG_ON(*last_eb_bh);
1273 get_bh(bh);
1274 *last_eb_bh = bh;
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001275 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07001276 }
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001277 }
1278
1279 /* call ocfs2_add_branch to add the final part of the tree with
1280 * the new data. */
1281 mlog(0, "add branch. bh = %p\n", bh);
Tao Mae7d4cb62008-08-18 17:38:44 +08001282 ret = ocfs2_add_branch(osb, handle, inode, et, bh, last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001283 meta_ac);
1284 if (ret < 0) {
1285 mlog_errno(ret);
1286 goto out;
1287 }
1288
1289out:
1290 if (final_depth)
1291 *final_depth = depth;
1292 brelse(bh);
1293 return ret;
1294}
1295
1296/*
Mark Fashehdcd05382007-01-16 11:32:23 -08001297 * This function will discard the rightmost extent record.
1298 */
1299static void ocfs2_shift_records_right(struct ocfs2_extent_list *el)
1300{
1301 int next_free = le16_to_cpu(el->l_next_free_rec);
1302 int count = le16_to_cpu(el->l_count);
1303 unsigned int num_bytes;
1304
1305 BUG_ON(!next_free);
1306 /* This will cause us to go off the end of our extent list. */
1307 BUG_ON(next_free >= count);
1308
1309 num_bytes = sizeof(struct ocfs2_extent_rec) * next_free;
1310
1311 memmove(&el->l_recs[1], &el->l_recs[0], num_bytes);
1312}
1313
1314static void ocfs2_rotate_leaf(struct ocfs2_extent_list *el,
1315 struct ocfs2_extent_rec *insert_rec)
1316{
1317 int i, insert_index, next_free, has_empty, num_bytes;
1318 u32 insert_cpos = le32_to_cpu(insert_rec->e_cpos);
1319 struct ocfs2_extent_rec *rec;
1320
1321 next_free = le16_to_cpu(el->l_next_free_rec);
1322 has_empty = ocfs2_is_empty_extent(&el->l_recs[0]);
1323
1324 BUG_ON(!next_free);
1325
1326 /* The tree code before us didn't allow enough room in the leaf. */
Julia Lawallb1f35502008-03-04 15:21:05 -08001327 BUG_ON(el->l_next_free_rec == el->l_count && !has_empty);
Mark Fashehdcd05382007-01-16 11:32:23 -08001328
1329 /*
1330 * The easiest way to approach this is to just remove the
1331 * empty extent and temporarily decrement next_free.
1332 */
1333 if (has_empty) {
1334 /*
1335 * If next_free was 1 (only an empty extent), this
1336 * loop won't execute, which is fine. We still want
1337 * the decrement above to happen.
1338 */
1339 for(i = 0; i < (next_free - 1); i++)
1340 el->l_recs[i] = el->l_recs[i+1];
1341
1342 next_free--;
1343 }
1344
1345 /*
1346 * Figure out what the new record index should be.
1347 */
1348 for(i = 0; i < next_free; i++) {
1349 rec = &el->l_recs[i];
1350
1351 if (insert_cpos < le32_to_cpu(rec->e_cpos))
1352 break;
1353 }
1354 insert_index = i;
1355
1356 mlog(0, "ins %u: index %d, has_empty %d, next_free %d, count %d\n",
1357 insert_cpos, insert_index, has_empty, next_free, le16_to_cpu(el->l_count));
1358
1359 BUG_ON(insert_index < 0);
1360 BUG_ON(insert_index >= le16_to_cpu(el->l_count));
1361 BUG_ON(insert_index > next_free);
1362
1363 /*
1364 * No need to memmove if we're just adding to the tail.
1365 */
1366 if (insert_index != next_free) {
1367 BUG_ON(next_free >= le16_to_cpu(el->l_count));
1368
1369 num_bytes = next_free - insert_index;
1370 num_bytes *= sizeof(struct ocfs2_extent_rec);
1371 memmove(&el->l_recs[insert_index + 1],
1372 &el->l_recs[insert_index],
1373 num_bytes);
1374 }
1375
1376 /*
1377 * Either we had an empty extent, and need to re-increment or
1378 * there was no empty extent on a non full rightmost leaf node,
1379 * in which case we still need to increment.
1380 */
1381 next_free++;
1382 el->l_next_free_rec = cpu_to_le16(next_free);
1383 /*
1384 * Make sure none of the math above just messed up our tree.
1385 */
1386 BUG_ON(le16_to_cpu(el->l_next_free_rec) > le16_to_cpu(el->l_count));
1387
1388 el->l_recs[insert_index] = *insert_rec;
1389
1390}
1391
Mark Fasheh328d5752007-06-18 10:48:04 -07001392static void ocfs2_remove_empty_extent(struct ocfs2_extent_list *el)
1393{
1394 int size, num_recs = le16_to_cpu(el->l_next_free_rec);
1395
1396 BUG_ON(num_recs == 0);
1397
1398 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
1399 num_recs--;
1400 size = num_recs * sizeof(struct ocfs2_extent_rec);
1401 memmove(&el->l_recs[0], &el->l_recs[1], size);
1402 memset(&el->l_recs[num_recs], 0,
1403 sizeof(struct ocfs2_extent_rec));
1404 el->l_next_free_rec = cpu_to_le16(num_recs);
1405 }
1406}
1407
Mark Fashehdcd05382007-01-16 11:32:23 -08001408/*
1409 * Create an empty extent record .
1410 *
1411 * l_next_free_rec may be updated.
1412 *
1413 * If an empty extent already exists do nothing.
1414 */
1415static void ocfs2_create_empty_extent(struct ocfs2_extent_list *el)
1416{
1417 int next_free = le16_to_cpu(el->l_next_free_rec);
1418
Mark Fashehe48edee2007-03-07 16:46:57 -08001419 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
1420
Mark Fashehdcd05382007-01-16 11:32:23 -08001421 if (next_free == 0)
1422 goto set_and_inc;
1423
1424 if (ocfs2_is_empty_extent(&el->l_recs[0]))
1425 return;
1426
1427 mlog_bug_on_msg(el->l_count == el->l_next_free_rec,
1428 "Asked to create an empty extent in a full list:\n"
1429 "count = %u, tree depth = %u",
1430 le16_to_cpu(el->l_count),
1431 le16_to_cpu(el->l_tree_depth));
1432
1433 ocfs2_shift_records_right(el);
1434
1435set_and_inc:
1436 le16_add_cpu(&el->l_next_free_rec, 1);
1437 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
1438}
1439
1440/*
1441 * For a rotation which involves two leaf nodes, the "root node" is
1442 * the lowest level tree node which contains a path to both leafs. This
1443 * resulting set of information can be used to form a complete "subtree"
1444 *
1445 * This function is passed two full paths from the dinode down to a
1446 * pair of adjacent leaves. It's task is to figure out which path
1447 * index contains the subtree root - this can be the root index itself
1448 * in a worst-case rotation.
1449 *
1450 * The array index of the subtree root is passed back.
1451 */
1452static int ocfs2_find_subtree_root(struct inode *inode,
1453 struct ocfs2_path *left,
1454 struct ocfs2_path *right)
1455{
1456 int i = 0;
1457
1458 /*
1459 * Check that the caller passed in two paths from the same tree.
1460 */
1461 BUG_ON(path_root_bh(left) != path_root_bh(right));
1462
1463 do {
1464 i++;
1465
1466 /*
1467 * The caller didn't pass two adjacent paths.
1468 */
1469 mlog_bug_on_msg(i > left->p_tree_depth,
1470 "Inode %lu, left depth %u, right depth %u\n"
1471 "left leaf blk %llu, right leaf blk %llu\n",
1472 inode->i_ino, left->p_tree_depth,
1473 right->p_tree_depth,
1474 (unsigned long long)path_leaf_bh(left)->b_blocknr,
1475 (unsigned long long)path_leaf_bh(right)->b_blocknr);
1476 } while (left->p_node[i].bh->b_blocknr ==
1477 right->p_node[i].bh->b_blocknr);
1478
1479 return i - 1;
1480}
1481
1482typedef void (path_insert_t)(void *, struct buffer_head *);
1483
1484/*
1485 * Traverse a btree path in search of cpos, starting at root_el.
1486 *
1487 * This code can be called with a cpos larger than the tree, in which
1488 * case it will return the rightmost path.
1489 */
1490static int __ocfs2_find_path(struct inode *inode,
1491 struct ocfs2_extent_list *root_el, u32 cpos,
1492 path_insert_t *func, void *data)
1493{
1494 int i, ret = 0;
1495 u32 range;
1496 u64 blkno;
1497 struct buffer_head *bh = NULL;
1498 struct ocfs2_extent_block *eb;
1499 struct ocfs2_extent_list *el;
1500 struct ocfs2_extent_rec *rec;
1501 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1502
1503 el = root_el;
1504 while (el->l_tree_depth) {
1505 if (le16_to_cpu(el->l_next_free_rec) == 0) {
1506 ocfs2_error(inode->i_sb,
1507 "Inode %llu has empty extent list at "
1508 "depth %u\n",
1509 (unsigned long long)oi->ip_blkno,
1510 le16_to_cpu(el->l_tree_depth));
1511 ret = -EROFS;
1512 goto out;
1513
1514 }
1515
1516 for(i = 0; i < le16_to_cpu(el->l_next_free_rec) - 1; i++) {
1517 rec = &el->l_recs[i];
1518
1519 /*
1520 * In the case that cpos is off the allocation
1521 * tree, this should just wind up returning the
1522 * rightmost record.
1523 */
1524 range = le32_to_cpu(rec->e_cpos) +
Mark Fashehe48edee2007-03-07 16:46:57 -08001525 ocfs2_rec_clusters(el, rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08001526 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
1527 break;
1528 }
1529
1530 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
1531 if (blkno == 0) {
1532 ocfs2_error(inode->i_sb,
1533 "Inode %llu has bad blkno in extent list "
1534 "at depth %u (index %d)\n",
1535 (unsigned long long)oi->ip_blkno,
1536 le16_to_cpu(el->l_tree_depth), i);
1537 ret = -EROFS;
1538 goto out;
1539 }
1540
1541 brelse(bh);
1542 bh = NULL;
Joel Becker0fcaa562008-10-09 17:20:31 -07001543 ret = ocfs2_read_block(inode, blkno, &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08001544 if (ret) {
1545 mlog_errno(ret);
1546 goto out;
1547 }
1548
1549 eb = (struct ocfs2_extent_block *) bh->b_data;
1550 el = &eb->h_list;
1551 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
1552 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
1553 ret = -EIO;
1554 goto out;
1555 }
1556
1557 if (le16_to_cpu(el->l_next_free_rec) >
1558 le16_to_cpu(el->l_count)) {
1559 ocfs2_error(inode->i_sb,
1560 "Inode %llu has bad count in extent list "
1561 "at block %llu (next free=%u, count=%u)\n",
1562 (unsigned long long)oi->ip_blkno,
1563 (unsigned long long)bh->b_blocknr,
1564 le16_to_cpu(el->l_next_free_rec),
1565 le16_to_cpu(el->l_count));
1566 ret = -EROFS;
1567 goto out;
1568 }
1569
1570 if (func)
1571 func(data, bh);
1572 }
1573
1574out:
1575 /*
1576 * Catch any trailing bh that the loop didn't handle.
1577 */
1578 brelse(bh);
1579
1580 return ret;
1581}
1582
1583/*
1584 * Given an initialized path (that is, it has a valid root extent
1585 * list), this function will traverse the btree in search of the path
1586 * which would contain cpos.
1587 *
1588 * The path traveled is recorded in the path structure.
1589 *
1590 * Note that this will not do any comparisons on leaf node extent
1591 * records, so it will work fine in the case that we just added a tree
1592 * branch.
1593 */
1594struct find_path_data {
1595 int index;
1596 struct ocfs2_path *path;
1597};
1598static void find_path_ins(void *data, struct buffer_head *bh)
1599{
1600 struct find_path_data *fp = data;
1601
1602 get_bh(bh);
1603 ocfs2_path_insert_eb(fp->path, fp->index, bh);
1604 fp->index++;
1605}
1606static int ocfs2_find_path(struct inode *inode, struct ocfs2_path *path,
1607 u32 cpos)
1608{
1609 struct find_path_data data;
1610
1611 data.index = 1;
1612 data.path = path;
1613 return __ocfs2_find_path(inode, path_root_el(path), cpos,
1614 find_path_ins, &data);
1615}
1616
1617static void find_leaf_ins(void *data, struct buffer_head *bh)
1618{
1619 struct ocfs2_extent_block *eb =(struct ocfs2_extent_block *)bh->b_data;
1620 struct ocfs2_extent_list *el = &eb->h_list;
1621 struct buffer_head **ret = data;
1622
1623 /* We want to retain only the leaf block. */
1624 if (le16_to_cpu(el->l_tree_depth) == 0) {
1625 get_bh(bh);
1626 *ret = bh;
1627 }
1628}
1629/*
1630 * Find the leaf block in the tree which would contain cpos. No
1631 * checking of the actual leaf is done.
1632 *
1633 * Some paths want to call this instead of allocating a path structure
1634 * and calling ocfs2_find_path().
1635 *
1636 * This function doesn't handle non btree extent lists.
1637 */
Mark Fasheh363041a2007-01-17 12:31:35 -08001638int ocfs2_find_leaf(struct inode *inode, struct ocfs2_extent_list *root_el,
1639 u32 cpos, struct buffer_head **leaf_bh)
Mark Fashehdcd05382007-01-16 11:32:23 -08001640{
1641 int ret;
1642 struct buffer_head *bh = NULL;
1643
1644 ret = __ocfs2_find_path(inode, root_el, cpos, find_leaf_ins, &bh);
1645 if (ret) {
1646 mlog_errno(ret);
1647 goto out;
1648 }
1649
1650 *leaf_bh = bh;
1651out:
1652 return ret;
1653}
1654
1655/*
1656 * Adjust the adjacent records (left_rec, right_rec) involved in a rotation.
1657 *
1658 * Basically, we've moved stuff around at the bottom of the tree and
1659 * we need to fix up the extent records above the changes to reflect
1660 * the new changes.
1661 *
1662 * left_rec: the record on the left.
1663 * left_child_el: is the child list pointed to by left_rec
1664 * right_rec: the record to the right of left_rec
1665 * right_child_el: is the child list pointed to by right_rec
1666 *
1667 * By definition, this only works on interior nodes.
1668 */
1669static void ocfs2_adjust_adjacent_records(struct ocfs2_extent_rec *left_rec,
1670 struct ocfs2_extent_list *left_child_el,
1671 struct ocfs2_extent_rec *right_rec,
1672 struct ocfs2_extent_list *right_child_el)
1673{
1674 u32 left_clusters, right_end;
1675
1676 /*
1677 * Interior nodes never have holes. Their cpos is the cpos of
1678 * the leftmost record in their child list. Their cluster
1679 * count covers the full theoretical range of their child list
1680 * - the range between their cpos and the cpos of the record
1681 * immediately to their right.
1682 */
1683 left_clusters = le32_to_cpu(right_child_el->l_recs[0].e_cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07001684 if (ocfs2_is_empty_extent(&right_child_el->l_recs[0])) {
1685 BUG_ON(le16_to_cpu(right_child_el->l_next_free_rec) <= 1);
1686 left_clusters = le32_to_cpu(right_child_el->l_recs[1].e_cpos);
1687 }
Mark Fashehdcd05382007-01-16 11:32:23 -08001688 left_clusters -= le32_to_cpu(left_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001689 left_rec->e_int_clusters = cpu_to_le32(left_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08001690
1691 /*
1692 * Calculate the rightmost cluster count boundary before
Mark Fashehe48edee2007-03-07 16:46:57 -08001693 * moving cpos - we will need to adjust clusters after
Mark Fashehdcd05382007-01-16 11:32:23 -08001694 * updating e_cpos to keep the same highest cluster count.
1695 */
1696 right_end = le32_to_cpu(right_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001697 right_end += le32_to_cpu(right_rec->e_int_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08001698
1699 right_rec->e_cpos = left_rec->e_cpos;
1700 le32_add_cpu(&right_rec->e_cpos, left_clusters);
1701
1702 right_end -= le32_to_cpu(right_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001703 right_rec->e_int_clusters = cpu_to_le32(right_end);
Mark Fashehdcd05382007-01-16 11:32:23 -08001704}
1705
1706/*
1707 * Adjust the adjacent root node records involved in a
1708 * rotation. left_el_blkno is passed in as a key so that we can easily
1709 * find it's index in the root list.
1710 */
1711static void ocfs2_adjust_root_records(struct ocfs2_extent_list *root_el,
1712 struct ocfs2_extent_list *left_el,
1713 struct ocfs2_extent_list *right_el,
1714 u64 left_el_blkno)
1715{
1716 int i;
1717
1718 BUG_ON(le16_to_cpu(root_el->l_tree_depth) <=
1719 le16_to_cpu(left_el->l_tree_depth));
1720
1721 for(i = 0; i < le16_to_cpu(root_el->l_next_free_rec) - 1; i++) {
1722 if (le64_to_cpu(root_el->l_recs[i].e_blkno) == left_el_blkno)
1723 break;
1724 }
1725
1726 /*
1727 * The path walking code should have never returned a root and
1728 * two paths which are not adjacent.
1729 */
1730 BUG_ON(i >= (le16_to_cpu(root_el->l_next_free_rec) - 1));
1731
1732 ocfs2_adjust_adjacent_records(&root_el->l_recs[i], left_el,
1733 &root_el->l_recs[i + 1], right_el);
1734}
1735
1736/*
1737 * We've changed a leaf block (in right_path) and need to reflect that
1738 * change back up the subtree.
1739 *
1740 * This happens in multiple places:
1741 * - When we've moved an extent record from the left path leaf to the right
1742 * path leaf to make room for an empty extent in the left path leaf.
1743 * - When our insert into the right path leaf is at the leftmost edge
1744 * and requires an update of the path immediately to it's left. This
1745 * can occur at the end of some types of rotation and appending inserts.
Tao Ma677b9752008-01-30 14:21:05 +08001746 * - When we've adjusted the last extent record in the left path leaf and the
1747 * 1st extent record in the right path leaf during cross extent block merge.
Mark Fashehdcd05382007-01-16 11:32:23 -08001748 */
1749static void ocfs2_complete_edge_insert(struct inode *inode, handle_t *handle,
1750 struct ocfs2_path *left_path,
1751 struct ocfs2_path *right_path,
1752 int subtree_index)
1753{
1754 int ret, i, idx;
1755 struct ocfs2_extent_list *el, *left_el, *right_el;
1756 struct ocfs2_extent_rec *left_rec, *right_rec;
1757 struct buffer_head *root_bh = left_path->p_node[subtree_index].bh;
1758
1759 /*
1760 * Update the counts and position values within all the
1761 * interior nodes to reflect the leaf rotation we just did.
1762 *
1763 * The root node is handled below the loop.
1764 *
1765 * We begin the loop with right_el and left_el pointing to the
1766 * leaf lists and work our way up.
1767 *
1768 * NOTE: within this loop, left_el and right_el always refer
1769 * to the *child* lists.
1770 */
1771 left_el = path_leaf_el(left_path);
1772 right_el = path_leaf_el(right_path);
1773 for(i = left_path->p_tree_depth - 1; i > subtree_index; i--) {
1774 mlog(0, "Adjust records at index %u\n", i);
1775
1776 /*
1777 * One nice property of knowing that all of these
1778 * nodes are below the root is that we only deal with
1779 * the leftmost right node record and the rightmost
1780 * left node record.
1781 */
1782 el = left_path->p_node[i].el;
1783 idx = le16_to_cpu(left_el->l_next_free_rec) - 1;
1784 left_rec = &el->l_recs[idx];
1785
1786 el = right_path->p_node[i].el;
1787 right_rec = &el->l_recs[0];
1788
1789 ocfs2_adjust_adjacent_records(left_rec, left_el, right_rec,
1790 right_el);
1791
1792 ret = ocfs2_journal_dirty(handle, left_path->p_node[i].bh);
1793 if (ret)
1794 mlog_errno(ret);
1795
1796 ret = ocfs2_journal_dirty(handle, right_path->p_node[i].bh);
1797 if (ret)
1798 mlog_errno(ret);
1799
1800 /*
1801 * Setup our list pointers now so that the current
1802 * parents become children in the next iteration.
1803 */
1804 left_el = left_path->p_node[i].el;
1805 right_el = right_path->p_node[i].el;
1806 }
1807
1808 /*
1809 * At the root node, adjust the two adjacent records which
1810 * begin our path to the leaves.
1811 */
1812
1813 el = left_path->p_node[subtree_index].el;
1814 left_el = left_path->p_node[subtree_index + 1].el;
1815 right_el = right_path->p_node[subtree_index + 1].el;
1816
1817 ocfs2_adjust_root_records(el, left_el, right_el,
1818 left_path->p_node[subtree_index + 1].bh->b_blocknr);
1819
1820 root_bh = left_path->p_node[subtree_index].bh;
1821
1822 ret = ocfs2_journal_dirty(handle, root_bh);
1823 if (ret)
1824 mlog_errno(ret);
1825}
1826
1827static int ocfs2_rotate_subtree_right(struct inode *inode,
1828 handle_t *handle,
1829 struct ocfs2_path *left_path,
1830 struct ocfs2_path *right_path,
1831 int subtree_index)
1832{
1833 int ret, i;
1834 struct buffer_head *right_leaf_bh;
1835 struct buffer_head *left_leaf_bh = NULL;
1836 struct buffer_head *root_bh;
1837 struct ocfs2_extent_list *right_el, *left_el;
1838 struct ocfs2_extent_rec move_rec;
1839
1840 left_leaf_bh = path_leaf_bh(left_path);
1841 left_el = path_leaf_el(left_path);
1842
1843 if (left_el->l_next_free_rec != left_el->l_count) {
1844 ocfs2_error(inode->i_sb,
1845 "Inode %llu has non-full interior leaf node %llu"
1846 "(next free = %u)",
1847 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1848 (unsigned long long)left_leaf_bh->b_blocknr,
1849 le16_to_cpu(left_el->l_next_free_rec));
1850 return -EROFS;
1851 }
1852
1853 /*
1854 * This extent block may already have an empty record, so we
1855 * return early if so.
1856 */
1857 if (ocfs2_is_empty_extent(&left_el->l_recs[0]))
1858 return 0;
1859
1860 root_bh = left_path->p_node[subtree_index].bh;
1861 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
1862
1863 ret = ocfs2_journal_access(handle, inode, root_bh,
1864 OCFS2_JOURNAL_ACCESS_WRITE);
1865 if (ret) {
1866 mlog_errno(ret);
1867 goto out;
1868 }
1869
1870 for(i = subtree_index + 1; i < path_num_items(right_path); i++) {
1871 ret = ocfs2_journal_access(handle, inode,
1872 right_path->p_node[i].bh,
1873 OCFS2_JOURNAL_ACCESS_WRITE);
1874 if (ret) {
1875 mlog_errno(ret);
1876 goto out;
1877 }
1878
1879 ret = ocfs2_journal_access(handle, inode,
1880 left_path->p_node[i].bh,
1881 OCFS2_JOURNAL_ACCESS_WRITE);
1882 if (ret) {
1883 mlog_errno(ret);
1884 goto out;
1885 }
1886 }
1887
1888 right_leaf_bh = path_leaf_bh(right_path);
1889 right_el = path_leaf_el(right_path);
1890
1891 /* This is a code error, not a disk corruption. */
1892 mlog_bug_on_msg(!right_el->l_next_free_rec, "Inode %llu: Rotate fails "
1893 "because rightmost leaf block %llu is empty\n",
1894 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1895 (unsigned long long)right_leaf_bh->b_blocknr);
1896
1897 ocfs2_create_empty_extent(right_el);
1898
1899 ret = ocfs2_journal_dirty(handle, right_leaf_bh);
1900 if (ret) {
1901 mlog_errno(ret);
1902 goto out;
1903 }
1904
1905 /* Do the copy now. */
1906 i = le16_to_cpu(left_el->l_next_free_rec) - 1;
1907 move_rec = left_el->l_recs[i];
1908 right_el->l_recs[0] = move_rec;
1909
1910 /*
1911 * Clear out the record we just copied and shift everything
1912 * over, leaving an empty extent in the left leaf.
1913 *
1914 * We temporarily subtract from next_free_rec so that the
1915 * shift will lose the tail record (which is now defunct).
1916 */
1917 le16_add_cpu(&left_el->l_next_free_rec, -1);
1918 ocfs2_shift_records_right(left_el);
1919 memset(&left_el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
1920 le16_add_cpu(&left_el->l_next_free_rec, 1);
1921
1922 ret = ocfs2_journal_dirty(handle, left_leaf_bh);
1923 if (ret) {
1924 mlog_errno(ret);
1925 goto out;
1926 }
1927
1928 ocfs2_complete_edge_insert(inode, handle, left_path, right_path,
1929 subtree_index);
1930
1931out:
1932 return ret;
1933}
1934
1935/*
1936 * Given a full path, determine what cpos value would return us a path
1937 * containing the leaf immediately to the left of the current one.
1938 *
1939 * Will return zero if the path passed in is already the leftmost path.
1940 */
1941static int ocfs2_find_cpos_for_left_leaf(struct super_block *sb,
1942 struct ocfs2_path *path, u32 *cpos)
1943{
1944 int i, j, ret = 0;
1945 u64 blkno;
1946 struct ocfs2_extent_list *el;
1947
Mark Fashehe48edee2007-03-07 16:46:57 -08001948 BUG_ON(path->p_tree_depth == 0);
1949
Mark Fashehdcd05382007-01-16 11:32:23 -08001950 *cpos = 0;
1951
1952 blkno = path_leaf_bh(path)->b_blocknr;
1953
1954 /* Start at the tree node just above the leaf and work our way up. */
1955 i = path->p_tree_depth - 1;
1956 while (i >= 0) {
1957 el = path->p_node[i].el;
1958
1959 /*
1960 * Find the extent record just before the one in our
1961 * path.
1962 */
1963 for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) {
1964 if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) {
1965 if (j == 0) {
1966 if (i == 0) {
1967 /*
1968 * We've determined that the
1969 * path specified is already
1970 * the leftmost one - return a
1971 * cpos of zero.
1972 */
1973 goto out;
1974 }
1975 /*
1976 * The leftmost record points to our
1977 * leaf - we need to travel up the
1978 * tree one level.
1979 */
1980 goto next_node;
1981 }
1982
1983 *cpos = le32_to_cpu(el->l_recs[j - 1].e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001984 *cpos = *cpos + ocfs2_rec_clusters(el,
1985 &el->l_recs[j - 1]);
1986 *cpos = *cpos - 1;
Mark Fashehdcd05382007-01-16 11:32:23 -08001987 goto out;
1988 }
1989 }
1990
1991 /*
1992 * If we got here, we never found a valid node where
1993 * the tree indicated one should be.
1994 */
1995 ocfs2_error(sb,
1996 "Invalid extent tree at extent block %llu\n",
1997 (unsigned long long)blkno);
1998 ret = -EROFS;
1999 goto out;
2000
2001next_node:
2002 blkno = path->p_node[i].bh->b_blocknr;
2003 i--;
2004 }
2005
2006out:
2007 return ret;
2008}
2009
Mark Fasheh328d5752007-06-18 10:48:04 -07002010/*
2011 * Extend the transaction by enough credits to complete the rotation,
2012 * and still leave at least the original number of credits allocated
2013 * to this transaction.
2014 */
Mark Fashehdcd05382007-01-16 11:32:23 -08002015static int ocfs2_extend_rotate_transaction(handle_t *handle, int subtree_depth,
Mark Fasheh328d5752007-06-18 10:48:04 -07002016 int op_credits,
Mark Fashehdcd05382007-01-16 11:32:23 -08002017 struct ocfs2_path *path)
2018{
Mark Fasheh328d5752007-06-18 10:48:04 -07002019 int credits = (path->p_tree_depth - subtree_depth) * 2 + 1 + op_credits;
Mark Fashehdcd05382007-01-16 11:32:23 -08002020
2021 if (handle->h_buffer_credits < credits)
2022 return ocfs2_extend_trans(handle, credits);
2023
2024 return 0;
2025}
2026
2027/*
2028 * Trap the case where we're inserting into the theoretical range past
2029 * the _actual_ left leaf range. Otherwise, we'll rotate a record
2030 * whose cpos is less than ours into the right leaf.
2031 *
2032 * It's only necessary to look at the rightmost record of the left
2033 * leaf because the logic that calls us should ensure that the
2034 * theoretical ranges in the path components above the leaves are
2035 * correct.
2036 */
2037static int ocfs2_rotate_requires_path_adjustment(struct ocfs2_path *left_path,
2038 u32 insert_cpos)
2039{
2040 struct ocfs2_extent_list *left_el;
2041 struct ocfs2_extent_rec *rec;
2042 int next_free;
2043
2044 left_el = path_leaf_el(left_path);
2045 next_free = le16_to_cpu(left_el->l_next_free_rec);
2046 rec = &left_el->l_recs[next_free - 1];
2047
2048 if (insert_cpos > le32_to_cpu(rec->e_cpos))
2049 return 1;
2050 return 0;
2051}
2052
Mark Fasheh328d5752007-06-18 10:48:04 -07002053static int ocfs2_leftmost_rec_contains(struct ocfs2_extent_list *el, u32 cpos)
2054{
2055 int next_free = le16_to_cpu(el->l_next_free_rec);
2056 unsigned int range;
2057 struct ocfs2_extent_rec *rec;
2058
2059 if (next_free == 0)
2060 return 0;
2061
2062 rec = &el->l_recs[0];
2063 if (ocfs2_is_empty_extent(rec)) {
2064 /* Empty list. */
2065 if (next_free == 1)
2066 return 0;
2067 rec = &el->l_recs[1];
2068 }
2069
2070 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
2071 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
2072 return 1;
2073 return 0;
2074}
2075
Mark Fashehdcd05382007-01-16 11:32:23 -08002076/*
2077 * Rotate all the records in a btree right one record, starting at insert_cpos.
2078 *
2079 * The path to the rightmost leaf should be passed in.
2080 *
2081 * The array is assumed to be large enough to hold an entire path (tree depth).
2082 *
2083 * Upon succesful return from this function:
2084 *
2085 * - The 'right_path' array will contain a path to the leaf block
2086 * whose range contains e_cpos.
2087 * - That leaf block will have a single empty extent in list index 0.
2088 * - In the case that the rotation requires a post-insert update,
2089 * *ret_left_path will contain a valid path which can be passed to
2090 * ocfs2_insert_path().
2091 */
2092static int ocfs2_rotate_tree_right(struct inode *inode,
2093 handle_t *handle,
Mark Fasheh328d5752007-06-18 10:48:04 -07002094 enum ocfs2_split_type split,
Mark Fashehdcd05382007-01-16 11:32:23 -08002095 u32 insert_cpos,
2096 struct ocfs2_path *right_path,
2097 struct ocfs2_path **ret_left_path)
2098{
Mark Fasheh328d5752007-06-18 10:48:04 -07002099 int ret, start, orig_credits = handle->h_buffer_credits;
Mark Fashehdcd05382007-01-16 11:32:23 -08002100 u32 cpos;
2101 struct ocfs2_path *left_path = NULL;
2102
2103 *ret_left_path = NULL;
2104
2105 left_path = ocfs2_new_path(path_root_bh(right_path),
2106 path_root_el(right_path));
2107 if (!left_path) {
2108 ret = -ENOMEM;
2109 mlog_errno(ret);
2110 goto out;
2111 }
2112
2113 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, right_path, &cpos);
2114 if (ret) {
2115 mlog_errno(ret);
2116 goto out;
2117 }
2118
2119 mlog(0, "Insert: %u, first left path cpos: %u\n", insert_cpos, cpos);
2120
2121 /*
2122 * What we want to do here is:
2123 *
2124 * 1) Start with the rightmost path.
2125 *
2126 * 2) Determine a path to the leaf block directly to the left
2127 * of that leaf.
2128 *
2129 * 3) Determine the 'subtree root' - the lowest level tree node
2130 * which contains a path to both leaves.
2131 *
2132 * 4) Rotate the subtree.
2133 *
2134 * 5) Find the next subtree by considering the left path to be
2135 * the new right path.
2136 *
2137 * The check at the top of this while loop also accepts
2138 * insert_cpos == cpos because cpos is only a _theoretical_
2139 * value to get us the left path - insert_cpos might very well
2140 * be filling that hole.
2141 *
2142 * Stop at a cpos of '0' because we either started at the
2143 * leftmost branch (i.e., a tree with one branch and a
2144 * rotation inside of it), or we've gone as far as we can in
2145 * rotating subtrees.
2146 */
2147 while (cpos && insert_cpos <= cpos) {
2148 mlog(0, "Rotating a tree: ins. cpos: %u, left path cpos: %u\n",
2149 insert_cpos, cpos);
2150
2151 ret = ocfs2_find_path(inode, left_path, cpos);
2152 if (ret) {
2153 mlog_errno(ret);
2154 goto out;
2155 }
2156
2157 mlog_bug_on_msg(path_leaf_bh(left_path) ==
2158 path_leaf_bh(right_path),
2159 "Inode %lu: error during insert of %u "
2160 "(left path cpos %u) results in two identical "
2161 "paths ending at %llu\n",
2162 inode->i_ino, insert_cpos, cpos,
2163 (unsigned long long)
2164 path_leaf_bh(left_path)->b_blocknr);
2165
Mark Fasheh328d5752007-06-18 10:48:04 -07002166 if (split == SPLIT_NONE &&
2167 ocfs2_rotate_requires_path_adjustment(left_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08002168 insert_cpos)) {
Mark Fashehdcd05382007-01-16 11:32:23 -08002169
2170 /*
2171 * We've rotated the tree as much as we
2172 * should. The rest is up to
2173 * ocfs2_insert_path() to complete, after the
2174 * record insertion. We indicate this
2175 * situation by returning the left path.
2176 *
2177 * The reason we don't adjust the records here
2178 * before the record insert is that an error
2179 * later might break the rule where a parent
2180 * record e_cpos will reflect the actual
2181 * e_cpos of the 1st nonempty record of the
2182 * child list.
2183 */
2184 *ret_left_path = left_path;
2185 goto out_ret_path;
2186 }
2187
2188 start = ocfs2_find_subtree_root(inode, left_path, right_path);
2189
2190 mlog(0, "Subtree root at index %d (blk %llu, depth %d)\n",
2191 start,
2192 (unsigned long long) right_path->p_node[start].bh->b_blocknr,
2193 right_path->p_tree_depth);
2194
2195 ret = ocfs2_extend_rotate_transaction(handle, start,
Mark Fasheh328d5752007-06-18 10:48:04 -07002196 orig_credits, right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08002197 if (ret) {
2198 mlog_errno(ret);
2199 goto out;
2200 }
2201
2202 ret = ocfs2_rotate_subtree_right(inode, handle, left_path,
2203 right_path, start);
2204 if (ret) {
2205 mlog_errno(ret);
2206 goto out;
2207 }
2208
Mark Fasheh328d5752007-06-18 10:48:04 -07002209 if (split != SPLIT_NONE &&
2210 ocfs2_leftmost_rec_contains(path_leaf_el(right_path),
2211 insert_cpos)) {
2212 /*
2213 * A rotate moves the rightmost left leaf
2214 * record over to the leftmost right leaf
2215 * slot. If we're doing an extent split
2216 * instead of a real insert, then we have to
2217 * check that the extent to be split wasn't
2218 * just moved over. If it was, then we can
2219 * exit here, passing left_path back -
2220 * ocfs2_split_extent() is smart enough to
2221 * search both leaves.
2222 */
2223 *ret_left_path = left_path;
2224 goto out_ret_path;
2225 }
2226
Mark Fashehdcd05382007-01-16 11:32:23 -08002227 /*
2228 * There is no need to re-read the next right path
2229 * as we know that it'll be our current left
2230 * path. Optimize by copying values instead.
2231 */
2232 ocfs2_mv_path(right_path, left_path);
2233
2234 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, right_path,
2235 &cpos);
2236 if (ret) {
2237 mlog_errno(ret);
2238 goto out;
2239 }
2240 }
2241
2242out:
2243 ocfs2_free_path(left_path);
2244
2245out_ret_path:
2246 return ret;
2247}
2248
Mark Fasheh328d5752007-06-18 10:48:04 -07002249static void ocfs2_update_edge_lengths(struct inode *inode, handle_t *handle,
2250 struct ocfs2_path *path)
2251{
2252 int i, idx;
2253 struct ocfs2_extent_rec *rec;
2254 struct ocfs2_extent_list *el;
2255 struct ocfs2_extent_block *eb;
2256 u32 range;
2257
2258 /* Path should always be rightmost. */
2259 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
2260 BUG_ON(eb->h_next_leaf_blk != 0ULL);
2261
2262 el = &eb->h_list;
2263 BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0);
2264 idx = le16_to_cpu(el->l_next_free_rec) - 1;
2265 rec = &el->l_recs[idx];
2266 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
2267
2268 for (i = 0; i < path->p_tree_depth; i++) {
2269 el = path->p_node[i].el;
2270 idx = le16_to_cpu(el->l_next_free_rec) - 1;
2271 rec = &el->l_recs[idx];
2272
2273 rec->e_int_clusters = cpu_to_le32(range);
2274 le32_add_cpu(&rec->e_int_clusters, -le32_to_cpu(rec->e_cpos));
2275
2276 ocfs2_journal_dirty(handle, path->p_node[i].bh);
2277 }
2278}
2279
2280static void ocfs2_unlink_path(struct inode *inode, handle_t *handle,
2281 struct ocfs2_cached_dealloc_ctxt *dealloc,
2282 struct ocfs2_path *path, int unlink_start)
2283{
2284 int ret, i;
2285 struct ocfs2_extent_block *eb;
2286 struct ocfs2_extent_list *el;
2287 struct buffer_head *bh;
2288
2289 for(i = unlink_start; i < path_num_items(path); i++) {
2290 bh = path->p_node[i].bh;
2291
2292 eb = (struct ocfs2_extent_block *)bh->b_data;
2293 /*
2294 * Not all nodes might have had their final count
2295 * decremented by the caller - handle this here.
2296 */
2297 el = &eb->h_list;
2298 if (le16_to_cpu(el->l_next_free_rec) > 1) {
2299 mlog(ML_ERROR,
2300 "Inode %llu, attempted to remove extent block "
2301 "%llu with %u records\n",
2302 (unsigned long long)OCFS2_I(inode)->ip_blkno,
2303 (unsigned long long)le64_to_cpu(eb->h_blkno),
2304 le16_to_cpu(el->l_next_free_rec));
2305
2306 ocfs2_journal_dirty(handle, bh);
2307 ocfs2_remove_from_cache(inode, bh);
2308 continue;
2309 }
2310
2311 el->l_next_free_rec = 0;
2312 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2313
2314 ocfs2_journal_dirty(handle, bh);
2315
2316 ret = ocfs2_cache_extent_block_free(dealloc, eb);
2317 if (ret)
2318 mlog_errno(ret);
2319
2320 ocfs2_remove_from_cache(inode, bh);
2321 }
2322}
2323
2324static void ocfs2_unlink_subtree(struct inode *inode, handle_t *handle,
2325 struct ocfs2_path *left_path,
2326 struct ocfs2_path *right_path,
2327 int subtree_index,
2328 struct ocfs2_cached_dealloc_ctxt *dealloc)
2329{
2330 int i;
2331 struct buffer_head *root_bh = left_path->p_node[subtree_index].bh;
2332 struct ocfs2_extent_list *root_el = left_path->p_node[subtree_index].el;
2333 struct ocfs2_extent_list *el;
2334 struct ocfs2_extent_block *eb;
2335
2336 el = path_leaf_el(left_path);
2337
2338 eb = (struct ocfs2_extent_block *)right_path->p_node[subtree_index + 1].bh->b_data;
2339
2340 for(i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++)
2341 if (root_el->l_recs[i].e_blkno == eb->h_blkno)
2342 break;
2343
2344 BUG_ON(i >= le16_to_cpu(root_el->l_next_free_rec));
2345
2346 memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec));
2347 le16_add_cpu(&root_el->l_next_free_rec, -1);
2348
2349 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
2350 eb->h_next_leaf_blk = 0;
2351
2352 ocfs2_journal_dirty(handle, root_bh);
2353 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
2354
2355 ocfs2_unlink_path(inode, handle, dealloc, right_path,
2356 subtree_index + 1);
2357}
2358
2359static int ocfs2_rotate_subtree_left(struct inode *inode, handle_t *handle,
2360 struct ocfs2_path *left_path,
2361 struct ocfs2_path *right_path,
2362 int subtree_index,
2363 struct ocfs2_cached_dealloc_ctxt *dealloc,
Tao Mae7d4cb62008-08-18 17:38:44 +08002364 int *deleted,
2365 struct ocfs2_extent_tree *et)
Mark Fasheh328d5752007-06-18 10:48:04 -07002366{
2367 int ret, i, del_right_subtree = 0, right_has_empty = 0;
Tao Mae7d4cb62008-08-18 17:38:44 +08002368 struct buffer_head *root_bh, *et_root_bh = path_root_bh(right_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002369 struct ocfs2_extent_list *right_leaf_el, *left_leaf_el;
2370 struct ocfs2_extent_block *eb;
2371
2372 *deleted = 0;
2373
2374 right_leaf_el = path_leaf_el(right_path);
2375 left_leaf_el = path_leaf_el(left_path);
2376 root_bh = left_path->p_node[subtree_index].bh;
2377 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
2378
2379 if (!ocfs2_is_empty_extent(&left_leaf_el->l_recs[0]))
2380 return 0;
2381
2382 eb = (struct ocfs2_extent_block *)path_leaf_bh(right_path)->b_data;
2383 if (ocfs2_is_empty_extent(&right_leaf_el->l_recs[0])) {
2384 /*
2385 * It's legal for us to proceed if the right leaf is
2386 * the rightmost one and it has an empty extent. There
2387 * are two cases to handle - whether the leaf will be
2388 * empty after removal or not. If the leaf isn't empty
2389 * then just remove the empty extent up front. The
2390 * next block will handle empty leaves by flagging
2391 * them for unlink.
2392 *
2393 * Non rightmost leaves will throw -EAGAIN and the
2394 * caller can manually move the subtree and retry.
2395 */
2396
2397 if (eb->h_next_leaf_blk != 0ULL)
2398 return -EAGAIN;
2399
2400 if (le16_to_cpu(right_leaf_el->l_next_free_rec) > 1) {
2401 ret = ocfs2_journal_access(handle, inode,
2402 path_leaf_bh(right_path),
2403 OCFS2_JOURNAL_ACCESS_WRITE);
2404 if (ret) {
2405 mlog_errno(ret);
2406 goto out;
2407 }
2408
2409 ocfs2_remove_empty_extent(right_leaf_el);
2410 } else
2411 right_has_empty = 1;
2412 }
2413
2414 if (eb->h_next_leaf_blk == 0ULL &&
2415 le16_to_cpu(right_leaf_el->l_next_free_rec) == 1) {
2416 /*
2417 * We have to update i_last_eb_blk during the meta
2418 * data delete.
2419 */
Tao Mae7d4cb62008-08-18 17:38:44 +08002420 ret = ocfs2_journal_access(handle, inode, et_root_bh,
Mark Fasheh328d5752007-06-18 10:48:04 -07002421 OCFS2_JOURNAL_ACCESS_WRITE);
2422 if (ret) {
2423 mlog_errno(ret);
2424 goto out;
2425 }
2426
2427 del_right_subtree = 1;
2428 }
2429
2430 /*
2431 * Getting here with an empty extent in the right path implies
2432 * that it's the rightmost path and will be deleted.
2433 */
2434 BUG_ON(right_has_empty && !del_right_subtree);
2435
2436 ret = ocfs2_journal_access(handle, inode, root_bh,
2437 OCFS2_JOURNAL_ACCESS_WRITE);
2438 if (ret) {
2439 mlog_errno(ret);
2440 goto out;
2441 }
2442
2443 for(i = subtree_index + 1; i < path_num_items(right_path); i++) {
2444 ret = ocfs2_journal_access(handle, inode,
2445 right_path->p_node[i].bh,
2446 OCFS2_JOURNAL_ACCESS_WRITE);
2447 if (ret) {
2448 mlog_errno(ret);
2449 goto out;
2450 }
2451
2452 ret = ocfs2_journal_access(handle, inode,
2453 left_path->p_node[i].bh,
2454 OCFS2_JOURNAL_ACCESS_WRITE);
2455 if (ret) {
2456 mlog_errno(ret);
2457 goto out;
2458 }
2459 }
2460
2461 if (!right_has_empty) {
2462 /*
2463 * Only do this if we're moving a real
2464 * record. Otherwise, the action is delayed until
2465 * after removal of the right path in which case we
2466 * can do a simple shift to remove the empty extent.
2467 */
2468 ocfs2_rotate_leaf(left_leaf_el, &right_leaf_el->l_recs[0]);
2469 memset(&right_leaf_el->l_recs[0], 0,
2470 sizeof(struct ocfs2_extent_rec));
2471 }
2472 if (eb->h_next_leaf_blk == 0ULL) {
2473 /*
2474 * Move recs over to get rid of empty extent, decrease
2475 * next_free. This is allowed to remove the last
2476 * extent in our leaf (setting l_next_free_rec to
2477 * zero) - the delete code below won't care.
2478 */
2479 ocfs2_remove_empty_extent(right_leaf_el);
2480 }
2481
2482 ret = ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
2483 if (ret)
2484 mlog_errno(ret);
2485 ret = ocfs2_journal_dirty(handle, path_leaf_bh(right_path));
2486 if (ret)
2487 mlog_errno(ret);
2488
2489 if (del_right_subtree) {
2490 ocfs2_unlink_subtree(inode, handle, left_path, right_path,
2491 subtree_index, dealloc);
2492 ocfs2_update_edge_lengths(inode, handle, left_path);
2493
2494 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
Joel Becker35dc0aa2008-08-20 16:25:06 -07002495 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fasheh328d5752007-06-18 10:48:04 -07002496
2497 /*
2498 * Removal of the extent in the left leaf was skipped
2499 * above so we could delete the right path
2500 * 1st.
2501 */
2502 if (right_has_empty)
2503 ocfs2_remove_empty_extent(left_leaf_el);
2504
Tao Mae7d4cb62008-08-18 17:38:44 +08002505 ret = ocfs2_journal_dirty(handle, et_root_bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002506 if (ret)
2507 mlog_errno(ret);
2508
2509 *deleted = 1;
2510 } else
2511 ocfs2_complete_edge_insert(inode, handle, left_path, right_path,
2512 subtree_index);
2513
2514out:
2515 return ret;
2516}
2517
2518/*
2519 * Given a full path, determine what cpos value would return us a path
2520 * containing the leaf immediately to the right of the current one.
2521 *
2522 * Will return zero if the path passed in is already the rightmost path.
2523 *
2524 * This looks similar, but is subtly different to
2525 * ocfs2_find_cpos_for_left_leaf().
2526 */
2527static int ocfs2_find_cpos_for_right_leaf(struct super_block *sb,
2528 struct ocfs2_path *path, u32 *cpos)
2529{
2530 int i, j, ret = 0;
2531 u64 blkno;
2532 struct ocfs2_extent_list *el;
2533
2534 *cpos = 0;
2535
2536 if (path->p_tree_depth == 0)
2537 return 0;
2538
2539 blkno = path_leaf_bh(path)->b_blocknr;
2540
2541 /* Start at the tree node just above the leaf and work our way up. */
2542 i = path->p_tree_depth - 1;
2543 while (i >= 0) {
2544 int next_free;
2545
2546 el = path->p_node[i].el;
2547
2548 /*
2549 * Find the extent record just after the one in our
2550 * path.
2551 */
2552 next_free = le16_to_cpu(el->l_next_free_rec);
2553 for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) {
2554 if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) {
2555 if (j == (next_free - 1)) {
2556 if (i == 0) {
2557 /*
2558 * We've determined that the
2559 * path specified is already
2560 * the rightmost one - return a
2561 * cpos of zero.
2562 */
2563 goto out;
2564 }
2565 /*
2566 * The rightmost record points to our
2567 * leaf - we need to travel up the
2568 * tree one level.
2569 */
2570 goto next_node;
2571 }
2572
2573 *cpos = le32_to_cpu(el->l_recs[j + 1].e_cpos);
2574 goto out;
2575 }
2576 }
2577
2578 /*
2579 * If we got here, we never found a valid node where
2580 * the tree indicated one should be.
2581 */
2582 ocfs2_error(sb,
2583 "Invalid extent tree at extent block %llu\n",
2584 (unsigned long long)blkno);
2585 ret = -EROFS;
2586 goto out;
2587
2588next_node:
2589 blkno = path->p_node[i].bh->b_blocknr;
2590 i--;
2591 }
2592
2593out:
2594 return ret;
2595}
2596
2597static int ocfs2_rotate_rightmost_leaf_left(struct inode *inode,
2598 handle_t *handle,
2599 struct buffer_head *bh,
2600 struct ocfs2_extent_list *el)
2601{
2602 int ret;
2603
2604 if (!ocfs2_is_empty_extent(&el->l_recs[0]))
2605 return 0;
2606
2607 ret = ocfs2_journal_access(handle, inode, bh,
2608 OCFS2_JOURNAL_ACCESS_WRITE);
2609 if (ret) {
2610 mlog_errno(ret);
2611 goto out;
2612 }
2613
2614 ocfs2_remove_empty_extent(el);
2615
2616 ret = ocfs2_journal_dirty(handle, bh);
2617 if (ret)
2618 mlog_errno(ret);
2619
2620out:
2621 return ret;
2622}
2623
2624static int __ocfs2_rotate_tree_left(struct inode *inode,
2625 handle_t *handle, int orig_credits,
2626 struct ocfs2_path *path,
2627 struct ocfs2_cached_dealloc_ctxt *dealloc,
Tao Mae7d4cb62008-08-18 17:38:44 +08002628 struct ocfs2_path **empty_extent_path,
2629 struct ocfs2_extent_tree *et)
Mark Fasheh328d5752007-06-18 10:48:04 -07002630{
2631 int ret, subtree_root, deleted;
2632 u32 right_cpos;
2633 struct ocfs2_path *left_path = NULL;
2634 struct ocfs2_path *right_path = NULL;
2635
2636 BUG_ON(!ocfs2_is_empty_extent(&(path_leaf_el(path)->l_recs[0])));
2637
2638 *empty_extent_path = NULL;
2639
2640 ret = ocfs2_find_cpos_for_right_leaf(inode->i_sb, path,
2641 &right_cpos);
2642 if (ret) {
2643 mlog_errno(ret);
2644 goto out;
2645 }
2646
2647 left_path = ocfs2_new_path(path_root_bh(path),
2648 path_root_el(path));
2649 if (!left_path) {
2650 ret = -ENOMEM;
2651 mlog_errno(ret);
2652 goto out;
2653 }
2654
2655 ocfs2_cp_path(left_path, path);
2656
2657 right_path = ocfs2_new_path(path_root_bh(path),
2658 path_root_el(path));
2659 if (!right_path) {
2660 ret = -ENOMEM;
2661 mlog_errno(ret);
2662 goto out;
2663 }
2664
2665 while (right_cpos) {
2666 ret = ocfs2_find_path(inode, right_path, right_cpos);
2667 if (ret) {
2668 mlog_errno(ret);
2669 goto out;
2670 }
2671
2672 subtree_root = ocfs2_find_subtree_root(inode, left_path,
2673 right_path);
2674
2675 mlog(0, "Subtree root at index %d (blk %llu, depth %d)\n",
2676 subtree_root,
2677 (unsigned long long)
2678 right_path->p_node[subtree_root].bh->b_blocknr,
2679 right_path->p_tree_depth);
2680
2681 ret = ocfs2_extend_rotate_transaction(handle, subtree_root,
2682 orig_credits, left_path);
2683 if (ret) {
2684 mlog_errno(ret);
2685 goto out;
2686 }
2687
Mark Fashehe8aed342007-12-03 16:43:01 -08002688 /*
2689 * Caller might still want to make changes to the
2690 * tree root, so re-add it to the journal here.
2691 */
2692 ret = ocfs2_journal_access(handle, inode,
2693 path_root_bh(left_path),
2694 OCFS2_JOURNAL_ACCESS_WRITE);
2695 if (ret) {
2696 mlog_errno(ret);
2697 goto out;
2698 }
2699
Mark Fasheh328d5752007-06-18 10:48:04 -07002700 ret = ocfs2_rotate_subtree_left(inode, handle, left_path,
2701 right_path, subtree_root,
Tao Mae7d4cb62008-08-18 17:38:44 +08002702 dealloc, &deleted, et);
Mark Fasheh328d5752007-06-18 10:48:04 -07002703 if (ret == -EAGAIN) {
2704 /*
2705 * The rotation has to temporarily stop due to
2706 * the right subtree having an empty
2707 * extent. Pass it back to the caller for a
2708 * fixup.
2709 */
2710 *empty_extent_path = right_path;
2711 right_path = NULL;
2712 goto out;
2713 }
2714 if (ret) {
2715 mlog_errno(ret);
2716 goto out;
2717 }
2718
2719 /*
2720 * The subtree rotate might have removed records on
2721 * the rightmost edge. If so, then rotation is
2722 * complete.
2723 */
2724 if (deleted)
2725 break;
2726
2727 ocfs2_mv_path(left_path, right_path);
2728
2729 ret = ocfs2_find_cpos_for_right_leaf(inode->i_sb, left_path,
2730 &right_cpos);
2731 if (ret) {
2732 mlog_errno(ret);
2733 goto out;
2734 }
2735 }
2736
2737out:
2738 ocfs2_free_path(right_path);
2739 ocfs2_free_path(left_path);
2740
2741 return ret;
2742}
2743
2744static int ocfs2_remove_rightmost_path(struct inode *inode, handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08002745 struct ocfs2_path *path,
2746 struct ocfs2_cached_dealloc_ctxt *dealloc,
2747 struct ocfs2_extent_tree *et)
Mark Fasheh328d5752007-06-18 10:48:04 -07002748{
2749 int ret, subtree_index;
2750 u32 cpos;
2751 struct ocfs2_path *left_path = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07002752 struct ocfs2_extent_block *eb;
2753 struct ocfs2_extent_list *el;
2754
Mark Fasheh328d5752007-06-18 10:48:04 -07002755
Joel Becker35dc0aa2008-08-20 16:25:06 -07002756 ret = ocfs2_et_sanity_check(inode, et);
Tao Mae7d4cb62008-08-18 17:38:44 +08002757 if (ret)
2758 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07002759 /*
2760 * There's two ways we handle this depending on
2761 * whether path is the only existing one.
2762 */
2763 ret = ocfs2_extend_rotate_transaction(handle, 0,
2764 handle->h_buffer_credits,
2765 path);
2766 if (ret) {
2767 mlog_errno(ret);
2768 goto out;
2769 }
2770
2771 ret = ocfs2_journal_access_path(inode, handle, path);
2772 if (ret) {
2773 mlog_errno(ret);
2774 goto out;
2775 }
2776
2777 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, path, &cpos);
2778 if (ret) {
2779 mlog_errno(ret);
2780 goto out;
2781 }
2782
2783 if (cpos) {
2784 /*
2785 * We have a path to the left of this one - it needs
2786 * an update too.
2787 */
2788 left_path = ocfs2_new_path(path_root_bh(path),
2789 path_root_el(path));
2790 if (!left_path) {
2791 ret = -ENOMEM;
2792 mlog_errno(ret);
2793 goto out;
2794 }
2795
2796 ret = ocfs2_find_path(inode, left_path, cpos);
2797 if (ret) {
2798 mlog_errno(ret);
2799 goto out;
2800 }
2801
2802 ret = ocfs2_journal_access_path(inode, handle, left_path);
2803 if (ret) {
2804 mlog_errno(ret);
2805 goto out;
2806 }
2807
2808 subtree_index = ocfs2_find_subtree_root(inode, left_path, path);
2809
2810 ocfs2_unlink_subtree(inode, handle, left_path, path,
2811 subtree_index, dealloc);
2812 ocfs2_update_edge_lengths(inode, handle, left_path);
2813
2814 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
Joel Becker35dc0aa2008-08-20 16:25:06 -07002815 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fasheh328d5752007-06-18 10:48:04 -07002816 } else {
2817 /*
2818 * 'path' is also the leftmost path which
2819 * means it must be the only one. This gets
2820 * handled differently because we want to
2821 * revert the inode back to having extents
2822 * in-line.
2823 */
2824 ocfs2_unlink_path(inode, handle, dealloc, path, 1);
2825
Joel Beckerce1d9ea2008-08-20 16:30:07 -07002826 el = et->et_root_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07002827 el->l_tree_depth = 0;
2828 el->l_next_free_rec = 0;
2829 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2830
Joel Becker35dc0aa2008-08-20 16:25:06 -07002831 ocfs2_et_set_last_eb_blk(et, 0);
Mark Fasheh328d5752007-06-18 10:48:04 -07002832 }
2833
2834 ocfs2_journal_dirty(handle, path_root_bh(path));
2835
2836out:
2837 ocfs2_free_path(left_path);
2838 return ret;
2839}
2840
2841/*
2842 * Left rotation of btree records.
2843 *
2844 * In many ways, this is (unsurprisingly) the opposite of right
2845 * rotation. We start at some non-rightmost path containing an empty
2846 * extent in the leaf block. The code works its way to the rightmost
2847 * path by rotating records to the left in every subtree.
2848 *
2849 * This is used by any code which reduces the number of extent records
2850 * in a leaf. After removal, an empty record should be placed in the
2851 * leftmost list position.
2852 *
2853 * This won't handle a length update of the rightmost path records if
2854 * the rightmost tree leaf record is removed so the caller is
2855 * responsible for detecting and correcting that.
2856 */
2857static int ocfs2_rotate_tree_left(struct inode *inode, handle_t *handle,
2858 struct ocfs2_path *path,
Tao Mae7d4cb62008-08-18 17:38:44 +08002859 struct ocfs2_cached_dealloc_ctxt *dealloc,
2860 struct ocfs2_extent_tree *et)
Mark Fasheh328d5752007-06-18 10:48:04 -07002861{
2862 int ret, orig_credits = handle->h_buffer_credits;
2863 struct ocfs2_path *tmp_path = NULL, *restart_path = NULL;
2864 struct ocfs2_extent_block *eb;
2865 struct ocfs2_extent_list *el;
2866
2867 el = path_leaf_el(path);
2868 if (!ocfs2_is_empty_extent(&el->l_recs[0]))
2869 return 0;
2870
2871 if (path->p_tree_depth == 0) {
2872rightmost_no_delete:
2873 /*
Tao Mae7d4cb62008-08-18 17:38:44 +08002874 * Inline extents. This is trivially handled, so do
Mark Fasheh328d5752007-06-18 10:48:04 -07002875 * it up front.
2876 */
2877 ret = ocfs2_rotate_rightmost_leaf_left(inode, handle,
2878 path_leaf_bh(path),
2879 path_leaf_el(path));
2880 if (ret)
2881 mlog_errno(ret);
2882 goto out;
2883 }
2884
2885 /*
2886 * Handle rightmost branch now. There's several cases:
2887 * 1) simple rotation leaving records in there. That's trivial.
2888 * 2) rotation requiring a branch delete - there's no more
2889 * records left. Two cases of this:
2890 * a) There are branches to the left.
2891 * b) This is also the leftmost (the only) branch.
2892 *
2893 * 1) is handled via ocfs2_rotate_rightmost_leaf_left()
2894 * 2a) we need the left branch so that we can update it with the unlink
2895 * 2b) we need to bring the inode back to inline extents.
2896 */
2897
2898 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
2899 el = &eb->h_list;
2900 if (eb->h_next_leaf_blk == 0) {
2901 /*
2902 * This gets a bit tricky if we're going to delete the
2903 * rightmost path. Get the other cases out of the way
2904 * 1st.
2905 */
2906 if (le16_to_cpu(el->l_next_free_rec) > 1)
2907 goto rightmost_no_delete;
2908
2909 if (le16_to_cpu(el->l_next_free_rec) == 0) {
2910 ret = -EIO;
2911 ocfs2_error(inode->i_sb,
2912 "Inode %llu has empty extent block at %llu",
2913 (unsigned long long)OCFS2_I(inode)->ip_blkno,
2914 (unsigned long long)le64_to_cpu(eb->h_blkno));
2915 goto out;
2916 }
2917
2918 /*
2919 * XXX: The caller can not trust "path" any more after
2920 * this as it will have been deleted. What do we do?
2921 *
2922 * In theory the rotate-for-merge code will never get
2923 * here because it'll always ask for a rotate in a
2924 * nonempty list.
2925 */
2926
2927 ret = ocfs2_remove_rightmost_path(inode, handle, path,
Tao Mae7d4cb62008-08-18 17:38:44 +08002928 dealloc, et);
Mark Fasheh328d5752007-06-18 10:48:04 -07002929 if (ret)
2930 mlog_errno(ret);
2931 goto out;
2932 }
2933
2934 /*
2935 * Now we can loop, remembering the path we get from -EAGAIN
2936 * and restarting from there.
2937 */
2938try_rotate:
2939 ret = __ocfs2_rotate_tree_left(inode, handle, orig_credits, path,
Tao Mae7d4cb62008-08-18 17:38:44 +08002940 dealloc, &restart_path, et);
Mark Fasheh328d5752007-06-18 10:48:04 -07002941 if (ret && ret != -EAGAIN) {
2942 mlog_errno(ret);
2943 goto out;
2944 }
2945
2946 while (ret == -EAGAIN) {
2947 tmp_path = restart_path;
2948 restart_path = NULL;
2949
2950 ret = __ocfs2_rotate_tree_left(inode, handle, orig_credits,
2951 tmp_path, dealloc,
Tao Mae7d4cb62008-08-18 17:38:44 +08002952 &restart_path, et);
Mark Fasheh328d5752007-06-18 10:48:04 -07002953 if (ret && ret != -EAGAIN) {
2954 mlog_errno(ret);
2955 goto out;
2956 }
2957
2958 ocfs2_free_path(tmp_path);
2959 tmp_path = NULL;
2960
2961 if (ret == 0)
2962 goto try_rotate;
2963 }
2964
2965out:
2966 ocfs2_free_path(tmp_path);
2967 ocfs2_free_path(restart_path);
2968 return ret;
2969}
2970
2971static void ocfs2_cleanup_merge(struct ocfs2_extent_list *el,
2972 int index)
2973{
2974 struct ocfs2_extent_rec *rec = &el->l_recs[index];
2975 unsigned int size;
2976
2977 if (rec->e_leaf_clusters == 0) {
2978 /*
2979 * We consumed all of the merged-from record. An empty
2980 * extent cannot exist anywhere but the 1st array
2981 * position, so move things over if the merged-from
2982 * record doesn't occupy that position.
2983 *
2984 * This creates a new empty extent so the caller
2985 * should be smart enough to have removed any existing
2986 * ones.
2987 */
2988 if (index > 0) {
2989 BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0]));
2990 size = index * sizeof(struct ocfs2_extent_rec);
2991 memmove(&el->l_recs[1], &el->l_recs[0], size);
2992 }
2993
2994 /*
2995 * Always memset - the caller doesn't check whether it
2996 * created an empty extent, so there could be junk in
2997 * the other fields.
2998 */
2999 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
3000 }
3001}
3002
Tao Ma677b9752008-01-30 14:21:05 +08003003static int ocfs2_get_right_path(struct inode *inode,
3004 struct ocfs2_path *left_path,
3005 struct ocfs2_path **ret_right_path)
Mark Fasheh328d5752007-06-18 10:48:04 -07003006{
3007 int ret;
Tao Ma677b9752008-01-30 14:21:05 +08003008 u32 right_cpos;
3009 struct ocfs2_path *right_path = NULL;
3010 struct ocfs2_extent_list *left_el;
3011
3012 *ret_right_path = NULL;
3013
3014 /* This function shouldn't be called for non-trees. */
3015 BUG_ON(left_path->p_tree_depth == 0);
3016
3017 left_el = path_leaf_el(left_path);
3018 BUG_ON(left_el->l_next_free_rec != left_el->l_count);
3019
3020 ret = ocfs2_find_cpos_for_right_leaf(inode->i_sb, left_path,
3021 &right_cpos);
3022 if (ret) {
3023 mlog_errno(ret);
3024 goto out;
3025 }
3026
3027 /* This function shouldn't be called for the rightmost leaf. */
3028 BUG_ON(right_cpos == 0);
3029
3030 right_path = ocfs2_new_path(path_root_bh(left_path),
3031 path_root_el(left_path));
3032 if (!right_path) {
3033 ret = -ENOMEM;
3034 mlog_errno(ret);
3035 goto out;
3036 }
3037
3038 ret = ocfs2_find_path(inode, right_path, right_cpos);
3039 if (ret) {
3040 mlog_errno(ret);
3041 goto out;
3042 }
3043
3044 *ret_right_path = right_path;
3045out:
3046 if (ret)
3047 ocfs2_free_path(right_path);
3048 return ret;
3049}
3050
3051/*
3052 * Remove split_rec clusters from the record at index and merge them
3053 * onto the beginning of the record "next" to it.
3054 * For index < l_count - 1, the next means the extent rec at index + 1.
3055 * For index == l_count - 1, the "next" means the 1st extent rec of the
3056 * next extent block.
3057 */
3058static int ocfs2_merge_rec_right(struct inode *inode,
3059 struct ocfs2_path *left_path,
3060 handle_t *handle,
3061 struct ocfs2_extent_rec *split_rec,
3062 int index)
3063{
3064 int ret, next_free, i;
Mark Fasheh328d5752007-06-18 10:48:04 -07003065 unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters);
3066 struct ocfs2_extent_rec *left_rec;
3067 struct ocfs2_extent_rec *right_rec;
Tao Ma677b9752008-01-30 14:21:05 +08003068 struct ocfs2_extent_list *right_el;
3069 struct ocfs2_path *right_path = NULL;
3070 int subtree_index = 0;
3071 struct ocfs2_extent_list *el = path_leaf_el(left_path);
3072 struct buffer_head *bh = path_leaf_bh(left_path);
3073 struct buffer_head *root_bh = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07003074
3075 BUG_ON(index >= le16_to_cpu(el->l_next_free_rec));
Mark Fasheh328d5752007-06-18 10:48:04 -07003076 left_rec = &el->l_recs[index];
Tao Ma677b9752008-01-30 14:21:05 +08003077
Al Viro9d8df6a2008-05-21 06:32:11 +01003078 if (index == le16_to_cpu(el->l_next_free_rec) - 1 &&
Tao Ma677b9752008-01-30 14:21:05 +08003079 le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count)) {
3080 /* we meet with a cross extent block merge. */
3081 ret = ocfs2_get_right_path(inode, left_path, &right_path);
3082 if (ret) {
3083 mlog_errno(ret);
3084 goto out;
3085 }
3086
3087 right_el = path_leaf_el(right_path);
3088 next_free = le16_to_cpu(right_el->l_next_free_rec);
3089 BUG_ON(next_free <= 0);
3090 right_rec = &right_el->l_recs[0];
3091 if (ocfs2_is_empty_extent(right_rec)) {
Al Viro9d8df6a2008-05-21 06:32:11 +01003092 BUG_ON(next_free <= 1);
Tao Ma677b9752008-01-30 14:21:05 +08003093 right_rec = &right_el->l_recs[1];
3094 }
3095
3096 BUG_ON(le32_to_cpu(left_rec->e_cpos) +
3097 le16_to_cpu(left_rec->e_leaf_clusters) !=
3098 le32_to_cpu(right_rec->e_cpos));
3099
3100 subtree_index = ocfs2_find_subtree_root(inode,
3101 left_path, right_path);
3102
3103 ret = ocfs2_extend_rotate_transaction(handle, subtree_index,
3104 handle->h_buffer_credits,
3105 right_path);
3106 if (ret) {
3107 mlog_errno(ret);
3108 goto out;
3109 }
3110
3111 root_bh = left_path->p_node[subtree_index].bh;
3112 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
3113
3114 ret = ocfs2_journal_access(handle, inode, root_bh,
3115 OCFS2_JOURNAL_ACCESS_WRITE);
3116 if (ret) {
3117 mlog_errno(ret);
3118 goto out;
3119 }
3120
3121 for (i = subtree_index + 1;
3122 i < path_num_items(right_path); i++) {
3123 ret = ocfs2_journal_access(handle, inode,
3124 right_path->p_node[i].bh,
3125 OCFS2_JOURNAL_ACCESS_WRITE);
3126 if (ret) {
3127 mlog_errno(ret);
3128 goto out;
3129 }
3130
3131 ret = ocfs2_journal_access(handle, inode,
3132 left_path->p_node[i].bh,
3133 OCFS2_JOURNAL_ACCESS_WRITE);
3134 if (ret) {
3135 mlog_errno(ret);
3136 goto out;
3137 }
3138 }
3139
3140 } else {
3141 BUG_ON(index == le16_to_cpu(el->l_next_free_rec) - 1);
3142 right_rec = &el->l_recs[index + 1];
3143 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003144
3145 ret = ocfs2_journal_access(handle, inode, bh,
3146 OCFS2_JOURNAL_ACCESS_WRITE);
3147 if (ret) {
3148 mlog_errno(ret);
3149 goto out;
3150 }
3151
3152 le16_add_cpu(&left_rec->e_leaf_clusters, -split_clusters);
3153
3154 le32_add_cpu(&right_rec->e_cpos, -split_clusters);
3155 le64_add_cpu(&right_rec->e_blkno,
3156 -ocfs2_clusters_to_blocks(inode->i_sb, split_clusters));
3157 le16_add_cpu(&right_rec->e_leaf_clusters, split_clusters);
3158
3159 ocfs2_cleanup_merge(el, index);
3160
3161 ret = ocfs2_journal_dirty(handle, bh);
3162 if (ret)
3163 mlog_errno(ret);
3164
Tao Ma677b9752008-01-30 14:21:05 +08003165 if (right_path) {
3166 ret = ocfs2_journal_dirty(handle, path_leaf_bh(right_path));
3167 if (ret)
3168 mlog_errno(ret);
3169
3170 ocfs2_complete_edge_insert(inode, handle, left_path,
3171 right_path, subtree_index);
3172 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003173out:
Tao Ma677b9752008-01-30 14:21:05 +08003174 if (right_path)
3175 ocfs2_free_path(right_path);
3176 return ret;
3177}
3178
3179static int ocfs2_get_left_path(struct inode *inode,
3180 struct ocfs2_path *right_path,
3181 struct ocfs2_path **ret_left_path)
3182{
3183 int ret;
3184 u32 left_cpos;
3185 struct ocfs2_path *left_path = NULL;
3186
3187 *ret_left_path = NULL;
3188
3189 /* This function shouldn't be called for non-trees. */
3190 BUG_ON(right_path->p_tree_depth == 0);
3191
3192 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb,
3193 right_path, &left_cpos);
3194 if (ret) {
3195 mlog_errno(ret);
3196 goto out;
3197 }
3198
3199 /* This function shouldn't be called for the leftmost leaf. */
3200 BUG_ON(left_cpos == 0);
3201
3202 left_path = ocfs2_new_path(path_root_bh(right_path),
3203 path_root_el(right_path));
3204 if (!left_path) {
3205 ret = -ENOMEM;
3206 mlog_errno(ret);
3207 goto out;
3208 }
3209
3210 ret = ocfs2_find_path(inode, left_path, left_cpos);
3211 if (ret) {
3212 mlog_errno(ret);
3213 goto out;
3214 }
3215
3216 *ret_left_path = left_path;
3217out:
3218 if (ret)
3219 ocfs2_free_path(left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003220 return ret;
3221}
3222
3223/*
3224 * Remove split_rec clusters from the record at index and merge them
Tao Ma677b9752008-01-30 14:21:05 +08003225 * onto the tail of the record "before" it.
3226 * For index > 0, the "before" means the extent rec at index - 1.
3227 *
3228 * For index == 0, the "before" means the last record of the previous
3229 * extent block. And there is also a situation that we may need to
3230 * remove the rightmost leaf extent block in the right_path and change
3231 * the right path to indicate the new rightmost path.
Mark Fasheh328d5752007-06-18 10:48:04 -07003232 */
Tao Ma677b9752008-01-30 14:21:05 +08003233static int ocfs2_merge_rec_left(struct inode *inode,
3234 struct ocfs2_path *right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003235 handle_t *handle,
3236 struct ocfs2_extent_rec *split_rec,
Tao Ma677b9752008-01-30 14:21:05 +08003237 struct ocfs2_cached_dealloc_ctxt *dealloc,
Tao Mae7d4cb62008-08-18 17:38:44 +08003238 struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003239 int index)
Mark Fasheh328d5752007-06-18 10:48:04 -07003240{
Tao Ma677b9752008-01-30 14:21:05 +08003241 int ret, i, subtree_index = 0, has_empty_extent = 0;
Mark Fasheh328d5752007-06-18 10:48:04 -07003242 unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters);
3243 struct ocfs2_extent_rec *left_rec;
3244 struct ocfs2_extent_rec *right_rec;
Tao Ma677b9752008-01-30 14:21:05 +08003245 struct ocfs2_extent_list *el = path_leaf_el(right_path);
3246 struct buffer_head *bh = path_leaf_bh(right_path);
3247 struct buffer_head *root_bh = NULL;
3248 struct ocfs2_path *left_path = NULL;
3249 struct ocfs2_extent_list *left_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07003250
Tao Ma677b9752008-01-30 14:21:05 +08003251 BUG_ON(index < 0);
Mark Fasheh328d5752007-06-18 10:48:04 -07003252
Mark Fasheh328d5752007-06-18 10:48:04 -07003253 right_rec = &el->l_recs[index];
Tao Ma677b9752008-01-30 14:21:05 +08003254 if (index == 0) {
3255 /* we meet with a cross extent block merge. */
3256 ret = ocfs2_get_left_path(inode, right_path, &left_path);
3257 if (ret) {
3258 mlog_errno(ret);
3259 goto out;
3260 }
3261
3262 left_el = path_leaf_el(left_path);
3263 BUG_ON(le16_to_cpu(left_el->l_next_free_rec) !=
3264 le16_to_cpu(left_el->l_count));
3265
3266 left_rec = &left_el->l_recs[
3267 le16_to_cpu(left_el->l_next_free_rec) - 1];
3268 BUG_ON(le32_to_cpu(left_rec->e_cpos) +
3269 le16_to_cpu(left_rec->e_leaf_clusters) !=
3270 le32_to_cpu(split_rec->e_cpos));
3271
3272 subtree_index = ocfs2_find_subtree_root(inode,
3273 left_path, right_path);
3274
3275 ret = ocfs2_extend_rotate_transaction(handle, subtree_index,
3276 handle->h_buffer_credits,
3277 left_path);
3278 if (ret) {
3279 mlog_errno(ret);
3280 goto out;
3281 }
3282
3283 root_bh = left_path->p_node[subtree_index].bh;
3284 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
3285
3286 ret = ocfs2_journal_access(handle, inode, root_bh,
3287 OCFS2_JOURNAL_ACCESS_WRITE);
3288 if (ret) {
3289 mlog_errno(ret);
3290 goto out;
3291 }
3292
3293 for (i = subtree_index + 1;
3294 i < path_num_items(right_path); i++) {
3295 ret = ocfs2_journal_access(handle, inode,
3296 right_path->p_node[i].bh,
3297 OCFS2_JOURNAL_ACCESS_WRITE);
3298 if (ret) {
3299 mlog_errno(ret);
3300 goto out;
3301 }
3302
3303 ret = ocfs2_journal_access(handle, inode,
3304 left_path->p_node[i].bh,
3305 OCFS2_JOURNAL_ACCESS_WRITE);
3306 if (ret) {
3307 mlog_errno(ret);
3308 goto out;
3309 }
3310 }
3311 } else {
3312 left_rec = &el->l_recs[index - 1];
3313 if (ocfs2_is_empty_extent(&el->l_recs[0]))
3314 has_empty_extent = 1;
3315 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003316
3317 ret = ocfs2_journal_access(handle, inode, bh,
3318 OCFS2_JOURNAL_ACCESS_WRITE);
3319 if (ret) {
3320 mlog_errno(ret);
3321 goto out;
3322 }
3323
3324 if (has_empty_extent && index == 1) {
3325 /*
3326 * The easy case - we can just plop the record right in.
3327 */
3328 *left_rec = *split_rec;
3329
3330 has_empty_extent = 0;
Tao Ma677b9752008-01-30 14:21:05 +08003331 } else
Mark Fasheh328d5752007-06-18 10:48:04 -07003332 le16_add_cpu(&left_rec->e_leaf_clusters, split_clusters);
Mark Fasheh328d5752007-06-18 10:48:04 -07003333
3334 le32_add_cpu(&right_rec->e_cpos, split_clusters);
3335 le64_add_cpu(&right_rec->e_blkno,
3336 ocfs2_clusters_to_blocks(inode->i_sb, split_clusters));
3337 le16_add_cpu(&right_rec->e_leaf_clusters, -split_clusters);
3338
3339 ocfs2_cleanup_merge(el, index);
3340
3341 ret = ocfs2_journal_dirty(handle, bh);
3342 if (ret)
3343 mlog_errno(ret);
3344
Tao Ma677b9752008-01-30 14:21:05 +08003345 if (left_path) {
3346 ret = ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
3347 if (ret)
3348 mlog_errno(ret);
3349
3350 /*
3351 * In the situation that the right_rec is empty and the extent
3352 * block is empty also, ocfs2_complete_edge_insert can't handle
3353 * it and we need to delete the right extent block.
3354 */
3355 if (le16_to_cpu(right_rec->e_leaf_clusters) == 0 &&
3356 le16_to_cpu(el->l_next_free_rec) == 1) {
3357
3358 ret = ocfs2_remove_rightmost_path(inode, handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08003359 right_path,
3360 dealloc, et);
Tao Ma677b9752008-01-30 14:21:05 +08003361 if (ret) {
3362 mlog_errno(ret);
3363 goto out;
3364 }
3365
3366 /* Now the rightmost extent block has been deleted.
3367 * So we use the new rightmost path.
3368 */
3369 ocfs2_mv_path(right_path, left_path);
3370 left_path = NULL;
3371 } else
3372 ocfs2_complete_edge_insert(inode, handle, left_path,
3373 right_path, subtree_index);
3374 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003375out:
Tao Ma677b9752008-01-30 14:21:05 +08003376 if (left_path)
3377 ocfs2_free_path(left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003378 return ret;
3379}
3380
3381static int ocfs2_try_to_merge_extent(struct inode *inode,
3382 handle_t *handle,
Tao Ma677b9752008-01-30 14:21:05 +08003383 struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003384 int split_index,
3385 struct ocfs2_extent_rec *split_rec,
3386 struct ocfs2_cached_dealloc_ctxt *dealloc,
Tao Mae7d4cb62008-08-18 17:38:44 +08003387 struct ocfs2_merge_ctxt *ctxt,
3388 struct ocfs2_extent_tree *et)
Mark Fasheh328d5752007-06-18 10:48:04 -07003389
3390{
Tao Mao518d7262007-08-28 17:25:35 -07003391 int ret = 0;
Tao Ma677b9752008-01-30 14:21:05 +08003392 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003393 struct ocfs2_extent_rec *rec = &el->l_recs[split_index];
3394
3395 BUG_ON(ctxt->c_contig_type == CONTIG_NONE);
3396
Tao Mao518d7262007-08-28 17:25:35 -07003397 if (ctxt->c_split_covers_rec && ctxt->c_has_empty_extent) {
3398 /*
3399 * The merge code will need to create an empty
3400 * extent to take the place of the newly
3401 * emptied slot. Remove any pre-existing empty
3402 * extents - having more than one in a leaf is
3403 * illegal.
3404 */
Tao Ma677b9752008-01-30 14:21:05 +08003405 ret = ocfs2_rotate_tree_left(inode, handle, path,
Tao Mae7d4cb62008-08-18 17:38:44 +08003406 dealloc, et);
Tao Mao518d7262007-08-28 17:25:35 -07003407 if (ret) {
3408 mlog_errno(ret);
3409 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07003410 }
Tao Mao518d7262007-08-28 17:25:35 -07003411 split_index--;
3412 rec = &el->l_recs[split_index];
Mark Fasheh328d5752007-06-18 10:48:04 -07003413 }
3414
3415 if (ctxt->c_contig_type == CONTIG_LEFTRIGHT) {
3416 /*
3417 * Left-right contig implies this.
3418 */
3419 BUG_ON(!ctxt->c_split_covers_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07003420
3421 /*
3422 * Since the leftright insert always covers the entire
3423 * extent, this call will delete the insert record
3424 * entirely, resulting in an empty extent record added to
3425 * the extent block.
3426 *
3427 * Since the adding of an empty extent shifts
3428 * everything back to the right, there's no need to
3429 * update split_index here.
Tao Ma677b9752008-01-30 14:21:05 +08003430 *
3431 * When the split_index is zero, we need to merge it to the
3432 * prevoius extent block. It is more efficient and easier
3433 * if we do merge_right first and merge_left later.
Mark Fasheh328d5752007-06-18 10:48:04 -07003434 */
Tao Ma677b9752008-01-30 14:21:05 +08003435 ret = ocfs2_merge_rec_right(inode, path,
3436 handle, split_rec,
3437 split_index);
Mark Fasheh328d5752007-06-18 10:48:04 -07003438 if (ret) {
3439 mlog_errno(ret);
3440 goto out;
3441 }
3442
3443 /*
3444 * We can only get this from logic error above.
3445 */
3446 BUG_ON(!ocfs2_is_empty_extent(&el->l_recs[0]));
3447
Tao Ma677b9752008-01-30 14:21:05 +08003448 /* The merge left us with an empty extent, remove it. */
Tao Mae7d4cb62008-08-18 17:38:44 +08003449 ret = ocfs2_rotate_tree_left(inode, handle, path,
3450 dealloc, et);
Mark Fasheh328d5752007-06-18 10:48:04 -07003451 if (ret) {
3452 mlog_errno(ret);
3453 goto out;
3454 }
Tao Ma677b9752008-01-30 14:21:05 +08003455
Mark Fasheh328d5752007-06-18 10:48:04 -07003456 rec = &el->l_recs[split_index];
3457
3458 /*
3459 * Note that we don't pass split_rec here on purpose -
Tao Ma677b9752008-01-30 14:21:05 +08003460 * we've merged it into the rec already.
Mark Fasheh328d5752007-06-18 10:48:04 -07003461 */
Tao Ma677b9752008-01-30 14:21:05 +08003462 ret = ocfs2_merge_rec_left(inode, path,
3463 handle, rec,
Tao Mae7d4cb62008-08-18 17:38:44 +08003464 dealloc, et,
Tao Ma677b9752008-01-30 14:21:05 +08003465 split_index);
3466
Mark Fasheh328d5752007-06-18 10:48:04 -07003467 if (ret) {
3468 mlog_errno(ret);
3469 goto out;
3470 }
3471
Tao Ma677b9752008-01-30 14:21:05 +08003472 ret = ocfs2_rotate_tree_left(inode, handle, path,
Tao Mae7d4cb62008-08-18 17:38:44 +08003473 dealloc, et);
Mark Fasheh328d5752007-06-18 10:48:04 -07003474 /*
3475 * Error from this last rotate is not critical, so
3476 * print but don't bubble it up.
3477 */
3478 if (ret)
3479 mlog_errno(ret);
3480 ret = 0;
3481 } else {
3482 /*
3483 * Merge a record to the left or right.
3484 *
3485 * 'contig_type' is relative to the existing record,
3486 * so for example, if we're "right contig", it's to
3487 * the record on the left (hence the left merge).
3488 */
3489 if (ctxt->c_contig_type == CONTIG_RIGHT) {
3490 ret = ocfs2_merge_rec_left(inode,
Tao Ma677b9752008-01-30 14:21:05 +08003491 path,
3492 handle, split_rec,
Tao Mae7d4cb62008-08-18 17:38:44 +08003493 dealloc, et,
Mark Fasheh328d5752007-06-18 10:48:04 -07003494 split_index);
3495 if (ret) {
3496 mlog_errno(ret);
3497 goto out;
3498 }
3499 } else {
3500 ret = ocfs2_merge_rec_right(inode,
Tao Ma677b9752008-01-30 14:21:05 +08003501 path,
3502 handle, split_rec,
Mark Fasheh328d5752007-06-18 10:48:04 -07003503 split_index);
3504 if (ret) {
3505 mlog_errno(ret);
3506 goto out;
3507 }
3508 }
3509
3510 if (ctxt->c_split_covers_rec) {
3511 /*
3512 * The merge may have left an empty extent in
3513 * our leaf. Try to rotate it away.
3514 */
Tao Ma677b9752008-01-30 14:21:05 +08003515 ret = ocfs2_rotate_tree_left(inode, handle, path,
Tao Mae7d4cb62008-08-18 17:38:44 +08003516 dealloc, et);
Mark Fasheh328d5752007-06-18 10:48:04 -07003517 if (ret)
3518 mlog_errno(ret);
3519 ret = 0;
3520 }
3521 }
3522
3523out:
3524 return ret;
3525}
3526
3527static void ocfs2_subtract_from_rec(struct super_block *sb,
3528 enum ocfs2_split_type split,
3529 struct ocfs2_extent_rec *rec,
3530 struct ocfs2_extent_rec *split_rec)
3531{
3532 u64 len_blocks;
3533
3534 len_blocks = ocfs2_clusters_to_blocks(sb,
3535 le16_to_cpu(split_rec->e_leaf_clusters));
3536
3537 if (split == SPLIT_LEFT) {
3538 /*
3539 * Region is on the left edge of the existing
3540 * record.
3541 */
3542 le32_add_cpu(&rec->e_cpos,
3543 le16_to_cpu(split_rec->e_leaf_clusters));
3544 le64_add_cpu(&rec->e_blkno, len_blocks);
3545 le16_add_cpu(&rec->e_leaf_clusters,
3546 -le16_to_cpu(split_rec->e_leaf_clusters));
3547 } else {
3548 /*
3549 * Region is on the right edge of the existing
3550 * record.
3551 */
3552 le16_add_cpu(&rec->e_leaf_clusters,
3553 -le16_to_cpu(split_rec->e_leaf_clusters));
3554 }
3555}
3556
Mark Fashehdcd05382007-01-16 11:32:23 -08003557/*
3558 * Do the final bits of extent record insertion at the target leaf
3559 * list. If this leaf is part of an allocation tree, it is assumed
3560 * that the tree above has been prepared.
3561 */
3562static void ocfs2_insert_at_leaf(struct ocfs2_extent_rec *insert_rec,
3563 struct ocfs2_extent_list *el,
3564 struct ocfs2_insert_type *insert,
3565 struct inode *inode)
3566{
3567 int i = insert->ins_contig_index;
3568 unsigned int range;
3569 struct ocfs2_extent_rec *rec;
3570
Mark Fashehe48edee2007-03-07 16:46:57 -08003571 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
Mark Fashehdcd05382007-01-16 11:32:23 -08003572
Mark Fasheh328d5752007-06-18 10:48:04 -07003573 if (insert->ins_split != SPLIT_NONE) {
3574 i = ocfs2_search_extent_list(el, le32_to_cpu(insert_rec->e_cpos));
3575 BUG_ON(i == -1);
3576 rec = &el->l_recs[i];
3577 ocfs2_subtract_from_rec(inode->i_sb, insert->ins_split, rec,
3578 insert_rec);
3579 goto rotate;
3580 }
3581
Mark Fashehdcd05382007-01-16 11:32:23 -08003582 /*
3583 * Contiguous insert - either left or right.
3584 */
3585 if (insert->ins_contig != CONTIG_NONE) {
3586 rec = &el->l_recs[i];
3587 if (insert->ins_contig == CONTIG_LEFT) {
3588 rec->e_blkno = insert_rec->e_blkno;
3589 rec->e_cpos = insert_rec->e_cpos;
3590 }
Mark Fashehe48edee2007-03-07 16:46:57 -08003591 le16_add_cpu(&rec->e_leaf_clusters,
3592 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08003593 return;
3594 }
3595
3596 /*
3597 * Handle insert into an empty leaf.
3598 */
3599 if (le16_to_cpu(el->l_next_free_rec) == 0 ||
3600 ((le16_to_cpu(el->l_next_free_rec) == 1) &&
3601 ocfs2_is_empty_extent(&el->l_recs[0]))) {
3602 el->l_recs[0] = *insert_rec;
3603 el->l_next_free_rec = cpu_to_le16(1);
3604 return;
3605 }
3606
3607 /*
3608 * Appending insert.
3609 */
3610 if (insert->ins_appending == APPEND_TAIL) {
3611 i = le16_to_cpu(el->l_next_free_rec) - 1;
3612 rec = &el->l_recs[i];
Mark Fashehe48edee2007-03-07 16:46:57 -08003613 range = le32_to_cpu(rec->e_cpos)
3614 + le16_to_cpu(rec->e_leaf_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08003615 BUG_ON(le32_to_cpu(insert_rec->e_cpos) < range);
3616
3617 mlog_bug_on_msg(le16_to_cpu(el->l_next_free_rec) >=
3618 le16_to_cpu(el->l_count),
3619 "inode %lu, depth %u, count %u, next free %u, "
3620 "rec.cpos %u, rec.clusters %u, "
3621 "insert.cpos %u, insert.clusters %u\n",
3622 inode->i_ino,
3623 le16_to_cpu(el->l_tree_depth),
3624 le16_to_cpu(el->l_count),
3625 le16_to_cpu(el->l_next_free_rec),
3626 le32_to_cpu(el->l_recs[i].e_cpos),
Mark Fashehe48edee2007-03-07 16:46:57 -08003627 le16_to_cpu(el->l_recs[i].e_leaf_clusters),
Mark Fashehdcd05382007-01-16 11:32:23 -08003628 le32_to_cpu(insert_rec->e_cpos),
Mark Fashehe48edee2007-03-07 16:46:57 -08003629 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08003630 i++;
3631 el->l_recs[i] = *insert_rec;
3632 le16_add_cpu(&el->l_next_free_rec, 1);
3633 return;
3634 }
3635
Mark Fasheh328d5752007-06-18 10:48:04 -07003636rotate:
Mark Fashehdcd05382007-01-16 11:32:23 -08003637 /*
3638 * Ok, we have to rotate.
3639 *
3640 * At this point, it is safe to assume that inserting into an
3641 * empty leaf and appending to a leaf have both been handled
3642 * above.
3643 *
3644 * This leaf needs to have space, either by the empty 1st
3645 * extent record, or by virtue of an l_next_rec < l_count.
3646 */
3647 ocfs2_rotate_leaf(el, insert_rec);
3648}
3649
Mark Fasheh328d5752007-06-18 10:48:04 -07003650static void ocfs2_adjust_rightmost_records(struct inode *inode,
3651 handle_t *handle,
3652 struct ocfs2_path *path,
3653 struct ocfs2_extent_rec *insert_rec)
3654{
3655 int ret, i, next_free;
3656 struct buffer_head *bh;
3657 struct ocfs2_extent_list *el;
3658 struct ocfs2_extent_rec *rec;
3659
3660 /*
3661 * Update everything except the leaf block.
3662 */
3663 for (i = 0; i < path->p_tree_depth; i++) {
3664 bh = path->p_node[i].bh;
3665 el = path->p_node[i].el;
3666
3667 next_free = le16_to_cpu(el->l_next_free_rec);
3668 if (next_free == 0) {
3669 ocfs2_error(inode->i_sb,
3670 "Dinode %llu has a bad extent list",
3671 (unsigned long long)OCFS2_I(inode)->ip_blkno);
3672 ret = -EIO;
3673 return;
3674 }
3675
3676 rec = &el->l_recs[next_free - 1];
3677
3678 rec->e_int_clusters = insert_rec->e_cpos;
3679 le32_add_cpu(&rec->e_int_clusters,
3680 le16_to_cpu(insert_rec->e_leaf_clusters));
3681 le32_add_cpu(&rec->e_int_clusters,
3682 -le32_to_cpu(rec->e_cpos));
3683
3684 ret = ocfs2_journal_dirty(handle, bh);
3685 if (ret)
3686 mlog_errno(ret);
3687
3688 }
3689}
3690
Mark Fashehdcd05382007-01-16 11:32:23 -08003691static int ocfs2_append_rec_to_path(struct inode *inode, handle_t *handle,
3692 struct ocfs2_extent_rec *insert_rec,
3693 struct ocfs2_path *right_path,
3694 struct ocfs2_path **ret_left_path)
3695{
Mark Fasheh328d5752007-06-18 10:48:04 -07003696 int ret, next_free;
Mark Fashehdcd05382007-01-16 11:32:23 -08003697 struct ocfs2_extent_list *el;
3698 struct ocfs2_path *left_path = NULL;
3699
3700 *ret_left_path = NULL;
3701
3702 /*
Mark Fashehe48edee2007-03-07 16:46:57 -08003703 * This shouldn't happen for non-trees. The extent rec cluster
3704 * count manipulation below only works for interior nodes.
3705 */
3706 BUG_ON(right_path->p_tree_depth == 0);
3707
3708 /*
Mark Fashehdcd05382007-01-16 11:32:23 -08003709 * If our appending insert is at the leftmost edge of a leaf,
3710 * then we might need to update the rightmost records of the
3711 * neighboring path.
3712 */
3713 el = path_leaf_el(right_path);
3714 next_free = le16_to_cpu(el->l_next_free_rec);
3715 if (next_free == 0 ||
3716 (next_free == 1 && ocfs2_is_empty_extent(&el->l_recs[0]))) {
3717 u32 left_cpos;
3718
3719 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, right_path,
3720 &left_cpos);
3721 if (ret) {
3722 mlog_errno(ret);
3723 goto out;
3724 }
3725
3726 mlog(0, "Append may need a left path update. cpos: %u, "
3727 "left_cpos: %u\n", le32_to_cpu(insert_rec->e_cpos),
3728 left_cpos);
3729
3730 /*
3731 * No need to worry if the append is already in the
3732 * leftmost leaf.
3733 */
3734 if (left_cpos) {
3735 left_path = ocfs2_new_path(path_root_bh(right_path),
3736 path_root_el(right_path));
3737 if (!left_path) {
3738 ret = -ENOMEM;
3739 mlog_errno(ret);
3740 goto out;
3741 }
3742
3743 ret = ocfs2_find_path(inode, left_path, left_cpos);
3744 if (ret) {
3745 mlog_errno(ret);
3746 goto out;
3747 }
3748
3749 /*
3750 * ocfs2_insert_path() will pass the left_path to the
3751 * journal for us.
3752 */
3753 }
3754 }
3755
3756 ret = ocfs2_journal_access_path(inode, handle, right_path);
3757 if (ret) {
3758 mlog_errno(ret);
3759 goto out;
3760 }
3761
Mark Fasheh328d5752007-06-18 10:48:04 -07003762 ocfs2_adjust_rightmost_records(inode, handle, right_path, insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08003763
3764 *ret_left_path = left_path;
3765 ret = 0;
3766out:
3767 if (ret != 0)
3768 ocfs2_free_path(left_path);
3769
3770 return ret;
3771}
3772
Mark Fasheh328d5752007-06-18 10:48:04 -07003773static void ocfs2_split_record(struct inode *inode,
3774 struct ocfs2_path *left_path,
3775 struct ocfs2_path *right_path,
3776 struct ocfs2_extent_rec *split_rec,
3777 enum ocfs2_split_type split)
3778{
3779 int index;
3780 u32 cpos = le32_to_cpu(split_rec->e_cpos);
3781 struct ocfs2_extent_list *left_el = NULL, *right_el, *insert_el, *el;
3782 struct ocfs2_extent_rec *rec, *tmprec;
3783
3784 right_el = path_leaf_el(right_path);;
3785 if (left_path)
3786 left_el = path_leaf_el(left_path);
3787
3788 el = right_el;
3789 insert_el = right_el;
3790 index = ocfs2_search_extent_list(el, cpos);
3791 if (index != -1) {
3792 if (index == 0 && left_path) {
3793 BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0]));
3794
3795 /*
3796 * This typically means that the record
3797 * started in the left path but moved to the
3798 * right as a result of rotation. We either
3799 * move the existing record to the left, or we
3800 * do the later insert there.
3801 *
3802 * In this case, the left path should always
3803 * exist as the rotate code will have passed
3804 * it back for a post-insert update.
3805 */
3806
3807 if (split == SPLIT_LEFT) {
3808 /*
3809 * It's a left split. Since we know
3810 * that the rotate code gave us an
3811 * empty extent in the left path, we
3812 * can just do the insert there.
3813 */
3814 insert_el = left_el;
3815 } else {
3816 /*
3817 * Right split - we have to move the
3818 * existing record over to the left
3819 * leaf. The insert will be into the
3820 * newly created empty extent in the
3821 * right leaf.
3822 */
3823 tmprec = &right_el->l_recs[index];
3824 ocfs2_rotate_leaf(left_el, tmprec);
3825 el = left_el;
3826
3827 memset(tmprec, 0, sizeof(*tmprec));
3828 index = ocfs2_search_extent_list(left_el, cpos);
3829 BUG_ON(index == -1);
3830 }
3831 }
3832 } else {
3833 BUG_ON(!left_path);
3834 BUG_ON(!ocfs2_is_empty_extent(&left_el->l_recs[0]));
3835 /*
3836 * Left path is easy - we can just allow the insert to
3837 * happen.
3838 */
3839 el = left_el;
3840 insert_el = left_el;
3841 index = ocfs2_search_extent_list(el, cpos);
3842 BUG_ON(index == -1);
3843 }
3844
3845 rec = &el->l_recs[index];
3846 ocfs2_subtract_from_rec(inode->i_sb, split, rec, split_rec);
3847 ocfs2_rotate_leaf(insert_el, split_rec);
3848}
3849
Mark Fashehdcd05382007-01-16 11:32:23 -08003850/*
Tao Mae7d4cb62008-08-18 17:38:44 +08003851 * This function only does inserts on an allocation b-tree. For tree
3852 * depth = 0, ocfs2_insert_at_leaf() is called directly.
Mark Fashehdcd05382007-01-16 11:32:23 -08003853 *
3854 * right_path is the path we want to do the actual insert
3855 * in. left_path should only be passed in if we need to update that
3856 * portion of the tree after an edge insert.
3857 */
3858static int ocfs2_insert_path(struct inode *inode,
3859 handle_t *handle,
3860 struct ocfs2_path *left_path,
3861 struct ocfs2_path *right_path,
3862 struct ocfs2_extent_rec *insert_rec,
3863 struct ocfs2_insert_type *insert)
3864{
3865 int ret, subtree_index;
3866 struct buffer_head *leaf_bh = path_leaf_bh(right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08003867
Mark Fashehdcd05382007-01-16 11:32:23 -08003868 if (left_path) {
3869 int credits = handle->h_buffer_credits;
3870
3871 /*
3872 * There's a chance that left_path got passed back to
3873 * us without being accounted for in the
3874 * journal. Extend our transaction here to be sure we
3875 * can change those blocks.
3876 */
3877 credits += left_path->p_tree_depth;
3878
3879 ret = ocfs2_extend_trans(handle, credits);
3880 if (ret < 0) {
3881 mlog_errno(ret);
3882 goto out;
3883 }
3884
3885 ret = ocfs2_journal_access_path(inode, handle, left_path);
3886 if (ret < 0) {
3887 mlog_errno(ret);
3888 goto out;
3889 }
3890 }
3891
Mark Fashehe8aed342007-12-03 16:43:01 -08003892 /*
3893 * Pass both paths to the journal. The majority of inserts
3894 * will be touching all components anyway.
3895 */
3896 ret = ocfs2_journal_access_path(inode, handle, right_path);
3897 if (ret < 0) {
3898 mlog_errno(ret);
3899 goto out;
3900 }
3901
Mark Fasheh328d5752007-06-18 10:48:04 -07003902 if (insert->ins_split != SPLIT_NONE) {
3903 /*
3904 * We could call ocfs2_insert_at_leaf() for some types
Joe Perchesc78bad12008-02-03 17:33:42 +02003905 * of splits, but it's easier to just let one separate
Mark Fasheh328d5752007-06-18 10:48:04 -07003906 * function sort it all out.
3907 */
3908 ocfs2_split_record(inode, left_path, right_path,
3909 insert_rec, insert->ins_split);
Mark Fashehe8aed342007-12-03 16:43:01 -08003910
3911 /*
3912 * Split might have modified either leaf and we don't
3913 * have a guarantee that the later edge insert will
3914 * dirty this for us.
3915 */
3916 if (left_path)
3917 ret = ocfs2_journal_dirty(handle,
3918 path_leaf_bh(left_path));
3919 if (ret)
3920 mlog_errno(ret);
Mark Fasheh328d5752007-06-18 10:48:04 -07003921 } else
3922 ocfs2_insert_at_leaf(insert_rec, path_leaf_el(right_path),
3923 insert, inode);
Mark Fashehdcd05382007-01-16 11:32:23 -08003924
Mark Fashehdcd05382007-01-16 11:32:23 -08003925 ret = ocfs2_journal_dirty(handle, leaf_bh);
3926 if (ret)
3927 mlog_errno(ret);
3928
3929 if (left_path) {
3930 /*
3931 * The rotate code has indicated that we need to fix
3932 * up portions of the tree after the insert.
3933 *
3934 * XXX: Should we extend the transaction here?
3935 */
3936 subtree_index = ocfs2_find_subtree_root(inode, left_path,
3937 right_path);
3938 ocfs2_complete_edge_insert(inode, handle, left_path,
3939 right_path, subtree_index);
3940 }
3941
3942 ret = 0;
3943out:
3944 return ret;
3945}
3946
3947static int ocfs2_do_insert_extent(struct inode *inode,
3948 handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08003949 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08003950 struct ocfs2_extent_rec *insert_rec,
3951 struct ocfs2_insert_type *type)
3952{
3953 int ret, rotate = 0;
3954 u32 cpos;
3955 struct ocfs2_path *right_path = NULL;
3956 struct ocfs2_path *left_path = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -08003957 struct ocfs2_extent_list *el;
3958
Joel Beckerce1d9ea2008-08-20 16:30:07 -07003959 el = et->et_root_el;
Mark Fashehdcd05382007-01-16 11:32:23 -08003960
Joel Beckerce1d9ea2008-08-20 16:30:07 -07003961 ret = ocfs2_journal_access(handle, inode, et->et_root_bh,
Mark Fashehdcd05382007-01-16 11:32:23 -08003962 OCFS2_JOURNAL_ACCESS_WRITE);
3963 if (ret) {
3964 mlog_errno(ret);
3965 goto out;
3966 }
3967
3968 if (le16_to_cpu(el->l_tree_depth) == 0) {
3969 ocfs2_insert_at_leaf(insert_rec, el, type, inode);
3970 goto out_update_clusters;
3971 }
3972
Joel Beckerce1d9ea2008-08-20 16:30:07 -07003973 right_path = ocfs2_new_path(et->et_root_bh, et->et_root_el);
Mark Fashehdcd05382007-01-16 11:32:23 -08003974 if (!right_path) {
3975 ret = -ENOMEM;
3976 mlog_errno(ret);
3977 goto out;
3978 }
3979
3980 /*
3981 * Determine the path to start with. Rotations need the
3982 * rightmost path, everything else can go directly to the
3983 * target leaf.
3984 */
3985 cpos = le32_to_cpu(insert_rec->e_cpos);
3986 if (type->ins_appending == APPEND_NONE &&
3987 type->ins_contig == CONTIG_NONE) {
3988 rotate = 1;
3989 cpos = UINT_MAX;
3990 }
3991
3992 ret = ocfs2_find_path(inode, right_path, cpos);
3993 if (ret) {
3994 mlog_errno(ret);
3995 goto out;
3996 }
3997
3998 /*
3999 * Rotations and appends need special treatment - they modify
4000 * parts of the tree's above them.
4001 *
4002 * Both might pass back a path immediate to the left of the
4003 * one being inserted to. This will be cause
4004 * ocfs2_insert_path() to modify the rightmost records of
4005 * left_path to account for an edge insert.
4006 *
4007 * XXX: When modifying this code, keep in mind that an insert
4008 * can wind up skipping both of these two special cases...
4009 */
4010 if (rotate) {
Mark Fasheh328d5752007-06-18 10:48:04 -07004011 ret = ocfs2_rotate_tree_right(inode, handle, type->ins_split,
Mark Fashehdcd05382007-01-16 11:32:23 -08004012 le32_to_cpu(insert_rec->e_cpos),
4013 right_path, &left_path);
4014 if (ret) {
4015 mlog_errno(ret);
4016 goto out;
4017 }
Mark Fashehe8aed342007-12-03 16:43:01 -08004018
4019 /*
4020 * ocfs2_rotate_tree_right() might have extended the
4021 * transaction without re-journaling our tree root.
4022 */
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004023 ret = ocfs2_journal_access(handle, inode, et->et_root_bh,
Mark Fashehe8aed342007-12-03 16:43:01 -08004024 OCFS2_JOURNAL_ACCESS_WRITE);
4025 if (ret) {
4026 mlog_errno(ret);
4027 goto out;
4028 }
Mark Fashehdcd05382007-01-16 11:32:23 -08004029 } else if (type->ins_appending == APPEND_TAIL
4030 && type->ins_contig != CONTIG_LEFT) {
4031 ret = ocfs2_append_rec_to_path(inode, handle, insert_rec,
4032 right_path, &left_path);
4033 if (ret) {
4034 mlog_errno(ret);
4035 goto out;
4036 }
4037 }
4038
4039 ret = ocfs2_insert_path(inode, handle, left_path, right_path,
4040 insert_rec, type);
4041 if (ret) {
4042 mlog_errno(ret);
4043 goto out;
4044 }
4045
4046out_update_clusters:
Mark Fasheh328d5752007-06-18 10:48:04 -07004047 if (type->ins_split == SPLIT_NONE)
Joel Becker35dc0aa2008-08-20 16:25:06 -07004048 ocfs2_et_update_clusters(inode, et,
4049 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08004050
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004051 ret = ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004052 if (ret)
4053 mlog_errno(ret);
4054
4055out:
4056 ocfs2_free_path(left_path);
4057 ocfs2_free_path(right_path);
4058
4059 return ret;
4060}
4061
Mark Fasheh328d5752007-06-18 10:48:04 -07004062static enum ocfs2_contig_type
Tao Maad5a4d72008-01-30 14:21:32 +08004063ocfs2_figure_merge_contig_type(struct inode *inode, struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07004064 struct ocfs2_extent_list *el, int index,
4065 struct ocfs2_extent_rec *split_rec)
4066{
Tao Maad5a4d72008-01-30 14:21:32 +08004067 int status;
Mark Fasheh328d5752007-06-18 10:48:04 -07004068 enum ocfs2_contig_type ret = CONTIG_NONE;
Tao Maad5a4d72008-01-30 14:21:32 +08004069 u32 left_cpos, right_cpos;
4070 struct ocfs2_extent_rec *rec = NULL;
4071 struct ocfs2_extent_list *new_el;
4072 struct ocfs2_path *left_path = NULL, *right_path = NULL;
4073 struct buffer_head *bh;
4074 struct ocfs2_extent_block *eb;
4075
4076 if (index > 0) {
4077 rec = &el->l_recs[index - 1];
4078 } else if (path->p_tree_depth > 0) {
4079 status = ocfs2_find_cpos_for_left_leaf(inode->i_sb,
4080 path, &left_cpos);
4081 if (status)
4082 goto out;
4083
4084 if (left_cpos != 0) {
4085 left_path = ocfs2_new_path(path_root_bh(path),
4086 path_root_el(path));
4087 if (!left_path)
4088 goto out;
4089
4090 status = ocfs2_find_path(inode, left_path, left_cpos);
4091 if (status)
4092 goto out;
4093
4094 new_el = path_leaf_el(left_path);
4095
4096 if (le16_to_cpu(new_el->l_next_free_rec) !=
4097 le16_to_cpu(new_el->l_count)) {
4098 bh = path_leaf_bh(left_path);
4099 eb = (struct ocfs2_extent_block *)bh->b_data;
4100 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb,
4101 eb);
4102 goto out;
4103 }
4104 rec = &new_el->l_recs[
4105 le16_to_cpu(new_el->l_next_free_rec) - 1];
4106 }
4107 }
Mark Fasheh328d5752007-06-18 10:48:04 -07004108
4109 /*
4110 * We're careful to check for an empty extent record here -
4111 * the merge code will know what to do if it sees one.
4112 */
Tao Maad5a4d72008-01-30 14:21:32 +08004113 if (rec) {
Mark Fasheh328d5752007-06-18 10:48:04 -07004114 if (index == 1 && ocfs2_is_empty_extent(rec)) {
4115 if (split_rec->e_cpos == el->l_recs[index].e_cpos)
4116 ret = CONTIG_RIGHT;
4117 } else {
4118 ret = ocfs2_extent_contig(inode, rec, split_rec);
4119 }
4120 }
4121
Tao Maad5a4d72008-01-30 14:21:32 +08004122 rec = NULL;
4123 if (index < (le16_to_cpu(el->l_next_free_rec) - 1))
4124 rec = &el->l_recs[index + 1];
4125 else if (le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count) &&
4126 path->p_tree_depth > 0) {
4127 status = ocfs2_find_cpos_for_right_leaf(inode->i_sb,
4128 path, &right_cpos);
4129 if (status)
4130 goto out;
4131
4132 if (right_cpos == 0)
4133 goto out;
4134
4135 right_path = ocfs2_new_path(path_root_bh(path),
4136 path_root_el(path));
4137 if (!right_path)
4138 goto out;
4139
4140 status = ocfs2_find_path(inode, right_path, right_cpos);
4141 if (status)
4142 goto out;
4143
4144 new_el = path_leaf_el(right_path);
4145 rec = &new_el->l_recs[0];
4146 if (ocfs2_is_empty_extent(rec)) {
4147 if (le16_to_cpu(new_el->l_next_free_rec) <= 1) {
4148 bh = path_leaf_bh(right_path);
4149 eb = (struct ocfs2_extent_block *)bh->b_data;
4150 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb,
4151 eb);
4152 goto out;
4153 }
4154 rec = &new_el->l_recs[1];
4155 }
4156 }
4157
4158 if (rec) {
Mark Fasheh328d5752007-06-18 10:48:04 -07004159 enum ocfs2_contig_type contig_type;
4160
Mark Fasheh328d5752007-06-18 10:48:04 -07004161 contig_type = ocfs2_extent_contig(inode, rec, split_rec);
4162
4163 if (contig_type == CONTIG_LEFT && ret == CONTIG_RIGHT)
4164 ret = CONTIG_LEFTRIGHT;
4165 else if (ret == CONTIG_NONE)
4166 ret = contig_type;
4167 }
4168
Tao Maad5a4d72008-01-30 14:21:32 +08004169out:
4170 if (left_path)
4171 ocfs2_free_path(left_path);
4172 if (right_path)
4173 ocfs2_free_path(right_path);
4174
Mark Fasheh328d5752007-06-18 10:48:04 -07004175 return ret;
4176}
4177
Mark Fashehdcd05382007-01-16 11:32:23 -08004178static void ocfs2_figure_contig_type(struct inode *inode,
4179 struct ocfs2_insert_type *insert,
4180 struct ocfs2_extent_list *el,
Tao Maca12b7c2008-08-18 17:38:52 +08004181 struct ocfs2_extent_rec *insert_rec,
4182 struct ocfs2_extent_tree *et)
Mark Fashehdcd05382007-01-16 11:32:23 -08004183{
4184 int i;
4185 enum ocfs2_contig_type contig_type = CONTIG_NONE;
4186
Mark Fashehe48edee2007-03-07 16:46:57 -08004187 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
4188
Mark Fashehdcd05382007-01-16 11:32:23 -08004189 for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
4190 contig_type = ocfs2_extent_contig(inode, &el->l_recs[i],
4191 insert_rec);
4192 if (contig_type != CONTIG_NONE) {
4193 insert->ins_contig_index = i;
4194 break;
4195 }
4196 }
4197 insert->ins_contig = contig_type;
Tao Maca12b7c2008-08-18 17:38:52 +08004198
4199 if (insert->ins_contig != CONTIG_NONE) {
4200 struct ocfs2_extent_rec *rec =
4201 &el->l_recs[insert->ins_contig_index];
4202 unsigned int len = le16_to_cpu(rec->e_leaf_clusters) +
4203 le16_to_cpu(insert_rec->e_leaf_clusters);
4204
4205 /*
4206 * Caller might want us to limit the size of extents, don't
4207 * calculate contiguousness if we might exceed that limit.
4208 */
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004209 if (et->et_max_leaf_clusters &&
4210 (len > et->et_max_leaf_clusters))
Tao Maca12b7c2008-08-18 17:38:52 +08004211 insert->ins_contig = CONTIG_NONE;
4212 }
Mark Fashehdcd05382007-01-16 11:32:23 -08004213}
4214
4215/*
4216 * This should only be called against the righmost leaf extent list.
4217 *
4218 * ocfs2_figure_appending_type() will figure out whether we'll have to
4219 * insert at the tail of the rightmost leaf.
4220 *
Tao Mae7d4cb62008-08-18 17:38:44 +08004221 * This should also work against the root extent list for tree's with 0
4222 * depth. If we consider the root extent list to be the rightmost leaf node
Mark Fashehdcd05382007-01-16 11:32:23 -08004223 * then the logic here makes sense.
4224 */
4225static void ocfs2_figure_appending_type(struct ocfs2_insert_type *insert,
4226 struct ocfs2_extent_list *el,
4227 struct ocfs2_extent_rec *insert_rec)
4228{
4229 int i;
4230 u32 cpos = le32_to_cpu(insert_rec->e_cpos);
4231 struct ocfs2_extent_rec *rec;
4232
4233 insert->ins_appending = APPEND_NONE;
4234
Mark Fashehe48edee2007-03-07 16:46:57 -08004235 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
Mark Fashehdcd05382007-01-16 11:32:23 -08004236
4237 if (!el->l_next_free_rec)
4238 goto set_tail_append;
4239
4240 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
4241 /* Were all records empty? */
4242 if (le16_to_cpu(el->l_next_free_rec) == 1)
4243 goto set_tail_append;
4244 }
4245
4246 i = le16_to_cpu(el->l_next_free_rec) - 1;
4247 rec = &el->l_recs[i];
4248
Mark Fashehe48edee2007-03-07 16:46:57 -08004249 if (cpos >=
4250 (le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)))
Mark Fashehdcd05382007-01-16 11:32:23 -08004251 goto set_tail_append;
4252
4253 return;
4254
4255set_tail_append:
4256 insert->ins_appending = APPEND_TAIL;
4257}
4258
4259/*
4260 * Helper function called at the begining of an insert.
4261 *
4262 * This computes a few things that are commonly used in the process of
4263 * inserting into the btree:
4264 * - Whether the new extent is contiguous with an existing one.
4265 * - The current tree depth.
4266 * - Whether the insert is an appending one.
4267 * - The total # of free records in the tree.
4268 *
4269 * All of the information is stored on the ocfs2_insert_type
4270 * structure.
4271 */
4272static int ocfs2_figure_insert_type(struct inode *inode,
Tao Mae7d4cb62008-08-18 17:38:44 +08004273 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004274 struct buffer_head **last_eb_bh,
4275 struct ocfs2_extent_rec *insert_rec,
Tao Maoc77534f2007-08-28 17:22:33 -07004276 int *free_records,
Mark Fashehdcd05382007-01-16 11:32:23 -08004277 struct ocfs2_insert_type *insert)
4278{
4279 int ret;
Mark Fashehdcd05382007-01-16 11:32:23 -08004280 struct ocfs2_extent_block *eb;
4281 struct ocfs2_extent_list *el;
4282 struct ocfs2_path *path = NULL;
4283 struct buffer_head *bh = NULL;
4284
Mark Fasheh328d5752007-06-18 10:48:04 -07004285 insert->ins_split = SPLIT_NONE;
4286
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004287 el = et->et_root_el;
Mark Fashehdcd05382007-01-16 11:32:23 -08004288 insert->ins_tree_depth = le16_to_cpu(el->l_tree_depth);
4289
4290 if (el->l_tree_depth) {
4291 /*
4292 * If we have tree depth, we read in the
4293 * rightmost extent block ahead of time as
4294 * ocfs2_figure_insert_type() and ocfs2_add_branch()
4295 * may want it later.
4296 */
Joel Becker0fcaa562008-10-09 17:20:31 -07004297 ret = ocfs2_read_block(inode, ocfs2_et_get_last_eb_blk(et), &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004298 if (ret) {
4299 mlog_exit(ret);
4300 goto out;
4301 }
4302 eb = (struct ocfs2_extent_block *) bh->b_data;
4303 el = &eb->h_list;
4304 }
4305
4306 /*
4307 * Unless we have a contiguous insert, we'll need to know if
4308 * there is room left in our allocation tree for another
4309 * extent record.
4310 *
4311 * XXX: This test is simplistic, we can search for empty
4312 * extent records too.
4313 */
Tao Maoc77534f2007-08-28 17:22:33 -07004314 *free_records = le16_to_cpu(el->l_count) -
Mark Fashehdcd05382007-01-16 11:32:23 -08004315 le16_to_cpu(el->l_next_free_rec);
4316
4317 if (!insert->ins_tree_depth) {
Tao Maca12b7c2008-08-18 17:38:52 +08004318 ocfs2_figure_contig_type(inode, insert, el, insert_rec, et);
Mark Fashehdcd05382007-01-16 11:32:23 -08004319 ocfs2_figure_appending_type(insert, el, insert_rec);
4320 return 0;
4321 }
4322
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004323 path = ocfs2_new_path(et->et_root_bh, et->et_root_el);
Mark Fashehdcd05382007-01-16 11:32:23 -08004324 if (!path) {
4325 ret = -ENOMEM;
4326 mlog_errno(ret);
4327 goto out;
4328 }
4329
4330 /*
4331 * In the case that we're inserting past what the tree
4332 * currently accounts for, ocfs2_find_path() will return for
4333 * us the rightmost tree path. This is accounted for below in
4334 * the appending code.
4335 */
4336 ret = ocfs2_find_path(inode, path, le32_to_cpu(insert_rec->e_cpos));
4337 if (ret) {
4338 mlog_errno(ret);
4339 goto out;
4340 }
4341
4342 el = path_leaf_el(path);
4343
4344 /*
4345 * Now that we have the path, there's two things we want to determine:
4346 * 1) Contiguousness (also set contig_index if this is so)
4347 *
4348 * 2) Are we doing an append? We can trivially break this up
4349 * into two types of appends: simple record append, or a
4350 * rotate inside the tail leaf.
4351 */
Tao Maca12b7c2008-08-18 17:38:52 +08004352 ocfs2_figure_contig_type(inode, insert, el, insert_rec, et);
Mark Fashehdcd05382007-01-16 11:32:23 -08004353
4354 /*
4355 * The insert code isn't quite ready to deal with all cases of
4356 * left contiguousness. Specifically, if it's an insert into
4357 * the 1st record in a leaf, it will require the adjustment of
Mark Fashehe48edee2007-03-07 16:46:57 -08004358 * cluster count on the last record of the path directly to it's
Mark Fashehdcd05382007-01-16 11:32:23 -08004359 * left. For now, just catch that case and fool the layers
4360 * above us. This works just fine for tree_depth == 0, which
4361 * is why we allow that above.
4362 */
4363 if (insert->ins_contig == CONTIG_LEFT &&
4364 insert->ins_contig_index == 0)
4365 insert->ins_contig = CONTIG_NONE;
4366
4367 /*
4368 * Ok, so we can simply compare against last_eb to figure out
4369 * whether the path doesn't exist. This will only happen in
4370 * the case that we're doing a tail append, so maybe we can
4371 * take advantage of that information somehow.
4372 */
Joel Becker35dc0aa2008-08-20 16:25:06 -07004373 if (ocfs2_et_get_last_eb_blk(et) ==
Tao Mae7d4cb62008-08-18 17:38:44 +08004374 path_leaf_bh(path)->b_blocknr) {
Mark Fashehdcd05382007-01-16 11:32:23 -08004375 /*
4376 * Ok, ocfs2_find_path() returned us the rightmost
4377 * tree path. This might be an appending insert. There are
4378 * two cases:
4379 * 1) We're doing a true append at the tail:
4380 * -This might even be off the end of the leaf
4381 * 2) We're "appending" by rotating in the tail
4382 */
4383 ocfs2_figure_appending_type(insert, el, insert_rec);
4384 }
4385
4386out:
4387 ocfs2_free_path(path);
4388
4389 if (ret == 0)
4390 *last_eb_bh = bh;
4391 else
4392 brelse(bh);
4393 return ret;
4394}
4395
4396/*
4397 * Insert an extent into an inode btree.
4398 *
4399 * The caller needs to update fe->i_clusters
4400 */
Joel Beckerf99b9b72008-08-20 19:36:33 -07004401int ocfs2_insert_extent(struct ocfs2_super *osb,
4402 handle_t *handle,
4403 struct inode *inode,
4404 struct ocfs2_extent_tree *et,
4405 u32 cpos,
4406 u64 start_blk,
4407 u32 new_clusters,
4408 u8 flags,
4409 struct ocfs2_alloc_context *meta_ac)
Mark Fashehccd979b2005-12-15 14:31:24 -08004410{
Mark Fashehc3afcbb2007-05-29 14:28:51 -07004411 int status;
Tao Maoc77534f2007-08-28 17:22:33 -07004412 int uninitialized_var(free_records);
Mark Fashehccd979b2005-12-15 14:31:24 -08004413 struct buffer_head *last_eb_bh = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -08004414 struct ocfs2_insert_type insert = {0, };
4415 struct ocfs2_extent_rec rec;
Mark Fashehccd979b2005-12-15 14:31:24 -08004416
Mark Fashehdcd05382007-01-16 11:32:23 -08004417 mlog(0, "add %u clusters at position %u to inode %llu\n",
4418 new_clusters, cpos, (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08004419
Mark Fashehe48edee2007-03-07 16:46:57 -08004420 memset(&rec, 0, sizeof(rec));
Mark Fashehdcd05382007-01-16 11:32:23 -08004421 rec.e_cpos = cpu_to_le32(cpos);
4422 rec.e_blkno = cpu_to_le64(start_blk);
Mark Fashehe48edee2007-03-07 16:46:57 -08004423 rec.e_leaf_clusters = cpu_to_le16(new_clusters);
Mark Fasheh2ae99a62007-03-09 16:43:28 -08004424 rec.e_flags = flags;
Joel Becker1e61ee72008-08-20 18:32:45 -07004425 status = ocfs2_et_insert_check(inode, et, &rec);
4426 if (status) {
4427 mlog_errno(status);
4428 goto bail;
4429 }
Mark Fashehccd979b2005-12-15 14:31:24 -08004430
Tao Mae7d4cb62008-08-18 17:38:44 +08004431 status = ocfs2_figure_insert_type(inode, et, &last_eb_bh, &rec,
Tao Maoc77534f2007-08-28 17:22:33 -07004432 &free_records, &insert);
Mark Fashehdcd05382007-01-16 11:32:23 -08004433 if (status < 0) {
4434 mlog_errno(status);
4435 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -08004436 }
4437
Mark Fashehdcd05382007-01-16 11:32:23 -08004438 mlog(0, "Insert.appending: %u, Insert.Contig: %u, "
4439 "Insert.contig_index: %d, Insert.free_records: %d, "
4440 "Insert.tree_depth: %d\n",
4441 insert.ins_appending, insert.ins_contig, insert.ins_contig_index,
Tao Maoc77534f2007-08-28 17:22:33 -07004442 free_records, insert.ins_tree_depth);
Mark Fashehccd979b2005-12-15 14:31:24 -08004443
Tao Maoc77534f2007-08-28 17:22:33 -07004444 if (insert.ins_contig == CONTIG_NONE && free_records == 0) {
Tao Mae7d4cb62008-08-18 17:38:44 +08004445 status = ocfs2_grow_tree(inode, handle, et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004446 &insert.ins_tree_depth, &last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07004447 meta_ac);
4448 if (status) {
Mark Fashehccd979b2005-12-15 14:31:24 -08004449 mlog_errno(status);
4450 goto bail;
4451 }
Mark Fashehccd979b2005-12-15 14:31:24 -08004452 }
4453
Mark Fashehdcd05382007-01-16 11:32:23 -08004454 /* Finally, we can add clusters. This might rotate the tree for us. */
Tao Mae7d4cb62008-08-18 17:38:44 +08004455 status = ocfs2_do_insert_extent(inode, handle, et, &rec, &insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08004456 if (status < 0)
4457 mlog_errno(status);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004458 else if (et->et_ops == &ocfs2_dinode_et_ops)
Mark Fasheh83418972007-04-23 18:53:12 -07004459 ocfs2_extent_map_insert_rec(inode, &rec);
Mark Fashehccd979b2005-12-15 14:31:24 -08004460
4461bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07004462 brelse(last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08004463
Tao Maf56654c2008-08-18 17:38:48 +08004464 mlog_exit(status);
4465 return status;
4466}
4467
Tao Ma0eb8d472008-08-18 17:38:45 +08004468/*
4469 * Allcate and add clusters into the extent b-tree.
4470 * The new clusters(clusters_to_add) will be inserted at logical_offset.
Joel Beckerf99b9b72008-08-20 19:36:33 -07004471 * The extent b-tree's root is specified by et, and
Tao Ma0eb8d472008-08-18 17:38:45 +08004472 * it is not limited to the file storage. Any extent tree can use this
4473 * function if it implements the proper ocfs2_extent_tree.
4474 */
4475int ocfs2_add_clusters_in_btree(struct ocfs2_super *osb,
4476 struct inode *inode,
4477 u32 *logical_offset,
4478 u32 clusters_to_add,
4479 int mark_unwritten,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004480 struct ocfs2_extent_tree *et,
Tao Ma0eb8d472008-08-18 17:38:45 +08004481 handle_t *handle,
4482 struct ocfs2_alloc_context *data_ac,
4483 struct ocfs2_alloc_context *meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004484 enum ocfs2_alloc_restarted *reason_ret)
Tao Ma0eb8d472008-08-18 17:38:45 +08004485{
4486 int status = 0;
4487 int free_extents;
4488 enum ocfs2_alloc_restarted reason = RESTART_NONE;
4489 u32 bit_off, num_bits;
4490 u64 block;
4491 u8 flags = 0;
4492
4493 BUG_ON(!clusters_to_add);
4494
4495 if (mark_unwritten)
4496 flags = OCFS2_EXT_UNWRITTEN;
4497
Joel Beckerf99b9b72008-08-20 19:36:33 -07004498 free_extents = ocfs2_num_free_extents(osb, inode, et);
Tao Ma0eb8d472008-08-18 17:38:45 +08004499 if (free_extents < 0) {
4500 status = free_extents;
4501 mlog_errno(status);
4502 goto leave;
4503 }
4504
4505 /* there are two cases which could cause us to EAGAIN in the
4506 * we-need-more-metadata case:
4507 * 1) we haven't reserved *any*
4508 * 2) we are so fragmented, we've needed to add metadata too
4509 * many times. */
4510 if (!free_extents && !meta_ac) {
4511 mlog(0, "we haven't reserved any metadata!\n");
4512 status = -EAGAIN;
4513 reason = RESTART_META;
4514 goto leave;
4515 } else if ((!free_extents)
4516 && (ocfs2_alloc_context_bits_left(meta_ac)
Joel Beckerf99b9b72008-08-20 19:36:33 -07004517 < ocfs2_extend_meta_needed(et->et_root_el))) {
Tao Ma0eb8d472008-08-18 17:38:45 +08004518 mlog(0, "filesystem is really fragmented...\n");
4519 status = -EAGAIN;
4520 reason = RESTART_META;
4521 goto leave;
4522 }
4523
4524 status = __ocfs2_claim_clusters(osb, handle, data_ac, 1,
4525 clusters_to_add, &bit_off, &num_bits);
4526 if (status < 0) {
4527 if (status != -ENOSPC)
4528 mlog_errno(status);
4529 goto leave;
4530 }
4531
4532 BUG_ON(num_bits > clusters_to_add);
4533
4534 /* reserve our write early -- insert_extent may update the inode */
Joel Beckerf99b9b72008-08-20 19:36:33 -07004535 status = ocfs2_journal_access(handle, inode, et->et_root_bh,
Tao Ma0eb8d472008-08-18 17:38:45 +08004536 OCFS2_JOURNAL_ACCESS_WRITE);
4537 if (status < 0) {
4538 mlog_errno(status);
4539 goto leave;
4540 }
4541
4542 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
4543 mlog(0, "Allocating %u clusters at block %u for inode %llu\n",
4544 num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004545 status = ocfs2_insert_extent(osb, handle, inode, et,
4546 *logical_offset, block,
4547 num_bits, flags, meta_ac);
Tao Ma0eb8d472008-08-18 17:38:45 +08004548 if (status < 0) {
4549 mlog_errno(status);
4550 goto leave;
4551 }
4552
Joel Beckerf99b9b72008-08-20 19:36:33 -07004553 status = ocfs2_journal_dirty(handle, et->et_root_bh);
Tao Ma0eb8d472008-08-18 17:38:45 +08004554 if (status < 0) {
4555 mlog_errno(status);
4556 goto leave;
4557 }
4558
4559 clusters_to_add -= num_bits;
4560 *logical_offset += num_bits;
4561
4562 if (clusters_to_add) {
4563 mlog(0, "need to alloc once more, wanted = %u\n",
4564 clusters_to_add);
4565 status = -EAGAIN;
4566 reason = RESTART_TRANS;
4567 }
4568
4569leave:
4570 mlog_exit(status);
4571 if (reason_ret)
4572 *reason_ret = reason;
4573 return status;
4574}
4575
Mark Fasheh328d5752007-06-18 10:48:04 -07004576static void ocfs2_make_right_split_rec(struct super_block *sb,
4577 struct ocfs2_extent_rec *split_rec,
4578 u32 cpos,
4579 struct ocfs2_extent_rec *rec)
4580{
4581 u32 rec_cpos = le32_to_cpu(rec->e_cpos);
4582 u32 rec_range = rec_cpos + le16_to_cpu(rec->e_leaf_clusters);
4583
4584 memset(split_rec, 0, sizeof(struct ocfs2_extent_rec));
4585
4586 split_rec->e_cpos = cpu_to_le32(cpos);
4587 split_rec->e_leaf_clusters = cpu_to_le16(rec_range - cpos);
4588
4589 split_rec->e_blkno = rec->e_blkno;
4590 le64_add_cpu(&split_rec->e_blkno,
4591 ocfs2_clusters_to_blocks(sb, cpos - rec_cpos));
4592
4593 split_rec->e_flags = rec->e_flags;
4594}
4595
4596static int ocfs2_split_and_insert(struct inode *inode,
4597 handle_t *handle,
4598 struct ocfs2_path *path,
Tao Mae7d4cb62008-08-18 17:38:44 +08004599 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004600 struct buffer_head **last_eb_bh,
4601 int split_index,
4602 struct ocfs2_extent_rec *orig_split_rec,
4603 struct ocfs2_alloc_context *meta_ac)
4604{
4605 int ret = 0, depth;
4606 unsigned int insert_range, rec_range, do_leftright = 0;
4607 struct ocfs2_extent_rec tmprec;
4608 struct ocfs2_extent_list *rightmost_el;
4609 struct ocfs2_extent_rec rec;
4610 struct ocfs2_extent_rec split_rec = *orig_split_rec;
4611 struct ocfs2_insert_type insert;
4612 struct ocfs2_extent_block *eb;
Mark Fasheh328d5752007-06-18 10:48:04 -07004613
4614leftright:
4615 /*
4616 * Store a copy of the record on the stack - it might move
4617 * around as the tree is manipulated below.
4618 */
4619 rec = path_leaf_el(path)->l_recs[split_index];
4620
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004621 rightmost_el = et->et_root_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07004622
4623 depth = le16_to_cpu(rightmost_el->l_tree_depth);
4624 if (depth) {
4625 BUG_ON(!(*last_eb_bh));
4626 eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data;
4627 rightmost_el = &eb->h_list;
4628 }
4629
4630 if (le16_to_cpu(rightmost_el->l_next_free_rec) ==
4631 le16_to_cpu(rightmost_el->l_count)) {
Tao Mae7d4cb62008-08-18 17:38:44 +08004632 ret = ocfs2_grow_tree(inode, handle, et,
4633 &depth, last_eb_bh, meta_ac);
Mark Fasheh328d5752007-06-18 10:48:04 -07004634 if (ret) {
4635 mlog_errno(ret);
4636 goto out;
4637 }
Mark Fasheh328d5752007-06-18 10:48:04 -07004638 }
4639
4640 memset(&insert, 0, sizeof(struct ocfs2_insert_type));
4641 insert.ins_appending = APPEND_NONE;
4642 insert.ins_contig = CONTIG_NONE;
Mark Fasheh328d5752007-06-18 10:48:04 -07004643 insert.ins_tree_depth = depth;
4644
4645 insert_range = le32_to_cpu(split_rec.e_cpos) +
4646 le16_to_cpu(split_rec.e_leaf_clusters);
4647 rec_range = le32_to_cpu(rec.e_cpos) +
4648 le16_to_cpu(rec.e_leaf_clusters);
4649
4650 if (split_rec.e_cpos == rec.e_cpos) {
4651 insert.ins_split = SPLIT_LEFT;
4652 } else if (insert_range == rec_range) {
4653 insert.ins_split = SPLIT_RIGHT;
4654 } else {
4655 /*
4656 * Left/right split. We fake this as a right split
4657 * first and then make a second pass as a left split.
4658 */
4659 insert.ins_split = SPLIT_RIGHT;
4660
4661 ocfs2_make_right_split_rec(inode->i_sb, &tmprec, insert_range,
4662 &rec);
4663
4664 split_rec = tmprec;
4665
4666 BUG_ON(do_leftright);
4667 do_leftright = 1;
4668 }
4669
Tao Mae7d4cb62008-08-18 17:38:44 +08004670 ret = ocfs2_do_insert_extent(inode, handle, et, &split_rec, &insert);
Mark Fasheh328d5752007-06-18 10:48:04 -07004671 if (ret) {
4672 mlog_errno(ret);
4673 goto out;
4674 }
4675
4676 if (do_leftright == 1) {
4677 u32 cpos;
4678 struct ocfs2_extent_list *el;
4679
4680 do_leftright++;
4681 split_rec = *orig_split_rec;
4682
4683 ocfs2_reinit_path(path, 1);
4684
4685 cpos = le32_to_cpu(split_rec.e_cpos);
4686 ret = ocfs2_find_path(inode, path, cpos);
4687 if (ret) {
4688 mlog_errno(ret);
4689 goto out;
4690 }
4691
4692 el = path_leaf_el(path);
4693 split_index = ocfs2_search_extent_list(el, cpos);
4694 goto leftright;
4695 }
4696out:
4697
4698 return ret;
4699}
4700
4701/*
4702 * Mark part or all of the extent record at split_index in the leaf
4703 * pointed to by path as written. This removes the unwritten
4704 * extent flag.
4705 *
4706 * Care is taken to handle contiguousness so as to not grow the tree.
4707 *
4708 * meta_ac is not strictly necessary - we only truly need it if growth
4709 * of the tree is required. All other cases will degrade into a less
4710 * optimal tree layout.
4711 *
Tao Mae7d4cb62008-08-18 17:38:44 +08004712 * last_eb_bh should be the rightmost leaf block for any extent
4713 * btree. Since a split may grow the tree or a merge might shrink it,
4714 * the caller cannot trust the contents of that buffer after this call.
Mark Fasheh328d5752007-06-18 10:48:04 -07004715 *
4716 * This code is optimized for readability - several passes might be
4717 * made over certain portions of the tree. All of those blocks will
4718 * have been brought into cache (and pinned via the journal), so the
4719 * extra overhead is not expressed in terms of disk reads.
4720 */
4721static int __ocfs2_mark_extent_written(struct inode *inode,
Tao Mae7d4cb62008-08-18 17:38:44 +08004722 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004723 handle_t *handle,
4724 struct ocfs2_path *path,
4725 int split_index,
4726 struct ocfs2_extent_rec *split_rec,
4727 struct ocfs2_alloc_context *meta_ac,
4728 struct ocfs2_cached_dealloc_ctxt *dealloc)
4729{
4730 int ret = 0;
4731 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fashehe8aed342007-12-03 16:43:01 -08004732 struct buffer_head *last_eb_bh = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07004733 struct ocfs2_extent_rec *rec = &el->l_recs[split_index];
4734 struct ocfs2_merge_ctxt ctxt;
4735 struct ocfs2_extent_list *rightmost_el;
4736
Roel Kluin3cf0c502007-10-27 00:20:36 +02004737 if (!(rec->e_flags & OCFS2_EXT_UNWRITTEN)) {
Mark Fasheh328d5752007-06-18 10:48:04 -07004738 ret = -EIO;
4739 mlog_errno(ret);
4740 goto out;
4741 }
4742
4743 if (le32_to_cpu(rec->e_cpos) > le32_to_cpu(split_rec->e_cpos) ||
4744 ((le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)) <
4745 (le32_to_cpu(split_rec->e_cpos) + le16_to_cpu(split_rec->e_leaf_clusters)))) {
4746 ret = -EIO;
4747 mlog_errno(ret);
4748 goto out;
4749 }
4750
Tao Maad5a4d72008-01-30 14:21:32 +08004751 ctxt.c_contig_type = ocfs2_figure_merge_contig_type(inode, path, el,
Mark Fasheh328d5752007-06-18 10:48:04 -07004752 split_index,
4753 split_rec);
4754
4755 /*
4756 * The core merge / split code wants to know how much room is
4757 * left in this inodes allocation tree, so we pass the
4758 * rightmost extent list.
4759 */
4760 if (path->p_tree_depth) {
4761 struct ocfs2_extent_block *eb;
Mark Fasheh328d5752007-06-18 10:48:04 -07004762
Joel Becker0fcaa562008-10-09 17:20:31 -07004763 ret = ocfs2_read_block(inode, ocfs2_et_get_last_eb_blk(et),
4764 &last_eb_bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07004765 if (ret) {
4766 mlog_exit(ret);
4767 goto out;
4768 }
4769
4770 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
4771 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
4772 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
4773 ret = -EROFS;
4774 goto out;
4775 }
4776
4777 rightmost_el = &eb->h_list;
4778 } else
4779 rightmost_el = path_root_el(path);
4780
Mark Fasheh328d5752007-06-18 10:48:04 -07004781 if (rec->e_cpos == split_rec->e_cpos &&
4782 rec->e_leaf_clusters == split_rec->e_leaf_clusters)
4783 ctxt.c_split_covers_rec = 1;
4784 else
4785 ctxt.c_split_covers_rec = 0;
4786
4787 ctxt.c_has_empty_extent = ocfs2_is_empty_extent(&el->l_recs[0]);
4788
Mark Fasheh015452b2007-09-12 10:21:22 -07004789 mlog(0, "index: %d, contig: %u, has_empty: %u, split_covers: %u\n",
4790 split_index, ctxt.c_contig_type, ctxt.c_has_empty_extent,
4791 ctxt.c_split_covers_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004792
4793 if (ctxt.c_contig_type == CONTIG_NONE) {
4794 if (ctxt.c_split_covers_rec)
4795 el->l_recs[split_index] = *split_rec;
4796 else
Tao Mae7d4cb62008-08-18 17:38:44 +08004797 ret = ocfs2_split_and_insert(inode, handle, path, et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004798 &last_eb_bh, split_index,
4799 split_rec, meta_ac);
4800 if (ret)
4801 mlog_errno(ret);
4802 } else {
4803 ret = ocfs2_try_to_merge_extent(inode, handle, path,
4804 split_index, split_rec,
Tao Mae7d4cb62008-08-18 17:38:44 +08004805 dealloc, &ctxt, et);
Mark Fasheh328d5752007-06-18 10:48:04 -07004806 if (ret)
4807 mlog_errno(ret);
4808 }
4809
Mark Fasheh328d5752007-06-18 10:48:04 -07004810out:
4811 brelse(last_eb_bh);
4812 return ret;
4813}
4814
4815/*
4816 * Mark the already-existing extent at cpos as written for len clusters.
4817 *
4818 * If the existing extent is larger than the request, initiate a
4819 * split. An attempt will be made at merging with adjacent extents.
4820 *
4821 * The caller is responsible for passing down meta_ac if we'll need it.
4822 */
Joel Beckerf99b9b72008-08-20 19:36:33 -07004823int ocfs2_mark_extent_written(struct inode *inode,
4824 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004825 handle_t *handle, u32 cpos, u32 len, u32 phys,
4826 struct ocfs2_alloc_context *meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004827 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fasheh328d5752007-06-18 10:48:04 -07004828{
4829 int ret, index;
4830 u64 start_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys);
4831 struct ocfs2_extent_rec split_rec;
4832 struct ocfs2_path *left_path = NULL;
4833 struct ocfs2_extent_list *el;
4834
4835 mlog(0, "Inode %lu cpos %u, len %u, phys %u (%llu)\n",
4836 inode->i_ino, cpos, len, phys, (unsigned long long)start_blkno);
4837
4838 if (!ocfs2_writes_unwritten_extents(OCFS2_SB(inode->i_sb))) {
4839 ocfs2_error(inode->i_sb, "Inode %llu has unwritten extents "
4840 "that are being written to, but the feature bit "
4841 "is not set in the super block.",
4842 (unsigned long long)OCFS2_I(inode)->ip_blkno);
4843 ret = -EROFS;
4844 goto out;
4845 }
4846
4847 /*
4848 * XXX: This should be fixed up so that we just re-insert the
4849 * next extent records.
Joel Beckerf99b9b72008-08-20 19:36:33 -07004850 *
4851 * XXX: This is a hack on the extent tree, maybe it should be
4852 * an op?
Mark Fasheh328d5752007-06-18 10:48:04 -07004853 */
Joel Beckerf99b9b72008-08-20 19:36:33 -07004854 if (et->et_ops == &ocfs2_dinode_et_ops)
Tao Mae7d4cb62008-08-18 17:38:44 +08004855 ocfs2_extent_map_trunc(inode, 0);
Mark Fasheh328d5752007-06-18 10:48:04 -07004856
Joel Beckerf99b9b72008-08-20 19:36:33 -07004857 left_path = ocfs2_new_path(et->et_root_bh, et->et_root_el);
Mark Fasheh328d5752007-06-18 10:48:04 -07004858 if (!left_path) {
4859 ret = -ENOMEM;
4860 mlog_errno(ret);
4861 goto out;
4862 }
4863
4864 ret = ocfs2_find_path(inode, left_path, cpos);
4865 if (ret) {
4866 mlog_errno(ret);
4867 goto out;
4868 }
4869 el = path_leaf_el(left_path);
4870
4871 index = ocfs2_search_extent_list(el, cpos);
4872 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
4873 ocfs2_error(inode->i_sb,
4874 "Inode %llu has an extent at cpos %u which can no "
4875 "longer be found.\n",
4876 (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos);
4877 ret = -EROFS;
4878 goto out;
4879 }
4880
4881 memset(&split_rec, 0, sizeof(struct ocfs2_extent_rec));
4882 split_rec.e_cpos = cpu_to_le32(cpos);
4883 split_rec.e_leaf_clusters = cpu_to_le16(len);
4884 split_rec.e_blkno = cpu_to_le64(start_blkno);
4885 split_rec.e_flags = path_leaf_el(left_path)->l_recs[index].e_flags;
4886 split_rec.e_flags &= ~OCFS2_EXT_UNWRITTEN;
4887
Joel Beckerf99b9b72008-08-20 19:36:33 -07004888 ret = __ocfs2_mark_extent_written(inode, et, handle, left_path,
Tao Mae7d4cb62008-08-18 17:38:44 +08004889 index, &split_rec, meta_ac,
4890 dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07004891 if (ret)
4892 mlog_errno(ret);
4893
4894out:
4895 ocfs2_free_path(left_path);
4896 return ret;
4897}
4898
Tao Mae7d4cb62008-08-18 17:38:44 +08004899static int ocfs2_split_tree(struct inode *inode, struct ocfs2_extent_tree *et,
Mark Fashehd0c7d702007-07-03 13:27:22 -07004900 handle_t *handle, struct ocfs2_path *path,
4901 int index, u32 new_range,
4902 struct ocfs2_alloc_context *meta_ac)
4903{
4904 int ret, depth, credits = handle->h_buffer_credits;
Mark Fashehd0c7d702007-07-03 13:27:22 -07004905 struct buffer_head *last_eb_bh = NULL;
4906 struct ocfs2_extent_block *eb;
4907 struct ocfs2_extent_list *rightmost_el, *el;
4908 struct ocfs2_extent_rec split_rec;
4909 struct ocfs2_extent_rec *rec;
4910 struct ocfs2_insert_type insert;
4911
4912 /*
4913 * Setup the record to split before we grow the tree.
4914 */
4915 el = path_leaf_el(path);
4916 rec = &el->l_recs[index];
4917 ocfs2_make_right_split_rec(inode->i_sb, &split_rec, new_range, rec);
4918
4919 depth = path->p_tree_depth;
4920 if (depth > 0) {
Joel Becker0fcaa562008-10-09 17:20:31 -07004921 ret = ocfs2_read_block(inode, ocfs2_et_get_last_eb_blk(et),
4922 &last_eb_bh);
Mark Fashehd0c7d702007-07-03 13:27:22 -07004923 if (ret < 0) {
4924 mlog_errno(ret);
4925 goto out;
4926 }
4927
4928 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
4929 rightmost_el = &eb->h_list;
4930 } else
4931 rightmost_el = path_leaf_el(path);
4932
Tao Ma811f9332008-08-18 17:38:43 +08004933 credits += path->p_tree_depth +
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004934 ocfs2_extend_meta_needed(et->et_root_el);
Mark Fashehd0c7d702007-07-03 13:27:22 -07004935 ret = ocfs2_extend_trans(handle, credits);
4936 if (ret) {
4937 mlog_errno(ret);
4938 goto out;
4939 }
4940
4941 if (le16_to_cpu(rightmost_el->l_next_free_rec) ==
4942 le16_to_cpu(rightmost_el->l_count)) {
Tao Mae7d4cb62008-08-18 17:38:44 +08004943 ret = ocfs2_grow_tree(inode, handle, et, &depth, &last_eb_bh,
Mark Fashehd0c7d702007-07-03 13:27:22 -07004944 meta_ac);
4945 if (ret) {
4946 mlog_errno(ret);
4947 goto out;
4948 }
Mark Fashehd0c7d702007-07-03 13:27:22 -07004949 }
4950
4951 memset(&insert, 0, sizeof(struct ocfs2_insert_type));
4952 insert.ins_appending = APPEND_NONE;
4953 insert.ins_contig = CONTIG_NONE;
4954 insert.ins_split = SPLIT_RIGHT;
Mark Fashehd0c7d702007-07-03 13:27:22 -07004955 insert.ins_tree_depth = depth;
4956
Tao Mae7d4cb62008-08-18 17:38:44 +08004957 ret = ocfs2_do_insert_extent(inode, handle, et, &split_rec, &insert);
Mark Fashehd0c7d702007-07-03 13:27:22 -07004958 if (ret)
4959 mlog_errno(ret);
4960
4961out:
4962 brelse(last_eb_bh);
4963 return ret;
4964}
4965
4966static int ocfs2_truncate_rec(struct inode *inode, handle_t *handle,
4967 struct ocfs2_path *path, int index,
4968 struct ocfs2_cached_dealloc_ctxt *dealloc,
Tao Mae7d4cb62008-08-18 17:38:44 +08004969 u32 cpos, u32 len,
4970 struct ocfs2_extent_tree *et)
Mark Fashehd0c7d702007-07-03 13:27:22 -07004971{
4972 int ret;
4973 u32 left_cpos, rec_range, trunc_range;
4974 int wants_rotate = 0, is_rightmost_tree_rec = 0;
4975 struct super_block *sb = inode->i_sb;
4976 struct ocfs2_path *left_path = NULL;
4977 struct ocfs2_extent_list *el = path_leaf_el(path);
4978 struct ocfs2_extent_rec *rec;
4979 struct ocfs2_extent_block *eb;
4980
4981 if (ocfs2_is_empty_extent(&el->l_recs[0]) && index > 0) {
Tao Mae7d4cb62008-08-18 17:38:44 +08004982 ret = ocfs2_rotate_tree_left(inode, handle, path, dealloc, et);
Mark Fashehd0c7d702007-07-03 13:27:22 -07004983 if (ret) {
4984 mlog_errno(ret);
4985 goto out;
4986 }
4987
4988 index--;
4989 }
4990
4991 if (index == (le16_to_cpu(el->l_next_free_rec) - 1) &&
4992 path->p_tree_depth) {
4993 /*
4994 * Check whether this is the rightmost tree record. If
4995 * we remove all of this record or part of its right
4996 * edge then an update of the record lengths above it
4997 * will be required.
4998 */
4999 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
5000 if (eb->h_next_leaf_blk == 0)
5001 is_rightmost_tree_rec = 1;
5002 }
5003
5004 rec = &el->l_recs[index];
5005 if (index == 0 && path->p_tree_depth &&
5006 le32_to_cpu(rec->e_cpos) == cpos) {
5007 /*
5008 * Changing the leftmost offset (via partial or whole
5009 * record truncate) of an interior (or rightmost) path
5010 * means we have to update the subtree that is formed
5011 * by this leaf and the one to it's left.
5012 *
5013 * There are two cases we can skip:
5014 * 1) Path is the leftmost one in our inode tree.
5015 * 2) The leaf is rightmost and will be empty after
5016 * we remove the extent record - the rotate code
5017 * knows how to update the newly formed edge.
5018 */
5019
5020 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, path,
5021 &left_cpos);
5022 if (ret) {
5023 mlog_errno(ret);
5024 goto out;
5025 }
5026
5027 if (left_cpos && le16_to_cpu(el->l_next_free_rec) > 1) {
5028 left_path = ocfs2_new_path(path_root_bh(path),
5029 path_root_el(path));
5030 if (!left_path) {
5031 ret = -ENOMEM;
5032 mlog_errno(ret);
5033 goto out;
5034 }
5035
5036 ret = ocfs2_find_path(inode, left_path, left_cpos);
5037 if (ret) {
5038 mlog_errno(ret);
5039 goto out;
5040 }
5041 }
5042 }
5043
5044 ret = ocfs2_extend_rotate_transaction(handle, 0,
5045 handle->h_buffer_credits,
5046 path);
5047 if (ret) {
5048 mlog_errno(ret);
5049 goto out;
5050 }
5051
5052 ret = ocfs2_journal_access_path(inode, handle, path);
5053 if (ret) {
5054 mlog_errno(ret);
5055 goto out;
5056 }
5057
5058 ret = ocfs2_journal_access_path(inode, handle, left_path);
5059 if (ret) {
5060 mlog_errno(ret);
5061 goto out;
5062 }
5063
5064 rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
5065 trunc_range = cpos + len;
5066
5067 if (le32_to_cpu(rec->e_cpos) == cpos && rec_range == trunc_range) {
5068 int next_free;
5069
5070 memset(rec, 0, sizeof(*rec));
5071 ocfs2_cleanup_merge(el, index);
5072 wants_rotate = 1;
5073
5074 next_free = le16_to_cpu(el->l_next_free_rec);
5075 if (is_rightmost_tree_rec && next_free > 1) {
5076 /*
5077 * We skip the edge update if this path will
5078 * be deleted by the rotate code.
5079 */
5080 rec = &el->l_recs[next_free - 1];
5081 ocfs2_adjust_rightmost_records(inode, handle, path,
5082 rec);
5083 }
5084 } else if (le32_to_cpu(rec->e_cpos) == cpos) {
5085 /* Remove leftmost portion of the record. */
5086 le32_add_cpu(&rec->e_cpos, len);
5087 le64_add_cpu(&rec->e_blkno, ocfs2_clusters_to_blocks(sb, len));
5088 le16_add_cpu(&rec->e_leaf_clusters, -len);
5089 } else if (rec_range == trunc_range) {
5090 /* Remove rightmost portion of the record */
5091 le16_add_cpu(&rec->e_leaf_clusters, -len);
5092 if (is_rightmost_tree_rec)
5093 ocfs2_adjust_rightmost_records(inode, handle, path, rec);
5094 } else {
5095 /* Caller should have trapped this. */
5096 mlog(ML_ERROR, "Inode %llu: Invalid record truncate: (%u, %u) "
5097 "(%u, %u)\n", (unsigned long long)OCFS2_I(inode)->ip_blkno,
5098 le32_to_cpu(rec->e_cpos),
5099 le16_to_cpu(rec->e_leaf_clusters), cpos, len);
5100 BUG();
5101 }
5102
5103 if (left_path) {
5104 int subtree_index;
5105
5106 subtree_index = ocfs2_find_subtree_root(inode, left_path, path);
5107 ocfs2_complete_edge_insert(inode, handle, left_path, path,
5108 subtree_index);
5109 }
5110
5111 ocfs2_journal_dirty(handle, path_leaf_bh(path));
5112
Tao Mae7d4cb62008-08-18 17:38:44 +08005113 ret = ocfs2_rotate_tree_left(inode, handle, path, dealloc, et);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005114 if (ret) {
5115 mlog_errno(ret);
5116 goto out;
5117 }
5118
5119out:
5120 ocfs2_free_path(left_path);
5121 return ret;
5122}
5123
Joel Beckerf99b9b72008-08-20 19:36:33 -07005124int ocfs2_remove_extent(struct inode *inode,
5125 struct ocfs2_extent_tree *et,
Mark Fasheh063c4562007-07-03 13:34:11 -07005126 u32 cpos, u32 len, handle_t *handle,
5127 struct ocfs2_alloc_context *meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -07005128 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fashehd0c7d702007-07-03 13:27:22 -07005129{
5130 int ret, index;
5131 u32 rec_range, trunc_range;
5132 struct ocfs2_extent_rec *rec;
5133 struct ocfs2_extent_list *el;
Tao Mae7d4cb62008-08-18 17:38:44 +08005134 struct ocfs2_path *path = NULL;
Mark Fashehd0c7d702007-07-03 13:27:22 -07005135
5136 ocfs2_extent_map_trunc(inode, 0);
5137
Joel Beckerf99b9b72008-08-20 19:36:33 -07005138 path = ocfs2_new_path(et->et_root_bh, et->et_root_el);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005139 if (!path) {
5140 ret = -ENOMEM;
5141 mlog_errno(ret);
5142 goto out;
5143 }
5144
5145 ret = ocfs2_find_path(inode, path, cpos);
5146 if (ret) {
5147 mlog_errno(ret);
5148 goto out;
5149 }
5150
5151 el = path_leaf_el(path);
5152 index = ocfs2_search_extent_list(el, cpos);
5153 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
5154 ocfs2_error(inode->i_sb,
5155 "Inode %llu has an extent at cpos %u which can no "
5156 "longer be found.\n",
5157 (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos);
5158 ret = -EROFS;
5159 goto out;
5160 }
5161
5162 /*
5163 * We have 3 cases of extent removal:
5164 * 1) Range covers the entire extent rec
5165 * 2) Range begins or ends on one edge of the extent rec
5166 * 3) Range is in the middle of the extent rec (no shared edges)
5167 *
5168 * For case 1 we remove the extent rec and left rotate to
5169 * fill the hole.
5170 *
5171 * For case 2 we just shrink the existing extent rec, with a
5172 * tree update if the shrinking edge is also the edge of an
5173 * extent block.
5174 *
5175 * For case 3 we do a right split to turn the extent rec into
5176 * something case 2 can handle.
5177 */
5178 rec = &el->l_recs[index];
5179 rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
5180 trunc_range = cpos + len;
5181
5182 BUG_ON(cpos < le32_to_cpu(rec->e_cpos) || trunc_range > rec_range);
5183
5184 mlog(0, "Inode %llu, remove (cpos %u, len %u). Existing index %d "
5185 "(cpos %u, len %u)\n",
5186 (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos, len, index,
5187 le32_to_cpu(rec->e_cpos), ocfs2_rec_clusters(el, rec));
5188
5189 if (le32_to_cpu(rec->e_cpos) == cpos || rec_range == trunc_range) {
5190 ret = ocfs2_truncate_rec(inode, handle, path, index, dealloc,
Joel Beckerf99b9b72008-08-20 19:36:33 -07005191 cpos, len, et);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005192 if (ret) {
5193 mlog_errno(ret);
5194 goto out;
5195 }
5196 } else {
Joel Beckerf99b9b72008-08-20 19:36:33 -07005197 ret = ocfs2_split_tree(inode, et, handle, path, index,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005198 trunc_range, meta_ac);
5199 if (ret) {
5200 mlog_errno(ret);
5201 goto out;
5202 }
5203
5204 /*
5205 * The split could have manipulated the tree enough to
5206 * move the record location, so we have to look for it again.
5207 */
5208 ocfs2_reinit_path(path, 1);
5209
5210 ret = ocfs2_find_path(inode, path, cpos);
5211 if (ret) {
5212 mlog_errno(ret);
5213 goto out;
5214 }
5215
5216 el = path_leaf_el(path);
5217 index = ocfs2_search_extent_list(el, cpos);
5218 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
5219 ocfs2_error(inode->i_sb,
5220 "Inode %llu: split at cpos %u lost record.",
5221 (unsigned long long)OCFS2_I(inode)->ip_blkno,
5222 cpos);
5223 ret = -EROFS;
5224 goto out;
5225 }
5226
5227 /*
5228 * Double check our values here. If anything is fishy,
5229 * it's easier to catch it at the top level.
5230 */
5231 rec = &el->l_recs[index];
5232 rec_range = le32_to_cpu(rec->e_cpos) +
5233 ocfs2_rec_clusters(el, rec);
5234 if (rec_range != trunc_range) {
5235 ocfs2_error(inode->i_sb,
5236 "Inode %llu: error after split at cpos %u"
5237 "trunc len %u, existing record is (%u,%u)",
5238 (unsigned long long)OCFS2_I(inode)->ip_blkno,
5239 cpos, len, le32_to_cpu(rec->e_cpos),
5240 ocfs2_rec_clusters(el, rec));
5241 ret = -EROFS;
5242 goto out;
5243 }
5244
5245 ret = ocfs2_truncate_rec(inode, handle, path, index, dealloc,
Joel Beckerf99b9b72008-08-20 19:36:33 -07005246 cpos, len, et);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005247 if (ret) {
5248 mlog_errno(ret);
5249 goto out;
5250 }
5251 }
5252
5253out:
5254 ocfs2_free_path(path);
5255 return ret;
5256}
5257
Mark Fasheh063c4562007-07-03 13:34:11 -07005258int ocfs2_truncate_log_needs_flush(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -08005259{
5260 struct buffer_head *tl_bh = osb->osb_tl_bh;
5261 struct ocfs2_dinode *di;
5262 struct ocfs2_truncate_log *tl;
5263
5264 di = (struct ocfs2_dinode *) tl_bh->b_data;
5265 tl = &di->id2.i_dealloc;
5266
5267 mlog_bug_on_msg(le16_to_cpu(tl->tl_used) > le16_to_cpu(tl->tl_count),
5268 "slot %d, invalid truncate log parameters: used = "
5269 "%u, count = %u\n", osb->slot_num,
5270 le16_to_cpu(tl->tl_used), le16_to_cpu(tl->tl_count));
5271 return le16_to_cpu(tl->tl_used) == le16_to_cpu(tl->tl_count);
5272}
5273
5274static int ocfs2_truncate_log_can_coalesce(struct ocfs2_truncate_log *tl,
5275 unsigned int new_start)
5276{
5277 unsigned int tail_index;
5278 unsigned int current_tail;
5279
5280 /* No records, nothing to coalesce */
5281 if (!le16_to_cpu(tl->tl_used))
5282 return 0;
5283
5284 tail_index = le16_to_cpu(tl->tl_used) - 1;
5285 current_tail = le32_to_cpu(tl->tl_recs[tail_index].t_start);
5286 current_tail += le32_to_cpu(tl->tl_recs[tail_index].t_clusters);
5287
5288 return current_tail == new_start;
5289}
5290
Mark Fasheh063c4562007-07-03 13:34:11 -07005291int ocfs2_truncate_log_append(struct ocfs2_super *osb,
5292 handle_t *handle,
5293 u64 start_blk,
5294 unsigned int num_clusters)
Mark Fashehccd979b2005-12-15 14:31:24 -08005295{
5296 int status, index;
5297 unsigned int start_cluster, tl_count;
5298 struct inode *tl_inode = osb->osb_tl_inode;
5299 struct buffer_head *tl_bh = osb->osb_tl_bh;
5300 struct ocfs2_dinode *di;
5301 struct ocfs2_truncate_log *tl;
5302
Mark Fashehb06970532006-03-03 10:24:33 -08005303 mlog_entry("start_blk = %llu, num_clusters = %u\n",
5304 (unsigned long long)start_blk, num_clusters);
Mark Fashehccd979b2005-12-15 14:31:24 -08005305
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005306 BUG_ON(mutex_trylock(&tl_inode->i_mutex));
Mark Fashehccd979b2005-12-15 14:31:24 -08005307
5308 start_cluster = ocfs2_blocks_to_clusters(osb->sb, start_blk);
5309
5310 di = (struct ocfs2_dinode *) tl_bh->b_data;
5311 tl = &di->id2.i_dealloc;
5312 if (!OCFS2_IS_VALID_DINODE(di)) {
5313 OCFS2_RO_ON_INVALID_DINODE(osb->sb, di);
5314 status = -EIO;
5315 goto bail;
5316 }
5317
5318 tl_count = le16_to_cpu(tl->tl_count);
5319 mlog_bug_on_msg(tl_count > ocfs2_truncate_recs_per_inode(osb->sb) ||
5320 tl_count == 0,
Mark Fashehb06970532006-03-03 10:24:33 -08005321 "Truncate record count on #%llu invalid "
5322 "wanted %u, actual %u\n",
5323 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08005324 ocfs2_truncate_recs_per_inode(osb->sb),
5325 le16_to_cpu(tl->tl_count));
5326
5327 /* Caller should have known to flush before calling us. */
5328 index = le16_to_cpu(tl->tl_used);
5329 if (index >= tl_count) {
5330 status = -ENOSPC;
5331 mlog_errno(status);
5332 goto bail;
5333 }
5334
5335 status = ocfs2_journal_access(handle, tl_inode, tl_bh,
5336 OCFS2_JOURNAL_ACCESS_WRITE);
5337 if (status < 0) {
5338 mlog_errno(status);
5339 goto bail;
5340 }
5341
5342 mlog(0, "Log truncate of %u clusters starting at cluster %u to "
Mark Fashehb06970532006-03-03 10:24:33 -08005343 "%llu (index = %d)\n", num_clusters, start_cluster,
5344 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, index);
Mark Fashehccd979b2005-12-15 14:31:24 -08005345
5346 if (ocfs2_truncate_log_can_coalesce(tl, start_cluster)) {
5347 /*
5348 * Move index back to the record we are coalescing with.
5349 * ocfs2_truncate_log_can_coalesce() guarantees nonzero
5350 */
5351 index--;
5352
5353 num_clusters += le32_to_cpu(tl->tl_recs[index].t_clusters);
5354 mlog(0, "Coalesce with index %u (start = %u, clusters = %u)\n",
5355 index, le32_to_cpu(tl->tl_recs[index].t_start),
5356 num_clusters);
5357 } else {
5358 tl->tl_recs[index].t_start = cpu_to_le32(start_cluster);
5359 tl->tl_used = cpu_to_le16(index + 1);
5360 }
5361 tl->tl_recs[index].t_clusters = cpu_to_le32(num_clusters);
5362
5363 status = ocfs2_journal_dirty(handle, tl_bh);
5364 if (status < 0) {
5365 mlog_errno(status);
5366 goto bail;
5367 }
5368
5369bail:
5370 mlog_exit(status);
5371 return status;
5372}
5373
5374static int ocfs2_replay_truncate_records(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07005375 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08005376 struct inode *data_alloc_inode,
5377 struct buffer_head *data_alloc_bh)
5378{
5379 int status = 0;
5380 int i;
5381 unsigned int num_clusters;
5382 u64 start_blk;
5383 struct ocfs2_truncate_rec rec;
5384 struct ocfs2_dinode *di;
5385 struct ocfs2_truncate_log *tl;
5386 struct inode *tl_inode = osb->osb_tl_inode;
5387 struct buffer_head *tl_bh = osb->osb_tl_bh;
5388
5389 mlog_entry_void();
5390
5391 di = (struct ocfs2_dinode *) tl_bh->b_data;
5392 tl = &di->id2.i_dealloc;
5393 i = le16_to_cpu(tl->tl_used) - 1;
5394 while (i >= 0) {
5395 /* Caller has given us at least enough credits to
5396 * update the truncate log dinode */
5397 status = ocfs2_journal_access(handle, tl_inode, tl_bh,
5398 OCFS2_JOURNAL_ACCESS_WRITE);
5399 if (status < 0) {
5400 mlog_errno(status);
5401 goto bail;
5402 }
5403
5404 tl->tl_used = cpu_to_le16(i);
5405
5406 status = ocfs2_journal_dirty(handle, tl_bh);
5407 if (status < 0) {
5408 mlog_errno(status);
5409 goto bail;
5410 }
5411
5412 /* TODO: Perhaps we can calculate the bulk of the
5413 * credits up front rather than extending like
5414 * this. */
5415 status = ocfs2_extend_trans(handle,
5416 OCFS2_TRUNCATE_LOG_FLUSH_ONE_REC);
5417 if (status < 0) {
5418 mlog_errno(status);
5419 goto bail;
5420 }
5421
5422 rec = tl->tl_recs[i];
5423 start_blk = ocfs2_clusters_to_blocks(data_alloc_inode->i_sb,
5424 le32_to_cpu(rec.t_start));
5425 num_clusters = le32_to_cpu(rec.t_clusters);
5426
5427 /* if start_blk is not set, we ignore the record as
5428 * invalid. */
5429 if (start_blk) {
5430 mlog(0, "free record %d, start = %u, clusters = %u\n",
5431 i, le32_to_cpu(rec.t_start), num_clusters);
5432
5433 status = ocfs2_free_clusters(handle, data_alloc_inode,
5434 data_alloc_bh, start_blk,
5435 num_clusters);
5436 if (status < 0) {
5437 mlog_errno(status);
5438 goto bail;
5439 }
5440 }
5441 i--;
5442 }
5443
5444bail:
5445 mlog_exit(status);
5446 return status;
5447}
5448
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005449/* Expects you to already be holding tl_inode->i_mutex */
Mark Fasheh063c4562007-07-03 13:34:11 -07005450int __ocfs2_flush_truncate_log(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -08005451{
5452 int status;
5453 unsigned int num_to_flush;
Mark Fasheh1fabe142006-10-09 18:11:45 -07005454 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08005455 struct inode *tl_inode = osb->osb_tl_inode;
5456 struct inode *data_alloc_inode = NULL;
5457 struct buffer_head *tl_bh = osb->osb_tl_bh;
5458 struct buffer_head *data_alloc_bh = NULL;
5459 struct ocfs2_dinode *di;
5460 struct ocfs2_truncate_log *tl;
5461
5462 mlog_entry_void();
5463
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005464 BUG_ON(mutex_trylock(&tl_inode->i_mutex));
Mark Fashehccd979b2005-12-15 14:31:24 -08005465
5466 di = (struct ocfs2_dinode *) tl_bh->b_data;
5467 tl = &di->id2.i_dealloc;
5468 if (!OCFS2_IS_VALID_DINODE(di)) {
5469 OCFS2_RO_ON_INVALID_DINODE(osb->sb, di);
5470 status = -EIO;
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005471 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08005472 }
5473
5474 num_to_flush = le16_to_cpu(tl->tl_used);
Mark Fashehb06970532006-03-03 10:24:33 -08005475 mlog(0, "Flush %u records from truncate log #%llu\n",
5476 num_to_flush, (unsigned long long)OCFS2_I(tl_inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08005477 if (!num_to_flush) {
5478 status = 0;
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005479 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08005480 }
5481
5482 data_alloc_inode = ocfs2_get_system_file_inode(osb,
5483 GLOBAL_BITMAP_SYSTEM_INODE,
5484 OCFS2_INVALID_SLOT);
5485 if (!data_alloc_inode) {
5486 status = -EINVAL;
5487 mlog(ML_ERROR, "Could not get bitmap inode!\n");
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005488 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08005489 }
5490
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005491 mutex_lock(&data_alloc_inode->i_mutex);
5492
Mark Fashehe63aecb62007-10-18 15:30:42 -07005493 status = ocfs2_inode_lock(data_alloc_inode, &data_alloc_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08005494 if (status < 0) {
5495 mlog_errno(status);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005496 goto out_mutex;
Mark Fashehccd979b2005-12-15 14:31:24 -08005497 }
5498
Mark Fasheh65eff9c2006-10-09 17:26:22 -07005499 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08005500 if (IS_ERR(handle)) {
5501 status = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08005502 mlog_errno(status);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005503 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -08005504 }
5505
5506 status = ocfs2_replay_truncate_records(osb, handle, data_alloc_inode,
5507 data_alloc_bh);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005508 if (status < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -08005509 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08005510
Mark Fasheh02dc1af2006-10-09 16:48:10 -07005511 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08005512
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005513out_unlock:
5514 brelse(data_alloc_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07005515 ocfs2_inode_unlock(data_alloc_inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08005516
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005517out_mutex:
5518 mutex_unlock(&data_alloc_inode->i_mutex);
5519 iput(data_alloc_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08005520
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005521out:
Mark Fashehccd979b2005-12-15 14:31:24 -08005522 mlog_exit(status);
5523 return status;
5524}
5525
5526int ocfs2_flush_truncate_log(struct ocfs2_super *osb)
5527{
5528 int status;
5529 struct inode *tl_inode = osb->osb_tl_inode;
5530
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005531 mutex_lock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08005532 status = __ocfs2_flush_truncate_log(osb);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005533 mutex_unlock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08005534
5535 return status;
5536}
5537
David Howellsc4028952006-11-22 14:57:56 +00005538static void ocfs2_truncate_log_worker(struct work_struct *work)
Mark Fashehccd979b2005-12-15 14:31:24 -08005539{
5540 int status;
David Howellsc4028952006-11-22 14:57:56 +00005541 struct ocfs2_super *osb =
5542 container_of(work, struct ocfs2_super,
5543 osb_truncate_log_wq.work);
Mark Fashehccd979b2005-12-15 14:31:24 -08005544
5545 mlog_entry_void();
5546
5547 status = ocfs2_flush_truncate_log(osb);
5548 if (status < 0)
5549 mlog_errno(status);
Tao Ma4d0ddb22008-03-05 16:11:46 +08005550 else
5551 ocfs2_init_inode_steal_slot(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08005552
5553 mlog_exit(status);
5554}
5555
5556#define OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL (2 * HZ)
5557void ocfs2_schedule_truncate_log_flush(struct ocfs2_super *osb,
5558 int cancel)
5559{
5560 if (osb->osb_tl_inode) {
5561 /* We want to push off log flushes while truncates are
5562 * still running. */
5563 if (cancel)
5564 cancel_delayed_work(&osb->osb_truncate_log_wq);
5565
5566 queue_delayed_work(ocfs2_wq, &osb->osb_truncate_log_wq,
5567 OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL);
5568 }
5569}
5570
5571static int ocfs2_get_truncate_log_info(struct ocfs2_super *osb,
5572 int slot_num,
5573 struct inode **tl_inode,
5574 struct buffer_head **tl_bh)
5575{
5576 int status;
5577 struct inode *inode = NULL;
5578 struct buffer_head *bh = NULL;
5579
5580 inode = ocfs2_get_system_file_inode(osb,
5581 TRUNCATE_LOG_SYSTEM_INODE,
5582 slot_num);
5583 if (!inode) {
5584 status = -EINVAL;
5585 mlog(ML_ERROR, "Could not get load truncate log inode!\n");
5586 goto bail;
5587 }
5588
Joel Becker0fcaa562008-10-09 17:20:31 -07005589 status = ocfs2_read_block(inode, OCFS2_I(inode)->ip_blkno, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08005590 if (status < 0) {
5591 iput(inode);
5592 mlog_errno(status);
5593 goto bail;
5594 }
5595
5596 *tl_inode = inode;
5597 *tl_bh = bh;
5598bail:
5599 mlog_exit(status);
5600 return status;
5601}
5602
5603/* called during the 1st stage of node recovery. we stamp a clean
5604 * truncate log and pass back a copy for processing later. if the
5605 * truncate log does not require processing, a *tl_copy is set to
5606 * NULL. */
5607int ocfs2_begin_truncate_log_recovery(struct ocfs2_super *osb,
5608 int slot_num,
5609 struct ocfs2_dinode **tl_copy)
5610{
5611 int status;
5612 struct inode *tl_inode = NULL;
5613 struct buffer_head *tl_bh = NULL;
5614 struct ocfs2_dinode *di;
5615 struct ocfs2_truncate_log *tl;
5616
5617 *tl_copy = NULL;
5618
5619 mlog(0, "recover truncate log from slot %d\n", slot_num);
5620
5621 status = ocfs2_get_truncate_log_info(osb, slot_num, &tl_inode, &tl_bh);
5622 if (status < 0) {
5623 mlog_errno(status);
5624 goto bail;
5625 }
5626
5627 di = (struct ocfs2_dinode *) tl_bh->b_data;
5628 tl = &di->id2.i_dealloc;
5629 if (!OCFS2_IS_VALID_DINODE(di)) {
5630 OCFS2_RO_ON_INVALID_DINODE(tl_inode->i_sb, di);
5631 status = -EIO;
5632 goto bail;
5633 }
5634
5635 if (le16_to_cpu(tl->tl_used)) {
5636 mlog(0, "We'll have %u logs to recover\n",
5637 le16_to_cpu(tl->tl_used));
5638
5639 *tl_copy = kmalloc(tl_bh->b_size, GFP_KERNEL);
5640 if (!(*tl_copy)) {
5641 status = -ENOMEM;
5642 mlog_errno(status);
5643 goto bail;
5644 }
5645
5646 /* Assuming the write-out below goes well, this copy
5647 * will be passed back to recovery for processing. */
5648 memcpy(*tl_copy, tl_bh->b_data, tl_bh->b_size);
5649
5650 /* All we need to do to clear the truncate log is set
5651 * tl_used. */
5652 tl->tl_used = 0;
5653
5654 status = ocfs2_write_block(osb, tl_bh, tl_inode);
5655 if (status < 0) {
5656 mlog_errno(status);
5657 goto bail;
5658 }
5659 }
5660
5661bail:
5662 if (tl_inode)
5663 iput(tl_inode);
Mark Fasheha81cb882008-10-07 14:25:16 -07005664 brelse(tl_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08005665
5666 if (status < 0 && (*tl_copy)) {
5667 kfree(*tl_copy);
5668 *tl_copy = NULL;
5669 }
5670
5671 mlog_exit(status);
5672 return status;
5673}
5674
5675int ocfs2_complete_truncate_log_recovery(struct ocfs2_super *osb,
5676 struct ocfs2_dinode *tl_copy)
5677{
5678 int status = 0;
5679 int i;
5680 unsigned int clusters, num_recs, start_cluster;
5681 u64 start_blk;
Mark Fasheh1fabe142006-10-09 18:11:45 -07005682 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08005683 struct inode *tl_inode = osb->osb_tl_inode;
5684 struct ocfs2_truncate_log *tl;
5685
5686 mlog_entry_void();
5687
5688 if (OCFS2_I(tl_inode)->ip_blkno == le64_to_cpu(tl_copy->i_blkno)) {
5689 mlog(ML_ERROR, "Asked to recover my own truncate log!\n");
5690 return -EINVAL;
5691 }
5692
5693 tl = &tl_copy->id2.i_dealloc;
5694 num_recs = le16_to_cpu(tl->tl_used);
Mark Fashehb06970532006-03-03 10:24:33 -08005695 mlog(0, "cleanup %u records from %llu\n", num_recs,
Mark Fasheh1ca1a112007-04-27 16:01:25 -07005696 (unsigned long long)le64_to_cpu(tl_copy->i_blkno));
Mark Fashehccd979b2005-12-15 14:31:24 -08005697
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005698 mutex_lock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08005699 for(i = 0; i < num_recs; i++) {
5700 if (ocfs2_truncate_log_needs_flush(osb)) {
5701 status = __ocfs2_flush_truncate_log(osb);
5702 if (status < 0) {
5703 mlog_errno(status);
5704 goto bail_up;
5705 }
5706 }
5707
Mark Fasheh65eff9c2006-10-09 17:26:22 -07005708 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08005709 if (IS_ERR(handle)) {
5710 status = PTR_ERR(handle);
5711 mlog_errno(status);
5712 goto bail_up;
5713 }
5714
5715 clusters = le32_to_cpu(tl->tl_recs[i].t_clusters);
5716 start_cluster = le32_to_cpu(tl->tl_recs[i].t_start);
5717 start_blk = ocfs2_clusters_to_blocks(osb->sb, start_cluster);
5718
5719 status = ocfs2_truncate_log_append(osb, handle,
5720 start_blk, clusters);
Mark Fasheh02dc1af2006-10-09 16:48:10 -07005721 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08005722 if (status < 0) {
5723 mlog_errno(status);
5724 goto bail_up;
5725 }
5726 }
5727
5728bail_up:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005729 mutex_unlock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08005730
5731 mlog_exit(status);
5732 return status;
5733}
5734
5735void ocfs2_truncate_log_shutdown(struct ocfs2_super *osb)
5736{
5737 int status;
5738 struct inode *tl_inode = osb->osb_tl_inode;
5739
5740 mlog_entry_void();
5741
5742 if (tl_inode) {
5743 cancel_delayed_work(&osb->osb_truncate_log_wq);
5744 flush_workqueue(ocfs2_wq);
5745
5746 status = ocfs2_flush_truncate_log(osb);
5747 if (status < 0)
5748 mlog_errno(status);
5749
5750 brelse(osb->osb_tl_bh);
5751 iput(osb->osb_tl_inode);
5752 }
5753
5754 mlog_exit_void();
5755}
5756
5757int ocfs2_truncate_log_init(struct ocfs2_super *osb)
5758{
5759 int status;
5760 struct inode *tl_inode = NULL;
5761 struct buffer_head *tl_bh = NULL;
5762
5763 mlog_entry_void();
5764
5765 status = ocfs2_get_truncate_log_info(osb,
5766 osb->slot_num,
5767 &tl_inode,
5768 &tl_bh);
5769 if (status < 0)
5770 mlog_errno(status);
5771
5772 /* ocfs2_truncate_log_shutdown keys on the existence of
5773 * osb->osb_tl_inode so we don't set any of the osb variables
5774 * until we're sure all is well. */
David Howellsc4028952006-11-22 14:57:56 +00005775 INIT_DELAYED_WORK(&osb->osb_truncate_log_wq,
5776 ocfs2_truncate_log_worker);
Mark Fashehccd979b2005-12-15 14:31:24 -08005777 osb->osb_tl_bh = tl_bh;
5778 osb->osb_tl_inode = tl_inode;
5779
5780 mlog_exit(status);
5781 return status;
5782}
5783
Mark Fasheh2b604352007-06-22 15:45:27 -07005784/*
5785 * Delayed de-allocation of suballocator blocks.
5786 *
5787 * Some sets of block de-allocations might involve multiple suballocator inodes.
5788 *
5789 * The locking for this can get extremely complicated, especially when
5790 * the suballocator inodes to delete from aren't known until deep
5791 * within an unrelated codepath.
5792 *
5793 * ocfs2_extent_block structures are a good example of this - an inode
5794 * btree could have been grown by any number of nodes each allocating
5795 * out of their own suballoc inode.
5796 *
5797 * These structures allow the delay of block de-allocation until a
5798 * later time, when locking of multiple cluster inodes won't cause
5799 * deadlock.
5800 */
5801
5802/*
Tao Ma2891d292008-11-12 08:26:58 +08005803 * Describe a single bit freed from a suballocator. For the block
5804 * suballocators, it represents one block. For the global cluster
5805 * allocator, it represents some clusters and free_bit indicates
5806 * clusters number.
Mark Fasheh2b604352007-06-22 15:45:27 -07005807 */
5808struct ocfs2_cached_block_free {
5809 struct ocfs2_cached_block_free *free_next;
5810 u64 free_blk;
5811 unsigned int free_bit;
5812};
5813
5814struct ocfs2_per_slot_free_list {
5815 struct ocfs2_per_slot_free_list *f_next_suballocator;
5816 int f_inode_type;
5817 int f_slot;
5818 struct ocfs2_cached_block_free *f_first;
5819};
5820
Tao Ma2891d292008-11-12 08:26:58 +08005821static int ocfs2_free_cached_blocks(struct ocfs2_super *osb,
5822 int sysfile_type,
5823 int slot,
5824 struct ocfs2_cached_block_free *head)
Mark Fasheh2b604352007-06-22 15:45:27 -07005825{
5826 int ret;
5827 u64 bg_blkno;
5828 handle_t *handle;
5829 struct inode *inode;
5830 struct buffer_head *di_bh = NULL;
5831 struct ocfs2_cached_block_free *tmp;
5832
5833 inode = ocfs2_get_system_file_inode(osb, sysfile_type, slot);
5834 if (!inode) {
5835 ret = -EINVAL;
5836 mlog_errno(ret);
5837 goto out;
5838 }
5839
5840 mutex_lock(&inode->i_mutex);
5841
Mark Fashehe63aecb62007-10-18 15:30:42 -07005842 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fasheh2b604352007-06-22 15:45:27 -07005843 if (ret) {
5844 mlog_errno(ret);
5845 goto out_mutex;
5846 }
5847
5848 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
5849 if (IS_ERR(handle)) {
5850 ret = PTR_ERR(handle);
5851 mlog_errno(ret);
5852 goto out_unlock;
5853 }
5854
5855 while (head) {
5856 bg_blkno = ocfs2_which_suballoc_group(head->free_blk,
5857 head->free_bit);
5858 mlog(0, "Free bit: (bit %u, blkno %llu)\n",
5859 head->free_bit, (unsigned long long)head->free_blk);
5860
5861 ret = ocfs2_free_suballoc_bits(handle, inode, di_bh,
5862 head->free_bit, bg_blkno, 1);
5863 if (ret) {
5864 mlog_errno(ret);
5865 goto out_journal;
5866 }
5867
5868 ret = ocfs2_extend_trans(handle, OCFS2_SUBALLOC_FREE);
5869 if (ret) {
5870 mlog_errno(ret);
5871 goto out_journal;
5872 }
5873
5874 tmp = head;
5875 head = head->free_next;
5876 kfree(tmp);
5877 }
5878
5879out_journal:
5880 ocfs2_commit_trans(osb, handle);
5881
5882out_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -07005883 ocfs2_inode_unlock(inode, 1);
Mark Fasheh2b604352007-06-22 15:45:27 -07005884 brelse(di_bh);
5885out_mutex:
5886 mutex_unlock(&inode->i_mutex);
5887 iput(inode);
5888out:
5889 while(head) {
5890 /* Premature exit may have left some dangling items. */
5891 tmp = head;
5892 head = head->free_next;
5893 kfree(tmp);
5894 }
5895
5896 return ret;
5897}
5898
Tao Ma2891d292008-11-12 08:26:58 +08005899int ocfs2_cache_cluster_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
5900 u64 blkno, unsigned int bit)
5901{
5902 int ret = 0;
5903 struct ocfs2_cached_block_free *item;
5904
5905 item = kmalloc(sizeof(*item), GFP_NOFS);
5906 if (item == NULL) {
5907 ret = -ENOMEM;
5908 mlog_errno(ret);
5909 return ret;
5910 }
5911
5912 mlog(0, "Insert clusters: (bit %u, blk %llu)\n",
5913 bit, (unsigned long long)blkno);
5914
5915 item->free_blk = blkno;
5916 item->free_bit = bit;
5917 item->free_next = ctxt->c_global_allocator;
5918
5919 ctxt->c_global_allocator = item;
5920 return ret;
5921}
5922
5923static int ocfs2_free_cached_clusters(struct ocfs2_super *osb,
5924 struct ocfs2_cached_block_free *head)
5925{
5926 struct ocfs2_cached_block_free *tmp;
5927 struct inode *tl_inode = osb->osb_tl_inode;
5928 handle_t *handle;
5929 int ret = 0;
5930
5931 mutex_lock(&tl_inode->i_mutex);
5932
5933 while (head) {
5934 if (ocfs2_truncate_log_needs_flush(osb)) {
5935 ret = __ocfs2_flush_truncate_log(osb);
5936 if (ret < 0) {
5937 mlog_errno(ret);
5938 break;
5939 }
5940 }
5941
5942 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
5943 if (IS_ERR(handle)) {
5944 ret = PTR_ERR(handle);
5945 mlog_errno(ret);
5946 break;
5947 }
5948
5949 ret = ocfs2_truncate_log_append(osb, handle, head->free_blk,
5950 head->free_bit);
5951
5952 ocfs2_commit_trans(osb, handle);
5953 tmp = head;
5954 head = head->free_next;
5955 kfree(tmp);
5956
5957 if (ret < 0) {
5958 mlog_errno(ret);
5959 break;
5960 }
5961 }
5962
5963 mutex_unlock(&tl_inode->i_mutex);
5964
5965 while (head) {
5966 /* Premature exit may have left some dangling items. */
5967 tmp = head;
5968 head = head->free_next;
5969 kfree(tmp);
5970 }
5971
5972 return ret;
5973}
5974
Mark Fasheh2b604352007-06-22 15:45:27 -07005975int ocfs2_run_deallocs(struct ocfs2_super *osb,
5976 struct ocfs2_cached_dealloc_ctxt *ctxt)
5977{
5978 int ret = 0, ret2;
5979 struct ocfs2_per_slot_free_list *fl;
5980
5981 if (!ctxt)
5982 return 0;
5983
5984 while (ctxt->c_first_suballocator) {
5985 fl = ctxt->c_first_suballocator;
5986
5987 if (fl->f_first) {
5988 mlog(0, "Free items: (type %u, slot %d)\n",
5989 fl->f_inode_type, fl->f_slot);
Tao Ma2891d292008-11-12 08:26:58 +08005990 ret2 = ocfs2_free_cached_blocks(osb,
5991 fl->f_inode_type,
5992 fl->f_slot,
5993 fl->f_first);
Mark Fasheh2b604352007-06-22 15:45:27 -07005994 if (ret2)
5995 mlog_errno(ret2);
5996 if (!ret)
5997 ret = ret2;
5998 }
5999
6000 ctxt->c_first_suballocator = fl->f_next_suballocator;
6001 kfree(fl);
6002 }
6003
Tao Ma2891d292008-11-12 08:26:58 +08006004 if (ctxt->c_global_allocator) {
6005 ret2 = ocfs2_free_cached_clusters(osb,
6006 ctxt->c_global_allocator);
6007 if (ret2)
6008 mlog_errno(ret2);
6009 if (!ret)
6010 ret = ret2;
6011
6012 ctxt->c_global_allocator = NULL;
6013 }
6014
Mark Fasheh2b604352007-06-22 15:45:27 -07006015 return ret;
6016}
6017
6018static struct ocfs2_per_slot_free_list *
6019ocfs2_find_per_slot_free_list(int type,
6020 int slot,
6021 struct ocfs2_cached_dealloc_ctxt *ctxt)
6022{
6023 struct ocfs2_per_slot_free_list *fl = ctxt->c_first_suballocator;
6024
6025 while (fl) {
6026 if (fl->f_inode_type == type && fl->f_slot == slot)
6027 return fl;
6028
6029 fl = fl->f_next_suballocator;
6030 }
6031
6032 fl = kmalloc(sizeof(*fl), GFP_NOFS);
6033 if (fl) {
6034 fl->f_inode_type = type;
6035 fl->f_slot = slot;
6036 fl->f_first = NULL;
6037 fl->f_next_suballocator = ctxt->c_first_suballocator;
6038
6039 ctxt->c_first_suballocator = fl;
6040 }
6041 return fl;
6042}
6043
6044static int ocfs2_cache_block_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
6045 int type, int slot, u64 blkno,
6046 unsigned int bit)
6047{
6048 int ret;
6049 struct ocfs2_per_slot_free_list *fl;
6050 struct ocfs2_cached_block_free *item;
6051
6052 fl = ocfs2_find_per_slot_free_list(type, slot, ctxt);
6053 if (fl == NULL) {
6054 ret = -ENOMEM;
6055 mlog_errno(ret);
6056 goto out;
6057 }
6058
6059 item = kmalloc(sizeof(*item), GFP_NOFS);
6060 if (item == NULL) {
6061 ret = -ENOMEM;
6062 mlog_errno(ret);
6063 goto out;
6064 }
6065
6066 mlog(0, "Insert: (type %d, slot %u, bit %u, blk %llu)\n",
6067 type, slot, bit, (unsigned long long)blkno);
6068
6069 item->free_blk = blkno;
6070 item->free_bit = bit;
6071 item->free_next = fl->f_first;
6072
6073 fl->f_first = item;
6074
6075 ret = 0;
6076out:
6077 return ret;
6078}
6079
Mark Fasheh59a5e412007-06-22 15:52:36 -07006080static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt,
6081 struct ocfs2_extent_block *eb)
6082{
6083 return ocfs2_cache_block_dealloc(ctxt, EXTENT_ALLOC_SYSTEM_INODE,
6084 le16_to_cpu(eb->h_suballoc_slot),
6085 le64_to_cpu(eb->h_blkno),
6086 le16_to_cpu(eb->h_suballoc_bit));
6087}
6088
Mark Fashehccd979b2005-12-15 14:31:24 -08006089/* This function will figure out whether the currently last extent
6090 * block will be deleted, and if it will, what the new last extent
6091 * block will be so we can update his h_next_leaf_blk field, as well
6092 * as the dinodes i_last_eb_blk */
Mark Fashehdcd05382007-01-16 11:32:23 -08006093static int ocfs2_find_new_last_ext_blk(struct inode *inode,
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006094 unsigned int clusters_to_del,
Mark Fashehdcd05382007-01-16 11:32:23 -08006095 struct ocfs2_path *path,
Mark Fashehccd979b2005-12-15 14:31:24 -08006096 struct buffer_head **new_last_eb)
6097{
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006098 int next_free, ret = 0;
Mark Fashehdcd05382007-01-16 11:32:23 -08006099 u32 cpos;
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006100 struct ocfs2_extent_rec *rec;
Mark Fashehccd979b2005-12-15 14:31:24 -08006101 struct ocfs2_extent_block *eb;
6102 struct ocfs2_extent_list *el;
6103 struct buffer_head *bh = NULL;
6104
6105 *new_last_eb = NULL;
6106
Mark Fashehccd979b2005-12-15 14:31:24 -08006107 /* we have no tree, so of course, no last_eb. */
Mark Fashehdcd05382007-01-16 11:32:23 -08006108 if (!path->p_tree_depth)
6109 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08006110
6111 /* trunc to zero special case - this makes tree_depth = 0
6112 * regardless of what it is. */
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006113 if (OCFS2_I(inode)->ip_clusters == clusters_to_del)
Mark Fashehdcd05382007-01-16 11:32:23 -08006114 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08006115
Mark Fashehdcd05382007-01-16 11:32:23 -08006116 el = path_leaf_el(path);
Mark Fashehccd979b2005-12-15 14:31:24 -08006117 BUG_ON(!el->l_next_free_rec);
6118
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006119 /*
6120 * Make sure that this extent list will actually be empty
6121 * after we clear away the data. We can shortcut out if
6122 * there's more than one non-empty extent in the
6123 * list. Otherwise, a check of the remaining extent is
6124 * necessary.
6125 */
6126 next_free = le16_to_cpu(el->l_next_free_rec);
6127 rec = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -08006128 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006129 if (next_free > 2)
Mark Fashehdcd05382007-01-16 11:32:23 -08006130 goto out;
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006131
6132 /* We may have a valid extent in index 1, check it. */
6133 if (next_free == 2)
6134 rec = &el->l_recs[1];
6135
6136 /*
6137 * Fall through - no more nonempty extents, so we want
6138 * to delete this leaf.
6139 */
6140 } else {
6141 if (next_free > 1)
6142 goto out;
6143
6144 rec = &el->l_recs[0];
6145 }
6146
6147 if (rec) {
6148 /*
6149 * Check it we'll only be trimming off the end of this
6150 * cluster.
6151 */
Mark Fashehe48edee2007-03-07 16:46:57 -08006152 if (le16_to_cpu(rec->e_leaf_clusters) > clusters_to_del)
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006153 goto out;
6154 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006155
Mark Fashehdcd05382007-01-16 11:32:23 -08006156 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, path, &cpos);
6157 if (ret) {
6158 mlog_errno(ret);
6159 goto out;
6160 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006161
Mark Fashehdcd05382007-01-16 11:32:23 -08006162 ret = ocfs2_find_leaf(inode, path_root_el(path), cpos, &bh);
6163 if (ret) {
6164 mlog_errno(ret);
6165 goto out;
6166 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006167
Mark Fashehdcd05382007-01-16 11:32:23 -08006168 eb = (struct ocfs2_extent_block *) bh->b_data;
6169 el = &eb->h_list;
6170 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
6171 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
6172 ret = -EROFS;
6173 goto out;
6174 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006175
6176 *new_last_eb = bh;
6177 get_bh(*new_last_eb);
Mark Fashehdcd05382007-01-16 11:32:23 -08006178 mlog(0, "returning block %llu, (cpos: %u)\n",
6179 (unsigned long long)le64_to_cpu(eb->h_blkno), cpos);
6180out:
6181 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006182
Mark Fashehdcd05382007-01-16 11:32:23 -08006183 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08006184}
6185
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006186/*
6187 * Trim some clusters off the rightmost edge of a tree. Only called
6188 * during truncate.
6189 *
6190 * The caller needs to:
6191 * - start journaling of each path component.
6192 * - compute and fully set up any new last ext block
6193 */
6194static int ocfs2_trim_tree(struct inode *inode, struct ocfs2_path *path,
6195 handle_t *handle, struct ocfs2_truncate_context *tc,
6196 u32 clusters_to_del, u64 *delete_start)
6197{
6198 int ret, i, index = path->p_tree_depth;
6199 u32 new_edge = 0;
6200 u64 deleted_eb = 0;
6201 struct buffer_head *bh;
6202 struct ocfs2_extent_list *el;
6203 struct ocfs2_extent_rec *rec;
6204
6205 *delete_start = 0;
6206
6207 while (index >= 0) {
6208 bh = path->p_node[index].bh;
6209 el = path->p_node[index].el;
6210
6211 mlog(0, "traveling tree (index = %d, block = %llu)\n",
6212 index, (unsigned long long)bh->b_blocknr);
6213
6214 BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0);
6215
6216 if (index !=
6217 (path->p_tree_depth - le16_to_cpu(el->l_tree_depth))) {
6218 ocfs2_error(inode->i_sb,
6219 "Inode %lu has invalid ext. block %llu",
6220 inode->i_ino,
6221 (unsigned long long)bh->b_blocknr);
6222 ret = -EROFS;
6223 goto out;
6224 }
6225
6226find_tail_record:
6227 i = le16_to_cpu(el->l_next_free_rec) - 1;
6228 rec = &el->l_recs[i];
6229
6230 mlog(0, "Extent list before: record %d: (%u, %u, %llu), "
6231 "next = %u\n", i, le32_to_cpu(rec->e_cpos),
Mark Fashehe48edee2007-03-07 16:46:57 -08006232 ocfs2_rec_clusters(el, rec),
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006233 (unsigned long long)le64_to_cpu(rec->e_blkno),
6234 le16_to_cpu(el->l_next_free_rec));
6235
Mark Fashehe48edee2007-03-07 16:46:57 -08006236 BUG_ON(ocfs2_rec_clusters(el, rec) < clusters_to_del);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006237
6238 if (le16_to_cpu(el->l_tree_depth) == 0) {
6239 /*
6240 * If the leaf block contains a single empty
6241 * extent and no records, we can just remove
6242 * the block.
6243 */
6244 if (i == 0 && ocfs2_is_empty_extent(rec)) {
6245 memset(rec, 0,
6246 sizeof(struct ocfs2_extent_rec));
6247 el->l_next_free_rec = cpu_to_le16(0);
6248
6249 goto delete;
6250 }
6251
6252 /*
6253 * Remove any empty extents by shifting things
6254 * left. That should make life much easier on
6255 * the code below. This condition is rare
6256 * enough that we shouldn't see a performance
6257 * hit.
6258 */
6259 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
6260 le16_add_cpu(&el->l_next_free_rec, -1);
6261
6262 for(i = 0;
6263 i < le16_to_cpu(el->l_next_free_rec); i++)
6264 el->l_recs[i] = el->l_recs[i + 1];
6265
6266 memset(&el->l_recs[i], 0,
6267 sizeof(struct ocfs2_extent_rec));
6268
6269 /*
6270 * We've modified our extent list. The
6271 * simplest way to handle this change
6272 * is to being the search from the
6273 * start again.
6274 */
6275 goto find_tail_record;
6276 }
6277
Mark Fashehe48edee2007-03-07 16:46:57 -08006278 le16_add_cpu(&rec->e_leaf_clusters, -clusters_to_del);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006279
6280 /*
6281 * We'll use "new_edge" on our way back up the
6282 * tree to know what our rightmost cpos is.
6283 */
Mark Fashehe48edee2007-03-07 16:46:57 -08006284 new_edge = le16_to_cpu(rec->e_leaf_clusters);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006285 new_edge += le32_to_cpu(rec->e_cpos);
6286
6287 /*
6288 * The caller will use this to delete data blocks.
6289 */
6290 *delete_start = le64_to_cpu(rec->e_blkno)
6291 + ocfs2_clusters_to_blocks(inode->i_sb,
Mark Fashehe48edee2007-03-07 16:46:57 -08006292 le16_to_cpu(rec->e_leaf_clusters));
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006293
6294 /*
6295 * If it's now empty, remove this record.
6296 */
Mark Fashehe48edee2007-03-07 16:46:57 -08006297 if (le16_to_cpu(rec->e_leaf_clusters) == 0) {
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006298 memset(rec, 0,
6299 sizeof(struct ocfs2_extent_rec));
6300 le16_add_cpu(&el->l_next_free_rec, -1);
6301 }
6302 } else {
6303 if (le64_to_cpu(rec->e_blkno) == deleted_eb) {
6304 memset(rec, 0,
6305 sizeof(struct ocfs2_extent_rec));
6306 le16_add_cpu(&el->l_next_free_rec, -1);
6307
6308 goto delete;
6309 }
6310
6311 /* Can this actually happen? */
6312 if (le16_to_cpu(el->l_next_free_rec) == 0)
6313 goto delete;
6314
6315 /*
6316 * We never actually deleted any clusters
6317 * because our leaf was empty. There's no
6318 * reason to adjust the rightmost edge then.
6319 */
6320 if (new_edge == 0)
6321 goto delete;
6322
Mark Fashehe48edee2007-03-07 16:46:57 -08006323 rec->e_int_clusters = cpu_to_le32(new_edge);
6324 le32_add_cpu(&rec->e_int_clusters,
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006325 -le32_to_cpu(rec->e_cpos));
6326
6327 /*
6328 * A deleted child record should have been
6329 * caught above.
6330 */
Mark Fashehe48edee2007-03-07 16:46:57 -08006331 BUG_ON(le32_to_cpu(rec->e_int_clusters) == 0);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006332 }
6333
6334delete:
6335 ret = ocfs2_journal_dirty(handle, bh);
6336 if (ret) {
6337 mlog_errno(ret);
6338 goto out;
6339 }
6340
6341 mlog(0, "extent list container %llu, after: record %d: "
6342 "(%u, %u, %llu), next = %u.\n",
6343 (unsigned long long)bh->b_blocknr, i,
Mark Fashehe48edee2007-03-07 16:46:57 -08006344 le32_to_cpu(rec->e_cpos), ocfs2_rec_clusters(el, rec),
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006345 (unsigned long long)le64_to_cpu(rec->e_blkno),
6346 le16_to_cpu(el->l_next_free_rec));
6347
6348 /*
6349 * We must be careful to only attempt delete of an
6350 * extent block (and not the root inode block).
6351 */
6352 if (index > 0 && le16_to_cpu(el->l_next_free_rec) == 0) {
6353 struct ocfs2_extent_block *eb =
6354 (struct ocfs2_extent_block *)bh->b_data;
6355
6356 /*
6357 * Save this for use when processing the
6358 * parent block.
6359 */
6360 deleted_eb = le64_to_cpu(eb->h_blkno);
6361
6362 mlog(0, "deleting this extent block.\n");
6363
6364 ocfs2_remove_from_cache(inode, bh);
6365
Mark Fashehe48edee2007-03-07 16:46:57 -08006366 BUG_ON(ocfs2_rec_clusters(el, &el->l_recs[0]));
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006367 BUG_ON(le32_to_cpu(el->l_recs[0].e_cpos));
6368 BUG_ON(le64_to_cpu(el->l_recs[0].e_blkno));
6369
Mark Fasheh59a5e412007-06-22 15:52:36 -07006370 ret = ocfs2_cache_extent_block_free(&tc->tc_dealloc, eb);
6371 /* An error here is not fatal. */
6372 if (ret < 0)
6373 mlog_errno(ret);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006374 } else {
6375 deleted_eb = 0;
6376 }
6377
6378 index--;
6379 }
6380
6381 ret = 0;
6382out:
6383 return ret;
6384}
6385
Mark Fashehccd979b2005-12-15 14:31:24 -08006386static int ocfs2_do_truncate(struct ocfs2_super *osb,
6387 unsigned int clusters_to_del,
6388 struct inode *inode,
6389 struct buffer_head *fe_bh,
Mark Fasheh1fabe142006-10-09 18:11:45 -07006390 handle_t *handle,
Mark Fashehdcd05382007-01-16 11:32:23 -08006391 struct ocfs2_truncate_context *tc,
6392 struct ocfs2_path *path)
Mark Fashehccd979b2005-12-15 14:31:24 -08006393{
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006394 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08006395 struct ocfs2_dinode *fe;
Mark Fashehccd979b2005-12-15 14:31:24 -08006396 struct ocfs2_extent_block *last_eb = NULL;
6397 struct ocfs2_extent_list *el;
Mark Fashehccd979b2005-12-15 14:31:24 -08006398 struct buffer_head *last_eb_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08006399 u64 delete_blk = 0;
6400
6401 fe = (struct ocfs2_dinode *) fe_bh->b_data;
6402
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006403 status = ocfs2_find_new_last_ext_blk(inode, clusters_to_del,
Mark Fashehdcd05382007-01-16 11:32:23 -08006404 path, &last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006405 if (status < 0) {
6406 mlog_errno(status);
6407 goto bail;
6408 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006409
Mark Fashehdcd05382007-01-16 11:32:23 -08006410 /*
6411 * Each component will be touched, so we might as well journal
6412 * here to avoid having to handle errors later.
6413 */
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006414 status = ocfs2_journal_access_path(inode, handle, path);
6415 if (status < 0) {
6416 mlog_errno(status);
6417 goto bail;
Mark Fashehdcd05382007-01-16 11:32:23 -08006418 }
6419
6420 if (last_eb_bh) {
6421 status = ocfs2_journal_access(handle, inode, last_eb_bh,
6422 OCFS2_JOURNAL_ACCESS_WRITE);
6423 if (status < 0) {
6424 mlog_errno(status);
6425 goto bail;
6426 }
6427
6428 last_eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
6429 }
6430
6431 el = &(fe->id2.i_list);
6432
6433 /*
6434 * Lower levels depend on this never happening, but it's best
6435 * to check it up here before changing the tree.
6436 */
Mark Fashehe48edee2007-03-07 16:46:57 -08006437 if (el->l_tree_depth && el->l_recs[0].e_int_clusters == 0) {
Mark Fashehdcd05382007-01-16 11:32:23 -08006438 ocfs2_error(inode->i_sb,
6439 "Inode %lu has an empty extent record, depth %u\n",
6440 inode->i_ino, le16_to_cpu(el->l_tree_depth));
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006441 status = -EROFS;
Mark Fashehccd979b2005-12-15 14:31:24 -08006442 goto bail;
6443 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006444
6445 spin_lock(&OCFS2_I(inode)->ip_lock);
6446 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters) -
6447 clusters_to_del;
6448 spin_unlock(&OCFS2_I(inode)->ip_lock);
6449 le32_add_cpu(&fe->i_clusters, -clusters_to_del);
Mark Fashehe535e2e2007-08-31 10:23:41 -07006450 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08006451
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006452 status = ocfs2_trim_tree(inode, path, handle, tc,
6453 clusters_to_del, &delete_blk);
6454 if (status) {
6455 mlog_errno(status);
6456 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -08006457 }
6458
Mark Fashehdcd05382007-01-16 11:32:23 -08006459 if (le32_to_cpu(fe->i_clusters) == 0) {
Mark Fashehccd979b2005-12-15 14:31:24 -08006460 /* trunc to zero is a special case. */
6461 el->l_tree_depth = 0;
6462 fe->i_last_eb_blk = 0;
6463 } else if (last_eb)
6464 fe->i_last_eb_blk = last_eb->h_blkno;
6465
6466 status = ocfs2_journal_dirty(handle, fe_bh);
6467 if (status < 0) {
6468 mlog_errno(status);
6469 goto bail;
6470 }
6471
6472 if (last_eb) {
6473 /* If there will be a new last extent block, then by
6474 * definition, there cannot be any leaves to the right of
6475 * him. */
Mark Fashehccd979b2005-12-15 14:31:24 -08006476 last_eb->h_next_leaf_blk = 0;
6477 status = ocfs2_journal_dirty(handle, last_eb_bh);
6478 if (status < 0) {
6479 mlog_errno(status);
6480 goto bail;
6481 }
6482 }
6483
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006484 if (delete_blk) {
6485 status = ocfs2_truncate_log_append(osb, handle, delete_blk,
6486 clusters_to_del);
Mark Fashehccd979b2005-12-15 14:31:24 -08006487 if (status < 0) {
6488 mlog_errno(status);
6489 goto bail;
6490 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006491 }
6492 status = 0;
6493bail:
Mark Fashehdcd05382007-01-16 11:32:23 -08006494
Mark Fashehccd979b2005-12-15 14:31:24 -08006495 mlog_exit(status);
6496 return status;
6497}
6498
Joel Becker2b4e30f2008-09-03 20:03:41 -07006499static int ocfs2_zero_func(handle_t *handle, struct buffer_head *bh)
Mark Fasheh60b11392007-02-16 11:46:50 -08006500{
6501 set_buffer_uptodate(bh);
6502 mark_buffer_dirty(bh);
6503 return 0;
6504}
6505
Mark Fasheh1d410a62007-09-07 14:20:45 -07006506static void ocfs2_map_and_dirty_page(struct inode *inode, handle_t *handle,
6507 unsigned int from, unsigned int to,
6508 struct page *page, int zero, u64 *phys)
6509{
6510 int ret, partial = 0;
6511
6512 ret = ocfs2_map_page_blocks(page, phys, inode, from, to, 0);
6513 if (ret)
6514 mlog_errno(ret);
6515
6516 if (zero)
Christoph Lametereebd2aa2008-02-04 22:28:29 -08006517 zero_user_segment(page, from, to);
Mark Fasheh1d410a62007-09-07 14:20:45 -07006518
6519 /*
6520 * Need to set the buffers we zero'd into uptodate
6521 * here if they aren't - ocfs2_map_page_blocks()
6522 * might've skipped some
6523 */
Joel Becker2b4e30f2008-09-03 20:03:41 -07006524 ret = walk_page_buffers(handle, page_buffers(page),
6525 from, to, &partial,
6526 ocfs2_zero_func);
6527 if (ret < 0)
6528 mlog_errno(ret);
6529 else if (ocfs2_should_order_data(inode)) {
6530 ret = ocfs2_jbd2_file_inode(handle, inode);
6531#ifdef CONFIG_OCFS2_COMPAT_JBD
Mark Fasheh1d410a62007-09-07 14:20:45 -07006532 ret = walk_page_buffers(handle, page_buffers(page),
6533 from, to, &partial,
Joel Becker2b4e30f2008-09-03 20:03:41 -07006534 ocfs2_journal_dirty_data);
6535#endif
Mark Fasheh1d410a62007-09-07 14:20:45 -07006536 if (ret < 0)
6537 mlog_errno(ret);
6538 }
6539
6540 if (!partial)
6541 SetPageUptodate(page);
6542
6543 flush_dcache_page(page);
6544}
6545
Mark Fasheh35edec12007-07-06 14:41:18 -07006546static void ocfs2_zero_cluster_pages(struct inode *inode, loff_t start,
6547 loff_t end, struct page **pages,
6548 int numpages, u64 phys, handle_t *handle)
Mark Fasheh60b11392007-02-16 11:46:50 -08006549{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006550 int i;
Mark Fasheh60b11392007-02-16 11:46:50 -08006551 struct page *page;
6552 unsigned int from, to = PAGE_CACHE_SIZE;
6553 struct super_block *sb = inode->i_sb;
6554
6555 BUG_ON(!ocfs2_sparse_alloc(OCFS2_SB(sb)));
6556
6557 if (numpages == 0)
6558 goto out;
6559
Mark Fasheh35edec12007-07-06 14:41:18 -07006560 to = PAGE_CACHE_SIZE;
Mark Fasheh60b11392007-02-16 11:46:50 -08006561 for(i = 0; i < numpages; i++) {
6562 page = pages[i];
6563
Mark Fasheh35edec12007-07-06 14:41:18 -07006564 from = start & (PAGE_CACHE_SIZE - 1);
6565 if ((end >> PAGE_CACHE_SHIFT) == page->index)
6566 to = end & (PAGE_CACHE_SIZE - 1);
6567
Mark Fasheh60b11392007-02-16 11:46:50 -08006568 BUG_ON(from > PAGE_CACHE_SIZE);
6569 BUG_ON(to > PAGE_CACHE_SIZE);
6570
Mark Fasheh1d410a62007-09-07 14:20:45 -07006571 ocfs2_map_and_dirty_page(inode, handle, from, to, page, 1,
6572 &phys);
Mark Fasheh60b11392007-02-16 11:46:50 -08006573
Mark Fasheh35edec12007-07-06 14:41:18 -07006574 start = (page->index + 1) << PAGE_CACHE_SHIFT;
Mark Fasheh60b11392007-02-16 11:46:50 -08006575 }
6576out:
Mark Fasheh1d410a62007-09-07 14:20:45 -07006577 if (pages)
6578 ocfs2_unlock_and_free_pages(pages, numpages);
Mark Fasheh60b11392007-02-16 11:46:50 -08006579}
6580
Mark Fasheh35edec12007-07-06 14:41:18 -07006581static int ocfs2_grab_eof_pages(struct inode *inode, loff_t start, loff_t end,
Mark Fasheh1d410a62007-09-07 14:20:45 -07006582 struct page **pages, int *num)
Mark Fasheh60b11392007-02-16 11:46:50 -08006583{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006584 int numpages, ret = 0;
Mark Fasheh60b11392007-02-16 11:46:50 -08006585 struct super_block *sb = inode->i_sb;
6586 struct address_space *mapping = inode->i_mapping;
6587 unsigned long index;
Mark Fasheh35edec12007-07-06 14:41:18 -07006588 loff_t last_page_bytes;
Mark Fasheh60b11392007-02-16 11:46:50 -08006589
Mark Fasheh35edec12007-07-06 14:41:18 -07006590 BUG_ON(start > end);
Mark Fasheh60b11392007-02-16 11:46:50 -08006591
Mark Fasheh35edec12007-07-06 14:41:18 -07006592 BUG_ON(start >> OCFS2_SB(sb)->s_clustersize_bits !=
6593 (end - 1) >> OCFS2_SB(sb)->s_clustersize_bits);
6594
Mark Fasheh1d410a62007-09-07 14:20:45 -07006595 numpages = 0;
Mark Fasheh35edec12007-07-06 14:41:18 -07006596 last_page_bytes = PAGE_ALIGN(end);
6597 index = start >> PAGE_CACHE_SHIFT;
Mark Fasheh60b11392007-02-16 11:46:50 -08006598 do {
6599 pages[numpages] = grab_cache_page(mapping, index);
6600 if (!pages[numpages]) {
6601 ret = -ENOMEM;
6602 mlog_errno(ret);
6603 goto out;
6604 }
6605
6606 numpages++;
6607 index++;
Mark Fasheh35edec12007-07-06 14:41:18 -07006608 } while (index < (last_page_bytes >> PAGE_CACHE_SHIFT));
Mark Fasheh60b11392007-02-16 11:46:50 -08006609
6610out:
6611 if (ret != 0) {
Mark Fasheh1d410a62007-09-07 14:20:45 -07006612 if (pages)
6613 ocfs2_unlock_and_free_pages(pages, numpages);
Mark Fasheh60b11392007-02-16 11:46:50 -08006614 numpages = 0;
6615 }
6616
6617 *num = numpages;
6618
6619 return ret;
6620}
6621
6622/*
6623 * Zero the area past i_size but still within an allocated
6624 * cluster. This avoids exposing nonzero data on subsequent file
6625 * extends.
6626 *
6627 * We need to call this before i_size is updated on the inode because
6628 * otherwise block_write_full_page() will skip writeout of pages past
6629 * i_size. The new_i_size parameter is passed for this reason.
6630 */
Mark Fasheh35edec12007-07-06 14:41:18 -07006631int ocfs2_zero_range_for_truncate(struct inode *inode, handle_t *handle,
6632 u64 range_start, u64 range_end)
Mark Fasheh60b11392007-02-16 11:46:50 -08006633{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006634 int ret = 0, numpages;
Mark Fasheh60b11392007-02-16 11:46:50 -08006635 struct page **pages = NULL;
6636 u64 phys;
Mark Fasheh1d410a62007-09-07 14:20:45 -07006637 unsigned int ext_flags;
6638 struct super_block *sb = inode->i_sb;
Mark Fasheh60b11392007-02-16 11:46:50 -08006639
6640 /*
6641 * File systems which don't support sparse files zero on every
6642 * extend.
6643 */
Mark Fasheh1d410a62007-09-07 14:20:45 -07006644 if (!ocfs2_sparse_alloc(OCFS2_SB(sb)))
Mark Fasheh60b11392007-02-16 11:46:50 -08006645 return 0;
6646
Mark Fasheh1d410a62007-09-07 14:20:45 -07006647 pages = kcalloc(ocfs2_pages_per_cluster(sb),
Mark Fasheh60b11392007-02-16 11:46:50 -08006648 sizeof(struct page *), GFP_NOFS);
6649 if (pages == NULL) {
6650 ret = -ENOMEM;
6651 mlog_errno(ret);
6652 goto out;
6653 }
6654
Mark Fasheh1d410a62007-09-07 14:20:45 -07006655 if (range_start == range_end)
6656 goto out;
6657
6658 ret = ocfs2_extent_map_get_blocks(inode,
6659 range_start >> sb->s_blocksize_bits,
6660 &phys, NULL, &ext_flags);
Mark Fasheh60b11392007-02-16 11:46:50 -08006661 if (ret) {
6662 mlog_errno(ret);
6663 goto out;
6664 }
6665
Mark Fasheh1d410a62007-09-07 14:20:45 -07006666 /*
6667 * Tail is a hole, or is marked unwritten. In either case, we
6668 * can count on read and write to return/push zero's.
6669 */
6670 if (phys == 0 || ext_flags & OCFS2_EXT_UNWRITTEN)
Mark Fasheh60b11392007-02-16 11:46:50 -08006671 goto out;
6672
Mark Fasheh1d410a62007-09-07 14:20:45 -07006673 ret = ocfs2_grab_eof_pages(inode, range_start, range_end, pages,
6674 &numpages);
6675 if (ret) {
6676 mlog_errno(ret);
6677 goto out;
6678 }
6679
Mark Fasheh35edec12007-07-06 14:41:18 -07006680 ocfs2_zero_cluster_pages(inode, range_start, range_end, pages,
6681 numpages, phys, handle);
Mark Fasheh60b11392007-02-16 11:46:50 -08006682
6683 /*
6684 * Initiate writeout of the pages we zero'd here. We don't
6685 * wait on them - the truncate_inode_pages() call later will
6686 * do that for us.
6687 */
Mark Fasheh35edec12007-07-06 14:41:18 -07006688 ret = do_sync_mapping_range(inode->i_mapping, range_start,
6689 range_end - 1, SYNC_FILE_RANGE_WRITE);
Mark Fasheh60b11392007-02-16 11:46:50 -08006690 if (ret)
6691 mlog_errno(ret);
6692
6693out:
6694 if (pages)
6695 kfree(pages);
6696
6697 return ret;
6698}
6699
Tiger Yangfdd77702008-08-18 17:08:55 +08006700static void ocfs2_zero_dinode_id2_with_xattr(struct inode *inode,
6701 struct ocfs2_dinode *di)
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006702{
6703 unsigned int blocksize = 1 << inode->i_sb->s_blocksize_bits;
Tiger Yangfdd77702008-08-18 17:08:55 +08006704 unsigned int xattrsize = le16_to_cpu(di->i_xattr_inline_size);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006705
Tiger Yangfdd77702008-08-18 17:08:55 +08006706 if (le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_XATTR_FL)
6707 memset(&di->id2, 0, blocksize -
6708 offsetof(struct ocfs2_dinode, id2) -
6709 xattrsize);
6710 else
6711 memset(&di->id2, 0, blocksize -
6712 offsetof(struct ocfs2_dinode, id2));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006713}
6714
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07006715void ocfs2_dinode_new_extent_list(struct inode *inode,
6716 struct ocfs2_dinode *di)
6717{
Tiger Yangfdd77702008-08-18 17:08:55 +08006718 ocfs2_zero_dinode_id2_with_xattr(inode, di);
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07006719 di->id2.i_list.l_tree_depth = 0;
6720 di->id2.i_list.l_next_free_rec = 0;
Tiger Yangfdd77702008-08-18 17:08:55 +08006721 di->id2.i_list.l_count = cpu_to_le16(
6722 ocfs2_extent_recs_per_inode_with_xattr(inode->i_sb, di));
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07006723}
6724
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006725void ocfs2_set_inode_data_inline(struct inode *inode, struct ocfs2_dinode *di)
6726{
6727 struct ocfs2_inode_info *oi = OCFS2_I(inode);
6728 struct ocfs2_inline_data *idata = &di->id2.i_data;
6729
6730 spin_lock(&oi->ip_lock);
6731 oi->ip_dyn_features |= OCFS2_INLINE_DATA_FL;
6732 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
6733 spin_unlock(&oi->ip_lock);
6734
6735 /*
6736 * We clear the entire i_data structure here so that all
6737 * fields can be properly initialized.
6738 */
Tiger Yangfdd77702008-08-18 17:08:55 +08006739 ocfs2_zero_dinode_id2_with_xattr(inode, di);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006740
Tiger Yangfdd77702008-08-18 17:08:55 +08006741 idata->id_count = cpu_to_le16(
6742 ocfs2_max_inline_data_with_xattr(inode->i_sb, di));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006743}
6744
6745int ocfs2_convert_inline_data_to_extents(struct inode *inode,
6746 struct buffer_head *di_bh)
6747{
6748 int ret, i, has_data, num_pages = 0;
6749 handle_t *handle;
6750 u64 uninitialized_var(block);
6751 struct ocfs2_inode_info *oi = OCFS2_I(inode);
6752 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
6753 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006754 struct ocfs2_alloc_context *data_ac = NULL;
6755 struct page **pages = NULL;
6756 loff_t end = osb->s_clustersize;
Joel Beckerf99b9b72008-08-20 19:36:33 -07006757 struct ocfs2_extent_tree et;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006758
6759 has_data = i_size_read(inode) ? 1 : 0;
6760
6761 if (has_data) {
6762 pages = kcalloc(ocfs2_pages_per_cluster(osb->sb),
6763 sizeof(struct page *), GFP_NOFS);
6764 if (pages == NULL) {
6765 ret = -ENOMEM;
6766 mlog_errno(ret);
6767 goto out;
6768 }
6769
6770 ret = ocfs2_reserve_clusters(osb, 1, &data_ac);
6771 if (ret) {
6772 mlog_errno(ret);
6773 goto out;
6774 }
6775 }
6776
6777 handle = ocfs2_start_trans(osb, OCFS2_INLINE_TO_EXTENTS_CREDITS);
6778 if (IS_ERR(handle)) {
6779 ret = PTR_ERR(handle);
6780 mlog_errno(ret);
6781 goto out_unlock;
6782 }
6783
6784 ret = ocfs2_journal_access(handle, inode, di_bh,
6785 OCFS2_JOURNAL_ACCESS_WRITE);
6786 if (ret) {
6787 mlog_errno(ret);
6788 goto out_commit;
6789 }
6790
6791 if (has_data) {
6792 u32 bit_off, num;
6793 unsigned int page_end;
6794 u64 phys;
6795
6796 ret = ocfs2_claim_clusters(osb, handle, data_ac, 1, &bit_off,
6797 &num);
6798 if (ret) {
6799 mlog_errno(ret);
6800 goto out_commit;
6801 }
6802
6803 /*
6804 * Save two copies, one for insert, and one that can
6805 * be changed by ocfs2_map_and_dirty_page() below.
6806 */
6807 block = phys = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
6808
6809 /*
6810 * Non sparse file systems zero on extend, so no need
6811 * to do that now.
6812 */
6813 if (!ocfs2_sparse_alloc(osb) &&
6814 PAGE_CACHE_SIZE < osb->s_clustersize)
6815 end = PAGE_CACHE_SIZE;
6816
6817 ret = ocfs2_grab_eof_pages(inode, 0, end, pages, &num_pages);
6818 if (ret) {
6819 mlog_errno(ret);
6820 goto out_commit;
6821 }
6822
6823 /*
6824 * This should populate the 1st page for us and mark
6825 * it up to date.
6826 */
6827 ret = ocfs2_read_inline_data(inode, pages[0], di_bh);
6828 if (ret) {
6829 mlog_errno(ret);
6830 goto out_commit;
6831 }
6832
6833 page_end = PAGE_CACHE_SIZE;
6834 if (PAGE_CACHE_SIZE > osb->s_clustersize)
6835 page_end = osb->s_clustersize;
6836
6837 for (i = 0; i < num_pages; i++)
6838 ocfs2_map_and_dirty_page(inode, handle, 0, page_end,
6839 pages[i], i > 0, &phys);
6840 }
6841
6842 spin_lock(&oi->ip_lock);
6843 oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL;
6844 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
6845 spin_unlock(&oi->ip_lock);
6846
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07006847 ocfs2_dinode_new_extent_list(inode, di);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006848
6849 ocfs2_journal_dirty(handle, di_bh);
6850
6851 if (has_data) {
6852 /*
6853 * An error at this point should be extremely rare. If
6854 * this proves to be false, we could always re-build
6855 * the in-inode data from our pages.
6856 */
Joel Becker8d6220d2008-08-22 12:46:09 -07006857 ocfs2_init_dinode_extent_tree(&et, inode, di_bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -07006858 ret = ocfs2_insert_extent(osb, handle, inode, &et,
6859 0, block, 1, 0, NULL);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006860 if (ret) {
6861 mlog_errno(ret);
6862 goto out_commit;
6863 }
6864
6865 inode->i_blocks = ocfs2_inode_sector_count(inode);
6866 }
6867
6868out_commit:
6869 ocfs2_commit_trans(osb, handle);
6870
6871out_unlock:
6872 if (data_ac)
6873 ocfs2_free_alloc_context(data_ac);
6874
6875out:
6876 if (pages) {
6877 ocfs2_unlock_and_free_pages(pages, num_pages);
6878 kfree(pages);
6879 }
6880
6881 return ret;
6882}
6883
Mark Fashehccd979b2005-12-15 14:31:24 -08006884/*
6885 * It is expected, that by the time you call this function,
6886 * inode->i_size and fe->i_size have been adjusted.
6887 *
6888 * WARNING: This will kfree the truncate context
6889 */
6890int ocfs2_commit_truncate(struct ocfs2_super *osb,
6891 struct inode *inode,
6892 struct buffer_head *fe_bh,
6893 struct ocfs2_truncate_context *tc)
6894{
6895 int status, i, credits, tl_sem = 0;
Mark Fashehdcd05382007-01-16 11:32:23 -08006896 u32 clusters_to_del, new_highest_cpos, range;
Mark Fashehccd979b2005-12-15 14:31:24 -08006897 struct ocfs2_extent_list *el;
Mark Fasheh1fabe142006-10-09 18:11:45 -07006898 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08006899 struct inode *tl_inode = osb->osb_tl_inode;
Mark Fashehdcd05382007-01-16 11:32:23 -08006900 struct ocfs2_path *path = NULL;
Tao Mae7d4cb62008-08-18 17:38:44 +08006901 struct ocfs2_dinode *di = (struct ocfs2_dinode *)fe_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08006902
6903 mlog_entry_void();
6904
Mark Fashehdcd05382007-01-16 11:32:23 -08006905 new_highest_cpos = ocfs2_clusters_for_bytes(osb->sb,
Mark Fashehccd979b2005-12-15 14:31:24 -08006906 i_size_read(inode));
6907
Tao Mae7d4cb62008-08-18 17:38:44 +08006908 path = ocfs2_new_path(fe_bh, &di->id2.i_list);
Mark Fashehdcd05382007-01-16 11:32:23 -08006909 if (!path) {
6910 status = -ENOMEM;
6911 mlog_errno(status);
6912 goto bail;
6913 }
Mark Fasheh83418972007-04-23 18:53:12 -07006914
6915 ocfs2_extent_map_trunc(inode, new_highest_cpos);
6916
Mark Fashehccd979b2005-12-15 14:31:24 -08006917start:
Mark Fashehdcd05382007-01-16 11:32:23 -08006918 /*
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006919 * Check that we still have allocation to delete.
6920 */
6921 if (OCFS2_I(inode)->ip_clusters == 0) {
6922 status = 0;
6923 goto bail;
6924 }
6925
6926 /*
Mark Fashehdcd05382007-01-16 11:32:23 -08006927 * Truncate always works against the rightmost tree branch.
6928 */
6929 status = ocfs2_find_path(inode, path, UINT_MAX);
6930 if (status) {
6931 mlog_errno(status);
6932 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -08006933 }
6934
Mark Fashehdcd05382007-01-16 11:32:23 -08006935 mlog(0, "inode->ip_clusters = %u, tree_depth = %u\n",
6936 OCFS2_I(inode)->ip_clusters, path->p_tree_depth);
6937
6938 /*
6939 * By now, el will point to the extent list on the bottom most
6940 * portion of this tree. Only the tail record is considered in
6941 * each pass.
6942 *
6943 * We handle the following cases, in order:
6944 * - empty extent: delete the remaining branch
6945 * - remove the entire record
6946 * - remove a partial record
6947 * - no record needs to be removed (truncate has completed)
6948 */
6949 el = path_leaf_el(path);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006950 if (le16_to_cpu(el->l_next_free_rec) == 0) {
6951 ocfs2_error(inode->i_sb,
6952 "Inode %llu has empty extent block at %llu\n",
6953 (unsigned long long)OCFS2_I(inode)->ip_blkno,
6954 (unsigned long long)path_leaf_bh(path)->b_blocknr);
6955 status = -EROFS;
6956 goto bail;
6957 }
6958
Mark Fashehccd979b2005-12-15 14:31:24 -08006959 i = le16_to_cpu(el->l_next_free_rec) - 1;
Mark Fashehdcd05382007-01-16 11:32:23 -08006960 range = le32_to_cpu(el->l_recs[i].e_cpos) +
Mark Fashehe48edee2007-03-07 16:46:57 -08006961 ocfs2_rec_clusters(el, &el->l_recs[i]);
Mark Fashehdcd05382007-01-16 11:32:23 -08006962 if (i == 0 && ocfs2_is_empty_extent(&el->l_recs[i])) {
6963 clusters_to_del = 0;
6964 } else if (le32_to_cpu(el->l_recs[i].e_cpos) >= new_highest_cpos) {
Mark Fashehe48edee2007-03-07 16:46:57 -08006965 clusters_to_del = ocfs2_rec_clusters(el, &el->l_recs[i]);
Mark Fashehdcd05382007-01-16 11:32:23 -08006966 } else if (range > new_highest_cpos) {
Mark Fashehe48edee2007-03-07 16:46:57 -08006967 clusters_to_del = (ocfs2_rec_clusters(el, &el->l_recs[i]) +
Mark Fashehccd979b2005-12-15 14:31:24 -08006968 le32_to_cpu(el->l_recs[i].e_cpos)) -
Mark Fashehdcd05382007-01-16 11:32:23 -08006969 new_highest_cpos;
6970 } else {
6971 status = 0;
6972 goto bail;
6973 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006974
Mark Fashehdcd05382007-01-16 11:32:23 -08006975 mlog(0, "clusters_to_del = %u in this pass, tail blk=%llu\n",
6976 clusters_to_del, (unsigned long long)path_leaf_bh(path)->b_blocknr);
6977
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08006978 mutex_lock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08006979 tl_sem = 1;
6980 /* ocfs2_truncate_log_needs_flush guarantees us at least one
6981 * record is free for use. If there isn't any, we flush to get
6982 * an empty truncate log. */
6983 if (ocfs2_truncate_log_needs_flush(osb)) {
6984 status = __ocfs2_flush_truncate_log(osb);
6985 if (status < 0) {
6986 mlog_errno(status);
6987 goto bail;
6988 }
6989 }
6990
6991 credits = ocfs2_calc_tree_trunc_credits(osb->sb, clusters_to_del,
Mark Fashehdcd05382007-01-16 11:32:23 -08006992 (struct ocfs2_dinode *)fe_bh->b_data,
6993 el);
Mark Fasheh65eff9c2006-10-09 17:26:22 -07006994 handle = ocfs2_start_trans(osb, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -08006995 if (IS_ERR(handle)) {
6996 status = PTR_ERR(handle);
6997 handle = NULL;
6998 mlog_errno(status);
6999 goto bail;
7000 }
7001
Mark Fashehdcd05382007-01-16 11:32:23 -08007002 status = ocfs2_do_truncate(osb, clusters_to_del, inode, fe_bh, handle,
7003 tc, path);
Mark Fashehccd979b2005-12-15 14:31:24 -08007004 if (status < 0) {
7005 mlog_errno(status);
7006 goto bail;
7007 }
7008
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08007009 mutex_unlock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08007010 tl_sem = 0;
7011
Mark Fasheh02dc1af2006-10-09 16:48:10 -07007012 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08007013 handle = NULL;
7014
Mark Fashehdcd05382007-01-16 11:32:23 -08007015 ocfs2_reinit_path(path, 1);
7016
7017 /*
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007018 * The check above will catch the case where we've truncated
7019 * away all allocation.
Mark Fashehdcd05382007-01-16 11:32:23 -08007020 */
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007021 goto start;
7022
Mark Fashehccd979b2005-12-15 14:31:24 -08007023bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08007024
7025 ocfs2_schedule_truncate_log_flush(osb, 1);
7026
7027 if (tl_sem)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08007028 mutex_unlock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08007029
7030 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07007031 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08007032
Mark Fasheh59a5e412007-06-22 15:52:36 -07007033 ocfs2_run_deallocs(osb, &tc->tc_dealloc);
7034
Mark Fashehdcd05382007-01-16 11:32:23 -08007035 ocfs2_free_path(path);
Mark Fashehccd979b2005-12-15 14:31:24 -08007036
7037 /* This will drop the ext_alloc cluster lock for us */
7038 ocfs2_free_truncate_context(tc);
7039
7040 mlog_exit(status);
7041 return status;
7042}
7043
Mark Fashehccd979b2005-12-15 14:31:24 -08007044/*
Mark Fasheh59a5e412007-06-22 15:52:36 -07007045 * Expects the inode to already be locked.
Mark Fashehccd979b2005-12-15 14:31:24 -08007046 */
7047int ocfs2_prepare_truncate(struct ocfs2_super *osb,
7048 struct inode *inode,
7049 struct buffer_head *fe_bh,
7050 struct ocfs2_truncate_context **tc)
7051{
Mark Fasheh59a5e412007-06-22 15:52:36 -07007052 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08007053 unsigned int new_i_clusters;
7054 struct ocfs2_dinode *fe;
7055 struct ocfs2_extent_block *eb;
Mark Fashehccd979b2005-12-15 14:31:24 -08007056 struct buffer_head *last_eb_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08007057
7058 mlog_entry_void();
7059
7060 *tc = NULL;
7061
7062 new_i_clusters = ocfs2_clusters_for_bytes(osb->sb,
7063 i_size_read(inode));
7064 fe = (struct ocfs2_dinode *) fe_bh->b_data;
7065
7066 mlog(0, "fe->i_clusters = %u, new_i_clusters = %u, fe->i_size ="
Mark Fasheh1ca1a112007-04-27 16:01:25 -07007067 "%llu\n", le32_to_cpu(fe->i_clusters), new_i_clusters,
7068 (unsigned long long)le64_to_cpu(fe->i_size));
Mark Fashehccd979b2005-12-15 14:31:24 -08007069
Robert P. J. Daycd861282006-12-13 00:34:52 -08007070 *tc = kzalloc(sizeof(struct ocfs2_truncate_context), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08007071 if (!(*tc)) {
7072 status = -ENOMEM;
7073 mlog_errno(status);
7074 goto bail;
7075 }
Mark Fasheh59a5e412007-06-22 15:52:36 -07007076 ocfs2_init_dealloc_ctxt(&(*tc)->tc_dealloc);
Mark Fashehccd979b2005-12-15 14:31:24 -08007077
Mark Fashehccd979b2005-12-15 14:31:24 -08007078 if (fe->id2.i_list.l_tree_depth) {
Joel Becker31d33072008-10-09 17:20:30 -07007079 status = ocfs2_read_block(inode, le64_to_cpu(fe->i_last_eb_blk),
Joel Becker0fcaa562008-10-09 17:20:31 -07007080 &last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08007081 if (status < 0) {
7082 mlog_errno(status);
7083 goto bail;
7084 }
7085 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
7086 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
7087 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
7088
7089 brelse(last_eb_bh);
7090 status = -EIO;
7091 goto bail;
7092 }
Mark Fashehccd979b2005-12-15 14:31:24 -08007093 }
7094
7095 (*tc)->tc_last_eb_bh = last_eb_bh;
7096
Mark Fashehccd979b2005-12-15 14:31:24 -08007097 status = 0;
7098bail:
7099 if (status < 0) {
7100 if (*tc)
7101 ocfs2_free_truncate_context(*tc);
7102 *tc = NULL;
7103 }
7104 mlog_exit_void();
7105 return status;
7106}
7107
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007108/*
7109 * 'start' is inclusive, 'end' is not.
7110 */
7111int ocfs2_truncate_inline(struct inode *inode, struct buffer_head *di_bh,
7112 unsigned int start, unsigned int end, int trunc)
7113{
7114 int ret;
7115 unsigned int numbytes;
7116 handle_t *handle;
7117 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
7118 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
7119 struct ocfs2_inline_data *idata = &di->id2.i_data;
7120
7121 if (end > i_size_read(inode))
7122 end = i_size_read(inode);
7123
7124 BUG_ON(start >= end);
7125
7126 if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) ||
7127 !(le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_DATA_FL) ||
7128 !ocfs2_supports_inline_data(osb)) {
7129 ocfs2_error(inode->i_sb,
7130 "Inline data flags for inode %llu don't agree! "
7131 "Disk: 0x%x, Memory: 0x%x, Superblock: 0x%x\n",
7132 (unsigned long long)OCFS2_I(inode)->ip_blkno,
7133 le16_to_cpu(di->i_dyn_features),
7134 OCFS2_I(inode)->ip_dyn_features,
7135 osb->s_feature_incompat);
7136 ret = -EROFS;
7137 goto out;
7138 }
7139
7140 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
7141 if (IS_ERR(handle)) {
7142 ret = PTR_ERR(handle);
7143 mlog_errno(ret);
7144 goto out;
7145 }
7146
7147 ret = ocfs2_journal_access(handle, inode, di_bh,
7148 OCFS2_JOURNAL_ACCESS_WRITE);
7149 if (ret) {
7150 mlog_errno(ret);
7151 goto out_commit;
7152 }
7153
7154 numbytes = end - start;
7155 memset(idata->id_data + start, 0, numbytes);
7156
7157 /*
7158 * No need to worry about the data page here - it's been
7159 * truncated already and inline data doesn't need it for
7160 * pushing zero's to disk, so we'll let readpage pick it up
7161 * later.
7162 */
7163 if (trunc) {
7164 i_size_write(inode, start);
7165 di->i_size = cpu_to_le64(start);
7166 }
7167
7168 inode->i_blocks = ocfs2_inode_sector_count(inode);
7169 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
7170
7171 di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
7172 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
7173
7174 ocfs2_journal_dirty(handle, di_bh);
7175
7176out_commit:
7177 ocfs2_commit_trans(osb, handle);
7178
7179out:
7180 return ret;
7181}
7182
Mark Fashehccd979b2005-12-15 14:31:24 -08007183static void ocfs2_free_truncate_context(struct ocfs2_truncate_context *tc)
7184{
Mark Fasheh59a5e412007-06-22 15:52:36 -07007185 /*
7186 * The caller is responsible for completing deallocation
7187 * before freeing the context.
7188 */
7189 if (tc->tc_dealloc.c_first_suballocator != NULL)
7190 mlog(ML_NOTICE,
7191 "Truncate completion has non-empty dealloc context\n");
Mark Fashehccd979b2005-12-15 14:31:24 -08007192
Mark Fasheha81cb882008-10-07 14:25:16 -07007193 brelse(tc->tc_last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08007194
7195 kfree(tc);
7196}