blob: a74ea700ffdc30d75a42e0b8297fde4f3b76cad8 [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>
Jan Karaa90714c2008-10-09 19:38:40 +020031#include <linux/quotaops.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080032
33#define MLOG_MASK_PREFIX ML_DISK_ALLOC
34#include <cluster/masklog.h>
35
36#include "ocfs2.h"
37
38#include "alloc.h"
Mark Fasheh60b11392007-02-16 11:46:50 -080039#include "aops.h"
Joel Beckerd6b32bb2008-10-17 14:55:01 -070040#include "blockcheck.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080041#include "dlmglue.h"
42#include "extent_map.h"
43#include "inode.h"
44#include "journal.h"
45#include "localalloc.h"
46#include "suballoc.h"
47#include "sysfile.h"
48#include "file.h"
49#include "super.h"
50#include "uptodate.h"
Joel Becker2a50a742008-12-09 14:24:33 -080051#include "xattr.h"
Tao Mabcbbb242009-08-18 11:29:12 +080052#include "refcounttree.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080053
54#include "buffer_head_io.h"
55
Tao Ma853a3a12009-08-18 11:22:18 +080056enum ocfs2_contig_type {
57 CONTIG_NONE = 0,
58 CONTIG_LEFT,
59 CONTIG_RIGHT,
60 CONTIG_LEFTRIGHT,
61};
Tao Mae7d4cb62008-08-18 17:38:44 +080062
Tao Ma853a3a12009-08-18 11:22:18 +080063static enum ocfs2_contig_type
64 ocfs2_extent_rec_contig(struct super_block *sb,
65 struct ocfs2_extent_rec *ext,
66 struct ocfs2_extent_rec *insert_rec);
Joel Becker1625f8a2008-08-21 17:11:10 -070067/*
68 * Operations for a specific extent tree type.
69 *
70 * To implement an on-disk btree (extent tree) type in ocfs2, add
71 * an ocfs2_extent_tree_operations structure and the matching
Joel Becker8d6220d2008-08-22 12:46:09 -070072 * ocfs2_init_<thingy>_extent_tree() function. That's pretty much it
Joel Becker1625f8a2008-08-21 17:11:10 -070073 * for the allocation portion of the extent tree.
74 */
Tao Mae7d4cb62008-08-18 17:38:44 +080075struct ocfs2_extent_tree_operations {
Joel Becker1625f8a2008-08-21 17:11:10 -070076 /*
77 * last_eb_blk is the block number of the right most leaf extent
78 * block. Most on-disk structures containing an extent tree store
79 * this value for fast access. The ->eo_set_last_eb_blk() and
80 * ->eo_get_last_eb_blk() operations access this value. They are
81 * both required.
82 */
Joel Becker35dc0aa2008-08-20 16:25:06 -070083 void (*eo_set_last_eb_blk)(struct ocfs2_extent_tree *et,
84 u64 blkno);
85 u64 (*eo_get_last_eb_blk)(struct ocfs2_extent_tree *et);
Joel Becker1625f8a2008-08-21 17:11:10 -070086
87 /*
88 * The on-disk structure usually keeps track of how many total
89 * clusters are stored in this extent tree. This function updates
90 * that value. new_clusters is the delta, and must be
91 * added to the total. Required.
92 */
Joel Becker6136ca52009-02-12 19:32:43 -080093 void (*eo_update_clusters)(struct ocfs2_extent_tree *et,
Joel Becker35dc0aa2008-08-20 16:25:06 -070094 u32 new_clusters);
Joel Becker1625f8a2008-08-21 17:11:10 -070095
96 /*
Joel Becker92ba4702009-02-13 03:18:34 -080097 * If this extent tree is supported by an extent map, insert
98 * a record into the map.
99 */
100 void (*eo_extent_map_insert)(struct ocfs2_extent_tree *et,
101 struct ocfs2_extent_rec *rec);
102
103 /*
Joel Becker4c911ee2009-02-13 02:50:12 -0800104 * If this extent tree is supported by an extent map, truncate the
105 * map to clusters,
106 */
107 void (*eo_extent_map_truncate)(struct ocfs2_extent_tree *et,
108 u32 clusters);
109
110 /*
Joel Becker1625f8a2008-08-21 17:11:10 -0700111 * If ->eo_insert_check() exists, it is called before rec is
112 * inserted into the extent tree. It is optional.
113 */
Joel Becker6136ca52009-02-12 19:32:43 -0800114 int (*eo_insert_check)(struct ocfs2_extent_tree *et,
Joel Becker1e61ee72008-08-20 18:32:45 -0700115 struct ocfs2_extent_rec *rec);
Joel Becker6136ca52009-02-12 19:32:43 -0800116 int (*eo_sanity_check)(struct ocfs2_extent_tree *et);
Joel Becker0ce10102008-08-20 17:19:50 -0700117
Joel Becker1625f8a2008-08-21 17:11:10 -0700118 /*
119 * --------------------------------------------------------------
120 * The remaining are internal to ocfs2_extent_tree and don't have
121 * accessor functions
122 */
123
124 /*
125 * ->eo_fill_root_el() takes et->et_object and sets et->et_root_el.
126 * It is required.
127 */
Joel Becker0ce10102008-08-20 17:19:50 -0700128 void (*eo_fill_root_el)(struct ocfs2_extent_tree *et);
Joel Becker1625f8a2008-08-21 17:11:10 -0700129
130 /*
131 * ->eo_fill_max_leaf_clusters sets et->et_max_leaf_clusters if
132 * it exists. If it does not, et->et_max_leaf_clusters is set
133 * to 0 (unlimited). Optional.
134 */
Joel Becker6136ca52009-02-12 19:32:43 -0800135 void (*eo_fill_max_leaf_clusters)(struct ocfs2_extent_tree *et);
Tao Ma853a3a12009-08-18 11:22:18 +0800136
137 /*
138 * ->eo_extent_contig test whether the 2 ocfs2_extent_rec
139 * are contiguous or not. Optional. Don't need to set it if use
140 * ocfs2_extent_rec as the tree leaf.
141 */
142 enum ocfs2_contig_type
143 (*eo_extent_contig)(struct ocfs2_extent_tree *et,
144 struct ocfs2_extent_rec *ext,
145 struct ocfs2_extent_rec *insert_rec);
Tao Mae7d4cb62008-08-18 17:38:44 +0800146};
147
Joel Beckerf99b9b72008-08-20 19:36:33 -0700148
149/*
150 * Pre-declare ocfs2_dinode_et_ops so we can use it as a sanity check
151 * in the methods.
152 */
153static u64 ocfs2_dinode_get_last_eb_blk(struct ocfs2_extent_tree *et);
154static void ocfs2_dinode_set_last_eb_blk(struct ocfs2_extent_tree *et,
155 u64 blkno);
Joel Becker6136ca52009-02-12 19:32:43 -0800156static void ocfs2_dinode_update_clusters(struct ocfs2_extent_tree *et,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700157 u32 clusters);
Joel Becker92ba4702009-02-13 03:18:34 -0800158static void ocfs2_dinode_extent_map_insert(struct ocfs2_extent_tree *et,
159 struct ocfs2_extent_rec *rec);
Joel Becker4c911ee2009-02-13 02:50:12 -0800160static void ocfs2_dinode_extent_map_truncate(struct ocfs2_extent_tree *et,
161 u32 clusters);
Joel Becker6136ca52009-02-12 19:32:43 -0800162static int ocfs2_dinode_insert_check(struct ocfs2_extent_tree *et,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700163 struct ocfs2_extent_rec *rec);
Joel Becker6136ca52009-02-12 19:32:43 -0800164static int ocfs2_dinode_sanity_check(struct ocfs2_extent_tree *et);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700165static void ocfs2_dinode_fill_root_el(struct ocfs2_extent_tree *et);
166static struct ocfs2_extent_tree_operations ocfs2_dinode_et_ops = {
167 .eo_set_last_eb_blk = ocfs2_dinode_set_last_eb_blk,
168 .eo_get_last_eb_blk = ocfs2_dinode_get_last_eb_blk,
169 .eo_update_clusters = ocfs2_dinode_update_clusters,
Joel Becker92ba4702009-02-13 03:18:34 -0800170 .eo_extent_map_insert = ocfs2_dinode_extent_map_insert,
Joel Becker4c911ee2009-02-13 02:50:12 -0800171 .eo_extent_map_truncate = ocfs2_dinode_extent_map_truncate,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700172 .eo_insert_check = ocfs2_dinode_insert_check,
173 .eo_sanity_check = ocfs2_dinode_sanity_check,
174 .eo_fill_root_el = ocfs2_dinode_fill_root_el,
Tao Mae7d4cb62008-08-18 17:38:44 +0800175};
176
177static void ocfs2_dinode_set_last_eb_blk(struct ocfs2_extent_tree *et,
178 u64 blkno)
179{
Joel Beckerea5efa12008-08-20 16:57:27 -0700180 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800181
Joel Beckerf99b9b72008-08-20 19:36:33 -0700182 BUG_ON(et->et_ops != &ocfs2_dinode_et_ops);
Tao Mae7d4cb62008-08-18 17:38:44 +0800183 di->i_last_eb_blk = cpu_to_le64(blkno);
184}
185
186static u64 ocfs2_dinode_get_last_eb_blk(struct ocfs2_extent_tree *et)
187{
Joel Beckerea5efa12008-08-20 16:57:27 -0700188 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800189
Joel Beckerf99b9b72008-08-20 19:36:33 -0700190 BUG_ON(et->et_ops != &ocfs2_dinode_et_ops);
Tao Mae7d4cb62008-08-18 17:38:44 +0800191 return le64_to_cpu(di->i_last_eb_blk);
192}
193
Joel Becker6136ca52009-02-12 19:32:43 -0800194static void ocfs2_dinode_update_clusters(struct ocfs2_extent_tree *et,
Tao Mae7d4cb62008-08-18 17:38:44 +0800195 u32 clusters)
196{
Joel Becker6136ca52009-02-12 19:32:43 -0800197 struct ocfs2_inode_info *oi = cache_info_to_inode(et->et_ci);
Joel Beckerea5efa12008-08-20 16:57:27 -0700198 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800199
200 le32_add_cpu(&di->i_clusters, clusters);
Joel Becker6136ca52009-02-12 19:32:43 -0800201 spin_lock(&oi->ip_lock);
202 oi->ip_clusters = le32_to_cpu(di->i_clusters);
203 spin_unlock(&oi->ip_lock);
Tao Mae7d4cb62008-08-18 17:38:44 +0800204}
205
Joel Becker92ba4702009-02-13 03:18:34 -0800206static void ocfs2_dinode_extent_map_insert(struct ocfs2_extent_tree *et,
207 struct ocfs2_extent_rec *rec)
208{
209 struct inode *inode = &cache_info_to_inode(et->et_ci)->vfs_inode;
210
211 ocfs2_extent_map_insert_rec(inode, rec);
212}
213
Joel Becker4c911ee2009-02-13 02:50:12 -0800214static void ocfs2_dinode_extent_map_truncate(struct ocfs2_extent_tree *et,
215 u32 clusters)
216{
217 struct inode *inode = &cache_info_to_inode(et->et_ci)->vfs_inode;
218
219 ocfs2_extent_map_trunc(inode, clusters);
220}
221
Joel Becker6136ca52009-02-12 19:32:43 -0800222static int ocfs2_dinode_insert_check(struct ocfs2_extent_tree *et,
Joel Becker1e61ee72008-08-20 18:32:45 -0700223 struct ocfs2_extent_rec *rec)
224{
Joel Becker6136ca52009-02-12 19:32:43 -0800225 struct ocfs2_inode_info *oi = cache_info_to_inode(et->et_ci);
226 struct ocfs2_super *osb = OCFS2_SB(oi->vfs_inode.i_sb);
Joel Becker1e61ee72008-08-20 18:32:45 -0700227
Joel Becker6136ca52009-02-12 19:32:43 -0800228 BUG_ON(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL);
Joel Becker1e61ee72008-08-20 18:32:45 -0700229 mlog_bug_on_msg(!ocfs2_sparse_alloc(osb) &&
Joel Becker6136ca52009-02-12 19:32:43 -0800230 (oi->ip_clusters != le32_to_cpu(rec->e_cpos)),
Joel Becker1e61ee72008-08-20 18:32:45 -0700231 "Device %s, asking for sparse allocation: inode %llu, "
232 "cpos %u, clusters %u\n",
233 osb->dev_str,
Joel Becker6136ca52009-02-12 19:32:43 -0800234 (unsigned long long)oi->ip_blkno,
235 rec->e_cpos, oi->ip_clusters);
Joel Becker1e61ee72008-08-20 18:32:45 -0700236
237 return 0;
238}
239
Joel Becker6136ca52009-02-12 19:32:43 -0800240static int ocfs2_dinode_sanity_check(struct ocfs2_extent_tree *et)
Tao Mae7d4cb62008-08-18 17:38:44 +0800241{
Joel Becker10995aa2008-11-13 14:49:12 -0800242 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800243
Joel Beckerf99b9b72008-08-20 19:36:33 -0700244 BUG_ON(et->et_ops != &ocfs2_dinode_et_ops);
Joel Becker10995aa2008-11-13 14:49:12 -0800245 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
Tao Mae7d4cb62008-08-18 17:38:44 +0800246
Joel Becker10995aa2008-11-13 14:49:12 -0800247 return 0;
Tao Mae7d4cb62008-08-18 17:38:44 +0800248}
249
Joel Beckerf99b9b72008-08-20 19:36:33 -0700250static void ocfs2_dinode_fill_root_el(struct ocfs2_extent_tree *et)
251{
252 struct ocfs2_dinode *di = et->et_object;
253
254 et->et_root_el = &di->id2.i_list;
255}
256
Tao Mae7d4cb62008-08-18 17:38:44 +0800257
Joel Becker0ce10102008-08-20 17:19:50 -0700258static void ocfs2_xattr_value_fill_root_el(struct ocfs2_extent_tree *et)
259{
Joel Becker2a50a742008-12-09 14:24:33 -0800260 struct ocfs2_xattr_value_buf *vb = et->et_object;
Joel Becker0ce10102008-08-20 17:19:50 -0700261
Joel Becker2a50a742008-12-09 14:24:33 -0800262 et->et_root_el = &vb->vb_xv->xr_list;
Joel Becker0ce10102008-08-20 17:19:50 -0700263}
264
Tao Maf56654c2008-08-18 17:38:48 +0800265static void ocfs2_xattr_value_set_last_eb_blk(struct ocfs2_extent_tree *et,
266 u64 blkno)
267{
Joel Becker2a50a742008-12-09 14:24:33 -0800268 struct ocfs2_xattr_value_buf *vb = et->et_object;
Tao Maf56654c2008-08-18 17:38:48 +0800269
Joel Becker2a50a742008-12-09 14:24:33 -0800270 vb->vb_xv->xr_last_eb_blk = cpu_to_le64(blkno);
Tao Maf56654c2008-08-18 17:38:48 +0800271}
272
273static u64 ocfs2_xattr_value_get_last_eb_blk(struct ocfs2_extent_tree *et)
274{
Joel Becker2a50a742008-12-09 14:24:33 -0800275 struct ocfs2_xattr_value_buf *vb = et->et_object;
Tao Maf56654c2008-08-18 17:38:48 +0800276
Joel Becker2a50a742008-12-09 14:24:33 -0800277 return le64_to_cpu(vb->vb_xv->xr_last_eb_blk);
Tao Maf56654c2008-08-18 17:38:48 +0800278}
279
Joel Becker6136ca52009-02-12 19:32:43 -0800280static void ocfs2_xattr_value_update_clusters(struct ocfs2_extent_tree *et,
Tao Maf56654c2008-08-18 17:38:48 +0800281 u32 clusters)
282{
Joel Becker2a50a742008-12-09 14:24:33 -0800283 struct ocfs2_xattr_value_buf *vb = et->et_object;
Tao Maf56654c2008-08-18 17:38:48 +0800284
Joel Becker2a50a742008-12-09 14:24:33 -0800285 le32_add_cpu(&vb->vb_xv->xr_clusters, clusters);
Tao Maf56654c2008-08-18 17:38:48 +0800286}
287
Joel Becker1a09f552008-08-20 17:44:24 -0700288static struct ocfs2_extent_tree_operations ocfs2_xattr_value_et_ops = {
Joel Becker35dc0aa2008-08-20 16:25:06 -0700289 .eo_set_last_eb_blk = ocfs2_xattr_value_set_last_eb_blk,
290 .eo_get_last_eb_blk = ocfs2_xattr_value_get_last_eb_blk,
291 .eo_update_clusters = ocfs2_xattr_value_update_clusters,
Joel Becker0ce10102008-08-20 17:19:50 -0700292 .eo_fill_root_el = ocfs2_xattr_value_fill_root_el,
Tao Maf56654c2008-08-18 17:38:48 +0800293};
294
Joel Becker0ce10102008-08-20 17:19:50 -0700295static void ocfs2_xattr_tree_fill_root_el(struct ocfs2_extent_tree *et)
296{
297 struct ocfs2_xattr_block *xb = et->et_object;
298
299 et->et_root_el = &xb->xb_attrs.xb_root.xt_list;
300}
301
Joel Becker6136ca52009-02-12 19:32:43 -0800302static void ocfs2_xattr_tree_fill_max_leaf_clusters(struct ocfs2_extent_tree *et)
Joel Becker943cced2008-08-20 17:31:10 -0700303{
Joel Becker6136ca52009-02-12 19:32:43 -0800304 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Joel Becker943cced2008-08-20 17:31:10 -0700305 et->et_max_leaf_clusters =
Joel Becker6136ca52009-02-12 19:32:43 -0800306 ocfs2_clusters_for_bytes(sb, OCFS2_MAX_XATTR_TREE_LEAF_SIZE);
Joel Becker943cced2008-08-20 17:31:10 -0700307}
308
Tao Maba492612008-08-18 17:38:49 +0800309static void ocfs2_xattr_tree_set_last_eb_blk(struct ocfs2_extent_tree *et,
310 u64 blkno)
311{
Joel Beckerea5efa12008-08-20 16:57:27 -0700312 struct ocfs2_xattr_block *xb = et->et_object;
Tao Maba492612008-08-18 17:38:49 +0800313 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
314
315 xt->xt_last_eb_blk = cpu_to_le64(blkno);
316}
317
318static u64 ocfs2_xattr_tree_get_last_eb_blk(struct ocfs2_extent_tree *et)
319{
Joel Beckerea5efa12008-08-20 16:57:27 -0700320 struct ocfs2_xattr_block *xb = et->et_object;
Tao Maba492612008-08-18 17:38:49 +0800321 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
322
323 return le64_to_cpu(xt->xt_last_eb_blk);
324}
325
Joel Becker6136ca52009-02-12 19:32:43 -0800326static void ocfs2_xattr_tree_update_clusters(struct ocfs2_extent_tree *et,
Tao Maba492612008-08-18 17:38:49 +0800327 u32 clusters)
328{
Joel Beckerea5efa12008-08-20 16:57:27 -0700329 struct ocfs2_xattr_block *xb = et->et_object;
Tao Maba492612008-08-18 17:38:49 +0800330
331 le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, clusters);
332}
333
Tao Maba492612008-08-18 17:38:49 +0800334static struct ocfs2_extent_tree_operations ocfs2_xattr_tree_et_ops = {
Joel Becker35dc0aa2008-08-20 16:25:06 -0700335 .eo_set_last_eb_blk = ocfs2_xattr_tree_set_last_eb_blk,
336 .eo_get_last_eb_blk = ocfs2_xattr_tree_get_last_eb_blk,
337 .eo_update_clusters = ocfs2_xattr_tree_update_clusters,
Joel Becker0ce10102008-08-20 17:19:50 -0700338 .eo_fill_root_el = ocfs2_xattr_tree_fill_root_el,
Joel Becker943cced2008-08-20 17:31:10 -0700339 .eo_fill_max_leaf_clusters = ocfs2_xattr_tree_fill_max_leaf_clusters,
Tao Maba492612008-08-18 17:38:49 +0800340};
341
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800342static void ocfs2_dx_root_set_last_eb_blk(struct ocfs2_extent_tree *et,
343 u64 blkno)
344{
345 struct ocfs2_dx_root_block *dx_root = et->et_object;
346
347 dx_root->dr_last_eb_blk = cpu_to_le64(blkno);
348}
349
350static u64 ocfs2_dx_root_get_last_eb_blk(struct ocfs2_extent_tree *et)
351{
352 struct ocfs2_dx_root_block *dx_root = et->et_object;
353
354 return le64_to_cpu(dx_root->dr_last_eb_blk);
355}
356
Joel Becker6136ca52009-02-12 19:32:43 -0800357static void ocfs2_dx_root_update_clusters(struct ocfs2_extent_tree *et,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800358 u32 clusters)
359{
360 struct ocfs2_dx_root_block *dx_root = et->et_object;
361
362 le32_add_cpu(&dx_root->dr_clusters, clusters);
363}
364
Joel Becker6136ca52009-02-12 19:32:43 -0800365static int ocfs2_dx_root_sanity_check(struct ocfs2_extent_tree *et)
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800366{
367 struct ocfs2_dx_root_block *dx_root = et->et_object;
368
369 BUG_ON(!OCFS2_IS_VALID_DX_ROOT(dx_root));
370
371 return 0;
372}
373
374static void ocfs2_dx_root_fill_root_el(struct ocfs2_extent_tree *et)
375{
376 struct ocfs2_dx_root_block *dx_root = et->et_object;
377
378 et->et_root_el = &dx_root->dr_list;
379}
380
381static struct ocfs2_extent_tree_operations ocfs2_dx_root_et_ops = {
382 .eo_set_last_eb_blk = ocfs2_dx_root_set_last_eb_blk,
383 .eo_get_last_eb_blk = ocfs2_dx_root_get_last_eb_blk,
384 .eo_update_clusters = ocfs2_dx_root_update_clusters,
385 .eo_sanity_check = ocfs2_dx_root_sanity_check,
386 .eo_fill_root_el = ocfs2_dx_root_fill_root_el,
387};
388
Tao Mafe924412009-08-18 11:22:25 +0800389static void ocfs2_refcount_tree_fill_root_el(struct ocfs2_extent_tree *et)
390{
391 struct ocfs2_refcount_block *rb = et->et_object;
392
393 et->et_root_el = &rb->rf_list;
394}
395
396static void ocfs2_refcount_tree_set_last_eb_blk(struct ocfs2_extent_tree *et,
397 u64 blkno)
398{
399 struct ocfs2_refcount_block *rb = et->et_object;
400
401 rb->rf_last_eb_blk = cpu_to_le64(blkno);
402}
403
404static u64 ocfs2_refcount_tree_get_last_eb_blk(struct ocfs2_extent_tree *et)
405{
406 struct ocfs2_refcount_block *rb = et->et_object;
407
408 return le64_to_cpu(rb->rf_last_eb_blk);
409}
410
411static void ocfs2_refcount_tree_update_clusters(struct ocfs2_extent_tree *et,
412 u32 clusters)
413{
414 struct ocfs2_refcount_block *rb = et->et_object;
415
416 le32_add_cpu(&rb->rf_clusters, clusters);
417}
418
419static enum ocfs2_contig_type
420ocfs2_refcount_tree_extent_contig(struct ocfs2_extent_tree *et,
421 struct ocfs2_extent_rec *ext,
422 struct ocfs2_extent_rec *insert_rec)
423{
424 return CONTIG_NONE;
425}
426
427static struct ocfs2_extent_tree_operations ocfs2_refcount_tree_et_ops = {
428 .eo_set_last_eb_blk = ocfs2_refcount_tree_set_last_eb_blk,
429 .eo_get_last_eb_blk = ocfs2_refcount_tree_get_last_eb_blk,
430 .eo_update_clusters = ocfs2_refcount_tree_update_clusters,
431 .eo_fill_root_el = ocfs2_refcount_tree_fill_root_el,
432 .eo_extent_contig = ocfs2_refcount_tree_extent_contig,
433};
434
Joel Becker8d6220d2008-08-22 12:46:09 -0700435static void __ocfs2_init_extent_tree(struct ocfs2_extent_tree *et,
Joel Becker5e404e92009-02-13 03:54:22 -0800436 struct ocfs2_caching_info *ci,
Joel Becker8d6220d2008-08-22 12:46:09 -0700437 struct buffer_head *bh,
Joel Becker13723d02008-10-17 19:25:01 -0700438 ocfs2_journal_access_func access,
Joel Becker8d6220d2008-08-22 12:46:09 -0700439 void *obj,
440 struct ocfs2_extent_tree_operations *ops)
Tao Mae7d4cb62008-08-18 17:38:44 +0800441{
Joel Becker1a09f552008-08-20 17:44:24 -0700442 et->et_ops = ops;
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700443 et->et_root_bh = bh;
Joel Becker5e404e92009-02-13 03:54:22 -0800444 et->et_ci = ci;
Joel Becker13723d02008-10-17 19:25:01 -0700445 et->et_root_journal_access = access;
Joel Beckerea5efa12008-08-20 16:57:27 -0700446 if (!obj)
447 obj = (void *)bh->b_data;
448 et->et_object = obj;
Tao Mae7d4cb62008-08-18 17:38:44 +0800449
Joel Becker0ce10102008-08-20 17:19:50 -0700450 et->et_ops->eo_fill_root_el(et);
Joel Becker943cced2008-08-20 17:31:10 -0700451 if (!et->et_ops->eo_fill_max_leaf_clusters)
452 et->et_max_leaf_clusters = 0;
453 else
Joel Becker6136ca52009-02-12 19:32:43 -0800454 et->et_ops->eo_fill_max_leaf_clusters(et);
Tao Mae7d4cb62008-08-18 17:38:44 +0800455}
456
Joel Becker8d6220d2008-08-22 12:46:09 -0700457void ocfs2_init_dinode_extent_tree(struct ocfs2_extent_tree *et,
Joel Becker5e404e92009-02-13 03:54:22 -0800458 struct ocfs2_caching_info *ci,
Joel Becker8d6220d2008-08-22 12:46:09 -0700459 struct buffer_head *bh)
Joel Becker1a09f552008-08-20 17:44:24 -0700460{
Joel Becker5e404e92009-02-13 03:54:22 -0800461 __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_di,
Joel Becker13723d02008-10-17 19:25:01 -0700462 NULL, &ocfs2_dinode_et_ops);
Joel Becker1a09f552008-08-20 17:44:24 -0700463}
464
Joel Becker8d6220d2008-08-22 12:46:09 -0700465void ocfs2_init_xattr_tree_extent_tree(struct ocfs2_extent_tree *et,
Joel Becker5e404e92009-02-13 03:54:22 -0800466 struct ocfs2_caching_info *ci,
Joel Becker8d6220d2008-08-22 12:46:09 -0700467 struct buffer_head *bh)
Joel Becker1a09f552008-08-20 17:44:24 -0700468{
Joel Becker5e404e92009-02-13 03:54:22 -0800469 __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_xb,
Joel Becker13723d02008-10-17 19:25:01 -0700470 NULL, &ocfs2_xattr_tree_et_ops);
Joel Becker1a09f552008-08-20 17:44:24 -0700471}
472
Joel Becker8d6220d2008-08-22 12:46:09 -0700473void ocfs2_init_xattr_value_extent_tree(struct ocfs2_extent_tree *et,
Joel Becker5e404e92009-02-13 03:54:22 -0800474 struct ocfs2_caching_info *ci,
Joel Becker2a50a742008-12-09 14:24:33 -0800475 struct ocfs2_xattr_value_buf *vb)
Tao Mae7d4cb62008-08-18 17:38:44 +0800476{
Joel Becker5e404e92009-02-13 03:54:22 -0800477 __ocfs2_init_extent_tree(et, ci, vb->vb_bh, vb->vb_access, vb,
Joel Becker8d6220d2008-08-22 12:46:09 -0700478 &ocfs2_xattr_value_et_ops);
Tao Mae7d4cb62008-08-18 17:38:44 +0800479}
480
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800481void ocfs2_init_dx_root_extent_tree(struct ocfs2_extent_tree *et,
Joel Becker5e404e92009-02-13 03:54:22 -0800482 struct ocfs2_caching_info *ci,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800483 struct buffer_head *bh)
484{
Joel Becker5e404e92009-02-13 03:54:22 -0800485 __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_dr,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800486 NULL, &ocfs2_dx_root_et_ops);
487}
488
Tao Mafe924412009-08-18 11:22:25 +0800489void ocfs2_init_refcount_extent_tree(struct ocfs2_extent_tree *et,
490 struct ocfs2_caching_info *ci,
491 struct buffer_head *bh)
492{
493 __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_rb,
494 NULL, &ocfs2_refcount_tree_et_ops);
495}
496
Joel Becker35dc0aa2008-08-20 16:25:06 -0700497static inline void ocfs2_et_set_last_eb_blk(struct ocfs2_extent_tree *et,
498 u64 new_last_eb_blk)
Tao Mae7d4cb62008-08-18 17:38:44 +0800499{
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700500 et->et_ops->eo_set_last_eb_blk(et, new_last_eb_blk);
Tao Mae7d4cb62008-08-18 17:38:44 +0800501}
502
Joel Becker35dc0aa2008-08-20 16:25:06 -0700503static inline u64 ocfs2_et_get_last_eb_blk(struct ocfs2_extent_tree *et)
Tao Mae7d4cb62008-08-18 17:38:44 +0800504{
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700505 return et->et_ops->eo_get_last_eb_blk(et);
Tao Mae7d4cb62008-08-18 17:38:44 +0800506}
507
Joel Becker6136ca52009-02-12 19:32:43 -0800508static inline void ocfs2_et_update_clusters(struct ocfs2_extent_tree *et,
Joel Becker35dc0aa2008-08-20 16:25:06 -0700509 u32 clusters)
Tao Mae7d4cb62008-08-18 17:38:44 +0800510{
Joel Becker6136ca52009-02-12 19:32:43 -0800511 et->et_ops->eo_update_clusters(et, clusters);
Joel Becker35dc0aa2008-08-20 16:25:06 -0700512}
513
Joel Becker92ba4702009-02-13 03:18:34 -0800514static inline void ocfs2_et_extent_map_insert(struct ocfs2_extent_tree *et,
515 struct ocfs2_extent_rec *rec)
516{
517 if (et->et_ops->eo_extent_map_insert)
518 et->et_ops->eo_extent_map_insert(et, rec);
519}
520
Joel Becker4c911ee2009-02-13 02:50:12 -0800521static inline void ocfs2_et_extent_map_truncate(struct ocfs2_extent_tree *et,
522 u32 clusters)
523{
524 if (et->et_ops->eo_extent_map_truncate)
525 et->et_ops->eo_extent_map_truncate(et, clusters);
526}
527
Joel Becker13723d02008-10-17 19:25:01 -0700528static inline int ocfs2_et_root_journal_access(handle_t *handle,
Joel Becker13723d02008-10-17 19:25:01 -0700529 struct ocfs2_extent_tree *et,
530 int type)
531{
Joel Beckerd9a0a1f2009-02-12 17:32:34 -0800532 return et->et_root_journal_access(handle, et->et_ci, et->et_root_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700533 type);
534}
535
Tao Ma853a3a12009-08-18 11:22:18 +0800536static inline enum ocfs2_contig_type
537 ocfs2_et_extent_contig(struct ocfs2_extent_tree *et,
538 struct ocfs2_extent_rec *rec,
539 struct ocfs2_extent_rec *insert_rec)
540{
541 if (et->et_ops->eo_extent_contig)
542 return et->et_ops->eo_extent_contig(et, rec, insert_rec);
543
544 return ocfs2_extent_rec_contig(
545 ocfs2_metadata_cache_get_super(et->et_ci),
546 rec, insert_rec);
547}
548
Joel Becker6136ca52009-02-12 19:32:43 -0800549static inline int ocfs2_et_insert_check(struct ocfs2_extent_tree *et,
Joel Becker1e61ee72008-08-20 18:32:45 -0700550 struct ocfs2_extent_rec *rec)
551{
552 int ret = 0;
553
554 if (et->et_ops->eo_insert_check)
Joel Becker6136ca52009-02-12 19:32:43 -0800555 ret = et->et_ops->eo_insert_check(et, rec);
Joel Becker1e61ee72008-08-20 18:32:45 -0700556 return ret;
557}
558
Joel Becker6136ca52009-02-12 19:32:43 -0800559static inline int ocfs2_et_sanity_check(struct ocfs2_extent_tree *et)
Joel Becker35dc0aa2008-08-20 16:25:06 -0700560{
Joel Becker1e61ee72008-08-20 18:32:45 -0700561 int ret = 0;
562
563 if (et->et_ops->eo_sanity_check)
Joel Becker6136ca52009-02-12 19:32:43 -0800564 ret = et->et_ops->eo_sanity_check(et);
Joel Becker1e61ee72008-08-20 18:32:45 -0700565 return ret;
Tao Mae7d4cb62008-08-18 17:38:44 +0800566}
567
Mark Fashehccd979b2005-12-15 14:31:24 -0800568static void ocfs2_free_truncate_context(struct ocfs2_truncate_context *tc);
Mark Fasheh59a5e412007-06-22 15:52:36 -0700569static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt,
570 struct ocfs2_extent_block *eb);
Joel Beckerd401dc12009-02-13 02:24:10 -0800571static void ocfs2_adjust_rightmost_records(handle_t *handle,
572 struct ocfs2_extent_tree *et,
Tao Ma6b791bc2009-06-12 14:18:36 +0800573 struct ocfs2_path *path,
574 struct ocfs2_extent_rec *insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -0800575/*
576 * Reset the actual path elements so that we can re-use the structure
577 * to build another path. Generally, this involves freeing the buffer
578 * heads.
579 */
Tao Mae2e9f602009-08-18 11:22:34 +0800580void ocfs2_reinit_path(struct ocfs2_path *path, int keep_root)
Mark Fashehdcd05382007-01-16 11:32:23 -0800581{
582 int i, start = 0, depth = 0;
583 struct ocfs2_path_item *node;
584
585 if (keep_root)
586 start = 1;
587
588 for(i = start; i < path_num_items(path); i++) {
589 node = &path->p_node[i];
590
591 brelse(node->bh);
592 node->bh = NULL;
593 node->el = NULL;
594 }
595
596 /*
597 * Tree depth may change during truncate, or insert. If we're
598 * keeping the root extent list, then make sure that our path
599 * structure reflects the proper depth.
600 */
601 if (keep_root)
602 depth = le16_to_cpu(path_root_el(path)->l_tree_depth);
Joel Becker13723d02008-10-17 19:25:01 -0700603 else
604 path_root_access(path) = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -0800605
606 path->p_tree_depth = depth;
607}
608
Tao Mae2e9f602009-08-18 11:22:34 +0800609void ocfs2_free_path(struct ocfs2_path *path)
Mark Fashehdcd05382007-01-16 11:32:23 -0800610{
611 if (path) {
612 ocfs2_reinit_path(path, 0);
613 kfree(path);
614 }
615}
616
617/*
Mark Fasheh328d5752007-06-18 10:48:04 -0700618 * All the elements of src into dest. After this call, src could be freed
619 * without affecting dest.
620 *
621 * Both paths should have the same root. Any non-root elements of dest
622 * will be freed.
623 */
624static void ocfs2_cp_path(struct ocfs2_path *dest, struct ocfs2_path *src)
625{
626 int i;
627
628 BUG_ON(path_root_bh(dest) != path_root_bh(src));
629 BUG_ON(path_root_el(dest) != path_root_el(src));
Joel Becker13723d02008-10-17 19:25:01 -0700630 BUG_ON(path_root_access(dest) != path_root_access(src));
Mark Fasheh328d5752007-06-18 10:48:04 -0700631
632 ocfs2_reinit_path(dest, 1);
633
634 for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) {
635 dest->p_node[i].bh = src->p_node[i].bh;
636 dest->p_node[i].el = src->p_node[i].el;
637
638 if (dest->p_node[i].bh)
639 get_bh(dest->p_node[i].bh);
640 }
641}
642
643/*
Mark Fashehdcd05382007-01-16 11:32:23 -0800644 * Make the *dest path the same as src and re-initialize src path to
645 * have a root only.
646 */
647static void ocfs2_mv_path(struct ocfs2_path *dest, struct ocfs2_path *src)
648{
649 int i;
650
651 BUG_ON(path_root_bh(dest) != path_root_bh(src));
Joel Becker13723d02008-10-17 19:25:01 -0700652 BUG_ON(path_root_access(dest) != path_root_access(src));
Mark Fashehdcd05382007-01-16 11:32:23 -0800653
654 for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) {
655 brelse(dest->p_node[i].bh);
656
657 dest->p_node[i].bh = src->p_node[i].bh;
658 dest->p_node[i].el = src->p_node[i].el;
659
660 src->p_node[i].bh = NULL;
661 src->p_node[i].el = NULL;
662 }
663}
664
665/*
666 * Insert an extent block at given index.
667 *
668 * This will not take an additional reference on eb_bh.
669 */
670static inline void ocfs2_path_insert_eb(struct ocfs2_path *path, int index,
671 struct buffer_head *eb_bh)
672{
673 struct ocfs2_extent_block *eb = (struct ocfs2_extent_block *)eb_bh->b_data;
674
675 /*
676 * Right now, no root bh is an extent block, so this helps
677 * catch code errors with dinode trees. The assertion can be
678 * safely removed if we ever need to insert extent block
679 * structures at the root.
680 */
681 BUG_ON(index == 0);
682
683 path->p_node[index].bh = eb_bh;
684 path->p_node[index].el = &eb->h_list;
685}
686
687static struct ocfs2_path *ocfs2_new_path(struct buffer_head *root_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700688 struct ocfs2_extent_list *root_el,
689 ocfs2_journal_access_func access)
Mark Fashehdcd05382007-01-16 11:32:23 -0800690{
691 struct ocfs2_path *path;
692
693 BUG_ON(le16_to_cpu(root_el->l_tree_depth) >= OCFS2_MAX_PATH_DEPTH);
694
695 path = kzalloc(sizeof(*path), GFP_NOFS);
696 if (path) {
697 path->p_tree_depth = le16_to_cpu(root_el->l_tree_depth);
698 get_bh(root_bh);
699 path_root_bh(path) = root_bh;
700 path_root_el(path) = root_el;
Joel Becker13723d02008-10-17 19:25:01 -0700701 path_root_access(path) = access;
Mark Fashehdcd05382007-01-16 11:32:23 -0800702 }
703
704 return path;
705}
706
Tao Mae2e9f602009-08-18 11:22:34 +0800707struct ocfs2_path *ocfs2_new_path_from_path(struct ocfs2_path *path)
Joel Beckerffdd7a52008-10-17 22:32:01 -0700708{
Joel Becker13723d02008-10-17 19:25:01 -0700709 return ocfs2_new_path(path_root_bh(path), path_root_el(path),
710 path_root_access(path));
Joel Beckerffdd7a52008-10-17 22:32:01 -0700711}
712
Tao Mae2e9f602009-08-18 11:22:34 +0800713struct ocfs2_path *ocfs2_new_path_from_et(struct ocfs2_extent_tree *et)
Joel Beckerffdd7a52008-10-17 22:32:01 -0700714{
Joel Becker13723d02008-10-17 19:25:01 -0700715 return ocfs2_new_path(et->et_root_bh, et->et_root_el,
716 et->et_root_journal_access);
717}
718
719/*
720 * Journal the buffer at depth idx. All idx>0 are extent_blocks,
721 * otherwise it's the root_access function.
722 *
723 * I don't like the way this function's name looks next to
724 * ocfs2_journal_access_path(), but I don't have a better one.
725 */
Tao Mae2e9f602009-08-18 11:22:34 +0800726int ocfs2_path_bh_journal_access(handle_t *handle,
727 struct ocfs2_caching_info *ci,
728 struct ocfs2_path *path,
729 int idx)
Joel Becker13723d02008-10-17 19:25:01 -0700730{
731 ocfs2_journal_access_func access = path_root_access(path);
732
733 if (!access)
734 access = ocfs2_journal_access;
735
736 if (idx)
737 access = ocfs2_journal_access_eb;
738
Joel Becker0cf2f762009-02-12 16:41:25 -0800739 return access(handle, ci, path->p_node[idx].bh,
Joel Becker13723d02008-10-17 19:25:01 -0700740 OCFS2_JOURNAL_ACCESS_WRITE);
Joel Beckerffdd7a52008-10-17 22:32:01 -0700741}
742
Mark Fashehdcd05382007-01-16 11:32:23 -0800743/*
Mark Fashehdcd05382007-01-16 11:32:23 -0800744 * Convenience function to journal all components in a path.
745 */
Tao Mae2e9f602009-08-18 11:22:34 +0800746int ocfs2_journal_access_path(struct ocfs2_caching_info *ci,
747 handle_t *handle,
748 struct ocfs2_path *path)
Mark Fashehdcd05382007-01-16 11:32:23 -0800749{
750 int i, ret = 0;
751
752 if (!path)
753 goto out;
754
755 for(i = 0; i < path_num_items(path); i++) {
Joel Becker0cf2f762009-02-12 16:41:25 -0800756 ret = ocfs2_path_bh_journal_access(handle, ci, path, i);
Mark Fashehdcd05382007-01-16 11:32:23 -0800757 if (ret < 0) {
758 mlog_errno(ret);
759 goto out;
760 }
761 }
762
763out:
764 return ret;
765}
766
Mark Fasheh328d5752007-06-18 10:48:04 -0700767/*
768 * Return the index of the extent record which contains cluster #v_cluster.
769 * -1 is returned if it was not found.
770 *
771 * Should work fine on interior and exterior nodes.
772 */
773int ocfs2_search_extent_list(struct ocfs2_extent_list *el, u32 v_cluster)
774{
775 int ret = -1;
776 int i;
777 struct ocfs2_extent_rec *rec;
778 u32 rec_end, rec_start, clusters;
779
780 for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
781 rec = &el->l_recs[i];
782
783 rec_start = le32_to_cpu(rec->e_cpos);
784 clusters = ocfs2_rec_clusters(el, rec);
785
786 rec_end = rec_start + clusters;
787
788 if (v_cluster >= rec_start && v_cluster < rec_end) {
789 ret = i;
790 break;
791 }
792 }
793
794 return ret;
795}
796
Mark Fashehe48edee2007-03-07 16:46:57 -0800797/*
798 * NOTE: ocfs2_block_extent_contig(), ocfs2_extents_adjacent() and
Tao Ma853a3a12009-08-18 11:22:18 +0800799 * ocfs2_extent_rec_contig only work properly against leaf nodes!
Mark Fashehe48edee2007-03-07 16:46:57 -0800800 */
Mark Fashehdcd05382007-01-16 11:32:23 -0800801static int ocfs2_block_extent_contig(struct super_block *sb,
802 struct ocfs2_extent_rec *ext,
803 u64 blkno)
Mark Fashehccd979b2005-12-15 14:31:24 -0800804{
Mark Fashehe48edee2007-03-07 16:46:57 -0800805 u64 blk_end = le64_to_cpu(ext->e_blkno);
806
807 blk_end += ocfs2_clusters_to_blocks(sb,
808 le16_to_cpu(ext->e_leaf_clusters));
809
810 return blkno == blk_end;
Mark Fashehccd979b2005-12-15 14:31:24 -0800811}
812
Mark Fashehdcd05382007-01-16 11:32:23 -0800813static int ocfs2_extents_adjacent(struct ocfs2_extent_rec *left,
814 struct ocfs2_extent_rec *right)
815{
Mark Fashehe48edee2007-03-07 16:46:57 -0800816 u32 left_range;
817
818 left_range = le32_to_cpu(left->e_cpos) +
819 le16_to_cpu(left->e_leaf_clusters);
820
821 return (left_range == le32_to_cpu(right->e_cpos));
Mark Fashehdcd05382007-01-16 11:32:23 -0800822}
823
824static enum ocfs2_contig_type
Tao Ma853a3a12009-08-18 11:22:18 +0800825 ocfs2_extent_rec_contig(struct super_block *sb,
826 struct ocfs2_extent_rec *ext,
827 struct ocfs2_extent_rec *insert_rec)
Mark Fashehdcd05382007-01-16 11:32:23 -0800828{
829 u64 blkno = le64_to_cpu(insert_rec->e_blkno);
830
Mark Fasheh328d5752007-06-18 10:48:04 -0700831 /*
832 * Refuse to coalesce extent records with different flag
833 * fields - we don't want to mix unwritten extents with user
834 * data.
835 */
836 if (ext->e_flags != insert_rec->e_flags)
837 return CONTIG_NONE;
838
Mark Fashehdcd05382007-01-16 11:32:23 -0800839 if (ocfs2_extents_adjacent(ext, insert_rec) &&
Joel Beckerb4a17652009-02-13 03:07:09 -0800840 ocfs2_block_extent_contig(sb, ext, blkno))
Mark Fashehdcd05382007-01-16 11:32:23 -0800841 return CONTIG_RIGHT;
842
843 blkno = le64_to_cpu(ext->e_blkno);
844 if (ocfs2_extents_adjacent(insert_rec, ext) &&
Joel Beckerb4a17652009-02-13 03:07:09 -0800845 ocfs2_block_extent_contig(sb, insert_rec, blkno))
Mark Fashehdcd05382007-01-16 11:32:23 -0800846 return CONTIG_LEFT;
847
848 return CONTIG_NONE;
849}
850
851/*
852 * NOTE: We can have pretty much any combination of contiguousness and
853 * appending.
854 *
855 * The usefulness of APPEND_TAIL is more in that it lets us know that
856 * we'll have to update the path to that leaf.
857 */
858enum ocfs2_append_type {
859 APPEND_NONE = 0,
860 APPEND_TAIL,
861};
862
Mark Fasheh328d5752007-06-18 10:48:04 -0700863enum ocfs2_split_type {
864 SPLIT_NONE = 0,
865 SPLIT_LEFT,
866 SPLIT_RIGHT,
867};
868
Mark Fashehdcd05382007-01-16 11:32:23 -0800869struct ocfs2_insert_type {
Mark Fasheh328d5752007-06-18 10:48:04 -0700870 enum ocfs2_split_type ins_split;
Mark Fashehdcd05382007-01-16 11:32:23 -0800871 enum ocfs2_append_type ins_appending;
872 enum ocfs2_contig_type ins_contig;
873 int ins_contig_index;
Mark Fashehdcd05382007-01-16 11:32:23 -0800874 int ins_tree_depth;
875};
876
Mark Fasheh328d5752007-06-18 10:48:04 -0700877struct ocfs2_merge_ctxt {
878 enum ocfs2_contig_type c_contig_type;
879 int c_has_empty_extent;
880 int c_split_covers_rec;
Mark Fasheh328d5752007-06-18 10:48:04 -0700881};
882
Joel Becker5e965812008-11-13 14:49:16 -0800883static int ocfs2_validate_extent_block(struct super_block *sb,
884 struct buffer_head *bh)
885{
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700886 int rc;
Joel Becker5e965812008-11-13 14:49:16 -0800887 struct ocfs2_extent_block *eb =
888 (struct ocfs2_extent_block *)bh->b_data;
889
Joel Becker970e4932008-11-13 14:49:19 -0800890 mlog(0, "Validating extent block %llu\n",
891 (unsigned long long)bh->b_blocknr);
892
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700893 BUG_ON(!buffer_uptodate(bh));
894
895 /*
896 * If the ecc fails, we return the error but otherwise
897 * leave the filesystem running. We know any error is
898 * local to this block.
899 */
900 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &eb->h_check);
Joel Becker13723d02008-10-17 19:25:01 -0700901 if (rc) {
902 mlog(ML_ERROR, "Checksum failed for extent block %llu\n",
903 (unsigned long long)bh->b_blocknr);
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700904 return rc;
Joel Becker13723d02008-10-17 19:25:01 -0700905 }
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700906
907 /*
908 * Errors after here are fatal.
909 */
910
Joel Becker5e965812008-11-13 14:49:16 -0800911 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
912 ocfs2_error(sb,
913 "Extent block #%llu has bad signature %.*s",
914 (unsigned long long)bh->b_blocknr, 7,
915 eb->h_signature);
916 return -EINVAL;
917 }
918
919 if (le64_to_cpu(eb->h_blkno) != bh->b_blocknr) {
920 ocfs2_error(sb,
921 "Extent block #%llu has an invalid h_blkno "
922 "of %llu",
923 (unsigned long long)bh->b_blocknr,
924 (unsigned long long)le64_to_cpu(eb->h_blkno));
925 return -EINVAL;
926 }
927
928 if (le32_to_cpu(eb->h_fs_generation) != OCFS2_SB(sb)->fs_generation) {
929 ocfs2_error(sb,
930 "Extent block #%llu has an invalid "
931 "h_fs_generation of #%u",
932 (unsigned long long)bh->b_blocknr,
933 le32_to_cpu(eb->h_fs_generation));
934 return -EINVAL;
935 }
936
937 return 0;
938}
939
Joel Becker3d03a302009-02-12 17:49:26 -0800940int ocfs2_read_extent_block(struct ocfs2_caching_info *ci, u64 eb_blkno,
Joel Becker5e965812008-11-13 14:49:16 -0800941 struct buffer_head **bh)
942{
943 int rc;
944 struct buffer_head *tmp = *bh;
945
Joel Becker3d03a302009-02-12 17:49:26 -0800946 rc = ocfs2_read_block(ci, eb_blkno, &tmp,
Joel Becker970e4932008-11-13 14:49:19 -0800947 ocfs2_validate_extent_block);
Joel Becker5e965812008-11-13 14:49:16 -0800948
949 /* If ocfs2_read_block() got us a new bh, pass it up. */
Joel Becker970e4932008-11-13 14:49:19 -0800950 if (!rc && !*bh)
Joel Becker5e965812008-11-13 14:49:16 -0800951 *bh = tmp;
952
Joel Becker5e965812008-11-13 14:49:16 -0800953 return rc;
954}
955
956
Mark Fashehccd979b2005-12-15 14:31:24 -0800957/*
958 * How many free extents have we got before we need more meta data?
959 */
960int ocfs2_num_free_extents(struct ocfs2_super *osb,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700961 struct ocfs2_extent_tree *et)
Mark Fashehccd979b2005-12-15 14:31:24 -0800962{
963 int retval;
Tao Mae7d4cb62008-08-18 17:38:44 +0800964 struct ocfs2_extent_list *el = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800965 struct ocfs2_extent_block *eb;
966 struct buffer_head *eb_bh = NULL;
Tao Mae7d4cb62008-08-18 17:38:44 +0800967 u64 last_eb_blk = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800968
969 mlog_entry_void();
970
Joel Beckerf99b9b72008-08-20 19:36:33 -0700971 el = et->et_root_el;
972 last_eb_blk = ocfs2_et_get_last_eb_blk(et);
Mark Fashehccd979b2005-12-15 14:31:24 -0800973
Tao Mae7d4cb62008-08-18 17:38:44 +0800974 if (last_eb_blk) {
Joel Becker3d03a302009-02-12 17:49:26 -0800975 retval = ocfs2_read_extent_block(et->et_ci, last_eb_blk,
976 &eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800977 if (retval < 0) {
978 mlog_errno(retval);
979 goto bail;
980 }
981 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
982 el = &eb->h_list;
Tao Mae7d4cb62008-08-18 17:38:44 +0800983 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800984
985 BUG_ON(el->l_tree_depth != 0);
986
987 retval = le16_to_cpu(el->l_count) - le16_to_cpu(el->l_next_free_rec);
988bail:
Mark Fasheha81cb882008-10-07 14:25:16 -0700989 brelse(eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800990
991 mlog_exit(retval);
992 return retval;
993}
994
995/* expects array to already be allocated
996 *
997 * sets h_signature, h_blkno, h_suballoc_bit, h_suballoc_slot, and
998 * l_count for you
999 */
Joel Becker42a5a7a2009-02-12 18:49:19 -08001000static int ocfs2_create_new_meta_bhs(handle_t *handle,
1001 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001002 int wanted,
1003 struct ocfs2_alloc_context *meta_ac,
1004 struct buffer_head *bhs[])
1005{
1006 int count, status, i;
1007 u16 suballoc_bit_start;
1008 u32 num_got;
1009 u64 first_blkno;
Joel Becker42a5a7a2009-02-12 18:49:19 -08001010 struct ocfs2_super *osb =
1011 OCFS2_SB(ocfs2_metadata_cache_get_super(et->et_ci));
Mark Fashehccd979b2005-12-15 14:31:24 -08001012 struct ocfs2_extent_block *eb;
1013
1014 mlog_entry_void();
1015
1016 count = 0;
1017 while (count < wanted) {
1018 status = ocfs2_claim_metadata(osb,
1019 handle,
1020 meta_ac,
1021 wanted - count,
1022 &suballoc_bit_start,
1023 &num_got,
1024 &first_blkno);
1025 if (status < 0) {
1026 mlog_errno(status);
1027 goto bail;
1028 }
1029
1030 for(i = count; i < (num_got + count); i++) {
1031 bhs[i] = sb_getblk(osb->sb, first_blkno);
1032 if (bhs[i] == NULL) {
1033 status = -EIO;
1034 mlog_errno(status);
1035 goto bail;
1036 }
Joel Becker42a5a7a2009-02-12 18:49:19 -08001037 ocfs2_set_new_buffer_uptodate(et->et_ci, bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001038
Joel Becker42a5a7a2009-02-12 18:49:19 -08001039 status = ocfs2_journal_access_eb(handle, et->et_ci,
1040 bhs[i],
Joel Becker13723d02008-10-17 19:25:01 -07001041 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001042 if (status < 0) {
1043 mlog_errno(status);
1044 goto bail;
1045 }
1046
1047 memset(bhs[i]->b_data, 0, osb->sb->s_blocksize);
1048 eb = (struct ocfs2_extent_block *) bhs[i]->b_data;
1049 /* Ok, setup the minimal stuff here. */
1050 strcpy(eb->h_signature, OCFS2_EXTENT_BLOCK_SIGNATURE);
1051 eb->h_blkno = cpu_to_le64(first_blkno);
1052 eb->h_fs_generation = cpu_to_le32(osb->fs_generation);
Tiger Yangb89c5422010-01-25 14:11:06 +08001053 eb->h_suballoc_slot =
1054 cpu_to_le16(meta_ac->ac_alloc_slot);
Mark Fashehccd979b2005-12-15 14:31:24 -08001055 eb->h_suballoc_bit = cpu_to_le16(suballoc_bit_start);
1056 eb->h_list.l_count =
1057 cpu_to_le16(ocfs2_extent_recs_per_eb(osb->sb));
1058
1059 suballoc_bit_start++;
1060 first_blkno++;
1061
1062 /* We'll also be dirtied by the caller, so
1063 * this isn't absolutely necessary. */
Joel Beckerec20cec2010-03-19 14:13:52 -07001064 ocfs2_journal_dirty(handle, bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001065 }
1066
1067 count += num_got;
1068 }
1069
1070 status = 0;
1071bail:
1072 if (status < 0) {
1073 for(i = 0; i < wanted; i++) {
Mark Fasheha81cb882008-10-07 14:25:16 -07001074 brelse(bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001075 bhs[i] = NULL;
1076 }
1077 }
1078 mlog_exit(status);
1079 return status;
1080}
1081
1082/*
Mark Fashehdcd05382007-01-16 11:32:23 -08001083 * Helper function for ocfs2_add_branch() and ocfs2_shift_tree_depth().
1084 *
1085 * Returns the sum of the rightmost extent rec logical offset and
1086 * cluster count.
1087 *
1088 * ocfs2_add_branch() uses this to determine what logical cluster
1089 * value should be populated into the leftmost new branch records.
1090 *
1091 * ocfs2_shift_tree_depth() uses this to determine the # clusters
1092 * value for the new topmost tree record.
1093 */
1094static inline u32 ocfs2_sum_rightmost_rec(struct ocfs2_extent_list *el)
1095{
1096 int i;
1097
1098 i = le16_to_cpu(el->l_next_free_rec) - 1;
1099
1100 return le32_to_cpu(el->l_recs[i].e_cpos) +
Mark Fashehe48edee2007-03-07 16:46:57 -08001101 ocfs2_rec_clusters(el, &el->l_recs[i]);
Mark Fashehdcd05382007-01-16 11:32:23 -08001102}
1103
1104/*
Tao Ma6b791bc2009-06-12 14:18:36 +08001105 * Change range of the branches in the right most path according to the leaf
1106 * extent block's rightmost record.
1107 */
1108static int ocfs2_adjust_rightmost_branch(handle_t *handle,
Tao Ma6b791bc2009-06-12 14:18:36 +08001109 struct ocfs2_extent_tree *et)
1110{
1111 int status;
1112 struct ocfs2_path *path = NULL;
1113 struct ocfs2_extent_list *el;
1114 struct ocfs2_extent_rec *rec;
1115
1116 path = ocfs2_new_path_from_et(et);
1117 if (!path) {
1118 status = -ENOMEM;
1119 return status;
1120 }
1121
Joel Beckerfacdb772009-02-12 18:08:48 -08001122 status = ocfs2_find_path(et->et_ci, path, UINT_MAX);
Tao Ma6b791bc2009-06-12 14:18:36 +08001123 if (status < 0) {
1124 mlog_errno(status);
1125 goto out;
1126 }
1127
1128 status = ocfs2_extend_trans(handle, path_num_items(path) +
1129 handle->h_buffer_credits);
1130 if (status < 0) {
1131 mlog_errno(status);
1132 goto out;
1133 }
1134
Joel Beckerd401dc12009-02-13 02:24:10 -08001135 status = ocfs2_journal_access_path(et->et_ci, handle, path);
Tao Ma6b791bc2009-06-12 14:18:36 +08001136 if (status < 0) {
1137 mlog_errno(status);
1138 goto out;
1139 }
1140
1141 el = path_leaf_el(path);
1142 rec = &el->l_recs[le32_to_cpu(el->l_next_free_rec) - 1];
1143
Joel Beckerd401dc12009-02-13 02:24:10 -08001144 ocfs2_adjust_rightmost_records(handle, et, path, rec);
Tao Ma6b791bc2009-06-12 14:18:36 +08001145
1146out:
1147 ocfs2_free_path(path);
1148 return status;
1149}
1150
1151/*
Mark Fashehccd979b2005-12-15 14:31:24 -08001152 * Add an entire tree branch to our inode. eb_bh is the extent block
Joel Beckerd401dc12009-02-13 02:24:10 -08001153 * to start at, if we don't want to start the branch at the root
Mark Fashehccd979b2005-12-15 14:31:24 -08001154 * structure.
1155 *
1156 * last_eb_bh is required as we have to update it's next_leaf pointer
1157 * for the new last extent block.
1158 *
1159 * the new branch will be 'empty' in the sense that every block will
Mark Fashehe48edee2007-03-07 16:46:57 -08001160 * contain a single record with cluster count == 0.
Mark Fashehccd979b2005-12-15 14:31:24 -08001161 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001162static int ocfs2_add_branch(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08001163 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001164 struct buffer_head *eb_bh,
Mark Fasheh328d5752007-06-18 10:48:04 -07001165 struct buffer_head **last_eb_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -08001166 struct ocfs2_alloc_context *meta_ac)
1167{
1168 int status, new_blocks, i;
1169 u64 next_blkno, new_last_eb_blk;
1170 struct buffer_head *bh;
1171 struct buffer_head **new_eb_bhs = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001172 struct ocfs2_extent_block *eb;
1173 struct ocfs2_extent_list *eb_el;
1174 struct ocfs2_extent_list *el;
Tao Ma6b791bc2009-06-12 14:18:36 +08001175 u32 new_cpos, root_end;
Mark Fashehccd979b2005-12-15 14:31:24 -08001176
1177 mlog_entry_void();
1178
Mark Fasheh328d5752007-06-18 10:48:04 -07001179 BUG_ON(!last_eb_bh || !*last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001180
Mark Fashehccd979b2005-12-15 14:31:24 -08001181 if (eb_bh) {
1182 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
1183 el = &eb->h_list;
1184 } else
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001185 el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001186
1187 /* we never add a branch to a leaf. */
1188 BUG_ON(!el->l_tree_depth);
1189
1190 new_blocks = le16_to_cpu(el->l_tree_depth);
1191
Tao Ma6b791bc2009-06-12 14:18:36 +08001192 eb = (struct ocfs2_extent_block *)(*last_eb_bh)->b_data;
1193 new_cpos = ocfs2_sum_rightmost_rec(&eb->h_list);
1194 root_end = ocfs2_sum_rightmost_rec(et->et_root_el);
1195
1196 /*
1197 * If there is a gap before the root end and the real end
1198 * of the righmost leaf block, we need to remove the gap
1199 * between new_cpos and root_end first so that the tree
1200 * is consistent after we add a new branch(it will start
1201 * from new_cpos).
1202 */
1203 if (root_end > new_cpos) {
1204 mlog(0, "adjust the cluster end from %u to %u\n",
1205 root_end, new_cpos);
Joel Beckerd401dc12009-02-13 02:24:10 -08001206 status = ocfs2_adjust_rightmost_branch(handle, et);
Tao Ma6b791bc2009-06-12 14:18:36 +08001207 if (status) {
1208 mlog_errno(status);
1209 goto bail;
1210 }
1211 }
1212
Mark Fashehccd979b2005-12-15 14:31:24 -08001213 /* allocate the number of new eb blocks we need */
1214 new_eb_bhs = kcalloc(new_blocks, sizeof(struct buffer_head *),
1215 GFP_KERNEL);
1216 if (!new_eb_bhs) {
1217 status = -ENOMEM;
1218 mlog_errno(status);
1219 goto bail;
1220 }
1221
Joel Becker42a5a7a2009-02-12 18:49:19 -08001222 status = ocfs2_create_new_meta_bhs(handle, et, new_blocks,
Mark Fashehccd979b2005-12-15 14:31:24 -08001223 meta_ac, new_eb_bhs);
1224 if (status < 0) {
1225 mlog_errno(status);
1226 goto bail;
1227 }
1228
1229 /* Note: new_eb_bhs[new_blocks - 1] is the guy which will be
1230 * linked with the rest of the tree.
1231 * conversly, new_eb_bhs[0] is the new bottommost leaf.
1232 *
1233 * when we leave the loop, new_last_eb_blk will point to the
1234 * newest leaf, and next_blkno will point to the topmost extent
1235 * block. */
1236 next_blkno = new_last_eb_blk = 0;
1237 for(i = 0; i < new_blocks; i++) {
1238 bh = new_eb_bhs[i];
1239 eb = (struct ocfs2_extent_block *) bh->b_data;
Joel Becker5e965812008-11-13 14:49:16 -08001240 /* ocfs2_create_new_meta_bhs() should create it right! */
1241 BUG_ON(!OCFS2_IS_VALID_EXTENT_BLOCK(eb));
Mark Fashehccd979b2005-12-15 14:31:24 -08001242 eb_el = &eb->h_list;
1243
Joel Beckerd401dc12009-02-13 02:24:10 -08001244 status = ocfs2_journal_access_eb(handle, et->et_ci, bh,
Joel Becker13723d02008-10-17 19:25:01 -07001245 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001246 if (status < 0) {
1247 mlog_errno(status);
1248 goto bail;
1249 }
1250
1251 eb->h_next_leaf_blk = 0;
1252 eb_el->l_tree_depth = cpu_to_le16(i);
1253 eb_el->l_next_free_rec = cpu_to_le16(1);
Mark Fashehdcd05382007-01-16 11:32:23 -08001254 /*
1255 * This actually counts as an empty extent as
1256 * c_clusters == 0
1257 */
1258 eb_el->l_recs[0].e_cpos = cpu_to_le32(new_cpos);
Mark Fashehccd979b2005-12-15 14:31:24 -08001259 eb_el->l_recs[0].e_blkno = cpu_to_le64(next_blkno);
Mark Fashehe48edee2007-03-07 16:46:57 -08001260 /*
1261 * eb_el isn't always an interior node, but even leaf
1262 * nodes want a zero'd flags and reserved field so
1263 * this gets the whole 32 bits regardless of use.
1264 */
1265 eb_el->l_recs[0].e_int_clusters = cpu_to_le32(0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001266 if (!eb_el->l_tree_depth)
1267 new_last_eb_blk = le64_to_cpu(eb->h_blkno);
1268
Joel Beckerec20cec2010-03-19 14:13:52 -07001269 ocfs2_journal_dirty(handle, bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001270 next_blkno = le64_to_cpu(eb->h_blkno);
1271 }
1272
1273 /* This is a bit hairy. We want to update up to three blocks
1274 * here without leaving any of them in an inconsistent state
1275 * in case of error. We don't have to worry about
1276 * journal_dirty erroring as it won't unless we've aborted the
1277 * handle (in which case we would never be here) so reserving
1278 * the write with journal_access is all we need to do. */
Joel Beckerd401dc12009-02-13 02:24:10 -08001279 status = ocfs2_journal_access_eb(handle, et->et_ci, *last_eb_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001280 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001281 if (status < 0) {
1282 mlog_errno(status);
1283 goto bail;
1284 }
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08001285 status = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07001286 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001287 if (status < 0) {
1288 mlog_errno(status);
1289 goto bail;
1290 }
1291 if (eb_bh) {
Joel Beckerd401dc12009-02-13 02:24:10 -08001292 status = ocfs2_journal_access_eb(handle, et->et_ci, eb_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001293 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001294 if (status < 0) {
1295 mlog_errno(status);
1296 goto bail;
1297 }
1298 }
1299
1300 /* Link the new branch into the rest of the tree (el will
Tao Mae7d4cb62008-08-18 17:38:44 +08001301 * either be on the root_bh, or the extent block passed in. */
Mark Fashehccd979b2005-12-15 14:31:24 -08001302 i = le16_to_cpu(el->l_next_free_rec);
1303 el->l_recs[i].e_blkno = cpu_to_le64(next_blkno);
Mark Fashehdcd05382007-01-16 11:32:23 -08001304 el->l_recs[i].e_cpos = cpu_to_le32(new_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001305 el->l_recs[i].e_int_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001306 le16_add_cpu(&el->l_next_free_rec, 1);
1307
1308 /* fe needs a new last extent block pointer, as does the
1309 * next_leaf on the previously last-extent-block. */
Joel Becker35dc0aa2008-08-20 16:25:06 -07001310 ocfs2_et_set_last_eb_blk(et, new_last_eb_blk);
Mark Fashehccd979b2005-12-15 14:31:24 -08001311
Mark Fasheh328d5752007-06-18 10:48:04 -07001312 eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08001313 eb->h_next_leaf_blk = cpu_to_le64(new_last_eb_blk);
1314
Joel Beckerec20cec2010-03-19 14:13:52 -07001315 ocfs2_journal_dirty(handle, *last_eb_bh);
1316 ocfs2_journal_dirty(handle, et->et_root_bh);
1317 if (eb_bh)
1318 ocfs2_journal_dirty(handle, eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001319
Mark Fasheh328d5752007-06-18 10:48:04 -07001320 /*
1321 * Some callers want to track the rightmost leaf so pass it
1322 * back here.
1323 */
1324 brelse(*last_eb_bh);
1325 get_bh(new_eb_bhs[0]);
1326 *last_eb_bh = new_eb_bhs[0];
1327
Mark Fashehccd979b2005-12-15 14:31:24 -08001328 status = 0;
1329bail:
1330 if (new_eb_bhs) {
1331 for (i = 0; i < new_blocks; i++)
Mark Fasheha81cb882008-10-07 14:25:16 -07001332 brelse(new_eb_bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001333 kfree(new_eb_bhs);
1334 }
1335
1336 mlog_exit(status);
1337 return status;
1338}
1339
1340/*
1341 * adds another level to the allocation tree.
1342 * returns back the new extent block so you can add a branch to it
1343 * after this call.
1344 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001345static int ocfs2_shift_tree_depth(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08001346 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001347 struct ocfs2_alloc_context *meta_ac,
1348 struct buffer_head **ret_new_eb_bh)
1349{
1350 int status, i;
Mark Fashehdcd05382007-01-16 11:32:23 -08001351 u32 new_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -08001352 struct buffer_head *new_eb_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001353 struct ocfs2_extent_block *eb;
Tao Mae7d4cb62008-08-18 17:38:44 +08001354 struct ocfs2_extent_list *root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001355 struct ocfs2_extent_list *eb_el;
1356
1357 mlog_entry_void();
1358
Joel Becker42a5a7a2009-02-12 18:49:19 -08001359 status = ocfs2_create_new_meta_bhs(handle, et, 1, meta_ac,
Mark Fashehccd979b2005-12-15 14:31:24 -08001360 &new_eb_bh);
1361 if (status < 0) {
1362 mlog_errno(status);
1363 goto bail;
1364 }
1365
1366 eb = (struct ocfs2_extent_block *) new_eb_bh->b_data;
Joel Becker5e965812008-11-13 14:49:16 -08001367 /* ocfs2_create_new_meta_bhs() should create it right! */
1368 BUG_ON(!OCFS2_IS_VALID_EXTENT_BLOCK(eb));
Mark Fashehccd979b2005-12-15 14:31:24 -08001369
1370 eb_el = &eb->h_list;
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001371 root_el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001372
Joel Beckerd401dc12009-02-13 02:24:10 -08001373 status = ocfs2_journal_access_eb(handle, et->et_ci, new_eb_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001374 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001375 if (status < 0) {
1376 mlog_errno(status);
1377 goto bail;
1378 }
1379
Tao Mae7d4cb62008-08-18 17:38:44 +08001380 /* copy the root extent list data into the new extent block */
1381 eb_el->l_tree_depth = root_el->l_tree_depth;
1382 eb_el->l_next_free_rec = root_el->l_next_free_rec;
1383 for (i = 0; i < le16_to_cpu(root_el->l_next_free_rec); i++)
1384 eb_el->l_recs[i] = root_el->l_recs[i];
Mark Fashehccd979b2005-12-15 14:31:24 -08001385
Joel Beckerec20cec2010-03-19 14:13:52 -07001386 ocfs2_journal_dirty(handle, new_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001387
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08001388 status = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07001389 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001390 if (status < 0) {
1391 mlog_errno(status);
1392 goto bail;
1393 }
1394
Mark Fashehdcd05382007-01-16 11:32:23 -08001395 new_clusters = ocfs2_sum_rightmost_rec(eb_el);
1396
Tao Mae7d4cb62008-08-18 17:38:44 +08001397 /* update root_bh now */
1398 le16_add_cpu(&root_el->l_tree_depth, 1);
1399 root_el->l_recs[0].e_cpos = 0;
1400 root_el->l_recs[0].e_blkno = eb->h_blkno;
1401 root_el->l_recs[0].e_int_clusters = cpu_to_le32(new_clusters);
1402 for (i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++)
1403 memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec));
1404 root_el->l_next_free_rec = cpu_to_le16(1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001405
1406 /* If this is our 1st tree depth shift, then last_eb_blk
1407 * becomes the allocated extent block */
Tao Mae7d4cb62008-08-18 17:38:44 +08001408 if (root_el->l_tree_depth == cpu_to_le16(1))
Joel Becker35dc0aa2008-08-20 16:25:06 -07001409 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fashehccd979b2005-12-15 14:31:24 -08001410
Joel Beckerec20cec2010-03-19 14:13:52 -07001411 ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001412
1413 *ret_new_eb_bh = new_eb_bh;
1414 new_eb_bh = NULL;
1415 status = 0;
1416bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001417 brelse(new_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001418
1419 mlog_exit(status);
1420 return status;
1421}
1422
1423/*
Mark Fashehccd979b2005-12-15 14:31:24 -08001424 * Should only be called when there is no space left in any of the
1425 * leaf nodes. What we want to do is find the lowest tree depth
1426 * non-leaf extent block with room for new records. There are three
1427 * valid results of this search:
1428 *
1429 * 1) a lowest extent block is found, then we pass it back in
1430 * *lowest_eb_bh and return '0'
1431 *
Tao Mae7d4cb62008-08-18 17:38:44 +08001432 * 2) the search fails to find anything, but the root_el has room. We
Mark Fashehccd979b2005-12-15 14:31:24 -08001433 * pass NULL back in *lowest_eb_bh, but still return '0'
1434 *
Tao Mae7d4cb62008-08-18 17:38:44 +08001435 * 3) the search fails to find anything AND the root_el is full, in
Mark Fashehccd979b2005-12-15 14:31:24 -08001436 * which case we return > 0
1437 *
1438 * return status < 0 indicates an error.
1439 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001440static int ocfs2_find_branch_target(struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001441 struct buffer_head **target_bh)
1442{
1443 int status = 0, i;
1444 u64 blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -08001445 struct ocfs2_extent_block *eb;
1446 struct ocfs2_extent_list *el;
1447 struct buffer_head *bh = NULL;
1448 struct buffer_head *lowest_bh = NULL;
1449
1450 mlog_entry_void();
1451
1452 *target_bh = NULL;
1453
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001454 el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001455
1456 while(le16_to_cpu(el->l_tree_depth) > 1) {
1457 if (le16_to_cpu(el->l_next_free_rec) == 0) {
Joel Becker3d03a302009-02-12 17:49:26 -08001458 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
1459 "Owner %llu has empty "
Mark Fashehccd979b2005-12-15 14:31:24 -08001460 "extent list (next_free_rec == 0)",
Joel Becker3d03a302009-02-12 17:49:26 -08001461 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci));
Mark Fashehccd979b2005-12-15 14:31:24 -08001462 status = -EIO;
1463 goto bail;
1464 }
1465 i = le16_to_cpu(el->l_next_free_rec) - 1;
1466 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
1467 if (!blkno) {
Joel Becker3d03a302009-02-12 17:49:26 -08001468 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
1469 "Owner %llu has extent "
Mark Fashehccd979b2005-12-15 14:31:24 -08001470 "list where extent # %d has no physical "
1471 "block start",
Joel Becker3d03a302009-02-12 17:49:26 -08001472 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), i);
Mark Fashehccd979b2005-12-15 14:31:24 -08001473 status = -EIO;
1474 goto bail;
1475 }
1476
Mark Fasheha81cb882008-10-07 14:25:16 -07001477 brelse(bh);
1478 bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001479
Joel Becker3d03a302009-02-12 17:49:26 -08001480 status = ocfs2_read_extent_block(et->et_ci, blkno, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001481 if (status < 0) {
1482 mlog_errno(status);
1483 goto bail;
1484 }
1485
1486 eb = (struct ocfs2_extent_block *) bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08001487 el = &eb->h_list;
1488
1489 if (le16_to_cpu(el->l_next_free_rec) <
1490 le16_to_cpu(el->l_count)) {
Mark Fasheha81cb882008-10-07 14:25:16 -07001491 brelse(lowest_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001492 lowest_bh = bh;
1493 get_bh(lowest_bh);
1494 }
1495 }
1496
1497 /* If we didn't find one and the fe doesn't have any room,
1498 * then return '1' */
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001499 el = et->et_root_el;
Tao Mae7d4cb62008-08-18 17:38:44 +08001500 if (!lowest_bh && (el->l_next_free_rec == el->l_count))
Mark Fashehccd979b2005-12-15 14:31:24 -08001501 status = 1;
1502
1503 *target_bh = lowest_bh;
1504bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001505 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001506
1507 mlog_exit(status);
1508 return status;
1509}
1510
Mark Fashehe48edee2007-03-07 16:46:57 -08001511/*
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001512 * Grow a b-tree so that it has more records.
1513 *
1514 * We might shift the tree depth in which case existing paths should
1515 * be considered invalid.
1516 *
1517 * Tree depth after the grow is returned via *final_depth.
Mark Fasheh328d5752007-06-18 10:48:04 -07001518 *
1519 * *last_eb_bh will be updated by ocfs2_add_branch().
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001520 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001521static int ocfs2_grow_tree(handle_t *handle, struct ocfs2_extent_tree *et,
1522 int *final_depth, struct buffer_head **last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001523 struct ocfs2_alloc_context *meta_ac)
1524{
1525 int ret, shift;
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001526 struct ocfs2_extent_list *el = et->et_root_el;
Tao Mae7d4cb62008-08-18 17:38:44 +08001527 int depth = le16_to_cpu(el->l_tree_depth);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001528 struct buffer_head *bh = NULL;
1529
1530 BUG_ON(meta_ac == NULL);
1531
Joel Beckerd401dc12009-02-13 02:24:10 -08001532 shift = ocfs2_find_branch_target(et, &bh);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001533 if (shift < 0) {
1534 ret = shift;
1535 mlog_errno(ret);
1536 goto out;
1537 }
1538
1539 /* We traveled all the way to the bottom of the allocation tree
1540 * and didn't find room for any more extents - we need to add
1541 * another tree level */
1542 if (shift) {
1543 BUG_ON(bh);
1544 mlog(0, "need to shift tree depth (current = %d)\n", depth);
1545
1546 /* ocfs2_shift_tree_depth will return us a buffer with
1547 * the new extent block (so we can pass that to
1548 * ocfs2_add_branch). */
Joel Beckerd401dc12009-02-13 02:24:10 -08001549 ret = ocfs2_shift_tree_depth(handle, et, meta_ac, &bh);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001550 if (ret < 0) {
1551 mlog_errno(ret);
1552 goto out;
1553 }
1554 depth++;
Mark Fasheh328d5752007-06-18 10:48:04 -07001555 if (depth == 1) {
1556 /*
1557 * Special case: we have room now if we shifted from
1558 * tree_depth 0, so no more work needs to be done.
1559 *
1560 * We won't be calling add_branch, so pass
1561 * back *last_eb_bh as the new leaf. At depth
1562 * zero, it should always be null so there's
1563 * no reason to brelse.
1564 */
1565 BUG_ON(*last_eb_bh);
1566 get_bh(bh);
1567 *last_eb_bh = bh;
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001568 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07001569 }
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001570 }
1571
1572 /* call ocfs2_add_branch to add the final part of the tree with
1573 * the new data. */
1574 mlog(0, "add branch. bh = %p\n", bh);
Joel Beckerd401dc12009-02-13 02:24:10 -08001575 ret = ocfs2_add_branch(handle, et, bh, last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001576 meta_ac);
1577 if (ret < 0) {
1578 mlog_errno(ret);
1579 goto out;
1580 }
1581
1582out:
1583 if (final_depth)
1584 *final_depth = depth;
1585 brelse(bh);
1586 return ret;
1587}
1588
1589/*
Mark Fashehdcd05382007-01-16 11:32:23 -08001590 * This function will discard the rightmost extent record.
1591 */
1592static void ocfs2_shift_records_right(struct ocfs2_extent_list *el)
1593{
1594 int next_free = le16_to_cpu(el->l_next_free_rec);
1595 int count = le16_to_cpu(el->l_count);
1596 unsigned int num_bytes;
1597
1598 BUG_ON(!next_free);
1599 /* This will cause us to go off the end of our extent list. */
1600 BUG_ON(next_free >= count);
1601
1602 num_bytes = sizeof(struct ocfs2_extent_rec) * next_free;
1603
1604 memmove(&el->l_recs[1], &el->l_recs[0], num_bytes);
1605}
1606
1607static void ocfs2_rotate_leaf(struct ocfs2_extent_list *el,
1608 struct ocfs2_extent_rec *insert_rec)
1609{
1610 int i, insert_index, next_free, has_empty, num_bytes;
1611 u32 insert_cpos = le32_to_cpu(insert_rec->e_cpos);
1612 struct ocfs2_extent_rec *rec;
1613
1614 next_free = le16_to_cpu(el->l_next_free_rec);
1615 has_empty = ocfs2_is_empty_extent(&el->l_recs[0]);
1616
1617 BUG_ON(!next_free);
1618
1619 /* The tree code before us didn't allow enough room in the leaf. */
Julia Lawallb1f35502008-03-04 15:21:05 -08001620 BUG_ON(el->l_next_free_rec == el->l_count && !has_empty);
Mark Fashehdcd05382007-01-16 11:32:23 -08001621
1622 /*
1623 * The easiest way to approach this is to just remove the
1624 * empty extent and temporarily decrement next_free.
1625 */
1626 if (has_empty) {
1627 /*
1628 * If next_free was 1 (only an empty extent), this
1629 * loop won't execute, which is fine. We still want
1630 * the decrement above to happen.
1631 */
1632 for(i = 0; i < (next_free - 1); i++)
1633 el->l_recs[i] = el->l_recs[i+1];
1634
1635 next_free--;
1636 }
1637
1638 /*
1639 * Figure out what the new record index should be.
1640 */
1641 for(i = 0; i < next_free; i++) {
1642 rec = &el->l_recs[i];
1643
1644 if (insert_cpos < le32_to_cpu(rec->e_cpos))
1645 break;
1646 }
1647 insert_index = i;
1648
1649 mlog(0, "ins %u: index %d, has_empty %d, next_free %d, count %d\n",
1650 insert_cpos, insert_index, has_empty, next_free, le16_to_cpu(el->l_count));
1651
1652 BUG_ON(insert_index < 0);
1653 BUG_ON(insert_index >= le16_to_cpu(el->l_count));
1654 BUG_ON(insert_index > next_free);
1655
1656 /*
1657 * No need to memmove if we're just adding to the tail.
1658 */
1659 if (insert_index != next_free) {
1660 BUG_ON(next_free >= le16_to_cpu(el->l_count));
1661
1662 num_bytes = next_free - insert_index;
1663 num_bytes *= sizeof(struct ocfs2_extent_rec);
1664 memmove(&el->l_recs[insert_index + 1],
1665 &el->l_recs[insert_index],
1666 num_bytes);
1667 }
1668
1669 /*
1670 * Either we had an empty extent, and need to re-increment or
1671 * there was no empty extent on a non full rightmost leaf node,
1672 * in which case we still need to increment.
1673 */
1674 next_free++;
1675 el->l_next_free_rec = cpu_to_le16(next_free);
1676 /*
1677 * Make sure none of the math above just messed up our tree.
1678 */
1679 BUG_ON(le16_to_cpu(el->l_next_free_rec) > le16_to_cpu(el->l_count));
1680
1681 el->l_recs[insert_index] = *insert_rec;
1682
1683}
1684
Mark Fasheh328d5752007-06-18 10:48:04 -07001685static void ocfs2_remove_empty_extent(struct ocfs2_extent_list *el)
1686{
1687 int size, num_recs = le16_to_cpu(el->l_next_free_rec);
1688
1689 BUG_ON(num_recs == 0);
1690
1691 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
1692 num_recs--;
1693 size = num_recs * sizeof(struct ocfs2_extent_rec);
1694 memmove(&el->l_recs[0], &el->l_recs[1], size);
1695 memset(&el->l_recs[num_recs], 0,
1696 sizeof(struct ocfs2_extent_rec));
1697 el->l_next_free_rec = cpu_to_le16(num_recs);
1698 }
1699}
1700
Mark Fashehdcd05382007-01-16 11:32:23 -08001701/*
1702 * Create an empty extent record .
1703 *
1704 * l_next_free_rec may be updated.
1705 *
1706 * If an empty extent already exists do nothing.
1707 */
1708static void ocfs2_create_empty_extent(struct ocfs2_extent_list *el)
1709{
1710 int next_free = le16_to_cpu(el->l_next_free_rec);
1711
Mark Fashehe48edee2007-03-07 16:46:57 -08001712 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
1713
Mark Fashehdcd05382007-01-16 11:32:23 -08001714 if (next_free == 0)
1715 goto set_and_inc;
1716
1717 if (ocfs2_is_empty_extent(&el->l_recs[0]))
1718 return;
1719
1720 mlog_bug_on_msg(el->l_count == el->l_next_free_rec,
1721 "Asked to create an empty extent in a full list:\n"
1722 "count = %u, tree depth = %u",
1723 le16_to_cpu(el->l_count),
1724 le16_to_cpu(el->l_tree_depth));
1725
1726 ocfs2_shift_records_right(el);
1727
1728set_and_inc:
1729 le16_add_cpu(&el->l_next_free_rec, 1);
1730 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
1731}
1732
1733/*
1734 * For a rotation which involves two leaf nodes, the "root node" is
1735 * the lowest level tree node which contains a path to both leafs. This
1736 * resulting set of information can be used to form a complete "subtree"
1737 *
1738 * This function is passed two full paths from the dinode down to a
1739 * pair of adjacent leaves. It's task is to figure out which path
1740 * index contains the subtree root - this can be the root index itself
1741 * in a worst-case rotation.
1742 *
1743 * The array index of the subtree root is passed back.
1744 */
Tao Ma38a04e42009-11-30 14:32:19 +08001745int ocfs2_find_subtree_root(struct ocfs2_extent_tree *et,
1746 struct ocfs2_path *left,
1747 struct ocfs2_path *right)
Mark Fashehdcd05382007-01-16 11:32:23 -08001748{
1749 int i = 0;
1750
1751 /*
1752 * Check that the caller passed in two paths from the same tree.
1753 */
1754 BUG_ON(path_root_bh(left) != path_root_bh(right));
1755
1756 do {
1757 i++;
1758
1759 /*
1760 * The caller didn't pass two adjacent paths.
1761 */
1762 mlog_bug_on_msg(i > left->p_tree_depth,
Joel Becker7dc02802009-02-12 19:20:13 -08001763 "Owner %llu, left depth %u, right depth %u\n"
Mark Fashehdcd05382007-01-16 11:32:23 -08001764 "left leaf blk %llu, right leaf blk %llu\n",
Joel Becker7dc02802009-02-12 19:20:13 -08001765 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
1766 left->p_tree_depth, right->p_tree_depth,
Mark Fashehdcd05382007-01-16 11:32:23 -08001767 (unsigned long long)path_leaf_bh(left)->b_blocknr,
1768 (unsigned long long)path_leaf_bh(right)->b_blocknr);
1769 } while (left->p_node[i].bh->b_blocknr ==
1770 right->p_node[i].bh->b_blocknr);
1771
1772 return i - 1;
1773}
1774
1775typedef void (path_insert_t)(void *, struct buffer_head *);
1776
1777/*
1778 * Traverse a btree path in search of cpos, starting at root_el.
1779 *
1780 * This code can be called with a cpos larger than the tree, in which
1781 * case it will return the rightmost path.
1782 */
Joel Beckerfacdb772009-02-12 18:08:48 -08001783static int __ocfs2_find_path(struct ocfs2_caching_info *ci,
Mark Fashehdcd05382007-01-16 11:32:23 -08001784 struct ocfs2_extent_list *root_el, u32 cpos,
1785 path_insert_t *func, void *data)
1786{
1787 int i, ret = 0;
1788 u32 range;
1789 u64 blkno;
1790 struct buffer_head *bh = NULL;
1791 struct ocfs2_extent_block *eb;
1792 struct ocfs2_extent_list *el;
1793 struct ocfs2_extent_rec *rec;
Mark Fashehdcd05382007-01-16 11:32:23 -08001794
1795 el = root_el;
1796 while (el->l_tree_depth) {
1797 if (le16_to_cpu(el->l_next_free_rec) == 0) {
Joel Beckerfacdb772009-02-12 18:08:48 -08001798 ocfs2_error(ocfs2_metadata_cache_get_super(ci),
1799 "Owner %llu has empty extent list at "
Mark Fashehdcd05382007-01-16 11:32:23 -08001800 "depth %u\n",
Joel Beckerfacdb772009-02-12 18:08:48 -08001801 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08001802 le16_to_cpu(el->l_tree_depth));
1803 ret = -EROFS;
1804 goto out;
1805
1806 }
1807
1808 for(i = 0; i < le16_to_cpu(el->l_next_free_rec) - 1; i++) {
1809 rec = &el->l_recs[i];
1810
1811 /*
1812 * In the case that cpos is off the allocation
1813 * tree, this should just wind up returning the
1814 * rightmost record.
1815 */
1816 range = le32_to_cpu(rec->e_cpos) +
Mark Fashehe48edee2007-03-07 16:46:57 -08001817 ocfs2_rec_clusters(el, rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08001818 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
1819 break;
1820 }
1821
1822 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
1823 if (blkno == 0) {
Joel Beckerfacdb772009-02-12 18:08:48 -08001824 ocfs2_error(ocfs2_metadata_cache_get_super(ci),
1825 "Owner %llu has bad blkno in extent list "
Mark Fashehdcd05382007-01-16 11:32:23 -08001826 "at depth %u (index %d)\n",
Joel Beckerfacdb772009-02-12 18:08:48 -08001827 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08001828 le16_to_cpu(el->l_tree_depth), i);
1829 ret = -EROFS;
1830 goto out;
1831 }
1832
1833 brelse(bh);
1834 bh = NULL;
Joel Beckerfacdb772009-02-12 18:08:48 -08001835 ret = ocfs2_read_extent_block(ci, blkno, &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08001836 if (ret) {
1837 mlog_errno(ret);
1838 goto out;
1839 }
1840
1841 eb = (struct ocfs2_extent_block *) bh->b_data;
1842 el = &eb->h_list;
Mark Fashehdcd05382007-01-16 11:32:23 -08001843
1844 if (le16_to_cpu(el->l_next_free_rec) >
1845 le16_to_cpu(el->l_count)) {
Joel Beckerfacdb772009-02-12 18:08:48 -08001846 ocfs2_error(ocfs2_metadata_cache_get_super(ci),
1847 "Owner %llu has bad count in extent list "
Mark Fashehdcd05382007-01-16 11:32:23 -08001848 "at block %llu (next free=%u, count=%u)\n",
Joel Beckerfacdb772009-02-12 18:08:48 -08001849 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08001850 (unsigned long long)bh->b_blocknr,
1851 le16_to_cpu(el->l_next_free_rec),
1852 le16_to_cpu(el->l_count));
1853 ret = -EROFS;
1854 goto out;
1855 }
1856
1857 if (func)
1858 func(data, bh);
1859 }
1860
1861out:
1862 /*
1863 * Catch any trailing bh that the loop didn't handle.
1864 */
1865 brelse(bh);
1866
1867 return ret;
1868}
1869
1870/*
1871 * Given an initialized path (that is, it has a valid root extent
1872 * list), this function will traverse the btree in search of the path
1873 * which would contain cpos.
1874 *
1875 * The path traveled is recorded in the path structure.
1876 *
1877 * Note that this will not do any comparisons on leaf node extent
1878 * records, so it will work fine in the case that we just added a tree
1879 * branch.
1880 */
1881struct find_path_data {
1882 int index;
1883 struct ocfs2_path *path;
1884};
1885static void find_path_ins(void *data, struct buffer_head *bh)
1886{
1887 struct find_path_data *fp = data;
1888
1889 get_bh(bh);
1890 ocfs2_path_insert_eb(fp->path, fp->index, bh);
1891 fp->index++;
1892}
Tao Mae2e9f602009-08-18 11:22:34 +08001893int ocfs2_find_path(struct ocfs2_caching_info *ci,
1894 struct ocfs2_path *path, u32 cpos)
Mark Fashehdcd05382007-01-16 11:32:23 -08001895{
1896 struct find_path_data data;
1897
1898 data.index = 1;
1899 data.path = path;
Joel Beckerfacdb772009-02-12 18:08:48 -08001900 return __ocfs2_find_path(ci, path_root_el(path), cpos,
Mark Fashehdcd05382007-01-16 11:32:23 -08001901 find_path_ins, &data);
1902}
1903
1904static void find_leaf_ins(void *data, struct buffer_head *bh)
1905{
1906 struct ocfs2_extent_block *eb =(struct ocfs2_extent_block *)bh->b_data;
1907 struct ocfs2_extent_list *el = &eb->h_list;
1908 struct buffer_head **ret = data;
1909
1910 /* We want to retain only the leaf block. */
1911 if (le16_to_cpu(el->l_tree_depth) == 0) {
1912 get_bh(bh);
1913 *ret = bh;
1914 }
1915}
1916/*
1917 * Find the leaf block in the tree which would contain cpos. No
1918 * checking of the actual leaf is done.
1919 *
1920 * Some paths want to call this instead of allocating a path structure
1921 * and calling ocfs2_find_path().
1922 *
1923 * This function doesn't handle non btree extent lists.
1924 */
Joel Beckerfacdb772009-02-12 18:08:48 -08001925int ocfs2_find_leaf(struct ocfs2_caching_info *ci,
1926 struct ocfs2_extent_list *root_el, u32 cpos,
1927 struct buffer_head **leaf_bh)
Mark Fashehdcd05382007-01-16 11:32:23 -08001928{
1929 int ret;
1930 struct buffer_head *bh = NULL;
1931
Joel Beckerfacdb772009-02-12 18:08:48 -08001932 ret = __ocfs2_find_path(ci, root_el, cpos, find_leaf_ins, &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08001933 if (ret) {
1934 mlog_errno(ret);
1935 goto out;
1936 }
1937
1938 *leaf_bh = bh;
1939out:
1940 return ret;
1941}
1942
1943/*
1944 * Adjust the adjacent records (left_rec, right_rec) involved in a rotation.
1945 *
1946 * Basically, we've moved stuff around at the bottom of the tree and
1947 * we need to fix up the extent records above the changes to reflect
1948 * the new changes.
1949 *
1950 * left_rec: the record on the left.
1951 * left_child_el: is the child list pointed to by left_rec
1952 * right_rec: the record to the right of left_rec
1953 * right_child_el: is the child list pointed to by right_rec
1954 *
1955 * By definition, this only works on interior nodes.
1956 */
1957static void ocfs2_adjust_adjacent_records(struct ocfs2_extent_rec *left_rec,
1958 struct ocfs2_extent_list *left_child_el,
1959 struct ocfs2_extent_rec *right_rec,
1960 struct ocfs2_extent_list *right_child_el)
1961{
1962 u32 left_clusters, right_end;
1963
1964 /*
1965 * Interior nodes never have holes. Their cpos is the cpos of
1966 * the leftmost record in their child list. Their cluster
1967 * count covers the full theoretical range of their child list
1968 * - the range between their cpos and the cpos of the record
1969 * immediately to their right.
1970 */
1971 left_clusters = le32_to_cpu(right_child_el->l_recs[0].e_cpos);
Tao Ma82e12642009-07-23 08:12:58 +08001972 if (!ocfs2_rec_clusters(right_child_el, &right_child_el->l_recs[0])) {
1973 BUG_ON(right_child_el->l_tree_depth);
Mark Fasheh328d5752007-06-18 10:48:04 -07001974 BUG_ON(le16_to_cpu(right_child_el->l_next_free_rec) <= 1);
1975 left_clusters = le32_to_cpu(right_child_el->l_recs[1].e_cpos);
1976 }
Mark Fashehdcd05382007-01-16 11:32:23 -08001977 left_clusters -= le32_to_cpu(left_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001978 left_rec->e_int_clusters = cpu_to_le32(left_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08001979
1980 /*
1981 * Calculate the rightmost cluster count boundary before
Mark Fashehe48edee2007-03-07 16:46:57 -08001982 * moving cpos - we will need to adjust clusters after
Mark Fashehdcd05382007-01-16 11:32:23 -08001983 * updating e_cpos to keep the same highest cluster count.
1984 */
1985 right_end = le32_to_cpu(right_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001986 right_end += le32_to_cpu(right_rec->e_int_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08001987
1988 right_rec->e_cpos = left_rec->e_cpos;
1989 le32_add_cpu(&right_rec->e_cpos, left_clusters);
1990
1991 right_end -= le32_to_cpu(right_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001992 right_rec->e_int_clusters = cpu_to_le32(right_end);
Mark Fashehdcd05382007-01-16 11:32:23 -08001993}
1994
1995/*
1996 * Adjust the adjacent root node records involved in a
1997 * rotation. left_el_blkno is passed in as a key so that we can easily
1998 * find it's index in the root list.
1999 */
2000static void ocfs2_adjust_root_records(struct ocfs2_extent_list *root_el,
2001 struct ocfs2_extent_list *left_el,
2002 struct ocfs2_extent_list *right_el,
2003 u64 left_el_blkno)
2004{
2005 int i;
2006
2007 BUG_ON(le16_to_cpu(root_el->l_tree_depth) <=
2008 le16_to_cpu(left_el->l_tree_depth));
2009
2010 for(i = 0; i < le16_to_cpu(root_el->l_next_free_rec) - 1; i++) {
2011 if (le64_to_cpu(root_el->l_recs[i].e_blkno) == left_el_blkno)
2012 break;
2013 }
2014
2015 /*
2016 * The path walking code should have never returned a root and
2017 * two paths which are not adjacent.
2018 */
2019 BUG_ON(i >= (le16_to_cpu(root_el->l_next_free_rec) - 1));
2020
2021 ocfs2_adjust_adjacent_records(&root_el->l_recs[i], left_el,
2022 &root_el->l_recs[i + 1], right_el);
2023}
2024
2025/*
2026 * We've changed a leaf block (in right_path) and need to reflect that
2027 * change back up the subtree.
2028 *
2029 * This happens in multiple places:
2030 * - When we've moved an extent record from the left path leaf to the right
2031 * path leaf to make room for an empty extent in the left path leaf.
2032 * - When our insert into the right path leaf is at the leftmost edge
2033 * and requires an update of the path immediately to it's left. This
2034 * can occur at the end of some types of rotation and appending inserts.
Tao Ma677b9752008-01-30 14:21:05 +08002035 * - When we've adjusted the last extent record in the left path leaf and the
2036 * 1st extent record in the right path leaf during cross extent block merge.
Mark Fashehdcd05382007-01-16 11:32:23 -08002037 */
Joel Becker4619c732009-02-12 19:02:36 -08002038static void ocfs2_complete_edge_insert(handle_t *handle,
Mark Fashehdcd05382007-01-16 11:32:23 -08002039 struct ocfs2_path *left_path,
2040 struct ocfs2_path *right_path,
2041 int subtree_index)
2042{
Joel Beckerec20cec2010-03-19 14:13:52 -07002043 int i, idx;
Mark Fashehdcd05382007-01-16 11:32:23 -08002044 struct ocfs2_extent_list *el, *left_el, *right_el;
2045 struct ocfs2_extent_rec *left_rec, *right_rec;
2046 struct buffer_head *root_bh = left_path->p_node[subtree_index].bh;
2047
2048 /*
2049 * Update the counts and position values within all the
2050 * interior nodes to reflect the leaf rotation we just did.
2051 *
2052 * The root node is handled below the loop.
2053 *
2054 * We begin the loop with right_el and left_el pointing to the
2055 * leaf lists and work our way up.
2056 *
2057 * NOTE: within this loop, left_el and right_el always refer
2058 * to the *child* lists.
2059 */
2060 left_el = path_leaf_el(left_path);
2061 right_el = path_leaf_el(right_path);
2062 for(i = left_path->p_tree_depth - 1; i > subtree_index; i--) {
2063 mlog(0, "Adjust records at index %u\n", i);
2064
2065 /*
2066 * One nice property of knowing that all of these
2067 * nodes are below the root is that we only deal with
2068 * the leftmost right node record and the rightmost
2069 * left node record.
2070 */
2071 el = left_path->p_node[i].el;
2072 idx = le16_to_cpu(left_el->l_next_free_rec) - 1;
2073 left_rec = &el->l_recs[idx];
2074
2075 el = right_path->p_node[i].el;
2076 right_rec = &el->l_recs[0];
2077
2078 ocfs2_adjust_adjacent_records(left_rec, left_el, right_rec,
2079 right_el);
2080
Joel Beckerec20cec2010-03-19 14:13:52 -07002081 ocfs2_journal_dirty(handle, left_path->p_node[i].bh);
2082 ocfs2_journal_dirty(handle, right_path->p_node[i].bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002083
2084 /*
2085 * Setup our list pointers now so that the current
2086 * parents become children in the next iteration.
2087 */
2088 left_el = left_path->p_node[i].el;
2089 right_el = right_path->p_node[i].el;
2090 }
2091
2092 /*
2093 * At the root node, adjust the two adjacent records which
2094 * begin our path to the leaves.
2095 */
2096
2097 el = left_path->p_node[subtree_index].el;
2098 left_el = left_path->p_node[subtree_index + 1].el;
2099 right_el = right_path->p_node[subtree_index + 1].el;
2100
2101 ocfs2_adjust_root_records(el, left_el, right_el,
2102 left_path->p_node[subtree_index + 1].bh->b_blocknr);
2103
2104 root_bh = left_path->p_node[subtree_index].bh;
2105
Joel Beckerec20cec2010-03-19 14:13:52 -07002106 ocfs2_journal_dirty(handle, root_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002107}
2108
Joel Becker5c601ab2009-02-12 19:10:13 -08002109static int ocfs2_rotate_subtree_right(handle_t *handle,
2110 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08002111 struct ocfs2_path *left_path,
2112 struct ocfs2_path *right_path,
2113 int subtree_index)
2114{
2115 int ret, i;
2116 struct buffer_head *right_leaf_bh;
2117 struct buffer_head *left_leaf_bh = NULL;
2118 struct buffer_head *root_bh;
2119 struct ocfs2_extent_list *right_el, *left_el;
2120 struct ocfs2_extent_rec move_rec;
2121
2122 left_leaf_bh = path_leaf_bh(left_path);
2123 left_el = path_leaf_el(left_path);
2124
2125 if (left_el->l_next_free_rec != left_el->l_count) {
Joel Becker5c601ab2009-02-12 19:10:13 -08002126 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08002127 "Inode %llu has non-full interior leaf node %llu"
2128 "(next free = %u)",
Joel Becker5c601ab2009-02-12 19:10:13 -08002129 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08002130 (unsigned long long)left_leaf_bh->b_blocknr,
2131 le16_to_cpu(left_el->l_next_free_rec));
2132 return -EROFS;
2133 }
2134
2135 /*
2136 * This extent block may already have an empty record, so we
2137 * return early if so.
2138 */
2139 if (ocfs2_is_empty_extent(&left_el->l_recs[0]))
2140 return 0;
2141
2142 root_bh = left_path->p_node[subtree_index].bh;
2143 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
2144
Joel Becker5c601ab2009-02-12 19:10:13 -08002145 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07002146 subtree_index);
Mark Fashehdcd05382007-01-16 11:32:23 -08002147 if (ret) {
2148 mlog_errno(ret);
2149 goto out;
2150 }
2151
2152 for(i = subtree_index + 1; i < path_num_items(right_path); i++) {
Joel Becker5c601ab2009-02-12 19:10:13 -08002153 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002154 right_path, i);
Mark Fashehdcd05382007-01-16 11:32:23 -08002155 if (ret) {
2156 mlog_errno(ret);
2157 goto out;
2158 }
2159
Joel Becker5c601ab2009-02-12 19:10:13 -08002160 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002161 left_path, i);
Mark Fashehdcd05382007-01-16 11:32:23 -08002162 if (ret) {
2163 mlog_errno(ret);
2164 goto out;
2165 }
2166 }
2167
2168 right_leaf_bh = path_leaf_bh(right_path);
2169 right_el = path_leaf_el(right_path);
2170
2171 /* This is a code error, not a disk corruption. */
2172 mlog_bug_on_msg(!right_el->l_next_free_rec, "Inode %llu: Rotate fails "
2173 "because rightmost leaf block %llu is empty\n",
Joel Becker5c601ab2009-02-12 19:10:13 -08002174 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08002175 (unsigned long long)right_leaf_bh->b_blocknr);
2176
2177 ocfs2_create_empty_extent(right_el);
2178
Joel Beckerec20cec2010-03-19 14:13:52 -07002179 ocfs2_journal_dirty(handle, right_leaf_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002180
2181 /* Do the copy now. */
2182 i = le16_to_cpu(left_el->l_next_free_rec) - 1;
2183 move_rec = left_el->l_recs[i];
2184 right_el->l_recs[0] = move_rec;
2185
2186 /*
2187 * Clear out the record we just copied and shift everything
2188 * over, leaving an empty extent in the left leaf.
2189 *
2190 * We temporarily subtract from next_free_rec so that the
2191 * shift will lose the tail record (which is now defunct).
2192 */
2193 le16_add_cpu(&left_el->l_next_free_rec, -1);
2194 ocfs2_shift_records_right(left_el);
2195 memset(&left_el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2196 le16_add_cpu(&left_el->l_next_free_rec, 1);
2197
Joel Beckerec20cec2010-03-19 14:13:52 -07002198 ocfs2_journal_dirty(handle, left_leaf_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002199
Joel Becker4619c732009-02-12 19:02:36 -08002200 ocfs2_complete_edge_insert(handle, left_path, right_path,
2201 subtree_index);
Mark Fashehdcd05382007-01-16 11:32:23 -08002202
2203out:
2204 return ret;
2205}
2206
2207/*
2208 * Given a full path, determine what cpos value would return us a path
2209 * containing the leaf immediately to the left of the current one.
2210 *
2211 * Will return zero if the path passed in is already the leftmost path.
2212 */
2213static int ocfs2_find_cpos_for_left_leaf(struct super_block *sb,
2214 struct ocfs2_path *path, u32 *cpos)
2215{
2216 int i, j, ret = 0;
2217 u64 blkno;
2218 struct ocfs2_extent_list *el;
2219
Mark Fashehe48edee2007-03-07 16:46:57 -08002220 BUG_ON(path->p_tree_depth == 0);
2221
Mark Fashehdcd05382007-01-16 11:32:23 -08002222 *cpos = 0;
2223
2224 blkno = path_leaf_bh(path)->b_blocknr;
2225
2226 /* Start at the tree node just above the leaf and work our way up. */
2227 i = path->p_tree_depth - 1;
2228 while (i >= 0) {
2229 el = path->p_node[i].el;
2230
2231 /*
2232 * Find the extent record just before the one in our
2233 * path.
2234 */
2235 for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) {
2236 if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) {
2237 if (j == 0) {
2238 if (i == 0) {
2239 /*
2240 * We've determined that the
2241 * path specified is already
2242 * the leftmost one - return a
2243 * cpos of zero.
2244 */
2245 goto out;
2246 }
2247 /*
2248 * The leftmost record points to our
2249 * leaf - we need to travel up the
2250 * tree one level.
2251 */
2252 goto next_node;
2253 }
2254
2255 *cpos = le32_to_cpu(el->l_recs[j - 1].e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08002256 *cpos = *cpos + ocfs2_rec_clusters(el,
2257 &el->l_recs[j - 1]);
2258 *cpos = *cpos - 1;
Mark Fashehdcd05382007-01-16 11:32:23 -08002259 goto out;
2260 }
2261 }
2262
2263 /*
2264 * If we got here, we never found a valid node where
2265 * the tree indicated one should be.
2266 */
2267 ocfs2_error(sb,
2268 "Invalid extent tree at extent block %llu\n",
2269 (unsigned long long)blkno);
2270 ret = -EROFS;
2271 goto out;
2272
2273next_node:
2274 blkno = path->p_node[i].bh->b_blocknr;
2275 i--;
2276 }
2277
2278out:
2279 return ret;
2280}
2281
Mark Fasheh328d5752007-06-18 10:48:04 -07002282/*
2283 * Extend the transaction by enough credits to complete the rotation,
2284 * and still leave at least the original number of credits allocated
2285 * to this transaction.
2286 */
Mark Fashehdcd05382007-01-16 11:32:23 -08002287static int ocfs2_extend_rotate_transaction(handle_t *handle, int subtree_depth,
Mark Fasheh328d5752007-06-18 10:48:04 -07002288 int op_credits,
Mark Fashehdcd05382007-01-16 11:32:23 -08002289 struct ocfs2_path *path)
2290{
Tao Mac18b8122009-08-18 11:44:07 +08002291 int ret;
Mark Fasheh328d5752007-06-18 10:48:04 -07002292 int credits = (path->p_tree_depth - subtree_depth) * 2 + 1 + op_credits;
Mark Fashehdcd05382007-01-16 11:32:23 -08002293
Tao Mac18b8122009-08-18 11:44:07 +08002294 if (handle->h_buffer_credits < credits) {
2295 ret = ocfs2_extend_trans(handle,
2296 credits - handle->h_buffer_credits);
2297 if (ret)
2298 return ret;
2299
2300 if (unlikely(handle->h_buffer_credits < credits))
2301 return ocfs2_extend_trans(handle, credits);
2302 }
Mark Fashehdcd05382007-01-16 11:32:23 -08002303
2304 return 0;
2305}
2306
2307/*
2308 * Trap the case where we're inserting into the theoretical range past
2309 * the _actual_ left leaf range. Otherwise, we'll rotate a record
2310 * whose cpos is less than ours into the right leaf.
2311 *
2312 * It's only necessary to look at the rightmost record of the left
2313 * leaf because the logic that calls us should ensure that the
2314 * theoretical ranges in the path components above the leaves are
2315 * correct.
2316 */
2317static int ocfs2_rotate_requires_path_adjustment(struct ocfs2_path *left_path,
2318 u32 insert_cpos)
2319{
2320 struct ocfs2_extent_list *left_el;
2321 struct ocfs2_extent_rec *rec;
2322 int next_free;
2323
2324 left_el = path_leaf_el(left_path);
2325 next_free = le16_to_cpu(left_el->l_next_free_rec);
2326 rec = &left_el->l_recs[next_free - 1];
2327
2328 if (insert_cpos > le32_to_cpu(rec->e_cpos))
2329 return 1;
2330 return 0;
2331}
2332
Mark Fasheh328d5752007-06-18 10:48:04 -07002333static int ocfs2_leftmost_rec_contains(struct ocfs2_extent_list *el, u32 cpos)
2334{
2335 int next_free = le16_to_cpu(el->l_next_free_rec);
2336 unsigned int range;
2337 struct ocfs2_extent_rec *rec;
2338
2339 if (next_free == 0)
2340 return 0;
2341
2342 rec = &el->l_recs[0];
2343 if (ocfs2_is_empty_extent(rec)) {
2344 /* Empty list. */
2345 if (next_free == 1)
2346 return 0;
2347 rec = &el->l_recs[1];
2348 }
2349
2350 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
2351 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
2352 return 1;
2353 return 0;
2354}
2355
Mark Fashehdcd05382007-01-16 11:32:23 -08002356/*
2357 * Rotate all the records in a btree right one record, starting at insert_cpos.
2358 *
2359 * The path to the rightmost leaf should be passed in.
2360 *
2361 * The array is assumed to be large enough to hold an entire path (tree depth).
2362 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002363 * Upon successful return from this function:
Mark Fashehdcd05382007-01-16 11:32:23 -08002364 *
2365 * - The 'right_path' array will contain a path to the leaf block
2366 * whose range contains e_cpos.
2367 * - That leaf block will have a single empty extent in list index 0.
2368 * - In the case that the rotation requires a post-insert update,
2369 * *ret_left_path will contain a valid path which can be passed to
2370 * ocfs2_insert_path().
2371 */
Joel Becker1bbf0b82009-02-12 19:42:08 -08002372static int ocfs2_rotate_tree_right(handle_t *handle,
Joel Becker5c601ab2009-02-12 19:10:13 -08002373 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002374 enum ocfs2_split_type split,
Mark Fashehdcd05382007-01-16 11:32:23 -08002375 u32 insert_cpos,
2376 struct ocfs2_path *right_path,
2377 struct ocfs2_path **ret_left_path)
2378{
Mark Fasheh328d5752007-06-18 10:48:04 -07002379 int ret, start, orig_credits = handle->h_buffer_credits;
Mark Fashehdcd05382007-01-16 11:32:23 -08002380 u32 cpos;
2381 struct ocfs2_path *left_path = NULL;
Joel Becker5c601ab2009-02-12 19:10:13 -08002382 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Mark Fashehdcd05382007-01-16 11:32:23 -08002383
2384 *ret_left_path = NULL;
2385
Joel Beckerffdd7a52008-10-17 22:32:01 -07002386 left_path = ocfs2_new_path_from_path(right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08002387 if (!left_path) {
2388 ret = -ENOMEM;
2389 mlog_errno(ret);
2390 goto out;
2391 }
2392
Joel Becker5c601ab2009-02-12 19:10:13 -08002393 ret = ocfs2_find_cpos_for_left_leaf(sb, right_path, &cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002394 if (ret) {
2395 mlog_errno(ret);
2396 goto out;
2397 }
2398
2399 mlog(0, "Insert: %u, first left path cpos: %u\n", insert_cpos, cpos);
2400
2401 /*
2402 * What we want to do here is:
2403 *
2404 * 1) Start with the rightmost path.
2405 *
2406 * 2) Determine a path to the leaf block directly to the left
2407 * of that leaf.
2408 *
2409 * 3) Determine the 'subtree root' - the lowest level tree node
2410 * which contains a path to both leaves.
2411 *
2412 * 4) Rotate the subtree.
2413 *
2414 * 5) Find the next subtree by considering the left path to be
2415 * the new right path.
2416 *
2417 * The check at the top of this while loop also accepts
2418 * insert_cpos == cpos because cpos is only a _theoretical_
2419 * value to get us the left path - insert_cpos might very well
2420 * be filling that hole.
2421 *
2422 * Stop at a cpos of '0' because we either started at the
2423 * leftmost branch (i.e., a tree with one branch and a
2424 * rotation inside of it), or we've gone as far as we can in
2425 * rotating subtrees.
2426 */
2427 while (cpos && insert_cpos <= cpos) {
2428 mlog(0, "Rotating a tree: ins. cpos: %u, left path cpos: %u\n",
2429 insert_cpos, cpos);
2430
Joel Becker5c601ab2009-02-12 19:10:13 -08002431 ret = ocfs2_find_path(et->et_ci, left_path, cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002432 if (ret) {
2433 mlog_errno(ret);
2434 goto out;
2435 }
2436
2437 mlog_bug_on_msg(path_leaf_bh(left_path) ==
2438 path_leaf_bh(right_path),
Joel Becker5c601ab2009-02-12 19:10:13 -08002439 "Owner %llu: error during insert of %u "
Mark Fashehdcd05382007-01-16 11:32:23 -08002440 "(left path cpos %u) results in two identical "
2441 "paths ending at %llu\n",
Joel Becker5c601ab2009-02-12 19:10:13 -08002442 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
2443 insert_cpos, cpos,
Mark Fashehdcd05382007-01-16 11:32:23 -08002444 (unsigned long long)
2445 path_leaf_bh(left_path)->b_blocknr);
2446
Mark Fasheh328d5752007-06-18 10:48:04 -07002447 if (split == SPLIT_NONE &&
2448 ocfs2_rotate_requires_path_adjustment(left_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08002449 insert_cpos)) {
Mark Fashehdcd05382007-01-16 11:32:23 -08002450
2451 /*
2452 * We've rotated the tree as much as we
2453 * should. The rest is up to
2454 * ocfs2_insert_path() to complete, after the
2455 * record insertion. We indicate this
2456 * situation by returning the left path.
2457 *
2458 * The reason we don't adjust the records here
2459 * before the record insert is that an error
2460 * later might break the rule where a parent
2461 * record e_cpos will reflect the actual
2462 * e_cpos of the 1st nonempty record of the
2463 * child list.
2464 */
2465 *ret_left_path = left_path;
2466 goto out_ret_path;
2467 }
2468
Joel Becker7dc02802009-02-12 19:20:13 -08002469 start = ocfs2_find_subtree_root(et, left_path, right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08002470
2471 mlog(0, "Subtree root at index %d (blk %llu, depth %d)\n",
2472 start,
2473 (unsigned long long) right_path->p_node[start].bh->b_blocknr,
2474 right_path->p_tree_depth);
2475
2476 ret = ocfs2_extend_rotate_transaction(handle, start,
Mark Fasheh328d5752007-06-18 10:48:04 -07002477 orig_credits, right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08002478 if (ret) {
2479 mlog_errno(ret);
2480 goto out;
2481 }
2482
Joel Becker5c601ab2009-02-12 19:10:13 -08002483 ret = ocfs2_rotate_subtree_right(handle, et, left_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08002484 right_path, start);
2485 if (ret) {
2486 mlog_errno(ret);
2487 goto out;
2488 }
2489
Mark Fasheh328d5752007-06-18 10:48:04 -07002490 if (split != SPLIT_NONE &&
2491 ocfs2_leftmost_rec_contains(path_leaf_el(right_path),
2492 insert_cpos)) {
2493 /*
2494 * A rotate moves the rightmost left leaf
2495 * record over to the leftmost right leaf
2496 * slot. If we're doing an extent split
2497 * instead of a real insert, then we have to
2498 * check that the extent to be split wasn't
2499 * just moved over. If it was, then we can
2500 * exit here, passing left_path back -
2501 * ocfs2_split_extent() is smart enough to
2502 * search both leaves.
2503 */
2504 *ret_left_path = left_path;
2505 goto out_ret_path;
2506 }
2507
Mark Fashehdcd05382007-01-16 11:32:23 -08002508 /*
2509 * There is no need to re-read the next right path
2510 * as we know that it'll be our current left
2511 * path. Optimize by copying values instead.
2512 */
2513 ocfs2_mv_path(right_path, left_path);
2514
Joel Becker5c601ab2009-02-12 19:10:13 -08002515 ret = ocfs2_find_cpos_for_left_leaf(sb, right_path, &cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002516 if (ret) {
2517 mlog_errno(ret);
2518 goto out;
2519 }
2520 }
2521
2522out:
2523 ocfs2_free_path(left_path);
2524
2525out_ret_path:
2526 return ret;
2527}
2528
Joel Becker09106ba2009-02-12 19:43:57 -08002529static int ocfs2_update_edge_lengths(handle_t *handle,
2530 struct ocfs2_extent_tree *et,
Tao Ma3c5e1062009-07-21 15:42:05 +08002531 int subtree_index, struct ocfs2_path *path)
Mark Fasheh328d5752007-06-18 10:48:04 -07002532{
Tao Ma3c5e1062009-07-21 15:42:05 +08002533 int i, idx, ret;
Mark Fasheh328d5752007-06-18 10:48:04 -07002534 struct ocfs2_extent_rec *rec;
2535 struct ocfs2_extent_list *el;
2536 struct ocfs2_extent_block *eb;
2537 u32 range;
2538
Tao Ma3c5e1062009-07-21 15:42:05 +08002539 /*
2540 * In normal tree rotation process, we will never touch the
2541 * tree branch above subtree_index and ocfs2_extend_rotate_transaction
2542 * doesn't reserve the credits for them either.
2543 *
2544 * But we do have a special case here which will update the rightmost
2545 * records for all the bh in the path.
2546 * So we have to allocate extra credits and access them.
2547 */
2548 ret = ocfs2_extend_trans(handle,
2549 handle->h_buffer_credits + subtree_index);
2550 if (ret) {
2551 mlog_errno(ret);
2552 goto out;
2553 }
2554
Joel Becker09106ba2009-02-12 19:43:57 -08002555 ret = ocfs2_journal_access_path(et->et_ci, handle, path);
Tao Ma3c5e1062009-07-21 15:42:05 +08002556 if (ret) {
2557 mlog_errno(ret);
2558 goto out;
2559 }
2560
Mark Fasheh328d5752007-06-18 10:48:04 -07002561 /* Path should always be rightmost. */
2562 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
2563 BUG_ON(eb->h_next_leaf_blk != 0ULL);
2564
2565 el = &eb->h_list;
2566 BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0);
2567 idx = le16_to_cpu(el->l_next_free_rec) - 1;
2568 rec = &el->l_recs[idx];
2569 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
2570
2571 for (i = 0; i < path->p_tree_depth; i++) {
2572 el = path->p_node[i].el;
2573 idx = le16_to_cpu(el->l_next_free_rec) - 1;
2574 rec = &el->l_recs[idx];
2575
2576 rec->e_int_clusters = cpu_to_le32(range);
2577 le32_add_cpu(&rec->e_int_clusters, -le32_to_cpu(rec->e_cpos));
2578
2579 ocfs2_journal_dirty(handle, path->p_node[i].bh);
2580 }
Tao Ma3c5e1062009-07-21 15:42:05 +08002581out:
2582 return ret;
Mark Fasheh328d5752007-06-18 10:48:04 -07002583}
2584
Joel Becker6641b0c2009-02-12 18:57:52 -08002585static void ocfs2_unlink_path(handle_t *handle,
2586 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002587 struct ocfs2_cached_dealloc_ctxt *dealloc,
2588 struct ocfs2_path *path, int unlink_start)
2589{
2590 int ret, i;
2591 struct ocfs2_extent_block *eb;
2592 struct ocfs2_extent_list *el;
2593 struct buffer_head *bh;
2594
2595 for(i = unlink_start; i < path_num_items(path); i++) {
2596 bh = path->p_node[i].bh;
2597
2598 eb = (struct ocfs2_extent_block *)bh->b_data;
2599 /*
2600 * Not all nodes might have had their final count
2601 * decremented by the caller - handle this here.
2602 */
2603 el = &eb->h_list;
2604 if (le16_to_cpu(el->l_next_free_rec) > 1) {
2605 mlog(ML_ERROR,
2606 "Inode %llu, attempted to remove extent block "
2607 "%llu with %u records\n",
Joel Becker6641b0c2009-02-12 18:57:52 -08002608 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fasheh328d5752007-06-18 10:48:04 -07002609 (unsigned long long)le64_to_cpu(eb->h_blkno),
2610 le16_to_cpu(el->l_next_free_rec));
2611
2612 ocfs2_journal_dirty(handle, bh);
Joel Becker6641b0c2009-02-12 18:57:52 -08002613 ocfs2_remove_from_cache(et->et_ci, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002614 continue;
2615 }
2616
2617 el->l_next_free_rec = 0;
2618 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2619
2620 ocfs2_journal_dirty(handle, bh);
2621
2622 ret = ocfs2_cache_extent_block_free(dealloc, eb);
2623 if (ret)
2624 mlog_errno(ret);
2625
Joel Becker6641b0c2009-02-12 18:57:52 -08002626 ocfs2_remove_from_cache(et->et_ci, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002627 }
2628}
2629
Joel Becker6641b0c2009-02-12 18:57:52 -08002630static void ocfs2_unlink_subtree(handle_t *handle,
2631 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002632 struct ocfs2_path *left_path,
2633 struct ocfs2_path *right_path,
2634 int subtree_index,
2635 struct ocfs2_cached_dealloc_ctxt *dealloc)
2636{
2637 int i;
2638 struct buffer_head *root_bh = left_path->p_node[subtree_index].bh;
2639 struct ocfs2_extent_list *root_el = left_path->p_node[subtree_index].el;
2640 struct ocfs2_extent_list *el;
2641 struct ocfs2_extent_block *eb;
2642
2643 el = path_leaf_el(left_path);
2644
2645 eb = (struct ocfs2_extent_block *)right_path->p_node[subtree_index + 1].bh->b_data;
2646
2647 for(i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++)
2648 if (root_el->l_recs[i].e_blkno == eb->h_blkno)
2649 break;
2650
2651 BUG_ON(i >= le16_to_cpu(root_el->l_next_free_rec));
2652
2653 memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec));
2654 le16_add_cpu(&root_el->l_next_free_rec, -1);
2655
2656 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
2657 eb->h_next_leaf_blk = 0;
2658
2659 ocfs2_journal_dirty(handle, root_bh);
2660 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
2661
Joel Becker6641b0c2009-02-12 18:57:52 -08002662 ocfs2_unlink_path(handle, et, dealloc, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002663 subtree_index + 1);
2664}
2665
Joel Becker1e2dd632009-02-12 19:45:28 -08002666static int ocfs2_rotate_subtree_left(handle_t *handle,
2667 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002668 struct ocfs2_path *left_path,
2669 struct ocfs2_path *right_path,
2670 int subtree_index,
2671 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Becker1e2dd632009-02-12 19:45:28 -08002672 int *deleted)
Mark Fasheh328d5752007-06-18 10:48:04 -07002673{
2674 int ret, i, del_right_subtree = 0, right_has_empty = 0;
Tao Mae7d4cb62008-08-18 17:38:44 +08002675 struct buffer_head *root_bh, *et_root_bh = path_root_bh(right_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002676 struct ocfs2_extent_list *right_leaf_el, *left_leaf_el;
2677 struct ocfs2_extent_block *eb;
2678
2679 *deleted = 0;
2680
2681 right_leaf_el = path_leaf_el(right_path);
2682 left_leaf_el = path_leaf_el(left_path);
2683 root_bh = left_path->p_node[subtree_index].bh;
2684 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
2685
2686 if (!ocfs2_is_empty_extent(&left_leaf_el->l_recs[0]))
2687 return 0;
2688
2689 eb = (struct ocfs2_extent_block *)path_leaf_bh(right_path)->b_data;
2690 if (ocfs2_is_empty_extent(&right_leaf_el->l_recs[0])) {
2691 /*
2692 * It's legal for us to proceed if the right leaf is
2693 * the rightmost one and it has an empty extent. There
2694 * are two cases to handle - whether the leaf will be
2695 * empty after removal or not. If the leaf isn't empty
2696 * then just remove the empty extent up front. The
2697 * next block will handle empty leaves by flagging
2698 * them for unlink.
2699 *
2700 * Non rightmost leaves will throw -EAGAIN and the
2701 * caller can manually move the subtree and retry.
2702 */
2703
2704 if (eb->h_next_leaf_blk != 0ULL)
2705 return -EAGAIN;
2706
2707 if (le16_to_cpu(right_leaf_el->l_next_free_rec) > 1) {
Joel Becker1e2dd632009-02-12 19:45:28 -08002708 ret = ocfs2_journal_access_eb(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002709 path_leaf_bh(right_path),
2710 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh328d5752007-06-18 10:48:04 -07002711 if (ret) {
2712 mlog_errno(ret);
2713 goto out;
2714 }
2715
2716 ocfs2_remove_empty_extent(right_leaf_el);
2717 } else
2718 right_has_empty = 1;
2719 }
2720
2721 if (eb->h_next_leaf_blk == 0ULL &&
2722 le16_to_cpu(right_leaf_el->l_next_free_rec) == 1) {
2723 /*
2724 * We have to update i_last_eb_blk during the meta
2725 * data delete.
2726 */
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08002727 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07002728 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh328d5752007-06-18 10:48:04 -07002729 if (ret) {
2730 mlog_errno(ret);
2731 goto out;
2732 }
2733
2734 del_right_subtree = 1;
2735 }
2736
2737 /*
2738 * Getting here with an empty extent in the right path implies
2739 * that it's the rightmost path and will be deleted.
2740 */
2741 BUG_ON(right_has_empty && !del_right_subtree);
2742
Joel Becker1e2dd632009-02-12 19:45:28 -08002743 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07002744 subtree_index);
Mark Fasheh328d5752007-06-18 10:48:04 -07002745 if (ret) {
2746 mlog_errno(ret);
2747 goto out;
2748 }
2749
2750 for(i = subtree_index + 1; i < path_num_items(right_path); i++) {
Joel Becker1e2dd632009-02-12 19:45:28 -08002751 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002752 right_path, i);
Mark Fasheh328d5752007-06-18 10:48:04 -07002753 if (ret) {
2754 mlog_errno(ret);
2755 goto out;
2756 }
2757
Joel Becker1e2dd632009-02-12 19:45:28 -08002758 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002759 left_path, i);
Mark Fasheh328d5752007-06-18 10:48:04 -07002760 if (ret) {
2761 mlog_errno(ret);
2762 goto out;
2763 }
2764 }
2765
2766 if (!right_has_empty) {
2767 /*
2768 * Only do this if we're moving a real
2769 * record. Otherwise, the action is delayed until
2770 * after removal of the right path in which case we
2771 * can do a simple shift to remove the empty extent.
2772 */
2773 ocfs2_rotate_leaf(left_leaf_el, &right_leaf_el->l_recs[0]);
2774 memset(&right_leaf_el->l_recs[0], 0,
2775 sizeof(struct ocfs2_extent_rec));
2776 }
2777 if (eb->h_next_leaf_blk == 0ULL) {
2778 /*
2779 * Move recs over to get rid of empty extent, decrease
2780 * next_free. This is allowed to remove the last
2781 * extent in our leaf (setting l_next_free_rec to
2782 * zero) - the delete code below won't care.
2783 */
2784 ocfs2_remove_empty_extent(right_leaf_el);
2785 }
2786
Joel Beckerec20cec2010-03-19 14:13:52 -07002787 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
2788 ocfs2_journal_dirty(handle, path_leaf_bh(right_path));
Mark Fasheh328d5752007-06-18 10:48:04 -07002789
2790 if (del_right_subtree) {
Joel Becker6641b0c2009-02-12 18:57:52 -08002791 ocfs2_unlink_subtree(handle, et, left_path, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002792 subtree_index, dealloc);
Joel Becker09106ba2009-02-12 19:43:57 -08002793 ret = ocfs2_update_edge_lengths(handle, et, subtree_index,
Tao Ma3c5e1062009-07-21 15:42:05 +08002794 left_path);
2795 if (ret) {
2796 mlog_errno(ret);
2797 goto out;
2798 }
Mark Fasheh328d5752007-06-18 10:48:04 -07002799
2800 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
Joel Becker35dc0aa2008-08-20 16:25:06 -07002801 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fasheh328d5752007-06-18 10:48:04 -07002802
2803 /*
2804 * Removal of the extent in the left leaf was skipped
2805 * above so we could delete the right path
2806 * 1st.
2807 */
2808 if (right_has_empty)
2809 ocfs2_remove_empty_extent(left_leaf_el);
2810
Joel Beckerec20cec2010-03-19 14:13:52 -07002811 ocfs2_journal_dirty(handle, et_root_bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002812
2813 *deleted = 1;
2814 } else
Joel Becker4619c732009-02-12 19:02:36 -08002815 ocfs2_complete_edge_insert(handle, left_path, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002816 subtree_index);
2817
2818out:
2819 return ret;
2820}
2821
2822/*
2823 * Given a full path, determine what cpos value would return us a path
2824 * containing the leaf immediately to the right of the current one.
2825 *
2826 * Will return zero if the path passed in is already the rightmost path.
2827 *
2828 * This looks similar, but is subtly different to
2829 * ocfs2_find_cpos_for_left_leaf().
2830 */
Tao Ma38a04e42009-11-30 14:32:19 +08002831int ocfs2_find_cpos_for_right_leaf(struct super_block *sb,
2832 struct ocfs2_path *path, u32 *cpos)
Mark Fasheh328d5752007-06-18 10:48:04 -07002833{
2834 int i, j, ret = 0;
2835 u64 blkno;
2836 struct ocfs2_extent_list *el;
2837
2838 *cpos = 0;
2839
2840 if (path->p_tree_depth == 0)
2841 return 0;
2842
2843 blkno = path_leaf_bh(path)->b_blocknr;
2844
2845 /* Start at the tree node just above the leaf and work our way up. */
2846 i = path->p_tree_depth - 1;
2847 while (i >= 0) {
2848 int next_free;
2849
2850 el = path->p_node[i].el;
2851
2852 /*
2853 * Find the extent record just after the one in our
2854 * path.
2855 */
2856 next_free = le16_to_cpu(el->l_next_free_rec);
2857 for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) {
2858 if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) {
2859 if (j == (next_free - 1)) {
2860 if (i == 0) {
2861 /*
2862 * We've determined that the
2863 * path specified is already
2864 * the rightmost one - return a
2865 * cpos of zero.
2866 */
2867 goto out;
2868 }
2869 /*
2870 * The rightmost record points to our
2871 * leaf - we need to travel up the
2872 * tree one level.
2873 */
2874 goto next_node;
2875 }
2876
2877 *cpos = le32_to_cpu(el->l_recs[j + 1].e_cpos);
2878 goto out;
2879 }
2880 }
2881
2882 /*
2883 * If we got here, we never found a valid node where
2884 * the tree indicated one should be.
2885 */
2886 ocfs2_error(sb,
2887 "Invalid extent tree at extent block %llu\n",
2888 (unsigned long long)blkno);
2889 ret = -EROFS;
2890 goto out;
2891
2892next_node:
2893 blkno = path->p_node[i].bh->b_blocknr;
2894 i--;
2895 }
2896
2897out:
2898 return ret;
2899}
2900
Joel Becker70f18c02009-02-13 02:09:31 -08002901static int ocfs2_rotate_rightmost_leaf_left(handle_t *handle,
2902 struct ocfs2_extent_tree *et,
Joel Becker13723d02008-10-17 19:25:01 -07002903 struct ocfs2_path *path)
Mark Fasheh328d5752007-06-18 10:48:04 -07002904{
2905 int ret;
Joel Becker13723d02008-10-17 19:25:01 -07002906 struct buffer_head *bh = path_leaf_bh(path);
2907 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002908
2909 if (!ocfs2_is_empty_extent(&el->l_recs[0]))
2910 return 0;
2911
Joel Becker70f18c02009-02-13 02:09:31 -08002912 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, path,
Joel Becker13723d02008-10-17 19:25:01 -07002913 path_num_items(path) - 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07002914 if (ret) {
2915 mlog_errno(ret);
2916 goto out;
2917 }
2918
2919 ocfs2_remove_empty_extent(el);
Joel Beckerec20cec2010-03-19 14:13:52 -07002920 ocfs2_journal_dirty(handle, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002921
2922out:
2923 return ret;
2924}
2925
Joel Beckere46f74d2009-02-12 19:47:43 -08002926static int __ocfs2_rotate_tree_left(handle_t *handle,
2927 struct ocfs2_extent_tree *et,
2928 int orig_credits,
Mark Fasheh328d5752007-06-18 10:48:04 -07002929 struct ocfs2_path *path,
2930 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Beckere46f74d2009-02-12 19:47:43 -08002931 struct ocfs2_path **empty_extent_path)
Mark Fasheh328d5752007-06-18 10:48:04 -07002932{
2933 int ret, subtree_root, deleted;
2934 u32 right_cpos;
2935 struct ocfs2_path *left_path = NULL;
2936 struct ocfs2_path *right_path = NULL;
Joel Beckere46f74d2009-02-12 19:47:43 -08002937 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Mark Fasheh328d5752007-06-18 10:48:04 -07002938
2939 BUG_ON(!ocfs2_is_empty_extent(&(path_leaf_el(path)->l_recs[0])));
2940
2941 *empty_extent_path = NULL;
2942
Joel Beckere46f74d2009-02-12 19:47:43 -08002943 ret = ocfs2_find_cpos_for_right_leaf(sb, path, &right_cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07002944 if (ret) {
2945 mlog_errno(ret);
2946 goto out;
2947 }
2948
Joel Beckerffdd7a52008-10-17 22:32:01 -07002949 left_path = ocfs2_new_path_from_path(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002950 if (!left_path) {
2951 ret = -ENOMEM;
2952 mlog_errno(ret);
2953 goto out;
2954 }
2955
2956 ocfs2_cp_path(left_path, path);
2957
Joel Beckerffdd7a52008-10-17 22:32:01 -07002958 right_path = ocfs2_new_path_from_path(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002959 if (!right_path) {
2960 ret = -ENOMEM;
2961 mlog_errno(ret);
2962 goto out;
2963 }
2964
2965 while (right_cpos) {
Joel Beckerfacdb772009-02-12 18:08:48 -08002966 ret = ocfs2_find_path(et->et_ci, right_path, right_cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07002967 if (ret) {
2968 mlog_errno(ret);
2969 goto out;
2970 }
2971
Joel Becker7dc02802009-02-12 19:20:13 -08002972 subtree_root = ocfs2_find_subtree_root(et, left_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002973 right_path);
2974
2975 mlog(0, "Subtree root at index %d (blk %llu, depth %d)\n",
2976 subtree_root,
2977 (unsigned long long)
2978 right_path->p_node[subtree_root].bh->b_blocknr,
2979 right_path->p_tree_depth);
2980
2981 ret = ocfs2_extend_rotate_transaction(handle, subtree_root,
2982 orig_credits, left_path);
2983 if (ret) {
2984 mlog_errno(ret);
2985 goto out;
2986 }
2987
Mark Fashehe8aed342007-12-03 16:43:01 -08002988 /*
2989 * Caller might still want to make changes to the
2990 * tree root, so re-add it to the journal here.
2991 */
Joel Beckere46f74d2009-02-12 19:47:43 -08002992 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002993 left_path, 0);
Mark Fashehe8aed342007-12-03 16:43:01 -08002994 if (ret) {
2995 mlog_errno(ret);
2996 goto out;
2997 }
2998
Joel Becker1e2dd632009-02-12 19:45:28 -08002999 ret = ocfs2_rotate_subtree_left(handle, et, left_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003000 right_path, subtree_root,
Joel Becker1e2dd632009-02-12 19:45:28 -08003001 dealloc, &deleted);
Mark Fasheh328d5752007-06-18 10:48:04 -07003002 if (ret == -EAGAIN) {
3003 /*
3004 * The rotation has to temporarily stop due to
3005 * the right subtree having an empty
3006 * extent. Pass it back to the caller for a
3007 * fixup.
3008 */
3009 *empty_extent_path = right_path;
3010 right_path = NULL;
3011 goto out;
3012 }
3013 if (ret) {
3014 mlog_errno(ret);
3015 goto out;
3016 }
3017
3018 /*
3019 * The subtree rotate might have removed records on
3020 * the rightmost edge. If so, then rotation is
3021 * complete.
3022 */
3023 if (deleted)
3024 break;
3025
3026 ocfs2_mv_path(left_path, right_path);
3027
Joel Beckere46f74d2009-02-12 19:47:43 -08003028 ret = ocfs2_find_cpos_for_right_leaf(sb, left_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003029 &right_cpos);
3030 if (ret) {
3031 mlog_errno(ret);
3032 goto out;
3033 }
3034 }
3035
3036out:
3037 ocfs2_free_path(right_path);
3038 ocfs2_free_path(left_path);
3039
3040 return ret;
3041}
3042
Joel Becker70f18c02009-02-13 02:09:31 -08003043static int ocfs2_remove_rightmost_path(handle_t *handle,
3044 struct ocfs2_extent_tree *et,
Tao Mae7d4cb62008-08-18 17:38:44 +08003045 struct ocfs2_path *path,
Joel Becker70f18c02009-02-13 02:09:31 -08003046 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fasheh328d5752007-06-18 10:48:04 -07003047{
3048 int ret, subtree_index;
3049 u32 cpos;
3050 struct ocfs2_path *left_path = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07003051 struct ocfs2_extent_block *eb;
3052 struct ocfs2_extent_list *el;
3053
Mark Fasheh328d5752007-06-18 10:48:04 -07003054
Joel Becker6136ca52009-02-12 19:32:43 -08003055 ret = ocfs2_et_sanity_check(et);
Tao Mae7d4cb62008-08-18 17:38:44 +08003056 if (ret)
3057 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07003058 /*
3059 * There's two ways we handle this depending on
3060 * whether path is the only existing one.
3061 */
3062 ret = ocfs2_extend_rotate_transaction(handle, 0,
3063 handle->h_buffer_credits,
3064 path);
3065 if (ret) {
3066 mlog_errno(ret);
3067 goto out;
3068 }
3069
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08003070 ret = ocfs2_journal_access_path(et->et_ci, handle, path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003071 if (ret) {
3072 mlog_errno(ret);
3073 goto out;
3074 }
3075
Joel Becker3d03a302009-02-12 17:49:26 -08003076 ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
3077 path, &cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07003078 if (ret) {
3079 mlog_errno(ret);
3080 goto out;
3081 }
3082
3083 if (cpos) {
3084 /*
3085 * We have a path to the left of this one - it needs
3086 * an update too.
3087 */
Joel Beckerffdd7a52008-10-17 22:32:01 -07003088 left_path = ocfs2_new_path_from_path(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003089 if (!left_path) {
3090 ret = -ENOMEM;
3091 mlog_errno(ret);
3092 goto out;
3093 }
3094
Joel Beckerfacdb772009-02-12 18:08:48 -08003095 ret = ocfs2_find_path(et->et_ci, left_path, cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07003096 if (ret) {
3097 mlog_errno(ret);
3098 goto out;
3099 }
3100
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08003101 ret = ocfs2_journal_access_path(et->et_ci, handle, left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003102 if (ret) {
3103 mlog_errno(ret);
3104 goto out;
3105 }
3106
Joel Becker7dc02802009-02-12 19:20:13 -08003107 subtree_index = ocfs2_find_subtree_root(et, left_path, path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003108
Joel Becker6641b0c2009-02-12 18:57:52 -08003109 ocfs2_unlink_subtree(handle, et, left_path, path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003110 subtree_index, dealloc);
Joel Becker09106ba2009-02-12 19:43:57 -08003111 ret = ocfs2_update_edge_lengths(handle, et, subtree_index,
Tao Ma3c5e1062009-07-21 15:42:05 +08003112 left_path);
3113 if (ret) {
3114 mlog_errno(ret);
3115 goto out;
3116 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003117
3118 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
Joel Becker35dc0aa2008-08-20 16:25:06 -07003119 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fasheh328d5752007-06-18 10:48:04 -07003120 } else {
3121 /*
3122 * 'path' is also the leftmost path which
3123 * means it must be the only one. This gets
3124 * handled differently because we want to
Joel Becker70f18c02009-02-13 02:09:31 -08003125 * revert the root back to having extents
Mark Fasheh328d5752007-06-18 10:48:04 -07003126 * in-line.
3127 */
Joel Becker6641b0c2009-02-12 18:57:52 -08003128 ocfs2_unlink_path(handle, et, dealloc, path, 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07003129
Joel Beckerce1d9ea2008-08-20 16:30:07 -07003130 el = et->et_root_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07003131 el->l_tree_depth = 0;
3132 el->l_next_free_rec = 0;
3133 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
3134
Joel Becker35dc0aa2008-08-20 16:25:06 -07003135 ocfs2_et_set_last_eb_blk(et, 0);
Mark Fasheh328d5752007-06-18 10:48:04 -07003136 }
3137
3138 ocfs2_journal_dirty(handle, path_root_bh(path));
3139
3140out:
3141 ocfs2_free_path(left_path);
3142 return ret;
3143}
3144
3145/*
3146 * Left rotation of btree records.
3147 *
3148 * In many ways, this is (unsurprisingly) the opposite of right
3149 * rotation. We start at some non-rightmost path containing an empty
3150 * extent in the leaf block. The code works its way to the rightmost
3151 * path by rotating records to the left in every subtree.
3152 *
3153 * This is used by any code which reduces the number of extent records
3154 * in a leaf. After removal, an empty record should be placed in the
3155 * leftmost list position.
3156 *
3157 * This won't handle a length update of the rightmost path records if
3158 * the rightmost tree leaf record is removed so the caller is
3159 * responsible for detecting and correcting that.
3160 */
Joel Becker70f18c02009-02-13 02:09:31 -08003161static int ocfs2_rotate_tree_left(handle_t *handle,
3162 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07003163 struct ocfs2_path *path,
Joel Becker70f18c02009-02-13 02:09:31 -08003164 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fasheh328d5752007-06-18 10:48:04 -07003165{
3166 int ret, orig_credits = handle->h_buffer_credits;
3167 struct ocfs2_path *tmp_path = NULL, *restart_path = NULL;
3168 struct ocfs2_extent_block *eb;
3169 struct ocfs2_extent_list *el;
3170
3171 el = path_leaf_el(path);
3172 if (!ocfs2_is_empty_extent(&el->l_recs[0]))
3173 return 0;
3174
3175 if (path->p_tree_depth == 0) {
3176rightmost_no_delete:
3177 /*
Tao Mae7d4cb62008-08-18 17:38:44 +08003178 * Inline extents. This is trivially handled, so do
Mark Fasheh328d5752007-06-18 10:48:04 -07003179 * it up front.
3180 */
Joel Becker70f18c02009-02-13 02:09:31 -08003181 ret = ocfs2_rotate_rightmost_leaf_left(handle, et, path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003182 if (ret)
3183 mlog_errno(ret);
3184 goto out;
3185 }
3186
3187 /*
3188 * Handle rightmost branch now. There's several cases:
3189 * 1) simple rotation leaving records in there. That's trivial.
3190 * 2) rotation requiring a branch delete - there's no more
3191 * records left. Two cases of this:
3192 * a) There are branches to the left.
3193 * b) This is also the leftmost (the only) branch.
3194 *
3195 * 1) is handled via ocfs2_rotate_rightmost_leaf_left()
3196 * 2a) we need the left branch so that we can update it with the unlink
Joel Becker70f18c02009-02-13 02:09:31 -08003197 * 2b) we need to bring the root back to inline extents.
Mark Fasheh328d5752007-06-18 10:48:04 -07003198 */
3199
3200 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
3201 el = &eb->h_list;
3202 if (eb->h_next_leaf_blk == 0) {
3203 /*
3204 * This gets a bit tricky if we're going to delete the
3205 * rightmost path. Get the other cases out of the way
3206 * 1st.
3207 */
3208 if (le16_to_cpu(el->l_next_free_rec) > 1)
3209 goto rightmost_no_delete;
3210
3211 if (le16_to_cpu(el->l_next_free_rec) == 0) {
3212 ret = -EIO;
Joel Becker70f18c02009-02-13 02:09:31 -08003213 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
3214 "Owner %llu has empty extent block at %llu",
3215 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fasheh328d5752007-06-18 10:48:04 -07003216 (unsigned long long)le64_to_cpu(eb->h_blkno));
3217 goto out;
3218 }
3219
3220 /*
3221 * XXX: The caller can not trust "path" any more after
3222 * this as it will have been deleted. What do we do?
3223 *
3224 * In theory the rotate-for-merge code will never get
3225 * here because it'll always ask for a rotate in a
3226 * nonempty list.
3227 */
3228
Joel Becker70f18c02009-02-13 02:09:31 -08003229 ret = ocfs2_remove_rightmost_path(handle, et, path,
3230 dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003231 if (ret)
3232 mlog_errno(ret);
3233 goto out;
3234 }
3235
3236 /*
3237 * Now we can loop, remembering the path we get from -EAGAIN
3238 * and restarting from there.
3239 */
3240try_rotate:
Joel Beckere46f74d2009-02-12 19:47:43 -08003241 ret = __ocfs2_rotate_tree_left(handle, et, orig_credits, path,
3242 dealloc, &restart_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003243 if (ret && ret != -EAGAIN) {
3244 mlog_errno(ret);
3245 goto out;
3246 }
3247
3248 while (ret == -EAGAIN) {
3249 tmp_path = restart_path;
3250 restart_path = NULL;
3251
Joel Beckere46f74d2009-02-12 19:47:43 -08003252 ret = __ocfs2_rotate_tree_left(handle, et, orig_credits,
Mark Fasheh328d5752007-06-18 10:48:04 -07003253 tmp_path, dealloc,
Joel Beckere46f74d2009-02-12 19:47:43 -08003254 &restart_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003255 if (ret && ret != -EAGAIN) {
3256 mlog_errno(ret);
3257 goto out;
3258 }
3259
3260 ocfs2_free_path(tmp_path);
3261 tmp_path = NULL;
3262
3263 if (ret == 0)
3264 goto try_rotate;
3265 }
3266
3267out:
3268 ocfs2_free_path(tmp_path);
3269 ocfs2_free_path(restart_path);
3270 return ret;
3271}
3272
3273static void ocfs2_cleanup_merge(struct ocfs2_extent_list *el,
3274 int index)
3275{
3276 struct ocfs2_extent_rec *rec = &el->l_recs[index];
3277 unsigned int size;
3278
3279 if (rec->e_leaf_clusters == 0) {
3280 /*
3281 * We consumed all of the merged-from record. An empty
3282 * extent cannot exist anywhere but the 1st array
3283 * position, so move things over if the merged-from
3284 * record doesn't occupy that position.
3285 *
3286 * This creates a new empty extent so the caller
3287 * should be smart enough to have removed any existing
3288 * ones.
3289 */
3290 if (index > 0) {
3291 BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0]));
3292 size = index * sizeof(struct ocfs2_extent_rec);
3293 memmove(&el->l_recs[1], &el->l_recs[0], size);
3294 }
3295
3296 /*
3297 * Always memset - the caller doesn't check whether it
3298 * created an empty extent, so there could be junk in
3299 * the other fields.
3300 */
3301 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
3302 }
3303}
3304
Joel Becker4fe82c32009-02-13 02:16:08 -08003305static int ocfs2_get_right_path(struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003306 struct ocfs2_path *left_path,
3307 struct ocfs2_path **ret_right_path)
Mark Fasheh328d5752007-06-18 10:48:04 -07003308{
3309 int ret;
Tao Ma677b9752008-01-30 14:21:05 +08003310 u32 right_cpos;
3311 struct ocfs2_path *right_path = NULL;
3312 struct ocfs2_extent_list *left_el;
3313
3314 *ret_right_path = NULL;
3315
3316 /* This function shouldn't be called for non-trees. */
3317 BUG_ON(left_path->p_tree_depth == 0);
3318
3319 left_el = path_leaf_el(left_path);
3320 BUG_ON(left_el->l_next_free_rec != left_el->l_count);
3321
Joel Becker4fe82c32009-02-13 02:16:08 -08003322 ret = ocfs2_find_cpos_for_right_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
3323 left_path, &right_cpos);
Tao Ma677b9752008-01-30 14:21:05 +08003324 if (ret) {
3325 mlog_errno(ret);
3326 goto out;
3327 }
3328
3329 /* This function shouldn't be called for the rightmost leaf. */
3330 BUG_ON(right_cpos == 0);
3331
Joel Beckerffdd7a52008-10-17 22:32:01 -07003332 right_path = ocfs2_new_path_from_path(left_path);
Tao Ma677b9752008-01-30 14:21:05 +08003333 if (!right_path) {
3334 ret = -ENOMEM;
3335 mlog_errno(ret);
3336 goto out;
3337 }
3338
Joel Becker4fe82c32009-02-13 02:16:08 -08003339 ret = ocfs2_find_path(et->et_ci, right_path, right_cpos);
Tao Ma677b9752008-01-30 14:21:05 +08003340 if (ret) {
3341 mlog_errno(ret);
3342 goto out;
3343 }
3344
3345 *ret_right_path = right_path;
3346out:
3347 if (ret)
3348 ocfs2_free_path(right_path);
3349 return ret;
3350}
3351
3352/*
3353 * Remove split_rec clusters from the record at index and merge them
3354 * onto the beginning of the record "next" to it.
3355 * For index < l_count - 1, the next means the extent rec at index + 1.
3356 * For index == l_count - 1, the "next" means the 1st extent rec of the
3357 * next extent block.
3358 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003359static int ocfs2_merge_rec_right(struct ocfs2_path *left_path,
Tao Ma677b9752008-01-30 14:21:05 +08003360 handle_t *handle,
Joel Becker7dc02802009-02-12 19:20:13 -08003361 struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003362 struct ocfs2_extent_rec *split_rec,
3363 int index)
3364{
3365 int ret, next_free, i;
Mark Fasheh328d5752007-06-18 10:48:04 -07003366 unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters);
3367 struct ocfs2_extent_rec *left_rec;
3368 struct ocfs2_extent_rec *right_rec;
Tao Ma677b9752008-01-30 14:21:05 +08003369 struct ocfs2_extent_list *right_el;
3370 struct ocfs2_path *right_path = NULL;
3371 int subtree_index = 0;
3372 struct ocfs2_extent_list *el = path_leaf_el(left_path);
3373 struct buffer_head *bh = path_leaf_bh(left_path);
3374 struct buffer_head *root_bh = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07003375
3376 BUG_ON(index >= le16_to_cpu(el->l_next_free_rec));
Mark Fasheh328d5752007-06-18 10:48:04 -07003377 left_rec = &el->l_recs[index];
Tao Ma677b9752008-01-30 14:21:05 +08003378
Al Viro9d8df6a2008-05-21 06:32:11 +01003379 if (index == le16_to_cpu(el->l_next_free_rec) - 1 &&
Tao Ma677b9752008-01-30 14:21:05 +08003380 le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count)) {
3381 /* we meet with a cross extent block merge. */
Joel Becker4fe82c32009-02-13 02:16:08 -08003382 ret = ocfs2_get_right_path(et, left_path, &right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003383 if (ret) {
3384 mlog_errno(ret);
3385 goto out;
3386 }
3387
3388 right_el = path_leaf_el(right_path);
3389 next_free = le16_to_cpu(right_el->l_next_free_rec);
3390 BUG_ON(next_free <= 0);
3391 right_rec = &right_el->l_recs[0];
3392 if (ocfs2_is_empty_extent(right_rec)) {
Al Viro9d8df6a2008-05-21 06:32:11 +01003393 BUG_ON(next_free <= 1);
Tao Ma677b9752008-01-30 14:21:05 +08003394 right_rec = &right_el->l_recs[1];
3395 }
3396
3397 BUG_ON(le32_to_cpu(left_rec->e_cpos) +
3398 le16_to_cpu(left_rec->e_leaf_clusters) !=
3399 le32_to_cpu(right_rec->e_cpos));
3400
Joel Becker7dc02802009-02-12 19:20:13 -08003401 subtree_index = ocfs2_find_subtree_root(et, left_path,
3402 right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003403
3404 ret = ocfs2_extend_rotate_transaction(handle, subtree_index,
3405 handle->h_buffer_credits,
3406 right_path);
3407 if (ret) {
3408 mlog_errno(ret);
3409 goto out;
3410 }
3411
3412 root_bh = left_path->p_node[subtree_index].bh;
3413 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
3414
Joel Becker7dc02802009-02-12 19:20:13 -08003415 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07003416 subtree_index);
Tao Ma677b9752008-01-30 14:21:05 +08003417 if (ret) {
3418 mlog_errno(ret);
3419 goto out;
3420 }
3421
3422 for (i = subtree_index + 1;
3423 i < path_num_items(right_path); i++) {
Joel Becker7dc02802009-02-12 19:20:13 -08003424 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003425 right_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003426 if (ret) {
3427 mlog_errno(ret);
3428 goto out;
3429 }
3430
Joel Becker7dc02802009-02-12 19:20:13 -08003431 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003432 left_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003433 if (ret) {
3434 mlog_errno(ret);
3435 goto out;
3436 }
3437 }
3438
3439 } else {
3440 BUG_ON(index == le16_to_cpu(el->l_next_free_rec) - 1);
3441 right_rec = &el->l_recs[index + 1];
3442 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003443
Joel Becker7dc02802009-02-12 19:20:13 -08003444 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, left_path,
Joel Becker13723d02008-10-17 19:25:01 -07003445 path_num_items(left_path) - 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07003446 if (ret) {
3447 mlog_errno(ret);
3448 goto out;
3449 }
3450
3451 le16_add_cpu(&left_rec->e_leaf_clusters, -split_clusters);
3452
3453 le32_add_cpu(&right_rec->e_cpos, -split_clusters);
3454 le64_add_cpu(&right_rec->e_blkno,
Joel Becker7dc02802009-02-12 19:20:13 -08003455 -ocfs2_clusters_to_blocks(ocfs2_metadata_cache_get_super(et->et_ci),
3456 split_clusters));
Mark Fasheh328d5752007-06-18 10:48:04 -07003457 le16_add_cpu(&right_rec->e_leaf_clusters, split_clusters);
3458
3459 ocfs2_cleanup_merge(el, index);
3460
Joel Beckerec20cec2010-03-19 14:13:52 -07003461 ocfs2_journal_dirty(handle, bh);
Tao Ma677b9752008-01-30 14:21:05 +08003462 if (right_path) {
Joel Beckerec20cec2010-03-19 14:13:52 -07003463 ocfs2_journal_dirty(handle, path_leaf_bh(right_path));
Joel Becker4619c732009-02-12 19:02:36 -08003464 ocfs2_complete_edge_insert(handle, left_path, right_path,
3465 subtree_index);
Tao Ma677b9752008-01-30 14:21:05 +08003466 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003467out:
Tao Ma677b9752008-01-30 14:21:05 +08003468 if (right_path)
3469 ocfs2_free_path(right_path);
3470 return ret;
3471}
3472
Joel Becker4fe82c32009-02-13 02:16:08 -08003473static int ocfs2_get_left_path(struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003474 struct ocfs2_path *right_path,
3475 struct ocfs2_path **ret_left_path)
3476{
3477 int ret;
3478 u32 left_cpos;
3479 struct ocfs2_path *left_path = NULL;
3480
3481 *ret_left_path = NULL;
3482
3483 /* This function shouldn't be called for non-trees. */
3484 BUG_ON(right_path->p_tree_depth == 0);
3485
Joel Becker4fe82c32009-02-13 02:16:08 -08003486 ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
Tao Ma677b9752008-01-30 14:21:05 +08003487 right_path, &left_cpos);
3488 if (ret) {
3489 mlog_errno(ret);
3490 goto out;
3491 }
3492
3493 /* This function shouldn't be called for the leftmost leaf. */
3494 BUG_ON(left_cpos == 0);
3495
Joel Beckerffdd7a52008-10-17 22:32:01 -07003496 left_path = ocfs2_new_path_from_path(right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003497 if (!left_path) {
3498 ret = -ENOMEM;
3499 mlog_errno(ret);
3500 goto out;
3501 }
3502
Joel Becker4fe82c32009-02-13 02:16:08 -08003503 ret = ocfs2_find_path(et->et_ci, left_path, left_cpos);
Tao Ma677b9752008-01-30 14:21:05 +08003504 if (ret) {
3505 mlog_errno(ret);
3506 goto out;
3507 }
3508
3509 *ret_left_path = left_path;
3510out:
3511 if (ret)
3512 ocfs2_free_path(left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003513 return ret;
3514}
3515
3516/*
3517 * Remove split_rec clusters from the record at index and merge them
Tao Ma677b9752008-01-30 14:21:05 +08003518 * onto the tail of the record "before" it.
3519 * For index > 0, the "before" means the extent rec at index - 1.
3520 *
3521 * For index == 0, the "before" means the last record of the previous
3522 * extent block. And there is also a situation that we may need to
3523 * remove the rightmost leaf extent block in the right_path and change
3524 * the right path to indicate the new rightmost path.
Mark Fasheh328d5752007-06-18 10:48:04 -07003525 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003526static int ocfs2_merge_rec_left(struct ocfs2_path *right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003527 handle_t *handle,
Joel Becker4fe82c32009-02-13 02:16:08 -08003528 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07003529 struct ocfs2_extent_rec *split_rec,
Tao Ma677b9752008-01-30 14:21:05 +08003530 struct ocfs2_cached_dealloc_ctxt *dealloc,
3531 int index)
Mark Fasheh328d5752007-06-18 10:48:04 -07003532{
Tao Ma677b9752008-01-30 14:21:05 +08003533 int ret, i, subtree_index = 0, has_empty_extent = 0;
Mark Fasheh328d5752007-06-18 10:48:04 -07003534 unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters);
3535 struct ocfs2_extent_rec *left_rec;
3536 struct ocfs2_extent_rec *right_rec;
Tao Ma677b9752008-01-30 14:21:05 +08003537 struct ocfs2_extent_list *el = path_leaf_el(right_path);
3538 struct buffer_head *bh = path_leaf_bh(right_path);
3539 struct buffer_head *root_bh = NULL;
3540 struct ocfs2_path *left_path = NULL;
3541 struct ocfs2_extent_list *left_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07003542
Tao Ma677b9752008-01-30 14:21:05 +08003543 BUG_ON(index < 0);
Mark Fasheh328d5752007-06-18 10:48:04 -07003544
Mark Fasheh328d5752007-06-18 10:48:04 -07003545 right_rec = &el->l_recs[index];
Tao Ma677b9752008-01-30 14:21:05 +08003546 if (index == 0) {
3547 /* we meet with a cross extent block merge. */
Joel Becker4fe82c32009-02-13 02:16:08 -08003548 ret = ocfs2_get_left_path(et, right_path, &left_path);
Tao Ma677b9752008-01-30 14:21:05 +08003549 if (ret) {
3550 mlog_errno(ret);
3551 goto out;
3552 }
3553
3554 left_el = path_leaf_el(left_path);
3555 BUG_ON(le16_to_cpu(left_el->l_next_free_rec) !=
3556 le16_to_cpu(left_el->l_count));
3557
3558 left_rec = &left_el->l_recs[
3559 le16_to_cpu(left_el->l_next_free_rec) - 1];
3560 BUG_ON(le32_to_cpu(left_rec->e_cpos) +
3561 le16_to_cpu(left_rec->e_leaf_clusters) !=
3562 le32_to_cpu(split_rec->e_cpos));
3563
Joel Becker7dc02802009-02-12 19:20:13 -08003564 subtree_index = ocfs2_find_subtree_root(et, left_path,
3565 right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003566
3567 ret = ocfs2_extend_rotate_transaction(handle, subtree_index,
3568 handle->h_buffer_credits,
3569 left_path);
3570 if (ret) {
3571 mlog_errno(ret);
3572 goto out;
3573 }
3574
3575 root_bh = left_path->p_node[subtree_index].bh;
3576 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
3577
Joel Becker4fe82c32009-02-13 02:16:08 -08003578 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07003579 subtree_index);
Tao Ma677b9752008-01-30 14:21:05 +08003580 if (ret) {
3581 mlog_errno(ret);
3582 goto out;
3583 }
3584
3585 for (i = subtree_index + 1;
3586 i < path_num_items(right_path); i++) {
Joel Becker4fe82c32009-02-13 02:16:08 -08003587 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003588 right_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003589 if (ret) {
3590 mlog_errno(ret);
3591 goto out;
3592 }
3593
Joel Becker4fe82c32009-02-13 02:16:08 -08003594 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003595 left_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003596 if (ret) {
3597 mlog_errno(ret);
3598 goto out;
3599 }
3600 }
3601 } else {
3602 left_rec = &el->l_recs[index - 1];
3603 if (ocfs2_is_empty_extent(&el->l_recs[0]))
3604 has_empty_extent = 1;
3605 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003606
Joel Becker4fe82c32009-02-13 02:16:08 -08003607 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Tao Ma9047bea2009-01-05 14:45:24 +08003608 path_num_items(right_path) - 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07003609 if (ret) {
3610 mlog_errno(ret);
3611 goto out;
3612 }
3613
3614 if (has_empty_extent && index == 1) {
3615 /*
3616 * The easy case - we can just plop the record right in.
3617 */
3618 *left_rec = *split_rec;
3619
3620 has_empty_extent = 0;
Tao Ma677b9752008-01-30 14:21:05 +08003621 } else
Mark Fasheh328d5752007-06-18 10:48:04 -07003622 le16_add_cpu(&left_rec->e_leaf_clusters, split_clusters);
Mark Fasheh328d5752007-06-18 10:48:04 -07003623
3624 le32_add_cpu(&right_rec->e_cpos, split_clusters);
3625 le64_add_cpu(&right_rec->e_blkno,
Joel Becker4fe82c32009-02-13 02:16:08 -08003626 ocfs2_clusters_to_blocks(ocfs2_metadata_cache_get_super(et->et_ci),
3627 split_clusters));
Mark Fasheh328d5752007-06-18 10:48:04 -07003628 le16_add_cpu(&right_rec->e_leaf_clusters, -split_clusters);
3629
3630 ocfs2_cleanup_merge(el, index);
3631
Joel Beckerec20cec2010-03-19 14:13:52 -07003632 ocfs2_journal_dirty(handle, bh);
Tao Ma677b9752008-01-30 14:21:05 +08003633 if (left_path) {
Joel Beckerec20cec2010-03-19 14:13:52 -07003634 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
Tao Ma677b9752008-01-30 14:21:05 +08003635
3636 /*
3637 * In the situation that the right_rec is empty and the extent
3638 * block is empty also, ocfs2_complete_edge_insert can't handle
3639 * it and we need to delete the right extent block.
3640 */
3641 if (le16_to_cpu(right_rec->e_leaf_clusters) == 0 &&
3642 le16_to_cpu(el->l_next_free_rec) == 1) {
3643
Joel Becker70f18c02009-02-13 02:09:31 -08003644 ret = ocfs2_remove_rightmost_path(handle, et,
Tao Mae7d4cb62008-08-18 17:38:44 +08003645 right_path,
Joel Becker70f18c02009-02-13 02:09:31 -08003646 dealloc);
Tao Ma677b9752008-01-30 14:21:05 +08003647 if (ret) {
3648 mlog_errno(ret);
3649 goto out;
3650 }
3651
3652 /* Now the rightmost extent block has been deleted.
3653 * So we use the new rightmost path.
3654 */
3655 ocfs2_mv_path(right_path, left_path);
3656 left_path = NULL;
3657 } else
Joel Becker4619c732009-02-12 19:02:36 -08003658 ocfs2_complete_edge_insert(handle, left_path,
Tao Ma677b9752008-01-30 14:21:05 +08003659 right_path, subtree_index);
3660 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003661out:
Tao Ma677b9752008-01-30 14:21:05 +08003662 if (left_path)
3663 ocfs2_free_path(left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003664 return ret;
3665}
3666
Joel Beckerc495dd22009-02-13 02:19:11 -08003667static int ocfs2_try_to_merge_extent(handle_t *handle,
3668 struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003669 struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003670 int split_index,
3671 struct ocfs2_extent_rec *split_rec,
3672 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Beckerc495dd22009-02-13 02:19:11 -08003673 struct ocfs2_merge_ctxt *ctxt)
Mark Fasheh328d5752007-06-18 10:48:04 -07003674{
Tao Mao518d7262007-08-28 17:25:35 -07003675 int ret = 0;
Tao Ma677b9752008-01-30 14:21:05 +08003676 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003677 struct ocfs2_extent_rec *rec = &el->l_recs[split_index];
3678
3679 BUG_ON(ctxt->c_contig_type == CONTIG_NONE);
3680
Tao Mao518d7262007-08-28 17:25:35 -07003681 if (ctxt->c_split_covers_rec && ctxt->c_has_empty_extent) {
3682 /*
3683 * The merge code will need to create an empty
3684 * extent to take the place of the newly
3685 * emptied slot. Remove any pre-existing empty
3686 * extents - having more than one in a leaf is
3687 * illegal.
3688 */
Joel Becker70f18c02009-02-13 02:09:31 -08003689 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Tao Mao518d7262007-08-28 17:25:35 -07003690 if (ret) {
3691 mlog_errno(ret);
3692 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07003693 }
Tao Mao518d7262007-08-28 17:25:35 -07003694 split_index--;
3695 rec = &el->l_recs[split_index];
Mark Fasheh328d5752007-06-18 10:48:04 -07003696 }
3697
3698 if (ctxt->c_contig_type == CONTIG_LEFTRIGHT) {
3699 /*
3700 * Left-right contig implies this.
3701 */
3702 BUG_ON(!ctxt->c_split_covers_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07003703
3704 /*
3705 * Since the leftright insert always covers the entire
3706 * extent, this call will delete the insert record
3707 * entirely, resulting in an empty extent record added to
3708 * the extent block.
3709 *
3710 * Since the adding of an empty extent shifts
3711 * everything back to the right, there's no need to
3712 * update split_index here.
Tao Ma677b9752008-01-30 14:21:05 +08003713 *
3714 * When the split_index is zero, we need to merge it to the
3715 * prevoius extent block. It is more efficient and easier
3716 * if we do merge_right first and merge_left later.
Mark Fasheh328d5752007-06-18 10:48:04 -07003717 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003718 ret = ocfs2_merge_rec_right(path, handle, et, split_rec,
Tao Ma677b9752008-01-30 14:21:05 +08003719 split_index);
Mark Fasheh328d5752007-06-18 10:48:04 -07003720 if (ret) {
3721 mlog_errno(ret);
3722 goto out;
3723 }
3724
3725 /*
3726 * We can only get this from logic error above.
3727 */
3728 BUG_ON(!ocfs2_is_empty_extent(&el->l_recs[0]));
3729
Tao Ma677b9752008-01-30 14:21:05 +08003730 /* The merge left us with an empty extent, remove it. */
Joel Becker70f18c02009-02-13 02:09:31 -08003731 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003732 if (ret) {
3733 mlog_errno(ret);
3734 goto out;
3735 }
Tao Ma677b9752008-01-30 14:21:05 +08003736
Mark Fasheh328d5752007-06-18 10:48:04 -07003737 rec = &el->l_recs[split_index];
3738
3739 /*
3740 * Note that we don't pass split_rec here on purpose -
Tao Ma677b9752008-01-30 14:21:05 +08003741 * we've merged it into the rec already.
Mark Fasheh328d5752007-06-18 10:48:04 -07003742 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003743 ret = ocfs2_merge_rec_left(path, handle, et, rec,
3744 dealloc, split_index);
Tao Ma677b9752008-01-30 14:21:05 +08003745
Mark Fasheh328d5752007-06-18 10:48:04 -07003746 if (ret) {
3747 mlog_errno(ret);
3748 goto out;
3749 }
3750
Joel Becker70f18c02009-02-13 02:09:31 -08003751 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003752 /*
3753 * Error from this last rotate is not critical, so
3754 * print but don't bubble it up.
3755 */
3756 if (ret)
3757 mlog_errno(ret);
3758 ret = 0;
3759 } else {
3760 /*
3761 * Merge a record to the left or right.
3762 *
3763 * 'contig_type' is relative to the existing record,
3764 * so for example, if we're "right contig", it's to
3765 * the record on the left (hence the left merge).
3766 */
3767 if (ctxt->c_contig_type == CONTIG_RIGHT) {
Joel Becker4fe82c32009-02-13 02:16:08 -08003768 ret = ocfs2_merge_rec_left(path, handle, et,
3769 split_rec, dealloc,
Mark Fasheh328d5752007-06-18 10:48:04 -07003770 split_index);
3771 if (ret) {
3772 mlog_errno(ret);
3773 goto out;
3774 }
3775 } else {
Joel Becker4fe82c32009-02-13 02:16:08 -08003776 ret = ocfs2_merge_rec_right(path, handle,
Joel Becker7dc02802009-02-12 19:20:13 -08003777 et, split_rec,
Mark Fasheh328d5752007-06-18 10:48:04 -07003778 split_index);
3779 if (ret) {
3780 mlog_errno(ret);
3781 goto out;
3782 }
3783 }
3784
3785 if (ctxt->c_split_covers_rec) {
3786 /*
3787 * The merge may have left an empty extent in
3788 * our leaf. Try to rotate it away.
3789 */
Joel Becker70f18c02009-02-13 02:09:31 -08003790 ret = ocfs2_rotate_tree_left(handle, et, path,
3791 dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003792 if (ret)
3793 mlog_errno(ret);
3794 ret = 0;
3795 }
3796 }
3797
3798out:
3799 return ret;
3800}
3801
3802static void ocfs2_subtract_from_rec(struct super_block *sb,
3803 enum ocfs2_split_type split,
3804 struct ocfs2_extent_rec *rec,
3805 struct ocfs2_extent_rec *split_rec)
3806{
3807 u64 len_blocks;
3808
3809 len_blocks = ocfs2_clusters_to_blocks(sb,
3810 le16_to_cpu(split_rec->e_leaf_clusters));
3811
3812 if (split == SPLIT_LEFT) {
3813 /*
3814 * Region is on the left edge of the existing
3815 * record.
3816 */
3817 le32_add_cpu(&rec->e_cpos,
3818 le16_to_cpu(split_rec->e_leaf_clusters));
3819 le64_add_cpu(&rec->e_blkno, len_blocks);
3820 le16_add_cpu(&rec->e_leaf_clusters,
3821 -le16_to_cpu(split_rec->e_leaf_clusters));
3822 } else {
3823 /*
3824 * Region is on the right edge of the existing
3825 * record.
3826 */
3827 le16_add_cpu(&rec->e_leaf_clusters,
3828 -le16_to_cpu(split_rec->e_leaf_clusters));
3829 }
3830}
3831
Mark Fashehdcd05382007-01-16 11:32:23 -08003832/*
3833 * Do the final bits of extent record insertion at the target leaf
3834 * list. If this leaf is part of an allocation tree, it is assumed
3835 * that the tree above has been prepared.
3836 */
Joel Beckerd5628622009-02-13 02:54:36 -08003837static void ocfs2_insert_at_leaf(struct ocfs2_extent_tree *et,
3838 struct ocfs2_extent_rec *insert_rec,
Mark Fashehdcd05382007-01-16 11:32:23 -08003839 struct ocfs2_extent_list *el,
Joel Beckerd5628622009-02-13 02:54:36 -08003840 struct ocfs2_insert_type *insert)
Mark Fashehdcd05382007-01-16 11:32:23 -08003841{
3842 int i = insert->ins_contig_index;
3843 unsigned int range;
3844 struct ocfs2_extent_rec *rec;
3845
Mark Fashehe48edee2007-03-07 16:46:57 -08003846 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
Mark Fashehdcd05382007-01-16 11:32:23 -08003847
Mark Fasheh328d5752007-06-18 10:48:04 -07003848 if (insert->ins_split != SPLIT_NONE) {
3849 i = ocfs2_search_extent_list(el, le32_to_cpu(insert_rec->e_cpos));
3850 BUG_ON(i == -1);
3851 rec = &el->l_recs[i];
Joel Beckerd5628622009-02-13 02:54:36 -08003852 ocfs2_subtract_from_rec(ocfs2_metadata_cache_get_super(et->et_ci),
3853 insert->ins_split, rec,
Mark Fasheh328d5752007-06-18 10:48:04 -07003854 insert_rec);
3855 goto rotate;
3856 }
3857
Mark Fashehdcd05382007-01-16 11:32:23 -08003858 /*
3859 * Contiguous insert - either left or right.
3860 */
3861 if (insert->ins_contig != CONTIG_NONE) {
3862 rec = &el->l_recs[i];
3863 if (insert->ins_contig == CONTIG_LEFT) {
3864 rec->e_blkno = insert_rec->e_blkno;
3865 rec->e_cpos = insert_rec->e_cpos;
3866 }
Mark Fashehe48edee2007-03-07 16:46:57 -08003867 le16_add_cpu(&rec->e_leaf_clusters,
3868 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08003869 return;
3870 }
3871
3872 /*
3873 * Handle insert into an empty leaf.
3874 */
3875 if (le16_to_cpu(el->l_next_free_rec) == 0 ||
3876 ((le16_to_cpu(el->l_next_free_rec) == 1) &&
3877 ocfs2_is_empty_extent(&el->l_recs[0]))) {
3878 el->l_recs[0] = *insert_rec;
3879 el->l_next_free_rec = cpu_to_le16(1);
3880 return;
3881 }
3882
3883 /*
3884 * Appending insert.
3885 */
3886 if (insert->ins_appending == APPEND_TAIL) {
3887 i = le16_to_cpu(el->l_next_free_rec) - 1;
3888 rec = &el->l_recs[i];
Mark Fashehe48edee2007-03-07 16:46:57 -08003889 range = le32_to_cpu(rec->e_cpos)
3890 + le16_to_cpu(rec->e_leaf_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08003891 BUG_ON(le32_to_cpu(insert_rec->e_cpos) < range);
3892
3893 mlog_bug_on_msg(le16_to_cpu(el->l_next_free_rec) >=
3894 le16_to_cpu(el->l_count),
Joel Beckerd5628622009-02-13 02:54:36 -08003895 "owner %llu, depth %u, count %u, next free %u, "
Mark Fashehdcd05382007-01-16 11:32:23 -08003896 "rec.cpos %u, rec.clusters %u, "
3897 "insert.cpos %u, insert.clusters %u\n",
Joel Beckerd5628622009-02-13 02:54:36 -08003898 ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08003899 le16_to_cpu(el->l_tree_depth),
3900 le16_to_cpu(el->l_count),
3901 le16_to_cpu(el->l_next_free_rec),
3902 le32_to_cpu(el->l_recs[i].e_cpos),
Mark Fashehe48edee2007-03-07 16:46:57 -08003903 le16_to_cpu(el->l_recs[i].e_leaf_clusters),
Mark Fashehdcd05382007-01-16 11:32:23 -08003904 le32_to_cpu(insert_rec->e_cpos),
Mark Fashehe48edee2007-03-07 16:46:57 -08003905 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08003906 i++;
3907 el->l_recs[i] = *insert_rec;
3908 le16_add_cpu(&el->l_next_free_rec, 1);
3909 return;
3910 }
3911
Mark Fasheh328d5752007-06-18 10:48:04 -07003912rotate:
Mark Fashehdcd05382007-01-16 11:32:23 -08003913 /*
3914 * Ok, we have to rotate.
3915 *
3916 * At this point, it is safe to assume that inserting into an
3917 * empty leaf and appending to a leaf have both been handled
3918 * above.
3919 *
3920 * This leaf needs to have space, either by the empty 1st
3921 * extent record, or by virtue of an l_next_rec < l_count.
3922 */
3923 ocfs2_rotate_leaf(el, insert_rec);
3924}
3925
Joel Beckerd401dc12009-02-13 02:24:10 -08003926static void ocfs2_adjust_rightmost_records(handle_t *handle,
3927 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07003928 struct ocfs2_path *path,
3929 struct ocfs2_extent_rec *insert_rec)
3930{
3931 int ret, i, next_free;
3932 struct buffer_head *bh;
3933 struct ocfs2_extent_list *el;
3934 struct ocfs2_extent_rec *rec;
3935
3936 /*
3937 * Update everything except the leaf block.
3938 */
3939 for (i = 0; i < path->p_tree_depth; i++) {
3940 bh = path->p_node[i].bh;
3941 el = path->p_node[i].el;
3942
3943 next_free = le16_to_cpu(el->l_next_free_rec);
3944 if (next_free == 0) {
Joel Beckerd401dc12009-02-13 02:24:10 -08003945 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
3946 "Owner %llu has a bad extent list",
3947 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci));
Mark Fasheh328d5752007-06-18 10:48:04 -07003948 ret = -EIO;
3949 return;
3950 }
3951
3952 rec = &el->l_recs[next_free - 1];
3953
3954 rec->e_int_clusters = insert_rec->e_cpos;
3955 le32_add_cpu(&rec->e_int_clusters,
3956 le16_to_cpu(insert_rec->e_leaf_clusters));
3957 le32_add_cpu(&rec->e_int_clusters,
3958 -le32_to_cpu(rec->e_cpos));
3959
Joel Beckerec20cec2010-03-19 14:13:52 -07003960 ocfs2_journal_dirty(handle, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07003961 }
3962}
3963
Joel Beckerd401dc12009-02-13 02:24:10 -08003964static int ocfs2_append_rec_to_path(handle_t *handle,
3965 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08003966 struct ocfs2_extent_rec *insert_rec,
3967 struct ocfs2_path *right_path,
3968 struct ocfs2_path **ret_left_path)
3969{
Mark Fasheh328d5752007-06-18 10:48:04 -07003970 int ret, next_free;
Mark Fashehdcd05382007-01-16 11:32:23 -08003971 struct ocfs2_extent_list *el;
3972 struct ocfs2_path *left_path = NULL;
3973
3974 *ret_left_path = NULL;
3975
3976 /*
Mark Fashehe48edee2007-03-07 16:46:57 -08003977 * This shouldn't happen for non-trees. The extent rec cluster
3978 * count manipulation below only works for interior nodes.
3979 */
3980 BUG_ON(right_path->p_tree_depth == 0);
3981
3982 /*
Mark Fashehdcd05382007-01-16 11:32:23 -08003983 * If our appending insert is at the leftmost edge of a leaf,
3984 * then we might need to update the rightmost records of the
3985 * neighboring path.
3986 */
3987 el = path_leaf_el(right_path);
3988 next_free = le16_to_cpu(el->l_next_free_rec);
3989 if (next_free == 0 ||
3990 (next_free == 1 && ocfs2_is_empty_extent(&el->l_recs[0]))) {
3991 u32 left_cpos;
3992
Joel Beckerd401dc12009-02-13 02:24:10 -08003993 ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
3994 right_path, &left_cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08003995 if (ret) {
3996 mlog_errno(ret);
3997 goto out;
3998 }
3999
4000 mlog(0, "Append may need a left path update. cpos: %u, "
4001 "left_cpos: %u\n", le32_to_cpu(insert_rec->e_cpos),
4002 left_cpos);
4003
4004 /*
4005 * No need to worry if the append is already in the
4006 * leftmost leaf.
4007 */
4008 if (left_cpos) {
Joel Beckerffdd7a52008-10-17 22:32:01 -07004009 left_path = ocfs2_new_path_from_path(right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004010 if (!left_path) {
4011 ret = -ENOMEM;
4012 mlog_errno(ret);
4013 goto out;
4014 }
4015
Joel Beckerd401dc12009-02-13 02:24:10 -08004016 ret = ocfs2_find_path(et->et_ci, left_path,
Joel Beckerfacdb772009-02-12 18:08:48 -08004017 left_cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08004018 if (ret) {
4019 mlog_errno(ret);
4020 goto out;
4021 }
4022
4023 /*
4024 * ocfs2_insert_path() will pass the left_path to the
4025 * journal for us.
4026 */
4027 }
4028 }
4029
Joel Beckerd401dc12009-02-13 02:24:10 -08004030 ret = ocfs2_journal_access_path(et->et_ci, handle, right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004031 if (ret) {
4032 mlog_errno(ret);
4033 goto out;
4034 }
4035
Joel Beckerd401dc12009-02-13 02:24:10 -08004036 ocfs2_adjust_rightmost_records(handle, et, right_path, insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004037
4038 *ret_left_path = left_path;
4039 ret = 0;
4040out:
4041 if (ret != 0)
4042 ocfs2_free_path(left_path);
4043
4044 return ret;
4045}
4046
Joel Beckerc38e52b2009-02-13 02:56:23 -08004047static void ocfs2_split_record(struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004048 struct ocfs2_path *left_path,
4049 struct ocfs2_path *right_path,
4050 struct ocfs2_extent_rec *split_rec,
4051 enum ocfs2_split_type split)
4052{
4053 int index;
4054 u32 cpos = le32_to_cpu(split_rec->e_cpos);
4055 struct ocfs2_extent_list *left_el = NULL, *right_el, *insert_el, *el;
4056 struct ocfs2_extent_rec *rec, *tmprec;
4057
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004058 right_el = path_leaf_el(right_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07004059 if (left_path)
4060 left_el = path_leaf_el(left_path);
4061
4062 el = right_el;
4063 insert_el = right_el;
4064 index = ocfs2_search_extent_list(el, cpos);
4065 if (index != -1) {
4066 if (index == 0 && left_path) {
4067 BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0]));
4068
4069 /*
4070 * This typically means that the record
4071 * started in the left path but moved to the
4072 * right as a result of rotation. We either
4073 * move the existing record to the left, or we
4074 * do the later insert there.
4075 *
4076 * In this case, the left path should always
4077 * exist as the rotate code will have passed
4078 * it back for a post-insert update.
4079 */
4080
4081 if (split == SPLIT_LEFT) {
4082 /*
4083 * It's a left split. Since we know
4084 * that the rotate code gave us an
4085 * empty extent in the left path, we
4086 * can just do the insert there.
4087 */
4088 insert_el = left_el;
4089 } else {
4090 /*
4091 * Right split - we have to move the
4092 * existing record over to the left
4093 * leaf. The insert will be into the
4094 * newly created empty extent in the
4095 * right leaf.
4096 */
4097 tmprec = &right_el->l_recs[index];
4098 ocfs2_rotate_leaf(left_el, tmprec);
4099 el = left_el;
4100
4101 memset(tmprec, 0, sizeof(*tmprec));
4102 index = ocfs2_search_extent_list(left_el, cpos);
4103 BUG_ON(index == -1);
4104 }
4105 }
4106 } else {
4107 BUG_ON(!left_path);
4108 BUG_ON(!ocfs2_is_empty_extent(&left_el->l_recs[0]));
4109 /*
4110 * Left path is easy - we can just allow the insert to
4111 * happen.
4112 */
4113 el = left_el;
4114 insert_el = left_el;
4115 index = ocfs2_search_extent_list(el, cpos);
4116 BUG_ON(index == -1);
4117 }
4118
4119 rec = &el->l_recs[index];
Joel Beckerc38e52b2009-02-13 02:56:23 -08004120 ocfs2_subtract_from_rec(ocfs2_metadata_cache_get_super(et->et_ci),
4121 split, rec, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004122 ocfs2_rotate_leaf(insert_el, split_rec);
4123}
4124
Mark Fashehdcd05382007-01-16 11:32:23 -08004125/*
Tao Mae7d4cb62008-08-18 17:38:44 +08004126 * This function only does inserts on an allocation b-tree. For tree
4127 * depth = 0, ocfs2_insert_at_leaf() is called directly.
Mark Fashehdcd05382007-01-16 11:32:23 -08004128 *
4129 * right_path is the path we want to do the actual insert
4130 * in. left_path should only be passed in if we need to update that
4131 * portion of the tree after an edge insert.
4132 */
Joel Becker3505bec2009-02-13 02:57:58 -08004133static int ocfs2_insert_path(handle_t *handle,
Joel Becker7dc02802009-02-12 19:20:13 -08004134 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004135 struct ocfs2_path *left_path,
4136 struct ocfs2_path *right_path,
4137 struct ocfs2_extent_rec *insert_rec,
4138 struct ocfs2_insert_type *insert)
4139{
4140 int ret, subtree_index;
4141 struct buffer_head *leaf_bh = path_leaf_bh(right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004142
Mark Fashehdcd05382007-01-16 11:32:23 -08004143 if (left_path) {
4144 int credits = handle->h_buffer_credits;
4145
4146 /*
4147 * There's a chance that left_path got passed back to
4148 * us without being accounted for in the
4149 * journal. Extend our transaction here to be sure we
4150 * can change those blocks.
4151 */
4152 credits += left_path->p_tree_depth;
4153
4154 ret = ocfs2_extend_trans(handle, credits);
4155 if (ret < 0) {
4156 mlog_errno(ret);
4157 goto out;
4158 }
4159
Joel Becker7dc02802009-02-12 19:20:13 -08004160 ret = ocfs2_journal_access_path(et->et_ci, handle, left_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004161 if (ret < 0) {
4162 mlog_errno(ret);
4163 goto out;
4164 }
4165 }
4166
Mark Fashehe8aed342007-12-03 16:43:01 -08004167 /*
4168 * Pass both paths to the journal. The majority of inserts
4169 * will be touching all components anyway.
4170 */
Joel Becker7dc02802009-02-12 19:20:13 -08004171 ret = ocfs2_journal_access_path(et->et_ci, handle, right_path);
Mark Fashehe8aed342007-12-03 16:43:01 -08004172 if (ret < 0) {
4173 mlog_errno(ret);
4174 goto out;
4175 }
4176
Mark Fasheh328d5752007-06-18 10:48:04 -07004177 if (insert->ins_split != SPLIT_NONE) {
4178 /*
4179 * We could call ocfs2_insert_at_leaf() for some types
Joe Perchesc78bad12008-02-03 17:33:42 +02004180 * of splits, but it's easier to just let one separate
Mark Fasheh328d5752007-06-18 10:48:04 -07004181 * function sort it all out.
4182 */
Joel Beckerc38e52b2009-02-13 02:56:23 -08004183 ocfs2_split_record(et, left_path, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07004184 insert_rec, insert->ins_split);
Mark Fashehe8aed342007-12-03 16:43:01 -08004185
4186 /*
4187 * Split might have modified either leaf and we don't
4188 * have a guarantee that the later edge insert will
4189 * dirty this for us.
4190 */
4191 if (left_path)
Joel Beckerec20cec2010-03-19 14:13:52 -07004192 ocfs2_journal_dirty(handle,
4193 path_leaf_bh(left_path));
Mark Fasheh328d5752007-06-18 10:48:04 -07004194 } else
Joel Beckerd5628622009-02-13 02:54:36 -08004195 ocfs2_insert_at_leaf(et, insert_rec, path_leaf_el(right_path),
4196 insert);
Mark Fashehdcd05382007-01-16 11:32:23 -08004197
Joel Beckerec20cec2010-03-19 14:13:52 -07004198 ocfs2_journal_dirty(handle, leaf_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004199
4200 if (left_path) {
4201 /*
4202 * The rotate code has indicated that we need to fix
4203 * up portions of the tree after the insert.
4204 *
4205 * XXX: Should we extend the transaction here?
4206 */
Joel Becker7dc02802009-02-12 19:20:13 -08004207 subtree_index = ocfs2_find_subtree_root(et, left_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08004208 right_path);
Joel Becker4619c732009-02-12 19:02:36 -08004209 ocfs2_complete_edge_insert(handle, left_path, right_path,
4210 subtree_index);
Mark Fashehdcd05382007-01-16 11:32:23 -08004211 }
4212
4213 ret = 0;
4214out:
4215 return ret;
4216}
4217
Joel Becker3505bec2009-02-13 02:57:58 -08004218static int ocfs2_do_insert_extent(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08004219 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004220 struct ocfs2_extent_rec *insert_rec,
4221 struct ocfs2_insert_type *type)
4222{
4223 int ret, rotate = 0;
4224 u32 cpos;
4225 struct ocfs2_path *right_path = NULL;
4226 struct ocfs2_path *left_path = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -08004227 struct ocfs2_extent_list *el;
4228
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004229 el = et->et_root_el;
Mark Fashehdcd05382007-01-16 11:32:23 -08004230
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08004231 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07004232 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehdcd05382007-01-16 11:32:23 -08004233 if (ret) {
4234 mlog_errno(ret);
4235 goto out;
4236 }
4237
4238 if (le16_to_cpu(el->l_tree_depth) == 0) {
Joel Beckerd5628622009-02-13 02:54:36 -08004239 ocfs2_insert_at_leaf(et, insert_rec, el, type);
Mark Fashehdcd05382007-01-16 11:32:23 -08004240 goto out_update_clusters;
4241 }
4242
Joel Beckerffdd7a52008-10-17 22:32:01 -07004243 right_path = ocfs2_new_path_from_et(et);
Mark Fashehdcd05382007-01-16 11:32:23 -08004244 if (!right_path) {
4245 ret = -ENOMEM;
4246 mlog_errno(ret);
4247 goto out;
4248 }
4249
4250 /*
4251 * Determine the path to start with. Rotations need the
4252 * rightmost path, everything else can go directly to the
4253 * target leaf.
4254 */
4255 cpos = le32_to_cpu(insert_rec->e_cpos);
4256 if (type->ins_appending == APPEND_NONE &&
4257 type->ins_contig == CONTIG_NONE) {
4258 rotate = 1;
4259 cpos = UINT_MAX;
4260 }
4261
Joel Beckerfacdb772009-02-12 18:08:48 -08004262 ret = ocfs2_find_path(et->et_ci, right_path, cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08004263 if (ret) {
4264 mlog_errno(ret);
4265 goto out;
4266 }
4267
4268 /*
4269 * Rotations and appends need special treatment - they modify
4270 * parts of the tree's above them.
4271 *
4272 * Both might pass back a path immediate to the left of the
4273 * one being inserted to. This will be cause
4274 * ocfs2_insert_path() to modify the rightmost records of
4275 * left_path to account for an edge insert.
4276 *
4277 * XXX: When modifying this code, keep in mind that an insert
4278 * can wind up skipping both of these two special cases...
4279 */
4280 if (rotate) {
Joel Becker1bbf0b82009-02-12 19:42:08 -08004281 ret = ocfs2_rotate_tree_right(handle, et, type->ins_split,
Mark Fashehdcd05382007-01-16 11:32:23 -08004282 le32_to_cpu(insert_rec->e_cpos),
4283 right_path, &left_path);
4284 if (ret) {
4285 mlog_errno(ret);
4286 goto out;
4287 }
Mark Fashehe8aed342007-12-03 16:43:01 -08004288
4289 /*
4290 * ocfs2_rotate_tree_right() might have extended the
4291 * transaction without re-journaling our tree root.
4292 */
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08004293 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07004294 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehe8aed342007-12-03 16:43:01 -08004295 if (ret) {
4296 mlog_errno(ret);
4297 goto out;
4298 }
Mark Fashehdcd05382007-01-16 11:32:23 -08004299 } else if (type->ins_appending == APPEND_TAIL
4300 && type->ins_contig != CONTIG_LEFT) {
Joel Beckerd401dc12009-02-13 02:24:10 -08004301 ret = ocfs2_append_rec_to_path(handle, et, insert_rec,
Mark Fashehdcd05382007-01-16 11:32:23 -08004302 right_path, &left_path);
4303 if (ret) {
4304 mlog_errno(ret);
4305 goto out;
4306 }
4307 }
4308
Joel Becker3505bec2009-02-13 02:57:58 -08004309 ret = ocfs2_insert_path(handle, et, left_path, right_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08004310 insert_rec, type);
4311 if (ret) {
4312 mlog_errno(ret);
4313 goto out;
4314 }
4315
4316out_update_clusters:
Mark Fasheh328d5752007-06-18 10:48:04 -07004317 if (type->ins_split == SPLIT_NONE)
Joel Becker6136ca52009-02-12 19:32:43 -08004318 ocfs2_et_update_clusters(et,
Joel Becker35dc0aa2008-08-20 16:25:06 -07004319 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08004320
Joel Beckerec20cec2010-03-19 14:13:52 -07004321 ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004322
4323out:
4324 ocfs2_free_path(left_path);
4325 ocfs2_free_path(right_path);
4326
4327 return ret;
4328}
4329
Mark Fasheh328d5752007-06-18 10:48:04 -07004330static enum ocfs2_contig_type
Joel Beckera2970292009-02-13 03:09:54 -08004331ocfs2_figure_merge_contig_type(struct ocfs2_extent_tree *et,
4332 struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07004333 struct ocfs2_extent_list *el, int index,
4334 struct ocfs2_extent_rec *split_rec)
4335{
Tao Maad5a4d72008-01-30 14:21:32 +08004336 int status;
Mark Fasheh328d5752007-06-18 10:48:04 -07004337 enum ocfs2_contig_type ret = CONTIG_NONE;
Tao Maad5a4d72008-01-30 14:21:32 +08004338 u32 left_cpos, right_cpos;
4339 struct ocfs2_extent_rec *rec = NULL;
4340 struct ocfs2_extent_list *new_el;
4341 struct ocfs2_path *left_path = NULL, *right_path = NULL;
4342 struct buffer_head *bh;
4343 struct ocfs2_extent_block *eb;
Joel Beckera2970292009-02-13 03:09:54 -08004344 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Tao Maad5a4d72008-01-30 14:21:32 +08004345
4346 if (index > 0) {
4347 rec = &el->l_recs[index - 1];
4348 } else if (path->p_tree_depth > 0) {
Joel Beckera2970292009-02-13 03:09:54 -08004349 status = ocfs2_find_cpos_for_left_leaf(sb, path, &left_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004350 if (status)
4351 goto out;
4352
4353 if (left_cpos != 0) {
Joel Beckerffdd7a52008-10-17 22:32:01 -07004354 left_path = ocfs2_new_path_from_path(path);
Tao Maad5a4d72008-01-30 14:21:32 +08004355 if (!left_path)
4356 goto out;
4357
Joel Beckera2970292009-02-13 03:09:54 -08004358 status = ocfs2_find_path(et->et_ci, left_path,
4359 left_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004360 if (status)
4361 goto out;
4362
4363 new_el = path_leaf_el(left_path);
4364
4365 if (le16_to_cpu(new_el->l_next_free_rec) !=
4366 le16_to_cpu(new_el->l_count)) {
4367 bh = path_leaf_bh(left_path);
4368 eb = (struct ocfs2_extent_block *)bh->b_data;
Joel Beckera2970292009-02-13 03:09:54 -08004369 ocfs2_error(sb,
Joel Becker5e965812008-11-13 14:49:16 -08004370 "Extent block #%llu has an "
4371 "invalid l_next_free_rec of "
4372 "%d. It should have "
4373 "matched the l_count of %d",
4374 (unsigned long long)le64_to_cpu(eb->h_blkno),
4375 le16_to_cpu(new_el->l_next_free_rec),
4376 le16_to_cpu(new_el->l_count));
4377 status = -EINVAL;
Tao Maad5a4d72008-01-30 14:21:32 +08004378 goto out;
4379 }
4380 rec = &new_el->l_recs[
4381 le16_to_cpu(new_el->l_next_free_rec) - 1];
4382 }
4383 }
Mark Fasheh328d5752007-06-18 10:48:04 -07004384
4385 /*
4386 * We're careful to check for an empty extent record here -
4387 * the merge code will know what to do if it sees one.
4388 */
Tao Maad5a4d72008-01-30 14:21:32 +08004389 if (rec) {
Mark Fasheh328d5752007-06-18 10:48:04 -07004390 if (index == 1 && ocfs2_is_empty_extent(rec)) {
4391 if (split_rec->e_cpos == el->l_recs[index].e_cpos)
4392 ret = CONTIG_RIGHT;
4393 } else {
Tao Ma853a3a12009-08-18 11:22:18 +08004394 ret = ocfs2_et_extent_contig(et, rec, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004395 }
4396 }
4397
Tao Maad5a4d72008-01-30 14:21:32 +08004398 rec = NULL;
4399 if (index < (le16_to_cpu(el->l_next_free_rec) - 1))
4400 rec = &el->l_recs[index + 1];
4401 else if (le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count) &&
4402 path->p_tree_depth > 0) {
Joel Beckera2970292009-02-13 03:09:54 -08004403 status = ocfs2_find_cpos_for_right_leaf(sb, path, &right_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004404 if (status)
4405 goto out;
4406
4407 if (right_cpos == 0)
4408 goto out;
4409
Joel Beckerffdd7a52008-10-17 22:32:01 -07004410 right_path = ocfs2_new_path_from_path(path);
Tao Maad5a4d72008-01-30 14:21:32 +08004411 if (!right_path)
4412 goto out;
4413
Joel Beckera2970292009-02-13 03:09:54 -08004414 status = ocfs2_find_path(et->et_ci, right_path, right_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004415 if (status)
4416 goto out;
4417
4418 new_el = path_leaf_el(right_path);
4419 rec = &new_el->l_recs[0];
4420 if (ocfs2_is_empty_extent(rec)) {
4421 if (le16_to_cpu(new_el->l_next_free_rec) <= 1) {
4422 bh = path_leaf_bh(right_path);
4423 eb = (struct ocfs2_extent_block *)bh->b_data;
Joel Beckera2970292009-02-13 03:09:54 -08004424 ocfs2_error(sb,
Joel Becker5e965812008-11-13 14:49:16 -08004425 "Extent block #%llu has an "
4426 "invalid l_next_free_rec of %d",
4427 (unsigned long long)le64_to_cpu(eb->h_blkno),
4428 le16_to_cpu(new_el->l_next_free_rec));
4429 status = -EINVAL;
Tao Maad5a4d72008-01-30 14:21:32 +08004430 goto out;
4431 }
4432 rec = &new_el->l_recs[1];
4433 }
4434 }
4435
4436 if (rec) {
Mark Fasheh328d5752007-06-18 10:48:04 -07004437 enum ocfs2_contig_type contig_type;
4438
Tao Ma853a3a12009-08-18 11:22:18 +08004439 contig_type = ocfs2_et_extent_contig(et, rec, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004440
4441 if (contig_type == CONTIG_LEFT && ret == CONTIG_RIGHT)
4442 ret = CONTIG_LEFTRIGHT;
4443 else if (ret == CONTIG_NONE)
4444 ret = contig_type;
4445 }
4446
Tao Maad5a4d72008-01-30 14:21:32 +08004447out:
4448 if (left_path)
4449 ocfs2_free_path(left_path);
4450 if (right_path)
4451 ocfs2_free_path(right_path);
4452
Mark Fasheh328d5752007-06-18 10:48:04 -07004453 return ret;
4454}
4455
Joel Becker1ef61b32009-02-13 03:12:33 -08004456static void ocfs2_figure_contig_type(struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004457 struct ocfs2_insert_type *insert,
4458 struct ocfs2_extent_list *el,
Joel Becker1ef61b32009-02-13 03:12:33 -08004459 struct ocfs2_extent_rec *insert_rec)
Mark Fashehdcd05382007-01-16 11:32:23 -08004460{
4461 int i;
4462 enum ocfs2_contig_type contig_type = CONTIG_NONE;
4463
Mark Fashehe48edee2007-03-07 16:46:57 -08004464 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
4465
Mark Fashehdcd05382007-01-16 11:32:23 -08004466 for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
Tao Ma853a3a12009-08-18 11:22:18 +08004467 contig_type = ocfs2_et_extent_contig(et, &el->l_recs[i],
4468 insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004469 if (contig_type != CONTIG_NONE) {
4470 insert->ins_contig_index = i;
4471 break;
4472 }
4473 }
4474 insert->ins_contig = contig_type;
Tao Maca12b7c2008-08-18 17:38:52 +08004475
4476 if (insert->ins_contig != CONTIG_NONE) {
4477 struct ocfs2_extent_rec *rec =
4478 &el->l_recs[insert->ins_contig_index];
4479 unsigned int len = le16_to_cpu(rec->e_leaf_clusters) +
4480 le16_to_cpu(insert_rec->e_leaf_clusters);
4481
4482 /*
4483 * Caller might want us to limit the size of extents, don't
4484 * calculate contiguousness if we might exceed that limit.
4485 */
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004486 if (et->et_max_leaf_clusters &&
4487 (len > et->et_max_leaf_clusters))
Tao Maca12b7c2008-08-18 17:38:52 +08004488 insert->ins_contig = CONTIG_NONE;
4489 }
Mark Fashehdcd05382007-01-16 11:32:23 -08004490}
4491
4492/*
4493 * This should only be called against the righmost leaf extent list.
4494 *
4495 * ocfs2_figure_appending_type() will figure out whether we'll have to
4496 * insert at the tail of the rightmost leaf.
4497 *
Tao Mae7d4cb62008-08-18 17:38:44 +08004498 * This should also work against the root extent list for tree's with 0
4499 * depth. If we consider the root extent list to be the rightmost leaf node
Mark Fashehdcd05382007-01-16 11:32:23 -08004500 * then the logic here makes sense.
4501 */
4502static void ocfs2_figure_appending_type(struct ocfs2_insert_type *insert,
4503 struct ocfs2_extent_list *el,
4504 struct ocfs2_extent_rec *insert_rec)
4505{
4506 int i;
4507 u32 cpos = le32_to_cpu(insert_rec->e_cpos);
4508 struct ocfs2_extent_rec *rec;
4509
4510 insert->ins_appending = APPEND_NONE;
4511
Mark Fashehe48edee2007-03-07 16:46:57 -08004512 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
Mark Fashehdcd05382007-01-16 11:32:23 -08004513
4514 if (!el->l_next_free_rec)
4515 goto set_tail_append;
4516
4517 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
4518 /* Were all records empty? */
4519 if (le16_to_cpu(el->l_next_free_rec) == 1)
4520 goto set_tail_append;
4521 }
4522
4523 i = le16_to_cpu(el->l_next_free_rec) - 1;
4524 rec = &el->l_recs[i];
4525
Mark Fashehe48edee2007-03-07 16:46:57 -08004526 if (cpos >=
4527 (le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)))
Mark Fashehdcd05382007-01-16 11:32:23 -08004528 goto set_tail_append;
4529
4530 return;
4531
4532set_tail_append:
4533 insert->ins_appending = APPEND_TAIL;
4534}
4535
4536/*
4537 * Helper function called at the begining of an insert.
4538 *
4539 * This computes a few things that are commonly used in the process of
4540 * inserting into the btree:
4541 * - Whether the new extent is contiguous with an existing one.
4542 * - The current tree depth.
4543 * - Whether the insert is an appending one.
4544 * - The total # of free records in the tree.
4545 *
4546 * All of the information is stored on the ocfs2_insert_type
4547 * structure.
4548 */
Joel Becker627961b2009-02-13 03:14:38 -08004549static int ocfs2_figure_insert_type(struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004550 struct buffer_head **last_eb_bh,
4551 struct ocfs2_extent_rec *insert_rec,
Tao Maoc77534f2007-08-28 17:22:33 -07004552 int *free_records,
Mark Fashehdcd05382007-01-16 11:32:23 -08004553 struct ocfs2_insert_type *insert)
4554{
4555 int ret;
Mark Fashehdcd05382007-01-16 11:32:23 -08004556 struct ocfs2_extent_block *eb;
4557 struct ocfs2_extent_list *el;
4558 struct ocfs2_path *path = NULL;
4559 struct buffer_head *bh = NULL;
4560
Mark Fasheh328d5752007-06-18 10:48:04 -07004561 insert->ins_split = SPLIT_NONE;
4562
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004563 el = et->et_root_el;
Mark Fashehdcd05382007-01-16 11:32:23 -08004564 insert->ins_tree_depth = le16_to_cpu(el->l_tree_depth);
4565
4566 if (el->l_tree_depth) {
4567 /*
4568 * If we have tree depth, we read in the
4569 * rightmost extent block ahead of time as
4570 * ocfs2_figure_insert_type() and ocfs2_add_branch()
4571 * may want it later.
4572 */
Joel Becker3d03a302009-02-12 17:49:26 -08004573 ret = ocfs2_read_extent_block(et->et_ci,
Joel Becker5e965812008-11-13 14:49:16 -08004574 ocfs2_et_get_last_eb_blk(et),
4575 &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004576 if (ret) {
4577 mlog_exit(ret);
4578 goto out;
4579 }
4580 eb = (struct ocfs2_extent_block *) bh->b_data;
4581 el = &eb->h_list;
4582 }
4583
4584 /*
4585 * Unless we have a contiguous insert, we'll need to know if
4586 * there is room left in our allocation tree for another
4587 * extent record.
4588 *
4589 * XXX: This test is simplistic, we can search for empty
4590 * extent records too.
4591 */
Tao Maoc77534f2007-08-28 17:22:33 -07004592 *free_records = le16_to_cpu(el->l_count) -
Mark Fashehdcd05382007-01-16 11:32:23 -08004593 le16_to_cpu(el->l_next_free_rec);
4594
4595 if (!insert->ins_tree_depth) {
Joel Becker1ef61b32009-02-13 03:12:33 -08004596 ocfs2_figure_contig_type(et, insert, el, insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004597 ocfs2_figure_appending_type(insert, el, insert_rec);
4598 return 0;
4599 }
4600
Joel Beckerffdd7a52008-10-17 22:32:01 -07004601 path = ocfs2_new_path_from_et(et);
Mark Fashehdcd05382007-01-16 11:32:23 -08004602 if (!path) {
4603 ret = -ENOMEM;
4604 mlog_errno(ret);
4605 goto out;
4606 }
4607
4608 /*
4609 * In the case that we're inserting past what the tree
4610 * currently accounts for, ocfs2_find_path() will return for
4611 * us the rightmost tree path. This is accounted for below in
4612 * the appending code.
4613 */
Joel Beckerfacdb772009-02-12 18:08:48 -08004614 ret = ocfs2_find_path(et->et_ci, path, le32_to_cpu(insert_rec->e_cpos));
Mark Fashehdcd05382007-01-16 11:32:23 -08004615 if (ret) {
4616 mlog_errno(ret);
4617 goto out;
4618 }
4619
4620 el = path_leaf_el(path);
4621
4622 /*
4623 * Now that we have the path, there's two things we want to determine:
4624 * 1) Contiguousness (also set contig_index if this is so)
4625 *
4626 * 2) Are we doing an append? We can trivially break this up
4627 * into two types of appends: simple record append, or a
4628 * rotate inside the tail leaf.
4629 */
Joel Becker1ef61b32009-02-13 03:12:33 -08004630 ocfs2_figure_contig_type(et, insert, el, insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004631
4632 /*
4633 * The insert code isn't quite ready to deal with all cases of
4634 * left contiguousness. Specifically, if it's an insert into
4635 * the 1st record in a leaf, it will require the adjustment of
Mark Fashehe48edee2007-03-07 16:46:57 -08004636 * cluster count on the last record of the path directly to it's
Mark Fashehdcd05382007-01-16 11:32:23 -08004637 * left. For now, just catch that case and fool the layers
4638 * above us. This works just fine for tree_depth == 0, which
4639 * is why we allow that above.
4640 */
4641 if (insert->ins_contig == CONTIG_LEFT &&
4642 insert->ins_contig_index == 0)
4643 insert->ins_contig = CONTIG_NONE;
4644
4645 /*
4646 * Ok, so we can simply compare against last_eb to figure out
4647 * whether the path doesn't exist. This will only happen in
4648 * the case that we're doing a tail append, so maybe we can
4649 * take advantage of that information somehow.
4650 */
Joel Becker35dc0aa2008-08-20 16:25:06 -07004651 if (ocfs2_et_get_last_eb_blk(et) ==
Tao Mae7d4cb62008-08-18 17:38:44 +08004652 path_leaf_bh(path)->b_blocknr) {
Mark Fashehdcd05382007-01-16 11:32:23 -08004653 /*
4654 * Ok, ocfs2_find_path() returned us the rightmost
4655 * tree path. This might be an appending insert. There are
4656 * two cases:
4657 * 1) We're doing a true append at the tail:
4658 * -This might even be off the end of the leaf
4659 * 2) We're "appending" by rotating in the tail
4660 */
4661 ocfs2_figure_appending_type(insert, el, insert_rec);
4662 }
4663
4664out:
4665 ocfs2_free_path(path);
4666
4667 if (ret == 0)
4668 *last_eb_bh = bh;
4669 else
4670 brelse(bh);
4671 return ret;
4672}
4673
4674/*
Joel Beckercc79d8c2009-02-13 03:24:43 -08004675 * Insert an extent into a btree.
Mark Fashehdcd05382007-01-16 11:32:23 -08004676 *
Joel Beckercc79d8c2009-02-13 03:24:43 -08004677 * The caller needs to update the owning btree's cluster count.
Mark Fashehdcd05382007-01-16 11:32:23 -08004678 */
Joel Beckercc79d8c2009-02-13 03:24:43 -08004679int ocfs2_insert_extent(handle_t *handle,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004680 struct ocfs2_extent_tree *et,
4681 u32 cpos,
4682 u64 start_blk,
4683 u32 new_clusters,
4684 u8 flags,
4685 struct ocfs2_alloc_context *meta_ac)
Mark Fashehccd979b2005-12-15 14:31:24 -08004686{
Mark Fashehc3afcbb2007-05-29 14:28:51 -07004687 int status;
Tao Maoc77534f2007-08-28 17:22:33 -07004688 int uninitialized_var(free_records);
Mark Fashehccd979b2005-12-15 14:31:24 -08004689 struct buffer_head *last_eb_bh = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -08004690 struct ocfs2_insert_type insert = {0, };
4691 struct ocfs2_extent_rec rec;
Mark Fashehccd979b2005-12-15 14:31:24 -08004692
Joel Beckercc79d8c2009-02-13 03:24:43 -08004693 mlog(0, "add %u clusters at position %u to owner %llu\n",
4694 new_clusters, cpos,
4695 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci));
Mark Fashehccd979b2005-12-15 14:31:24 -08004696
Mark Fashehe48edee2007-03-07 16:46:57 -08004697 memset(&rec, 0, sizeof(rec));
Mark Fashehdcd05382007-01-16 11:32:23 -08004698 rec.e_cpos = cpu_to_le32(cpos);
4699 rec.e_blkno = cpu_to_le64(start_blk);
Mark Fashehe48edee2007-03-07 16:46:57 -08004700 rec.e_leaf_clusters = cpu_to_le16(new_clusters);
Mark Fasheh2ae99a62007-03-09 16:43:28 -08004701 rec.e_flags = flags;
Joel Becker6136ca52009-02-12 19:32:43 -08004702 status = ocfs2_et_insert_check(et, &rec);
Joel Becker1e61ee72008-08-20 18:32:45 -07004703 if (status) {
4704 mlog_errno(status);
4705 goto bail;
4706 }
Mark Fashehccd979b2005-12-15 14:31:24 -08004707
Joel Becker627961b2009-02-13 03:14:38 -08004708 status = ocfs2_figure_insert_type(et, &last_eb_bh, &rec,
Tao Maoc77534f2007-08-28 17:22:33 -07004709 &free_records, &insert);
Mark Fashehdcd05382007-01-16 11:32:23 -08004710 if (status < 0) {
4711 mlog_errno(status);
4712 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -08004713 }
4714
Mark Fashehdcd05382007-01-16 11:32:23 -08004715 mlog(0, "Insert.appending: %u, Insert.Contig: %u, "
4716 "Insert.contig_index: %d, Insert.free_records: %d, "
4717 "Insert.tree_depth: %d\n",
4718 insert.ins_appending, insert.ins_contig, insert.ins_contig_index,
Tao Maoc77534f2007-08-28 17:22:33 -07004719 free_records, insert.ins_tree_depth);
Mark Fashehccd979b2005-12-15 14:31:24 -08004720
Tao Maoc77534f2007-08-28 17:22:33 -07004721 if (insert.ins_contig == CONTIG_NONE && free_records == 0) {
Joel Beckerd401dc12009-02-13 02:24:10 -08004722 status = ocfs2_grow_tree(handle, et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004723 &insert.ins_tree_depth, &last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07004724 meta_ac);
4725 if (status) {
Mark Fashehccd979b2005-12-15 14:31:24 -08004726 mlog_errno(status);
4727 goto bail;
4728 }
Mark Fashehccd979b2005-12-15 14:31:24 -08004729 }
4730
Mark Fashehdcd05382007-01-16 11:32:23 -08004731 /* Finally, we can add clusters. This might rotate the tree for us. */
Joel Becker3505bec2009-02-13 02:57:58 -08004732 status = ocfs2_do_insert_extent(handle, et, &rec, &insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08004733 if (status < 0)
4734 mlog_errno(status);
Joel Becker92ba4702009-02-13 03:18:34 -08004735 else
4736 ocfs2_et_extent_map_insert(et, &rec);
Mark Fashehccd979b2005-12-15 14:31:24 -08004737
4738bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07004739 brelse(last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08004740
Tao Maf56654c2008-08-18 17:38:48 +08004741 mlog_exit(status);
4742 return status;
4743}
4744
Tao Ma0eb8d472008-08-18 17:38:45 +08004745/*
4746 * Allcate and add clusters into the extent b-tree.
4747 * The new clusters(clusters_to_add) will be inserted at logical_offset.
Joel Beckerf99b9b72008-08-20 19:36:33 -07004748 * The extent b-tree's root is specified by et, and
Tao Ma0eb8d472008-08-18 17:38:45 +08004749 * it is not limited to the file storage. Any extent tree can use this
4750 * function if it implements the proper ocfs2_extent_tree.
4751 */
Joel Beckercbee7e12009-02-13 03:34:15 -08004752int ocfs2_add_clusters_in_btree(handle_t *handle,
4753 struct ocfs2_extent_tree *et,
Tao Ma0eb8d472008-08-18 17:38:45 +08004754 u32 *logical_offset,
4755 u32 clusters_to_add,
4756 int mark_unwritten,
Tao Ma0eb8d472008-08-18 17:38:45 +08004757 struct ocfs2_alloc_context *data_ac,
4758 struct ocfs2_alloc_context *meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004759 enum ocfs2_alloc_restarted *reason_ret)
Tao Ma0eb8d472008-08-18 17:38:45 +08004760{
4761 int status = 0;
4762 int free_extents;
4763 enum ocfs2_alloc_restarted reason = RESTART_NONE;
4764 u32 bit_off, num_bits;
4765 u64 block;
4766 u8 flags = 0;
Joel Beckercbee7e12009-02-13 03:34:15 -08004767 struct ocfs2_super *osb =
4768 OCFS2_SB(ocfs2_metadata_cache_get_super(et->et_ci));
Tao Ma0eb8d472008-08-18 17:38:45 +08004769
4770 BUG_ON(!clusters_to_add);
4771
4772 if (mark_unwritten)
4773 flags = OCFS2_EXT_UNWRITTEN;
4774
Joel Becker3d03a302009-02-12 17:49:26 -08004775 free_extents = ocfs2_num_free_extents(osb, et);
Tao Ma0eb8d472008-08-18 17:38:45 +08004776 if (free_extents < 0) {
4777 status = free_extents;
4778 mlog_errno(status);
4779 goto leave;
4780 }
4781
4782 /* there are two cases which could cause us to EAGAIN in the
4783 * we-need-more-metadata case:
4784 * 1) we haven't reserved *any*
4785 * 2) we are so fragmented, we've needed to add metadata too
4786 * many times. */
4787 if (!free_extents && !meta_ac) {
4788 mlog(0, "we haven't reserved any metadata!\n");
4789 status = -EAGAIN;
4790 reason = RESTART_META;
4791 goto leave;
4792 } else if ((!free_extents)
4793 && (ocfs2_alloc_context_bits_left(meta_ac)
Joel Beckerf99b9b72008-08-20 19:36:33 -07004794 < ocfs2_extend_meta_needed(et->et_root_el))) {
Tao Ma0eb8d472008-08-18 17:38:45 +08004795 mlog(0, "filesystem is really fragmented...\n");
4796 status = -EAGAIN;
4797 reason = RESTART_META;
4798 goto leave;
4799 }
4800
4801 status = __ocfs2_claim_clusters(osb, handle, data_ac, 1,
4802 clusters_to_add, &bit_off, &num_bits);
4803 if (status < 0) {
4804 if (status != -ENOSPC)
4805 mlog_errno(status);
4806 goto leave;
4807 }
4808
4809 BUG_ON(num_bits > clusters_to_add);
4810
Joel Becker13723d02008-10-17 19:25:01 -07004811 /* reserve our write early -- insert_extent may update the tree root */
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08004812 status = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07004813 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma0eb8d472008-08-18 17:38:45 +08004814 if (status < 0) {
4815 mlog_errno(status);
4816 goto leave;
4817 }
4818
4819 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
Joel Beckercbee7e12009-02-13 03:34:15 -08004820 mlog(0, "Allocating %u clusters at block %u for owner %llu\n",
4821 num_bits, bit_off,
4822 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci));
Joel Beckercc79d8c2009-02-13 03:24:43 -08004823 status = ocfs2_insert_extent(handle, et, *logical_offset, block,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004824 num_bits, flags, meta_ac);
Tao Ma0eb8d472008-08-18 17:38:45 +08004825 if (status < 0) {
4826 mlog_errno(status);
4827 goto leave;
4828 }
4829
Joel Beckerec20cec2010-03-19 14:13:52 -07004830 ocfs2_journal_dirty(handle, et->et_root_bh);
Tao Ma0eb8d472008-08-18 17:38:45 +08004831
4832 clusters_to_add -= num_bits;
4833 *logical_offset += num_bits;
4834
4835 if (clusters_to_add) {
4836 mlog(0, "need to alloc once more, wanted = %u\n",
4837 clusters_to_add);
4838 status = -EAGAIN;
4839 reason = RESTART_TRANS;
4840 }
4841
4842leave:
4843 mlog_exit(status);
4844 if (reason_ret)
4845 *reason_ret = reason;
4846 return status;
4847}
4848
Mark Fasheh328d5752007-06-18 10:48:04 -07004849static void ocfs2_make_right_split_rec(struct super_block *sb,
4850 struct ocfs2_extent_rec *split_rec,
4851 u32 cpos,
4852 struct ocfs2_extent_rec *rec)
4853{
4854 u32 rec_cpos = le32_to_cpu(rec->e_cpos);
4855 u32 rec_range = rec_cpos + le16_to_cpu(rec->e_leaf_clusters);
4856
4857 memset(split_rec, 0, sizeof(struct ocfs2_extent_rec));
4858
4859 split_rec->e_cpos = cpu_to_le32(cpos);
4860 split_rec->e_leaf_clusters = cpu_to_le16(rec_range - cpos);
4861
4862 split_rec->e_blkno = rec->e_blkno;
4863 le64_add_cpu(&split_rec->e_blkno,
4864 ocfs2_clusters_to_blocks(sb, cpos - rec_cpos));
4865
4866 split_rec->e_flags = rec->e_flags;
4867}
4868
Joel Beckerd2311292009-02-13 03:43:22 -08004869static int ocfs2_split_and_insert(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08004870 struct ocfs2_extent_tree *et,
Joel Beckerd2311292009-02-13 03:43:22 -08004871 struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07004872 struct buffer_head **last_eb_bh,
4873 int split_index,
4874 struct ocfs2_extent_rec *orig_split_rec,
4875 struct ocfs2_alloc_context *meta_ac)
4876{
4877 int ret = 0, depth;
4878 unsigned int insert_range, rec_range, do_leftright = 0;
4879 struct ocfs2_extent_rec tmprec;
4880 struct ocfs2_extent_list *rightmost_el;
4881 struct ocfs2_extent_rec rec;
4882 struct ocfs2_extent_rec split_rec = *orig_split_rec;
4883 struct ocfs2_insert_type insert;
4884 struct ocfs2_extent_block *eb;
Mark Fasheh328d5752007-06-18 10:48:04 -07004885
4886leftright:
4887 /*
4888 * Store a copy of the record on the stack - it might move
4889 * around as the tree is manipulated below.
4890 */
4891 rec = path_leaf_el(path)->l_recs[split_index];
4892
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004893 rightmost_el = et->et_root_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07004894
4895 depth = le16_to_cpu(rightmost_el->l_tree_depth);
4896 if (depth) {
4897 BUG_ON(!(*last_eb_bh));
4898 eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data;
4899 rightmost_el = &eb->h_list;
4900 }
4901
4902 if (le16_to_cpu(rightmost_el->l_next_free_rec) ==
4903 le16_to_cpu(rightmost_el->l_count)) {
Joel Beckerd401dc12009-02-13 02:24:10 -08004904 ret = ocfs2_grow_tree(handle, et,
Tao Mae7d4cb62008-08-18 17:38:44 +08004905 &depth, last_eb_bh, meta_ac);
Mark Fasheh328d5752007-06-18 10:48:04 -07004906 if (ret) {
4907 mlog_errno(ret);
4908 goto out;
4909 }
Mark Fasheh328d5752007-06-18 10:48:04 -07004910 }
4911
4912 memset(&insert, 0, sizeof(struct ocfs2_insert_type));
4913 insert.ins_appending = APPEND_NONE;
4914 insert.ins_contig = CONTIG_NONE;
Mark Fasheh328d5752007-06-18 10:48:04 -07004915 insert.ins_tree_depth = depth;
4916
4917 insert_range = le32_to_cpu(split_rec.e_cpos) +
4918 le16_to_cpu(split_rec.e_leaf_clusters);
4919 rec_range = le32_to_cpu(rec.e_cpos) +
4920 le16_to_cpu(rec.e_leaf_clusters);
4921
4922 if (split_rec.e_cpos == rec.e_cpos) {
4923 insert.ins_split = SPLIT_LEFT;
4924 } else if (insert_range == rec_range) {
4925 insert.ins_split = SPLIT_RIGHT;
4926 } else {
4927 /*
4928 * Left/right split. We fake this as a right split
4929 * first and then make a second pass as a left split.
4930 */
4931 insert.ins_split = SPLIT_RIGHT;
4932
Joel Beckerd2311292009-02-13 03:43:22 -08004933 ocfs2_make_right_split_rec(ocfs2_metadata_cache_get_super(et->et_ci),
4934 &tmprec, insert_range, &rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004935
4936 split_rec = tmprec;
4937
4938 BUG_ON(do_leftright);
4939 do_leftright = 1;
4940 }
4941
Joel Becker3505bec2009-02-13 02:57:58 -08004942 ret = ocfs2_do_insert_extent(handle, et, &split_rec, &insert);
Mark Fasheh328d5752007-06-18 10:48:04 -07004943 if (ret) {
4944 mlog_errno(ret);
4945 goto out;
4946 }
4947
4948 if (do_leftright == 1) {
4949 u32 cpos;
4950 struct ocfs2_extent_list *el;
4951
4952 do_leftright++;
4953 split_rec = *orig_split_rec;
4954
4955 ocfs2_reinit_path(path, 1);
4956
4957 cpos = le32_to_cpu(split_rec.e_cpos);
Joel Beckerfacdb772009-02-12 18:08:48 -08004958 ret = ocfs2_find_path(et->et_ci, path, cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07004959 if (ret) {
4960 mlog_errno(ret);
4961 goto out;
4962 }
4963
4964 el = path_leaf_el(path);
4965 split_index = ocfs2_search_extent_list(el, cpos);
4966 goto leftright;
4967 }
4968out:
4969
4970 return ret;
4971}
4972
Joel Beckerf3868d02009-02-17 19:46:04 -08004973static int ocfs2_replace_extent_rec(handle_t *handle,
4974 struct ocfs2_extent_tree *et,
Tao Ma47be12e2009-01-09 07:32:48 +08004975 struct ocfs2_path *path,
4976 struct ocfs2_extent_list *el,
4977 int split_index,
4978 struct ocfs2_extent_rec *split_rec)
4979{
4980 int ret;
4981
Joel Beckerf3868d02009-02-17 19:46:04 -08004982 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, path,
Tao Ma47be12e2009-01-09 07:32:48 +08004983 path_num_items(path) - 1);
4984 if (ret) {
4985 mlog_errno(ret);
4986 goto out;
4987 }
4988
4989 el->l_recs[split_index] = *split_rec;
4990
4991 ocfs2_journal_dirty(handle, path_leaf_bh(path));
4992out:
4993 return ret;
4994}
4995
Mark Fasheh328d5752007-06-18 10:48:04 -07004996/*
Tao Ma555936b2009-08-18 11:22:21 +08004997 * Split part or all of the extent record at split_index in the leaf
4998 * pointed to by path. Merge with the contiguous extent record if needed.
Mark Fasheh328d5752007-06-18 10:48:04 -07004999 *
5000 * Care is taken to handle contiguousness so as to not grow the tree.
5001 *
5002 * meta_ac is not strictly necessary - we only truly need it if growth
5003 * of the tree is required. All other cases will degrade into a less
5004 * optimal tree layout.
5005 *
Tao Mae7d4cb62008-08-18 17:38:44 +08005006 * last_eb_bh should be the rightmost leaf block for any extent
5007 * btree. Since a split may grow the tree or a merge might shrink it,
5008 * the caller cannot trust the contents of that buffer after this call.
Mark Fasheh328d5752007-06-18 10:48:04 -07005009 *
5010 * This code is optimized for readability - several passes might be
5011 * made over certain portions of the tree. All of those blocks will
5012 * have been brought into cache (and pinned via the journal), so the
5013 * extra overhead is not expressed in terms of disk reads.
5014 */
Tao Mae2e9f602009-08-18 11:22:34 +08005015int ocfs2_split_extent(handle_t *handle,
5016 struct ocfs2_extent_tree *et,
5017 struct ocfs2_path *path,
5018 int split_index,
5019 struct ocfs2_extent_rec *split_rec,
5020 struct ocfs2_alloc_context *meta_ac,
5021 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fasheh328d5752007-06-18 10:48:04 -07005022{
5023 int ret = 0;
5024 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fashehe8aed342007-12-03 16:43:01 -08005025 struct buffer_head *last_eb_bh = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07005026 struct ocfs2_extent_rec *rec = &el->l_recs[split_index];
5027 struct ocfs2_merge_ctxt ctxt;
5028 struct ocfs2_extent_list *rightmost_el;
5029
Mark Fasheh328d5752007-06-18 10:48:04 -07005030 if (le32_to_cpu(rec->e_cpos) > le32_to_cpu(split_rec->e_cpos) ||
5031 ((le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)) <
5032 (le32_to_cpu(split_rec->e_cpos) + le16_to_cpu(split_rec->e_leaf_clusters)))) {
5033 ret = -EIO;
5034 mlog_errno(ret);
5035 goto out;
5036 }
5037
Joel Beckera2970292009-02-13 03:09:54 -08005038 ctxt.c_contig_type = ocfs2_figure_merge_contig_type(et, path, el,
Mark Fasheh328d5752007-06-18 10:48:04 -07005039 split_index,
5040 split_rec);
5041
5042 /*
5043 * The core merge / split code wants to know how much room is
Joel Beckera1cf0762009-02-13 03:45:49 -08005044 * left in this allocation tree, so we pass the
Mark Fasheh328d5752007-06-18 10:48:04 -07005045 * rightmost extent list.
5046 */
5047 if (path->p_tree_depth) {
5048 struct ocfs2_extent_block *eb;
Mark Fasheh328d5752007-06-18 10:48:04 -07005049
Joel Becker3d03a302009-02-12 17:49:26 -08005050 ret = ocfs2_read_extent_block(et->et_ci,
Joel Becker5e965812008-11-13 14:49:16 -08005051 ocfs2_et_get_last_eb_blk(et),
5052 &last_eb_bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07005053 if (ret) {
5054 mlog_exit(ret);
5055 goto out;
5056 }
5057
5058 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
Mark Fasheh328d5752007-06-18 10:48:04 -07005059 rightmost_el = &eb->h_list;
5060 } else
5061 rightmost_el = path_root_el(path);
5062
Mark Fasheh328d5752007-06-18 10:48:04 -07005063 if (rec->e_cpos == split_rec->e_cpos &&
5064 rec->e_leaf_clusters == split_rec->e_leaf_clusters)
5065 ctxt.c_split_covers_rec = 1;
5066 else
5067 ctxt.c_split_covers_rec = 0;
5068
5069 ctxt.c_has_empty_extent = ocfs2_is_empty_extent(&el->l_recs[0]);
5070
Mark Fasheh015452b2007-09-12 10:21:22 -07005071 mlog(0, "index: %d, contig: %u, has_empty: %u, split_covers: %u\n",
5072 split_index, ctxt.c_contig_type, ctxt.c_has_empty_extent,
5073 ctxt.c_split_covers_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07005074
5075 if (ctxt.c_contig_type == CONTIG_NONE) {
5076 if (ctxt.c_split_covers_rec)
Joel Beckerf3868d02009-02-17 19:46:04 -08005077 ret = ocfs2_replace_extent_rec(handle, et, path, el,
Tao Ma47be12e2009-01-09 07:32:48 +08005078 split_index, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07005079 else
Joel Beckerd2311292009-02-13 03:43:22 -08005080 ret = ocfs2_split_and_insert(handle, et, path,
Mark Fasheh328d5752007-06-18 10:48:04 -07005081 &last_eb_bh, split_index,
5082 split_rec, meta_ac);
5083 if (ret)
5084 mlog_errno(ret);
5085 } else {
Joel Beckerc495dd22009-02-13 02:19:11 -08005086 ret = ocfs2_try_to_merge_extent(handle, et, path,
Mark Fasheh328d5752007-06-18 10:48:04 -07005087 split_index, split_rec,
Joel Beckerc495dd22009-02-13 02:19:11 -08005088 dealloc, &ctxt);
Mark Fasheh328d5752007-06-18 10:48:04 -07005089 if (ret)
5090 mlog_errno(ret);
5091 }
5092
Mark Fasheh328d5752007-06-18 10:48:04 -07005093out:
5094 brelse(last_eb_bh);
5095 return ret;
5096}
5097
5098/*
Tao Ma555936b2009-08-18 11:22:21 +08005099 * Change the flags of the already-existing extent at cpos for len clusters.
5100 *
5101 * new_flags: the flags we want to set.
5102 * clear_flags: the flags we want to clear.
5103 * phys: the new physical offset we want this new extent starts from.
Mark Fasheh328d5752007-06-18 10:48:04 -07005104 *
5105 * If the existing extent is larger than the request, initiate a
5106 * split. An attempt will be made at merging with adjacent extents.
5107 *
5108 * The caller is responsible for passing down meta_ac if we'll need it.
5109 */
Tao Ma1aa75fe2009-08-18 11:28:39 +08005110int ocfs2_change_extent_flag(handle_t *handle,
5111 struct ocfs2_extent_tree *et,
5112 u32 cpos, u32 len, u32 phys,
5113 struct ocfs2_alloc_context *meta_ac,
5114 struct ocfs2_cached_dealloc_ctxt *dealloc,
5115 int new_flags, int clear_flags)
Mark Fasheh328d5752007-06-18 10:48:04 -07005116{
5117 int ret, index;
Tao Ma555936b2009-08-18 11:22:21 +08005118 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
5119 u64 start_blkno = ocfs2_clusters_to_blocks(sb, phys);
Mark Fasheh328d5752007-06-18 10:48:04 -07005120 struct ocfs2_extent_rec split_rec;
5121 struct ocfs2_path *left_path = NULL;
5122 struct ocfs2_extent_list *el;
Tao Ma555936b2009-08-18 11:22:21 +08005123 struct ocfs2_extent_rec *rec;
Mark Fasheh328d5752007-06-18 10:48:04 -07005124
Joel Beckerffdd7a52008-10-17 22:32:01 -07005125 left_path = ocfs2_new_path_from_et(et);
Mark Fasheh328d5752007-06-18 10:48:04 -07005126 if (!left_path) {
5127 ret = -ENOMEM;
5128 mlog_errno(ret);
5129 goto out;
5130 }
5131
Joel Beckerfacdb772009-02-12 18:08:48 -08005132 ret = ocfs2_find_path(et->et_ci, left_path, cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07005133 if (ret) {
5134 mlog_errno(ret);
5135 goto out;
5136 }
5137 el = path_leaf_el(left_path);
5138
5139 index = ocfs2_search_extent_list(el, cpos);
5140 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
Tao Ma555936b2009-08-18 11:22:21 +08005141 ocfs2_error(sb,
5142 "Owner %llu has an extent at cpos %u which can no "
Mark Fasheh328d5752007-06-18 10:48:04 -07005143 "longer be found.\n",
Tao Ma555936b2009-08-18 11:22:21 +08005144 (unsigned long long)
5145 ocfs2_metadata_cache_owner(et->et_ci), cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07005146 ret = -EROFS;
5147 goto out;
5148 }
5149
Tao Ma555936b2009-08-18 11:22:21 +08005150 ret = -EIO;
5151 rec = &el->l_recs[index];
5152 if (new_flags && (rec->e_flags & new_flags)) {
5153 mlog(ML_ERROR, "Owner %llu tried to set %d flags on an "
5154 "extent that already had them",
5155 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5156 new_flags);
5157 goto out;
5158 }
5159
5160 if (clear_flags && !(rec->e_flags & clear_flags)) {
5161 mlog(ML_ERROR, "Owner %llu tried to clear %d flags on an "
5162 "extent that didn't have them",
5163 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5164 clear_flags);
5165 goto out;
5166 }
5167
Mark Fasheh328d5752007-06-18 10:48:04 -07005168 memset(&split_rec, 0, sizeof(struct ocfs2_extent_rec));
5169 split_rec.e_cpos = cpu_to_le32(cpos);
5170 split_rec.e_leaf_clusters = cpu_to_le16(len);
5171 split_rec.e_blkno = cpu_to_le64(start_blkno);
Tao Ma555936b2009-08-18 11:22:21 +08005172 split_rec.e_flags = rec->e_flags;
5173 if (new_flags)
5174 split_rec.e_flags |= new_flags;
5175 if (clear_flags)
5176 split_rec.e_flags &= ~clear_flags;
Mark Fasheh328d5752007-06-18 10:48:04 -07005177
Tao Mae2e9f602009-08-18 11:22:34 +08005178 ret = ocfs2_split_extent(handle, et, left_path,
5179 index, &split_rec, meta_ac,
5180 dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07005181 if (ret)
5182 mlog_errno(ret);
5183
5184out:
5185 ocfs2_free_path(left_path);
5186 return ret;
Tao Ma555936b2009-08-18 11:22:21 +08005187
5188}
5189
5190/*
5191 * Mark the already-existing extent at cpos as written for len clusters.
5192 * This removes the unwritten extent flag.
5193 *
5194 * If the existing extent is larger than the request, initiate a
5195 * split. An attempt will be made at merging with adjacent extents.
5196 *
5197 * The caller is responsible for passing down meta_ac if we'll need it.
5198 */
5199int ocfs2_mark_extent_written(struct inode *inode,
5200 struct ocfs2_extent_tree *et,
5201 handle_t *handle, u32 cpos, u32 len, u32 phys,
5202 struct ocfs2_alloc_context *meta_ac,
5203 struct ocfs2_cached_dealloc_ctxt *dealloc)
5204{
5205 int ret;
5206
5207 mlog(0, "Inode %lu cpos %u, len %u, phys clusters %u\n",
5208 inode->i_ino, cpos, len, phys);
5209
5210 if (!ocfs2_writes_unwritten_extents(OCFS2_SB(inode->i_sb))) {
5211 ocfs2_error(inode->i_sb, "Inode %llu has unwritten extents "
5212 "that are being written to, but the feature bit "
5213 "is not set in the super block.",
5214 (unsigned long long)OCFS2_I(inode)->ip_blkno);
5215 ret = -EROFS;
5216 goto out;
5217 }
5218
5219 /*
5220 * XXX: This should be fixed up so that we just re-insert the
5221 * next extent records.
5222 */
5223 ocfs2_et_extent_map_truncate(et, 0);
5224
5225 ret = ocfs2_change_extent_flag(handle, et, cpos,
5226 len, phys, meta_ac, dealloc,
5227 0, OCFS2_EXT_UNWRITTEN);
5228 if (ret)
5229 mlog_errno(ret);
5230
5231out:
5232 return ret;
Mark Fasheh328d5752007-06-18 10:48:04 -07005233}
5234
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005235static int ocfs2_split_tree(handle_t *handle, struct ocfs2_extent_tree *et,
5236 struct ocfs2_path *path,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005237 int index, u32 new_range,
5238 struct ocfs2_alloc_context *meta_ac)
5239{
5240 int ret, depth, credits = handle->h_buffer_credits;
Mark Fashehd0c7d702007-07-03 13:27:22 -07005241 struct buffer_head *last_eb_bh = NULL;
5242 struct ocfs2_extent_block *eb;
5243 struct ocfs2_extent_list *rightmost_el, *el;
5244 struct ocfs2_extent_rec split_rec;
5245 struct ocfs2_extent_rec *rec;
5246 struct ocfs2_insert_type insert;
5247
5248 /*
5249 * Setup the record to split before we grow the tree.
5250 */
5251 el = path_leaf_el(path);
5252 rec = &el->l_recs[index];
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005253 ocfs2_make_right_split_rec(ocfs2_metadata_cache_get_super(et->et_ci),
5254 &split_rec, new_range, rec);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005255
5256 depth = path->p_tree_depth;
5257 if (depth > 0) {
Joel Becker3d03a302009-02-12 17:49:26 -08005258 ret = ocfs2_read_extent_block(et->et_ci,
Joel Becker5e965812008-11-13 14:49:16 -08005259 ocfs2_et_get_last_eb_blk(et),
5260 &last_eb_bh);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005261 if (ret < 0) {
5262 mlog_errno(ret);
5263 goto out;
5264 }
5265
5266 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
5267 rightmost_el = &eb->h_list;
5268 } else
5269 rightmost_el = path_leaf_el(path);
5270
Tao Ma811f9332008-08-18 17:38:43 +08005271 credits += path->p_tree_depth +
Joel Beckerce1d9ea2008-08-20 16:30:07 -07005272 ocfs2_extend_meta_needed(et->et_root_el);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005273 ret = ocfs2_extend_trans(handle, credits);
5274 if (ret) {
5275 mlog_errno(ret);
5276 goto out;
5277 }
5278
5279 if (le16_to_cpu(rightmost_el->l_next_free_rec) ==
5280 le16_to_cpu(rightmost_el->l_count)) {
Joel Beckerd401dc12009-02-13 02:24:10 -08005281 ret = ocfs2_grow_tree(handle, et, &depth, &last_eb_bh,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005282 meta_ac);
5283 if (ret) {
5284 mlog_errno(ret);
5285 goto out;
5286 }
Mark Fashehd0c7d702007-07-03 13:27:22 -07005287 }
5288
5289 memset(&insert, 0, sizeof(struct ocfs2_insert_type));
5290 insert.ins_appending = APPEND_NONE;
5291 insert.ins_contig = CONTIG_NONE;
5292 insert.ins_split = SPLIT_RIGHT;
Mark Fashehd0c7d702007-07-03 13:27:22 -07005293 insert.ins_tree_depth = depth;
5294
Joel Becker3505bec2009-02-13 02:57:58 -08005295 ret = ocfs2_do_insert_extent(handle, et, &split_rec, &insert);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005296 if (ret)
5297 mlog_errno(ret);
5298
5299out:
5300 brelse(last_eb_bh);
5301 return ret;
5302}
5303
Joel Becker043beeb2009-02-13 02:42:30 -08005304static int ocfs2_truncate_rec(handle_t *handle,
5305 struct ocfs2_extent_tree *et,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005306 struct ocfs2_path *path, int index,
5307 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Becker043beeb2009-02-13 02:42:30 -08005308 u32 cpos, u32 len)
Mark Fashehd0c7d702007-07-03 13:27:22 -07005309{
5310 int ret;
5311 u32 left_cpos, rec_range, trunc_range;
5312 int wants_rotate = 0, is_rightmost_tree_rec = 0;
Joel Becker043beeb2009-02-13 02:42:30 -08005313 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005314 struct ocfs2_path *left_path = NULL;
5315 struct ocfs2_extent_list *el = path_leaf_el(path);
5316 struct ocfs2_extent_rec *rec;
5317 struct ocfs2_extent_block *eb;
5318
5319 if (ocfs2_is_empty_extent(&el->l_recs[0]) && index > 0) {
Joel Becker70f18c02009-02-13 02:09:31 -08005320 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005321 if (ret) {
5322 mlog_errno(ret);
5323 goto out;
5324 }
5325
5326 index--;
5327 }
5328
5329 if (index == (le16_to_cpu(el->l_next_free_rec) - 1) &&
5330 path->p_tree_depth) {
5331 /*
5332 * Check whether this is the rightmost tree record. If
5333 * we remove all of this record or part of its right
5334 * edge then an update of the record lengths above it
5335 * will be required.
5336 */
5337 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
5338 if (eb->h_next_leaf_blk == 0)
5339 is_rightmost_tree_rec = 1;
5340 }
5341
5342 rec = &el->l_recs[index];
5343 if (index == 0 && path->p_tree_depth &&
5344 le32_to_cpu(rec->e_cpos) == cpos) {
5345 /*
5346 * Changing the leftmost offset (via partial or whole
5347 * record truncate) of an interior (or rightmost) path
5348 * means we have to update the subtree that is formed
5349 * by this leaf and the one to it's left.
5350 *
5351 * There are two cases we can skip:
Joel Becker043beeb2009-02-13 02:42:30 -08005352 * 1) Path is the leftmost one in our btree.
Mark Fashehd0c7d702007-07-03 13:27:22 -07005353 * 2) The leaf is rightmost and will be empty after
5354 * we remove the extent record - the rotate code
5355 * knows how to update the newly formed edge.
5356 */
5357
Joel Becker043beeb2009-02-13 02:42:30 -08005358 ret = ocfs2_find_cpos_for_left_leaf(sb, path, &left_cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005359 if (ret) {
5360 mlog_errno(ret);
5361 goto out;
5362 }
5363
5364 if (left_cpos && le16_to_cpu(el->l_next_free_rec) > 1) {
Joel Beckerffdd7a52008-10-17 22:32:01 -07005365 left_path = ocfs2_new_path_from_path(path);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005366 if (!left_path) {
5367 ret = -ENOMEM;
5368 mlog_errno(ret);
5369 goto out;
5370 }
5371
Joel Beckerfacdb772009-02-12 18:08:48 -08005372 ret = ocfs2_find_path(et->et_ci, left_path,
5373 left_cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005374 if (ret) {
5375 mlog_errno(ret);
5376 goto out;
5377 }
5378 }
5379 }
5380
5381 ret = ocfs2_extend_rotate_transaction(handle, 0,
5382 handle->h_buffer_credits,
5383 path);
5384 if (ret) {
5385 mlog_errno(ret);
5386 goto out;
5387 }
5388
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08005389 ret = ocfs2_journal_access_path(et->et_ci, handle, path);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005390 if (ret) {
5391 mlog_errno(ret);
5392 goto out;
5393 }
5394
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08005395 ret = ocfs2_journal_access_path(et->et_ci, handle, left_path);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005396 if (ret) {
5397 mlog_errno(ret);
5398 goto out;
5399 }
5400
5401 rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
5402 trunc_range = cpos + len;
5403
5404 if (le32_to_cpu(rec->e_cpos) == cpos && rec_range == trunc_range) {
5405 int next_free;
5406
5407 memset(rec, 0, sizeof(*rec));
5408 ocfs2_cleanup_merge(el, index);
5409 wants_rotate = 1;
5410
5411 next_free = le16_to_cpu(el->l_next_free_rec);
5412 if (is_rightmost_tree_rec && next_free > 1) {
5413 /*
5414 * We skip the edge update if this path will
5415 * be deleted by the rotate code.
5416 */
5417 rec = &el->l_recs[next_free - 1];
Joel Beckerd401dc12009-02-13 02:24:10 -08005418 ocfs2_adjust_rightmost_records(handle, et, path,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005419 rec);
5420 }
5421 } else if (le32_to_cpu(rec->e_cpos) == cpos) {
5422 /* Remove leftmost portion of the record. */
5423 le32_add_cpu(&rec->e_cpos, len);
5424 le64_add_cpu(&rec->e_blkno, ocfs2_clusters_to_blocks(sb, len));
5425 le16_add_cpu(&rec->e_leaf_clusters, -len);
5426 } else if (rec_range == trunc_range) {
5427 /* Remove rightmost portion of the record */
5428 le16_add_cpu(&rec->e_leaf_clusters, -len);
5429 if (is_rightmost_tree_rec)
Joel Beckerd401dc12009-02-13 02:24:10 -08005430 ocfs2_adjust_rightmost_records(handle, et, path, rec);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005431 } else {
5432 /* Caller should have trapped this. */
Joel Becker043beeb2009-02-13 02:42:30 -08005433 mlog(ML_ERROR, "Owner %llu: Invalid record truncate: (%u, %u) "
5434 "(%u, %u)\n",
5435 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehd0c7d702007-07-03 13:27:22 -07005436 le32_to_cpu(rec->e_cpos),
5437 le16_to_cpu(rec->e_leaf_clusters), cpos, len);
5438 BUG();
5439 }
5440
5441 if (left_path) {
5442 int subtree_index;
5443
Joel Becker7dc02802009-02-12 19:20:13 -08005444 subtree_index = ocfs2_find_subtree_root(et, left_path, path);
Joel Becker4619c732009-02-12 19:02:36 -08005445 ocfs2_complete_edge_insert(handle, left_path, path,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005446 subtree_index);
5447 }
5448
5449 ocfs2_journal_dirty(handle, path_leaf_bh(path));
5450
Joel Becker70f18c02009-02-13 02:09:31 -08005451 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005452 if (ret) {
5453 mlog_errno(ret);
5454 goto out;
5455 }
5456
5457out:
5458 ocfs2_free_path(left_path);
5459 return ret;
5460}
5461
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005462int ocfs2_remove_extent(handle_t *handle,
Joel Beckerf99b9b72008-08-20 19:36:33 -07005463 struct ocfs2_extent_tree *et,
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005464 u32 cpos, u32 len,
Mark Fasheh063c4562007-07-03 13:34:11 -07005465 struct ocfs2_alloc_context *meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -07005466 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fashehd0c7d702007-07-03 13:27:22 -07005467{
5468 int ret, index;
5469 u32 rec_range, trunc_range;
5470 struct ocfs2_extent_rec *rec;
5471 struct ocfs2_extent_list *el;
Tao Mae7d4cb62008-08-18 17:38:44 +08005472 struct ocfs2_path *path = NULL;
Mark Fashehd0c7d702007-07-03 13:27:22 -07005473
Joel Becker4c911ee2009-02-13 02:50:12 -08005474 /*
5475 * XXX: Why are we truncating to 0 instead of wherever this
5476 * affects us?
5477 */
5478 ocfs2_et_extent_map_truncate(et, 0);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005479
Joel Beckerffdd7a52008-10-17 22:32:01 -07005480 path = ocfs2_new_path_from_et(et);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005481 if (!path) {
5482 ret = -ENOMEM;
5483 mlog_errno(ret);
5484 goto out;
5485 }
5486
Joel Beckerfacdb772009-02-12 18:08:48 -08005487 ret = ocfs2_find_path(et->et_ci, path, cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005488 if (ret) {
5489 mlog_errno(ret);
5490 goto out;
5491 }
5492
5493 el = path_leaf_el(path);
5494 index = ocfs2_search_extent_list(el, cpos);
5495 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005496 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
5497 "Owner %llu has an extent at cpos %u which can no "
Mark Fashehd0c7d702007-07-03 13:27:22 -07005498 "longer be found.\n",
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005499 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5500 cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005501 ret = -EROFS;
5502 goto out;
5503 }
5504
5505 /*
5506 * We have 3 cases of extent removal:
5507 * 1) Range covers the entire extent rec
5508 * 2) Range begins or ends on one edge of the extent rec
5509 * 3) Range is in the middle of the extent rec (no shared edges)
5510 *
5511 * For case 1 we remove the extent rec and left rotate to
5512 * fill the hole.
5513 *
5514 * For case 2 we just shrink the existing extent rec, with a
5515 * tree update if the shrinking edge is also the edge of an
5516 * extent block.
5517 *
5518 * For case 3 we do a right split to turn the extent rec into
5519 * something case 2 can handle.
5520 */
5521 rec = &el->l_recs[index];
5522 rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
5523 trunc_range = cpos + len;
5524
5525 BUG_ON(cpos < le32_to_cpu(rec->e_cpos) || trunc_range > rec_range);
5526
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005527 mlog(0, "Owner %llu, remove (cpos %u, len %u). Existing index %d "
Mark Fashehd0c7d702007-07-03 13:27:22 -07005528 "(cpos %u, len %u)\n",
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005529 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5530 cpos, len, index,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005531 le32_to_cpu(rec->e_cpos), ocfs2_rec_clusters(el, rec));
5532
5533 if (le32_to_cpu(rec->e_cpos) == cpos || rec_range == trunc_range) {
Joel Becker043beeb2009-02-13 02:42:30 -08005534 ret = ocfs2_truncate_rec(handle, et, path, index, dealloc,
5535 cpos, len);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005536 if (ret) {
5537 mlog_errno(ret);
5538 goto out;
5539 }
5540 } else {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005541 ret = ocfs2_split_tree(handle, et, path, index,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005542 trunc_range, meta_ac);
5543 if (ret) {
5544 mlog_errno(ret);
5545 goto out;
5546 }
5547
5548 /*
5549 * The split could have manipulated the tree enough to
5550 * move the record location, so we have to look for it again.
5551 */
5552 ocfs2_reinit_path(path, 1);
5553
Joel Beckerfacdb772009-02-12 18:08:48 -08005554 ret = ocfs2_find_path(et->et_ci, path, cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005555 if (ret) {
5556 mlog_errno(ret);
5557 goto out;
5558 }
5559
5560 el = path_leaf_el(path);
5561 index = ocfs2_search_extent_list(el, cpos);
5562 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005563 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
5564 "Owner %llu: split at cpos %u lost record.",
5565 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehd0c7d702007-07-03 13:27:22 -07005566 cpos);
5567 ret = -EROFS;
5568 goto out;
5569 }
5570
5571 /*
5572 * Double check our values here. If anything is fishy,
5573 * it's easier to catch it at the top level.
5574 */
5575 rec = &el->l_recs[index];
5576 rec_range = le32_to_cpu(rec->e_cpos) +
5577 ocfs2_rec_clusters(el, rec);
5578 if (rec_range != trunc_range) {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005579 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
5580 "Owner %llu: error after split at cpos %u"
Mark Fashehd0c7d702007-07-03 13:27:22 -07005581 "trunc len %u, existing record is (%u,%u)",
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005582 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehd0c7d702007-07-03 13:27:22 -07005583 cpos, len, le32_to_cpu(rec->e_cpos),
5584 ocfs2_rec_clusters(el, rec));
5585 ret = -EROFS;
5586 goto out;
5587 }
5588
Joel Becker043beeb2009-02-13 02:42:30 -08005589 ret = ocfs2_truncate_rec(handle, et, path, index, dealloc,
5590 cpos, len);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005591 if (ret) {
5592 mlog_errno(ret);
5593 goto out;
5594 }
5595 }
5596
5597out:
5598 ocfs2_free_path(path);
5599 return ret;
5600}
5601
Mark Fashehfecc0112008-11-12 15:16:38 -08005602int ocfs2_remove_btree_range(struct inode *inode,
5603 struct ocfs2_extent_tree *et,
5604 u32 cpos, u32 phys_cpos, u32 len,
5605 struct ocfs2_cached_dealloc_ctxt *dealloc)
5606{
5607 int ret;
5608 u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
5609 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5610 struct inode *tl_inode = osb->osb_tl_inode;
5611 handle_t *handle;
5612 struct ocfs2_alloc_context *meta_ac = NULL;
5613
5614 ret = ocfs2_lock_allocators(inode, et, 0, 1, NULL, &meta_ac);
5615 if (ret) {
5616 mlog_errno(ret);
5617 return ret;
5618 }
5619
5620 mutex_lock(&tl_inode->i_mutex);
5621
5622 if (ocfs2_truncate_log_needs_flush(osb)) {
5623 ret = __ocfs2_flush_truncate_log(osb);
5624 if (ret < 0) {
5625 mlog_errno(ret);
5626 goto out;
5627 }
5628 }
5629
Jan Karaa90714c2008-10-09 19:38:40 +02005630 handle = ocfs2_start_trans(osb, ocfs2_remove_extent_credits(osb->sb));
Mark Fashehfecc0112008-11-12 15:16:38 -08005631 if (IS_ERR(handle)) {
5632 ret = PTR_ERR(handle);
5633 mlog_errno(ret);
5634 goto out;
5635 }
5636
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08005637 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07005638 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehfecc0112008-11-12 15:16:38 -08005639 if (ret) {
5640 mlog_errno(ret);
5641 goto out;
5642 }
5643
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005644 dquot_free_space_nodirty(inode,
Mark Fashehfd4ef232009-01-29 15:06:21 -08005645 ocfs2_clusters_to_bytes(inode->i_sb, len));
5646
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005647 ret = ocfs2_remove_extent(handle, et, cpos, len, meta_ac, dealloc);
Mark Fashehfecc0112008-11-12 15:16:38 -08005648 if (ret) {
5649 mlog_errno(ret);
5650 goto out_commit;
5651 }
5652
Joel Becker6136ca52009-02-12 19:32:43 -08005653 ocfs2_et_update_clusters(et, -len);
Mark Fashehfecc0112008-11-12 15:16:38 -08005654
Joel Beckerec20cec2010-03-19 14:13:52 -07005655 ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehfecc0112008-11-12 15:16:38 -08005656
5657 ret = ocfs2_truncate_log_append(osb, handle, phys_blkno, len);
5658 if (ret)
5659 mlog_errno(ret);
5660
5661out_commit:
5662 ocfs2_commit_trans(osb, handle);
5663out:
5664 mutex_unlock(&tl_inode->i_mutex);
5665
5666 if (meta_ac)
5667 ocfs2_free_alloc_context(meta_ac);
5668
5669 return ret;
5670}
5671
Mark Fasheh063c4562007-07-03 13:34:11 -07005672int ocfs2_truncate_log_needs_flush(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -08005673{
5674 struct buffer_head *tl_bh = osb->osb_tl_bh;
5675 struct ocfs2_dinode *di;
5676 struct ocfs2_truncate_log *tl;
5677
5678 di = (struct ocfs2_dinode *) tl_bh->b_data;
5679 tl = &di->id2.i_dealloc;
5680
5681 mlog_bug_on_msg(le16_to_cpu(tl->tl_used) > le16_to_cpu(tl->tl_count),
5682 "slot %d, invalid truncate log parameters: used = "
5683 "%u, count = %u\n", osb->slot_num,
5684 le16_to_cpu(tl->tl_used), le16_to_cpu(tl->tl_count));
5685 return le16_to_cpu(tl->tl_used) == le16_to_cpu(tl->tl_count);
5686}
5687
5688static int ocfs2_truncate_log_can_coalesce(struct ocfs2_truncate_log *tl,
5689 unsigned int new_start)
5690{
5691 unsigned int tail_index;
5692 unsigned int current_tail;
5693
5694 /* No records, nothing to coalesce */
5695 if (!le16_to_cpu(tl->tl_used))
5696 return 0;
5697
5698 tail_index = le16_to_cpu(tl->tl_used) - 1;
5699 current_tail = le32_to_cpu(tl->tl_recs[tail_index].t_start);
5700 current_tail += le32_to_cpu(tl->tl_recs[tail_index].t_clusters);
5701
5702 return current_tail == new_start;
5703}
5704
Mark Fasheh063c4562007-07-03 13:34:11 -07005705int ocfs2_truncate_log_append(struct ocfs2_super *osb,
5706 handle_t *handle,
5707 u64 start_blk,
5708 unsigned int num_clusters)
Mark Fashehccd979b2005-12-15 14:31:24 -08005709{
5710 int status, index;
5711 unsigned int start_cluster, tl_count;
5712 struct inode *tl_inode = osb->osb_tl_inode;
5713 struct buffer_head *tl_bh = osb->osb_tl_bh;
5714 struct ocfs2_dinode *di;
5715 struct ocfs2_truncate_log *tl;
5716
Mark Fashehb06970532006-03-03 10:24:33 -08005717 mlog_entry("start_blk = %llu, num_clusters = %u\n",
5718 (unsigned long long)start_blk, num_clusters);
Mark Fashehccd979b2005-12-15 14:31:24 -08005719
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005720 BUG_ON(mutex_trylock(&tl_inode->i_mutex));
Mark Fashehccd979b2005-12-15 14:31:24 -08005721
5722 start_cluster = ocfs2_blocks_to_clusters(osb->sb, start_blk);
5723
5724 di = (struct ocfs2_dinode *) tl_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08005725
Joel Becker10995aa2008-11-13 14:49:12 -08005726 /* tl_bh is loaded from ocfs2_truncate_log_init(). It's validated
5727 * by the underlying call to ocfs2_read_inode_block(), so any
5728 * corruption is a code bug */
5729 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
5730
5731 tl = &di->id2.i_dealloc;
Mark Fashehccd979b2005-12-15 14:31:24 -08005732 tl_count = le16_to_cpu(tl->tl_count);
5733 mlog_bug_on_msg(tl_count > ocfs2_truncate_recs_per_inode(osb->sb) ||
5734 tl_count == 0,
Mark Fashehb06970532006-03-03 10:24:33 -08005735 "Truncate record count on #%llu invalid "
5736 "wanted %u, actual %u\n",
5737 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08005738 ocfs2_truncate_recs_per_inode(osb->sb),
5739 le16_to_cpu(tl->tl_count));
5740
5741 /* Caller should have known to flush before calling us. */
5742 index = le16_to_cpu(tl->tl_used);
5743 if (index >= tl_count) {
5744 status = -ENOSPC;
5745 mlog_errno(status);
5746 goto bail;
5747 }
5748
Joel Becker0cf2f762009-02-12 16:41:25 -08005749 status = ocfs2_journal_access_di(handle, INODE_CACHE(tl_inode), tl_bh,
Joel Becker13723d02008-10-17 19:25:01 -07005750 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08005751 if (status < 0) {
5752 mlog_errno(status);
5753 goto bail;
5754 }
5755
5756 mlog(0, "Log truncate of %u clusters starting at cluster %u to "
Mark Fashehb06970532006-03-03 10:24:33 -08005757 "%llu (index = %d)\n", num_clusters, start_cluster,
5758 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, index);
Mark Fashehccd979b2005-12-15 14:31:24 -08005759
5760 if (ocfs2_truncate_log_can_coalesce(tl, start_cluster)) {
5761 /*
5762 * Move index back to the record we are coalescing with.
5763 * ocfs2_truncate_log_can_coalesce() guarantees nonzero
5764 */
5765 index--;
5766
5767 num_clusters += le32_to_cpu(tl->tl_recs[index].t_clusters);
5768 mlog(0, "Coalesce with index %u (start = %u, clusters = %u)\n",
5769 index, le32_to_cpu(tl->tl_recs[index].t_start),
5770 num_clusters);
5771 } else {
5772 tl->tl_recs[index].t_start = cpu_to_le32(start_cluster);
5773 tl->tl_used = cpu_to_le16(index + 1);
5774 }
5775 tl->tl_recs[index].t_clusters = cpu_to_le32(num_clusters);
5776
Joel Beckerec20cec2010-03-19 14:13:52 -07005777 ocfs2_journal_dirty(handle, tl_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08005778
5779bail:
5780 mlog_exit(status);
5781 return status;
5782}
5783
5784static int ocfs2_replay_truncate_records(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07005785 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08005786 struct inode *data_alloc_inode,
5787 struct buffer_head *data_alloc_bh)
5788{
5789 int status = 0;
5790 int i;
5791 unsigned int num_clusters;
5792 u64 start_blk;
5793 struct ocfs2_truncate_rec rec;
5794 struct ocfs2_dinode *di;
5795 struct ocfs2_truncate_log *tl;
5796 struct inode *tl_inode = osb->osb_tl_inode;
5797 struct buffer_head *tl_bh = osb->osb_tl_bh;
5798
5799 mlog_entry_void();
5800
5801 di = (struct ocfs2_dinode *) tl_bh->b_data;
5802 tl = &di->id2.i_dealloc;
5803 i = le16_to_cpu(tl->tl_used) - 1;
5804 while (i >= 0) {
5805 /* Caller has given us at least enough credits to
5806 * update the truncate log dinode */
Joel Becker0cf2f762009-02-12 16:41:25 -08005807 status = ocfs2_journal_access_di(handle, INODE_CACHE(tl_inode), tl_bh,
Joel Becker13723d02008-10-17 19:25:01 -07005808 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08005809 if (status < 0) {
5810 mlog_errno(status);
5811 goto bail;
5812 }
5813
5814 tl->tl_used = cpu_to_le16(i);
5815
Joel Beckerec20cec2010-03-19 14:13:52 -07005816 ocfs2_journal_dirty(handle, tl_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08005817
5818 /* TODO: Perhaps we can calculate the bulk of the
5819 * credits up front rather than extending like
5820 * this. */
5821 status = ocfs2_extend_trans(handle,
5822 OCFS2_TRUNCATE_LOG_FLUSH_ONE_REC);
5823 if (status < 0) {
5824 mlog_errno(status);
5825 goto bail;
5826 }
5827
5828 rec = tl->tl_recs[i];
5829 start_blk = ocfs2_clusters_to_blocks(data_alloc_inode->i_sb,
5830 le32_to_cpu(rec.t_start));
5831 num_clusters = le32_to_cpu(rec.t_clusters);
5832
5833 /* if start_blk is not set, we ignore the record as
5834 * invalid. */
5835 if (start_blk) {
5836 mlog(0, "free record %d, start = %u, clusters = %u\n",
5837 i, le32_to_cpu(rec.t_start), num_clusters);
5838
5839 status = ocfs2_free_clusters(handle, data_alloc_inode,
5840 data_alloc_bh, start_blk,
5841 num_clusters);
5842 if (status < 0) {
5843 mlog_errno(status);
5844 goto bail;
5845 }
5846 }
5847 i--;
5848 }
5849
5850bail:
5851 mlog_exit(status);
5852 return status;
5853}
5854
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005855/* Expects you to already be holding tl_inode->i_mutex */
Mark Fasheh063c4562007-07-03 13:34:11 -07005856int __ocfs2_flush_truncate_log(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -08005857{
5858 int status;
5859 unsigned int num_to_flush;
Mark Fasheh1fabe142006-10-09 18:11:45 -07005860 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08005861 struct inode *tl_inode = osb->osb_tl_inode;
5862 struct inode *data_alloc_inode = NULL;
5863 struct buffer_head *tl_bh = osb->osb_tl_bh;
5864 struct buffer_head *data_alloc_bh = NULL;
5865 struct ocfs2_dinode *di;
5866 struct ocfs2_truncate_log *tl;
5867
5868 mlog_entry_void();
5869
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005870 BUG_ON(mutex_trylock(&tl_inode->i_mutex));
Mark Fashehccd979b2005-12-15 14:31:24 -08005871
5872 di = (struct ocfs2_dinode *) tl_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08005873
Joel Becker10995aa2008-11-13 14:49:12 -08005874 /* tl_bh is loaded from ocfs2_truncate_log_init(). It's validated
5875 * by the underlying call to ocfs2_read_inode_block(), so any
5876 * corruption is a code bug */
5877 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
5878
5879 tl = &di->id2.i_dealloc;
Mark Fashehccd979b2005-12-15 14:31:24 -08005880 num_to_flush = le16_to_cpu(tl->tl_used);
Mark Fashehb06970532006-03-03 10:24:33 -08005881 mlog(0, "Flush %u records from truncate log #%llu\n",
5882 num_to_flush, (unsigned long long)OCFS2_I(tl_inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08005883 if (!num_to_flush) {
5884 status = 0;
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005885 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08005886 }
5887
5888 data_alloc_inode = ocfs2_get_system_file_inode(osb,
5889 GLOBAL_BITMAP_SYSTEM_INODE,
5890 OCFS2_INVALID_SLOT);
5891 if (!data_alloc_inode) {
5892 status = -EINVAL;
5893 mlog(ML_ERROR, "Could not get bitmap inode!\n");
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005894 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08005895 }
5896
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005897 mutex_lock(&data_alloc_inode->i_mutex);
5898
Mark Fashehe63aecb62007-10-18 15:30:42 -07005899 status = ocfs2_inode_lock(data_alloc_inode, &data_alloc_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08005900 if (status < 0) {
5901 mlog_errno(status);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005902 goto out_mutex;
Mark Fashehccd979b2005-12-15 14:31:24 -08005903 }
5904
Mark Fasheh65eff9c2006-10-09 17:26:22 -07005905 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08005906 if (IS_ERR(handle)) {
5907 status = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08005908 mlog_errno(status);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005909 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -08005910 }
5911
5912 status = ocfs2_replay_truncate_records(osb, handle, data_alloc_inode,
5913 data_alloc_bh);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005914 if (status < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -08005915 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08005916
Mark Fasheh02dc1af2006-10-09 16:48:10 -07005917 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08005918
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005919out_unlock:
5920 brelse(data_alloc_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07005921 ocfs2_inode_unlock(data_alloc_inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08005922
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005923out_mutex:
5924 mutex_unlock(&data_alloc_inode->i_mutex);
5925 iput(data_alloc_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08005926
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005927out:
Mark Fashehccd979b2005-12-15 14:31:24 -08005928 mlog_exit(status);
5929 return status;
5930}
5931
5932int ocfs2_flush_truncate_log(struct ocfs2_super *osb)
5933{
5934 int status;
5935 struct inode *tl_inode = osb->osb_tl_inode;
5936
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005937 mutex_lock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08005938 status = __ocfs2_flush_truncate_log(osb);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005939 mutex_unlock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08005940
5941 return status;
5942}
5943
David Howellsc4028952006-11-22 14:57:56 +00005944static void ocfs2_truncate_log_worker(struct work_struct *work)
Mark Fashehccd979b2005-12-15 14:31:24 -08005945{
5946 int status;
David Howellsc4028952006-11-22 14:57:56 +00005947 struct ocfs2_super *osb =
5948 container_of(work, struct ocfs2_super,
5949 osb_truncate_log_wq.work);
Mark Fashehccd979b2005-12-15 14:31:24 -08005950
5951 mlog_entry_void();
5952
5953 status = ocfs2_flush_truncate_log(osb);
5954 if (status < 0)
5955 mlog_errno(status);
Tao Ma4d0ddb22008-03-05 16:11:46 +08005956 else
Tiger Yangb89c5422010-01-25 14:11:06 +08005957 ocfs2_init_steal_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08005958
5959 mlog_exit(status);
5960}
5961
5962#define OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL (2 * HZ)
5963void ocfs2_schedule_truncate_log_flush(struct ocfs2_super *osb,
5964 int cancel)
5965{
5966 if (osb->osb_tl_inode) {
5967 /* We want to push off log flushes while truncates are
5968 * still running. */
5969 if (cancel)
5970 cancel_delayed_work(&osb->osb_truncate_log_wq);
5971
5972 queue_delayed_work(ocfs2_wq, &osb->osb_truncate_log_wq,
5973 OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL);
5974 }
5975}
5976
5977static int ocfs2_get_truncate_log_info(struct ocfs2_super *osb,
5978 int slot_num,
5979 struct inode **tl_inode,
5980 struct buffer_head **tl_bh)
5981{
5982 int status;
5983 struct inode *inode = NULL;
5984 struct buffer_head *bh = NULL;
5985
5986 inode = ocfs2_get_system_file_inode(osb,
5987 TRUNCATE_LOG_SYSTEM_INODE,
5988 slot_num);
5989 if (!inode) {
5990 status = -EINVAL;
5991 mlog(ML_ERROR, "Could not get load truncate log inode!\n");
5992 goto bail;
5993 }
5994
Joel Beckerb657c952008-11-13 14:49:11 -08005995 status = ocfs2_read_inode_block(inode, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08005996 if (status < 0) {
5997 iput(inode);
5998 mlog_errno(status);
5999 goto bail;
6000 }
6001
6002 *tl_inode = inode;
6003 *tl_bh = bh;
6004bail:
6005 mlog_exit(status);
6006 return status;
6007}
6008
6009/* called during the 1st stage of node recovery. we stamp a clean
6010 * truncate log and pass back a copy for processing later. if the
6011 * truncate log does not require processing, a *tl_copy is set to
6012 * NULL. */
6013int ocfs2_begin_truncate_log_recovery(struct ocfs2_super *osb,
6014 int slot_num,
6015 struct ocfs2_dinode **tl_copy)
6016{
6017 int status;
6018 struct inode *tl_inode = NULL;
6019 struct buffer_head *tl_bh = NULL;
6020 struct ocfs2_dinode *di;
6021 struct ocfs2_truncate_log *tl;
6022
6023 *tl_copy = NULL;
6024
6025 mlog(0, "recover truncate log from slot %d\n", slot_num);
6026
6027 status = ocfs2_get_truncate_log_info(osb, slot_num, &tl_inode, &tl_bh);
6028 if (status < 0) {
6029 mlog_errno(status);
6030 goto bail;
6031 }
6032
6033 di = (struct ocfs2_dinode *) tl_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08006034
Joel Becker10995aa2008-11-13 14:49:12 -08006035 /* tl_bh is loaded from ocfs2_get_truncate_log_info(). It's
6036 * validated by the underlying call to ocfs2_read_inode_block(),
6037 * so any corruption is a code bug */
6038 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
6039
6040 tl = &di->id2.i_dealloc;
Mark Fashehccd979b2005-12-15 14:31:24 -08006041 if (le16_to_cpu(tl->tl_used)) {
6042 mlog(0, "We'll have %u logs to recover\n",
6043 le16_to_cpu(tl->tl_used));
6044
6045 *tl_copy = kmalloc(tl_bh->b_size, GFP_KERNEL);
6046 if (!(*tl_copy)) {
6047 status = -ENOMEM;
6048 mlog_errno(status);
6049 goto bail;
6050 }
6051
6052 /* Assuming the write-out below goes well, this copy
6053 * will be passed back to recovery for processing. */
6054 memcpy(*tl_copy, tl_bh->b_data, tl_bh->b_size);
6055
6056 /* All we need to do to clear the truncate log is set
6057 * tl_used. */
6058 tl->tl_used = 0;
6059
Joel Becker13723d02008-10-17 19:25:01 -07006060 ocfs2_compute_meta_ecc(osb->sb, tl_bh->b_data, &di->i_check);
Joel Becker8cb471e2009-02-10 20:00:41 -08006061 status = ocfs2_write_block(osb, tl_bh, INODE_CACHE(tl_inode));
Mark Fashehccd979b2005-12-15 14:31:24 -08006062 if (status < 0) {
6063 mlog_errno(status);
6064 goto bail;
6065 }
6066 }
6067
6068bail:
6069 if (tl_inode)
6070 iput(tl_inode);
Mark Fasheha81cb882008-10-07 14:25:16 -07006071 brelse(tl_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006072
6073 if (status < 0 && (*tl_copy)) {
6074 kfree(*tl_copy);
6075 *tl_copy = NULL;
6076 }
6077
6078 mlog_exit(status);
6079 return status;
6080}
6081
6082int ocfs2_complete_truncate_log_recovery(struct ocfs2_super *osb,
6083 struct ocfs2_dinode *tl_copy)
6084{
6085 int status = 0;
6086 int i;
6087 unsigned int clusters, num_recs, start_cluster;
6088 u64 start_blk;
Mark Fasheh1fabe142006-10-09 18:11:45 -07006089 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08006090 struct inode *tl_inode = osb->osb_tl_inode;
6091 struct ocfs2_truncate_log *tl;
6092
6093 mlog_entry_void();
6094
6095 if (OCFS2_I(tl_inode)->ip_blkno == le64_to_cpu(tl_copy->i_blkno)) {
6096 mlog(ML_ERROR, "Asked to recover my own truncate log!\n");
6097 return -EINVAL;
6098 }
6099
6100 tl = &tl_copy->id2.i_dealloc;
6101 num_recs = le16_to_cpu(tl->tl_used);
Mark Fashehb06970532006-03-03 10:24:33 -08006102 mlog(0, "cleanup %u records from %llu\n", num_recs,
Mark Fasheh1ca1a112007-04-27 16:01:25 -07006103 (unsigned long long)le64_to_cpu(tl_copy->i_blkno));
Mark Fashehccd979b2005-12-15 14:31:24 -08006104
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08006105 mutex_lock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08006106 for(i = 0; i < num_recs; i++) {
6107 if (ocfs2_truncate_log_needs_flush(osb)) {
6108 status = __ocfs2_flush_truncate_log(osb);
6109 if (status < 0) {
6110 mlog_errno(status);
6111 goto bail_up;
6112 }
6113 }
6114
Mark Fasheh65eff9c2006-10-09 17:26:22 -07006115 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08006116 if (IS_ERR(handle)) {
6117 status = PTR_ERR(handle);
6118 mlog_errno(status);
6119 goto bail_up;
6120 }
6121
6122 clusters = le32_to_cpu(tl->tl_recs[i].t_clusters);
6123 start_cluster = le32_to_cpu(tl->tl_recs[i].t_start);
6124 start_blk = ocfs2_clusters_to_blocks(osb->sb, start_cluster);
6125
6126 status = ocfs2_truncate_log_append(osb, handle,
6127 start_blk, clusters);
Mark Fasheh02dc1af2006-10-09 16:48:10 -07006128 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08006129 if (status < 0) {
6130 mlog_errno(status);
6131 goto bail_up;
6132 }
6133 }
6134
6135bail_up:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08006136 mutex_unlock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08006137
6138 mlog_exit(status);
6139 return status;
6140}
6141
6142void ocfs2_truncate_log_shutdown(struct ocfs2_super *osb)
6143{
6144 int status;
6145 struct inode *tl_inode = osb->osb_tl_inode;
6146
6147 mlog_entry_void();
6148
6149 if (tl_inode) {
6150 cancel_delayed_work(&osb->osb_truncate_log_wq);
6151 flush_workqueue(ocfs2_wq);
6152
6153 status = ocfs2_flush_truncate_log(osb);
6154 if (status < 0)
6155 mlog_errno(status);
6156
6157 brelse(osb->osb_tl_bh);
6158 iput(osb->osb_tl_inode);
6159 }
6160
6161 mlog_exit_void();
6162}
6163
6164int ocfs2_truncate_log_init(struct ocfs2_super *osb)
6165{
6166 int status;
6167 struct inode *tl_inode = NULL;
6168 struct buffer_head *tl_bh = NULL;
6169
6170 mlog_entry_void();
6171
6172 status = ocfs2_get_truncate_log_info(osb,
6173 osb->slot_num,
6174 &tl_inode,
6175 &tl_bh);
6176 if (status < 0)
6177 mlog_errno(status);
6178
6179 /* ocfs2_truncate_log_shutdown keys on the existence of
6180 * osb->osb_tl_inode so we don't set any of the osb variables
6181 * until we're sure all is well. */
David Howellsc4028952006-11-22 14:57:56 +00006182 INIT_DELAYED_WORK(&osb->osb_truncate_log_wq,
6183 ocfs2_truncate_log_worker);
Mark Fashehccd979b2005-12-15 14:31:24 -08006184 osb->osb_tl_bh = tl_bh;
6185 osb->osb_tl_inode = tl_inode;
6186
6187 mlog_exit(status);
6188 return status;
6189}
6190
Mark Fasheh2b604352007-06-22 15:45:27 -07006191/*
6192 * Delayed de-allocation of suballocator blocks.
6193 *
6194 * Some sets of block de-allocations might involve multiple suballocator inodes.
6195 *
6196 * The locking for this can get extremely complicated, especially when
6197 * the suballocator inodes to delete from aren't known until deep
6198 * within an unrelated codepath.
6199 *
6200 * ocfs2_extent_block structures are a good example of this - an inode
6201 * btree could have been grown by any number of nodes each allocating
6202 * out of their own suballoc inode.
6203 *
6204 * These structures allow the delay of block de-allocation until a
6205 * later time, when locking of multiple cluster inodes won't cause
6206 * deadlock.
6207 */
6208
6209/*
Tao Ma2891d292008-11-12 08:26:58 +08006210 * Describe a single bit freed from a suballocator. For the block
6211 * suballocators, it represents one block. For the global cluster
6212 * allocator, it represents some clusters and free_bit indicates
6213 * clusters number.
Mark Fasheh2b604352007-06-22 15:45:27 -07006214 */
6215struct ocfs2_cached_block_free {
6216 struct ocfs2_cached_block_free *free_next;
6217 u64 free_blk;
6218 unsigned int free_bit;
6219};
6220
6221struct ocfs2_per_slot_free_list {
6222 struct ocfs2_per_slot_free_list *f_next_suballocator;
6223 int f_inode_type;
6224 int f_slot;
6225 struct ocfs2_cached_block_free *f_first;
6226};
6227
Tao Ma2891d292008-11-12 08:26:58 +08006228static int ocfs2_free_cached_blocks(struct ocfs2_super *osb,
6229 int sysfile_type,
6230 int slot,
6231 struct ocfs2_cached_block_free *head)
Mark Fasheh2b604352007-06-22 15:45:27 -07006232{
6233 int ret;
6234 u64 bg_blkno;
6235 handle_t *handle;
6236 struct inode *inode;
6237 struct buffer_head *di_bh = NULL;
6238 struct ocfs2_cached_block_free *tmp;
6239
6240 inode = ocfs2_get_system_file_inode(osb, sysfile_type, slot);
6241 if (!inode) {
6242 ret = -EINVAL;
6243 mlog_errno(ret);
6244 goto out;
6245 }
6246
6247 mutex_lock(&inode->i_mutex);
6248
Mark Fashehe63aecb62007-10-18 15:30:42 -07006249 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fasheh2b604352007-06-22 15:45:27 -07006250 if (ret) {
6251 mlog_errno(ret);
6252 goto out_mutex;
6253 }
6254
6255 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
6256 if (IS_ERR(handle)) {
6257 ret = PTR_ERR(handle);
6258 mlog_errno(ret);
6259 goto out_unlock;
6260 }
6261
6262 while (head) {
6263 bg_blkno = ocfs2_which_suballoc_group(head->free_blk,
6264 head->free_bit);
6265 mlog(0, "Free bit: (bit %u, blkno %llu)\n",
6266 head->free_bit, (unsigned long long)head->free_blk);
6267
6268 ret = ocfs2_free_suballoc_bits(handle, inode, di_bh,
6269 head->free_bit, bg_blkno, 1);
6270 if (ret) {
6271 mlog_errno(ret);
6272 goto out_journal;
6273 }
6274
6275 ret = ocfs2_extend_trans(handle, OCFS2_SUBALLOC_FREE);
6276 if (ret) {
6277 mlog_errno(ret);
6278 goto out_journal;
6279 }
6280
6281 tmp = head;
6282 head = head->free_next;
6283 kfree(tmp);
6284 }
6285
6286out_journal:
6287 ocfs2_commit_trans(osb, handle);
6288
6289out_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -07006290 ocfs2_inode_unlock(inode, 1);
Mark Fasheh2b604352007-06-22 15:45:27 -07006291 brelse(di_bh);
6292out_mutex:
6293 mutex_unlock(&inode->i_mutex);
6294 iput(inode);
6295out:
6296 while(head) {
6297 /* Premature exit may have left some dangling items. */
6298 tmp = head;
6299 head = head->free_next;
6300 kfree(tmp);
6301 }
6302
6303 return ret;
6304}
6305
Tao Ma2891d292008-11-12 08:26:58 +08006306int ocfs2_cache_cluster_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
6307 u64 blkno, unsigned int bit)
6308{
6309 int ret = 0;
6310 struct ocfs2_cached_block_free *item;
6311
6312 item = kmalloc(sizeof(*item), GFP_NOFS);
6313 if (item == NULL) {
6314 ret = -ENOMEM;
6315 mlog_errno(ret);
6316 return ret;
6317 }
6318
6319 mlog(0, "Insert clusters: (bit %u, blk %llu)\n",
6320 bit, (unsigned long long)blkno);
6321
6322 item->free_blk = blkno;
6323 item->free_bit = bit;
6324 item->free_next = ctxt->c_global_allocator;
6325
6326 ctxt->c_global_allocator = item;
6327 return ret;
6328}
6329
6330static int ocfs2_free_cached_clusters(struct ocfs2_super *osb,
6331 struct ocfs2_cached_block_free *head)
6332{
6333 struct ocfs2_cached_block_free *tmp;
6334 struct inode *tl_inode = osb->osb_tl_inode;
6335 handle_t *handle;
6336 int ret = 0;
6337
6338 mutex_lock(&tl_inode->i_mutex);
6339
6340 while (head) {
6341 if (ocfs2_truncate_log_needs_flush(osb)) {
6342 ret = __ocfs2_flush_truncate_log(osb);
6343 if (ret < 0) {
6344 mlog_errno(ret);
6345 break;
6346 }
6347 }
6348
6349 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
6350 if (IS_ERR(handle)) {
6351 ret = PTR_ERR(handle);
6352 mlog_errno(ret);
6353 break;
6354 }
6355
6356 ret = ocfs2_truncate_log_append(osb, handle, head->free_blk,
6357 head->free_bit);
6358
6359 ocfs2_commit_trans(osb, handle);
6360 tmp = head;
6361 head = head->free_next;
6362 kfree(tmp);
6363
6364 if (ret < 0) {
6365 mlog_errno(ret);
6366 break;
6367 }
6368 }
6369
6370 mutex_unlock(&tl_inode->i_mutex);
6371
6372 while (head) {
6373 /* Premature exit may have left some dangling items. */
6374 tmp = head;
6375 head = head->free_next;
6376 kfree(tmp);
6377 }
6378
6379 return ret;
6380}
6381
Mark Fasheh2b604352007-06-22 15:45:27 -07006382int ocfs2_run_deallocs(struct ocfs2_super *osb,
6383 struct ocfs2_cached_dealloc_ctxt *ctxt)
6384{
6385 int ret = 0, ret2;
6386 struct ocfs2_per_slot_free_list *fl;
6387
6388 if (!ctxt)
6389 return 0;
6390
6391 while (ctxt->c_first_suballocator) {
6392 fl = ctxt->c_first_suballocator;
6393
6394 if (fl->f_first) {
6395 mlog(0, "Free items: (type %u, slot %d)\n",
6396 fl->f_inode_type, fl->f_slot);
Tao Ma2891d292008-11-12 08:26:58 +08006397 ret2 = ocfs2_free_cached_blocks(osb,
6398 fl->f_inode_type,
6399 fl->f_slot,
6400 fl->f_first);
Mark Fasheh2b604352007-06-22 15:45:27 -07006401 if (ret2)
6402 mlog_errno(ret2);
6403 if (!ret)
6404 ret = ret2;
6405 }
6406
6407 ctxt->c_first_suballocator = fl->f_next_suballocator;
6408 kfree(fl);
6409 }
6410
Tao Ma2891d292008-11-12 08:26:58 +08006411 if (ctxt->c_global_allocator) {
6412 ret2 = ocfs2_free_cached_clusters(osb,
6413 ctxt->c_global_allocator);
6414 if (ret2)
6415 mlog_errno(ret2);
6416 if (!ret)
6417 ret = ret2;
6418
6419 ctxt->c_global_allocator = NULL;
6420 }
6421
Mark Fasheh2b604352007-06-22 15:45:27 -07006422 return ret;
6423}
6424
6425static struct ocfs2_per_slot_free_list *
6426ocfs2_find_per_slot_free_list(int type,
6427 int slot,
6428 struct ocfs2_cached_dealloc_ctxt *ctxt)
6429{
6430 struct ocfs2_per_slot_free_list *fl = ctxt->c_first_suballocator;
6431
6432 while (fl) {
6433 if (fl->f_inode_type == type && fl->f_slot == slot)
6434 return fl;
6435
6436 fl = fl->f_next_suballocator;
6437 }
6438
6439 fl = kmalloc(sizeof(*fl), GFP_NOFS);
6440 if (fl) {
6441 fl->f_inode_type = type;
6442 fl->f_slot = slot;
6443 fl->f_first = NULL;
6444 fl->f_next_suballocator = ctxt->c_first_suballocator;
6445
6446 ctxt->c_first_suballocator = fl;
6447 }
6448 return fl;
6449}
6450
Tao Ma1823cb02009-08-18 11:24:49 +08006451int ocfs2_cache_block_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
6452 int type, int slot, u64 blkno,
6453 unsigned int bit)
Mark Fasheh2b604352007-06-22 15:45:27 -07006454{
6455 int ret;
6456 struct ocfs2_per_slot_free_list *fl;
6457 struct ocfs2_cached_block_free *item;
6458
6459 fl = ocfs2_find_per_slot_free_list(type, slot, ctxt);
6460 if (fl == NULL) {
6461 ret = -ENOMEM;
6462 mlog_errno(ret);
6463 goto out;
6464 }
6465
6466 item = kmalloc(sizeof(*item), GFP_NOFS);
6467 if (item == NULL) {
6468 ret = -ENOMEM;
6469 mlog_errno(ret);
6470 goto out;
6471 }
6472
6473 mlog(0, "Insert: (type %d, slot %u, bit %u, blk %llu)\n",
6474 type, slot, bit, (unsigned long long)blkno);
6475
6476 item->free_blk = blkno;
6477 item->free_bit = bit;
6478 item->free_next = fl->f_first;
6479
6480 fl->f_first = item;
6481
6482 ret = 0;
6483out:
6484 return ret;
6485}
6486
Mark Fasheh59a5e412007-06-22 15:52:36 -07006487static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt,
6488 struct ocfs2_extent_block *eb)
6489{
6490 return ocfs2_cache_block_dealloc(ctxt, EXTENT_ALLOC_SYSTEM_INODE,
6491 le16_to_cpu(eb->h_suballoc_slot),
6492 le64_to_cpu(eb->h_blkno),
6493 le16_to_cpu(eb->h_suballoc_bit));
6494}
6495
Mark Fashehccd979b2005-12-15 14:31:24 -08006496/* This function will figure out whether the currently last extent
6497 * block will be deleted, and if it will, what the new last extent
6498 * block will be so we can update his h_next_leaf_blk field, as well
6499 * as the dinodes i_last_eb_blk */
Mark Fashehdcd05382007-01-16 11:32:23 -08006500static int ocfs2_find_new_last_ext_blk(struct inode *inode,
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006501 unsigned int clusters_to_del,
Mark Fashehdcd05382007-01-16 11:32:23 -08006502 struct ocfs2_path *path,
Mark Fashehccd979b2005-12-15 14:31:24 -08006503 struct buffer_head **new_last_eb)
6504{
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006505 int next_free, ret = 0;
Mark Fashehdcd05382007-01-16 11:32:23 -08006506 u32 cpos;
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006507 struct ocfs2_extent_rec *rec;
Mark Fashehccd979b2005-12-15 14:31:24 -08006508 struct ocfs2_extent_block *eb;
6509 struct ocfs2_extent_list *el;
6510 struct buffer_head *bh = NULL;
6511
6512 *new_last_eb = NULL;
6513
Mark Fashehccd979b2005-12-15 14:31:24 -08006514 /* we have no tree, so of course, no last_eb. */
Mark Fashehdcd05382007-01-16 11:32:23 -08006515 if (!path->p_tree_depth)
6516 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08006517
6518 /* trunc to zero special case - this makes tree_depth = 0
6519 * regardless of what it is. */
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006520 if (OCFS2_I(inode)->ip_clusters == clusters_to_del)
Mark Fashehdcd05382007-01-16 11:32:23 -08006521 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08006522
Mark Fashehdcd05382007-01-16 11:32:23 -08006523 el = path_leaf_el(path);
Mark Fashehccd979b2005-12-15 14:31:24 -08006524 BUG_ON(!el->l_next_free_rec);
6525
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006526 /*
6527 * Make sure that this extent list will actually be empty
6528 * after we clear away the data. We can shortcut out if
6529 * there's more than one non-empty extent in the
6530 * list. Otherwise, a check of the remaining extent is
6531 * necessary.
6532 */
6533 next_free = le16_to_cpu(el->l_next_free_rec);
6534 rec = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -08006535 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006536 if (next_free > 2)
Mark Fashehdcd05382007-01-16 11:32:23 -08006537 goto out;
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006538
6539 /* We may have a valid extent in index 1, check it. */
6540 if (next_free == 2)
6541 rec = &el->l_recs[1];
6542
6543 /*
6544 * Fall through - no more nonempty extents, so we want
6545 * to delete this leaf.
6546 */
6547 } else {
6548 if (next_free > 1)
6549 goto out;
6550
6551 rec = &el->l_recs[0];
6552 }
6553
6554 if (rec) {
6555 /*
6556 * Check it we'll only be trimming off the end of this
6557 * cluster.
6558 */
Mark Fashehe48edee2007-03-07 16:46:57 -08006559 if (le16_to_cpu(rec->e_leaf_clusters) > clusters_to_del)
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006560 goto out;
6561 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006562
Mark Fashehdcd05382007-01-16 11:32:23 -08006563 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, path, &cpos);
6564 if (ret) {
6565 mlog_errno(ret);
6566 goto out;
6567 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006568
Joel Beckerfacdb772009-02-12 18:08:48 -08006569 ret = ocfs2_find_leaf(INODE_CACHE(inode), path_root_el(path), cpos, &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08006570 if (ret) {
6571 mlog_errno(ret);
6572 goto out;
6573 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006574
Mark Fashehdcd05382007-01-16 11:32:23 -08006575 eb = (struct ocfs2_extent_block *) bh->b_data;
6576 el = &eb->h_list;
Joel Becker5e965812008-11-13 14:49:16 -08006577
6578 /* ocfs2_find_leaf() gets the eb from ocfs2_read_extent_block().
6579 * Any corruption is a code bug. */
6580 BUG_ON(!OCFS2_IS_VALID_EXTENT_BLOCK(eb));
Mark Fashehccd979b2005-12-15 14:31:24 -08006581
6582 *new_last_eb = bh;
6583 get_bh(*new_last_eb);
Mark Fashehdcd05382007-01-16 11:32:23 -08006584 mlog(0, "returning block %llu, (cpos: %u)\n",
6585 (unsigned long long)le64_to_cpu(eb->h_blkno), cpos);
6586out:
6587 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006588
Mark Fashehdcd05382007-01-16 11:32:23 -08006589 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08006590}
6591
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006592/*
6593 * Trim some clusters off the rightmost edge of a tree. Only called
6594 * during truncate.
6595 *
6596 * The caller needs to:
6597 * - start journaling of each path component.
6598 * - compute and fully set up any new last ext block
6599 */
6600static int ocfs2_trim_tree(struct inode *inode, struct ocfs2_path *path,
6601 handle_t *handle, struct ocfs2_truncate_context *tc,
Tao Mabcbbb242009-08-18 11:29:12 +08006602 u32 clusters_to_del, u64 *delete_start, u8 *flags)
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006603{
6604 int ret, i, index = path->p_tree_depth;
6605 u32 new_edge = 0;
6606 u64 deleted_eb = 0;
6607 struct buffer_head *bh;
6608 struct ocfs2_extent_list *el;
6609 struct ocfs2_extent_rec *rec;
6610
6611 *delete_start = 0;
Tao Mabcbbb242009-08-18 11:29:12 +08006612 *flags = 0;
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006613
6614 while (index >= 0) {
6615 bh = path->p_node[index].bh;
6616 el = path->p_node[index].el;
6617
6618 mlog(0, "traveling tree (index = %d, block = %llu)\n",
6619 index, (unsigned long long)bh->b_blocknr);
6620
6621 BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0);
6622
6623 if (index !=
6624 (path->p_tree_depth - le16_to_cpu(el->l_tree_depth))) {
6625 ocfs2_error(inode->i_sb,
6626 "Inode %lu has invalid ext. block %llu",
6627 inode->i_ino,
6628 (unsigned long long)bh->b_blocknr);
6629 ret = -EROFS;
6630 goto out;
6631 }
6632
6633find_tail_record:
6634 i = le16_to_cpu(el->l_next_free_rec) - 1;
6635 rec = &el->l_recs[i];
6636
6637 mlog(0, "Extent list before: record %d: (%u, %u, %llu), "
6638 "next = %u\n", i, le32_to_cpu(rec->e_cpos),
Mark Fashehe48edee2007-03-07 16:46:57 -08006639 ocfs2_rec_clusters(el, rec),
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006640 (unsigned long long)le64_to_cpu(rec->e_blkno),
6641 le16_to_cpu(el->l_next_free_rec));
6642
Mark Fashehe48edee2007-03-07 16:46:57 -08006643 BUG_ON(ocfs2_rec_clusters(el, rec) < clusters_to_del);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006644
6645 if (le16_to_cpu(el->l_tree_depth) == 0) {
6646 /*
6647 * If the leaf block contains a single empty
6648 * extent and no records, we can just remove
6649 * the block.
6650 */
6651 if (i == 0 && ocfs2_is_empty_extent(rec)) {
6652 memset(rec, 0,
6653 sizeof(struct ocfs2_extent_rec));
6654 el->l_next_free_rec = cpu_to_le16(0);
6655
6656 goto delete;
6657 }
6658
6659 /*
6660 * Remove any empty extents by shifting things
6661 * left. That should make life much easier on
6662 * the code below. This condition is rare
6663 * enough that we shouldn't see a performance
6664 * hit.
6665 */
6666 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
6667 le16_add_cpu(&el->l_next_free_rec, -1);
6668
6669 for(i = 0;
6670 i < le16_to_cpu(el->l_next_free_rec); i++)
6671 el->l_recs[i] = el->l_recs[i + 1];
6672
6673 memset(&el->l_recs[i], 0,
6674 sizeof(struct ocfs2_extent_rec));
6675
6676 /*
6677 * We've modified our extent list. The
6678 * simplest way to handle this change
6679 * is to being the search from the
6680 * start again.
6681 */
6682 goto find_tail_record;
6683 }
6684
Mark Fashehe48edee2007-03-07 16:46:57 -08006685 le16_add_cpu(&rec->e_leaf_clusters, -clusters_to_del);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006686
6687 /*
6688 * We'll use "new_edge" on our way back up the
6689 * tree to know what our rightmost cpos is.
6690 */
Mark Fashehe48edee2007-03-07 16:46:57 -08006691 new_edge = le16_to_cpu(rec->e_leaf_clusters);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006692 new_edge += le32_to_cpu(rec->e_cpos);
6693
6694 /*
6695 * The caller will use this to delete data blocks.
6696 */
6697 *delete_start = le64_to_cpu(rec->e_blkno)
6698 + ocfs2_clusters_to_blocks(inode->i_sb,
Mark Fashehe48edee2007-03-07 16:46:57 -08006699 le16_to_cpu(rec->e_leaf_clusters));
Tao Mabcbbb242009-08-18 11:29:12 +08006700 *flags = rec->e_flags;
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006701
6702 /*
6703 * If it's now empty, remove this record.
6704 */
Mark Fashehe48edee2007-03-07 16:46:57 -08006705 if (le16_to_cpu(rec->e_leaf_clusters) == 0) {
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006706 memset(rec, 0,
6707 sizeof(struct ocfs2_extent_rec));
6708 le16_add_cpu(&el->l_next_free_rec, -1);
6709 }
6710 } else {
6711 if (le64_to_cpu(rec->e_blkno) == deleted_eb) {
6712 memset(rec, 0,
6713 sizeof(struct ocfs2_extent_rec));
6714 le16_add_cpu(&el->l_next_free_rec, -1);
6715
6716 goto delete;
6717 }
6718
6719 /* Can this actually happen? */
6720 if (le16_to_cpu(el->l_next_free_rec) == 0)
6721 goto delete;
6722
6723 /*
6724 * We never actually deleted any clusters
6725 * because our leaf was empty. There's no
6726 * reason to adjust the rightmost edge then.
6727 */
6728 if (new_edge == 0)
6729 goto delete;
6730
Mark Fashehe48edee2007-03-07 16:46:57 -08006731 rec->e_int_clusters = cpu_to_le32(new_edge);
6732 le32_add_cpu(&rec->e_int_clusters,
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006733 -le32_to_cpu(rec->e_cpos));
6734
6735 /*
6736 * A deleted child record should have been
6737 * caught above.
6738 */
Mark Fashehe48edee2007-03-07 16:46:57 -08006739 BUG_ON(le32_to_cpu(rec->e_int_clusters) == 0);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006740 }
6741
6742delete:
Joel Beckerec20cec2010-03-19 14:13:52 -07006743 ocfs2_journal_dirty(handle, bh);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006744
6745 mlog(0, "extent list container %llu, after: record %d: "
6746 "(%u, %u, %llu), next = %u.\n",
6747 (unsigned long long)bh->b_blocknr, i,
Mark Fashehe48edee2007-03-07 16:46:57 -08006748 le32_to_cpu(rec->e_cpos), ocfs2_rec_clusters(el, rec),
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006749 (unsigned long long)le64_to_cpu(rec->e_blkno),
6750 le16_to_cpu(el->l_next_free_rec));
6751
6752 /*
6753 * We must be careful to only attempt delete of an
6754 * extent block (and not the root inode block).
6755 */
6756 if (index > 0 && le16_to_cpu(el->l_next_free_rec) == 0) {
6757 struct ocfs2_extent_block *eb =
6758 (struct ocfs2_extent_block *)bh->b_data;
6759
6760 /*
6761 * Save this for use when processing the
6762 * parent block.
6763 */
6764 deleted_eb = le64_to_cpu(eb->h_blkno);
6765
6766 mlog(0, "deleting this extent block.\n");
6767
Joel Becker8cb471e2009-02-10 20:00:41 -08006768 ocfs2_remove_from_cache(INODE_CACHE(inode), bh);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006769
Mark Fashehe48edee2007-03-07 16:46:57 -08006770 BUG_ON(ocfs2_rec_clusters(el, &el->l_recs[0]));
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006771 BUG_ON(le32_to_cpu(el->l_recs[0].e_cpos));
6772 BUG_ON(le64_to_cpu(el->l_recs[0].e_blkno));
6773
Mark Fasheh59a5e412007-06-22 15:52:36 -07006774 ret = ocfs2_cache_extent_block_free(&tc->tc_dealloc, eb);
6775 /* An error here is not fatal. */
6776 if (ret < 0)
6777 mlog_errno(ret);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006778 } else {
6779 deleted_eb = 0;
6780 }
6781
6782 index--;
6783 }
6784
6785 ret = 0;
6786out:
6787 return ret;
6788}
6789
Mark Fashehccd979b2005-12-15 14:31:24 -08006790static int ocfs2_do_truncate(struct ocfs2_super *osb,
6791 unsigned int clusters_to_del,
6792 struct inode *inode,
6793 struct buffer_head *fe_bh,
Mark Fasheh1fabe142006-10-09 18:11:45 -07006794 handle_t *handle,
Mark Fashehdcd05382007-01-16 11:32:23 -08006795 struct ocfs2_truncate_context *tc,
Tao Mabcbbb242009-08-18 11:29:12 +08006796 struct ocfs2_path *path,
6797 struct ocfs2_alloc_context *meta_ac)
Mark Fashehccd979b2005-12-15 14:31:24 -08006798{
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006799 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08006800 struct ocfs2_dinode *fe;
Mark Fashehccd979b2005-12-15 14:31:24 -08006801 struct ocfs2_extent_block *last_eb = NULL;
6802 struct ocfs2_extent_list *el;
Mark Fashehccd979b2005-12-15 14:31:24 -08006803 struct buffer_head *last_eb_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08006804 u64 delete_blk = 0;
Tao Mabcbbb242009-08-18 11:29:12 +08006805 u8 rec_flags;
Mark Fashehccd979b2005-12-15 14:31:24 -08006806
6807 fe = (struct ocfs2_dinode *) fe_bh->b_data;
6808
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006809 status = ocfs2_find_new_last_ext_blk(inode, clusters_to_del,
Mark Fashehdcd05382007-01-16 11:32:23 -08006810 path, &last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006811 if (status < 0) {
6812 mlog_errno(status);
6813 goto bail;
6814 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006815
Mark Fashehdcd05382007-01-16 11:32:23 -08006816 /*
6817 * Each component will be touched, so we might as well journal
6818 * here to avoid having to handle errors later.
6819 */
Joel Becker0cf2f762009-02-12 16:41:25 -08006820 status = ocfs2_journal_access_path(INODE_CACHE(inode), handle, path);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006821 if (status < 0) {
6822 mlog_errno(status);
6823 goto bail;
Mark Fashehdcd05382007-01-16 11:32:23 -08006824 }
6825
6826 if (last_eb_bh) {
Joel Becker0cf2f762009-02-12 16:41:25 -08006827 status = ocfs2_journal_access_eb(handle, INODE_CACHE(inode), last_eb_bh,
Joel Becker13723d02008-10-17 19:25:01 -07006828 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehdcd05382007-01-16 11:32:23 -08006829 if (status < 0) {
6830 mlog_errno(status);
6831 goto bail;
6832 }
6833
6834 last_eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
6835 }
6836
6837 el = &(fe->id2.i_list);
6838
6839 /*
6840 * Lower levels depend on this never happening, but it's best
6841 * to check it up here before changing the tree.
6842 */
Mark Fashehe48edee2007-03-07 16:46:57 -08006843 if (el->l_tree_depth && el->l_recs[0].e_int_clusters == 0) {
Mark Fashehdcd05382007-01-16 11:32:23 -08006844 ocfs2_error(inode->i_sb,
6845 "Inode %lu has an empty extent record, depth %u\n",
6846 inode->i_ino, le16_to_cpu(el->l_tree_depth));
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006847 status = -EROFS;
Mark Fashehccd979b2005-12-15 14:31:24 -08006848 goto bail;
6849 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006850
Christoph Hellwig5dd40562010-03-03 09:05:00 -05006851 dquot_free_space_nodirty(inode,
Jan Karaa90714c2008-10-09 19:38:40 +02006852 ocfs2_clusters_to_bytes(osb->sb, clusters_to_del));
Mark Fashehccd979b2005-12-15 14:31:24 -08006853 spin_lock(&OCFS2_I(inode)->ip_lock);
6854 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters) -
6855 clusters_to_del;
6856 spin_unlock(&OCFS2_I(inode)->ip_lock);
6857 le32_add_cpu(&fe->i_clusters, -clusters_to_del);
Mark Fashehe535e2e2007-08-31 10:23:41 -07006858 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08006859
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006860 status = ocfs2_trim_tree(inode, path, handle, tc,
Tao Mabcbbb242009-08-18 11:29:12 +08006861 clusters_to_del, &delete_blk, &rec_flags);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006862 if (status) {
6863 mlog_errno(status);
6864 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -08006865 }
6866
Mark Fashehdcd05382007-01-16 11:32:23 -08006867 if (le32_to_cpu(fe->i_clusters) == 0) {
Mark Fashehccd979b2005-12-15 14:31:24 -08006868 /* trunc to zero is a special case. */
6869 el->l_tree_depth = 0;
6870 fe->i_last_eb_blk = 0;
6871 } else if (last_eb)
6872 fe->i_last_eb_blk = last_eb->h_blkno;
6873
Joel Beckerec20cec2010-03-19 14:13:52 -07006874 ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006875
6876 if (last_eb) {
6877 /* If there will be a new last extent block, then by
6878 * definition, there cannot be any leaves to the right of
6879 * him. */
Mark Fashehccd979b2005-12-15 14:31:24 -08006880 last_eb->h_next_leaf_blk = 0;
Joel Beckerec20cec2010-03-19 14:13:52 -07006881 ocfs2_journal_dirty(handle, last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006882 }
6883
Mark Fasheh3a0782d2007-01-17 12:53:31 -08006884 if (delete_blk) {
Tao Mabcbbb242009-08-18 11:29:12 +08006885 if (rec_flags & OCFS2_EXT_REFCOUNTED)
6886 status = ocfs2_decrease_refcount(inode, handle,
6887 ocfs2_blocks_to_clusters(osb->sb,
6888 delete_blk),
6889 clusters_to_del, meta_ac,
Tao Ma6ae23c52009-08-18 11:30:55 +08006890 &tc->tc_dealloc, 1);
Tao Mabcbbb242009-08-18 11:29:12 +08006891 else
6892 status = ocfs2_truncate_log_append(osb, handle,
6893 delete_blk,
6894 clusters_to_del);
Mark Fashehccd979b2005-12-15 14:31:24 -08006895 if (status < 0) {
6896 mlog_errno(status);
6897 goto bail;
6898 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006899 }
6900 status = 0;
6901bail:
Tao Ma60e2ec42009-08-12 14:42:47 +08006902 brelse(last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006903 mlog_exit(status);
6904 return status;
6905}
6906
Joel Becker2b4e30f2008-09-03 20:03:41 -07006907static int ocfs2_zero_func(handle_t *handle, struct buffer_head *bh)
Mark Fasheh60b11392007-02-16 11:46:50 -08006908{
6909 set_buffer_uptodate(bh);
6910 mark_buffer_dirty(bh);
6911 return 0;
6912}
6913
Tao Ma6f70fa52009-08-25 08:05:12 +08006914void ocfs2_map_and_dirty_page(struct inode *inode, handle_t *handle,
6915 unsigned int from, unsigned int to,
6916 struct page *page, int zero, u64 *phys)
Mark Fasheh1d410a62007-09-07 14:20:45 -07006917{
6918 int ret, partial = 0;
6919
6920 ret = ocfs2_map_page_blocks(page, phys, inode, from, to, 0);
6921 if (ret)
6922 mlog_errno(ret);
6923
6924 if (zero)
Christoph Lametereebd2aa2008-02-04 22:28:29 -08006925 zero_user_segment(page, from, to);
Mark Fasheh1d410a62007-09-07 14:20:45 -07006926
6927 /*
6928 * Need to set the buffers we zero'd into uptodate
6929 * here if they aren't - ocfs2_map_page_blocks()
6930 * might've skipped some
6931 */
Joel Becker2b4e30f2008-09-03 20:03:41 -07006932 ret = walk_page_buffers(handle, page_buffers(page),
6933 from, to, &partial,
6934 ocfs2_zero_func);
6935 if (ret < 0)
6936 mlog_errno(ret);
6937 else if (ocfs2_should_order_data(inode)) {
6938 ret = ocfs2_jbd2_file_inode(handle, inode);
Mark Fasheh1d410a62007-09-07 14:20:45 -07006939 if (ret < 0)
6940 mlog_errno(ret);
6941 }
6942
6943 if (!partial)
6944 SetPageUptodate(page);
6945
6946 flush_dcache_page(page);
6947}
6948
Mark Fasheh35edec12007-07-06 14:41:18 -07006949static void ocfs2_zero_cluster_pages(struct inode *inode, loff_t start,
6950 loff_t end, struct page **pages,
6951 int numpages, u64 phys, handle_t *handle)
Mark Fasheh60b11392007-02-16 11:46:50 -08006952{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006953 int i;
Mark Fasheh60b11392007-02-16 11:46:50 -08006954 struct page *page;
6955 unsigned int from, to = PAGE_CACHE_SIZE;
6956 struct super_block *sb = inode->i_sb;
6957
6958 BUG_ON(!ocfs2_sparse_alloc(OCFS2_SB(sb)));
6959
6960 if (numpages == 0)
6961 goto out;
6962
Mark Fasheh35edec12007-07-06 14:41:18 -07006963 to = PAGE_CACHE_SIZE;
Mark Fasheh60b11392007-02-16 11:46:50 -08006964 for(i = 0; i < numpages; i++) {
6965 page = pages[i];
6966
Mark Fasheh35edec12007-07-06 14:41:18 -07006967 from = start & (PAGE_CACHE_SIZE - 1);
6968 if ((end >> PAGE_CACHE_SHIFT) == page->index)
6969 to = end & (PAGE_CACHE_SIZE - 1);
6970
Mark Fasheh60b11392007-02-16 11:46:50 -08006971 BUG_ON(from > PAGE_CACHE_SIZE);
6972 BUG_ON(to > PAGE_CACHE_SIZE);
6973
Mark Fasheh1d410a62007-09-07 14:20:45 -07006974 ocfs2_map_and_dirty_page(inode, handle, from, to, page, 1,
6975 &phys);
Mark Fasheh60b11392007-02-16 11:46:50 -08006976
Mark Fasheh35edec12007-07-06 14:41:18 -07006977 start = (page->index + 1) << PAGE_CACHE_SHIFT;
Mark Fasheh60b11392007-02-16 11:46:50 -08006978 }
6979out:
Mark Fasheh1d410a62007-09-07 14:20:45 -07006980 if (pages)
6981 ocfs2_unlock_and_free_pages(pages, numpages);
Mark Fasheh60b11392007-02-16 11:46:50 -08006982}
6983
Tao Ma6f70fa52009-08-25 08:05:12 +08006984int ocfs2_grab_pages(struct inode *inode, loff_t start, loff_t end,
6985 struct page **pages, int *num)
Mark Fasheh60b11392007-02-16 11:46:50 -08006986{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006987 int numpages, ret = 0;
Mark Fasheh60b11392007-02-16 11:46:50 -08006988 struct address_space *mapping = inode->i_mapping;
6989 unsigned long index;
Mark Fasheh35edec12007-07-06 14:41:18 -07006990 loff_t last_page_bytes;
Mark Fasheh60b11392007-02-16 11:46:50 -08006991
Mark Fasheh35edec12007-07-06 14:41:18 -07006992 BUG_ON(start > end);
Mark Fasheh60b11392007-02-16 11:46:50 -08006993
Mark Fasheh1d410a62007-09-07 14:20:45 -07006994 numpages = 0;
Mark Fasheh35edec12007-07-06 14:41:18 -07006995 last_page_bytes = PAGE_ALIGN(end);
6996 index = start >> PAGE_CACHE_SHIFT;
Mark Fasheh60b11392007-02-16 11:46:50 -08006997 do {
6998 pages[numpages] = grab_cache_page(mapping, index);
6999 if (!pages[numpages]) {
7000 ret = -ENOMEM;
7001 mlog_errno(ret);
7002 goto out;
7003 }
7004
7005 numpages++;
7006 index++;
Mark Fasheh35edec12007-07-06 14:41:18 -07007007 } while (index < (last_page_bytes >> PAGE_CACHE_SHIFT));
Mark Fasheh60b11392007-02-16 11:46:50 -08007008
7009out:
7010 if (ret != 0) {
Mark Fasheh1d410a62007-09-07 14:20:45 -07007011 if (pages)
7012 ocfs2_unlock_and_free_pages(pages, numpages);
Mark Fasheh60b11392007-02-16 11:46:50 -08007013 numpages = 0;
7014 }
7015
7016 *num = numpages;
7017
7018 return ret;
7019}
7020
Tao Ma6f70fa52009-08-25 08:05:12 +08007021static int ocfs2_grab_eof_pages(struct inode *inode, loff_t start, loff_t end,
7022 struct page **pages, int *num)
7023{
7024 struct super_block *sb = inode->i_sb;
7025
7026 BUG_ON(start >> OCFS2_SB(sb)->s_clustersize_bits !=
7027 (end - 1) >> OCFS2_SB(sb)->s_clustersize_bits);
7028
7029 return ocfs2_grab_pages(inode, start, end, pages, num);
7030}
7031
Mark Fasheh60b11392007-02-16 11:46:50 -08007032/*
7033 * Zero the area past i_size but still within an allocated
7034 * cluster. This avoids exposing nonzero data on subsequent file
7035 * extends.
7036 *
7037 * We need to call this before i_size is updated on the inode because
7038 * otherwise block_write_full_page() will skip writeout of pages past
7039 * i_size. The new_i_size parameter is passed for this reason.
7040 */
Mark Fasheh35edec12007-07-06 14:41:18 -07007041int ocfs2_zero_range_for_truncate(struct inode *inode, handle_t *handle,
7042 u64 range_start, u64 range_end)
Mark Fasheh60b11392007-02-16 11:46:50 -08007043{
Mark Fasheh1d410a62007-09-07 14:20:45 -07007044 int ret = 0, numpages;
Mark Fasheh60b11392007-02-16 11:46:50 -08007045 struct page **pages = NULL;
7046 u64 phys;
Mark Fasheh1d410a62007-09-07 14:20:45 -07007047 unsigned int ext_flags;
7048 struct super_block *sb = inode->i_sb;
Mark Fasheh60b11392007-02-16 11:46:50 -08007049
7050 /*
7051 * File systems which don't support sparse files zero on every
7052 * extend.
7053 */
Mark Fasheh1d410a62007-09-07 14:20:45 -07007054 if (!ocfs2_sparse_alloc(OCFS2_SB(sb)))
Mark Fasheh60b11392007-02-16 11:46:50 -08007055 return 0;
7056
Mark Fasheh1d410a62007-09-07 14:20:45 -07007057 pages = kcalloc(ocfs2_pages_per_cluster(sb),
Mark Fasheh60b11392007-02-16 11:46:50 -08007058 sizeof(struct page *), GFP_NOFS);
7059 if (pages == NULL) {
7060 ret = -ENOMEM;
7061 mlog_errno(ret);
7062 goto out;
7063 }
7064
Mark Fasheh1d410a62007-09-07 14:20:45 -07007065 if (range_start == range_end)
7066 goto out;
7067
7068 ret = ocfs2_extent_map_get_blocks(inode,
7069 range_start >> sb->s_blocksize_bits,
7070 &phys, NULL, &ext_flags);
Mark Fasheh60b11392007-02-16 11:46:50 -08007071 if (ret) {
7072 mlog_errno(ret);
7073 goto out;
7074 }
7075
Mark Fasheh1d410a62007-09-07 14:20:45 -07007076 /*
7077 * Tail is a hole, or is marked unwritten. In either case, we
7078 * can count on read and write to return/push zero's.
7079 */
7080 if (phys == 0 || ext_flags & OCFS2_EXT_UNWRITTEN)
Mark Fasheh60b11392007-02-16 11:46:50 -08007081 goto out;
7082
Mark Fasheh1d410a62007-09-07 14:20:45 -07007083 ret = ocfs2_grab_eof_pages(inode, range_start, range_end, pages,
7084 &numpages);
7085 if (ret) {
7086 mlog_errno(ret);
7087 goto out;
7088 }
7089
Mark Fasheh35edec12007-07-06 14:41:18 -07007090 ocfs2_zero_cluster_pages(inode, range_start, range_end, pages,
7091 numpages, phys, handle);
Mark Fasheh60b11392007-02-16 11:46:50 -08007092
7093 /*
7094 * Initiate writeout of the pages we zero'd here. We don't
7095 * wait on them - the truncate_inode_pages() call later will
7096 * do that for us.
7097 */
Christoph Hellwig2cfd30a2009-09-23 15:04:02 +02007098 ret = filemap_fdatawrite_range(inode->i_mapping, range_start,
7099 range_end - 1);
Mark Fasheh60b11392007-02-16 11:46:50 -08007100 if (ret)
7101 mlog_errno(ret);
7102
7103out:
7104 if (pages)
7105 kfree(pages);
7106
7107 return ret;
7108}
7109
Tiger Yangfdd77702008-08-18 17:08:55 +08007110static void ocfs2_zero_dinode_id2_with_xattr(struct inode *inode,
7111 struct ocfs2_dinode *di)
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007112{
7113 unsigned int blocksize = 1 << inode->i_sb->s_blocksize_bits;
Tiger Yangfdd77702008-08-18 17:08:55 +08007114 unsigned int xattrsize = le16_to_cpu(di->i_xattr_inline_size);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007115
Tiger Yangfdd77702008-08-18 17:08:55 +08007116 if (le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_XATTR_FL)
7117 memset(&di->id2, 0, blocksize -
7118 offsetof(struct ocfs2_dinode, id2) -
7119 xattrsize);
7120 else
7121 memset(&di->id2, 0, blocksize -
7122 offsetof(struct ocfs2_dinode, id2));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007123}
7124
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07007125void ocfs2_dinode_new_extent_list(struct inode *inode,
7126 struct ocfs2_dinode *di)
7127{
Tiger Yangfdd77702008-08-18 17:08:55 +08007128 ocfs2_zero_dinode_id2_with_xattr(inode, di);
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07007129 di->id2.i_list.l_tree_depth = 0;
7130 di->id2.i_list.l_next_free_rec = 0;
Tiger Yangfdd77702008-08-18 17:08:55 +08007131 di->id2.i_list.l_count = cpu_to_le16(
7132 ocfs2_extent_recs_per_inode_with_xattr(inode->i_sb, di));
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07007133}
7134
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007135void ocfs2_set_inode_data_inline(struct inode *inode, struct ocfs2_dinode *di)
7136{
7137 struct ocfs2_inode_info *oi = OCFS2_I(inode);
7138 struct ocfs2_inline_data *idata = &di->id2.i_data;
7139
7140 spin_lock(&oi->ip_lock);
7141 oi->ip_dyn_features |= OCFS2_INLINE_DATA_FL;
7142 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
7143 spin_unlock(&oi->ip_lock);
7144
7145 /*
7146 * We clear the entire i_data structure here so that all
7147 * fields can be properly initialized.
7148 */
Tiger Yangfdd77702008-08-18 17:08:55 +08007149 ocfs2_zero_dinode_id2_with_xattr(inode, di);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007150
Tiger Yangfdd77702008-08-18 17:08:55 +08007151 idata->id_count = cpu_to_le16(
7152 ocfs2_max_inline_data_with_xattr(inode->i_sb, di));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007153}
7154
7155int ocfs2_convert_inline_data_to_extents(struct inode *inode,
7156 struct buffer_head *di_bh)
7157{
7158 int ret, i, has_data, num_pages = 0;
7159 handle_t *handle;
7160 u64 uninitialized_var(block);
7161 struct ocfs2_inode_info *oi = OCFS2_I(inode);
7162 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
7163 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007164 struct ocfs2_alloc_context *data_ac = NULL;
7165 struct page **pages = NULL;
7166 loff_t end = osb->s_clustersize;
Joel Beckerf99b9b72008-08-20 19:36:33 -07007167 struct ocfs2_extent_tree et;
Jan Karaa90714c2008-10-09 19:38:40 +02007168 int did_quota = 0;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007169
7170 has_data = i_size_read(inode) ? 1 : 0;
7171
7172 if (has_data) {
7173 pages = kcalloc(ocfs2_pages_per_cluster(osb->sb),
7174 sizeof(struct page *), GFP_NOFS);
7175 if (pages == NULL) {
7176 ret = -ENOMEM;
7177 mlog_errno(ret);
7178 goto out;
7179 }
7180
7181 ret = ocfs2_reserve_clusters(osb, 1, &data_ac);
7182 if (ret) {
7183 mlog_errno(ret);
7184 goto out;
7185 }
7186 }
7187
Jan Karaa90714c2008-10-09 19:38:40 +02007188 handle = ocfs2_start_trans(osb,
7189 ocfs2_inline_to_extents_credits(osb->sb));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007190 if (IS_ERR(handle)) {
7191 ret = PTR_ERR(handle);
7192 mlog_errno(ret);
7193 goto out_unlock;
7194 }
7195
Joel Becker0cf2f762009-02-12 16:41:25 -08007196 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
Joel Becker13723d02008-10-17 19:25:01 -07007197 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007198 if (ret) {
7199 mlog_errno(ret);
7200 goto out_commit;
7201 }
7202
7203 if (has_data) {
7204 u32 bit_off, num;
7205 unsigned int page_end;
7206 u64 phys;
7207
Christoph Hellwig5dd40562010-03-03 09:05:00 -05007208 ret = dquot_alloc_space_nodirty(inode,
7209 ocfs2_clusters_to_bytes(osb->sb, 1));
7210 if (ret)
Jan Karaa90714c2008-10-09 19:38:40 +02007211 goto out_commit;
Jan Karaa90714c2008-10-09 19:38:40 +02007212 did_quota = 1;
7213
Mark Fasheh4fe370a2009-12-07 13:15:40 -08007214 data_ac->ac_resv = &OCFS2_I(inode)->ip_la_data_resv;
7215
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007216 ret = ocfs2_claim_clusters(osb, handle, data_ac, 1, &bit_off,
7217 &num);
7218 if (ret) {
7219 mlog_errno(ret);
7220 goto out_commit;
7221 }
7222
7223 /*
7224 * Save two copies, one for insert, and one that can
7225 * be changed by ocfs2_map_and_dirty_page() below.
7226 */
7227 block = phys = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
7228
7229 /*
7230 * Non sparse file systems zero on extend, so no need
7231 * to do that now.
7232 */
7233 if (!ocfs2_sparse_alloc(osb) &&
7234 PAGE_CACHE_SIZE < osb->s_clustersize)
7235 end = PAGE_CACHE_SIZE;
7236
7237 ret = ocfs2_grab_eof_pages(inode, 0, end, pages, &num_pages);
7238 if (ret) {
7239 mlog_errno(ret);
7240 goto out_commit;
7241 }
7242
7243 /*
7244 * This should populate the 1st page for us and mark
7245 * it up to date.
7246 */
7247 ret = ocfs2_read_inline_data(inode, pages[0], di_bh);
7248 if (ret) {
7249 mlog_errno(ret);
7250 goto out_commit;
7251 }
7252
7253 page_end = PAGE_CACHE_SIZE;
7254 if (PAGE_CACHE_SIZE > osb->s_clustersize)
7255 page_end = osb->s_clustersize;
7256
7257 for (i = 0; i < num_pages; i++)
7258 ocfs2_map_and_dirty_page(inode, handle, 0, page_end,
7259 pages[i], i > 0, &phys);
7260 }
7261
7262 spin_lock(&oi->ip_lock);
7263 oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL;
7264 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
7265 spin_unlock(&oi->ip_lock);
7266
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07007267 ocfs2_dinode_new_extent_list(inode, di);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007268
7269 ocfs2_journal_dirty(handle, di_bh);
7270
7271 if (has_data) {
7272 /*
7273 * An error at this point should be extremely rare. If
7274 * this proves to be false, we could always re-build
7275 * the in-inode data from our pages.
7276 */
Joel Becker5e404e92009-02-13 03:54:22 -08007277 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);
Joel Beckercc79d8c2009-02-13 03:24:43 -08007278 ret = ocfs2_insert_extent(handle, &et, 0, block, 1, 0, NULL);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007279 if (ret) {
7280 mlog_errno(ret);
7281 goto out_commit;
7282 }
7283
7284 inode->i_blocks = ocfs2_inode_sector_count(inode);
7285 }
7286
7287out_commit:
Jan Karaa90714c2008-10-09 19:38:40 +02007288 if (ret < 0 && did_quota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05007289 dquot_free_space_nodirty(inode,
Jan Karaa90714c2008-10-09 19:38:40 +02007290 ocfs2_clusters_to_bytes(osb->sb, 1));
7291
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007292 ocfs2_commit_trans(osb, handle);
7293
7294out_unlock:
7295 if (data_ac)
7296 ocfs2_free_alloc_context(data_ac);
7297
7298out:
7299 if (pages) {
7300 ocfs2_unlock_and_free_pages(pages, num_pages);
7301 kfree(pages);
7302 }
7303
7304 return ret;
7305}
7306
Mark Fashehccd979b2005-12-15 14:31:24 -08007307/*
7308 * It is expected, that by the time you call this function,
7309 * inode->i_size and fe->i_size have been adjusted.
7310 *
7311 * WARNING: This will kfree the truncate context
7312 */
7313int ocfs2_commit_truncate(struct ocfs2_super *osb,
7314 struct inode *inode,
7315 struct buffer_head *fe_bh,
7316 struct ocfs2_truncate_context *tc)
7317{
7318 int status, i, credits, tl_sem = 0;
Mark Fashehdcd05382007-01-16 11:32:23 -08007319 u32 clusters_to_del, new_highest_cpos, range;
Tao Mabcbbb242009-08-18 11:29:12 +08007320 u64 blkno = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08007321 struct ocfs2_extent_list *el;
Mark Fasheh1fabe142006-10-09 18:11:45 -07007322 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08007323 struct inode *tl_inode = osb->osb_tl_inode;
Mark Fashehdcd05382007-01-16 11:32:23 -08007324 struct ocfs2_path *path = NULL;
Tao Mae7d4cb62008-08-18 17:38:44 +08007325 struct ocfs2_dinode *di = (struct ocfs2_dinode *)fe_bh->b_data;
Tao Mabcbbb242009-08-18 11:29:12 +08007326 struct ocfs2_alloc_context *meta_ac = NULL;
7327 struct ocfs2_refcount_tree *ref_tree = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08007328
7329 mlog_entry_void();
7330
Mark Fashehdcd05382007-01-16 11:32:23 -08007331 new_highest_cpos = ocfs2_clusters_for_bytes(osb->sb,
Mark Fashehccd979b2005-12-15 14:31:24 -08007332 i_size_read(inode));
7333
Joel Becker13723d02008-10-17 19:25:01 -07007334 path = ocfs2_new_path(fe_bh, &di->id2.i_list,
7335 ocfs2_journal_access_di);
Mark Fashehdcd05382007-01-16 11:32:23 -08007336 if (!path) {
7337 status = -ENOMEM;
7338 mlog_errno(status);
7339 goto bail;
7340 }
Mark Fasheh83418972007-04-23 18:53:12 -07007341
7342 ocfs2_extent_map_trunc(inode, new_highest_cpos);
7343
Mark Fashehccd979b2005-12-15 14:31:24 -08007344start:
Mark Fashehdcd05382007-01-16 11:32:23 -08007345 /*
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007346 * Check that we still have allocation to delete.
7347 */
7348 if (OCFS2_I(inode)->ip_clusters == 0) {
7349 status = 0;
7350 goto bail;
7351 }
7352
Tao Mabcbbb242009-08-18 11:29:12 +08007353 credits = 0;
7354
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007355 /*
Mark Fashehdcd05382007-01-16 11:32:23 -08007356 * Truncate always works against the rightmost tree branch.
7357 */
Joel Beckerfacdb772009-02-12 18:08:48 -08007358 status = ocfs2_find_path(INODE_CACHE(inode), path, UINT_MAX);
Mark Fashehdcd05382007-01-16 11:32:23 -08007359 if (status) {
7360 mlog_errno(status);
7361 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -08007362 }
7363
Mark Fashehdcd05382007-01-16 11:32:23 -08007364 mlog(0, "inode->ip_clusters = %u, tree_depth = %u\n",
7365 OCFS2_I(inode)->ip_clusters, path->p_tree_depth);
7366
7367 /*
7368 * By now, el will point to the extent list on the bottom most
7369 * portion of this tree. Only the tail record is considered in
7370 * each pass.
7371 *
7372 * We handle the following cases, in order:
7373 * - empty extent: delete the remaining branch
7374 * - remove the entire record
7375 * - remove a partial record
7376 * - no record needs to be removed (truncate has completed)
7377 */
7378 el = path_leaf_el(path);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007379 if (le16_to_cpu(el->l_next_free_rec) == 0) {
7380 ocfs2_error(inode->i_sb,
7381 "Inode %llu has empty extent block at %llu\n",
7382 (unsigned long long)OCFS2_I(inode)->ip_blkno,
7383 (unsigned long long)path_leaf_bh(path)->b_blocknr);
7384 status = -EROFS;
7385 goto bail;
7386 }
7387
Mark Fashehccd979b2005-12-15 14:31:24 -08007388 i = le16_to_cpu(el->l_next_free_rec) - 1;
Mark Fashehdcd05382007-01-16 11:32:23 -08007389 range = le32_to_cpu(el->l_recs[i].e_cpos) +
Mark Fashehe48edee2007-03-07 16:46:57 -08007390 ocfs2_rec_clusters(el, &el->l_recs[i]);
Mark Fashehdcd05382007-01-16 11:32:23 -08007391 if (i == 0 && ocfs2_is_empty_extent(&el->l_recs[i])) {
7392 clusters_to_del = 0;
7393 } else if (le32_to_cpu(el->l_recs[i].e_cpos) >= new_highest_cpos) {
Mark Fashehe48edee2007-03-07 16:46:57 -08007394 clusters_to_del = ocfs2_rec_clusters(el, &el->l_recs[i]);
Tao Mabcbbb242009-08-18 11:29:12 +08007395 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
Mark Fashehdcd05382007-01-16 11:32:23 -08007396 } else if (range > new_highest_cpos) {
Mark Fashehe48edee2007-03-07 16:46:57 -08007397 clusters_to_del = (ocfs2_rec_clusters(el, &el->l_recs[i]) +
Mark Fashehccd979b2005-12-15 14:31:24 -08007398 le32_to_cpu(el->l_recs[i].e_cpos)) -
Mark Fashehdcd05382007-01-16 11:32:23 -08007399 new_highest_cpos;
Tao Mabcbbb242009-08-18 11:29:12 +08007400 blkno = le64_to_cpu(el->l_recs[i].e_blkno) +
7401 ocfs2_clusters_to_blocks(inode->i_sb,
7402 ocfs2_rec_clusters(el, &el->l_recs[i]) -
7403 clusters_to_del);
Mark Fashehdcd05382007-01-16 11:32:23 -08007404 } else {
7405 status = 0;
7406 goto bail;
7407 }
Mark Fashehccd979b2005-12-15 14:31:24 -08007408
Mark Fashehdcd05382007-01-16 11:32:23 -08007409 mlog(0, "clusters_to_del = %u in this pass, tail blk=%llu\n",
7410 clusters_to_del, (unsigned long long)path_leaf_bh(path)->b_blocknr);
7411
Tao Mabcbbb242009-08-18 11:29:12 +08007412 if (el->l_recs[i].e_flags & OCFS2_EXT_REFCOUNTED && clusters_to_del) {
7413 BUG_ON(!(OCFS2_I(inode)->ip_dyn_features &
7414 OCFS2_HAS_REFCOUNT_FL));
7415
7416 status = ocfs2_lock_refcount_tree(osb,
7417 le64_to_cpu(di->i_refcount_loc),
7418 1, &ref_tree, NULL);
7419 if (status) {
7420 mlog_errno(status);
7421 goto bail;
7422 }
7423
7424 status = ocfs2_prepare_refcount_change_for_del(inode, fe_bh,
7425 blkno,
7426 clusters_to_del,
7427 &credits,
7428 &meta_ac);
7429 if (status < 0) {
7430 mlog_errno(status);
7431 goto bail;
7432 }
7433 }
7434
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08007435 mutex_lock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08007436 tl_sem = 1;
7437 /* ocfs2_truncate_log_needs_flush guarantees us at least one
7438 * record is free for use. If there isn't any, we flush to get
7439 * an empty truncate log. */
7440 if (ocfs2_truncate_log_needs_flush(osb)) {
7441 status = __ocfs2_flush_truncate_log(osb);
7442 if (status < 0) {
7443 mlog_errno(status);
7444 goto bail;
7445 }
7446 }
7447
Tao Mabcbbb242009-08-18 11:29:12 +08007448 credits += ocfs2_calc_tree_trunc_credits(osb->sb, clusters_to_del,
Mark Fashehdcd05382007-01-16 11:32:23 -08007449 (struct ocfs2_dinode *)fe_bh->b_data,
7450 el);
Mark Fasheh65eff9c2006-10-09 17:26:22 -07007451 handle = ocfs2_start_trans(osb, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -08007452 if (IS_ERR(handle)) {
7453 status = PTR_ERR(handle);
7454 handle = NULL;
7455 mlog_errno(status);
7456 goto bail;
7457 }
7458
Mark Fashehdcd05382007-01-16 11:32:23 -08007459 status = ocfs2_do_truncate(osb, clusters_to_del, inode, fe_bh, handle,
Tao Mabcbbb242009-08-18 11:29:12 +08007460 tc, path, meta_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08007461 if (status < 0) {
7462 mlog_errno(status);
7463 goto bail;
7464 }
7465
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08007466 mutex_unlock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08007467 tl_sem = 0;
7468
Mark Fasheh02dc1af2006-10-09 16:48:10 -07007469 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08007470 handle = NULL;
7471
Mark Fashehdcd05382007-01-16 11:32:23 -08007472 ocfs2_reinit_path(path, 1);
7473
Tao Mabcbbb242009-08-18 11:29:12 +08007474 if (meta_ac) {
7475 ocfs2_free_alloc_context(meta_ac);
7476 meta_ac = NULL;
7477 }
7478
7479 if (ref_tree) {
7480 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
7481 ref_tree = NULL;
7482 }
7483
Mark Fashehdcd05382007-01-16 11:32:23 -08007484 /*
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007485 * The check above will catch the case where we've truncated
7486 * away all allocation.
Mark Fashehdcd05382007-01-16 11:32:23 -08007487 */
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007488 goto start;
7489
Mark Fashehccd979b2005-12-15 14:31:24 -08007490bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08007491
7492 ocfs2_schedule_truncate_log_flush(osb, 1);
7493
7494 if (tl_sem)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08007495 mutex_unlock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08007496
7497 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07007498 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08007499
Tao Mabcbbb242009-08-18 11:29:12 +08007500 if (meta_ac)
7501 ocfs2_free_alloc_context(meta_ac);
7502
7503 if (ref_tree)
7504 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
7505
Mark Fasheh59a5e412007-06-22 15:52:36 -07007506 ocfs2_run_deallocs(osb, &tc->tc_dealloc);
7507
Mark Fashehdcd05382007-01-16 11:32:23 -08007508 ocfs2_free_path(path);
Mark Fashehccd979b2005-12-15 14:31:24 -08007509
7510 /* This will drop the ext_alloc cluster lock for us */
7511 ocfs2_free_truncate_context(tc);
7512
7513 mlog_exit(status);
7514 return status;
7515}
7516
Mark Fashehccd979b2005-12-15 14:31:24 -08007517/*
Mark Fasheh59a5e412007-06-22 15:52:36 -07007518 * Expects the inode to already be locked.
Mark Fashehccd979b2005-12-15 14:31:24 -08007519 */
7520int ocfs2_prepare_truncate(struct ocfs2_super *osb,
7521 struct inode *inode,
7522 struct buffer_head *fe_bh,
7523 struct ocfs2_truncate_context **tc)
7524{
Mark Fasheh59a5e412007-06-22 15:52:36 -07007525 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08007526 unsigned int new_i_clusters;
7527 struct ocfs2_dinode *fe;
7528 struct ocfs2_extent_block *eb;
Mark Fashehccd979b2005-12-15 14:31:24 -08007529 struct buffer_head *last_eb_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08007530
7531 mlog_entry_void();
7532
7533 *tc = NULL;
7534
7535 new_i_clusters = ocfs2_clusters_for_bytes(osb->sb,
7536 i_size_read(inode));
7537 fe = (struct ocfs2_dinode *) fe_bh->b_data;
7538
7539 mlog(0, "fe->i_clusters = %u, new_i_clusters = %u, fe->i_size ="
Mark Fasheh1ca1a112007-04-27 16:01:25 -07007540 "%llu\n", le32_to_cpu(fe->i_clusters), new_i_clusters,
7541 (unsigned long long)le64_to_cpu(fe->i_size));
Mark Fashehccd979b2005-12-15 14:31:24 -08007542
Robert P. J. Daycd861282006-12-13 00:34:52 -08007543 *tc = kzalloc(sizeof(struct ocfs2_truncate_context), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08007544 if (!(*tc)) {
7545 status = -ENOMEM;
7546 mlog_errno(status);
7547 goto bail;
7548 }
Mark Fasheh59a5e412007-06-22 15:52:36 -07007549 ocfs2_init_dealloc_ctxt(&(*tc)->tc_dealloc);
Mark Fashehccd979b2005-12-15 14:31:24 -08007550
Mark Fashehccd979b2005-12-15 14:31:24 -08007551 if (fe->id2.i_list.l_tree_depth) {
Joel Becker3d03a302009-02-12 17:49:26 -08007552 status = ocfs2_read_extent_block(INODE_CACHE(inode),
Joel Becker5e965812008-11-13 14:49:16 -08007553 le64_to_cpu(fe->i_last_eb_blk),
7554 &last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08007555 if (status < 0) {
7556 mlog_errno(status);
7557 goto bail;
7558 }
7559 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08007560 }
7561
7562 (*tc)->tc_last_eb_bh = last_eb_bh;
7563
Mark Fashehccd979b2005-12-15 14:31:24 -08007564 status = 0;
7565bail:
7566 if (status < 0) {
7567 if (*tc)
7568 ocfs2_free_truncate_context(*tc);
7569 *tc = NULL;
7570 }
7571 mlog_exit_void();
7572 return status;
7573}
7574
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007575/*
7576 * 'start' is inclusive, 'end' is not.
7577 */
7578int ocfs2_truncate_inline(struct inode *inode, struct buffer_head *di_bh,
7579 unsigned int start, unsigned int end, int trunc)
7580{
7581 int ret;
7582 unsigned int numbytes;
7583 handle_t *handle;
7584 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
7585 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
7586 struct ocfs2_inline_data *idata = &di->id2.i_data;
7587
7588 if (end > i_size_read(inode))
7589 end = i_size_read(inode);
7590
7591 BUG_ON(start >= end);
7592
7593 if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) ||
7594 !(le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_DATA_FL) ||
7595 !ocfs2_supports_inline_data(osb)) {
7596 ocfs2_error(inode->i_sb,
7597 "Inline data flags for inode %llu don't agree! "
7598 "Disk: 0x%x, Memory: 0x%x, Superblock: 0x%x\n",
7599 (unsigned long long)OCFS2_I(inode)->ip_blkno,
7600 le16_to_cpu(di->i_dyn_features),
7601 OCFS2_I(inode)->ip_dyn_features,
7602 osb->s_feature_incompat);
7603 ret = -EROFS;
7604 goto out;
7605 }
7606
7607 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
7608 if (IS_ERR(handle)) {
7609 ret = PTR_ERR(handle);
7610 mlog_errno(ret);
7611 goto out;
7612 }
7613
Joel Becker0cf2f762009-02-12 16:41:25 -08007614 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
Joel Becker13723d02008-10-17 19:25:01 -07007615 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007616 if (ret) {
7617 mlog_errno(ret);
7618 goto out_commit;
7619 }
7620
7621 numbytes = end - start;
7622 memset(idata->id_data + start, 0, numbytes);
7623
7624 /*
7625 * No need to worry about the data page here - it's been
7626 * truncated already and inline data doesn't need it for
7627 * pushing zero's to disk, so we'll let readpage pick it up
7628 * later.
7629 */
7630 if (trunc) {
7631 i_size_write(inode, start);
7632 di->i_size = cpu_to_le64(start);
7633 }
7634
7635 inode->i_blocks = ocfs2_inode_sector_count(inode);
7636 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
7637
7638 di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
7639 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
7640
7641 ocfs2_journal_dirty(handle, di_bh);
7642
7643out_commit:
7644 ocfs2_commit_trans(osb, handle);
7645
7646out:
7647 return ret;
7648}
7649
Mark Fashehccd979b2005-12-15 14:31:24 -08007650static void ocfs2_free_truncate_context(struct ocfs2_truncate_context *tc)
7651{
Mark Fasheh59a5e412007-06-22 15:52:36 -07007652 /*
7653 * The caller is responsible for completing deallocation
7654 * before freeing the context.
7655 */
7656 if (tc->tc_dealloc.c_first_suballocator != NULL)
7657 mlog(ML_NOTICE,
7658 "Truncate completion has non-empty dealloc context\n");
Mark Fashehccd979b2005-12-15 14:31:24 -08007659
Mark Fasheha81cb882008-10-07 14:25:16 -07007660 brelse(tc->tc_last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08007661
7662 kfree(tc);
7663}