blob: 0cb4248e03cd798910a71ff29c5aa75939e1ce75 [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
Tao Mac901fb02010-04-26 14:34:57 +08001128 status = ocfs2_extend_trans(handle, path_num_items(path));
Tao Ma6b791bc2009-06-12 14:18:36 +08001129 if (status < 0) {
1130 mlog_errno(status);
1131 goto out;
1132 }
1133
Joel Beckerd401dc12009-02-13 02:24:10 -08001134 status = ocfs2_journal_access_path(et->et_ci, handle, path);
Tao Ma6b791bc2009-06-12 14:18:36 +08001135 if (status < 0) {
1136 mlog_errno(status);
1137 goto out;
1138 }
1139
1140 el = path_leaf_el(path);
1141 rec = &el->l_recs[le32_to_cpu(el->l_next_free_rec) - 1];
1142
Joel Beckerd401dc12009-02-13 02:24:10 -08001143 ocfs2_adjust_rightmost_records(handle, et, path, rec);
Tao Ma6b791bc2009-06-12 14:18:36 +08001144
1145out:
1146 ocfs2_free_path(path);
1147 return status;
1148}
1149
1150/*
Mark Fashehccd979b2005-12-15 14:31:24 -08001151 * Add an entire tree branch to our inode. eb_bh is the extent block
Joel Beckerd401dc12009-02-13 02:24:10 -08001152 * to start at, if we don't want to start the branch at the root
Mark Fashehccd979b2005-12-15 14:31:24 -08001153 * structure.
1154 *
1155 * last_eb_bh is required as we have to update it's next_leaf pointer
1156 * for the new last extent block.
1157 *
1158 * the new branch will be 'empty' in the sense that every block will
Mark Fashehe48edee2007-03-07 16:46:57 -08001159 * contain a single record with cluster count == 0.
Mark Fashehccd979b2005-12-15 14:31:24 -08001160 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001161static int ocfs2_add_branch(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08001162 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001163 struct buffer_head *eb_bh,
Mark Fasheh328d5752007-06-18 10:48:04 -07001164 struct buffer_head **last_eb_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -08001165 struct ocfs2_alloc_context *meta_ac)
1166{
1167 int status, new_blocks, i;
1168 u64 next_blkno, new_last_eb_blk;
1169 struct buffer_head *bh;
1170 struct buffer_head **new_eb_bhs = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001171 struct ocfs2_extent_block *eb;
1172 struct ocfs2_extent_list *eb_el;
1173 struct ocfs2_extent_list *el;
Tao Ma6b791bc2009-06-12 14:18:36 +08001174 u32 new_cpos, root_end;
Mark Fashehccd979b2005-12-15 14:31:24 -08001175
1176 mlog_entry_void();
1177
Mark Fasheh328d5752007-06-18 10:48:04 -07001178 BUG_ON(!last_eb_bh || !*last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001179
Mark Fashehccd979b2005-12-15 14:31:24 -08001180 if (eb_bh) {
1181 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
1182 el = &eb->h_list;
1183 } else
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001184 el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001185
1186 /* we never add a branch to a leaf. */
1187 BUG_ON(!el->l_tree_depth);
1188
1189 new_blocks = le16_to_cpu(el->l_tree_depth);
1190
Tao Ma6b791bc2009-06-12 14:18:36 +08001191 eb = (struct ocfs2_extent_block *)(*last_eb_bh)->b_data;
1192 new_cpos = ocfs2_sum_rightmost_rec(&eb->h_list);
1193 root_end = ocfs2_sum_rightmost_rec(et->et_root_el);
1194
1195 /*
1196 * If there is a gap before the root end and the real end
1197 * of the righmost leaf block, we need to remove the gap
1198 * between new_cpos and root_end first so that the tree
1199 * is consistent after we add a new branch(it will start
1200 * from new_cpos).
1201 */
1202 if (root_end > new_cpos) {
1203 mlog(0, "adjust the cluster end from %u to %u\n",
1204 root_end, new_cpos);
Joel Beckerd401dc12009-02-13 02:24:10 -08001205 status = ocfs2_adjust_rightmost_branch(handle, et);
Tao Ma6b791bc2009-06-12 14:18:36 +08001206 if (status) {
1207 mlog_errno(status);
1208 goto bail;
1209 }
1210 }
1211
Mark Fashehccd979b2005-12-15 14:31:24 -08001212 /* allocate the number of new eb blocks we need */
1213 new_eb_bhs = kcalloc(new_blocks, sizeof(struct buffer_head *),
1214 GFP_KERNEL);
1215 if (!new_eb_bhs) {
1216 status = -ENOMEM;
1217 mlog_errno(status);
1218 goto bail;
1219 }
1220
Joel Becker42a5a7a2009-02-12 18:49:19 -08001221 status = ocfs2_create_new_meta_bhs(handle, et, new_blocks,
Mark Fashehccd979b2005-12-15 14:31:24 -08001222 meta_ac, new_eb_bhs);
1223 if (status < 0) {
1224 mlog_errno(status);
1225 goto bail;
1226 }
1227
1228 /* Note: new_eb_bhs[new_blocks - 1] is the guy which will be
1229 * linked with the rest of the tree.
1230 * conversly, new_eb_bhs[0] is the new bottommost leaf.
1231 *
1232 * when we leave the loop, new_last_eb_blk will point to the
1233 * newest leaf, and next_blkno will point to the topmost extent
1234 * block. */
1235 next_blkno = new_last_eb_blk = 0;
1236 for(i = 0; i < new_blocks; i++) {
1237 bh = new_eb_bhs[i];
1238 eb = (struct ocfs2_extent_block *) bh->b_data;
Joel Becker5e965812008-11-13 14:49:16 -08001239 /* ocfs2_create_new_meta_bhs() should create it right! */
1240 BUG_ON(!OCFS2_IS_VALID_EXTENT_BLOCK(eb));
Mark Fashehccd979b2005-12-15 14:31:24 -08001241 eb_el = &eb->h_list;
1242
Joel Beckerd401dc12009-02-13 02:24:10 -08001243 status = ocfs2_journal_access_eb(handle, et->et_ci, bh,
Joel Becker13723d02008-10-17 19:25:01 -07001244 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001245 if (status < 0) {
1246 mlog_errno(status);
1247 goto bail;
1248 }
1249
1250 eb->h_next_leaf_blk = 0;
1251 eb_el->l_tree_depth = cpu_to_le16(i);
1252 eb_el->l_next_free_rec = cpu_to_le16(1);
Mark Fashehdcd05382007-01-16 11:32:23 -08001253 /*
1254 * This actually counts as an empty extent as
1255 * c_clusters == 0
1256 */
1257 eb_el->l_recs[0].e_cpos = cpu_to_le32(new_cpos);
Mark Fashehccd979b2005-12-15 14:31:24 -08001258 eb_el->l_recs[0].e_blkno = cpu_to_le64(next_blkno);
Mark Fashehe48edee2007-03-07 16:46:57 -08001259 /*
1260 * eb_el isn't always an interior node, but even leaf
1261 * nodes want a zero'd flags and reserved field so
1262 * this gets the whole 32 bits regardless of use.
1263 */
1264 eb_el->l_recs[0].e_int_clusters = cpu_to_le32(0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001265 if (!eb_el->l_tree_depth)
1266 new_last_eb_blk = le64_to_cpu(eb->h_blkno);
1267
Joel Beckerec20cec2010-03-19 14:13:52 -07001268 ocfs2_journal_dirty(handle, bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001269 next_blkno = le64_to_cpu(eb->h_blkno);
1270 }
1271
1272 /* This is a bit hairy. We want to update up to three blocks
1273 * here without leaving any of them in an inconsistent state
1274 * in case of error. We don't have to worry about
1275 * journal_dirty erroring as it won't unless we've aborted the
1276 * handle (in which case we would never be here) so reserving
1277 * the write with journal_access is all we need to do. */
Joel Beckerd401dc12009-02-13 02:24:10 -08001278 status = ocfs2_journal_access_eb(handle, et->et_ci, *last_eb_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001279 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001280 if (status < 0) {
1281 mlog_errno(status);
1282 goto bail;
1283 }
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08001284 status = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07001285 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001286 if (status < 0) {
1287 mlog_errno(status);
1288 goto bail;
1289 }
1290 if (eb_bh) {
Joel Beckerd401dc12009-02-13 02:24:10 -08001291 status = ocfs2_journal_access_eb(handle, et->et_ci, eb_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001292 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001293 if (status < 0) {
1294 mlog_errno(status);
1295 goto bail;
1296 }
1297 }
1298
1299 /* Link the new branch into the rest of the tree (el will
Tao Mae7d4cb62008-08-18 17:38:44 +08001300 * either be on the root_bh, or the extent block passed in. */
Mark Fashehccd979b2005-12-15 14:31:24 -08001301 i = le16_to_cpu(el->l_next_free_rec);
1302 el->l_recs[i].e_blkno = cpu_to_le64(next_blkno);
Mark Fashehdcd05382007-01-16 11:32:23 -08001303 el->l_recs[i].e_cpos = cpu_to_le32(new_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001304 el->l_recs[i].e_int_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001305 le16_add_cpu(&el->l_next_free_rec, 1);
1306
1307 /* fe needs a new last extent block pointer, as does the
1308 * next_leaf on the previously last-extent-block. */
Joel Becker35dc0aa2008-08-20 16:25:06 -07001309 ocfs2_et_set_last_eb_blk(et, new_last_eb_blk);
Mark Fashehccd979b2005-12-15 14:31:24 -08001310
Mark Fasheh328d5752007-06-18 10:48:04 -07001311 eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08001312 eb->h_next_leaf_blk = cpu_to_le64(new_last_eb_blk);
1313
Joel Beckerec20cec2010-03-19 14:13:52 -07001314 ocfs2_journal_dirty(handle, *last_eb_bh);
1315 ocfs2_journal_dirty(handle, et->et_root_bh);
1316 if (eb_bh)
1317 ocfs2_journal_dirty(handle, eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001318
Mark Fasheh328d5752007-06-18 10:48:04 -07001319 /*
1320 * Some callers want to track the rightmost leaf so pass it
1321 * back here.
1322 */
1323 brelse(*last_eb_bh);
1324 get_bh(new_eb_bhs[0]);
1325 *last_eb_bh = new_eb_bhs[0];
1326
Mark Fashehccd979b2005-12-15 14:31:24 -08001327 status = 0;
1328bail:
1329 if (new_eb_bhs) {
1330 for (i = 0; i < new_blocks; i++)
Mark Fasheha81cb882008-10-07 14:25:16 -07001331 brelse(new_eb_bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001332 kfree(new_eb_bhs);
1333 }
1334
1335 mlog_exit(status);
1336 return status;
1337}
1338
1339/*
1340 * adds another level to the allocation tree.
1341 * returns back the new extent block so you can add a branch to it
1342 * after this call.
1343 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001344static int ocfs2_shift_tree_depth(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08001345 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001346 struct ocfs2_alloc_context *meta_ac,
1347 struct buffer_head **ret_new_eb_bh)
1348{
1349 int status, i;
Mark Fashehdcd05382007-01-16 11:32:23 -08001350 u32 new_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -08001351 struct buffer_head *new_eb_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001352 struct ocfs2_extent_block *eb;
Tao Mae7d4cb62008-08-18 17:38:44 +08001353 struct ocfs2_extent_list *root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001354 struct ocfs2_extent_list *eb_el;
1355
1356 mlog_entry_void();
1357
Joel Becker42a5a7a2009-02-12 18:49:19 -08001358 status = ocfs2_create_new_meta_bhs(handle, et, 1, meta_ac,
Mark Fashehccd979b2005-12-15 14:31:24 -08001359 &new_eb_bh);
1360 if (status < 0) {
1361 mlog_errno(status);
1362 goto bail;
1363 }
1364
1365 eb = (struct ocfs2_extent_block *) new_eb_bh->b_data;
Joel Becker5e965812008-11-13 14:49:16 -08001366 /* ocfs2_create_new_meta_bhs() should create it right! */
1367 BUG_ON(!OCFS2_IS_VALID_EXTENT_BLOCK(eb));
Mark Fashehccd979b2005-12-15 14:31:24 -08001368
1369 eb_el = &eb->h_list;
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001370 root_el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001371
Joel Beckerd401dc12009-02-13 02:24:10 -08001372 status = ocfs2_journal_access_eb(handle, et->et_ci, new_eb_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001373 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001374 if (status < 0) {
1375 mlog_errno(status);
1376 goto bail;
1377 }
1378
Tao Mae7d4cb62008-08-18 17:38:44 +08001379 /* copy the root extent list data into the new extent block */
1380 eb_el->l_tree_depth = root_el->l_tree_depth;
1381 eb_el->l_next_free_rec = root_el->l_next_free_rec;
1382 for (i = 0; i < le16_to_cpu(root_el->l_next_free_rec); i++)
1383 eb_el->l_recs[i] = root_el->l_recs[i];
Mark Fashehccd979b2005-12-15 14:31:24 -08001384
Joel Beckerec20cec2010-03-19 14:13:52 -07001385 ocfs2_journal_dirty(handle, new_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001386
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08001387 status = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07001388 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001389 if (status < 0) {
1390 mlog_errno(status);
1391 goto bail;
1392 }
1393
Mark Fashehdcd05382007-01-16 11:32:23 -08001394 new_clusters = ocfs2_sum_rightmost_rec(eb_el);
1395
Tao Mae7d4cb62008-08-18 17:38:44 +08001396 /* update root_bh now */
1397 le16_add_cpu(&root_el->l_tree_depth, 1);
1398 root_el->l_recs[0].e_cpos = 0;
1399 root_el->l_recs[0].e_blkno = eb->h_blkno;
1400 root_el->l_recs[0].e_int_clusters = cpu_to_le32(new_clusters);
1401 for (i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++)
1402 memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec));
1403 root_el->l_next_free_rec = cpu_to_le16(1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001404
1405 /* If this is our 1st tree depth shift, then last_eb_blk
1406 * becomes the allocated extent block */
Tao Mae7d4cb62008-08-18 17:38:44 +08001407 if (root_el->l_tree_depth == cpu_to_le16(1))
Joel Becker35dc0aa2008-08-20 16:25:06 -07001408 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fashehccd979b2005-12-15 14:31:24 -08001409
Joel Beckerec20cec2010-03-19 14:13:52 -07001410 ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001411
1412 *ret_new_eb_bh = new_eb_bh;
1413 new_eb_bh = NULL;
1414 status = 0;
1415bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001416 brelse(new_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001417
1418 mlog_exit(status);
1419 return status;
1420}
1421
1422/*
Mark Fashehccd979b2005-12-15 14:31:24 -08001423 * Should only be called when there is no space left in any of the
1424 * leaf nodes. What we want to do is find the lowest tree depth
1425 * non-leaf extent block with room for new records. There are three
1426 * valid results of this search:
1427 *
1428 * 1) a lowest extent block is found, then we pass it back in
1429 * *lowest_eb_bh and return '0'
1430 *
Tao Mae7d4cb62008-08-18 17:38:44 +08001431 * 2) the search fails to find anything, but the root_el has room. We
Mark Fashehccd979b2005-12-15 14:31:24 -08001432 * pass NULL back in *lowest_eb_bh, but still return '0'
1433 *
Tao Mae7d4cb62008-08-18 17:38:44 +08001434 * 3) the search fails to find anything AND the root_el is full, in
Mark Fashehccd979b2005-12-15 14:31:24 -08001435 * which case we return > 0
1436 *
1437 * return status < 0 indicates an error.
1438 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001439static int ocfs2_find_branch_target(struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001440 struct buffer_head **target_bh)
1441{
1442 int status = 0, i;
1443 u64 blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -08001444 struct ocfs2_extent_block *eb;
1445 struct ocfs2_extent_list *el;
1446 struct buffer_head *bh = NULL;
1447 struct buffer_head *lowest_bh = NULL;
1448
1449 mlog_entry_void();
1450
1451 *target_bh = NULL;
1452
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001453 el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001454
1455 while(le16_to_cpu(el->l_tree_depth) > 1) {
1456 if (le16_to_cpu(el->l_next_free_rec) == 0) {
Joel Becker3d03a302009-02-12 17:49:26 -08001457 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
1458 "Owner %llu has empty "
Mark Fashehccd979b2005-12-15 14:31:24 -08001459 "extent list (next_free_rec == 0)",
Joel Becker3d03a302009-02-12 17:49:26 -08001460 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci));
Mark Fashehccd979b2005-12-15 14:31:24 -08001461 status = -EIO;
1462 goto bail;
1463 }
1464 i = le16_to_cpu(el->l_next_free_rec) - 1;
1465 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
1466 if (!blkno) {
Joel Becker3d03a302009-02-12 17:49:26 -08001467 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
1468 "Owner %llu has extent "
Mark Fashehccd979b2005-12-15 14:31:24 -08001469 "list where extent # %d has no physical "
1470 "block start",
Joel Becker3d03a302009-02-12 17:49:26 -08001471 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), i);
Mark Fashehccd979b2005-12-15 14:31:24 -08001472 status = -EIO;
1473 goto bail;
1474 }
1475
Mark Fasheha81cb882008-10-07 14:25:16 -07001476 brelse(bh);
1477 bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001478
Joel Becker3d03a302009-02-12 17:49:26 -08001479 status = ocfs2_read_extent_block(et->et_ci, blkno, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001480 if (status < 0) {
1481 mlog_errno(status);
1482 goto bail;
1483 }
1484
1485 eb = (struct ocfs2_extent_block *) bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08001486 el = &eb->h_list;
1487
1488 if (le16_to_cpu(el->l_next_free_rec) <
1489 le16_to_cpu(el->l_count)) {
Mark Fasheha81cb882008-10-07 14:25:16 -07001490 brelse(lowest_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001491 lowest_bh = bh;
1492 get_bh(lowest_bh);
1493 }
1494 }
1495
1496 /* If we didn't find one and the fe doesn't have any room,
1497 * then return '1' */
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001498 el = et->et_root_el;
Tao Mae7d4cb62008-08-18 17:38:44 +08001499 if (!lowest_bh && (el->l_next_free_rec == el->l_count))
Mark Fashehccd979b2005-12-15 14:31:24 -08001500 status = 1;
1501
1502 *target_bh = lowest_bh;
1503bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001504 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001505
1506 mlog_exit(status);
1507 return status;
1508}
1509
Mark Fashehe48edee2007-03-07 16:46:57 -08001510/*
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001511 * Grow a b-tree so that it has more records.
1512 *
1513 * We might shift the tree depth in which case existing paths should
1514 * be considered invalid.
1515 *
1516 * Tree depth after the grow is returned via *final_depth.
Mark Fasheh328d5752007-06-18 10:48:04 -07001517 *
1518 * *last_eb_bh will be updated by ocfs2_add_branch().
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001519 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001520static int ocfs2_grow_tree(handle_t *handle, struct ocfs2_extent_tree *et,
1521 int *final_depth, struct buffer_head **last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001522 struct ocfs2_alloc_context *meta_ac)
1523{
1524 int ret, shift;
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001525 struct ocfs2_extent_list *el = et->et_root_el;
Tao Mae7d4cb62008-08-18 17:38:44 +08001526 int depth = le16_to_cpu(el->l_tree_depth);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001527 struct buffer_head *bh = NULL;
1528
1529 BUG_ON(meta_ac == NULL);
1530
Joel Beckerd401dc12009-02-13 02:24:10 -08001531 shift = ocfs2_find_branch_target(et, &bh);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001532 if (shift < 0) {
1533 ret = shift;
1534 mlog_errno(ret);
1535 goto out;
1536 }
1537
1538 /* We traveled all the way to the bottom of the allocation tree
1539 * and didn't find room for any more extents - we need to add
1540 * another tree level */
1541 if (shift) {
1542 BUG_ON(bh);
1543 mlog(0, "need to shift tree depth (current = %d)\n", depth);
1544
1545 /* ocfs2_shift_tree_depth will return us a buffer with
1546 * the new extent block (so we can pass that to
1547 * ocfs2_add_branch). */
Joel Beckerd401dc12009-02-13 02:24:10 -08001548 ret = ocfs2_shift_tree_depth(handle, et, meta_ac, &bh);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001549 if (ret < 0) {
1550 mlog_errno(ret);
1551 goto out;
1552 }
1553 depth++;
Mark Fasheh328d5752007-06-18 10:48:04 -07001554 if (depth == 1) {
1555 /*
1556 * Special case: we have room now if we shifted from
1557 * tree_depth 0, so no more work needs to be done.
1558 *
1559 * We won't be calling add_branch, so pass
1560 * back *last_eb_bh as the new leaf. At depth
1561 * zero, it should always be null so there's
1562 * no reason to brelse.
1563 */
1564 BUG_ON(*last_eb_bh);
1565 get_bh(bh);
1566 *last_eb_bh = bh;
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001567 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07001568 }
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001569 }
1570
1571 /* call ocfs2_add_branch to add the final part of the tree with
1572 * the new data. */
1573 mlog(0, "add branch. bh = %p\n", bh);
Joel Beckerd401dc12009-02-13 02:24:10 -08001574 ret = ocfs2_add_branch(handle, et, bh, last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001575 meta_ac);
1576 if (ret < 0) {
1577 mlog_errno(ret);
1578 goto out;
1579 }
1580
1581out:
1582 if (final_depth)
1583 *final_depth = depth;
1584 brelse(bh);
1585 return ret;
1586}
1587
1588/*
Mark Fashehdcd05382007-01-16 11:32:23 -08001589 * This function will discard the rightmost extent record.
1590 */
1591static void ocfs2_shift_records_right(struct ocfs2_extent_list *el)
1592{
1593 int next_free = le16_to_cpu(el->l_next_free_rec);
1594 int count = le16_to_cpu(el->l_count);
1595 unsigned int num_bytes;
1596
1597 BUG_ON(!next_free);
1598 /* This will cause us to go off the end of our extent list. */
1599 BUG_ON(next_free >= count);
1600
1601 num_bytes = sizeof(struct ocfs2_extent_rec) * next_free;
1602
1603 memmove(&el->l_recs[1], &el->l_recs[0], num_bytes);
1604}
1605
1606static void ocfs2_rotate_leaf(struct ocfs2_extent_list *el,
1607 struct ocfs2_extent_rec *insert_rec)
1608{
1609 int i, insert_index, next_free, has_empty, num_bytes;
1610 u32 insert_cpos = le32_to_cpu(insert_rec->e_cpos);
1611 struct ocfs2_extent_rec *rec;
1612
1613 next_free = le16_to_cpu(el->l_next_free_rec);
1614 has_empty = ocfs2_is_empty_extent(&el->l_recs[0]);
1615
1616 BUG_ON(!next_free);
1617
1618 /* The tree code before us didn't allow enough room in the leaf. */
Julia Lawallb1f35502008-03-04 15:21:05 -08001619 BUG_ON(el->l_next_free_rec == el->l_count && !has_empty);
Mark Fashehdcd05382007-01-16 11:32:23 -08001620
1621 /*
1622 * The easiest way to approach this is to just remove the
1623 * empty extent and temporarily decrement next_free.
1624 */
1625 if (has_empty) {
1626 /*
1627 * If next_free was 1 (only an empty extent), this
1628 * loop won't execute, which is fine. We still want
1629 * the decrement above to happen.
1630 */
1631 for(i = 0; i < (next_free - 1); i++)
1632 el->l_recs[i] = el->l_recs[i+1];
1633
1634 next_free--;
1635 }
1636
1637 /*
1638 * Figure out what the new record index should be.
1639 */
1640 for(i = 0; i < next_free; i++) {
1641 rec = &el->l_recs[i];
1642
1643 if (insert_cpos < le32_to_cpu(rec->e_cpos))
1644 break;
1645 }
1646 insert_index = i;
1647
1648 mlog(0, "ins %u: index %d, has_empty %d, next_free %d, count %d\n",
1649 insert_cpos, insert_index, has_empty, next_free, le16_to_cpu(el->l_count));
1650
1651 BUG_ON(insert_index < 0);
1652 BUG_ON(insert_index >= le16_to_cpu(el->l_count));
1653 BUG_ON(insert_index > next_free);
1654
1655 /*
1656 * No need to memmove if we're just adding to the tail.
1657 */
1658 if (insert_index != next_free) {
1659 BUG_ON(next_free >= le16_to_cpu(el->l_count));
1660
1661 num_bytes = next_free - insert_index;
1662 num_bytes *= sizeof(struct ocfs2_extent_rec);
1663 memmove(&el->l_recs[insert_index + 1],
1664 &el->l_recs[insert_index],
1665 num_bytes);
1666 }
1667
1668 /*
1669 * Either we had an empty extent, and need to re-increment or
1670 * there was no empty extent on a non full rightmost leaf node,
1671 * in which case we still need to increment.
1672 */
1673 next_free++;
1674 el->l_next_free_rec = cpu_to_le16(next_free);
1675 /*
1676 * Make sure none of the math above just messed up our tree.
1677 */
1678 BUG_ON(le16_to_cpu(el->l_next_free_rec) > le16_to_cpu(el->l_count));
1679
1680 el->l_recs[insert_index] = *insert_rec;
1681
1682}
1683
Mark Fasheh328d5752007-06-18 10:48:04 -07001684static void ocfs2_remove_empty_extent(struct ocfs2_extent_list *el)
1685{
1686 int size, num_recs = le16_to_cpu(el->l_next_free_rec);
1687
1688 BUG_ON(num_recs == 0);
1689
1690 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
1691 num_recs--;
1692 size = num_recs * sizeof(struct ocfs2_extent_rec);
1693 memmove(&el->l_recs[0], &el->l_recs[1], size);
1694 memset(&el->l_recs[num_recs], 0,
1695 sizeof(struct ocfs2_extent_rec));
1696 el->l_next_free_rec = cpu_to_le16(num_recs);
1697 }
1698}
1699
Mark Fashehdcd05382007-01-16 11:32:23 -08001700/*
1701 * Create an empty extent record .
1702 *
1703 * l_next_free_rec may be updated.
1704 *
1705 * If an empty extent already exists do nothing.
1706 */
1707static void ocfs2_create_empty_extent(struct ocfs2_extent_list *el)
1708{
1709 int next_free = le16_to_cpu(el->l_next_free_rec);
1710
Mark Fashehe48edee2007-03-07 16:46:57 -08001711 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
1712
Mark Fashehdcd05382007-01-16 11:32:23 -08001713 if (next_free == 0)
1714 goto set_and_inc;
1715
1716 if (ocfs2_is_empty_extent(&el->l_recs[0]))
1717 return;
1718
1719 mlog_bug_on_msg(el->l_count == el->l_next_free_rec,
1720 "Asked to create an empty extent in a full list:\n"
1721 "count = %u, tree depth = %u",
1722 le16_to_cpu(el->l_count),
1723 le16_to_cpu(el->l_tree_depth));
1724
1725 ocfs2_shift_records_right(el);
1726
1727set_and_inc:
1728 le16_add_cpu(&el->l_next_free_rec, 1);
1729 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
1730}
1731
1732/*
1733 * For a rotation which involves two leaf nodes, the "root node" is
1734 * the lowest level tree node which contains a path to both leafs. This
1735 * resulting set of information can be used to form a complete "subtree"
1736 *
1737 * This function is passed two full paths from the dinode down to a
1738 * pair of adjacent leaves. It's task is to figure out which path
1739 * index contains the subtree root - this can be the root index itself
1740 * in a worst-case rotation.
1741 *
1742 * The array index of the subtree root is passed back.
1743 */
Tao Ma38a04e42009-11-30 14:32:19 +08001744int ocfs2_find_subtree_root(struct ocfs2_extent_tree *et,
1745 struct ocfs2_path *left,
1746 struct ocfs2_path *right)
Mark Fashehdcd05382007-01-16 11:32:23 -08001747{
1748 int i = 0;
1749
1750 /*
1751 * Check that the caller passed in two paths from the same tree.
1752 */
1753 BUG_ON(path_root_bh(left) != path_root_bh(right));
1754
1755 do {
1756 i++;
1757
1758 /*
1759 * The caller didn't pass two adjacent paths.
1760 */
1761 mlog_bug_on_msg(i > left->p_tree_depth,
Joel Becker7dc02802009-02-12 19:20:13 -08001762 "Owner %llu, left depth %u, right depth %u\n"
Mark Fashehdcd05382007-01-16 11:32:23 -08001763 "left leaf blk %llu, right leaf blk %llu\n",
Joel Becker7dc02802009-02-12 19:20:13 -08001764 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
1765 left->p_tree_depth, right->p_tree_depth,
Mark Fashehdcd05382007-01-16 11:32:23 -08001766 (unsigned long long)path_leaf_bh(left)->b_blocknr,
1767 (unsigned long long)path_leaf_bh(right)->b_blocknr);
1768 } while (left->p_node[i].bh->b_blocknr ==
1769 right->p_node[i].bh->b_blocknr);
1770
1771 return i - 1;
1772}
1773
1774typedef void (path_insert_t)(void *, struct buffer_head *);
1775
1776/*
1777 * Traverse a btree path in search of cpos, starting at root_el.
1778 *
1779 * This code can be called with a cpos larger than the tree, in which
1780 * case it will return the rightmost path.
1781 */
Joel Beckerfacdb772009-02-12 18:08:48 -08001782static int __ocfs2_find_path(struct ocfs2_caching_info *ci,
Mark Fashehdcd05382007-01-16 11:32:23 -08001783 struct ocfs2_extent_list *root_el, u32 cpos,
1784 path_insert_t *func, void *data)
1785{
1786 int i, ret = 0;
1787 u32 range;
1788 u64 blkno;
1789 struct buffer_head *bh = NULL;
1790 struct ocfs2_extent_block *eb;
1791 struct ocfs2_extent_list *el;
1792 struct ocfs2_extent_rec *rec;
Mark Fashehdcd05382007-01-16 11:32:23 -08001793
1794 el = root_el;
1795 while (el->l_tree_depth) {
1796 if (le16_to_cpu(el->l_next_free_rec) == 0) {
Joel Beckerfacdb772009-02-12 18:08:48 -08001797 ocfs2_error(ocfs2_metadata_cache_get_super(ci),
1798 "Owner %llu has empty extent list at "
Mark Fashehdcd05382007-01-16 11:32:23 -08001799 "depth %u\n",
Joel Beckerfacdb772009-02-12 18:08:48 -08001800 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08001801 le16_to_cpu(el->l_tree_depth));
1802 ret = -EROFS;
1803 goto out;
1804
1805 }
1806
1807 for(i = 0; i < le16_to_cpu(el->l_next_free_rec) - 1; i++) {
1808 rec = &el->l_recs[i];
1809
1810 /*
1811 * In the case that cpos is off the allocation
1812 * tree, this should just wind up returning the
1813 * rightmost record.
1814 */
1815 range = le32_to_cpu(rec->e_cpos) +
Mark Fashehe48edee2007-03-07 16:46:57 -08001816 ocfs2_rec_clusters(el, rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08001817 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
1818 break;
1819 }
1820
1821 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
1822 if (blkno == 0) {
Joel Beckerfacdb772009-02-12 18:08:48 -08001823 ocfs2_error(ocfs2_metadata_cache_get_super(ci),
1824 "Owner %llu has bad blkno in extent list "
Mark Fashehdcd05382007-01-16 11:32:23 -08001825 "at depth %u (index %d)\n",
Joel Beckerfacdb772009-02-12 18:08:48 -08001826 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08001827 le16_to_cpu(el->l_tree_depth), i);
1828 ret = -EROFS;
1829 goto out;
1830 }
1831
1832 brelse(bh);
1833 bh = NULL;
Joel Beckerfacdb772009-02-12 18:08:48 -08001834 ret = ocfs2_read_extent_block(ci, blkno, &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08001835 if (ret) {
1836 mlog_errno(ret);
1837 goto out;
1838 }
1839
1840 eb = (struct ocfs2_extent_block *) bh->b_data;
1841 el = &eb->h_list;
Mark Fashehdcd05382007-01-16 11:32:23 -08001842
1843 if (le16_to_cpu(el->l_next_free_rec) >
1844 le16_to_cpu(el->l_count)) {
Joel Beckerfacdb772009-02-12 18:08:48 -08001845 ocfs2_error(ocfs2_metadata_cache_get_super(ci),
1846 "Owner %llu has bad count in extent list "
Mark Fashehdcd05382007-01-16 11:32:23 -08001847 "at block %llu (next free=%u, count=%u)\n",
Joel Beckerfacdb772009-02-12 18:08:48 -08001848 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08001849 (unsigned long long)bh->b_blocknr,
1850 le16_to_cpu(el->l_next_free_rec),
1851 le16_to_cpu(el->l_count));
1852 ret = -EROFS;
1853 goto out;
1854 }
1855
1856 if (func)
1857 func(data, bh);
1858 }
1859
1860out:
1861 /*
1862 * Catch any trailing bh that the loop didn't handle.
1863 */
1864 brelse(bh);
1865
1866 return ret;
1867}
1868
1869/*
1870 * Given an initialized path (that is, it has a valid root extent
1871 * list), this function will traverse the btree in search of the path
1872 * which would contain cpos.
1873 *
1874 * The path traveled is recorded in the path structure.
1875 *
1876 * Note that this will not do any comparisons on leaf node extent
1877 * records, so it will work fine in the case that we just added a tree
1878 * branch.
1879 */
1880struct find_path_data {
1881 int index;
1882 struct ocfs2_path *path;
1883};
1884static void find_path_ins(void *data, struct buffer_head *bh)
1885{
1886 struct find_path_data *fp = data;
1887
1888 get_bh(bh);
1889 ocfs2_path_insert_eb(fp->path, fp->index, bh);
1890 fp->index++;
1891}
Tao Mae2e9f602009-08-18 11:22:34 +08001892int ocfs2_find_path(struct ocfs2_caching_info *ci,
1893 struct ocfs2_path *path, u32 cpos)
Mark Fashehdcd05382007-01-16 11:32:23 -08001894{
1895 struct find_path_data data;
1896
1897 data.index = 1;
1898 data.path = path;
Joel Beckerfacdb772009-02-12 18:08:48 -08001899 return __ocfs2_find_path(ci, path_root_el(path), cpos,
Mark Fashehdcd05382007-01-16 11:32:23 -08001900 find_path_ins, &data);
1901}
1902
1903static void find_leaf_ins(void *data, struct buffer_head *bh)
1904{
1905 struct ocfs2_extent_block *eb =(struct ocfs2_extent_block *)bh->b_data;
1906 struct ocfs2_extent_list *el = &eb->h_list;
1907 struct buffer_head **ret = data;
1908
1909 /* We want to retain only the leaf block. */
1910 if (le16_to_cpu(el->l_tree_depth) == 0) {
1911 get_bh(bh);
1912 *ret = bh;
1913 }
1914}
1915/*
1916 * Find the leaf block in the tree which would contain cpos. No
1917 * checking of the actual leaf is done.
1918 *
1919 * Some paths want to call this instead of allocating a path structure
1920 * and calling ocfs2_find_path().
1921 *
1922 * This function doesn't handle non btree extent lists.
1923 */
Joel Beckerfacdb772009-02-12 18:08:48 -08001924int ocfs2_find_leaf(struct ocfs2_caching_info *ci,
1925 struct ocfs2_extent_list *root_el, u32 cpos,
1926 struct buffer_head **leaf_bh)
Mark Fashehdcd05382007-01-16 11:32:23 -08001927{
1928 int ret;
1929 struct buffer_head *bh = NULL;
1930
Joel Beckerfacdb772009-02-12 18:08:48 -08001931 ret = __ocfs2_find_path(ci, root_el, cpos, find_leaf_ins, &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08001932 if (ret) {
1933 mlog_errno(ret);
1934 goto out;
1935 }
1936
1937 *leaf_bh = bh;
1938out:
1939 return ret;
1940}
1941
1942/*
1943 * Adjust the adjacent records (left_rec, right_rec) involved in a rotation.
1944 *
1945 * Basically, we've moved stuff around at the bottom of the tree and
1946 * we need to fix up the extent records above the changes to reflect
1947 * the new changes.
1948 *
1949 * left_rec: the record on the left.
1950 * left_child_el: is the child list pointed to by left_rec
1951 * right_rec: the record to the right of left_rec
1952 * right_child_el: is the child list pointed to by right_rec
1953 *
1954 * By definition, this only works on interior nodes.
1955 */
1956static void ocfs2_adjust_adjacent_records(struct ocfs2_extent_rec *left_rec,
1957 struct ocfs2_extent_list *left_child_el,
1958 struct ocfs2_extent_rec *right_rec,
1959 struct ocfs2_extent_list *right_child_el)
1960{
1961 u32 left_clusters, right_end;
1962
1963 /*
1964 * Interior nodes never have holes. Their cpos is the cpos of
1965 * the leftmost record in their child list. Their cluster
1966 * count covers the full theoretical range of their child list
1967 * - the range between their cpos and the cpos of the record
1968 * immediately to their right.
1969 */
1970 left_clusters = le32_to_cpu(right_child_el->l_recs[0].e_cpos);
Tao Ma82e12642009-07-23 08:12:58 +08001971 if (!ocfs2_rec_clusters(right_child_el, &right_child_el->l_recs[0])) {
1972 BUG_ON(right_child_el->l_tree_depth);
Mark Fasheh328d5752007-06-18 10:48:04 -07001973 BUG_ON(le16_to_cpu(right_child_el->l_next_free_rec) <= 1);
1974 left_clusters = le32_to_cpu(right_child_el->l_recs[1].e_cpos);
1975 }
Mark Fashehdcd05382007-01-16 11:32:23 -08001976 left_clusters -= le32_to_cpu(left_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001977 left_rec->e_int_clusters = cpu_to_le32(left_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08001978
1979 /*
1980 * Calculate the rightmost cluster count boundary before
Mark Fashehe48edee2007-03-07 16:46:57 -08001981 * moving cpos - we will need to adjust clusters after
Mark Fashehdcd05382007-01-16 11:32:23 -08001982 * updating e_cpos to keep the same highest cluster count.
1983 */
1984 right_end = le32_to_cpu(right_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001985 right_end += le32_to_cpu(right_rec->e_int_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08001986
1987 right_rec->e_cpos = left_rec->e_cpos;
1988 le32_add_cpu(&right_rec->e_cpos, left_clusters);
1989
1990 right_end -= le32_to_cpu(right_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001991 right_rec->e_int_clusters = cpu_to_le32(right_end);
Mark Fashehdcd05382007-01-16 11:32:23 -08001992}
1993
1994/*
1995 * Adjust the adjacent root node records involved in a
1996 * rotation. left_el_blkno is passed in as a key so that we can easily
1997 * find it's index in the root list.
1998 */
1999static void ocfs2_adjust_root_records(struct ocfs2_extent_list *root_el,
2000 struct ocfs2_extent_list *left_el,
2001 struct ocfs2_extent_list *right_el,
2002 u64 left_el_blkno)
2003{
2004 int i;
2005
2006 BUG_ON(le16_to_cpu(root_el->l_tree_depth) <=
2007 le16_to_cpu(left_el->l_tree_depth));
2008
2009 for(i = 0; i < le16_to_cpu(root_el->l_next_free_rec) - 1; i++) {
2010 if (le64_to_cpu(root_el->l_recs[i].e_blkno) == left_el_blkno)
2011 break;
2012 }
2013
2014 /*
2015 * The path walking code should have never returned a root and
2016 * two paths which are not adjacent.
2017 */
2018 BUG_ON(i >= (le16_to_cpu(root_el->l_next_free_rec) - 1));
2019
2020 ocfs2_adjust_adjacent_records(&root_el->l_recs[i], left_el,
2021 &root_el->l_recs[i + 1], right_el);
2022}
2023
2024/*
2025 * We've changed a leaf block (in right_path) and need to reflect that
2026 * change back up the subtree.
2027 *
2028 * This happens in multiple places:
2029 * - When we've moved an extent record from the left path leaf to the right
2030 * path leaf to make room for an empty extent in the left path leaf.
2031 * - When our insert into the right path leaf is at the leftmost edge
2032 * and requires an update of the path immediately to it's left. This
2033 * can occur at the end of some types of rotation and appending inserts.
Tao Ma677b9752008-01-30 14:21:05 +08002034 * - When we've adjusted the last extent record in the left path leaf and the
2035 * 1st extent record in the right path leaf during cross extent block merge.
Mark Fashehdcd05382007-01-16 11:32:23 -08002036 */
Joel Becker4619c732009-02-12 19:02:36 -08002037static void ocfs2_complete_edge_insert(handle_t *handle,
Mark Fashehdcd05382007-01-16 11:32:23 -08002038 struct ocfs2_path *left_path,
2039 struct ocfs2_path *right_path,
2040 int subtree_index)
2041{
Joel Beckerec20cec2010-03-19 14:13:52 -07002042 int i, idx;
Mark Fashehdcd05382007-01-16 11:32:23 -08002043 struct ocfs2_extent_list *el, *left_el, *right_el;
2044 struct ocfs2_extent_rec *left_rec, *right_rec;
2045 struct buffer_head *root_bh = left_path->p_node[subtree_index].bh;
2046
2047 /*
2048 * Update the counts and position values within all the
2049 * interior nodes to reflect the leaf rotation we just did.
2050 *
2051 * The root node is handled below the loop.
2052 *
2053 * We begin the loop with right_el and left_el pointing to the
2054 * leaf lists and work our way up.
2055 *
2056 * NOTE: within this loop, left_el and right_el always refer
2057 * to the *child* lists.
2058 */
2059 left_el = path_leaf_el(left_path);
2060 right_el = path_leaf_el(right_path);
2061 for(i = left_path->p_tree_depth - 1; i > subtree_index; i--) {
2062 mlog(0, "Adjust records at index %u\n", i);
2063
2064 /*
2065 * One nice property of knowing that all of these
2066 * nodes are below the root is that we only deal with
2067 * the leftmost right node record and the rightmost
2068 * left node record.
2069 */
2070 el = left_path->p_node[i].el;
2071 idx = le16_to_cpu(left_el->l_next_free_rec) - 1;
2072 left_rec = &el->l_recs[idx];
2073
2074 el = right_path->p_node[i].el;
2075 right_rec = &el->l_recs[0];
2076
2077 ocfs2_adjust_adjacent_records(left_rec, left_el, right_rec,
2078 right_el);
2079
Joel Beckerec20cec2010-03-19 14:13:52 -07002080 ocfs2_journal_dirty(handle, left_path->p_node[i].bh);
2081 ocfs2_journal_dirty(handle, right_path->p_node[i].bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002082
2083 /*
2084 * Setup our list pointers now so that the current
2085 * parents become children in the next iteration.
2086 */
2087 left_el = left_path->p_node[i].el;
2088 right_el = right_path->p_node[i].el;
2089 }
2090
2091 /*
2092 * At the root node, adjust the two adjacent records which
2093 * begin our path to the leaves.
2094 */
2095
2096 el = left_path->p_node[subtree_index].el;
2097 left_el = left_path->p_node[subtree_index + 1].el;
2098 right_el = right_path->p_node[subtree_index + 1].el;
2099
2100 ocfs2_adjust_root_records(el, left_el, right_el,
2101 left_path->p_node[subtree_index + 1].bh->b_blocknr);
2102
2103 root_bh = left_path->p_node[subtree_index].bh;
2104
Joel Beckerec20cec2010-03-19 14:13:52 -07002105 ocfs2_journal_dirty(handle, root_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002106}
2107
Joel Becker5c601ab2009-02-12 19:10:13 -08002108static int ocfs2_rotate_subtree_right(handle_t *handle,
2109 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08002110 struct ocfs2_path *left_path,
2111 struct ocfs2_path *right_path,
2112 int subtree_index)
2113{
2114 int ret, i;
2115 struct buffer_head *right_leaf_bh;
2116 struct buffer_head *left_leaf_bh = NULL;
2117 struct buffer_head *root_bh;
2118 struct ocfs2_extent_list *right_el, *left_el;
2119 struct ocfs2_extent_rec move_rec;
2120
2121 left_leaf_bh = path_leaf_bh(left_path);
2122 left_el = path_leaf_el(left_path);
2123
2124 if (left_el->l_next_free_rec != left_el->l_count) {
Joel Becker5c601ab2009-02-12 19:10:13 -08002125 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08002126 "Inode %llu has non-full interior leaf node %llu"
2127 "(next free = %u)",
Joel Becker5c601ab2009-02-12 19:10:13 -08002128 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08002129 (unsigned long long)left_leaf_bh->b_blocknr,
2130 le16_to_cpu(left_el->l_next_free_rec));
2131 return -EROFS;
2132 }
2133
2134 /*
2135 * This extent block may already have an empty record, so we
2136 * return early if so.
2137 */
2138 if (ocfs2_is_empty_extent(&left_el->l_recs[0]))
2139 return 0;
2140
2141 root_bh = left_path->p_node[subtree_index].bh;
2142 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
2143
Joel Becker5c601ab2009-02-12 19:10:13 -08002144 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07002145 subtree_index);
Mark Fashehdcd05382007-01-16 11:32:23 -08002146 if (ret) {
2147 mlog_errno(ret);
2148 goto out;
2149 }
2150
2151 for(i = subtree_index + 1; i < path_num_items(right_path); i++) {
Joel Becker5c601ab2009-02-12 19:10:13 -08002152 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002153 right_path, i);
Mark Fashehdcd05382007-01-16 11:32:23 -08002154 if (ret) {
2155 mlog_errno(ret);
2156 goto out;
2157 }
2158
Joel Becker5c601ab2009-02-12 19:10:13 -08002159 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002160 left_path, i);
Mark Fashehdcd05382007-01-16 11:32:23 -08002161 if (ret) {
2162 mlog_errno(ret);
2163 goto out;
2164 }
2165 }
2166
2167 right_leaf_bh = path_leaf_bh(right_path);
2168 right_el = path_leaf_el(right_path);
2169
2170 /* This is a code error, not a disk corruption. */
2171 mlog_bug_on_msg(!right_el->l_next_free_rec, "Inode %llu: Rotate fails "
2172 "because rightmost leaf block %llu is empty\n",
Joel Becker5c601ab2009-02-12 19:10:13 -08002173 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08002174 (unsigned long long)right_leaf_bh->b_blocknr);
2175
2176 ocfs2_create_empty_extent(right_el);
2177
Joel Beckerec20cec2010-03-19 14:13:52 -07002178 ocfs2_journal_dirty(handle, right_leaf_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002179
2180 /* Do the copy now. */
2181 i = le16_to_cpu(left_el->l_next_free_rec) - 1;
2182 move_rec = left_el->l_recs[i];
2183 right_el->l_recs[0] = move_rec;
2184
2185 /*
2186 * Clear out the record we just copied and shift everything
2187 * over, leaving an empty extent in the left leaf.
2188 *
2189 * We temporarily subtract from next_free_rec so that the
2190 * shift will lose the tail record (which is now defunct).
2191 */
2192 le16_add_cpu(&left_el->l_next_free_rec, -1);
2193 ocfs2_shift_records_right(left_el);
2194 memset(&left_el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2195 le16_add_cpu(&left_el->l_next_free_rec, 1);
2196
Joel Beckerec20cec2010-03-19 14:13:52 -07002197 ocfs2_journal_dirty(handle, left_leaf_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002198
Joel Becker4619c732009-02-12 19:02:36 -08002199 ocfs2_complete_edge_insert(handle, left_path, right_path,
2200 subtree_index);
Mark Fashehdcd05382007-01-16 11:32:23 -08002201
2202out:
2203 return ret;
2204}
2205
2206/*
2207 * Given a full path, determine what cpos value would return us a path
2208 * containing the leaf immediately to the left of the current one.
2209 *
2210 * Will return zero if the path passed in is already the leftmost path.
2211 */
2212static int ocfs2_find_cpos_for_left_leaf(struct super_block *sb,
2213 struct ocfs2_path *path, u32 *cpos)
2214{
2215 int i, j, ret = 0;
2216 u64 blkno;
2217 struct ocfs2_extent_list *el;
2218
Mark Fashehe48edee2007-03-07 16:46:57 -08002219 BUG_ON(path->p_tree_depth == 0);
2220
Mark Fashehdcd05382007-01-16 11:32:23 -08002221 *cpos = 0;
2222
2223 blkno = path_leaf_bh(path)->b_blocknr;
2224
2225 /* Start at the tree node just above the leaf and work our way up. */
2226 i = path->p_tree_depth - 1;
2227 while (i >= 0) {
2228 el = path->p_node[i].el;
2229
2230 /*
2231 * Find the extent record just before the one in our
2232 * path.
2233 */
2234 for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) {
2235 if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) {
2236 if (j == 0) {
2237 if (i == 0) {
2238 /*
2239 * We've determined that the
2240 * path specified is already
2241 * the leftmost one - return a
2242 * cpos of zero.
2243 */
2244 goto out;
2245 }
2246 /*
2247 * The leftmost record points to our
2248 * leaf - we need to travel up the
2249 * tree one level.
2250 */
2251 goto next_node;
2252 }
2253
2254 *cpos = le32_to_cpu(el->l_recs[j - 1].e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08002255 *cpos = *cpos + ocfs2_rec_clusters(el,
2256 &el->l_recs[j - 1]);
2257 *cpos = *cpos - 1;
Mark Fashehdcd05382007-01-16 11:32:23 -08002258 goto out;
2259 }
2260 }
2261
2262 /*
2263 * If we got here, we never found a valid node where
2264 * the tree indicated one should be.
2265 */
2266 ocfs2_error(sb,
2267 "Invalid extent tree at extent block %llu\n",
2268 (unsigned long long)blkno);
2269 ret = -EROFS;
2270 goto out;
2271
2272next_node:
2273 blkno = path->p_node[i].bh->b_blocknr;
2274 i--;
2275 }
2276
2277out:
2278 return ret;
2279}
2280
Mark Fasheh328d5752007-06-18 10:48:04 -07002281/*
2282 * Extend the transaction by enough credits to complete the rotation,
2283 * and still leave at least the original number of credits allocated
2284 * to this transaction.
2285 */
Mark Fashehdcd05382007-01-16 11:32:23 -08002286static int ocfs2_extend_rotate_transaction(handle_t *handle, int subtree_depth,
Mark Fasheh328d5752007-06-18 10:48:04 -07002287 int op_credits,
Mark Fashehdcd05382007-01-16 11:32:23 -08002288 struct ocfs2_path *path)
2289{
Tao Mac901fb02010-04-26 14:34:57 +08002290 int ret = 0;
Mark Fasheh328d5752007-06-18 10:48:04 -07002291 int credits = (path->p_tree_depth - subtree_depth) * 2 + 1 + op_credits;
Mark Fashehdcd05382007-01-16 11:32:23 -08002292
Tao Mac901fb02010-04-26 14:34:57 +08002293 if (handle->h_buffer_credits < credits)
Tao Mac18b8122009-08-18 11:44:07 +08002294 ret = ocfs2_extend_trans(handle,
2295 credits - handle->h_buffer_credits);
Tao Mac18b8122009-08-18 11:44:07 +08002296
Tao Mac901fb02010-04-26 14:34:57 +08002297 return ret;
Mark Fashehdcd05382007-01-16 11:32:23 -08002298}
2299
2300/*
2301 * Trap the case where we're inserting into the theoretical range past
2302 * the _actual_ left leaf range. Otherwise, we'll rotate a record
2303 * whose cpos is less than ours into the right leaf.
2304 *
2305 * It's only necessary to look at the rightmost record of the left
2306 * leaf because the logic that calls us should ensure that the
2307 * theoretical ranges in the path components above the leaves are
2308 * correct.
2309 */
2310static int ocfs2_rotate_requires_path_adjustment(struct ocfs2_path *left_path,
2311 u32 insert_cpos)
2312{
2313 struct ocfs2_extent_list *left_el;
2314 struct ocfs2_extent_rec *rec;
2315 int next_free;
2316
2317 left_el = path_leaf_el(left_path);
2318 next_free = le16_to_cpu(left_el->l_next_free_rec);
2319 rec = &left_el->l_recs[next_free - 1];
2320
2321 if (insert_cpos > le32_to_cpu(rec->e_cpos))
2322 return 1;
2323 return 0;
2324}
2325
Mark Fasheh328d5752007-06-18 10:48:04 -07002326static int ocfs2_leftmost_rec_contains(struct ocfs2_extent_list *el, u32 cpos)
2327{
2328 int next_free = le16_to_cpu(el->l_next_free_rec);
2329 unsigned int range;
2330 struct ocfs2_extent_rec *rec;
2331
2332 if (next_free == 0)
2333 return 0;
2334
2335 rec = &el->l_recs[0];
2336 if (ocfs2_is_empty_extent(rec)) {
2337 /* Empty list. */
2338 if (next_free == 1)
2339 return 0;
2340 rec = &el->l_recs[1];
2341 }
2342
2343 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
2344 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
2345 return 1;
2346 return 0;
2347}
2348
Mark Fashehdcd05382007-01-16 11:32:23 -08002349/*
2350 * Rotate all the records in a btree right one record, starting at insert_cpos.
2351 *
2352 * The path to the rightmost leaf should be passed in.
2353 *
2354 * The array is assumed to be large enough to hold an entire path (tree depth).
2355 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002356 * Upon successful return from this function:
Mark Fashehdcd05382007-01-16 11:32:23 -08002357 *
2358 * - The 'right_path' array will contain a path to the leaf block
2359 * whose range contains e_cpos.
2360 * - That leaf block will have a single empty extent in list index 0.
2361 * - In the case that the rotation requires a post-insert update,
2362 * *ret_left_path will contain a valid path which can be passed to
2363 * ocfs2_insert_path().
2364 */
Joel Becker1bbf0b82009-02-12 19:42:08 -08002365static int ocfs2_rotate_tree_right(handle_t *handle,
Joel Becker5c601ab2009-02-12 19:10:13 -08002366 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002367 enum ocfs2_split_type split,
Mark Fashehdcd05382007-01-16 11:32:23 -08002368 u32 insert_cpos,
2369 struct ocfs2_path *right_path,
2370 struct ocfs2_path **ret_left_path)
2371{
Mark Fasheh328d5752007-06-18 10:48:04 -07002372 int ret, start, orig_credits = handle->h_buffer_credits;
Mark Fashehdcd05382007-01-16 11:32:23 -08002373 u32 cpos;
2374 struct ocfs2_path *left_path = NULL;
Joel Becker5c601ab2009-02-12 19:10:13 -08002375 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Mark Fashehdcd05382007-01-16 11:32:23 -08002376
2377 *ret_left_path = NULL;
2378
Joel Beckerffdd7a52008-10-17 22:32:01 -07002379 left_path = ocfs2_new_path_from_path(right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08002380 if (!left_path) {
2381 ret = -ENOMEM;
2382 mlog_errno(ret);
2383 goto out;
2384 }
2385
Joel Becker5c601ab2009-02-12 19:10:13 -08002386 ret = ocfs2_find_cpos_for_left_leaf(sb, right_path, &cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002387 if (ret) {
2388 mlog_errno(ret);
2389 goto out;
2390 }
2391
2392 mlog(0, "Insert: %u, first left path cpos: %u\n", insert_cpos, cpos);
2393
2394 /*
2395 * What we want to do here is:
2396 *
2397 * 1) Start with the rightmost path.
2398 *
2399 * 2) Determine a path to the leaf block directly to the left
2400 * of that leaf.
2401 *
2402 * 3) Determine the 'subtree root' - the lowest level tree node
2403 * which contains a path to both leaves.
2404 *
2405 * 4) Rotate the subtree.
2406 *
2407 * 5) Find the next subtree by considering the left path to be
2408 * the new right path.
2409 *
2410 * The check at the top of this while loop also accepts
2411 * insert_cpos == cpos because cpos is only a _theoretical_
2412 * value to get us the left path - insert_cpos might very well
2413 * be filling that hole.
2414 *
2415 * Stop at a cpos of '0' because we either started at the
2416 * leftmost branch (i.e., a tree with one branch and a
2417 * rotation inside of it), or we've gone as far as we can in
2418 * rotating subtrees.
2419 */
2420 while (cpos && insert_cpos <= cpos) {
2421 mlog(0, "Rotating a tree: ins. cpos: %u, left path cpos: %u\n",
2422 insert_cpos, cpos);
2423
Joel Becker5c601ab2009-02-12 19:10:13 -08002424 ret = ocfs2_find_path(et->et_ci, left_path, cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002425 if (ret) {
2426 mlog_errno(ret);
2427 goto out;
2428 }
2429
2430 mlog_bug_on_msg(path_leaf_bh(left_path) ==
2431 path_leaf_bh(right_path),
Joel Becker5c601ab2009-02-12 19:10:13 -08002432 "Owner %llu: error during insert of %u "
Mark Fashehdcd05382007-01-16 11:32:23 -08002433 "(left path cpos %u) results in two identical "
2434 "paths ending at %llu\n",
Joel Becker5c601ab2009-02-12 19:10:13 -08002435 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
2436 insert_cpos, cpos,
Mark Fashehdcd05382007-01-16 11:32:23 -08002437 (unsigned long long)
2438 path_leaf_bh(left_path)->b_blocknr);
2439
Mark Fasheh328d5752007-06-18 10:48:04 -07002440 if (split == SPLIT_NONE &&
2441 ocfs2_rotate_requires_path_adjustment(left_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08002442 insert_cpos)) {
Mark Fashehdcd05382007-01-16 11:32:23 -08002443
2444 /*
2445 * We've rotated the tree as much as we
2446 * should. The rest is up to
2447 * ocfs2_insert_path() to complete, after the
2448 * record insertion. We indicate this
2449 * situation by returning the left path.
2450 *
2451 * The reason we don't adjust the records here
2452 * before the record insert is that an error
2453 * later might break the rule where a parent
2454 * record e_cpos will reflect the actual
2455 * e_cpos of the 1st nonempty record of the
2456 * child list.
2457 */
2458 *ret_left_path = left_path;
2459 goto out_ret_path;
2460 }
2461
Joel Becker7dc02802009-02-12 19:20:13 -08002462 start = ocfs2_find_subtree_root(et, left_path, right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08002463
2464 mlog(0, "Subtree root at index %d (blk %llu, depth %d)\n",
2465 start,
2466 (unsigned long long) right_path->p_node[start].bh->b_blocknr,
2467 right_path->p_tree_depth);
2468
2469 ret = ocfs2_extend_rotate_transaction(handle, start,
Mark Fasheh328d5752007-06-18 10:48:04 -07002470 orig_credits, right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08002471 if (ret) {
2472 mlog_errno(ret);
2473 goto out;
2474 }
2475
Joel Becker5c601ab2009-02-12 19:10:13 -08002476 ret = ocfs2_rotate_subtree_right(handle, et, left_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08002477 right_path, start);
2478 if (ret) {
2479 mlog_errno(ret);
2480 goto out;
2481 }
2482
Mark Fasheh328d5752007-06-18 10:48:04 -07002483 if (split != SPLIT_NONE &&
2484 ocfs2_leftmost_rec_contains(path_leaf_el(right_path),
2485 insert_cpos)) {
2486 /*
2487 * A rotate moves the rightmost left leaf
2488 * record over to the leftmost right leaf
2489 * slot. If we're doing an extent split
2490 * instead of a real insert, then we have to
2491 * check that the extent to be split wasn't
2492 * just moved over. If it was, then we can
2493 * exit here, passing left_path back -
2494 * ocfs2_split_extent() is smart enough to
2495 * search both leaves.
2496 */
2497 *ret_left_path = left_path;
2498 goto out_ret_path;
2499 }
2500
Mark Fashehdcd05382007-01-16 11:32:23 -08002501 /*
2502 * There is no need to re-read the next right path
2503 * as we know that it'll be our current left
2504 * path. Optimize by copying values instead.
2505 */
2506 ocfs2_mv_path(right_path, left_path);
2507
Joel Becker5c601ab2009-02-12 19:10:13 -08002508 ret = ocfs2_find_cpos_for_left_leaf(sb, right_path, &cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002509 if (ret) {
2510 mlog_errno(ret);
2511 goto out;
2512 }
2513 }
2514
2515out:
2516 ocfs2_free_path(left_path);
2517
2518out_ret_path:
2519 return ret;
2520}
2521
Joel Becker09106ba2009-02-12 19:43:57 -08002522static int ocfs2_update_edge_lengths(handle_t *handle,
2523 struct ocfs2_extent_tree *et,
Tao Ma3c5e1062009-07-21 15:42:05 +08002524 int subtree_index, struct ocfs2_path *path)
Mark Fasheh328d5752007-06-18 10:48:04 -07002525{
Tao Ma3c5e1062009-07-21 15:42:05 +08002526 int i, idx, ret;
Mark Fasheh328d5752007-06-18 10:48:04 -07002527 struct ocfs2_extent_rec *rec;
2528 struct ocfs2_extent_list *el;
2529 struct ocfs2_extent_block *eb;
2530 u32 range;
2531
Tao Ma3c5e1062009-07-21 15:42:05 +08002532 /*
2533 * In normal tree rotation process, we will never touch the
2534 * tree branch above subtree_index and ocfs2_extend_rotate_transaction
2535 * doesn't reserve the credits for them either.
2536 *
2537 * But we do have a special case here which will update the rightmost
2538 * records for all the bh in the path.
2539 * So we have to allocate extra credits and access them.
2540 */
Tao Mac901fb02010-04-26 14:34:57 +08002541 ret = ocfs2_extend_trans(handle, subtree_index);
Tao Ma3c5e1062009-07-21 15:42:05 +08002542 if (ret) {
2543 mlog_errno(ret);
2544 goto out;
2545 }
2546
Joel Becker09106ba2009-02-12 19:43:57 -08002547 ret = ocfs2_journal_access_path(et->et_ci, handle, path);
Tao Ma3c5e1062009-07-21 15:42:05 +08002548 if (ret) {
2549 mlog_errno(ret);
2550 goto out;
2551 }
2552
Mark Fasheh328d5752007-06-18 10:48:04 -07002553 /* Path should always be rightmost. */
2554 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
2555 BUG_ON(eb->h_next_leaf_blk != 0ULL);
2556
2557 el = &eb->h_list;
2558 BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0);
2559 idx = le16_to_cpu(el->l_next_free_rec) - 1;
2560 rec = &el->l_recs[idx];
2561 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
2562
2563 for (i = 0; i < path->p_tree_depth; i++) {
2564 el = path->p_node[i].el;
2565 idx = le16_to_cpu(el->l_next_free_rec) - 1;
2566 rec = &el->l_recs[idx];
2567
2568 rec->e_int_clusters = cpu_to_le32(range);
2569 le32_add_cpu(&rec->e_int_clusters, -le32_to_cpu(rec->e_cpos));
2570
2571 ocfs2_journal_dirty(handle, path->p_node[i].bh);
2572 }
Tao Ma3c5e1062009-07-21 15:42:05 +08002573out:
2574 return ret;
Mark Fasheh328d5752007-06-18 10:48:04 -07002575}
2576
Joel Becker6641b0c2009-02-12 18:57:52 -08002577static void ocfs2_unlink_path(handle_t *handle,
2578 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002579 struct ocfs2_cached_dealloc_ctxt *dealloc,
2580 struct ocfs2_path *path, int unlink_start)
2581{
2582 int ret, i;
2583 struct ocfs2_extent_block *eb;
2584 struct ocfs2_extent_list *el;
2585 struct buffer_head *bh;
2586
2587 for(i = unlink_start; i < path_num_items(path); i++) {
2588 bh = path->p_node[i].bh;
2589
2590 eb = (struct ocfs2_extent_block *)bh->b_data;
2591 /*
2592 * Not all nodes might have had their final count
2593 * decremented by the caller - handle this here.
2594 */
2595 el = &eb->h_list;
2596 if (le16_to_cpu(el->l_next_free_rec) > 1) {
2597 mlog(ML_ERROR,
2598 "Inode %llu, attempted to remove extent block "
2599 "%llu with %u records\n",
Joel Becker6641b0c2009-02-12 18:57:52 -08002600 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fasheh328d5752007-06-18 10:48:04 -07002601 (unsigned long long)le64_to_cpu(eb->h_blkno),
2602 le16_to_cpu(el->l_next_free_rec));
2603
2604 ocfs2_journal_dirty(handle, bh);
Joel Becker6641b0c2009-02-12 18:57:52 -08002605 ocfs2_remove_from_cache(et->et_ci, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002606 continue;
2607 }
2608
2609 el->l_next_free_rec = 0;
2610 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2611
2612 ocfs2_journal_dirty(handle, bh);
2613
2614 ret = ocfs2_cache_extent_block_free(dealloc, eb);
2615 if (ret)
2616 mlog_errno(ret);
2617
Joel Becker6641b0c2009-02-12 18:57:52 -08002618 ocfs2_remove_from_cache(et->et_ci, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002619 }
2620}
2621
Joel Becker6641b0c2009-02-12 18:57:52 -08002622static void ocfs2_unlink_subtree(handle_t *handle,
2623 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002624 struct ocfs2_path *left_path,
2625 struct ocfs2_path *right_path,
2626 int subtree_index,
2627 struct ocfs2_cached_dealloc_ctxt *dealloc)
2628{
2629 int i;
2630 struct buffer_head *root_bh = left_path->p_node[subtree_index].bh;
2631 struct ocfs2_extent_list *root_el = left_path->p_node[subtree_index].el;
2632 struct ocfs2_extent_list *el;
2633 struct ocfs2_extent_block *eb;
2634
2635 el = path_leaf_el(left_path);
2636
2637 eb = (struct ocfs2_extent_block *)right_path->p_node[subtree_index + 1].bh->b_data;
2638
2639 for(i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++)
2640 if (root_el->l_recs[i].e_blkno == eb->h_blkno)
2641 break;
2642
2643 BUG_ON(i >= le16_to_cpu(root_el->l_next_free_rec));
2644
2645 memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec));
2646 le16_add_cpu(&root_el->l_next_free_rec, -1);
2647
2648 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
2649 eb->h_next_leaf_blk = 0;
2650
2651 ocfs2_journal_dirty(handle, root_bh);
2652 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
2653
Joel Becker6641b0c2009-02-12 18:57:52 -08002654 ocfs2_unlink_path(handle, et, dealloc, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002655 subtree_index + 1);
2656}
2657
Joel Becker1e2dd632009-02-12 19:45:28 -08002658static int ocfs2_rotate_subtree_left(handle_t *handle,
2659 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002660 struct ocfs2_path *left_path,
2661 struct ocfs2_path *right_path,
2662 int subtree_index,
2663 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Becker1e2dd632009-02-12 19:45:28 -08002664 int *deleted)
Mark Fasheh328d5752007-06-18 10:48:04 -07002665{
2666 int ret, i, del_right_subtree = 0, right_has_empty = 0;
Tao Mae7d4cb62008-08-18 17:38:44 +08002667 struct buffer_head *root_bh, *et_root_bh = path_root_bh(right_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002668 struct ocfs2_extent_list *right_leaf_el, *left_leaf_el;
2669 struct ocfs2_extent_block *eb;
2670
2671 *deleted = 0;
2672
2673 right_leaf_el = path_leaf_el(right_path);
2674 left_leaf_el = path_leaf_el(left_path);
2675 root_bh = left_path->p_node[subtree_index].bh;
2676 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
2677
2678 if (!ocfs2_is_empty_extent(&left_leaf_el->l_recs[0]))
2679 return 0;
2680
2681 eb = (struct ocfs2_extent_block *)path_leaf_bh(right_path)->b_data;
2682 if (ocfs2_is_empty_extent(&right_leaf_el->l_recs[0])) {
2683 /*
2684 * It's legal for us to proceed if the right leaf is
2685 * the rightmost one and it has an empty extent. There
2686 * are two cases to handle - whether the leaf will be
2687 * empty after removal or not. If the leaf isn't empty
2688 * then just remove the empty extent up front. The
2689 * next block will handle empty leaves by flagging
2690 * them for unlink.
2691 *
2692 * Non rightmost leaves will throw -EAGAIN and the
2693 * caller can manually move the subtree and retry.
2694 */
2695
2696 if (eb->h_next_leaf_blk != 0ULL)
2697 return -EAGAIN;
2698
2699 if (le16_to_cpu(right_leaf_el->l_next_free_rec) > 1) {
Joel Becker1e2dd632009-02-12 19:45:28 -08002700 ret = ocfs2_journal_access_eb(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002701 path_leaf_bh(right_path),
2702 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh328d5752007-06-18 10:48:04 -07002703 if (ret) {
2704 mlog_errno(ret);
2705 goto out;
2706 }
2707
2708 ocfs2_remove_empty_extent(right_leaf_el);
2709 } else
2710 right_has_empty = 1;
2711 }
2712
2713 if (eb->h_next_leaf_blk == 0ULL &&
2714 le16_to_cpu(right_leaf_el->l_next_free_rec) == 1) {
2715 /*
2716 * We have to update i_last_eb_blk during the meta
2717 * data delete.
2718 */
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08002719 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07002720 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh328d5752007-06-18 10:48:04 -07002721 if (ret) {
2722 mlog_errno(ret);
2723 goto out;
2724 }
2725
2726 del_right_subtree = 1;
2727 }
2728
2729 /*
2730 * Getting here with an empty extent in the right path implies
2731 * that it's the rightmost path and will be deleted.
2732 */
2733 BUG_ON(right_has_empty && !del_right_subtree);
2734
Joel Becker1e2dd632009-02-12 19:45:28 -08002735 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07002736 subtree_index);
Mark Fasheh328d5752007-06-18 10:48:04 -07002737 if (ret) {
2738 mlog_errno(ret);
2739 goto out;
2740 }
2741
2742 for(i = subtree_index + 1; i < path_num_items(right_path); i++) {
Joel Becker1e2dd632009-02-12 19:45:28 -08002743 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002744 right_path, i);
Mark Fasheh328d5752007-06-18 10:48:04 -07002745 if (ret) {
2746 mlog_errno(ret);
2747 goto out;
2748 }
2749
Joel Becker1e2dd632009-02-12 19:45:28 -08002750 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002751 left_path, i);
Mark Fasheh328d5752007-06-18 10:48:04 -07002752 if (ret) {
2753 mlog_errno(ret);
2754 goto out;
2755 }
2756 }
2757
2758 if (!right_has_empty) {
2759 /*
2760 * Only do this if we're moving a real
2761 * record. Otherwise, the action is delayed until
2762 * after removal of the right path in which case we
2763 * can do a simple shift to remove the empty extent.
2764 */
2765 ocfs2_rotate_leaf(left_leaf_el, &right_leaf_el->l_recs[0]);
2766 memset(&right_leaf_el->l_recs[0], 0,
2767 sizeof(struct ocfs2_extent_rec));
2768 }
2769 if (eb->h_next_leaf_blk == 0ULL) {
2770 /*
2771 * Move recs over to get rid of empty extent, decrease
2772 * next_free. This is allowed to remove the last
2773 * extent in our leaf (setting l_next_free_rec to
2774 * zero) - the delete code below won't care.
2775 */
2776 ocfs2_remove_empty_extent(right_leaf_el);
2777 }
2778
Joel Beckerec20cec2010-03-19 14:13:52 -07002779 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
2780 ocfs2_journal_dirty(handle, path_leaf_bh(right_path));
Mark Fasheh328d5752007-06-18 10:48:04 -07002781
2782 if (del_right_subtree) {
Joel Becker6641b0c2009-02-12 18:57:52 -08002783 ocfs2_unlink_subtree(handle, et, left_path, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002784 subtree_index, dealloc);
Joel Becker09106ba2009-02-12 19:43:57 -08002785 ret = ocfs2_update_edge_lengths(handle, et, subtree_index,
Tao Ma3c5e1062009-07-21 15:42:05 +08002786 left_path);
2787 if (ret) {
2788 mlog_errno(ret);
2789 goto out;
2790 }
Mark Fasheh328d5752007-06-18 10:48:04 -07002791
2792 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
Joel Becker35dc0aa2008-08-20 16:25:06 -07002793 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fasheh328d5752007-06-18 10:48:04 -07002794
2795 /*
2796 * Removal of the extent in the left leaf was skipped
2797 * above so we could delete the right path
2798 * 1st.
2799 */
2800 if (right_has_empty)
2801 ocfs2_remove_empty_extent(left_leaf_el);
2802
Joel Beckerec20cec2010-03-19 14:13:52 -07002803 ocfs2_journal_dirty(handle, et_root_bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002804
2805 *deleted = 1;
2806 } else
Joel Becker4619c732009-02-12 19:02:36 -08002807 ocfs2_complete_edge_insert(handle, left_path, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002808 subtree_index);
2809
2810out:
2811 return ret;
2812}
2813
2814/*
2815 * Given a full path, determine what cpos value would return us a path
2816 * containing the leaf immediately to the right of the current one.
2817 *
2818 * Will return zero if the path passed in is already the rightmost path.
2819 *
2820 * This looks similar, but is subtly different to
2821 * ocfs2_find_cpos_for_left_leaf().
2822 */
Tao Ma38a04e42009-11-30 14:32:19 +08002823int ocfs2_find_cpos_for_right_leaf(struct super_block *sb,
2824 struct ocfs2_path *path, u32 *cpos)
Mark Fasheh328d5752007-06-18 10:48:04 -07002825{
2826 int i, j, ret = 0;
2827 u64 blkno;
2828 struct ocfs2_extent_list *el;
2829
2830 *cpos = 0;
2831
2832 if (path->p_tree_depth == 0)
2833 return 0;
2834
2835 blkno = path_leaf_bh(path)->b_blocknr;
2836
2837 /* Start at the tree node just above the leaf and work our way up. */
2838 i = path->p_tree_depth - 1;
2839 while (i >= 0) {
2840 int next_free;
2841
2842 el = path->p_node[i].el;
2843
2844 /*
2845 * Find the extent record just after the one in our
2846 * path.
2847 */
2848 next_free = le16_to_cpu(el->l_next_free_rec);
2849 for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) {
2850 if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) {
2851 if (j == (next_free - 1)) {
2852 if (i == 0) {
2853 /*
2854 * We've determined that the
2855 * path specified is already
2856 * the rightmost one - return a
2857 * cpos of zero.
2858 */
2859 goto out;
2860 }
2861 /*
2862 * The rightmost record points to our
2863 * leaf - we need to travel up the
2864 * tree one level.
2865 */
2866 goto next_node;
2867 }
2868
2869 *cpos = le32_to_cpu(el->l_recs[j + 1].e_cpos);
2870 goto out;
2871 }
2872 }
2873
2874 /*
2875 * If we got here, we never found a valid node where
2876 * the tree indicated one should be.
2877 */
2878 ocfs2_error(sb,
2879 "Invalid extent tree at extent block %llu\n",
2880 (unsigned long long)blkno);
2881 ret = -EROFS;
2882 goto out;
2883
2884next_node:
2885 blkno = path->p_node[i].bh->b_blocknr;
2886 i--;
2887 }
2888
2889out:
2890 return ret;
2891}
2892
Joel Becker70f18c02009-02-13 02:09:31 -08002893static int ocfs2_rotate_rightmost_leaf_left(handle_t *handle,
2894 struct ocfs2_extent_tree *et,
Joel Becker13723d02008-10-17 19:25:01 -07002895 struct ocfs2_path *path)
Mark Fasheh328d5752007-06-18 10:48:04 -07002896{
2897 int ret;
Joel Becker13723d02008-10-17 19:25:01 -07002898 struct buffer_head *bh = path_leaf_bh(path);
2899 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002900
2901 if (!ocfs2_is_empty_extent(&el->l_recs[0]))
2902 return 0;
2903
Joel Becker70f18c02009-02-13 02:09:31 -08002904 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, path,
Joel Becker13723d02008-10-17 19:25:01 -07002905 path_num_items(path) - 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07002906 if (ret) {
2907 mlog_errno(ret);
2908 goto out;
2909 }
2910
2911 ocfs2_remove_empty_extent(el);
Joel Beckerec20cec2010-03-19 14:13:52 -07002912 ocfs2_journal_dirty(handle, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002913
2914out:
2915 return ret;
2916}
2917
Joel Beckere46f74d2009-02-12 19:47:43 -08002918static int __ocfs2_rotate_tree_left(handle_t *handle,
2919 struct ocfs2_extent_tree *et,
2920 int orig_credits,
Mark Fasheh328d5752007-06-18 10:48:04 -07002921 struct ocfs2_path *path,
2922 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Beckere46f74d2009-02-12 19:47:43 -08002923 struct ocfs2_path **empty_extent_path)
Mark Fasheh328d5752007-06-18 10:48:04 -07002924{
2925 int ret, subtree_root, deleted;
2926 u32 right_cpos;
2927 struct ocfs2_path *left_path = NULL;
2928 struct ocfs2_path *right_path = NULL;
Joel Beckere46f74d2009-02-12 19:47:43 -08002929 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Mark Fasheh328d5752007-06-18 10:48:04 -07002930
2931 BUG_ON(!ocfs2_is_empty_extent(&(path_leaf_el(path)->l_recs[0])));
2932
2933 *empty_extent_path = NULL;
2934
Joel Beckere46f74d2009-02-12 19:47:43 -08002935 ret = ocfs2_find_cpos_for_right_leaf(sb, path, &right_cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07002936 if (ret) {
2937 mlog_errno(ret);
2938 goto out;
2939 }
2940
Joel Beckerffdd7a52008-10-17 22:32:01 -07002941 left_path = ocfs2_new_path_from_path(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002942 if (!left_path) {
2943 ret = -ENOMEM;
2944 mlog_errno(ret);
2945 goto out;
2946 }
2947
2948 ocfs2_cp_path(left_path, path);
2949
Joel Beckerffdd7a52008-10-17 22:32:01 -07002950 right_path = ocfs2_new_path_from_path(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002951 if (!right_path) {
2952 ret = -ENOMEM;
2953 mlog_errno(ret);
2954 goto out;
2955 }
2956
2957 while (right_cpos) {
Joel Beckerfacdb772009-02-12 18:08:48 -08002958 ret = ocfs2_find_path(et->et_ci, right_path, right_cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07002959 if (ret) {
2960 mlog_errno(ret);
2961 goto out;
2962 }
2963
Joel Becker7dc02802009-02-12 19:20:13 -08002964 subtree_root = ocfs2_find_subtree_root(et, left_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002965 right_path);
2966
2967 mlog(0, "Subtree root at index %d (blk %llu, depth %d)\n",
2968 subtree_root,
2969 (unsigned long long)
2970 right_path->p_node[subtree_root].bh->b_blocknr,
2971 right_path->p_tree_depth);
2972
2973 ret = ocfs2_extend_rotate_transaction(handle, subtree_root,
2974 orig_credits, left_path);
2975 if (ret) {
2976 mlog_errno(ret);
2977 goto out;
2978 }
2979
Mark Fashehe8aed342007-12-03 16:43:01 -08002980 /*
2981 * Caller might still want to make changes to the
2982 * tree root, so re-add it to the journal here.
2983 */
Joel Beckere46f74d2009-02-12 19:47:43 -08002984 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002985 left_path, 0);
Mark Fashehe8aed342007-12-03 16:43:01 -08002986 if (ret) {
2987 mlog_errno(ret);
2988 goto out;
2989 }
2990
Joel Becker1e2dd632009-02-12 19:45:28 -08002991 ret = ocfs2_rotate_subtree_left(handle, et, left_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002992 right_path, subtree_root,
Joel Becker1e2dd632009-02-12 19:45:28 -08002993 dealloc, &deleted);
Mark Fasheh328d5752007-06-18 10:48:04 -07002994 if (ret == -EAGAIN) {
2995 /*
2996 * The rotation has to temporarily stop due to
2997 * the right subtree having an empty
2998 * extent. Pass it back to the caller for a
2999 * fixup.
3000 */
3001 *empty_extent_path = right_path;
3002 right_path = NULL;
3003 goto out;
3004 }
3005 if (ret) {
3006 mlog_errno(ret);
3007 goto out;
3008 }
3009
3010 /*
3011 * The subtree rotate might have removed records on
3012 * the rightmost edge. If so, then rotation is
3013 * complete.
3014 */
3015 if (deleted)
3016 break;
3017
3018 ocfs2_mv_path(left_path, right_path);
3019
Joel Beckere46f74d2009-02-12 19:47:43 -08003020 ret = ocfs2_find_cpos_for_right_leaf(sb, left_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003021 &right_cpos);
3022 if (ret) {
3023 mlog_errno(ret);
3024 goto out;
3025 }
3026 }
3027
3028out:
3029 ocfs2_free_path(right_path);
3030 ocfs2_free_path(left_path);
3031
3032 return ret;
3033}
3034
Joel Becker70f18c02009-02-13 02:09:31 -08003035static int ocfs2_remove_rightmost_path(handle_t *handle,
3036 struct ocfs2_extent_tree *et,
Tao Mae7d4cb62008-08-18 17:38:44 +08003037 struct ocfs2_path *path,
Joel Becker70f18c02009-02-13 02:09:31 -08003038 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fasheh328d5752007-06-18 10:48:04 -07003039{
3040 int ret, subtree_index;
3041 u32 cpos;
3042 struct ocfs2_path *left_path = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07003043 struct ocfs2_extent_block *eb;
3044 struct ocfs2_extent_list *el;
3045
Mark Fasheh328d5752007-06-18 10:48:04 -07003046
Joel Becker6136ca52009-02-12 19:32:43 -08003047 ret = ocfs2_et_sanity_check(et);
Tao Mae7d4cb62008-08-18 17:38:44 +08003048 if (ret)
3049 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07003050 /*
3051 * There's two ways we handle this depending on
3052 * whether path is the only existing one.
3053 */
3054 ret = ocfs2_extend_rotate_transaction(handle, 0,
3055 handle->h_buffer_credits,
3056 path);
3057 if (ret) {
3058 mlog_errno(ret);
3059 goto out;
3060 }
3061
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08003062 ret = ocfs2_journal_access_path(et->et_ci, handle, path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003063 if (ret) {
3064 mlog_errno(ret);
3065 goto out;
3066 }
3067
Joel Becker3d03a302009-02-12 17:49:26 -08003068 ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
3069 path, &cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07003070 if (ret) {
3071 mlog_errno(ret);
3072 goto out;
3073 }
3074
3075 if (cpos) {
3076 /*
3077 * We have a path to the left of this one - it needs
3078 * an update too.
3079 */
Joel Beckerffdd7a52008-10-17 22:32:01 -07003080 left_path = ocfs2_new_path_from_path(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003081 if (!left_path) {
3082 ret = -ENOMEM;
3083 mlog_errno(ret);
3084 goto out;
3085 }
3086
Joel Beckerfacdb772009-02-12 18:08:48 -08003087 ret = ocfs2_find_path(et->et_ci, left_path, cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07003088 if (ret) {
3089 mlog_errno(ret);
3090 goto out;
3091 }
3092
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08003093 ret = ocfs2_journal_access_path(et->et_ci, handle, left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003094 if (ret) {
3095 mlog_errno(ret);
3096 goto out;
3097 }
3098
Joel Becker7dc02802009-02-12 19:20:13 -08003099 subtree_index = ocfs2_find_subtree_root(et, left_path, path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003100
Joel Becker6641b0c2009-02-12 18:57:52 -08003101 ocfs2_unlink_subtree(handle, et, left_path, path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003102 subtree_index, dealloc);
Joel Becker09106ba2009-02-12 19:43:57 -08003103 ret = ocfs2_update_edge_lengths(handle, et, subtree_index,
Tao Ma3c5e1062009-07-21 15:42:05 +08003104 left_path);
3105 if (ret) {
3106 mlog_errno(ret);
3107 goto out;
3108 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003109
3110 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
Joel Becker35dc0aa2008-08-20 16:25:06 -07003111 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fasheh328d5752007-06-18 10:48:04 -07003112 } else {
3113 /*
3114 * 'path' is also the leftmost path which
3115 * means it must be the only one. This gets
3116 * handled differently because we want to
Joel Becker70f18c02009-02-13 02:09:31 -08003117 * revert the root back to having extents
Mark Fasheh328d5752007-06-18 10:48:04 -07003118 * in-line.
3119 */
Joel Becker6641b0c2009-02-12 18:57:52 -08003120 ocfs2_unlink_path(handle, et, dealloc, path, 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07003121
Joel Beckerce1d9ea2008-08-20 16:30:07 -07003122 el = et->et_root_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07003123 el->l_tree_depth = 0;
3124 el->l_next_free_rec = 0;
3125 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
3126
Joel Becker35dc0aa2008-08-20 16:25:06 -07003127 ocfs2_et_set_last_eb_blk(et, 0);
Mark Fasheh328d5752007-06-18 10:48:04 -07003128 }
3129
3130 ocfs2_journal_dirty(handle, path_root_bh(path));
3131
3132out:
3133 ocfs2_free_path(left_path);
3134 return ret;
3135}
3136
3137/*
3138 * Left rotation of btree records.
3139 *
3140 * In many ways, this is (unsurprisingly) the opposite of right
3141 * rotation. We start at some non-rightmost path containing an empty
3142 * extent in the leaf block. The code works its way to the rightmost
3143 * path by rotating records to the left in every subtree.
3144 *
3145 * This is used by any code which reduces the number of extent records
3146 * in a leaf. After removal, an empty record should be placed in the
3147 * leftmost list position.
3148 *
3149 * This won't handle a length update of the rightmost path records if
3150 * the rightmost tree leaf record is removed so the caller is
3151 * responsible for detecting and correcting that.
3152 */
Joel Becker70f18c02009-02-13 02:09:31 -08003153static int ocfs2_rotate_tree_left(handle_t *handle,
3154 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07003155 struct ocfs2_path *path,
Joel Becker70f18c02009-02-13 02:09:31 -08003156 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fasheh328d5752007-06-18 10:48:04 -07003157{
3158 int ret, orig_credits = handle->h_buffer_credits;
3159 struct ocfs2_path *tmp_path = NULL, *restart_path = NULL;
3160 struct ocfs2_extent_block *eb;
3161 struct ocfs2_extent_list *el;
3162
3163 el = path_leaf_el(path);
3164 if (!ocfs2_is_empty_extent(&el->l_recs[0]))
3165 return 0;
3166
3167 if (path->p_tree_depth == 0) {
3168rightmost_no_delete:
3169 /*
Tao Mae7d4cb62008-08-18 17:38:44 +08003170 * Inline extents. This is trivially handled, so do
Mark Fasheh328d5752007-06-18 10:48:04 -07003171 * it up front.
3172 */
Joel Becker70f18c02009-02-13 02:09:31 -08003173 ret = ocfs2_rotate_rightmost_leaf_left(handle, et, path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003174 if (ret)
3175 mlog_errno(ret);
3176 goto out;
3177 }
3178
3179 /*
3180 * Handle rightmost branch now. There's several cases:
3181 * 1) simple rotation leaving records in there. That's trivial.
3182 * 2) rotation requiring a branch delete - there's no more
3183 * records left. Two cases of this:
3184 * a) There are branches to the left.
3185 * b) This is also the leftmost (the only) branch.
3186 *
3187 * 1) is handled via ocfs2_rotate_rightmost_leaf_left()
3188 * 2a) we need the left branch so that we can update it with the unlink
Joel Becker70f18c02009-02-13 02:09:31 -08003189 * 2b) we need to bring the root back to inline extents.
Mark Fasheh328d5752007-06-18 10:48:04 -07003190 */
3191
3192 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
3193 el = &eb->h_list;
3194 if (eb->h_next_leaf_blk == 0) {
3195 /*
3196 * This gets a bit tricky if we're going to delete the
3197 * rightmost path. Get the other cases out of the way
3198 * 1st.
3199 */
3200 if (le16_to_cpu(el->l_next_free_rec) > 1)
3201 goto rightmost_no_delete;
3202
3203 if (le16_to_cpu(el->l_next_free_rec) == 0) {
3204 ret = -EIO;
Joel Becker70f18c02009-02-13 02:09:31 -08003205 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
3206 "Owner %llu has empty extent block at %llu",
3207 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fasheh328d5752007-06-18 10:48:04 -07003208 (unsigned long long)le64_to_cpu(eb->h_blkno));
3209 goto out;
3210 }
3211
3212 /*
3213 * XXX: The caller can not trust "path" any more after
3214 * this as it will have been deleted. What do we do?
3215 *
3216 * In theory the rotate-for-merge code will never get
3217 * here because it'll always ask for a rotate in a
3218 * nonempty list.
3219 */
3220
Joel Becker70f18c02009-02-13 02:09:31 -08003221 ret = ocfs2_remove_rightmost_path(handle, et, path,
3222 dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003223 if (ret)
3224 mlog_errno(ret);
3225 goto out;
3226 }
3227
3228 /*
3229 * Now we can loop, remembering the path we get from -EAGAIN
3230 * and restarting from there.
3231 */
3232try_rotate:
Joel Beckere46f74d2009-02-12 19:47:43 -08003233 ret = __ocfs2_rotate_tree_left(handle, et, orig_credits, path,
3234 dealloc, &restart_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003235 if (ret && ret != -EAGAIN) {
3236 mlog_errno(ret);
3237 goto out;
3238 }
3239
3240 while (ret == -EAGAIN) {
3241 tmp_path = restart_path;
3242 restart_path = NULL;
3243
Joel Beckere46f74d2009-02-12 19:47:43 -08003244 ret = __ocfs2_rotate_tree_left(handle, et, orig_credits,
Mark Fasheh328d5752007-06-18 10:48:04 -07003245 tmp_path, dealloc,
Joel Beckere46f74d2009-02-12 19:47:43 -08003246 &restart_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003247 if (ret && ret != -EAGAIN) {
3248 mlog_errno(ret);
3249 goto out;
3250 }
3251
3252 ocfs2_free_path(tmp_path);
3253 tmp_path = NULL;
3254
3255 if (ret == 0)
3256 goto try_rotate;
3257 }
3258
3259out:
3260 ocfs2_free_path(tmp_path);
3261 ocfs2_free_path(restart_path);
3262 return ret;
3263}
3264
3265static void ocfs2_cleanup_merge(struct ocfs2_extent_list *el,
3266 int index)
3267{
3268 struct ocfs2_extent_rec *rec = &el->l_recs[index];
3269 unsigned int size;
3270
3271 if (rec->e_leaf_clusters == 0) {
3272 /*
3273 * We consumed all of the merged-from record. An empty
3274 * extent cannot exist anywhere but the 1st array
3275 * position, so move things over if the merged-from
3276 * record doesn't occupy that position.
3277 *
3278 * This creates a new empty extent so the caller
3279 * should be smart enough to have removed any existing
3280 * ones.
3281 */
3282 if (index > 0) {
3283 BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0]));
3284 size = index * sizeof(struct ocfs2_extent_rec);
3285 memmove(&el->l_recs[1], &el->l_recs[0], size);
3286 }
3287
3288 /*
3289 * Always memset - the caller doesn't check whether it
3290 * created an empty extent, so there could be junk in
3291 * the other fields.
3292 */
3293 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
3294 }
3295}
3296
Joel Becker4fe82c32009-02-13 02:16:08 -08003297static int ocfs2_get_right_path(struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003298 struct ocfs2_path *left_path,
3299 struct ocfs2_path **ret_right_path)
Mark Fasheh328d5752007-06-18 10:48:04 -07003300{
3301 int ret;
Tao Ma677b9752008-01-30 14:21:05 +08003302 u32 right_cpos;
3303 struct ocfs2_path *right_path = NULL;
3304 struct ocfs2_extent_list *left_el;
3305
3306 *ret_right_path = NULL;
3307
3308 /* This function shouldn't be called for non-trees. */
3309 BUG_ON(left_path->p_tree_depth == 0);
3310
3311 left_el = path_leaf_el(left_path);
3312 BUG_ON(left_el->l_next_free_rec != left_el->l_count);
3313
Joel Becker4fe82c32009-02-13 02:16:08 -08003314 ret = ocfs2_find_cpos_for_right_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
3315 left_path, &right_cpos);
Tao Ma677b9752008-01-30 14:21:05 +08003316 if (ret) {
3317 mlog_errno(ret);
3318 goto out;
3319 }
3320
3321 /* This function shouldn't be called for the rightmost leaf. */
3322 BUG_ON(right_cpos == 0);
3323
Joel Beckerffdd7a52008-10-17 22:32:01 -07003324 right_path = ocfs2_new_path_from_path(left_path);
Tao Ma677b9752008-01-30 14:21:05 +08003325 if (!right_path) {
3326 ret = -ENOMEM;
3327 mlog_errno(ret);
3328 goto out;
3329 }
3330
Joel Becker4fe82c32009-02-13 02:16:08 -08003331 ret = ocfs2_find_path(et->et_ci, right_path, right_cpos);
Tao Ma677b9752008-01-30 14:21:05 +08003332 if (ret) {
3333 mlog_errno(ret);
3334 goto out;
3335 }
3336
3337 *ret_right_path = right_path;
3338out:
3339 if (ret)
3340 ocfs2_free_path(right_path);
3341 return ret;
3342}
3343
3344/*
3345 * Remove split_rec clusters from the record at index and merge them
3346 * onto the beginning of the record "next" to it.
3347 * For index < l_count - 1, the next means the extent rec at index + 1.
3348 * For index == l_count - 1, the "next" means the 1st extent rec of the
3349 * next extent block.
3350 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003351static int ocfs2_merge_rec_right(struct ocfs2_path *left_path,
Tao Ma677b9752008-01-30 14:21:05 +08003352 handle_t *handle,
Joel Becker7dc02802009-02-12 19:20:13 -08003353 struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003354 struct ocfs2_extent_rec *split_rec,
3355 int index)
3356{
3357 int ret, next_free, i;
Mark Fasheh328d5752007-06-18 10:48:04 -07003358 unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters);
3359 struct ocfs2_extent_rec *left_rec;
3360 struct ocfs2_extent_rec *right_rec;
Tao Ma677b9752008-01-30 14:21:05 +08003361 struct ocfs2_extent_list *right_el;
3362 struct ocfs2_path *right_path = NULL;
3363 int subtree_index = 0;
3364 struct ocfs2_extent_list *el = path_leaf_el(left_path);
3365 struct buffer_head *bh = path_leaf_bh(left_path);
3366 struct buffer_head *root_bh = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07003367
3368 BUG_ON(index >= le16_to_cpu(el->l_next_free_rec));
Mark Fasheh328d5752007-06-18 10:48:04 -07003369 left_rec = &el->l_recs[index];
Tao Ma677b9752008-01-30 14:21:05 +08003370
Al Viro9d8df6a2008-05-21 06:32:11 +01003371 if (index == le16_to_cpu(el->l_next_free_rec) - 1 &&
Tao Ma677b9752008-01-30 14:21:05 +08003372 le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count)) {
3373 /* we meet with a cross extent block merge. */
Joel Becker4fe82c32009-02-13 02:16:08 -08003374 ret = ocfs2_get_right_path(et, left_path, &right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003375 if (ret) {
3376 mlog_errno(ret);
3377 goto out;
3378 }
3379
3380 right_el = path_leaf_el(right_path);
3381 next_free = le16_to_cpu(right_el->l_next_free_rec);
3382 BUG_ON(next_free <= 0);
3383 right_rec = &right_el->l_recs[0];
3384 if (ocfs2_is_empty_extent(right_rec)) {
Al Viro9d8df6a2008-05-21 06:32:11 +01003385 BUG_ON(next_free <= 1);
Tao Ma677b9752008-01-30 14:21:05 +08003386 right_rec = &right_el->l_recs[1];
3387 }
3388
3389 BUG_ON(le32_to_cpu(left_rec->e_cpos) +
3390 le16_to_cpu(left_rec->e_leaf_clusters) !=
3391 le32_to_cpu(right_rec->e_cpos));
3392
Joel Becker7dc02802009-02-12 19:20:13 -08003393 subtree_index = ocfs2_find_subtree_root(et, left_path,
3394 right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003395
3396 ret = ocfs2_extend_rotate_transaction(handle, subtree_index,
3397 handle->h_buffer_credits,
3398 right_path);
3399 if (ret) {
3400 mlog_errno(ret);
3401 goto out;
3402 }
3403
3404 root_bh = left_path->p_node[subtree_index].bh;
3405 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
3406
Joel Becker7dc02802009-02-12 19:20:13 -08003407 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07003408 subtree_index);
Tao Ma677b9752008-01-30 14:21:05 +08003409 if (ret) {
3410 mlog_errno(ret);
3411 goto out;
3412 }
3413
3414 for (i = subtree_index + 1;
3415 i < path_num_items(right_path); i++) {
Joel Becker7dc02802009-02-12 19:20:13 -08003416 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003417 right_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003418 if (ret) {
3419 mlog_errno(ret);
3420 goto out;
3421 }
3422
Joel Becker7dc02802009-02-12 19:20:13 -08003423 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003424 left_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003425 if (ret) {
3426 mlog_errno(ret);
3427 goto out;
3428 }
3429 }
3430
3431 } else {
3432 BUG_ON(index == le16_to_cpu(el->l_next_free_rec) - 1);
3433 right_rec = &el->l_recs[index + 1];
3434 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003435
Joel Becker7dc02802009-02-12 19:20:13 -08003436 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, left_path,
Joel Becker13723d02008-10-17 19:25:01 -07003437 path_num_items(left_path) - 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07003438 if (ret) {
3439 mlog_errno(ret);
3440 goto out;
3441 }
3442
3443 le16_add_cpu(&left_rec->e_leaf_clusters, -split_clusters);
3444
3445 le32_add_cpu(&right_rec->e_cpos, -split_clusters);
3446 le64_add_cpu(&right_rec->e_blkno,
Joel Becker7dc02802009-02-12 19:20:13 -08003447 -ocfs2_clusters_to_blocks(ocfs2_metadata_cache_get_super(et->et_ci),
3448 split_clusters));
Mark Fasheh328d5752007-06-18 10:48:04 -07003449 le16_add_cpu(&right_rec->e_leaf_clusters, split_clusters);
3450
3451 ocfs2_cleanup_merge(el, index);
3452
Joel Beckerec20cec2010-03-19 14:13:52 -07003453 ocfs2_journal_dirty(handle, bh);
Tao Ma677b9752008-01-30 14:21:05 +08003454 if (right_path) {
Joel Beckerec20cec2010-03-19 14:13:52 -07003455 ocfs2_journal_dirty(handle, path_leaf_bh(right_path));
Joel Becker4619c732009-02-12 19:02:36 -08003456 ocfs2_complete_edge_insert(handle, left_path, right_path,
3457 subtree_index);
Tao Ma677b9752008-01-30 14:21:05 +08003458 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003459out:
Tao Ma677b9752008-01-30 14:21:05 +08003460 if (right_path)
3461 ocfs2_free_path(right_path);
3462 return ret;
3463}
3464
Joel Becker4fe82c32009-02-13 02:16:08 -08003465static int ocfs2_get_left_path(struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003466 struct ocfs2_path *right_path,
3467 struct ocfs2_path **ret_left_path)
3468{
3469 int ret;
3470 u32 left_cpos;
3471 struct ocfs2_path *left_path = NULL;
3472
3473 *ret_left_path = NULL;
3474
3475 /* This function shouldn't be called for non-trees. */
3476 BUG_ON(right_path->p_tree_depth == 0);
3477
Joel Becker4fe82c32009-02-13 02:16:08 -08003478 ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
Tao Ma677b9752008-01-30 14:21:05 +08003479 right_path, &left_cpos);
3480 if (ret) {
3481 mlog_errno(ret);
3482 goto out;
3483 }
3484
3485 /* This function shouldn't be called for the leftmost leaf. */
3486 BUG_ON(left_cpos == 0);
3487
Joel Beckerffdd7a52008-10-17 22:32:01 -07003488 left_path = ocfs2_new_path_from_path(right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003489 if (!left_path) {
3490 ret = -ENOMEM;
3491 mlog_errno(ret);
3492 goto out;
3493 }
3494
Joel Becker4fe82c32009-02-13 02:16:08 -08003495 ret = ocfs2_find_path(et->et_ci, left_path, left_cpos);
Tao Ma677b9752008-01-30 14:21:05 +08003496 if (ret) {
3497 mlog_errno(ret);
3498 goto out;
3499 }
3500
3501 *ret_left_path = left_path;
3502out:
3503 if (ret)
3504 ocfs2_free_path(left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003505 return ret;
3506}
3507
3508/*
3509 * Remove split_rec clusters from the record at index and merge them
Tao Ma677b9752008-01-30 14:21:05 +08003510 * onto the tail of the record "before" it.
3511 * For index > 0, the "before" means the extent rec at index - 1.
3512 *
3513 * For index == 0, the "before" means the last record of the previous
3514 * extent block. And there is also a situation that we may need to
3515 * remove the rightmost leaf extent block in the right_path and change
3516 * the right path to indicate the new rightmost path.
Mark Fasheh328d5752007-06-18 10:48:04 -07003517 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003518static int ocfs2_merge_rec_left(struct ocfs2_path *right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003519 handle_t *handle,
Joel Becker4fe82c32009-02-13 02:16:08 -08003520 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07003521 struct ocfs2_extent_rec *split_rec,
Tao Ma677b9752008-01-30 14:21:05 +08003522 struct ocfs2_cached_dealloc_ctxt *dealloc,
3523 int index)
Mark Fasheh328d5752007-06-18 10:48:04 -07003524{
Tao Ma677b9752008-01-30 14:21:05 +08003525 int ret, i, subtree_index = 0, has_empty_extent = 0;
Mark Fasheh328d5752007-06-18 10:48:04 -07003526 unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters);
3527 struct ocfs2_extent_rec *left_rec;
3528 struct ocfs2_extent_rec *right_rec;
Tao Ma677b9752008-01-30 14:21:05 +08003529 struct ocfs2_extent_list *el = path_leaf_el(right_path);
3530 struct buffer_head *bh = path_leaf_bh(right_path);
3531 struct buffer_head *root_bh = NULL;
3532 struct ocfs2_path *left_path = NULL;
3533 struct ocfs2_extent_list *left_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07003534
Tao Ma677b9752008-01-30 14:21:05 +08003535 BUG_ON(index < 0);
Mark Fasheh328d5752007-06-18 10:48:04 -07003536
Mark Fasheh328d5752007-06-18 10:48:04 -07003537 right_rec = &el->l_recs[index];
Tao Ma677b9752008-01-30 14:21:05 +08003538 if (index == 0) {
3539 /* we meet with a cross extent block merge. */
Joel Becker4fe82c32009-02-13 02:16:08 -08003540 ret = ocfs2_get_left_path(et, right_path, &left_path);
Tao Ma677b9752008-01-30 14:21:05 +08003541 if (ret) {
3542 mlog_errno(ret);
3543 goto out;
3544 }
3545
3546 left_el = path_leaf_el(left_path);
3547 BUG_ON(le16_to_cpu(left_el->l_next_free_rec) !=
3548 le16_to_cpu(left_el->l_count));
3549
3550 left_rec = &left_el->l_recs[
3551 le16_to_cpu(left_el->l_next_free_rec) - 1];
3552 BUG_ON(le32_to_cpu(left_rec->e_cpos) +
3553 le16_to_cpu(left_rec->e_leaf_clusters) !=
3554 le32_to_cpu(split_rec->e_cpos));
3555
Joel Becker7dc02802009-02-12 19:20:13 -08003556 subtree_index = ocfs2_find_subtree_root(et, left_path,
3557 right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003558
3559 ret = ocfs2_extend_rotate_transaction(handle, subtree_index,
3560 handle->h_buffer_credits,
3561 left_path);
3562 if (ret) {
3563 mlog_errno(ret);
3564 goto out;
3565 }
3566
3567 root_bh = left_path->p_node[subtree_index].bh;
3568 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
3569
Joel Becker4fe82c32009-02-13 02:16:08 -08003570 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07003571 subtree_index);
Tao Ma677b9752008-01-30 14:21:05 +08003572 if (ret) {
3573 mlog_errno(ret);
3574 goto out;
3575 }
3576
3577 for (i = subtree_index + 1;
3578 i < path_num_items(right_path); i++) {
Joel Becker4fe82c32009-02-13 02:16:08 -08003579 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003580 right_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003581 if (ret) {
3582 mlog_errno(ret);
3583 goto out;
3584 }
3585
Joel Becker4fe82c32009-02-13 02:16:08 -08003586 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003587 left_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003588 if (ret) {
3589 mlog_errno(ret);
3590 goto out;
3591 }
3592 }
3593 } else {
3594 left_rec = &el->l_recs[index - 1];
3595 if (ocfs2_is_empty_extent(&el->l_recs[0]))
3596 has_empty_extent = 1;
3597 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003598
Joel Becker4fe82c32009-02-13 02:16:08 -08003599 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Tao Ma9047bea2009-01-05 14:45:24 +08003600 path_num_items(right_path) - 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07003601 if (ret) {
3602 mlog_errno(ret);
3603 goto out;
3604 }
3605
3606 if (has_empty_extent && index == 1) {
3607 /*
3608 * The easy case - we can just plop the record right in.
3609 */
3610 *left_rec = *split_rec;
3611
3612 has_empty_extent = 0;
Tao Ma677b9752008-01-30 14:21:05 +08003613 } else
Mark Fasheh328d5752007-06-18 10:48:04 -07003614 le16_add_cpu(&left_rec->e_leaf_clusters, split_clusters);
Mark Fasheh328d5752007-06-18 10:48:04 -07003615
3616 le32_add_cpu(&right_rec->e_cpos, split_clusters);
3617 le64_add_cpu(&right_rec->e_blkno,
Joel Becker4fe82c32009-02-13 02:16:08 -08003618 ocfs2_clusters_to_blocks(ocfs2_metadata_cache_get_super(et->et_ci),
3619 split_clusters));
Mark Fasheh328d5752007-06-18 10:48:04 -07003620 le16_add_cpu(&right_rec->e_leaf_clusters, -split_clusters);
3621
3622 ocfs2_cleanup_merge(el, index);
3623
Joel Beckerec20cec2010-03-19 14:13:52 -07003624 ocfs2_journal_dirty(handle, bh);
Tao Ma677b9752008-01-30 14:21:05 +08003625 if (left_path) {
Joel Beckerec20cec2010-03-19 14:13:52 -07003626 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
Tao Ma677b9752008-01-30 14:21:05 +08003627
3628 /*
3629 * In the situation that the right_rec is empty and the extent
3630 * block is empty also, ocfs2_complete_edge_insert can't handle
3631 * it and we need to delete the right extent block.
3632 */
3633 if (le16_to_cpu(right_rec->e_leaf_clusters) == 0 &&
3634 le16_to_cpu(el->l_next_free_rec) == 1) {
3635
Joel Becker70f18c02009-02-13 02:09:31 -08003636 ret = ocfs2_remove_rightmost_path(handle, et,
Tao Mae7d4cb62008-08-18 17:38:44 +08003637 right_path,
Joel Becker70f18c02009-02-13 02:09:31 -08003638 dealloc);
Tao Ma677b9752008-01-30 14:21:05 +08003639 if (ret) {
3640 mlog_errno(ret);
3641 goto out;
3642 }
3643
3644 /* Now the rightmost extent block has been deleted.
3645 * So we use the new rightmost path.
3646 */
3647 ocfs2_mv_path(right_path, left_path);
3648 left_path = NULL;
3649 } else
Joel Becker4619c732009-02-12 19:02:36 -08003650 ocfs2_complete_edge_insert(handle, left_path,
Tao Ma677b9752008-01-30 14:21:05 +08003651 right_path, subtree_index);
3652 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003653out:
Tao Ma677b9752008-01-30 14:21:05 +08003654 if (left_path)
3655 ocfs2_free_path(left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003656 return ret;
3657}
3658
Joel Beckerc495dd22009-02-13 02:19:11 -08003659static int ocfs2_try_to_merge_extent(handle_t *handle,
3660 struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003661 struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003662 int split_index,
3663 struct ocfs2_extent_rec *split_rec,
3664 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Beckerc495dd22009-02-13 02:19:11 -08003665 struct ocfs2_merge_ctxt *ctxt)
Mark Fasheh328d5752007-06-18 10:48:04 -07003666{
Tao Mao518d7262007-08-28 17:25:35 -07003667 int ret = 0;
Tao Ma677b9752008-01-30 14:21:05 +08003668 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003669 struct ocfs2_extent_rec *rec = &el->l_recs[split_index];
3670
3671 BUG_ON(ctxt->c_contig_type == CONTIG_NONE);
3672
Tao Mao518d7262007-08-28 17:25:35 -07003673 if (ctxt->c_split_covers_rec && ctxt->c_has_empty_extent) {
3674 /*
3675 * The merge code will need to create an empty
3676 * extent to take the place of the newly
3677 * emptied slot. Remove any pre-existing empty
3678 * extents - having more than one in a leaf is
3679 * illegal.
3680 */
Joel Becker70f18c02009-02-13 02:09:31 -08003681 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Tao Mao518d7262007-08-28 17:25:35 -07003682 if (ret) {
3683 mlog_errno(ret);
3684 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07003685 }
Tao Mao518d7262007-08-28 17:25:35 -07003686 split_index--;
3687 rec = &el->l_recs[split_index];
Mark Fasheh328d5752007-06-18 10:48:04 -07003688 }
3689
3690 if (ctxt->c_contig_type == CONTIG_LEFTRIGHT) {
3691 /*
3692 * Left-right contig implies this.
3693 */
3694 BUG_ON(!ctxt->c_split_covers_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07003695
3696 /*
3697 * Since the leftright insert always covers the entire
3698 * extent, this call will delete the insert record
3699 * entirely, resulting in an empty extent record added to
3700 * the extent block.
3701 *
3702 * Since the adding of an empty extent shifts
3703 * everything back to the right, there's no need to
3704 * update split_index here.
Tao Ma677b9752008-01-30 14:21:05 +08003705 *
3706 * When the split_index is zero, we need to merge it to the
3707 * prevoius extent block. It is more efficient and easier
3708 * if we do merge_right first and merge_left later.
Mark Fasheh328d5752007-06-18 10:48:04 -07003709 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003710 ret = ocfs2_merge_rec_right(path, handle, et, split_rec,
Tao Ma677b9752008-01-30 14:21:05 +08003711 split_index);
Mark Fasheh328d5752007-06-18 10:48:04 -07003712 if (ret) {
3713 mlog_errno(ret);
3714 goto out;
3715 }
3716
3717 /*
3718 * We can only get this from logic error above.
3719 */
3720 BUG_ON(!ocfs2_is_empty_extent(&el->l_recs[0]));
3721
Tao Ma677b9752008-01-30 14:21:05 +08003722 /* The merge left us with an empty extent, remove it. */
Joel Becker70f18c02009-02-13 02:09:31 -08003723 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003724 if (ret) {
3725 mlog_errno(ret);
3726 goto out;
3727 }
Tao Ma677b9752008-01-30 14:21:05 +08003728
Mark Fasheh328d5752007-06-18 10:48:04 -07003729 rec = &el->l_recs[split_index];
3730
3731 /*
3732 * Note that we don't pass split_rec here on purpose -
Tao Ma677b9752008-01-30 14:21:05 +08003733 * we've merged it into the rec already.
Mark Fasheh328d5752007-06-18 10:48:04 -07003734 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003735 ret = ocfs2_merge_rec_left(path, handle, et, rec,
3736 dealloc, split_index);
Tao Ma677b9752008-01-30 14:21:05 +08003737
Mark Fasheh328d5752007-06-18 10:48:04 -07003738 if (ret) {
3739 mlog_errno(ret);
3740 goto out;
3741 }
3742
Joel Becker70f18c02009-02-13 02:09:31 -08003743 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003744 /*
3745 * Error from this last rotate is not critical, so
3746 * print but don't bubble it up.
3747 */
3748 if (ret)
3749 mlog_errno(ret);
3750 ret = 0;
3751 } else {
3752 /*
3753 * Merge a record to the left or right.
3754 *
3755 * 'contig_type' is relative to the existing record,
3756 * so for example, if we're "right contig", it's to
3757 * the record on the left (hence the left merge).
3758 */
3759 if (ctxt->c_contig_type == CONTIG_RIGHT) {
Joel Becker4fe82c32009-02-13 02:16:08 -08003760 ret = ocfs2_merge_rec_left(path, handle, et,
3761 split_rec, dealloc,
Mark Fasheh328d5752007-06-18 10:48:04 -07003762 split_index);
3763 if (ret) {
3764 mlog_errno(ret);
3765 goto out;
3766 }
3767 } else {
Joel Becker4fe82c32009-02-13 02:16:08 -08003768 ret = ocfs2_merge_rec_right(path, handle,
Joel Becker7dc02802009-02-12 19:20:13 -08003769 et, split_rec,
Mark Fasheh328d5752007-06-18 10:48:04 -07003770 split_index);
3771 if (ret) {
3772 mlog_errno(ret);
3773 goto out;
3774 }
3775 }
3776
3777 if (ctxt->c_split_covers_rec) {
3778 /*
3779 * The merge may have left an empty extent in
3780 * our leaf. Try to rotate it away.
3781 */
Joel Becker70f18c02009-02-13 02:09:31 -08003782 ret = ocfs2_rotate_tree_left(handle, et, path,
3783 dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003784 if (ret)
3785 mlog_errno(ret);
3786 ret = 0;
3787 }
3788 }
3789
3790out:
3791 return ret;
3792}
3793
3794static void ocfs2_subtract_from_rec(struct super_block *sb,
3795 enum ocfs2_split_type split,
3796 struct ocfs2_extent_rec *rec,
3797 struct ocfs2_extent_rec *split_rec)
3798{
3799 u64 len_blocks;
3800
3801 len_blocks = ocfs2_clusters_to_blocks(sb,
3802 le16_to_cpu(split_rec->e_leaf_clusters));
3803
3804 if (split == SPLIT_LEFT) {
3805 /*
3806 * Region is on the left edge of the existing
3807 * record.
3808 */
3809 le32_add_cpu(&rec->e_cpos,
3810 le16_to_cpu(split_rec->e_leaf_clusters));
3811 le64_add_cpu(&rec->e_blkno, len_blocks);
3812 le16_add_cpu(&rec->e_leaf_clusters,
3813 -le16_to_cpu(split_rec->e_leaf_clusters));
3814 } else {
3815 /*
3816 * Region is on the right edge of the existing
3817 * record.
3818 */
3819 le16_add_cpu(&rec->e_leaf_clusters,
3820 -le16_to_cpu(split_rec->e_leaf_clusters));
3821 }
3822}
3823
Mark Fashehdcd05382007-01-16 11:32:23 -08003824/*
3825 * Do the final bits of extent record insertion at the target leaf
3826 * list. If this leaf is part of an allocation tree, it is assumed
3827 * that the tree above has been prepared.
3828 */
Joel Beckerd5628622009-02-13 02:54:36 -08003829static void ocfs2_insert_at_leaf(struct ocfs2_extent_tree *et,
3830 struct ocfs2_extent_rec *insert_rec,
Mark Fashehdcd05382007-01-16 11:32:23 -08003831 struct ocfs2_extent_list *el,
Joel Beckerd5628622009-02-13 02:54:36 -08003832 struct ocfs2_insert_type *insert)
Mark Fashehdcd05382007-01-16 11:32:23 -08003833{
3834 int i = insert->ins_contig_index;
3835 unsigned int range;
3836 struct ocfs2_extent_rec *rec;
3837
Mark Fashehe48edee2007-03-07 16:46:57 -08003838 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
Mark Fashehdcd05382007-01-16 11:32:23 -08003839
Mark Fasheh328d5752007-06-18 10:48:04 -07003840 if (insert->ins_split != SPLIT_NONE) {
3841 i = ocfs2_search_extent_list(el, le32_to_cpu(insert_rec->e_cpos));
3842 BUG_ON(i == -1);
3843 rec = &el->l_recs[i];
Joel Beckerd5628622009-02-13 02:54:36 -08003844 ocfs2_subtract_from_rec(ocfs2_metadata_cache_get_super(et->et_ci),
3845 insert->ins_split, rec,
Mark Fasheh328d5752007-06-18 10:48:04 -07003846 insert_rec);
3847 goto rotate;
3848 }
3849
Mark Fashehdcd05382007-01-16 11:32:23 -08003850 /*
3851 * Contiguous insert - either left or right.
3852 */
3853 if (insert->ins_contig != CONTIG_NONE) {
3854 rec = &el->l_recs[i];
3855 if (insert->ins_contig == CONTIG_LEFT) {
3856 rec->e_blkno = insert_rec->e_blkno;
3857 rec->e_cpos = insert_rec->e_cpos;
3858 }
Mark Fashehe48edee2007-03-07 16:46:57 -08003859 le16_add_cpu(&rec->e_leaf_clusters,
3860 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08003861 return;
3862 }
3863
3864 /*
3865 * Handle insert into an empty leaf.
3866 */
3867 if (le16_to_cpu(el->l_next_free_rec) == 0 ||
3868 ((le16_to_cpu(el->l_next_free_rec) == 1) &&
3869 ocfs2_is_empty_extent(&el->l_recs[0]))) {
3870 el->l_recs[0] = *insert_rec;
3871 el->l_next_free_rec = cpu_to_le16(1);
3872 return;
3873 }
3874
3875 /*
3876 * Appending insert.
3877 */
3878 if (insert->ins_appending == APPEND_TAIL) {
3879 i = le16_to_cpu(el->l_next_free_rec) - 1;
3880 rec = &el->l_recs[i];
Mark Fashehe48edee2007-03-07 16:46:57 -08003881 range = le32_to_cpu(rec->e_cpos)
3882 + le16_to_cpu(rec->e_leaf_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08003883 BUG_ON(le32_to_cpu(insert_rec->e_cpos) < range);
3884
3885 mlog_bug_on_msg(le16_to_cpu(el->l_next_free_rec) >=
3886 le16_to_cpu(el->l_count),
Joel Beckerd5628622009-02-13 02:54:36 -08003887 "owner %llu, depth %u, count %u, next free %u, "
Mark Fashehdcd05382007-01-16 11:32:23 -08003888 "rec.cpos %u, rec.clusters %u, "
3889 "insert.cpos %u, insert.clusters %u\n",
Joel Beckerd5628622009-02-13 02:54:36 -08003890 ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08003891 le16_to_cpu(el->l_tree_depth),
3892 le16_to_cpu(el->l_count),
3893 le16_to_cpu(el->l_next_free_rec),
3894 le32_to_cpu(el->l_recs[i].e_cpos),
Mark Fashehe48edee2007-03-07 16:46:57 -08003895 le16_to_cpu(el->l_recs[i].e_leaf_clusters),
Mark Fashehdcd05382007-01-16 11:32:23 -08003896 le32_to_cpu(insert_rec->e_cpos),
Mark Fashehe48edee2007-03-07 16:46:57 -08003897 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08003898 i++;
3899 el->l_recs[i] = *insert_rec;
3900 le16_add_cpu(&el->l_next_free_rec, 1);
3901 return;
3902 }
3903
Mark Fasheh328d5752007-06-18 10:48:04 -07003904rotate:
Mark Fashehdcd05382007-01-16 11:32:23 -08003905 /*
3906 * Ok, we have to rotate.
3907 *
3908 * At this point, it is safe to assume that inserting into an
3909 * empty leaf and appending to a leaf have both been handled
3910 * above.
3911 *
3912 * This leaf needs to have space, either by the empty 1st
3913 * extent record, or by virtue of an l_next_rec < l_count.
3914 */
3915 ocfs2_rotate_leaf(el, insert_rec);
3916}
3917
Joel Beckerd401dc12009-02-13 02:24:10 -08003918static void ocfs2_adjust_rightmost_records(handle_t *handle,
3919 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07003920 struct ocfs2_path *path,
3921 struct ocfs2_extent_rec *insert_rec)
3922{
3923 int ret, i, next_free;
3924 struct buffer_head *bh;
3925 struct ocfs2_extent_list *el;
3926 struct ocfs2_extent_rec *rec;
3927
3928 /*
3929 * Update everything except the leaf block.
3930 */
3931 for (i = 0; i < path->p_tree_depth; i++) {
3932 bh = path->p_node[i].bh;
3933 el = path->p_node[i].el;
3934
3935 next_free = le16_to_cpu(el->l_next_free_rec);
3936 if (next_free == 0) {
Joel Beckerd401dc12009-02-13 02:24:10 -08003937 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
3938 "Owner %llu has a bad extent list",
3939 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci));
Mark Fasheh328d5752007-06-18 10:48:04 -07003940 ret = -EIO;
3941 return;
3942 }
3943
3944 rec = &el->l_recs[next_free - 1];
3945
3946 rec->e_int_clusters = insert_rec->e_cpos;
3947 le32_add_cpu(&rec->e_int_clusters,
3948 le16_to_cpu(insert_rec->e_leaf_clusters));
3949 le32_add_cpu(&rec->e_int_clusters,
3950 -le32_to_cpu(rec->e_cpos));
3951
Joel Beckerec20cec2010-03-19 14:13:52 -07003952 ocfs2_journal_dirty(handle, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07003953 }
3954}
3955
Joel Beckerd401dc12009-02-13 02:24:10 -08003956static int ocfs2_append_rec_to_path(handle_t *handle,
3957 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08003958 struct ocfs2_extent_rec *insert_rec,
3959 struct ocfs2_path *right_path,
3960 struct ocfs2_path **ret_left_path)
3961{
Mark Fasheh328d5752007-06-18 10:48:04 -07003962 int ret, next_free;
Mark Fashehdcd05382007-01-16 11:32:23 -08003963 struct ocfs2_extent_list *el;
3964 struct ocfs2_path *left_path = NULL;
3965
3966 *ret_left_path = NULL;
3967
3968 /*
Mark Fashehe48edee2007-03-07 16:46:57 -08003969 * This shouldn't happen for non-trees. The extent rec cluster
3970 * count manipulation below only works for interior nodes.
3971 */
3972 BUG_ON(right_path->p_tree_depth == 0);
3973
3974 /*
Mark Fashehdcd05382007-01-16 11:32:23 -08003975 * If our appending insert is at the leftmost edge of a leaf,
3976 * then we might need to update the rightmost records of the
3977 * neighboring path.
3978 */
3979 el = path_leaf_el(right_path);
3980 next_free = le16_to_cpu(el->l_next_free_rec);
3981 if (next_free == 0 ||
3982 (next_free == 1 && ocfs2_is_empty_extent(&el->l_recs[0]))) {
3983 u32 left_cpos;
3984
Joel Beckerd401dc12009-02-13 02:24:10 -08003985 ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
3986 right_path, &left_cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08003987 if (ret) {
3988 mlog_errno(ret);
3989 goto out;
3990 }
3991
3992 mlog(0, "Append may need a left path update. cpos: %u, "
3993 "left_cpos: %u\n", le32_to_cpu(insert_rec->e_cpos),
3994 left_cpos);
3995
3996 /*
3997 * No need to worry if the append is already in the
3998 * leftmost leaf.
3999 */
4000 if (left_cpos) {
Joel Beckerffdd7a52008-10-17 22:32:01 -07004001 left_path = ocfs2_new_path_from_path(right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004002 if (!left_path) {
4003 ret = -ENOMEM;
4004 mlog_errno(ret);
4005 goto out;
4006 }
4007
Joel Beckerd401dc12009-02-13 02:24:10 -08004008 ret = ocfs2_find_path(et->et_ci, left_path,
Joel Beckerfacdb772009-02-12 18:08:48 -08004009 left_cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08004010 if (ret) {
4011 mlog_errno(ret);
4012 goto out;
4013 }
4014
4015 /*
4016 * ocfs2_insert_path() will pass the left_path to the
4017 * journal for us.
4018 */
4019 }
4020 }
4021
Joel Beckerd401dc12009-02-13 02:24:10 -08004022 ret = ocfs2_journal_access_path(et->et_ci, handle, right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004023 if (ret) {
4024 mlog_errno(ret);
4025 goto out;
4026 }
4027
Joel Beckerd401dc12009-02-13 02:24:10 -08004028 ocfs2_adjust_rightmost_records(handle, et, right_path, insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004029
4030 *ret_left_path = left_path;
4031 ret = 0;
4032out:
4033 if (ret != 0)
4034 ocfs2_free_path(left_path);
4035
4036 return ret;
4037}
4038
Joel Beckerc38e52b2009-02-13 02:56:23 -08004039static void ocfs2_split_record(struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004040 struct ocfs2_path *left_path,
4041 struct ocfs2_path *right_path,
4042 struct ocfs2_extent_rec *split_rec,
4043 enum ocfs2_split_type split)
4044{
4045 int index;
4046 u32 cpos = le32_to_cpu(split_rec->e_cpos);
4047 struct ocfs2_extent_list *left_el = NULL, *right_el, *insert_el, *el;
4048 struct ocfs2_extent_rec *rec, *tmprec;
4049
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004050 right_el = path_leaf_el(right_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07004051 if (left_path)
4052 left_el = path_leaf_el(left_path);
4053
4054 el = right_el;
4055 insert_el = right_el;
4056 index = ocfs2_search_extent_list(el, cpos);
4057 if (index != -1) {
4058 if (index == 0 && left_path) {
4059 BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0]));
4060
4061 /*
4062 * This typically means that the record
4063 * started in the left path but moved to the
4064 * right as a result of rotation. We either
4065 * move the existing record to the left, or we
4066 * do the later insert there.
4067 *
4068 * In this case, the left path should always
4069 * exist as the rotate code will have passed
4070 * it back for a post-insert update.
4071 */
4072
4073 if (split == SPLIT_LEFT) {
4074 /*
4075 * It's a left split. Since we know
4076 * that the rotate code gave us an
4077 * empty extent in the left path, we
4078 * can just do the insert there.
4079 */
4080 insert_el = left_el;
4081 } else {
4082 /*
4083 * Right split - we have to move the
4084 * existing record over to the left
4085 * leaf. The insert will be into the
4086 * newly created empty extent in the
4087 * right leaf.
4088 */
4089 tmprec = &right_el->l_recs[index];
4090 ocfs2_rotate_leaf(left_el, tmprec);
4091 el = left_el;
4092
4093 memset(tmprec, 0, sizeof(*tmprec));
4094 index = ocfs2_search_extent_list(left_el, cpos);
4095 BUG_ON(index == -1);
4096 }
4097 }
4098 } else {
4099 BUG_ON(!left_path);
4100 BUG_ON(!ocfs2_is_empty_extent(&left_el->l_recs[0]));
4101 /*
4102 * Left path is easy - we can just allow the insert to
4103 * happen.
4104 */
4105 el = left_el;
4106 insert_el = left_el;
4107 index = ocfs2_search_extent_list(el, cpos);
4108 BUG_ON(index == -1);
4109 }
4110
4111 rec = &el->l_recs[index];
Joel Beckerc38e52b2009-02-13 02:56:23 -08004112 ocfs2_subtract_from_rec(ocfs2_metadata_cache_get_super(et->et_ci),
4113 split, rec, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004114 ocfs2_rotate_leaf(insert_el, split_rec);
4115}
4116
Mark Fashehdcd05382007-01-16 11:32:23 -08004117/*
Tao Mae7d4cb62008-08-18 17:38:44 +08004118 * This function only does inserts on an allocation b-tree. For tree
4119 * depth = 0, ocfs2_insert_at_leaf() is called directly.
Mark Fashehdcd05382007-01-16 11:32:23 -08004120 *
4121 * right_path is the path we want to do the actual insert
4122 * in. left_path should only be passed in if we need to update that
4123 * portion of the tree after an edge insert.
4124 */
Joel Becker3505bec2009-02-13 02:57:58 -08004125static int ocfs2_insert_path(handle_t *handle,
Joel Becker7dc02802009-02-12 19:20:13 -08004126 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004127 struct ocfs2_path *left_path,
4128 struct ocfs2_path *right_path,
4129 struct ocfs2_extent_rec *insert_rec,
4130 struct ocfs2_insert_type *insert)
4131{
4132 int ret, subtree_index;
4133 struct buffer_head *leaf_bh = path_leaf_bh(right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004134
Mark Fashehdcd05382007-01-16 11:32:23 -08004135 if (left_path) {
Mark Fashehdcd05382007-01-16 11:32:23 -08004136 /*
4137 * There's a chance that left_path got passed back to
4138 * us without being accounted for in the
4139 * journal. Extend our transaction here to be sure we
4140 * can change those blocks.
4141 */
Tao Mac901fb02010-04-26 14:34:57 +08004142 ret = ocfs2_extend_trans(handle, left_path->p_tree_depth);
Mark Fashehdcd05382007-01-16 11:32:23 -08004143 if (ret < 0) {
4144 mlog_errno(ret);
4145 goto out;
4146 }
4147
Joel Becker7dc02802009-02-12 19:20:13 -08004148 ret = ocfs2_journal_access_path(et->et_ci, handle, left_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004149 if (ret < 0) {
4150 mlog_errno(ret);
4151 goto out;
4152 }
4153 }
4154
Mark Fashehe8aed342007-12-03 16:43:01 -08004155 /*
4156 * Pass both paths to the journal. The majority of inserts
4157 * will be touching all components anyway.
4158 */
Joel Becker7dc02802009-02-12 19:20:13 -08004159 ret = ocfs2_journal_access_path(et->et_ci, handle, right_path);
Mark Fashehe8aed342007-12-03 16:43:01 -08004160 if (ret < 0) {
4161 mlog_errno(ret);
4162 goto out;
4163 }
4164
Mark Fasheh328d5752007-06-18 10:48:04 -07004165 if (insert->ins_split != SPLIT_NONE) {
4166 /*
4167 * We could call ocfs2_insert_at_leaf() for some types
Joe Perchesc78bad12008-02-03 17:33:42 +02004168 * of splits, but it's easier to just let one separate
Mark Fasheh328d5752007-06-18 10:48:04 -07004169 * function sort it all out.
4170 */
Joel Beckerc38e52b2009-02-13 02:56:23 -08004171 ocfs2_split_record(et, left_path, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07004172 insert_rec, insert->ins_split);
Mark Fashehe8aed342007-12-03 16:43:01 -08004173
4174 /*
4175 * Split might have modified either leaf and we don't
4176 * have a guarantee that the later edge insert will
4177 * dirty this for us.
4178 */
4179 if (left_path)
Joel Beckerec20cec2010-03-19 14:13:52 -07004180 ocfs2_journal_dirty(handle,
4181 path_leaf_bh(left_path));
Mark Fasheh328d5752007-06-18 10:48:04 -07004182 } else
Joel Beckerd5628622009-02-13 02:54:36 -08004183 ocfs2_insert_at_leaf(et, insert_rec, path_leaf_el(right_path),
4184 insert);
Mark Fashehdcd05382007-01-16 11:32:23 -08004185
Joel Beckerec20cec2010-03-19 14:13:52 -07004186 ocfs2_journal_dirty(handle, leaf_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004187
4188 if (left_path) {
4189 /*
4190 * The rotate code has indicated that we need to fix
4191 * up portions of the tree after the insert.
4192 *
4193 * XXX: Should we extend the transaction here?
4194 */
Joel Becker7dc02802009-02-12 19:20:13 -08004195 subtree_index = ocfs2_find_subtree_root(et, left_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08004196 right_path);
Joel Becker4619c732009-02-12 19:02:36 -08004197 ocfs2_complete_edge_insert(handle, left_path, right_path,
4198 subtree_index);
Mark Fashehdcd05382007-01-16 11:32:23 -08004199 }
4200
4201 ret = 0;
4202out:
4203 return ret;
4204}
4205
Joel Becker3505bec2009-02-13 02:57:58 -08004206static int ocfs2_do_insert_extent(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08004207 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004208 struct ocfs2_extent_rec *insert_rec,
4209 struct ocfs2_insert_type *type)
4210{
4211 int ret, rotate = 0;
4212 u32 cpos;
4213 struct ocfs2_path *right_path = NULL;
4214 struct ocfs2_path *left_path = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -08004215 struct ocfs2_extent_list *el;
4216
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004217 el = et->et_root_el;
Mark Fashehdcd05382007-01-16 11:32:23 -08004218
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08004219 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07004220 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehdcd05382007-01-16 11:32:23 -08004221 if (ret) {
4222 mlog_errno(ret);
4223 goto out;
4224 }
4225
4226 if (le16_to_cpu(el->l_tree_depth) == 0) {
Joel Beckerd5628622009-02-13 02:54:36 -08004227 ocfs2_insert_at_leaf(et, insert_rec, el, type);
Mark Fashehdcd05382007-01-16 11:32:23 -08004228 goto out_update_clusters;
4229 }
4230
Joel Beckerffdd7a52008-10-17 22:32:01 -07004231 right_path = ocfs2_new_path_from_et(et);
Mark Fashehdcd05382007-01-16 11:32:23 -08004232 if (!right_path) {
4233 ret = -ENOMEM;
4234 mlog_errno(ret);
4235 goto out;
4236 }
4237
4238 /*
4239 * Determine the path to start with. Rotations need the
4240 * rightmost path, everything else can go directly to the
4241 * target leaf.
4242 */
4243 cpos = le32_to_cpu(insert_rec->e_cpos);
4244 if (type->ins_appending == APPEND_NONE &&
4245 type->ins_contig == CONTIG_NONE) {
4246 rotate = 1;
4247 cpos = UINT_MAX;
4248 }
4249
Joel Beckerfacdb772009-02-12 18:08:48 -08004250 ret = ocfs2_find_path(et->et_ci, right_path, cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08004251 if (ret) {
4252 mlog_errno(ret);
4253 goto out;
4254 }
4255
4256 /*
4257 * Rotations and appends need special treatment - they modify
4258 * parts of the tree's above them.
4259 *
4260 * Both might pass back a path immediate to the left of the
4261 * one being inserted to. This will be cause
4262 * ocfs2_insert_path() to modify the rightmost records of
4263 * left_path to account for an edge insert.
4264 *
4265 * XXX: When modifying this code, keep in mind that an insert
4266 * can wind up skipping both of these two special cases...
4267 */
4268 if (rotate) {
Joel Becker1bbf0b82009-02-12 19:42:08 -08004269 ret = ocfs2_rotate_tree_right(handle, et, type->ins_split,
Mark Fashehdcd05382007-01-16 11:32:23 -08004270 le32_to_cpu(insert_rec->e_cpos),
4271 right_path, &left_path);
4272 if (ret) {
4273 mlog_errno(ret);
4274 goto out;
4275 }
Mark Fashehe8aed342007-12-03 16:43:01 -08004276
4277 /*
4278 * ocfs2_rotate_tree_right() might have extended the
4279 * transaction without re-journaling our tree root.
4280 */
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08004281 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07004282 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehe8aed342007-12-03 16:43:01 -08004283 if (ret) {
4284 mlog_errno(ret);
4285 goto out;
4286 }
Mark Fashehdcd05382007-01-16 11:32:23 -08004287 } else if (type->ins_appending == APPEND_TAIL
4288 && type->ins_contig != CONTIG_LEFT) {
Joel Beckerd401dc12009-02-13 02:24:10 -08004289 ret = ocfs2_append_rec_to_path(handle, et, insert_rec,
Mark Fashehdcd05382007-01-16 11:32:23 -08004290 right_path, &left_path);
4291 if (ret) {
4292 mlog_errno(ret);
4293 goto out;
4294 }
4295 }
4296
Joel Becker3505bec2009-02-13 02:57:58 -08004297 ret = ocfs2_insert_path(handle, et, left_path, right_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08004298 insert_rec, type);
4299 if (ret) {
4300 mlog_errno(ret);
4301 goto out;
4302 }
4303
4304out_update_clusters:
Mark Fasheh328d5752007-06-18 10:48:04 -07004305 if (type->ins_split == SPLIT_NONE)
Joel Becker6136ca52009-02-12 19:32:43 -08004306 ocfs2_et_update_clusters(et,
Joel Becker35dc0aa2008-08-20 16:25:06 -07004307 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08004308
Joel Beckerec20cec2010-03-19 14:13:52 -07004309 ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004310
4311out:
4312 ocfs2_free_path(left_path);
4313 ocfs2_free_path(right_path);
4314
4315 return ret;
4316}
4317
Mark Fasheh328d5752007-06-18 10:48:04 -07004318static enum ocfs2_contig_type
Joel Beckera2970292009-02-13 03:09:54 -08004319ocfs2_figure_merge_contig_type(struct ocfs2_extent_tree *et,
4320 struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07004321 struct ocfs2_extent_list *el, int index,
4322 struct ocfs2_extent_rec *split_rec)
4323{
Tao Maad5a4d72008-01-30 14:21:32 +08004324 int status;
Mark Fasheh328d5752007-06-18 10:48:04 -07004325 enum ocfs2_contig_type ret = CONTIG_NONE;
Tao Maad5a4d72008-01-30 14:21:32 +08004326 u32 left_cpos, right_cpos;
4327 struct ocfs2_extent_rec *rec = NULL;
4328 struct ocfs2_extent_list *new_el;
4329 struct ocfs2_path *left_path = NULL, *right_path = NULL;
4330 struct buffer_head *bh;
4331 struct ocfs2_extent_block *eb;
Joel Beckera2970292009-02-13 03:09:54 -08004332 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Tao Maad5a4d72008-01-30 14:21:32 +08004333
4334 if (index > 0) {
4335 rec = &el->l_recs[index - 1];
4336 } else if (path->p_tree_depth > 0) {
Joel Beckera2970292009-02-13 03:09:54 -08004337 status = ocfs2_find_cpos_for_left_leaf(sb, path, &left_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004338 if (status)
4339 goto out;
4340
4341 if (left_cpos != 0) {
Joel Beckerffdd7a52008-10-17 22:32:01 -07004342 left_path = ocfs2_new_path_from_path(path);
Tao Maad5a4d72008-01-30 14:21:32 +08004343 if (!left_path)
4344 goto out;
4345
Joel Beckera2970292009-02-13 03:09:54 -08004346 status = ocfs2_find_path(et->et_ci, left_path,
4347 left_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004348 if (status)
4349 goto out;
4350
4351 new_el = path_leaf_el(left_path);
4352
4353 if (le16_to_cpu(new_el->l_next_free_rec) !=
4354 le16_to_cpu(new_el->l_count)) {
4355 bh = path_leaf_bh(left_path);
4356 eb = (struct ocfs2_extent_block *)bh->b_data;
Joel Beckera2970292009-02-13 03:09:54 -08004357 ocfs2_error(sb,
Joel Becker5e965812008-11-13 14:49:16 -08004358 "Extent block #%llu has an "
4359 "invalid l_next_free_rec of "
4360 "%d. It should have "
4361 "matched the l_count of %d",
4362 (unsigned long long)le64_to_cpu(eb->h_blkno),
4363 le16_to_cpu(new_el->l_next_free_rec),
4364 le16_to_cpu(new_el->l_count));
4365 status = -EINVAL;
Tao Maad5a4d72008-01-30 14:21:32 +08004366 goto out;
4367 }
4368 rec = &new_el->l_recs[
4369 le16_to_cpu(new_el->l_next_free_rec) - 1];
4370 }
4371 }
Mark Fasheh328d5752007-06-18 10:48:04 -07004372
4373 /*
4374 * We're careful to check for an empty extent record here -
4375 * the merge code will know what to do if it sees one.
4376 */
Tao Maad5a4d72008-01-30 14:21:32 +08004377 if (rec) {
Mark Fasheh328d5752007-06-18 10:48:04 -07004378 if (index == 1 && ocfs2_is_empty_extent(rec)) {
4379 if (split_rec->e_cpos == el->l_recs[index].e_cpos)
4380 ret = CONTIG_RIGHT;
4381 } else {
Tao Ma853a3a12009-08-18 11:22:18 +08004382 ret = ocfs2_et_extent_contig(et, rec, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004383 }
4384 }
4385
Tao Maad5a4d72008-01-30 14:21:32 +08004386 rec = NULL;
4387 if (index < (le16_to_cpu(el->l_next_free_rec) - 1))
4388 rec = &el->l_recs[index + 1];
4389 else if (le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count) &&
4390 path->p_tree_depth > 0) {
Joel Beckera2970292009-02-13 03:09:54 -08004391 status = ocfs2_find_cpos_for_right_leaf(sb, path, &right_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004392 if (status)
4393 goto out;
4394
4395 if (right_cpos == 0)
4396 goto out;
4397
Joel Beckerffdd7a52008-10-17 22:32:01 -07004398 right_path = ocfs2_new_path_from_path(path);
Tao Maad5a4d72008-01-30 14:21:32 +08004399 if (!right_path)
4400 goto out;
4401
Joel Beckera2970292009-02-13 03:09:54 -08004402 status = ocfs2_find_path(et->et_ci, right_path, right_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004403 if (status)
4404 goto out;
4405
4406 new_el = path_leaf_el(right_path);
4407 rec = &new_el->l_recs[0];
4408 if (ocfs2_is_empty_extent(rec)) {
4409 if (le16_to_cpu(new_el->l_next_free_rec) <= 1) {
4410 bh = path_leaf_bh(right_path);
4411 eb = (struct ocfs2_extent_block *)bh->b_data;
Joel Beckera2970292009-02-13 03:09:54 -08004412 ocfs2_error(sb,
Joel Becker5e965812008-11-13 14:49:16 -08004413 "Extent block #%llu has an "
4414 "invalid l_next_free_rec of %d",
4415 (unsigned long long)le64_to_cpu(eb->h_blkno),
4416 le16_to_cpu(new_el->l_next_free_rec));
4417 status = -EINVAL;
Tao Maad5a4d72008-01-30 14:21:32 +08004418 goto out;
4419 }
4420 rec = &new_el->l_recs[1];
4421 }
4422 }
4423
4424 if (rec) {
Mark Fasheh328d5752007-06-18 10:48:04 -07004425 enum ocfs2_contig_type contig_type;
4426
Tao Ma853a3a12009-08-18 11:22:18 +08004427 contig_type = ocfs2_et_extent_contig(et, rec, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004428
4429 if (contig_type == CONTIG_LEFT && ret == CONTIG_RIGHT)
4430 ret = CONTIG_LEFTRIGHT;
4431 else if (ret == CONTIG_NONE)
4432 ret = contig_type;
4433 }
4434
Tao Maad5a4d72008-01-30 14:21:32 +08004435out:
4436 if (left_path)
4437 ocfs2_free_path(left_path);
4438 if (right_path)
4439 ocfs2_free_path(right_path);
4440
Mark Fasheh328d5752007-06-18 10:48:04 -07004441 return ret;
4442}
4443
Joel Becker1ef61b32009-02-13 03:12:33 -08004444static void ocfs2_figure_contig_type(struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004445 struct ocfs2_insert_type *insert,
4446 struct ocfs2_extent_list *el,
Joel Becker1ef61b32009-02-13 03:12:33 -08004447 struct ocfs2_extent_rec *insert_rec)
Mark Fashehdcd05382007-01-16 11:32:23 -08004448{
4449 int i;
4450 enum ocfs2_contig_type contig_type = CONTIG_NONE;
4451
Mark Fashehe48edee2007-03-07 16:46:57 -08004452 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
4453
Mark Fashehdcd05382007-01-16 11:32:23 -08004454 for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
Tao Ma853a3a12009-08-18 11:22:18 +08004455 contig_type = ocfs2_et_extent_contig(et, &el->l_recs[i],
4456 insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004457 if (contig_type != CONTIG_NONE) {
4458 insert->ins_contig_index = i;
4459 break;
4460 }
4461 }
4462 insert->ins_contig = contig_type;
Tao Maca12b7c2008-08-18 17:38:52 +08004463
4464 if (insert->ins_contig != CONTIG_NONE) {
4465 struct ocfs2_extent_rec *rec =
4466 &el->l_recs[insert->ins_contig_index];
4467 unsigned int len = le16_to_cpu(rec->e_leaf_clusters) +
4468 le16_to_cpu(insert_rec->e_leaf_clusters);
4469
4470 /*
4471 * Caller might want us to limit the size of extents, don't
4472 * calculate contiguousness if we might exceed that limit.
4473 */
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004474 if (et->et_max_leaf_clusters &&
4475 (len > et->et_max_leaf_clusters))
Tao Maca12b7c2008-08-18 17:38:52 +08004476 insert->ins_contig = CONTIG_NONE;
4477 }
Mark Fashehdcd05382007-01-16 11:32:23 -08004478}
4479
4480/*
4481 * This should only be called against the righmost leaf extent list.
4482 *
4483 * ocfs2_figure_appending_type() will figure out whether we'll have to
4484 * insert at the tail of the rightmost leaf.
4485 *
Tao Mae7d4cb62008-08-18 17:38:44 +08004486 * This should also work against the root extent list for tree's with 0
4487 * depth. If we consider the root extent list to be the rightmost leaf node
Mark Fashehdcd05382007-01-16 11:32:23 -08004488 * then the logic here makes sense.
4489 */
4490static void ocfs2_figure_appending_type(struct ocfs2_insert_type *insert,
4491 struct ocfs2_extent_list *el,
4492 struct ocfs2_extent_rec *insert_rec)
4493{
4494 int i;
4495 u32 cpos = le32_to_cpu(insert_rec->e_cpos);
4496 struct ocfs2_extent_rec *rec;
4497
4498 insert->ins_appending = APPEND_NONE;
4499
Mark Fashehe48edee2007-03-07 16:46:57 -08004500 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
Mark Fashehdcd05382007-01-16 11:32:23 -08004501
4502 if (!el->l_next_free_rec)
4503 goto set_tail_append;
4504
4505 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
4506 /* Were all records empty? */
4507 if (le16_to_cpu(el->l_next_free_rec) == 1)
4508 goto set_tail_append;
4509 }
4510
4511 i = le16_to_cpu(el->l_next_free_rec) - 1;
4512 rec = &el->l_recs[i];
4513
Mark Fashehe48edee2007-03-07 16:46:57 -08004514 if (cpos >=
4515 (le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)))
Mark Fashehdcd05382007-01-16 11:32:23 -08004516 goto set_tail_append;
4517
4518 return;
4519
4520set_tail_append:
4521 insert->ins_appending = APPEND_TAIL;
4522}
4523
4524/*
4525 * Helper function called at the begining of an insert.
4526 *
4527 * This computes a few things that are commonly used in the process of
4528 * inserting into the btree:
4529 * - Whether the new extent is contiguous with an existing one.
4530 * - The current tree depth.
4531 * - Whether the insert is an appending one.
4532 * - The total # of free records in the tree.
4533 *
4534 * All of the information is stored on the ocfs2_insert_type
4535 * structure.
4536 */
Joel Becker627961b2009-02-13 03:14:38 -08004537static int ocfs2_figure_insert_type(struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004538 struct buffer_head **last_eb_bh,
4539 struct ocfs2_extent_rec *insert_rec,
Tao Maoc77534f2007-08-28 17:22:33 -07004540 int *free_records,
Mark Fashehdcd05382007-01-16 11:32:23 -08004541 struct ocfs2_insert_type *insert)
4542{
4543 int ret;
Mark Fashehdcd05382007-01-16 11:32:23 -08004544 struct ocfs2_extent_block *eb;
4545 struct ocfs2_extent_list *el;
4546 struct ocfs2_path *path = NULL;
4547 struct buffer_head *bh = NULL;
4548
Mark Fasheh328d5752007-06-18 10:48:04 -07004549 insert->ins_split = SPLIT_NONE;
4550
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004551 el = et->et_root_el;
Mark Fashehdcd05382007-01-16 11:32:23 -08004552 insert->ins_tree_depth = le16_to_cpu(el->l_tree_depth);
4553
4554 if (el->l_tree_depth) {
4555 /*
4556 * If we have tree depth, we read in the
4557 * rightmost extent block ahead of time as
4558 * ocfs2_figure_insert_type() and ocfs2_add_branch()
4559 * may want it later.
4560 */
Joel Becker3d03a302009-02-12 17:49:26 -08004561 ret = ocfs2_read_extent_block(et->et_ci,
Joel Becker5e965812008-11-13 14:49:16 -08004562 ocfs2_et_get_last_eb_blk(et),
4563 &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004564 if (ret) {
4565 mlog_exit(ret);
4566 goto out;
4567 }
4568 eb = (struct ocfs2_extent_block *) bh->b_data;
4569 el = &eb->h_list;
4570 }
4571
4572 /*
4573 * Unless we have a contiguous insert, we'll need to know if
4574 * there is room left in our allocation tree for another
4575 * extent record.
4576 *
4577 * XXX: This test is simplistic, we can search for empty
4578 * extent records too.
4579 */
Tao Maoc77534f2007-08-28 17:22:33 -07004580 *free_records = le16_to_cpu(el->l_count) -
Mark Fashehdcd05382007-01-16 11:32:23 -08004581 le16_to_cpu(el->l_next_free_rec);
4582
4583 if (!insert->ins_tree_depth) {
Joel Becker1ef61b32009-02-13 03:12:33 -08004584 ocfs2_figure_contig_type(et, insert, el, insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004585 ocfs2_figure_appending_type(insert, el, insert_rec);
4586 return 0;
4587 }
4588
Joel Beckerffdd7a52008-10-17 22:32:01 -07004589 path = ocfs2_new_path_from_et(et);
Mark Fashehdcd05382007-01-16 11:32:23 -08004590 if (!path) {
4591 ret = -ENOMEM;
4592 mlog_errno(ret);
4593 goto out;
4594 }
4595
4596 /*
4597 * In the case that we're inserting past what the tree
4598 * currently accounts for, ocfs2_find_path() will return for
4599 * us the rightmost tree path. This is accounted for below in
4600 * the appending code.
4601 */
Joel Beckerfacdb772009-02-12 18:08:48 -08004602 ret = ocfs2_find_path(et->et_ci, path, le32_to_cpu(insert_rec->e_cpos));
Mark Fashehdcd05382007-01-16 11:32:23 -08004603 if (ret) {
4604 mlog_errno(ret);
4605 goto out;
4606 }
4607
4608 el = path_leaf_el(path);
4609
4610 /*
4611 * Now that we have the path, there's two things we want to determine:
4612 * 1) Contiguousness (also set contig_index if this is so)
4613 *
4614 * 2) Are we doing an append? We can trivially break this up
4615 * into two types of appends: simple record append, or a
4616 * rotate inside the tail leaf.
4617 */
Joel Becker1ef61b32009-02-13 03:12:33 -08004618 ocfs2_figure_contig_type(et, insert, el, insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004619
4620 /*
4621 * The insert code isn't quite ready to deal with all cases of
4622 * left contiguousness. Specifically, if it's an insert into
4623 * the 1st record in a leaf, it will require the adjustment of
Mark Fashehe48edee2007-03-07 16:46:57 -08004624 * cluster count on the last record of the path directly to it's
Mark Fashehdcd05382007-01-16 11:32:23 -08004625 * left. For now, just catch that case and fool the layers
4626 * above us. This works just fine for tree_depth == 0, which
4627 * is why we allow that above.
4628 */
4629 if (insert->ins_contig == CONTIG_LEFT &&
4630 insert->ins_contig_index == 0)
4631 insert->ins_contig = CONTIG_NONE;
4632
4633 /*
4634 * Ok, so we can simply compare against last_eb to figure out
4635 * whether the path doesn't exist. This will only happen in
4636 * the case that we're doing a tail append, so maybe we can
4637 * take advantage of that information somehow.
4638 */
Joel Becker35dc0aa2008-08-20 16:25:06 -07004639 if (ocfs2_et_get_last_eb_blk(et) ==
Tao Mae7d4cb62008-08-18 17:38:44 +08004640 path_leaf_bh(path)->b_blocknr) {
Mark Fashehdcd05382007-01-16 11:32:23 -08004641 /*
4642 * Ok, ocfs2_find_path() returned us the rightmost
4643 * tree path. This might be an appending insert. There are
4644 * two cases:
4645 * 1) We're doing a true append at the tail:
4646 * -This might even be off the end of the leaf
4647 * 2) We're "appending" by rotating in the tail
4648 */
4649 ocfs2_figure_appending_type(insert, el, insert_rec);
4650 }
4651
4652out:
4653 ocfs2_free_path(path);
4654
4655 if (ret == 0)
4656 *last_eb_bh = bh;
4657 else
4658 brelse(bh);
4659 return ret;
4660}
4661
4662/*
Joel Beckercc79d8c2009-02-13 03:24:43 -08004663 * Insert an extent into a btree.
Mark Fashehdcd05382007-01-16 11:32:23 -08004664 *
Joel Beckercc79d8c2009-02-13 03:24:43 -08004665 * The caller needs to update the owning btree's cluster count.
Mark Fashehdcd05382007-01-16 11:32:23 -08004666 */
Joel Beckercc79d8c2009-02-13 03:24:43 -08004667int ocfs2_insert_extent(handle_t *handle,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004668 struct ocfs2_extent_tree *et,
4669 u32 cpos,
4670 u64 start_blk,
4671 u32 new_clusters,
4672 u8 flags,
4673 struct ocfs2_alloc_context *meta_ac)
Mark Fashehccd979b2005-12-15 14:31:24 -08004674{
Mark Fashehc3afcbb2007-05-29 14:28:51 -07004675 int status;
Tao Maoc77534f2007-08-28 17:22:33 -07004676 int uninitialized_var(free_records);
Mark Fashehccd979b2005-12-15 14:31:24 -08004677 struct buffer_head *last_eb_bh = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -08004678 struct ocfs2_insert_type insert = {0, };
4679 struct ocfs2_extent_rec rec;
Mark Fashehccd979b2005-12-15 14:31:24 -08004680
Joel Beckercc79d8c2009-02-13 03:24:43 -08004681 mlog(0, "add %u clusters at position %u to owner %llu\n",
4682 new_clusters, cpos,
4683 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci));
Mark Fashehccd979b2005-12-15 14:31:24 -08004684
Mark Fashehe48edee2007-03-07 16:46:57 -08004685 memset(&rec, 0, sizeof(rec));
Mark Fashehdcd05382007-01-16 11:32:23 -08004686 rec.e_cpos = cpu_to_le32(cpos);
4687 rec.e_blkno = cpu_to_le64(start_blk);
Mark Fashehe48edee2007-03-07 16:46:57 -08004688 rec.e_leaf_clusters = cpu_to_le16(new_clusters);
Mark Fasheh2ae99a62007-03-09 16:43:28 -08004689 rec.e_flags = flags;
Joel Becker6136ca52009-02-12 19:32:43 -08004690 status = ocfs2_et_insert_check(et, &rec);
Joel Becker1e61ee72008-08-20 18:32:45 -07004691 if (status) {
4692 mlog_errno(status);
4693 goto bail;
4694 }
Mark Fashehccd979b2005-12-15 14:31:24 -08004695
Joel Becker627961b2009-02-13 03:14:38 -08004696 status = ocfs2_figure_insert_type(et, &last_eb_bh, &rec,
Tao Maoc77534f2007-08-28 17:22:33 -07004697 &free_records, &insert);
Mark Fashehdcd05382007-01-16 11:32:23 -08004698 if (status < 0) {
4699 mlog_errno(status);
4700 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -08004701 }
4702
Mark Fashehdcd05382007-01-16 11:32:23 -08004703 mlog(0, "Insert.appending: %u, Insert.Contig: %u, "
4704 "Insert.contig_index: %d, Insert.free_records: %d, "
4705 "Insert.tree_depth: %d\n",
4706 insert.ins_appending, insert.ins_contig, insert.ins_contig_index,
Tao Maoc77534f2007-08-28 17:22:33 -07004707 free_records, insert.ins_tree_depth);
Mark Fashehccd979b2005-12-15 14:31:24 -08004708
Tao Maoc77534f2007-08-28 17:22:33 -07004709 if (insert.ins_contig == CONTIG_NONE && free_records == 0) {
Joel Beckerd401dc12009-02-13 02:24:10 -08004710 status = ocfs2_grow_tree(handle, et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004711 &insert.ins_tree_depth, &last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07004712 meta_ac);
4713 if (status) {
Mark Fashehccd979b2005-12-15 14:31:24 -08004714 mlog_errno(status);
4715 goto bail;
4716 }
Mark Fashehccd979b2005-12-15 14:31:24 -08004717 }
4718
Mark Fashehdcd05382007-01-16 11:32:23 -08004719 /* Finally, we can add clusters. This might rotate the tree for us. */
Joel Becker3505bec2009-02-13 02:57:58 -08004720 status = ocfs2_do_insert_extent(handle, et, &rec, &insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08004721 if (status < 0)
4722 mlog_errno(status);
Joel Becker92ba4702009-02-13 03:18:34 -08004723 else
4724 ocfs2_et_extent_map_insert(et, &rec);
Mark Fashehccd979b2005-12-15 14:31:24 -08004725
4726bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07004727 brelse(last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08004728
Tao Maf56654c2008-08-18 17:38:48 +08004729 mlog_exit(status);
4730 return status;
4731}
4732
Tao Ma0eb8d472008-08-18 17:38:45 +08004733/*
4734 * Allcate and add clusters into the extent b-tree.
4735 * The new clusters(clusters_to_add) will be inserted at logical_offset.
Joel Beckerf99b9b72008-08-20 19:36:33 -07004736 * The extent b-tree's root is specified by et, and
Tao Ma0eb8d472008-08-18 17:38:45 +08004737 * it is not limited to the file storage. Any extent tree can use this
4738 * function if it implements the proper ocfs2_extent_tree.
4739 */
Joel Beckercbee7e12009-02-13 03:34:15 -08004740int ocfs2_add_clusters_in_btree(handle_t *handle,
4741 struct ocfs2_extent_tree *et,
Tao Ma0eb8d472008-08-18 17:38:45 +08004742 u32 *logical_offset,
4743 u32 clusters_to_add,
4744 int mark_unwritten,
Tao Ma0eb8d472008-08-18 17:38:45 +08004745 struct ocfs2_alloc_context *data_ac,
4746 struct ocfs2_alloc_context *meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004747 enum ocfs2_alloc_restarted *reason_ret)
Tao Ma0eb8d472008-08-18 17:38:45 +08004748{
4749 int status = 0;
4750 int free_extents;
4751 enum ocfs2_alloc_restarted reason = RESTART_NONE;
4752 u32 bit_off, num_bits;
4753 u64 block;
4754 u8 flags = 0;
Joel Beckercbee7e12009-02-13 03:34:15 -08004755 struct ocfs2_super *osb =
4756 OCFS2_SB(ocfs2_metadata_cache_get_super(et->et_ci));
Tao Ma0eb8d472008-08-18 17:38:45 +08004757
4758 BUG_ON(!clusters_to_add);
4759
4760 if (mark_unwritten)
4761 flags = OCFS2_EXT_UNWRITTEN;
4762
Joel Becker3d03a302009-02-12 17:49:26 -08004763 free_extents = ocfs2_num_free_extents(osb, et);
Tao Ma0eb8d472008-08-18 17:38:45 +08004764 if (free_extents < 0) {
4765 status = free_extents;
4766 mlog_errno(status);
4767 goto leave;
4768 }
4769
4770 /* there are two cases which could cause us to EAGAIN in the
4771 * we-need-more-metadata case:
4772 * 1) we haven't reserved *any*
4773 * 2) we are so fragmented, we've needed to add metadata too
4774 * many times. */
4775 if (!free_extents && !meta_ac) {
4776 mlog(0, "we haven't reserved any metadata!\n");
4777 status = -EAGAIN;
4778 reason = RESTART_META;
4779 goto leave;
4780 } else if ((!free_extents)
4781 && (ocfs2_alloc_context_bits_left(meta_ac)
Joel Beckerf99b9b72008-08-20 19:36:33 -07004782 < ocfs2_extend_meta_needed(et->et_root_el))) {
Tao Ma0eb8d472008-08-18 17:38:45 +08004783 mlog(0, "filesystem is really fragmented...\n");
4784 status = -EAGAIN;
4785 reason = RESTART_META;
4786 goto leave;
4787 }
4788
4789 status = __ocfs2_claim_clusters(osb, handle, data_ac, 1,
4790 clusters_to_add, &bit_off, &num_bits);
4791 if (status < 0) {
4792 if (status != -ENOSPC)
4793 mlog_errno(status);
4794 goto leave;
4795 }
4796
4797 BUG_ON(num_bits > clusters_to_add);
4798
Joel Becker13723d02008-10-17 19:25:01 -07004799 /* reserve our write early -- insert_extent may update the tree root */
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08004800 status = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07004801 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma0eb8d472008-08-18 17:38:45 +08004802 if (status < 0) {
4803 mlog_errno(status);
4804 goto leave;
4805 }
4806
4807 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
Joel Beckercbee7e12009-02-13 03:34:15 -08004808 mlog(0, "Allocating %u clusters at block %u for owner %llu\n",
4809 num_bits, bit_off,
4810 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci));
Joel Beckercc79d8c2009-02-13 03:24:43 -08004811 status = ocfs2_insert_extent(handle, et, *logical_offset, block,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004812 num_bits, flags, meta_ac);
Tao Ma0eb8d472008-08-18 17:38:45 +08004813 if (status < 0) {
4814 mlog_errno(status);
4815 goto leave;
4816 }
4817
Joel Beckerec20cec2010-03-19 14:13:52 -07004818 ocfs2_journal_dirty(handle, et->et_root_bh);
Tao Ma0eb8d472008-08-18 17:38:45 +08004819
4820 clusters_to_add -= num_bits;
4821 *logical_offset += num_bits;
4822
4823 if (clusters_to_add) {
4824 mlog(0, "need to alloc once more, wanted = %u\n",
4825 clusters_to_add);
4826 status = -EAGAIN;
4827 reason = RESTART_TRANS;
4828 }
4829
4830leave:
4831 mlog_exit(status);
4832 if (reason_ret)
4833 *reason_ret = reason;
4834 return status;
4835}
4836
Mark Fasheh328d5752007-06-18 10:48:04 -07004837static void ocfs2_make_right_split_rec(struct super_block *sb,
4838 struct ocfs2_extent_rec *split_rec,
4839 u32 cpos,
4840 struct ocfs2_extent_rec *rec)
4841{
4842 u32 rec_cpos = le32_to_cpu(rec->e_cpos);
4843 u32 rec_range = rec_cpos + le16_to_cpu(rec->e_leaf_clusters);
4844
4845 memset(split_rec, 0, sizeof(struct ocfs2_extent_rec));
4846
4847 split_rec->e_cpos = cpu_to_le32(cpos);
4848 split_rec->e_leaf_clusters = cpu_to_le16(rec_range - cpos);
4849
4850 split_rec->e_blkno = rec->e_blkno;
4851 le64_add_cpu(&split_rec->e_blkno,
4852 ocfs2_clusters_to_blocks(sb, cpos - rec_cpos));
4853
4854 split_rec->e_flags = rec->e_flags;
4855}
4856
Joel Beckerd2311292009-02-13 03:43:22 -08004857static int ocfs2_split_and_insert(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08004858 struct ocfs2_extent_tree *et,
Joel Beckerd2311292009-02-13 03:43:22 -08004859 struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07004860 struct buffer_head **last_eb_bh,
4861 int split_index,
4862 struct ocfs2_extent_rec *orig_split_rec,
4863 struct ocfs2_alloc_context *meta_ac)
4864{
4865 int ret = 0, depth;
4866 unsigned int insert_range, rec_range, do_leftright = 0;
4867 struct ocfs2_extent_rec tmprec;
4868 struct ocfs2_extent_list *rightmost_el;
4869 struct ocfs2_extent_rec rec;
4870 struct ocfs2_extent_rec split_rec = *orig_split_rec;
4871 struct ocfs2_insert_type insert;
4872 struct ocfs2_extent_block *eb;
Mark Fasheh328d5752007-06-18 10:48:04 -07004873
4874leftright:
4875 /*
4876 * Store a copy of the record on the stack - it might move
4877 * around as the tree is manipulated below.
4878 */
4879 rec = path_leaf_el(path)->l_recs[split_index];
4880
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004881 rightmost_el = et->et_root_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07004882
4883 depth = le16_to_cpu(rightmost_el->l_tree_depth);
4884 if (depth) {
4885 BUG_ON(!(*last_eb_bh));
4886 eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data;
4887 rightmost_el = &eb->h_list;
4888 }
4889
4890 if (le16_to_cpu(rightmost_el->l_next_free_rec) ==
4891 le16_to_cpu(rightmost_el->l_count)) {
Joel Beckerd401dc12009-02-13 02:24:10 -08004892 ret = ocfs2_grow_tree(handle, et,
Tao Mae7d4cb62008-08-18 17:38:44 +08004893 &depth, last_eb_bh, meta_ac);
Mark Fasheh328d5752007-06-18 10:48:04 -07004894 if (ret) {
4895 mlog_errno(ret);
4896 goto out;
4897 }
Mark Fasheh328d5752007-06-18 10:48:04 -07004898 }
4899
4900 memset(&insert, 0, sizeof(struct ocfs2_insert_type));
4901 insert.ins_appending = APPEND_NONE;
4902 insert.ins_contig = CONTIG_NONE;
Mark Fasheh328d5752007-06-18 10:48:04 -07004903 insert.ins_tree_depth = depth;
4904
4905 insert_range = le32_to_cpu(split_rec.e_cpos) +
4906 le16_to_cpu(split_rec.e_leaf_clusters);
4907 rec_range = le32_to_cpu(rec.e_cpos) +
4908 le16_to_cpu(rec.e_leaf_clusters);
4909
4910 if (split_rec.e_cpos == rec.e_cpos) {
4911 insert.ins_split = SPLIT_LEFT;
4912 } else if (insert_range == rec_range) {
4913 insert.ins_split = SPLIT_RIGHT;
4914 } else {
4915 /*
4916 * Left/right split. We fake this as a right split
4917 * first and then make a second pass as a left split.
4918 */
4919 insert.ins_split = SPLIT_RIGHT;
4920
Joel Beckerd2311292009-02-13 03:43:22 -08004921 ocfs2_make_right_split_rec(ocfs2_metadata_cache_get_super(et->et_ci),
4922 &tmprec, insert_range, &rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004923
4924 split_rec = tmprec;
4925
4926 BUG_ON(do_leftright);
4927 do_leftright = 1;
4928 }
4929
Joel Becker3505bec2009-02-13 02:57:58 -08004930 ret = ocfs2_do_insert_extent(handle, et, &split_rec, &insert);
Mark Fasheh328d5752007-06-18 10:48:04 -07004931 if (ret) {
4932 mlog_errno(ret);
4933 goto out;
4934 }
4935
4936 if (do_leftright == 1) {
4937 u32 cpos;
4938 struct ocfs2_extent_list *el;
4939
4940 do_leftright++;
4941 split_rec = *orig_split_rec;
4942
4943 ocfs2_reinit_path(path, 1);
4944
4945 cpos = le32_to_cpu(split_rec.e_cpos);
Joel Beckerfacdb772009-02-12 18:08:48 -08004946 ret = ocfs2_find_path(et->et_ci, path, cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07004947 if (ret) {
4948 mlog_errno(ret);
4949 goto out;
4950 }
4951
4952 el = path_leaf_el(path);
4953 split_index = ocfs2_search_extent_list(el, cpos);
4954 goto leftright;
4955 }
4956out:
4957
4958 return ret;
4959}
4960
Joel Beckerf3868d02009-02-17 19:46:04 -08004961static int ocfs2_replace_extent_rec(handle_t *handle,
4962 struct ocfs2_extent_tree *et,
Tao Ma47be12e2009-01-09 07:32:48 +08004963 struct ocfs2_path *path,
4964 struct ocfs2_extent_list *el,
4965 int split_index,
4966 struct ocfs2_extent_rec *split_rec)
4967{
4968 int ret;
4969
Joel Beckerf3868d02009-02-17 19:46:04 -08004970 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, path,
Tao Ma47be12e2009-01-09 07:32:48 +08004971 path_num_items(path) - 1);
4972 if (ret) {
4973 mlog_errno(ret);
4974 goto out;
4975 }
4976
4977 el->l_recs[split_index] = *split_rec;
4978
4979 ocfs2_journal_dirty(handle, path_leaf_bh(path));
4980out:
4981 return ret;
4982}
4983
Mark Fasheh328d5752007-06-18 10:48:04 -07004984/*
Tao Ma555936b2009-08-18 11:22:21 +08004985 * Split part or all of the extent record at split_index in the leaf
4986 * pointed to by path. Merge with the contiguous extent record if needed.
Mark Fasheh328d5752007-06-18 10:48:04 -07004987 *
4988 * Care is taken to handle contiguousness so as to not grow the tree.
4989 *
4990 * meta_ac is not strictly necessary - we only truly need it if growth
4991 * of the tree is required. All other cases will degrade into a less
4992 * optimal tree layout.
4993 *
Tao Mae7d4cb62008-08-18 17:38:44 +08004994 * last_eb_bh should be the rightmost leaf block for any extent
4995 * btree. Since a split may grow the tree or a merge might shrink it,
4996 * the caller cannot trust the contents of that buffer after this call.
Mark Fasheh328d5752007-06-18 10:48:04 -07004997 *
4998 * This code is optimized for readability - several passes might be
4999 * made over certain portions of the tree. All of those blocks will
5000 * have been brought into cache (and pinned via the journal), so the
5001 * extra overhead is not expressed in terms of disk reads.
5002 */
Tao Mae2e9f602009-08-18 11:22:34 +08005003int ocfs2_split_extent(handle_t *handle,
5004 struct ocfs2_extent_tree *et,
5005 struct ocfs2_path *path,
5006 int split_index,
5007 struct ocfs2_extent_rec *split_rec,
5008 struct ocfs2_alloc_context *meta_ac,
5009 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fasheh328d5752007-06-18 10:48:04 -07005010{
5011 int ret = 0;
5012 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fashehe8aed342007-12-03 16:43:01 -08005013 struct buffer_head *last_eb_bh = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07005014 struct ocfs2_extent_rec *rec = &el->l_recs[split_index];
5015 struct ocfs2_merge_ctxt ctxt;
5016 struct ocfs2_extent_list *rightmost_el;
5017
Mark Fasheh328d5752007-06-18 10:48:04 -07005018 if (le32_to_cpu(rec->e_cpos) > le32_to_cpu(split_rec->e_cpos) ||
5019 ((le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)) <
5020 (le32_to_cpu(split_rec->e_cpos) + le16_to_cpu(split_rec->e_leaf_clusters)))) {
5021 ret = -EIO;
5022 mlog_errno(ret);
5023 goto out;
5024 }
5025
Joel Beckera2970292009-02-13 03:09:54 -08005026 ctxt.c_contig_type = ocfs2_figure_merge_contig_type(et, path, el,
Mark Fasheh328d5752007-06-18 10:48:04 -07005027 split_index,
5028 split_rec);
5029
5030 /*
5031 * The core merge / split code wants to know how much room is
Joel Beckera1cf0762009-02-13 03:45:49 -08005032 * left in this allocation tree, so we pass the
Mark Fasheh328d5752007-06-18 10:48:04 -07005033 * rightmost extent list.
5034 */
5035 if (path->p_tree_depth) {
5036 struct ocfs2_extent_block *eb;
Mark Fasheh328d5752007-06-18 10:48:04 -07005037
Joel Becker3d03a302009-02-12 17:49:26 -08005038 ret = ocfs2_read_extent_block(et->et_ci,
Joel Becker5e965812008-11-13 14:49:16 -08005039 ocfs2_et_get_last_eb_blk(et),
5040 &last_eb_bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07005041 if (ret) {
5042 mlog_exit(ret);
5043 goto out;
5044 }
5045
5046 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
Mark Fasheh328d5752007-06-18 10:48:04 -07005047 rightmost_el = &eb->h_list;
5048 } else
5049 rightmost_el = path_root_el(path);
5050
Mark Fasheh328d5752007-06-18 10:48:04 -07005051 if (rec->e_cpos == split_rec->e_cpos &&
5052 rec->e_leaf_clusters == split_rec->e_leaf_clusters)
5053 ctxt.c_split_covers_rec = 1;
5054 else
5055 ctxt.c_split_covers_rec = 0;
5056
5057 ctxt.c_has_empty_extent = ocfs2_is_empty_extent(&el->l_recs[0]);
5058
Mark Fasheh015452b2007-09-12 10:21:22 -07005059 mlog(0, "index: %d, contig: %u, has_empty: %u, split_covers: %u\n",
5060 split_index, ctxt.c_contig_type, ctxt.c_has_empty_extent,
5061 ctxt.c_split_covers_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07005062
5063 if (ctxt.c_contig_type == CONTIG_NONE) {
5064 if (ctxt.c_split_covers_rec)
Joel Beckerf3868d02009-02-17 19:46:04 -08005065 ret = ocfs2_replace_extent_rec(handle, et, path, el,
Tao Ma47be12e2009-01-09 07:32:48 +08005066 split_index, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07005067 else
Joel Beckerd2311292009-02-13 03:43:22 -08005068 ret = ocfs2_split_and_insert(handle, et, path,
Mark Fasheh328d5752007-06-18 10:48:04 -07005069 &last_eb_bh, split_index,
5070 split_rec, meta_ac);
5071 if (ret)
5072 mlog_errno(ret);
5073 } else {
Joel Beckerc495dd22009-02-13 02:19:11 -08005074 ret = ocfs2_try_to_merge_extent(handle, et, path,
Mark Fasheh328d5752007-06-18 10:48:04 -07005075 split_index, split_rec,
Joel Beckerc495dd22009-02-13 02:19:11 -08005076 dealloc, &ctxt);
Mark Fasheh328d5752007-06-18 10:48:04 -07005077 if (ret)
5078 mlog_errno(ret);
5079 }
5080
Mark Fasheh328d5752007-06-18 10:48:04 -07005081out:
5082 brelse(last_eb_bh);
5083 return ret;
5084}
5085
5086/*
Tao Ma555936b2009-08-18 11:22:21 +08005087 * Change the flags of the already-existing extent at cpos for len clusters.
5088 *
5089 * new_flags: the flags we want to set.
5090 * clear_flags: the flags we want to clear.
5091 * phys: the new physical offset we want this new extent starts from.
Mark Fasheh328d5752007-06-18 10:48:04 -07005092 *
5093 * If the existing extent is larger than the request, initiate a
5094 * split. An attempt will be made at merging with adjacent extents.
5095 *
5096 * The caller is responsible for passing down meta_ac if we'll need it.
5097 */
Tao Ma1aa75fe2009-08-18 11:28:39 +08005098int ocfs2_change_extent_flag(handle_t *handle,
5099 struct ocfs2_extent_tree *et,
5100 u32 cpos, u32 len, u32 phys,
5101 struct ocfs2_alloc_context *meta_ac,
5102 struct ocfs2_cached_dealloc_ctxt *dealloc,
5103 int new_flags, int clear_flags)
Mark Fasheh328d5752007-06-18 10:48:04 -07005104{
5105 int ret, index;
Tao Ma555936b2009-08-18 11:22:21 +08005106 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
5107 u64 start_blkno = ocfs2_clusters_to_blocks(sb, phys);
Mark Fasheh328d5752007-06-18 10:48:04 -07005108 struct ocfs2_extent_rec split_rec;
5109 struct ocfs2_path *left_path = NULL;
5110 struct ocfs2_extent_list *el;
Tao Ma555936b2009-08-18 11:22:21 +08005111 struct ocfs2_extent_rec *rec;
Mark Fasheh328d5752007-06-18 10:48:04 -07005112
Joel Beckerffdd7a52008-10-17 22:32:01 -07005113 left_path = ocfs2_new_path_from_et(et);
Mark Fasheh328d5752007-06-18 10:48:04 -07005114 if (!left_path) {
5115 ret = -ENOMEM;
5116 mlog_errno(ret);
5117 goto out;
5118 }
5119
Joel Beckerfacdb772009-02-12 18:08:48 -08005120 ret = ocfs2_find_path(et->et_ci, left_path, cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07005121 if (ret) {
5122 mlog_errno(ret);
5123 goto out;
5124 }
5125 el = path_leaf_el(left_path);
5126
5127 index = ocfs2_search_extent_list(el, cpos);
5128 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
Tao Ma555936b2009-08-18 11:22:21 +08005129 ocfs2_error(sb,
5130 "Owner %llu has an extent at cpos %u which can no "
Mark Fasheh328d5752007-06-18 10:48:04 -07005131 "longer be found.\n",
Tao Ma555936b2009-08-18 11:22:21 +08005132 (unsigned long long)
5133 ocfs2_metadata_cache_owner(et->et_ci), cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07005134 ret = -EROFS;
5135 goto out;
5136 }
5137
Tao Ma555936b2009-08-18 11:22:21 +08005138 ret = -EIO;
5139 rec = &el->l_recs[index];
5140 if (new_flags && (rec->e_flags & new_flags)) {
5141 mlog(ML_ERROR, "Owner %llu tried to set %d flags on an "
5142 "extent that already had them",
5143 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5144 new_flags);
5145 goto out;
5146 }
5147
5148 if (clear_flags && !(rec->e_flags & clear_flags)) {
5149 mlog(ML_ERROR, "Owner %llu tried to clear %d flags on an "
5150 "extent that didn't have them",
5151 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5152 clear_flags);
5153 goto out;
5154 }
5155
Mark Fasheh328d5752007-06-18 10:48:04 -07005156 memset(&split_rec, 0, sizeof(struct ocfs2_extent_rec));
5157 split_rec.e_cpos = cpu_to_le32(cpos);
5158 split_rec.e_leaf_clusters = cpu_to_le16(len);
5159 split_rec.e_blkno = cpu_to_le64(start_blkno);
Tao Ma555936b2009-08-18 11:22:21 +08005160 split_rec.e_flags = rec->e_flags;
5161 if (new_flags)
5162 split_rec.e_flags |= new_flags;
5163 if (clear_flags)
5164 split_rec.e_flags &= ~clear_flags;
Mark Fasheh328d5752007-06-18 10:48:04 -07005165
Tao Mae2e9f602009-08-18 11:22:34 +08005166 ret = ocfs2_split_extent(handle, et, left_path,
5167 index, &split_rec, meta_ac,
5168 dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07005169 if (ret)
5170 mlog_errno(ret);
5171
5172out:
5173 ocfs2_free_path(left_path);
5174 return ret;
Tao Ma555936b2009-08-18 11:22:21 +08005175
5176}
5177
5178/*
5179 * Mark the already-existing extent at cpos as written for len clusters.
5180 * This removes the unwritten extent flag.
5181 *
5182 * If the existing extent is larger than the request, initiate a
5183 * split. An attempt will be made at merging with adjacent extents.
5184 *
5185 * The caller is responsible for passing down meta_ac if we'll need it.
5186 */
5187int ocfs2_mark_extent_written(struct inode *inode,
5188 struct ocfs2_extent_tree *et,
5189 handle_t *handle, u32 cpos, u32 len, u32 phys,
5190 struct ocfs2_alloc_context *meta_ac,
5191 struct ocfs2_cached_dealloc_ctxt *dealloc)
5192{
5193 int ret;
5194
5195 mlog(0, "Inode %lu cpos %u, len %u, phys clusters %u\n",
5196 inode->i_ino, cpos, len, phys);
5197
5198 if (!ocfs2_writes_unwritten_extents(OCFS2_SB(inode->i_sb))) {
5199 ocfs2_error(inode->i_sb, "Inode %llu has unwritten extents "
5200 "that are being written to, but the feature bit "
5201 "is not set in the super block.",
5202 (unsigned long long)OCFS2_I(inode)->ip_blkno);
5203 ret = -EROFS;
5204 goto out;
5205 }
5206
5207 /*
5208 * XXX: This should be fixed up so that we just re-insert the
5209 * next extent records.
5210 */
5211 ocfs2_et_extent_map_truncate(et, 0);
5212
5213 ret = ocfs2_change_extent_flag(handle, et, cpos,
5214 len, phys, meta_ac, dealloc,
5215 0, OCFS2_EXT_UNWRITTEN);
5216 if (ret)
5217 mlog_errno(ret);
5218
5219out:
5220 return ret;
Mark Fasheh328d5752007-06-18 10:48:04 -07005221}
5222
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005223static int ocfs2_split_tree(handle_t *handle, struct ocfs2_extent_tree *et,
5224 struct ocfs2_path *path,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005225 int index, u32 new_range,
5226 struct ocfs2_alloc_context *meta_ac)
5227{
Tao Mac901fb02010-04-26 14:34:57 +08005228 int ret, depth, credits;
Mark Fashehd0c7d702007-07-03 13:27:22 -07005229 struct buffer_head *last_eb_bh = NULL;
5230 struct ocfs2_extent_block *eb;
5231 struct ocfs2_extent_list *rightmost_el, *el;
5232 struct ocfs2_extent_rec split_rec;
5233 struct ocfs2_extent_rec *rec;
5234 struct ocfs2_insert_type insert;
5235
5236 /*
5237 * Setup the record to split before we grow the tree.
5238 */
5239 el = path_leaf_el(path);
5240 rec = &el->l_recs[index];
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005241 ocfs2_make_right_split_rec(ocfs2_metadata_cache_get_super(et->et_ci),
5242 &split_rec, new_range, rec);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005243
5244 depth = path->p_tree_depth;
5245 if (depth > 0) {
Joel Becker3d03a302009-02-12 17:49:26 -08005246 ret = ocfs2_read_extent_block(et->et_ci,
Joel Becker5e965812008-11-13 14:49:16 -08005247 ocfs2_et_get_last_eb_blk(et),
5248 &last_eb_bh);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005249 if (ret < 0) {
5250 mlog_errno(ret);
5251 goto out;
5252 }
5253
5254 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
5255 rightmost_el = &eb->h_list;
5256 } else
5257 rightmost_el = path_leaf_el(path);
5258
Tao Mac901fb02010-04-26 14:34:57 +08005259 credits = path->p_tree_depth +
5260 ocfs2_extend_meta_needed(et->et_root_el);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005261 ret = ocfs2_extend_trans(handle, credits);
5262 if (ret) {
5263 mlog_errno(ret);
5264 goto out;
5265 }
5266
5267 if (le16_to_cpu(rightmost_el->l_next_free_rec) ==
5268 le16_to_cpu(rightmost_el->l_count)) {
Joel Beckerd401dc12009-02-13 02:24:10 -08005269 ret = ocfs2_grow_tree(handle, et, &depth, &last_eb_bh,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005270 meta_ac);
5271 if (ret) {
5272 mlog_errno(ret);
5273 goto out;
5274 }
Mark Fashehd0c7d702007-07-03 13:27:22 -07005275 }
5276
5277 memset(&insert, 0, sizeof(struct ocfs2_insert_type));
5278 insert.ins_appending = APPEND_NONE;
5279 insert.ins_contig = CONTIG_NONE;
5280 insert.ins_split = SPLIT_RIGHT;
Mark Fashehd0c7d702007-07-03 13:27:22 -07005281 insert.ins_tree_depth = depth;
5282
Joel Becker3505bec2009-02-13 02:57:58 -08005283 ret = ocfs2_do_insert_extent(handle, et, &split_rec, &insert);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005284 if (ret)
5285 mlog_errno(ret);
5286
5287out:
5288 brelse(last_eb_bh);
5289 return ret;
5290}
5291
Joel Becker043beeb2009-02-13 02:42:30 -08005292static int ocfs2_truncate_rec(handle_t *handle,
5293 struct ocfs2_extent_tree *et,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005294 struct ocfs2_path *path, int index,
5295 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Becker043beeb2009-02-13 02:42:30 -08005296 u32 cpos, u32 len)
Mark Fashehd0c7d702007-07-03 13:27:22 -07005297{
5298 int ret;
5299 u32 left_cpos, rec_range, trunc_range;
5300 int wants_rotate = 0, is_rightmost_tree_rec = 0;
Joel Becker043beeb2009-02-13 02:42:30 -08005301 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005302 struct ocfs2_path *left_path = NULL;
5303 struct ocfs2_extent_list *el = path_leaf_el(path);
5304 struct ocfs2_extent_rec *rec;
5305 struct ocfs2_extent_block *eb;
5306
5307 if (ocfs2_is_empty_extent(&el->l_recs[0]) && index > 0) {
Joel Becker70f18c02009-02-13 02:09:31 -08005308 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005309 if (ret) {
5310 mlog_errno(ret);
5311 goto out;
5312 }
5313
5314 index--;
5315 }
5316
5317 if (index == (le16_to_cpu(el->l_next_free_rec) - 1) &&
5318 path->p_tree_depth) {
5319 /*
5320 * Check whether this is the rightmost tree record. If
5321 * we remove all of this record or part of its right
5322 * edge then an update of the record lengths above it
5323 * will be required.
5324 */
5325 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
5326 if (eb->h_next_leaf_blk == 0)
5327 is_rightmost_tree_rec = 1;
5328 }
5329
5330 rec = &el->l_recs[index];
5331 if (index == 0 && path->p_tree_depth &&
5332 le32_to_cpu(rec->e_cpos) == cpos) {
5333 /*
5334 * Changing the leftmost offset (via partial or whole
5335 * record truncate) of an interior (or rightmost) path
5336 * means we have to update the subtree that is formed
5337 * by this leaf and the one to it's left.
5338 *
5339 * There are two cases we can skip:
Joel Becker043beeb2009-02-13 02:42:30 -08005340 * 1) Path is the leftmost one in our btree.
Mark Fashehd0c7d702007-07-03 13:27:22 -07005341 * 2) The leaf is rightmost and will be empty after
5342 * we remove the extent record - the rotate code
5343 * knows how to update the newly formed edge.
5344 */
5345
Joel Becker043beeb2009-02-13 02:42:30 -08005346 ret = ocfs2_find_cpos_for_left_leaf(sb, path, &left_cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005347 if (ret) {
5348 mlog_errno(ret);
5349 goto out;
5350 }
5351
5352 if (left_cpos && le16_to_cpu(el->l_next_free_rec) > 1) {
Joel Beckerffdd7a52008-10-17 22:32:01 -07005353 left_path = ocfs2_new_path_from_path(path);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005354 if (!left_path) {
5355 ret = -ENOMEM;
5356 mlog_errno(ret);
5357 goto out;
5358 }
5359
Joel Beckerfacdb772009-02-12 18:08:48 -08005360 ret = ocfs2_find_path(et->et_ci, left_path,
5361 left_cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005362 if (ret) {
5363 mlog_errno(ret);
5364 goto out;
5365 }
5366 }
5367 }
5368
5369 ret = ocfs2_extend_rotate_transaction(handle, 0,
5370 handle->h_buffer_credits,
5371 path);
5372 if (ret) {
5373 mlog_errno(ret);
5374 goto out;
5375 }
5376
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08005377 ret = ocfs2_journal_access_path(et->et_ci, handle, path);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005378 if (ret) {
5379 mlog_errno(ret);
5380 goto out;
5381 }
5382
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08005383 ret = ocfs2_journal_access_path(et->et_ci, handle, left_path);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005384 if (ret) {
5385 mlog_errno(ret);
5386 goto out;
5387 }
5388
5389 rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
5390 trunc_range = cpos + len;
5391
5392 if (le32_to_cpu(rec->e_cpos) == cpos && rec_range == trunc_range) {
5393 int next_free;
5394
5395 memset(rec, 0, sizeof(*rec));
5396 ocfs2_cleanup_merge(el, index);
5397 wants_rotate = 1;
5398
5399 next_free = le16_to_cpu(el->l_next_free_rec);
5400 if (is_rightmost_tree_rec && next_free > 1) {
5401 /*
5402 * We skip the edge update if this path will
5403 * be deleted by the rotate code.
5404 */
5405 rec = &el->l_recs[next_free - 1];
Joel Beckerd401dc12009-02-13 02:24:10 -08005406 ocfs2_adjust_rightmost_records(handle, et, path,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005407 rec);
5408 }
5409 } else if (le32_to_cpu(rec->e_cpos) == cpos) {
5410 /* Remove leftmost portion of the record. */
5411 le32_add_cpu(&rec->e_cpos, len);
5412 le64_add_cpu(&rec->e_blkno, ocfs2_clusters_to_blocks(sb, len));
5413 le16_add_cpu(&rec->e_leaf_clusters, -len);
5414 } else if (rec_range == trunc_range) {
5415 /* Remove rightmost portion of the record */
5416 le16_add_cpu(&rec->e_leaf_clusters, -len);
5417 if (is_rightmost_tree_rec)
Joel Beckerd401dc12009-02-13 02:24:10 -08005418 ocfs2_adjust_rightmost_records(handle, et, path, rec);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005419 } else {
5420 /* Caller should have trapped this. */
Joel Becker043beeb2009-02-13 02:42:30 -08005421 mlog(ML_ERROR, "Owner %llu: Invalid record truncate: (%u, %u) "
5422 "(%u, %u)\n",
5423 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehd0c7d702007-07-03 13:27:22 -07005424 le32_to_cpu(rec->e_cpos),
5425 le16_to_cpu(rec->e_leaf_clusters), cpos, len);
5426 BUG();
5427 }
5428
5429 if (left_path) {
5430 int subtree_index;
5431
Joel Becker7dc02802009-02-12 19:20:13 -08005432 subtree_index = ocfs2_find_subtree_root(et, left_path, path);
Joel Becker4619c732009-02-12 19:02:36 -08005433 ocfs2_complete_edge_insert(handle, left_path, path,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005434 subtree_index);
5435 }
5436
5437 ocfs2_journal_dirty(handle, path_leaf_bh(path));
5438
Joel Becker70f18c02009-02-13 02:09:31 -08005439 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005440 if (ret) {
5441 mlog_errno(ret);
5442 goto out;
5443 }
5444
5445out:
5446 ocfs2_free_path(left_path);
5447 return ret;
5448}
5449
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005450int ocfs2_remove_extent(handle_t *handle,
Joel Beckerf99b9b72008-08-20 19:36:33 -07005451 struct ocfs2_extent_tree *et,
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005452 u32 cpos, u32 len,
Mark Fasheh063c4562007-07-03 13:34:11 -07005453 struct ocfs2_alloc_context *meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -07005454 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fashehd0c7d702007-07-03 13:27:22 -07005455{
5456 int ret, index;
5457 u32 rec_range, trunc_range;
5458 struct ocfs2_extent_rec *rec;
5459 struct ocfs2_extent_list *el;
Tao Mae7d4cb62008-08-18 17:38:44 +08005460 struct ocfs2_path *path = NULL;
Mark Fashehd0c7d702007-07-03 13:27:22 -07005461
Joel Becker4c911ee2009-02-13 02:50:12 -08005462 /*
5463 * XXX: Why are we truncating to 0 instead of wherever this
5464 * affects us?
5465 */
5466 ocfs2_et_extent_map_truncate(et, 0);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005467
Joel Beckerffdd7a52008-10-17 22:32:01 -07005468 path = ocfs2_new_path_from_et(et);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005469 if (!path) {
5470 ret = -ENOMEM;
5471 mlog_errno(ret);
5472 goto out;
5473 }
5474
Joel Beckerfacdb772009-02-12 18:08:48 -08005475 ret = ocfs2_find_path(et->et_ci, path, cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005476 if (ret) {
5477 mlog_errno(ret);
5478 goto out;
5479 }
5480
5481 el = path_leaf_el(path);
5482 index = ocfs2_search_extent_list(el, cpos);
5483 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005484 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
5485 "Owner %llu has an extent at cpos %u which can no "
Mark Fashehd0c7d702007-07-03 13:27:22 -07005486 "longer be found.\n",
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005487 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5488 cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005489 ret = -EROFS;
5490 goto out;
5491 }
5492
5493 /*
5494 * We have 3 cases of extent removal:
5495 * 1) Range covers the entire extent rec
5496 * 2) Range begins or ends on one edge of the extent rec
5497 * 3) Range is in the middle of the extent rec (no shared edges)
5498 *
5499 * For case 1 we remove the extent rec and left rotate to
5500 * fill the hole.
5501 *
5502 * For case 2 we just shrink the existing extent rec, with a
5503 * tree update if the shrinking edge is also the edge of an
5504 * extent block.
5505 *
5506 * For case 3 we do a right split to turn the extent rec into
5507 * something case 2 can handle.
5508 */
5509 rec = &el->l_recs[index];
5510 rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
5511 trunc_range = cpos + len;
5512
5513 BUG_ON(cpos < le32_to_cpu(rec->e_cpos) || trunc_range > rec_range);
5514
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005515 mlog(0, "Owner %llu, remove (cpos %u, len %u). Existing index %d "
Mark Fashehd0c7d702007-07-03 13:27:22 -07005516 "(cpos %u, len %u)\n",
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005517 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5518 cpos, len, index,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005519 le32_to_cpu(rec->e_cpos), ocfs2_rec_clusters(el, rec));
5520
5521 if (le32_to_cpu(rec->e_cpos) == cpos || rec_range == trunc_range) {
Joel Becker043beeb2009-02-13 02:42:30 -08005522 ret = ocfs2_truncate_rec(handle, et, path, index, dealloc,
5523 cpos, len);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005524 if (ret) {
5525 mlog_errno(ret);
5526 goto out;
5527 }
5528 } else {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005529 ret = ocfs2_split_tree(handle, et, path, index,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005530 trunc_range, meta_ac);
5531 if (ret) {
5532 mlog_errno(ret);
5533 goto out;
5534 }
5535
5536 /*
5537 * The split could have manipulated the tree enough to
5538 * move the record location, so we have to look for it again.
5539 */
5540 ocfs2_reinit_path(path, 1);
5541
Joel Beckerfacdb772009-02-12 18:08:48 -08005542 ret = ocfs2_find_path(et->et_ci, path, cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005543 if (ret) {
5544 mlog_errno(ret);
5545 goto out;
5546 }
5547
5548 el = path_leaf_el(path);
5549 index = ocfs2_search_extent_list(el, cpos);
5550 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005551 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
5552 "Owner %llu: split at cpos %u lost record.",
5553 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehd0c7d702007-07-03 13:27:22 -07005554 cpos);
5555 ret = -EROFS;
5556 goto out;
5557 }
5558
5559 /*
5560 * Double check our values here. If anything is fishy,
5561 * it's easier to catch it at the top level.
5562 */
5563 rec = &el->l_recs[index];
5564 rec_range = le32_to_cpu(rec->e_cpos) +
5565 ocfs2_rec_clusters(el, rec);
5566 if (rec_range != trunc_range) {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005567 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
5568 "Owner %llu: error after split at cpos %u"
Mark Fashehd0c7d702007-07-03 13:27:22 -07005569 "trunc len %u, existing record is (%u,%u)",
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005570 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehd0c7d702007-07-03 13:27:22 -07005571 cpos, len, le32_to_cpu(rec->e_cpos),
5572 ocfs2_rec_clusters(el, rec));
5573 ret = -EROFS;
5574 goto out;
5575 }
5576
Joel Becker043beeb2009-02-13 02:42:30 -08005577 ret = ocfs2_truncate_rec(handle, et, path, index, dealloc,
5578 cpos, len);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005579 if (ret) {
5580 mlog_errno(ret);
5581 goto out;
5582 }
5583 }
5584
5585out:
5586 ocfs2_free_path(path);
5587 return ret;
5588}
5589
Tristan Ye78f94672010-05-11 17:54:42 +08005590/*
5591 * ocfs2_reserve_blocks_for_rec_trunc() would look basically the
5592 * same as ocfs2_lock_alloctors(), except for it accepts a blocks
5593 * number to reserve some extra blocks, and it only handles meta
5594 * data allocations.
5595 *
5596 * Currently, only ocfs2_remove_btree_range() uses it for truncating
5597 * and punching holes.
5598 */
5599static int ocfs2_reserve_blocks_for_rec_trunc(struct inode *inode,
5600 struct ocfs2_extent_tree *et,
5601 u32 extents_to_split,
5602 struct ocfs2_alloc_context **ac,
5603 int extra_blocks)
5604{
5605 int ret = 0, num_free_extents;
5606 unsigned int max_recs_needed = 2 * extents_to_split;
5607 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5608
5609 *ac = NULL;
5610
5611 num_free_extents = ocfs2_num_free_extents(osb, et);
5612 if (num_free_extents < 0) {
5613 ret = num_free_extents;
5614 mlog_errno(ret);
5615 goto out;
5616 }
5617
5618 if (!num_free_extents ||
5619 (ocfs2_sparse_alloc(osb) && num_free_extents < max_recs_needed))
5620 extra_blocks += ocfs2_extend_meta_needed(et->et_root_el);
5621
5622 if (extra_blocks) {
5623 ret = ocfs2_reserve_new_metadata_blocks(osb, extra_blocks, ac);
5624 if (ret < 0) {
5625 if (ret != -ENOSPC)
5626 mlog_errno(ret);
5627 goto out;
5628 }
5629 }
5630
5631out:
5632 if (ret) {
5633 if (*ac) {
5634 ocfs2_free_alloc_context(*ac);
5635 *ac = NULL;
5636 }
5637 }
5638
5639 return ret;
5640}
5641
Mark Fashehfecc0112008-11-12 15:16:38 -08005642int ocfs2_remove_btree_range(struct inode *inode,
5643 struct ocfs2_extent_tree *et,
Tristan Ye78f94672010-05-11 17:54:42 +08005644 u32 cpos, u32 phys_cpos, u32 len, int flags,
5645 struct ocfs2_cached_dealloc_ctxt *dealloc,
5646 u64 refcount_loc)
Mark Fashehfecc0112008-11-12 15:16:38 -08005647{
Tristan Ye78f94672010-05-11 17:54:42 +08005648 int ret, credits = 0, extra_blocks = 0;
Mark Fashehfecc0112008-11-12 15:16:38 -08005649 u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
5650 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5651 struct inode *tl_inode = osb->osb_tl_inode;
5652 handle_t *handle;
5653 struct ocfs2_alloc_context *meta_ac = NULL;
Tristan Ye78f94672010-05-11 17:54:42 +08005654 struct ocfs2_refcount_tree *ref_tree = NULL;
Mark Fashehfecc0112008-11-12 15:16:38 -08005655
Tristan Ye78f94672010-05-11 17:54:42 +08005656 if ((flags & OCFS2_EXT_REFCOUNTED) && len) {
5657 BUG_ON(!(OCFS2_I(inode)->ip_dyn_features &
5658 OCFS2_HAS_REFCOUNT_FL));
5659
5660 ret = ocfs2_lock_refcount_tree(osb, refcount_loc, 1,
5661 &ref_tree, NULL);
5662 if (ret) {
5663 mlog_errno(ret);
5664 goto out;
5665 }
5666
5667 ret = ocfs2_prepare_refcount_change_for_del(inode,
5668 refcount_loc,
5669 phys_blkno,
5670 len,
5671 &credits,
5672 &extra_blocks);
5673 if (ret < 0) {
5674 mlog_errno(ret);
5675 goto out;
5676 }
5677 }
5678
5679 ret = ocfs2_reserve_blocks_for_rec_trunc(inode, et, 1, &meta_ac,
5680 extra_blocks);
Mark Fashehfecc0112008-11-12 15:16:38 -08005681 if (ret) {
5682 mlog_errno(ret);
5683 return ret;
5684 }
5685
5686 mutex_lock(&tl_inode->i_mutex);
5687
5688 if (ocfs2_truncate_log_needs_flush(osb)) {
5689 ret = __ocfs2_flush_truncate_log(osb);
5690 if (ret < 0) {
5691 mlog_errno(ret);
5692 goto out;
5693 }
5694 }
5695
Tristan Ye78f94672010-05-11 17:54:42 +08005696 handle = ocfs2_start_trans(osb,
5697 ocfs2_remove_extent_credits(osb->sb) + credits);
Mark Fashehfecc0112008-11-12 15:16:38 -08005698 if (IS_ERR(handle)) {
5699 ret = PTR_ERR(handle);
5700 mlog_errno(ret);
5701 goto out;
5702 }
5703
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08005704 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07005705 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehfecc0112008-11-12 15:16:38 -08005706 if (ret) {
5707 mlog_errno(ret);
5708 goto out;
5709 }
5710
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005711 dquot_free_space_nodirty(inode,
Mark Fashehfd4ef232009-01-29 15:06:21 -08005712 ocfs2_clusters_to_bytes(inode->i_sb, len));
5713
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005714 ret = ocfs2_remove_extent(handle, et, cpos, len, meta_ac, dealloc);
Mark Fashehfecc0112008-11-12 15:16:38 -08005715 if (ret) {
5716 mlog_errno(ret);
5717 goto out_commit;
5718 }
5719
Joel Becker6136ca52009-02-12 19:32:43 -08005720 ocfs2_et_update_clusters(et, -len);
Mark Fashehfecc0112008-11-12 15:16:38 -08005721
Joel Beckerec20cec2010-03-19 14:13:52 -07005722 ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehfecc0112008-11-12 15:16:38 -08005723
Tristan Ye78f94672010-05-11 17:54:42 +08005724 if (phys_blkno) {
5725 if (flags & OCFS2_EXT_REFCOUNTED)
5726 ret = ocfs2_decrease_refcount(inode, handle,
5727 ocfs2_blocks_to_clusters(osb->sb,
5728 phys_blkno),
5729 len, meta_ac,
5730 dealloc, 1);
5731 else
5732 ret = ocfs2_truncate_log_append(osb, handle,
5733 phys_blkno, len);
5734 if (ret)
5735 mlog_errno(ret);
5736
5737 }
Mark Fashehfecc0112008-11-12 15:16:38 -08005738
5739out_commit:
5740 ocfs2_commit_trans(osb, handle);
5741out:
5742 mutex_unlock(&tl_inode->i_mutex);
5743
5744 if (meta_ac)
5745 ocfs2_free_alloc_context(meta_ac);
5746
Tristan Ye78f94672010-05-11 17:54:42 +08005747 if (ref_tree)
5748 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
5749
Mark Fashehfecc0112008-11-12 15:16:38 -08005750 return ret;
5751}
5752
Mark Fasheh063c4562007-07-03 13:34:11 -07005753int ocfs2_truncate_log_needs_flush(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -08005754{
5755 struct buffer_head *tl_bh = osb->osb_tl_bh;
5756 struct ocfs2_dinode *di;
5757 struct ocfs2_truncate_log *tl;
5758
5759 di = (struct ocfs2_dinode *) tl_bh->b_data;
5760 tl = &di->id2.i_dealloc;
5761
5762 mlog_bug_on_msg(le16_to_cpu(tl->tl_used) > le16_to_cpu(tl->tl_count),
5763 "slot %d, invalid truncate log parameters: used = "
5764 "%u, count = %u\n", osb->slot_num,
5765 le16_to_cpu(tl->tl_used), le16_to_cpu(tl->tl_count));
5766 return le16_to_cpu(tl->tl_used) == le16_to_cpu(tl->tl_count);
5767}
5768
5769static int ocfs2_truncate_log_can_coalesce(struct ocfs2_truncate_log *tl,
5770 unsigned int new_start)
5771{
5772 unsigned int tail_index;
5773 unsigned int current_tail;
5774
5775 /* No records, nothing to coalesce */
5776 if (!le16_to_cpu(tl->tl_used))
5777 return 0;
5778
5779 tail_index = le16_to_cpu(tl->tl_used) - 1;
5780 current_tail = le32_to_cpu(tl->tl_recs[tail_index].t_start);
5781 current_tail += le32_to_cpu(tl->tl_recs[tail_index].t_clusters);
5782
5783 return current_tail == new_start;
5784}
5785
Mark Fasheh063c4562007-07-03 13:34:11 -07005786int ocfs2_truncate_log_append(struct ocfs2_super *osb,
5787 handle_t *handle,
5788 u64 start_blk,
5789 unsigned int num_clusters)
Mark Fashehccd979b2005-12-15 14:31:24 -08005790{
5791 int status, index;
5792 unsigned int start_cluster, tl_count;
5793 struct inode *tl_inode = osb->osb_tl_inode;
5794 struct buffer_head *tl_bh = osb->osb_tl_bh;
5795 struct ocfs2_dinode *di;
5796 struct ocfs2_truncate_log *tl;
5797
Mark Fashehb06970532006-03-03 10:24:33 -08005798 mlog_entry("start_blk = %llu, num_clusters = %u\n",
5799 (unsigned long long)start_blk, num_clusters);
Mark Fashehccd979b2005-12-15 14:31:24 -08005800
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005801 BUG_ON(mutex_trylock(&tl_inode->i_mutex));
Mark Fashehccd979b2005-12-15 14:31:24 -08005802
5803 start_cluster = ocfs2_blocks_to_clusters(osb->sb, start_blk);
5804
5805 di = (struct ocfs2_dinode *) tl_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08005806
Joel Becker10995aa2008-11-13 14:49:12 -08005807 /* tl_bh is loaded from ocfs2_truncate_log_init(). It's validated
5808 * by the underlying call to ocfs2_read_inode_block(), so any
5809 * corruption is a code bug */
5810 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
5811
5812 tl = &di->id2.i_dealloc;
Mark Fashehccd979b2005-12-15 14:31:24 -08005813 tl_count = le16_to_cpu(tl->tl_count);
5814 mlog_bug_on_msg(tl_count > ocfs2_truncate_recs_per_inode(osb->sb) ||
5815 tl_count == 0,
Mark Fashehb06970532006-03-03 10:24:33 -08005816 "Truncate record count on #%llu invalid "
5817 "wanted %u, actual %u\n",
5818 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08005819 ocfs2_truncate_recs_per_inode(osb->sb),
5820 le16_to_cpu(tl->tl_count));
5821
5822 /* Caller should have known to flush before calling us. */
5823 index = le16_to_cpu(tl->tl_used);
5824 if (index >= tl_count) {
5825 status = -ENOSPC;
5826 mlog_errno(status);
5827 goto bail;
5828 }
5829
Joel Becker0cf2f762009-02-12 16:41:25 -08005830 status = ocfs2_journal_access_di(handle, INODE_CACHE(tl_inode), tl_bh,
Joel Becker13723d02008-10-17 19:25:01 -07005831 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08005832 if (status < 0) {
5833 mlog_errno(status);
5834 goto bail;
5835 }
5836
5837 mlog(0, "Log truncate of %u clusters starting at cluster %u to "
Mark Fashehb06970532006-03-03 10:24:33 -08005838 "%llu (index = %d)\n", num_clusters, start_cluster,
5839 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, index);
Mark Fashehccd979b2005-12-15 14:31:24 -08005840
5841 if (ocfs2_truncate_log_can_coalesce(tl, start_cluster)) {
5842 /*
5843 * Move index back to the record we are coalescing with.
5844 * ocfs2_truncate_log_can_coalesce() guarantees nonzero
5845 */
5846 index--;
5847
5848 num_clusters += le32_to_cpu(tl->tl_recs[index].t_clusters);
5849 mlog(0, "Coalesce with index %u (start = %u, clusters = %u)\n",
5850 index, le32_to_cpu(tl->tl_recs[index].t_start),
5851 num_clusters);
5852 } else {
5853 tl->tl_recs[index].t_start = cpu_to_le32(start_cluster);
5854 tl->tl_used = cpu_to_le16(index + 1);
5855 }
5856 tl->tl_recs[index].t_clusters = cpu_to_le32(num_clusters);
5857
Joel Beckerec20cec2010-03-19 14:13:52 -07005858 ocfs2_journal_dirty(handle, tl_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08005859
5860bail:
5861 mlog_exit(status);
5862 return status;
5863}
5864
5865static int ocfs2_replay_truncate_records(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07005866 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08005867 struct inode *data_alloc_inode,
5868 struct buffer_head *data_alloc_bh)
5869{
5870 int status = 0;
5871 int i;
5872 unsigned int num_clusters;
5873 u64 start_blk;
5874 struct ocfs2_truncate_rec rec;
5875 struct ocfs2_dinode *di;
5876 struct ocfs2_truncate_log *tl;
5877 struct inode *tl_inode = osb->osb_tl_inode;
5878 struct buffer_head *tl_bh = osb->osb_tl_bh;
5879
5880 mlog_entry_void();
5881
5882 di = (struct ocfs2_dinode *) tl_bh->b_data;
5883 tl = &di->id2.i_dealloc;
5884 i = le16_to_cpu(tl->tl_used) - 1;
5885 while (i >= 0) {
5886 /* Caller has given us at least enough credits to
5887 * update the truncate log dinode */
Joel Becker0cf2f762009-02-12 16:41:25 -08005888 status = ocfs2_journal_access_di(handle, INODE_CACHE(tl_inode), tl_bh,
Joel Becker13723d02008-10-17 19:25:01 -07005889 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08005890 if (status < 0) {
5891 mlog_errno(status);
5892 goto bail;
5893 }
5894
5895 tl->tl_used = cpu_to_le16(i);
5896
Joel Beckerec20cec2010-03-19 14:13:52 -07005897 ocfs2_journal_dirty(handle, tl_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08005898
5899 /* TODO: Perhaps we can calculate the bulk of the
5900 * credits up front rather than extending like
5901 * this. */
5902 status = ocfs2_extend_trans(handle,
5903 OCFS2_TRUNCATE_LOG_FLUSH_ONE_REC);
5904 if (status < 0) {
5905 mlog_errno(status);
5906 goto bail;
5907 }
5908
5909 rec = tl->tl_recs[i];
5910 start_blk = ocfs2_clusters_to_blocks(data_alloc_inode->i_sb,
5911 le32_to_cpu(rec.t_start));
5912 num_clusters = le32_to_cpu(rec.t_clusters);
5913
5914 /* if start_blk is not set, we ignore the record as
5915 * invalid. */
5916 if (start_blk) {
5917 mlog(0, "free record %d, start = %u, clusters = %u\n",
5918 i, le32_to_cpu(rec.t_start), num_clusters);
5919
5920 status = ocfs2_free_clusters(handle, data_alloc_inode,
5921 data_alloc_bh, start_blk,
5922 num_clusters);
5923 if (status < 0) {
5924 mlog_errno(status);
5925 goto bail;
5926 }
5927 }
5928 i--;
5929 }
5930
5931bail:
5932 mlog_exit(status);
5933 return status;
5934}
5935
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005936/* Expects you to already be holding tl_inode->i_mutex */
Mark Fasheh063c4562007-07-03 13:34:11 -07005937int __ocfs2_flush_truncate_log(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -08005938{
5939 int status;
5940 unsigned int num_to_flush;
Mark Fasheh1fabe142006-10-09 18:11:45 -07005941 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08005942 struct inode *tl_inode = osb->osb_tl_inode;
5943 struct inode *data_alloc_inode = NULL;
5944 struct buffer_head *tl_bh = osb->osb_tl_bh;
5945 struct buffer_head *data_alloc_bh = NULL;
5946 struct ocfs2_dinode *di;
5947 struct ocfs2_truncate_log *tl;
5948
5949 mlog_entry_void();
5950
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08005951 BUG_ON(mutex_trylock(&tl_inode->i_mutex));
Mark Fashehccd979b2005-12-15 14:31:24 -08005952
5953 di = (struct ocfs2_dinode *) tl_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08005954
Joel Becker10995aa2008-11-13 14:49:12 -08005955 /* tl_bh is loaded from ocfs2_truncate_log_init(). It's validated
5956 * by the underlying call to ocfs2_read_inode_block(), so any
5957 * corruption is a code bug */
5958 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
5959
5960 tl = &di->id2.i_dealloc;
Mark Fashehccd979b2005-12-15 14:31:24 -08005961 num_to_flush = le16_to_cpu(tl->tl_used);
Mark Fashehb06970532006-03-03 10:24:33 -08005962 mlog(0, "Flush %u records from truncate log #%llu\n",
5963 num_to_flush, (unsigned long long)OCFS2_I(tl_inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08005964 if (!num_to_flush) {
5965 status = 0;
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005966 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08005967 }
5968
5969 data_alloc_inode = ocfs2_get_system_file_inode(osb,
5970 GLOBAL_BITMAP_SYSTEM_INODE,
5971 OCFS2_INVALID_SLOT);
5972 if (!data_alloc_inode) {
5973 status = -EINVAL;
5974 mlog(ML_ERROR, "Could not get bitmap inode!\n");
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005975 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08005976 }
5977
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005978 mutex_lock(&data_alloc_inode->i_mutex);
5979
Mark Fashehe63aecb62007-10-18 15:30:42 -07005980 status = ocfs2_inode_lock(data_alloc_inode, &data_alloc_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08005981 if (status < 0) {
5982 mlog_errno(status);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005983 goto out_mutex;
Mark Fashehccd979b2005-12-15 14:31:24 -08005984 }
5985
Mark Fasheh65eff9c2006-10-09 17:26:22 -07005986 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08005987 if (IS_ERR(handle)) {
5988 status = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08005989 mlog_errno(status);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005990 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -08005991 }
5992
5993 status = ocfs2_replay_truncate_records(osb, handle, data_alloc_inode,
5994 data_alloc_bh);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07005995 if (status < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -08005996 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08005997
Mark Fasheh02dc1af2006-10-09 16:48:10 -07005998 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08005999
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006000out_unlock:
6001 brelse(data_alloc_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07006002 ocfs2_inode_unlock(data_alloc_inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08006003
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006004out_mutex:
6005 mutex_unlock(&data_alloc_inode->i_mutex);
6006 iput(data_alloc_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08006007
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006008out:
Mark Fashehccd979b2005-12-15 14:31:24 -08006009 mlog_exit(status);
6010 return status;
6011}
6012
6013int ocfs2_flush_truncate_log(struct ocfs2_super *osb)
6014{
6015 int status;
6016 struct inode *tl_inode = osb->osb_tl_inode;
6017
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08006018 mutex_lock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08006019 status = __ocfs2_flush_truncate_log(osb);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08006020 mutex_unlock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08006021
6022 return status;
6023}
6024
David Howellsc4028952006-11-22 14:57:56 +00006025static void ocfs2_truncate_log_worker(struct work_struct *work)
Mark Fashehccd979b2005-12-15 14:31:24 -08006026{
6027 int status;
David Howellsc4028952006-11-22 14:57:56 +00006028 struct ocfs2_super *osb =
6029 container_of(work, struct ocfs2_super,
6030 osb_truncate_log_wq.work);
Mark Fashehccd979b2005-12-15 14:31:24 -08006031
6032 mlog_entry_void();
6033
6034 status = ocfs2_flush_truncate_log(osb);
6035 if (status < 0)
6036 mlog_errno(status);
Tao Ma4d0ddb22008-03-05 16:11:46 +08006037 else
Tiger Yangb89c5422010-01-25 14:11:06 +08006038 ocfs2_init_steal_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08006039
6040 mlog_exit(status);
6041}
6042
6043#define OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL (2 * HZ)
6044void ocfs2_schedule_truncate_log_flush(struct ocfs2_super *osb,
6045 int cancel)
6046{
6047 if (osb->osb_tl_inode) {
6048 /* We want to push off log flushes while truncates are
6049 * still running. */
6050 if (cancel)
6051 cancel_delayed_work(&osb->osb_truncate_log_wq);
6052
6053 queue_delayed_work(ocfs2_wq, &osb->osb_truncate_log_wq,
6054 OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL);
6055 }
6056}
6057
6058static int ocfs2_get_truncate_log_info(struct ocfs2_super *osb,
6059 int slot_num,
6060 struct inode **tl_inode,
6061 struct buffer_head **tl_bh)
6062{
6063 int status;
6064 struct inode *inode = NULL;
6065 struct buffer_head *bh = NULL;
6066
6067 inode = ocfs2_get_system_file_inode(osb,
6068 TRUNCATE_LOG_SYSTEM_INODE,
6069 slot_num);
6070 if (!inode) {
6071 status = -EINVAL;
6072 mlog(ML_ERROR, "Could not get load truncate log inode!\n");
6073 goto bail;
6074 }
6075
Joel Beckerb657c952008-11-13 14:49:11 -08006076 status = ocfs2_read_inode_block(inode, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006077 if (status < 0) {
6078 iput(inode);
6079 mlog_errno(status);
6080 goto bail;
6081 }
6082
6083 *tl_inode = inode;
6084 *tl_bh = bh;
6085bail:
6086 mlog_exit(status);
6087 return status;
6088}
6089
6090/* called during the 1st stage of node recovery. we stamp a clean
6091 * truncate log and pass back a copy for processing later. if the
6092 * truncate log does not require processing, a *tl_copy is set to
6093 * NULL. */
6094int ocfs2_begin_truncate_log_recovery(struct ocfs2_super *osb,
6095 int slot_num,
6096 struct ocfs2_dinode **tl_copy)
6097{
6098 int status;
6099 struct inode *tl_inode = NULL;
6100 struct buffer_head *tl_bh = NULL;
6101 struct ocfs2_dinode *di;
6102 struct ocfs2_truncate_log *tl;
6103
6104 *tl_copy = NULL;
6105
6106 mlog(0, "recover truncate log from slot %d\n", slot_num);
6107
6108 status = ocfs2_get_truncate_log_info(osb, slot_num, &tl_inode, &tl_bh);
6109 if (status < 0) {
6110 mlog_errno(status);
6111 goto bail;
6112 }
6113
6114 di = (struct ocfs2_dinode *) tl_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08006115
Joel Becker10995aa2008-11-13 14:49:12 -08006116 /* tl_bh is loaded from ocfs2_get_truncate_log_info(). It's
6117 * validated by the underlying call to ocfs2_read_inode_block(),
6118 * so any corruption is a code bug */
6119 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
6120
6121 tl = &di->id2.i_dealloc;
Mark Fashehccd979b2005-12-15 14:31:24 -08006122 if (le16_to_cpu(tl->tl_used)) {
6123 mlog(0, "We'll have %u logs to recover\n",
6124 le16_to_cpu(tl->tl_used));
6125
6126 *tl_copy = kmalloc(tl_bh->b_size, GFP_KERNEL);
6127 if (!(*tl_copy)) {
6128 status = -ENOMEM;
6129 mlog_errno(status);
6130 goto bail;
6131 }
6132
6133 /* Assuming the write-out below goes well, this copy
6134 * will be passed back to recovery for processing. */
6135 memcpy(*tl_copy, tl_bh->b_data, tl_bh->b_size);
6136
6137 /* All we need to do to clear the truncate log is set
6138 * tl_used. */
6139 tl->tl_used = 0;
6140
Joel Becker13723d02008-10-17 19:25:01 -07006141 ocfs2_compute_meta_ecc(osb->sb, tl_bh->b_data, &di->i_check);
Joel Becker8cb471e2009-02-10 20:00:41 -08006142 status = ocfs2_write_block(osb, tl_bh, INODE_CACHE(tl_inode));
Mark Fashehccd979b2005-12-15 14:31:24 -08006143 if (status < 0) {
6144 mlog_errno(status);
6145 goto bail;
6146 }
6147 }
6148
6149bail:
6150 if (tl_inode)
6151 iput(tl_inode);
Mark Fasheha81cb882008-10-07 14:25:16 -07006152 brelse(tl_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006153
6154 if (status < 0 && (*tl_copy)) {
6155 kfree(*tl_copy);
6156 *tl_copy = NULL;
6157 }
6158
6159 mlog_exit(status);
6160 return status;
6161}
6162
6163int ocfs2_complete_truncate_log_recovery(struct ocfs2_super *osb,
6164 struct ocfs2_dinode *tl_copy)
6165{
6166 int status = 0;
6167 int i;
6168 unsigned int clusters, num_recs, start_cluster;
6169 u64 start_blk;
Mark Fasheh1fabe142006-10-09 18:11:45 -07006170 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08006171 struct inode *tl_inode = osb->osb_tl_inode;
6172 struct ocfs2_truncate_log *tl;
6173
6174 mlog_entry_void();
6175
6176 if (OCFS2_I(tl_inode)->ip_blkno == le64_to_cpu(tl_copy->i_blkno)) {
6177 mlog(ML_ERROR, "Asked to recover my own truncate log!\n");
6178 return -EINVAL;
6179 }
6180
6181 tl = &tl_copy->id2.i_dealloc;
6182 num_recs = le16_to_cpu(tl->tl_used);
Mark Fashehb06970532006-03-03 10:24:33 -08006183 mlog(0, "cleanup %u records from %llu\n", num_recs,
Mark Fasheh1ca1a112007-04-27 16:01:25 -07006184 (unsigned long long)le64_to_cpu(tl_copy->i_blkno));
Mark Fashehccd979b2005-12-15 14:31:24 -08006185
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08006186 mutex_lock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08006187 for(i = 0; i < num_recs; i++) {
6188 if (ocfs2_truncate_log_needs_flush(osb)) {
6189 status = __ocfs2_flush_truncate_log(osb);
6190 if (status < 0) {
6191 mlog_errno(status);
6192 goto bail_up;
6193 }
6194 }
6195
Mark Fasheh65eff9c2006-10-09 17:26:22 -07006196 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08006197 if (IS_ERR(handle)) {
6198 status = PTR_ERR(handle);
6199 mlog_errno(status);
6200 goto bail_up;
6201 }
6202
6203 clusters = le32_to_cpu(tl->tl_recs[i].t_clusters);
6204 start_cluster = le32_to_cpu(tl->tl_recs[i].t_start);
6205 start_blk = ocfs2_clusters_to_blocks(osb->sb, start_cluster);
6206
6207 status = ocfs2_truncate_log_append(osb, handle,
6208 start_blk, clusters);
Mark Fasheh02dc1af2006-10-09 16:48:10 -07006209 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08006210 if (status < 0) {
6211 mlog_errno(status);
6212 goto bail_up;
6213 }
6214 }
6215
6216bail_up:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08006217 mutex_unlock(&tl_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08006218
6219 mlog_exit(status);
6220 return status;
6221}
6222
6223void ocfs2_truncate_log_shutdown(struct ocfs2_super *osb)
6224{
6225 int status;
6226 struct inode *tl_inode = osb->osb_tl_inode;
6227
6228 mlog_entry_void();
6229
6230 if (tl_inode) {
6231 cancel_delayed_work(&osb->osb_truncate_log_wq);
6232 flush_workqueue(ocfs2_wq);
6233
6234 status = ocfs2_flush_truncate_log(osb);
6235 if (status < 0)
6236 mlog_errno(status);
6237
6238 brelse(osb->osb_tl_bh);
6239 iput(osb->osb_tl_inode);
6240 }
6241
6242 mlog_exit_void();
6243}
6244
6245int ocfs2_truncate_log_init(struct ocfs2_super *osb)
6246{
6247 int status;
6248 struct inode *tl_inode = NULL;
6249 struct buffer_head *tl_bh = NULL;
6250
6251 mlog_entry_void();
6252
6253 status = ocfs2_get_truncate_log_info(osb,
6254 osb->slot_num,
6255 &tl_inode,
6256 &tl_bh);
6257 if (status < 0)
6258 mlog_errno(status);
6259
6260 /* ocfs2_truncate_log_shutdown keys on the existence of
6261 * osb->osb_tl_inode so we don't set any of the osb variables
6262 * until we're sure all is well. */
David Howellsc4028952006-11-22 14:57:56 +00006263 INIT_DELAYED_WORK(&osb->osb_truncate_log_wq,
6264 ocfs2_truncate_log_worker);
Mark Fashehccd979b2005-12-15 14:31:24 -08006265 osb->osb_tl_bh = tl_bh;
6266 osb->osb_tl_inode = tl_inode;
6267
6268 mlog_exit(status);
6269 return status;
6270}
6271
Mark Fasheh2b604352007-06-22 15:45:27 -07006272/*
6273 * Delayed de-allocation of suballocator blocks.
6274 *
6275 * Some sets of block de-allocations might involve multiple suballocator inodes.
6276 *
6277 * The locking for this can get extremely complicated, especially when
6278 * the suballocator inodes to delete from aren't known until deep
6279 * within an unrelated codepath.
6280 *
6281 * ocfs2_extent_block structures are a good example of this - an inode
6282 * btree could have been grown by any number of nodes each allocating
6283 * out of their own suballoc inode.
6284 *
6285 * These structures allow the delay of block de-allocation until a
6286 * later time, when locking of multiple cluster inodes won't cause
6287 * deadlock.
6288 */
6289
6290/*
Tao Ma2891d292008-11-12 08:26:58 +08006291 * Describe a single bit freed from a suballocator. For the block
6292 * suballocators, it represents one block. For the global cluster
6293 * allocator, it represents some clusters and free_bit indicates
6294 * clusters number.
Mark Fasheh2b604352007-06-22 15:45:27 -07006295 */
6296struct ocfs2_cached_block_free {
6297 struct ocfs2_cached_block_free *free_next;
6298 u64 free_blk;
6299 unsigned int free_bit;
6300};
6301
6302struct ocfs2_per_slot_free_list {
6303 struct ocfs2_per_slot_free_list *f_next_suballocator;
6304 int f_inode_type;
6305 int f_slot;
6306 struct ocfs2_cached_block_free *f_first;
6307};
6308
Tao Ma2891d292008-11-12 08:26:58 +08006309static int ocfs2_free_cached_blocks(struct ocfs2_super *osb,
6310 int sysfile_type,
6311 int slot,
6312 struct ocfs2_cached_block_free *head)
Mark Fasheh2b604352007-06-22 15:45:27 -07006313{
6314 int ret;
6315 u64 bg_blkno;
6316 handle_t *handle;
6317 struct inode *inode;
6318 struct buffer_head *di_bh = NULL;
6319 struct ocfs2_cached_block_free *tmp;
6320
6321 inode = ocfs2_get_system_file_inode(osb, sysfile_type, slot);
6322 if (!inode) {
6323 ret = -EINVAL;
6324 mlog_errno(ret);
6325 goto out;
6326 }
6327
6328 mutex_lock(&inode->i_mutex);
6329
Mark Fashehe63aecb62007-10-18 15:30:42 -07006330 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fasheh2b604352007-06-22 15:45:27 -07006331 if (ret) {
6332 mlog_errno(ret);
6333 goto out_mutex;
6334 }
6335
6336 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
6337 if (IS_ERR(handle)) {
6338 ret = PTR_ERR(handle);
6339 mlog_errno(ret);
6340 goto out_unlock;
6341 }
6342
6343 while (head) {
6344 bg_blkno = ocfs2_which_suballoc_group(head->free_blk,
6345 head->free_bit);
6346 mlog(0, "Free bit: (bit %u, blkno %llu)\n",
6347 head->free_bit, (unsigned long long)head->free_blk);
6348
6349 ret = ocfs2_free_suballoc_bits(handle, inode, di_bh,
6350 head->free_bit, bg_blkno, 1);
6351 if (ret) {
6352 mlog_errno(ret);
6353 goto out_journal;
6354 }
6355
6356 ret = ocfs2_extend_trans(handle, OCFS2_SUBALLOC_FREE);
6357 if (ret) {
6358 mlog_errno(ret);
6359 goto out_journal;
6360 }
6361
6362 tmp = head;
6363 head = head->free_next;
6364 kfree(tmp);
6365 }
6366
6367out_journal:
6368 ocfs2_commit_trans(osb, handle);
6369
6370out_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -07006371 ocfs2_inode_unlock(inode, 1);
Mark Fasheh2b604352007-06-22 15:45:27 -07006372 brelse(di_bh);
6373out_mutex:
6374 mutex_unlock(&inode->i_mutex);
6375 iput(inode);
6376out:
6377 while(head) {
6378 /* Premature exit may have left some dangling items. */
6379 tmp = head;
6380 head = head->free_next;
6381 kfree(tmp);
6382 }
6383
6384 return ret;
6385}
6386
Tao Ma2891d292008-11-12 08:26:58 +08006387int ocfs2_cache_cluster_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
6388 u64 blkno, unsigned int bit)
6389{
6390 int ret = 0;
6391 struct ocfs2_cached_block_free *item;
6392
6393 item = kmalloc(sizeof(*item), GFP_NOFS);
6394 if (item == NULL) {
6395 ret = -ENOMEM;
6396 mlog_errno(ret);
6397 return ret;
6398 }
6399
6400 mlog(0, "Insert clusters: (bit %u, blk %llu)\n",
6401 bit, (unsigned long long)blkno);
6402
6403 item->free_blk = blkno;
6404 item->free_bit = bit;
6405 item->free_next = ctxt->c_global_allocator;
6406
6407 ctxt->c_global_allocator = item;
6408 return ret;
6409}
6410
6411static int ocfs2_free_cached_clusters(struct ocfs2_super *osb,
6412 struct ocfs2_cached_block_free *head)
6413{
6414 struct ocfs2_cached_block_free *tmp;
6415 struct inode *tl_inode = osb->osb_tl_inode;
6416 handle_t *handle;
6417 int ret = 0;
6418
6419 mutex_lock(&tl_inode->i_mutex);
6420
6421 while (head) {
6422 if (ocfs2_truncate_log_needs_flush(osb)) {
6423 ret = __ocfs2_flush_truncate_log(osb);
6424 if (ret < 0) {
6425 mlog_errno(ret);
6426 break;
6427 }
6428 }
6429
6430 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
6431 if (IS_ERR(handle)) {
6432 ret = PTR_ERR(handle);
6433 mlog_errno(ret);
6434 break;
6435 }
6436
6437 ret = ocfs2_truncate_log_append(osb, handle, head->free_blk,
6438 head->free_bit);
6439
6440 ocfs2_commit_trans(osb, handle);
6441 tmp = head;
6442 head = head->free_next;
6443 kfree(tmp);
6444
6445 if (ret < 0) {
6446 mlog_errno(ret);
6447 break;
6448 }
6449 }
6450
6451 mutex_unlock(&tl_inode->i_mutex);
6452
6453 while (head) {
6454 /* Premature exit may have left some dangling items. */
6455 tmp = head;
6456 head = head->free_next;
6457 kfree(tmp);
6458 }
6459
6460 return ret;
6461}
6462
Mark Fasheh2b604352007-06-22 15:45:27 -07006463int ocfs2_run_deallocs(struct ocfs2_super *osb,
6464 struct ocfs2_cached_dealloc_ctxt *ctxt)
6465{
6466 int ret = 0, ret2;
6467 struct ocfs2_per_slot_free_list *fl;
6468
6469 if (!ctxt)
6470 return 0;
6471
6472 while (ctxt->c_first_suballocator) {
6473 fl = ctxt->c_first_suballocator;
6474
6475 if (fl->f_first) {
6476 mlog(0, "Free items: (type %u, slot %d)\n",
6477 fl->f_inode_type, fl->f_slot);
Tao Ma2891d292008-11-12 08:26:58 +08006478 ret2 = ocfs2_free_cached_blocks(osb,
6479 fl->f_inode_type,
6480 fl->f_slot,
6481 fl->f_first);
Mark Fasheh2b604352007-06-22 15:45:27 -07006482 if (ret2)
6483 mlog_errno(ret2);
6484 if (!ret)
6485 ret = ret2;
6486 }
6487
6488 ctxt->c_first_suballocator = fl->f_next_suballocator;
6489 kfree(fl);
6490 }
6491
Tao Ma2891d292008-11-12 08:26:58 +08006492 if (ctxt->c_global_allocator) {
6493 ret2 = ocfs2_free_cached_clusters(osb,
6494 ctxt->c_global_allocator);
6495 if (ret2)
6496 mlog_errno(ret2);
6497 if (!ret)
6498 ret = ret2;
6499
6500 ctxt->c_global_allocator = NULL;
6501 }
6502
Mark Fasheh2b604352007-06-22 15:45:27 -07006503 return ret;
6504}
6505
6506static struct ocfs2_per_slot_free_list *
6507ocfs2_find_per_slot_free_list(int type,
6508 int slot,
6509 struct ocfs2_cached_dealloc_ctxt *ctxt)
6510{
6511 struct ocfs2_per_slot_free_list *fl = ctxt->c_first_suballocator;
6512
6513 while (fl) {
6514 if (fl->f_inode_type == type && fl->f_slot == slot)
6515 return fl;
6516
6517 fl = fl->f_next_suballocator;
6518 }
6519
6520 fl = kmalloc(sizeof(*fl), GFP_NOFS);
6521 if (fl) {
6522 fl->f_inode_type = type;
6523 fl->f_slot = slot;
6524 fl->f_first = NULL;
6525 fl->f_next_suballocator = ctxt->c_first_suballocator;
6526
6527 ctxt->c_first_suballocator = fl;
6528 }
6529 return fl;
6530}
6531
Tao Ma1823cb02009-08-18 11:24:49 +08006532int ocfs2_cache_block_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
6533 int type, int slot, u64 blkno,
6534 unsigned int bit)
Mark Fasheh2b604352007-06-22 15:45:27 -07006535{
6536 int ret;
6537 struct ocfs2_per_slot_free_list *fl;
6538 struct ocfs2_cached_block_free *item;
6539
6540 fl = ocfs2_find_per_slot_free_list(type, slot, ctxt);
6541 if (fl == NULL) {
6542 ret = -ENOMEM;
6543 mlog_errno(ret);
6544 goto out;
6545 }
6546
6547 item = kmalloc(sizeof(*item), GFP_NOFS);
6548 if (item == NULL) {
6549 ret = -ENOMEM;
6550 mlog_errno(ret);
6551 goto out;
6552 }
6553
6554 mlog(0, "Insert: (type %d, slot %u, bit %u, blk %llu)\n",
6555 type, slot, bit, (unsigned long long)blkno);
6556
6557 item->free_blk = blkno;
6558 item->free_bit = bit;
6559 item->free_next = fl->f_first;
6560
6561 fl->f_first = item;
6562
6563 ret = 0;
6564out:
6565 return ret;
6566}
6567
Mark Fasheh59a5e412007-06-22 15:52:36 -07006568static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt,
6569 struct ocfs2_extent_block *eb)
6570{
6571 return ocfs2_cache_block_dealloc(ctxt, EXTENT_ALLOC_SYSTEM_INODE,
6572 le16_to_cpu(eb->h_suballoc_slot),
6573 le64_to_cpu(eb->h_blkno),
6574 le16_to_cpu(eb->h_suballoc_bit));
6575}
6576
Joel Becker2b4e30f2008-09-03 20:03:41 -07006577static int ocfs2_zero_func(handle_t *handle, struct buffer_head *bh)
Mark Fasheh60b11392007-02-16 11:46:50 -08006578{
6579 set_buffer_uptodate(bh);
6580 mark_buffer_dirty(bh);
6581 return 0;
6582}
6583
Tao Ma6f70fa52009-08-25 08:05:12 +08006584void ocfs2_map_and_dirty_page(struct inode *inode, handle_t *handle,
6585 unsigned int from, unsigned int to,
6586 struct page *page, int zero, u64 *phys)
Mark Fasheh1d410a62007-09-07 14:20:45 -07006587{
6588 int ret, partial = 0;
6589
6590 ret = ocfs2_map_page_blocks(page, phys, inode, from, to, 0);
6591 if (ret)
6592 mlog_errno(ret);
6593
6594 if (zero)
Christoph Lametereebd2aa2008-02-04 22:28:29 -08006595 zero_user_segment(page, from, to);
Mark Fasheh1d410a62007-09-07 14:20:45 -07006596
6597 /*
6598 * Need to set the buffers we zero'd into uptodate
6599 * here if they aren't - ocfs2_map_page_blocks()
6600 * might've skipped some
6601 */
Joel Becker2b4e30f2008-09-03 20:03:41 -07006602 ret = walk_page_buffers(handle, page_buffers(page),
6603 from, to, &partial,
6604 ocfs2_zero_func);
6605 if (ret < 0)
6606 mlog_errno(ret);
6607 else if (ocfs2_should_order_data(inode)) {
6608 ret = ocfs2_jbd2_file_inode(handle, inode);
Mark Fasheh1d410a62007-09-07 14:20:45 -07006609 if (ret < 0)
6610 mlog_errno(ret);
6611 }
6612
6613 if (!partial)
6614 SetPageUptodate(page);
6615
6616 flush_dcache_page(page);
6617}
6618
Mark Fasheh35edec12007-07-06 14:41:18 -07006619static void ocfs2_zero_cluster_pages(struct inode *inode, loff_t start,
6620 loff_t end, struct page **pages,
6621 int numpages, u64 phys, handle_t *handle)
Mark Fasheh60b11392007-02-16 11:46:50 -08006622{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006623 int i;
Mark Fasheh60b11392007-02-16 11:46:50 -08006624 struct page *page;
6625 unsigned int from, to = PAGE_CACHE_SIZE;
6626 struct super_block *sb = inode->i_sb;
6627
6628 BUG_ON(!ocfs2_sparse_alloc(OCFS2_SB(sb)));
6629
6630 if (numpages == 0)
6631 goto out;
6632
Mark Fasheh35edec12007-07-06 14:41:18 -07006633 to = PAGE_CACHE_SIZE;
Mark Fasheh60b11392007-02-16 11:46:50 -08006634 for(i = 0; i < numpages; i++) {
6635 page = pages[i];
6636
Mark Fasheh35edec12007-07-06 14:41:18 -07006637 from = start & (PAGE_CACHE_SIZE - 1);
6638 if ((end >> PAGE_CACHE_SHIFT) == page->index)
6639 to = end & (PAGE_CACHE_SIZE - 1);
6640
Mark Fasheh60b11392007-02-16 11:46:50 -08006641 BUG_ON(from > PAGE_CACHE_SIZE);
6642 BUG_ON(to > PAGE_CACHE_SIZE);
6643
Mark Fasheh1d410a62007-09-07 14:20:45 -07006644 ocfs2_map_and_dirty_page(inode, handle, from, to, page, 1,
6645 &phys);
Mark Fasheh60b11392007-02-16 11:46:50 -08006646
Mark Fasheh35edec12007-07-06 14:41:18 -07006647 start = (page->index + 1) << PAGE_CACHE_SHIFT;
Mark Fasheh60b11392007-02-16 11:46:50 -08006648 }
6649out:
Mark Fasheh1d410a62007-09-07 14:20:45 -07006650 if (pages)
6651 ocfs2_unlock_and_free_pages(pages, numpages);
Mark Fasheh60b11392007-02-16 11:46:50 -08006652}
6653
Tao Ma6f70fa52009-08-25 08:05:12 +08006654int ocfs2_grab_pages(struct inode *inode, loff_t start, loff_t end,
6655 struct page **pages, int *num)
Mark Fasheh60b11392007-02-16 11:46:50 -08006656{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006657 int numpages, ret = 0;
Mark Fasheh60b11392007-02-16 11:46:50 -08006658 struct address_space *mapping = inode->i_mapping;
6659 unsigned long index;
Mark Fasheh35edec12007-07-06 14:41:18 -07006660 loff_t last_page_bytes;
Mark Fasheh60b11392007-02-16 11:46:50 -08006661
Mark Fasheh35edec12007-07-06 14:41:18 -07006662 BUG_ON(start > end);
Mark Fasheh60b11392007-02-16 11:46:50 -08006663
Mark Fasheh1d410a62007-09-07 14:20:45 -07006664 numpages = 0;
Mark Fasheh35edec12007-07-06 14:41:18 -07006665 last_page_bytes = PAGE_ALIGN(end);
6666 index = start >> PAGE_CACHE_SHIFT;
Mark Fasheh60b11392007-02-16 11:46:50 -08006667 do {
6668 pages[numpages] = grab_cache_page(mapping, index);
6669 if (!pages[numpages]) {
6670 ret = -ENOMEM;
6671 mlog_errno(ret);
6672 goto out;
6673 }
6674
6675 numpages++;
6676 index++;
Mark Fasheh35edec12007-07-06 14:41:18 -07006677 } while (index < (last_page_bytes >> PAGE_CACHE_SHIFT));
Mark Fasheh60b11392007-02-16 11:46:50 -08006678
6679out:
6680 if (ret != 0) {
Mark Fasheh1d410a62007-09-07 14:20:45 -07006681 if (pages)
6682 ocfs2_unlock_and_free_pages(pages, numpages);
Mark Fasheh60b11392007-02-16 11:46:50 -08006683 numpages = 0;
6684 }
6685
6686 *num = numpages;
6687
6688 return ret;
6689}
6690
Tao Ma6f70fa52009-08-25 08:05:12 +08006691static int ocfs2_grab_eof_pages(struct inode *inode, loff_t start, loff_t end,
6692 struct page **pages, int *num)
6693{
6694 struct super_block *sb = inode->i_sb;
6695
6696 BUG_ON(start >> OCFS2_SB(sb)->s_clustersize_bits !=
6697 (end - 1) >> OCFS2_SB(sb)->s_clustersize_bits);
6698
6699 return ocfs2_grab_pages(inode, start, end, pages, num);
6700}
6701
Mark Fasheh60b11392007-02-16 11:46:50 -08006702/*
6703 * Zero the area past i_size but still within an allocated
6704 * cluster. This avoids exposing nonzero data on subsequent file
6705 * extends.
6706 *
6707 * We need to call this before i_size is updated on the inode because
6708 * otherwise block_write_full_page() will skip writeout of pages past
6709 * i_size. The new_i_size parameter is passed for this reason.
6710 */
Mark Fasheh35edec12007-07-06 14:41:18 -07006711int ocfs2_zero_range_for_truncate(struct inode *inode, handle_t *handle,
6712 u64 range_start, u64 range_end)
Mark Fasheh60b11392007-02-16 11:46:50 -08006713{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006714 int ret = 0, numpages;
Mark Fasheh60b11392007-02-16 11:46:50 -08006715 struct page **pages = NULL;
6716 u64 phys;
Mark Fasheh1d410a62007-09-07 14:20:45 -07006717 unsigned int ext_flags;
6718 struct super_block *sb = inode->i_sb;
Mark Fasheh60b11392007-02-16 11:46:50 -08006719
6720 /*
6721 * File systems which don't support sparse files zero on every
6722 * extend.
6723 */
Mark Fasheh1d410a62007-09-07 14:20:45 -07006724 if (!ocfs2_sparse_alloc(OCFS2_SB(sb)))
Mark Fasheh60b11392007-02-16 11:46:50 -08006725 return 0;
6726
Mark Fasheh1d410a62007-09-07 14:20:45 -07006727 pages = kcalloc(ocfs2_pages_per_cluster(sb),
Mark Fasheh60b11392007-02-16 11:46:50 -08006728 sizeof(struct page *), GFP_NOFS);
6729 if (pages == NULL) {
6730 ret = -ENOMEM;
6731 mlog_errno(ret);
6732 goto out;
6733 }
6734
Mark Fasheh1d410a62007-09-07 14:20:45 -07006735 if (range_start == range_end)
6736 goto out;
6737
6738 ret = ocfs2_extent_map_get_blocks(inode,
6739 range_start >> sb->s_blocksize_bits,
6740 &phys, NULL, &ext_flags);
Mark Fasheh60b11392007-02-16 11:46:50 -08006741 if (ret) {
6742 mlog_errno(ret);
6743 goto out;
6744 }
6745
Mark Fasheh1d410a62007-09-07 14:20:45 -07006746 /*
6747 * Tail is a hole, or is marked unwritten. In either case, we
6748 * can count on read and write to return/push zero's.
6749 */
6750 if (phys == 0 || ext_flags & OCFS2_EXT_UNWRITTEN)
Mark Fasheh60b11392007-02-16 11:46:50 -08006751 goto out;
6752
Mark Fasheh1d410a62007-09-07 14:20:45 -07006753 ret = ocfs2_grab_eof_pages(inode, range_start, range_end, pages,
6754 &numpages);
6755 if (ret) {
6756 mlog_errno(ret);
6757 goto out;
6758 }
6759
Mark Fasheh35edec12007-07-06 14:41:18 -07006760 ocfs2_zero_cluster_pages(inode, range_start, range_end, pages,
6761 numpages, phys, handle);
Mark Fasheh60b11392007-02-16 11:46:50 -08006762
6763 /*
6764 * Initiate writeout of the pages we zero'd here. We don't
6765 * wait on them - the truncate_inode_pages() call later will
6766 * do that for us.
6767 */
Christoph Hellwig2cfd30a2009-09-23 15:04:02 +02006768 ret = filemap_fdatawrite_range(inode->i_mapping, range_start,
6769 range_end - 1);
Mark Fasheh60b11392007-02-16 11:46:50 -08006770 if (ret)
6771 mlog_errno(ret);
6772
6773out:
6774 if (pages)
6775 kfree(pages);
6776
6777 return ret;
6778}
6779
Tiger Yangfdd77702008-08-18 17:08:55 +08006780static void ocfs2_zero_dinode_id2_with_xattr(struct inode *inode,
6781 struct ocfs2_dinode *di)
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006782{
6783 unsigned int blocksize = 1 << inode->i_sb->s_blocksize_bits;
Tiger Yangfdd77702008-08-18 17:08:55 +08006784 unsigned int xattrsize = le16_to_cpu(di->i_xattr_inline_size);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006785
Tiger Yangfdd77702008-08-18 17:08:55 +08006786 if (le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_XATTR_FL)
6787 memset(&di->id2, 0, blocksize -
6788 offsetof(struct ocfs2_dinode, id2) -
6789 xattrsize);
6790 else
6791 memset(&di->id2, 0, blocksize -
6792 offsetof(struct ocfs2_dinode, id2));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006793}
6794
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07006795void ocfs2_dinode_new_extent_list(struct inode *inode,
6796 struct ocfs2_dinode *di)
6797{
Tiger Yangfdd77702008-08-18 17:08:55 +08006798 ocfs2_zero_dinode_id2_with_xattr(inode, di);
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07006799 di->id2.i_list.l_tree_depth = 0;
6800 di->id2.i_list.l_next_free_rec = 0;
Tiger Yangfdd77702008-08-18 17:08:55 +08006801 di->id2.i_list.l_count = cpu_to_le16(
6802 ocfs2_extent_recs_per_inode_with_xattr(inode->i_sb, di));
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07006803}
6804
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006805void ocfs2_set_inode_data_inline(struct inode *inode, struct ocfs2_dinode *di)
6806{
6807 struct ocfs2_inode_info *oi = OCFS2_I(inode);
6808 struct ocfs2_inline_data *idata = &di->id2.i_data;
6809
6810 spin_lock(&oi->ip_lock);
6811 oi->ip_dyn_features |= OCFS2_INLINE_DATA_FL;
6812 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
6813 spin_unlock(&oi->ip_lock);
6814
6815 /*
6816 * We clear the entire i_data structure here so that all
6817 * fields can be properly initialized.
6818 */
Tiger Yangfdd77702008-08-18 17:08:55 +08006819 ocfs2_zero_dinode_id2_with_xattr(inode, di);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006820
Tiger Yangfdd77702008-08-18 17:08:55 +08006821 idata->id_count = cpu_to_le16(
6822 ocfs2_max_inline_data_with_xattr(inode->i_sb, di));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006823}
6824
6825int ocfs2_convert_inline_data_to_extents(struct inode *inode,
6826 struct buffer_head *di_bh)
6827{
6828 int ret, i, has_data, num_pages = 0;
6829 handle_t *handle;
6830 u64 uninitialized_var(block);
6831 struct ocfs2_inode_info *oi = OCFS2_I(inode);
6832 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
6833 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006834 struct ocfs2_alloc_context *data_ac = NULL;
6835 struct page **pages = NULL;
6836 loff_t end = osb->s_clustersize;
Joel Beckerf99b9b72008-08-20 19:36:33 -07006837 struct ocfs2_extent_tree et;
Jan Karaa90714c2008-10-09 19:38:40 +02006838 int did_quota = 0;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006839
6840 has_data = i_size_read(inode) ? 1 : 0;
6841
6842 if (has_data) {
6843 pages = kcalloc(ocfs2_pages_per_cluster(osb->sb),
6844 sizeof(struct page *), GFP_NOFS);
6845 if (pages == NULL) {
6846 ret = -ENOMEM;
6847 mlog_errno(ret);
6848 goto out;
6849 }
6850
6851 ret = ocfs2_reserve_clusters(osb, 1, &data_ac);
6852 if (ret) {
6853 mlog_errno(ret);
6854 goto out;
6855 }
6856 }
6857
Jan Karaa90714c2008-10-09 19:38:40 +02006858 handle = ocfs2_start_trans(osb,
6859 ocfs2_inline_to_extents_credits(osb->sb));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006860 if (IS_ERR(handle)) {
6861 ret = PTR_ERR(handle);
6862 mlog_errno(ret);
6863 goto out_unlock;
6864 }
6865
Joel Becker0cf2f762009-02-12 16:41:25 -08006866 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
Joel Becker13723d02008-10-17 19:25:01 -07006867 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006868 if (ret) {
6869 mlog_errno(ret);
6870 goto out_commit;
6871 }
6872
6873 if (has_data) {
6874 u32 bit_off, num;
6875 unsigned int page_end;
6876 u64 phys;
6877
Christoph Hellwig5dd40562010-03-03 09:05:00 -05006878 ret = dquot_alloc_space_nodirty(inode,
6879 ocfs2_clusters_to_bytes(osb->sb, 1));
6880 if (ret)
Jan Karaa90714c2008-10-09 19:38:40 +02006881 goto out_commit;
Jan Karaa90714c2008-10-09 19:38:40 +02006882 did_quota = 1;
6883
Mark Fasheh4fe370a2009-12-07 13:15:40 -08006884 data_ac->ac_resv = &OCFS2_I(inode)->ip_la_data_resv;
6885
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006886 ret = ocfs2_claim_clusters(osb, handle, data_ac, 1, &bit_off,
6887 &num);
6888 if (ret) {
6889 mlog_errno(ret);
6890 goto out_commit;
6891 }
6892
6893 /*
6894 * Save two copies, one for insert, and one that can
6895 * be changed by ocfs2_map_and_dirty_page() below.
6896 */
6897 block = phys = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
6898
6899 /*
6900 * Non sparse file systems zero on extend, so no need
6901 * to do that now.
6902 */
6903 if (!ocfs2_sparse_alloc(osb) &&
6904 PAGE_CACHE_SIZE < osb->s_clustersize)
6905 end = PAGE_CACHE_SIZE;
6906
6907 ret = ocfs2_grab_eof_pages(inode, 0, end, pages, &num_pages);
6908 if (ret) {
6909 mlog_errno(ret);
6910 goto out_commit;
6911 }
6912
6913 /*
6914 * This should populate the 1st page for us and mark
6915 * it up to date.
6916 */
6917 ret = ocfs2_read_inline_data(inode, pages[0], di_bh);
6918 if (ret) {
6919 mlog_errno(ret);
6920 goto out_commit;
6921 }
6922
6923 page_end = PAGE_CACHE_SIZE;
6924 if (PAGE_CACHE_SIZE > osb->s_clustersize)
6925 page_end = osb->s_clustersize;
6926
6927 for (i = 0; i < num_pages; i++)
6928 ocfs2_map_and_dirty_page(inode, handle, 0, page_end,
6929 pages[i], i > 0, &phys);
6930 }
6931
6932 spin_lock(&oi->ip_lock);
6933 oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL;
6934 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
6935 spin_unlock(&oi->ip_lock);
6936
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07006937 ocfs2_dinode_new_extent_list(inode, di);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006938
6939 ocfs2_journal_dirty(handle, di_bh);
6940
6941 if (has_data) {
6942 /*
6943 * An error at this point should be extremely rare. If
6944 * this proves to be false, we could always re-build
6945 * the in-inode data from our pages.
6946 */
Joel Becker5e404e92009-02-13 03:54:22 -08006947 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);
Joel Beckercc79d8c2009-02-13 03:24:43 -08006948 ret = ocfs2_insert_extent(handle, &et, 0, block, 1, 0, NULL);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006949 if (ret) {
6950 mlog_errno(ret);
6951 goto out_commit;
6952 }
6953
6954 inode->i_blocks = ocfs2_inode_sector_count(inode);
6955 }
6956
6957out_commit:
Jan Karaa90714c2008-10-09 19:38:40 +02006958 if (ret < 0 && did_quota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05006959 dquot_free_space_nodirty(inode,
Jan Karaa90714c2008-10-09 19:38:40 +02006960 ocfs2_clusters_to_bytes(osb->sb, 1));
6961
Mark Fasheh1afc32b2007-09-07 14:46:51 -07006962 ocfs2_commit_trans(osb, handle);
6963
6964out_unlock:
6965 if (data_ac)
6966 ocfs2_free_alloc_context(data_ac);
6967
6968out:
6969 if (pages) {
6970 ocfs2_unlock_and_free_pages(pages, num_pages);
6971 kfree(pages);
6972 }
6973
6974 return ret;
6975}
6976
Mark Fashehccd979b2005-12-15 14:31:24 -08006977/*
6978 * It is expected, that by the time you call this function,
6979 * inode->i_size and fe->i_size have been adjusted.
6980 *
6981 * WARNING: This will kfree the truncate context
6982 */
6983int ocfs2_commit_truncate(struct ocfs2_super *osb,
6984 struct inode *inode,
Tristan Ye78f94672010-05-11 17:54:42 +08006985 struct buffer_head *di_bh)
Mark Fashehccd979b2005-12-15 14:31:24 -08006986{
Tristan Ye78f94672010-05-11 17:54:42 +08006987 int status = 0, i, flags = 0;
6988 u32 new_highest_cpos, range, trunc_cpos, trunc_len, phys_cpos, coff;
Tao Mabcbbb242009-08-18 11:29:12 +08006989 u64 blkno = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08006990 struct ocfs2_extent_list *el;
Tristan Ye78f94672010-05-11 17:54:42 +08006991 struct ocfs2_extent_rec *rec;
Mark Fashehdcd05382007-01-16 11:32:23 -08006992 struct ocfs2_path *path = NULL;
Tristan Ye78f94672010-05-11 17:54:42 +08006993 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
6994 struct ocfs2_extent_list *root_el = &(di->id2.i_list);
6995 u64 refcount_loc = le64_to_cpu(di->i_refcount_loc);
6996 struct ocfs2_extent_tree et;
6997 struct ocfs2_cached_dealloc_ctxt dealloc;
Mark Fashehccd979b2005-12-15 14:31:24 -08006998
6999 mlog_entry_void();
7000
Tristan Ye78f94672010-05-11 17:54:42 +08007001 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);
7002 ocfs2_init_dealloc_ctxt(&dealloc);
7003
Mark Fashehdcd05382007-01-16 11:32:23 -08007004 new_highest_cpos = ocfs2_clusters_for_bytes(osb->sb,
Mark Fashehccd979b2005-12-15 14:31:24 -08007005 i_size_read(inode));
7006
Tristan Ye78f94672010-05-11 17:54:42 +08007007 path = ocfs2_new_path(di_bh, &di->id2.i_list,
Joel Becker13723d02008-10-17 19:25:01 -07007008 ocfs2_journal_access_di);
Mark Fashehdcd05382007-01-16 11:32:23 -08007009 if (!path) {
7010 status = -ENOMEM;
7011 mlog_errno(status);
7012 goto bail;
7013 }
Mark Fasheh83418972007-04-23 18:53:12 -07007014
7015 ocfs2_extent_map_trunc(inode, new_highest_cpos);
7016
Mark Fashehccd979b2005-12-15 14:31:24 -08007017start:
Mark Fashehdcd05382007-01-16 11:32:23 -08007018 /*
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007019 * Check that we still have allocation to delete.
7020 */
7021 if (OCFS2_I(inode)->ip_clusters == 0) {
7022 status = 0;
7023 goto bail;
7024 }
7025
7026 /*
Mark Fashehdcd05382007-01-16 11:32:23 -08007027 * Truncate always works against the rightmost tree branch.
7028 */
Joel Beckerfacdb772009-02-12 18:08:48 -08007029 status = ocfs2_find_path(INODE_CACHE(inode), path, UINT_MAX);
Mark Fashehdcd05382007-01-16 11:32:23 -08007030 if (status) {
7031 mlog_errno(status);
7032 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -08007033 }
7034
Mark Fashehdcd05382007-01-16 11:32:23 -08007035 mlog(0, "inode->ip_clusters = %u, tree_depth = %u\n",
7036 OCFS2_I(inode)->ip_clusters, path->p_tree_depth);
7037
7038 /*
7039 * By now, el will point to the extent list on the bottom most
7040 * portion of this tree. Only the tail record is considered in
7041 * each pass.
7042 *
7043 * We handle the following cases, in order:
7044 * - empty extent: delete the remaining branch
7045 * - remove the entire record
7046 * - remove a partial record
7047 * - no record needs to be removed (truncate has completed)
7048 */
7049 el = path_leaf_el(path);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007050 if (le16_to_cpu(el->l_next_free_rec) == 0) {
7051 ocfs2_error(inode->i_sb,
7052 "Inode %llu has empty extent block at %llu\n",
7053 (unsigned long long)OCFS2_I(inode)->ip_blkno,
7054 (unsigned long long)path_leaf_bh(path)->b_blocknr);
7055 status = -EROFS;
7056 goto bail;
7057 }
7058
Mark Fashehccd979b2005-12-15 14:31:24 -08007059 i = le16_to_cpu(el->l_next_free_rec) - 1;
Tristan Ye78f94672010-05-11 17:54:42 +08007060 rec = &el->l_recs[i];
7061 flags = rec->e_flags;
7062 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
7063
7064 if (i == 0 && ocfs2_is_empty_extent(rec)) {
7065 /*
7066 * Lower levels depend on this never happening, but it's best
7067 * to check it up here before changing the tree.
7068 */
7069 if (root_el->l_tree_depth && rec->e_int_clusters == 0) {
7070 ocfs2_error(inode->i_sb, "Inode %lu has an empty "
7071 "extent record, depth %u\n", inode->i_ino,
7072 le16_to_cpu(root_el->l_tree_depth));
7073 status = -EROFS;
7074 goto bail;
7075 }
7076 trunc_cpos = le32_to_cpu(rec->e_cpos);
7077 trunc_len = 0;
7078 blkno = 0;
7079 } else if (le32_to_cpu(rec->e_cpos) >= new_highest_cpos) {
7080 /*
7081 * Truncate entire record.
7082 */
7083 trunc_cpos = le32_to_cpu(rec->e_cpos);
7084 trunc_len = ocfs2_rec_clusters(el, rec);
7085 blkno = le64_to_cpu(rec->e_blkno);
Mark Fashehdcd05382007-01-16 11:32:23 -08007086 } else if (range > new_highest_cpos) {
Tristan Ye78f94672010-05-11 17:54:42 +08007087 /*
7088 * Partial truncate. it also should be
7089 * the last truncate we're doing.
7090 */
7091 trunc_cpos = new_highest_cpos;
7092 trunc_len = range - new_highest_cpos;
7093 coff = new_highest_cpos - le32_to_cpu(rec->e_cpos);
7094 blkno = le64_to_cpu(rec->e_blkno) +
7095 ocfs2_clusters_to_blocks(inode->i_sb, coff);
Mark Fashehdcd05382007-01-16 11:32:23 -08007096 } else {
Tristan Ye78f94672010-05-11 17:54:42 +08007097 /*
7098 * Truncate completed, leave happily.
7099 */
Mark Fashehdcd05382007-01-16 11:32:23 -08007100 status = 0;
7101 goto bail;
7102 }
Mark Fashehccd979b2005-12-15 14:31:24 -08007103
Tristan Ye78f94672010-05-11 17:54:42 +08007104 phys_cpos = ocfs2_blocks_to_clusters(inode->i_sb, blkno);
Mark Fashehdcd05382007-01-16 11:32:23 -08007105
Tristan Ye78f94672010-05-11 17:54:42 +08007106 status = ocfs2_remove_btree_range(inode, &et, trunc_cpos,
7107 phys_cpos, trunc_len, flags, &dealloc,
7108 refcount_loc);
Mark Fashehccd979b2005-12-15 14:31:24 -08007109 if (status < 0) {
7110 mlog_errno(status);
7111 goto bail;
7112 }
7113
Mark Fashehdcd05382007-01-16 11:32:23 -08007114 ocfs2_reinit_path(path, 1);
7115
7116 /*
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007117 * The check above will catch the case where we've truncated
7118 * away all allocation.
Mark Fashehdcd05382007-01-16 11:32:23 -08007119 */
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007120 goto start;
7121
Mark Fashehccd979b2005-12-15 14:31:24 -08007122bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08007123
7124 ocfs2_schedule_truncate_log_flush(osb, 1);
7125
Tristan Ye78f94672010-05-11 17:54:42 +08007126 ocfs2_run_deallocs(osb, &dealloc);
Mark Fasheh59a5e412007-06-22 15:52:36 -07007127
Mark Fashehdcd05382007-01-16 11:32:23 -08007128 ocfs2_free_path(path);
Mark Fashehccd979b2005-12-15 14:31:24 -08007129
Mark Fashehccd979b2005-12-15 14:31:24 -08007130 mlog_exit(status);
7131 return status;
7132}
7133
Mark Fashehccd979b2005-12-15 14:31:24 -08007134/*
Mark Fasheh59a5e412007-06-22 15:52:36 -07007135 * Expects the inode to already be locked.
Mark Fashehccd979b2005-12-15 14:31:24 -08007136 */
7137int ocfs2_prepare_truncate(struct ocfs2_super *osb,
7138 struct inode *inode,
7139 struct buffer_head *fe_bh,
7140 struct ocfs2_truncate_context **tc)
7141{
Mark Fasheh59a5e412007-06-22 15:52:36 -07007142 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08007143 unsigned int new_i_clusters;
7144 struct ocfs2_dinode *fe;
7145 struct ocfs2_extent_block *eb;
Mark Fashehccd979b2005-12-15 14:31:24 -08007146 struct buffer_head *last_eb_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08007147
7148 mlog_entry_void();
7149
7150 *tc = NULL;
7151
7152 new_i_clusters = ocfs2_clusters_for_bytes(osb->sb,
7153 i_size_read(inode));
7154 fe = (struct ocfs2_dinode *) fe_bh->b_data;
7155
7156 mlog(0, "fe->i_clusters = %u, new_i_clusters = %u, fe->i_size ="
Mark Fasheh1ca1a112007-04-27 16:01:25 -07007157 "%llu\n", le32_to_cpu(fe->i_clusters), new_i_clusters,
7158 (unsigned long long)le64_to_cpu(fe->i_size));
Mark Fashehccd979b2005-12-15 14:31:24 -08007159
Robert P. J. Daycd861282006-12-13 00:34:52 -08007160 *tc = kzalloc(sizeof(struct ocfs2_truncate_context), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08007161 if (!(*tc)) {
7162 status = -ENOMEM;
7163 mlog_errno(status);
7164 goto bail;
7165 }
Mark Fasheh59a5e412007-06-22 15:52:36 -07007166 ocfs2_init_dealloc_ctxt(&(*tc)->tc_dealloc);
Mark Fashehccd979b2005-12-15 14:31:24 -08007167
Mark Fashehccd979b2005-12-15 14:31:24 -08007168 if (fe->id2.i_list.l_tree_depth) {
Joel Becker3d03a302009-02-12 17:49:26 -08007169 status = ocfs2_read_extent_block(INODE_CACHE(inode),
Joel Becker5e965812008-11-13 14:49:16 -08007170 le64_to_cpu(fe->i_last_eb_blk),
7171 &last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08007172 if (status < 0) {
7173 mlog_errno(status);
7174 goto bail;
7175 }
7176 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08007177 }
7178
7179 (*tc)->tc_last_eb_bh = last_eb_bh;
7180
Mark Fashehccd979b2005-12-15 14:31:24 -08007181 status = 0;
7182bail:
7183 if (status < 0) {
7184 if (*tc)
7185 ocfs2_free_truncate_context(*tc);
7186 *tc = NULL;
7187 }
7188 mlog_exit_void();
7189 return status;
7190}
7191
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007192/*
7193 * 'start' is inclusive, 'end' is not.
7194 */
7195int ocfs2_truncate_inline(struct inode *inode, struct buffer_head *di_bh,
7196 unsigned int start, unsigned int end, int trunc)
7197{
7198 int ret;
7199 unsigned int numbytes;
7200 handle_t *handle;
7201 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
7202 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
7203 struct ocfs2_inline_data *idata = &di->id2.i_data;
7204
7205 if (end > i_size_read(inode))
7206 end = i_size_read(inode);
7207
7208 BUG_ON(start >= end);
7209
7210 if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) ||
7211 !(le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_DATA_FL) ||
7212 !ocfs2_supports_inline_data(osb)) {
7213 ocfs2_error(inode->i_sb,
7214 "Inline data flags for inode %llu don't agree! "
7215 "Disk: 0x%x, Memory: 0x%x, Superblock: 0x%x\n",
7216 (unsigned long long)OCFS2_I(inode)->ip_blkno,
7217 le16_to_cpu(di->i_dyn_features),
7218 OCFS2_I(inode)->ip_dyn_features,
7219 osb->s_feature_incompat);
7220 ret = -EROFS;
7221 goto out;
7222 }
7223
7224 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
7225 if (IS_ERR(handle)) {
7226 ret = PTR_ERR(handle);
7227 mlog_errno(ret);
7228 goto out;
7229 }
7230
Joel Becker0cf2f762009-02-12 16:41:25 -08007231 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
Joel Becker13723d02008-10-17 19:25:01 -07007232 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007233 if (ret) {
7234 mlog_errno(ret);
7235 goto out_commit;
7236 }
7237
7238 numbytes = end - start;
7239 memset(idata->id_data + start, 0, numbytes);
7240
7241 /*
7242 * No need to worry about the data page here - it's been
7243 * truncated already and inline data doesn't need it for
7244 * pushing zero's to disk, so we'll let readpage pick it up
7245 * later.
7246 */
7247 if (trunc) {
7248 i_size_write(inode, start);
7249 di->i_size = cpu_to_le64(start);
7250 }
7251
7252 inode->i_blocks = ocfs2_inode_sector_count(inode);
7253 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
7254
7255 di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
7256 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
7257
7258 ocfs2_journal_dirty(handle, di_bh);
7259
7260out_commit:
7261 ocfs2_commit_trans(osb, handle);
7262
7263out:
7264 return ret;
7265}
7266
Mark Fashehccd979b2005-12-15 14:31:24 -08007267static void ocfs2_free_truncate_context(struct ocfs2_truncate_context *tc)
7268{
Mark Fasheh59a5e412007-06-22 15:52:36 -07007269 /*
7270 * The caller is responsible for completing deallocation
7271 * before freeing the context.
7272 */
7273 if (tc->tc_dealloc.c_first_suballocator != NULL)
7274 mlog(ML_NOTICE,
7275 "Truncate completion has non-empty dealloc context\n");
Mark Fashehccd979b2005-12-15 14:31:24 -08007276
Mark Fasheha81cb882008-10-07 14:25:16 -07007277 brelse(tc->tc_last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08007278
7279 kfree(tc);
7280}