1ccd979bdSMark Fasheh /* -*- mode: c; c-basic-offset: 8; -*- 2ccd979bdSMark Fasheh * vim: noexpandtab sw=8 ts=8 sts=0: 3ccd979bdSMark Fasheh * 4ccd979bdSMark Fasheh * alloc.c 5ccd979bdSMark Fasheh * 6ccd979bdSMark Fasheh * Extent allocs and frees 7ccd979bdSMark Fasheh * 8ccd979bdSMark Fasheh * Copyright (C) 2002, 2004 Oracle. All rights reserved. 9ccd979bdSMark Fasheh * 10ccd979bdSMark Fasheh * This program is free software; you can redistribute it and/or 11ccd979bdSMark Fasheh * modify it under the terms of the GNU General Public 12ccd979bdSMark Fasheh * License as published by the Free Software Foundation; either 13ccd979bdSMark Fasheh * version 2 of the License, or (at your option) any later version. 14ccd979bdSMark Fasheh * 15ccd979bdSMark Fasheh * This program is distributed in the hope that it will be useful, 16ccd979bdSMark Fasheh * but WITHOUT ANY WARRANTY; without even the implied warranty of 17ccd979bdSMark Fasheh * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18ccd979bdSMark Fasheh * General Public License for more details. 19ccd979bdSMark Fasheh * 20ccd979bdSMark Fasheh * You should have received a copy of the GNU General Public 21ccd979bdSMark Fasheh * License along with this program; if not, write to the 22ccd979bdSMark Fasheh * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 23ccd979bdSMark Fasheh * Boston, MA 021110-1307, USA. 24ccd979bdSMark Fasheh */ 25ccd979bdSMark Fasheh 26ccd979bdSMark Fasheh #include <linux/fs.h> 27ccd979bdSMark Fasheh #include <linux/types.h> 28ccd979bdSMark Fasheh #include <linux/slab.h> 29ccd979bdSMark Fasheh #include <linux/highmem.h> 3060b11392SMark Fasheh #include <linux/swap.h> 31ccd979bdSMark Fasheh 32ccd979bdSMark Fasheh #define MLOG_MASK_PREFIX ML_DISK_ALLOC 33ccd979bdSMark Fasheh #include <cluster/masklog.h> 34ccd979bdSMark Fasheh 35ccd979bdSMark Fasheh #include "ocfs2.h" 36ccd979bdSMark Fasheh 37ccd979bdSMark Fasheh #include "alloc.h" 3860b11392SMark Fasheh #include "aops.h" 39ccd979bdSMark Fasheh #include "dlmglue.h" 40ccd979bdSMark Fasheh #include "extent_map.h" 41ccd979bdSMark Fasheh #include "inode.h" 42ccd979bdSMark Fasheh #include "journal.h" 43ccd979bdSMark Fasheh #include "localalloc.h" 44ccd979bdSMark Fasheh #include "suballoc.h" 45ccd979bdSMark Fasheh #include "sysfile.h" 46ccd979bdSMark Fasheh #include "file.h" 47ccd979bdSMark Fasheh #include "super.h" 48ccd979bdSMark Fasheh #include "uptodate.h" 49ccd979bdSMark Fasheh 50ccd979bdSMark Fasheh #include "buffer_head_io.h" 51ccd979bdSMark Fasheh 52*e7d4cb6bSTao Ma /* 53*e7d4cb6bSTao Ma * ocfs2_extent_tree and ocfs2_extent_tree_operations are used to abstract 54*e7d4cb6bSTao Ma * the b-tree operations in ocfs2. Now all the b-tree operations are not 55*e7d4cb6bSTao Ma * limited to ocfs2_dinode only. Any data which need to allocate clusters 56*e7d4cb6bSTao Ma * to store can use b-tree. And it only needs to implement its ocfs2_extent_tree 57*e7d4cb6bSTao Ma * and operation. 58*e7d4cb6bSTao Ma * 59*e7d4cb6bSTao Ma * ocfs2_extent_tree contains info for the root of the b-tree, it must have a 60*e7d4cb6bSTao Ma * root ocfs2_extent_list and a root_bh so that they can be used in the b-tree 61*e7d4cb6bSTao Ma * functions. 62*e7d4cb6bSTao Ma * ocfs2_extent_tree_operations abstract the normal operations we do for 63*e7d4cb6bSTao Ma * the root of extent b-tree. 64*e7d4cb6bSTao Ma */ 65*e7d4cb6bSTao Ma struct ocfs2_extent_tree; 66*e7d4cb6bSTao Ma 67*e7d4cb6bSTao Ma struct ocfs2_extent_tree_operations { 68*e7d4cb6bSTao Ma void (*set_last_eb_blk) (struct ocfs2_extent_tree *et, u64 blkno); 69*e7d4cb6bSTao Ma u64 (*get_last_eb_blk) (struct ocfs2_extent_tree *et); 70*e7d4cb6bSTao Ma void (*update_clusters) (struct inode *inode, 71*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 72*e7d4cb6bSTao Ma u32 new_clusters); 73*e7d4cb6bSTao Ma int (*sanity_check) (struct inode *inode, struct ocfs2_extent_tree *et); 74*e7d4cb6bSTao Ma }; 75*e7d4cb6bSTao Ma 76*e7d4cb6bSTao Ma struct ocfs2_extent_tree { 77*e7d4cb6bSTao Ma enum ocfs2_extent_tree_type type; 78*e7d4cb6bSTao Ma struct ocfs2_extent_tree_operations *eops; 79*e7d4cb6bSTao Ma struct buffer_head *root_bh; 80*e7d4cb6bSTao Ma struct ocfs2_extent_list *root_el; 81*e7d4cb6bSTao Ma }; 82*e7d4cb6bSTao Ma 83*e7d4cb6bSTao Ma static void ocfs2_dinode_set_last_eb_blk(struct ocfs2_extent_tree *et, 84*e7d4cb6bSTao Ma u64 blkno) 85*e7d4cb6bSTao Ma { 86*e7d4cb6bSTao Ma struct ocfs2_dinode *di = (struct ocfs2_dinode *)et->root_bh->b_data; 87*e7d4cb6bSTao Ma 88*e7d4cb6bSTao Ma BUG_ON(et->type != OCFS2_DINODE_EXTENT); 89*e7d4cb6bSTao Ma di->i_last_eb_blk = cpu_to_le64(blkno); 90*e7d4cb6bSTao Ma } 91*e7d4cb6bSTao Ma 92*e7d4cb6bSTao Ma static u64 ocfs2_dinode_get_last_eb_blk(struct ocfs2_extent_tree *et) 93*e7d4cb6bSTao Ma { 94*e7d4cb6bSTao Ma struct ocfs2_dinode *di = (struct ocfs2_dinode *)et->root_bh->b_data; 95*e7d4cb6bSTao Ma 96*e7d4cb6bSTao Ma BUG_ON(et->type != OCFS2_DINODE_EXTENT); 97*e7d4cb6bSTao Ma return le64_to_cpu(di->i_last_eb_blk); 98*e7d4cb6bSTao Ma } 99*e7d4cb6bSTao Ma 100*e7d4cb6bSTao Ma static void ocfs2_dinode_update_clusters(struct inode *inode, 101*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 102*e7d4cb6bSTao Ma u32 clusters) 103*e7d4cb6bSTao Ma { 104*e7d4cb6bSTao Ma struct ocfs2_dinode *di = 105*e7d4cb6bSTao Ma (struct ocfs2_dinode *)et->root_bh->b_data; 106*e7d4cb6bSTao Ma 107*e7d4cb6bSTao Ma le32_add_cpu(&di->i_clusters, clusters); 108*e7d4cb6bSTao Ma spin_lock(&OCFS2_I(inode)->ip_lock); 109*e7d4cb6bSTao Ma OCFS2_I(inode)->ip_clusters = le32_to_cpu(di->i_clusters); 110*e7d4cb6bSTao Ma spin_unlock(&OCFS2_I(inode)->ip_lock); 111*e7d4cb6bSTao Ma } 112*e7d4cb6bSTao Ma 113*e7d4cb6bSTao Ma static int ocfs2_dinode_sanity_check(struct inode *inode, 114*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et) 115*e7d4cb6bSTao Ma { 116*e7d4cb6bSTao Ma int ret = 0; 117*e7d4cb6bSTao Ma struct ocfs2_dinode *di; 118*e7d4cb6bSTao Ma 119*e7d4cb6bSTao Ma BUG_ON(et->type != OCFS2_DINODE_EXTENT); 120*e7d4cb6bSTao Ma 121*e7d4cb6bSTao Ma di = (struct ocfs2_dinode *)et->root_bh->b_data; 122*e7d4cb6bSTao Ma if (!OCFS2_IS_VALID_DINODE(di)) { 123*e7d4cb6bSTao Ma ret = -EIO; 124*e7d4cb6bSTao Ma ocfs2_error(inode->i_sb, 125*e7d4cb6bSTao Ma "Inode %llu has invalid path root", 126*e7d4cb6bSTao Ma (unsigned long long)OCFS2_I(inode)->ip_blkno); 127*e7d4cb6bSTao Ma } 128*e7d4cb6bSTao Ma 129*e7d4cb6bSTao Ma return ret; 130*e7d4cb6bSTao Ma } 131*e7d4cb6bSTao Ma 132*e7d4cb6bSTao Ma static struct ocfs2_extent_tree_operations ocfs2_dinode_et_ops = { 133*e7d4cb6bSTao Ma .set_last_eb_blk = ocfs2_dinode_set_last_eb_blk, 134*e7d4cb6bSTao Ma .get_last_eb_blk = ocfs2_dinode_get_last_eb_blk, 135*e7d4cb6bSTao Ma .update_clusters = ocfs2_dinode_update_clusters, 136*e7d4cb6bSTao Ma .sanity_check = ocfs2_dinode_sanity_check, 137*e7d4cb6bSTao Ma }; 138*e7d4cb6bSTao Ma 139*e7d4cb6bSTao Ma static struct ocfs2_extent_tree* 140*e7d4cb6bSTao Ma ocfs2_new_extent_tree(struct buffer_head *bh, 141*e7d4cb6bSTao Ma enum ocfs2_extent_tree_type et_type) 142*e7d4cb6bSTao Ma { 143*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et; 144*e7d4cb6bSTao Ma 145*e7d4cb6bSTao Ma et = kzalloc(sizeof(*et), GFP_NOFS); 146*e7d4cb6bSTao Ma if (!et) 147*e7d4cb6bSTao Ma return NULL; 148*e7d4cb6bSTao Ma 149*e7d4cb6bSTao Ma et->type = et_type; 150*e7d4cb6bSTao Ma get_bh(bh); 151*e7d4cb6bSTao Ma et->root_bh = bh; 152*e7d4cb6bSTao Ma 153*e7d4cb6bSTao Ma /* current we only support dinode extent. */ 154*e7d4cb6bSTao Ma BUG_ON(et->type != OCFS2_DINODE_EXTENT); 155*e7d4cb6bSTao Ma if (et_type == OCFS2_DINODE_EXTENT) { 156*e7d4cb6bSTao Ma et->root_el = &((struct ocfs2_dinode *)bh->b_data)->id2.i_list; 157*e7d4cb6bSTao Ma et->eops = &ocfs2_dinode_et_ops; 158*e7d4cb6bSTao Ma } 159*e7d4cb6bSTao Ma 160*e7d4cb6bSTao Ma return et; 161*e7d4cb6bSTao Ma } 162*e7d4cb6bSTao Ma 163*e7d4cb6bSTao Ma static void ocfs2_free_extent_tree(struct ocfs2_extent_tree *et) 164*e7d4cb6bSTao Ma { 165*e7d4cb6bSTao Ma if (et) { 166*e7d4cb6bSTao Ma brelse(et->root_bh); 167*e7d4cb6bSTao Ma kfree(et); 168*e7d4cb6bSTao Ma } 169*e7d4cb6bSTao Ma } 170*e7d4cb6bSTao Ma 171*e7d4cb6bSTao Ma static inline void ocfs2_set_last_eb_blk(struct ocfs2_extent_tree *et, 172*e7d4cb6bSTao Ma u64 new_last_eb_blk) 173*e7d4cb6bSTao Ma { 174*e7d4cb6bSTao Ma et->eops->set_last_eb_blk(et, new_last_eb_blk); 175*e7d4cb6bSTao Ma } 176*e7d4cb6bSTao Ma 177*e7d4cb6bSTao Ma static inline u64 ocfs2_get_last_eb_blk(struct ocfs2_extent_tree *et) 178*e7d4cb6bSTao Ma { 179*e7d4cb6bSTao Ma return et->eops->get_last_eb_blk(et); 180*e7d4cb6bSTao Ma } 181*e7d4cb6bSTao Ma 182*e7d4cb6bSTao Ma static inline void ocfs2_update_clusters(struct inode *inode, 183*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 184*e7d4cb6bSTao Ma u32 clusters) 185*e7d4cb6bSTao Ma { 186*e7d4cb6bSTao Ma et->eops->update_clusters(inode, et, clusters); 187*e7d4cb6bSTao Ma } 188*e7d4cb6bSTao Ma 189ccd979bdSMark Fasheh static void ocfs2_free_truncate_context(struct ocfs2_truncate_context *tc); 19059a5e416SMark Fasheh static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt, 19159a5e416SMark Fasheh struct ocfs2_extent_block *eb); 192ccd979bdSMark Fasheh 193dcd0538fSMark Fasheh /* 194dcd0538fSMark Fasheh * Structures which describe a path through a btree, and functions to 195dcd0538fSMark Fasheh * manipulate them. 196dcd0538fSMark Fasheh * 197dcd0538fSMark Fasheh * The idea here is to be as generic as possible with the tree 198dcd0538fSMark Fasheh * manipulation code. 199dcd0538fSMark Fasheh */ 200dcd0538fSMark Fasheh struct ocfs2_path_item { 201dcd0538fSMark Fasheh struct buffer_head *bh; 202dcd0538fSMark Fasheh struct ocfs2_extent_list *el; 203dcd0538fSMark Fasheh }; 204dcd0538fSMark Fasheh 205dcd0538fSMark Fasheh #define OCFS2_MAX_PATH_DEPTH 5 206dcd0538fSMark Fasheh 207dcd0538fSMark Fasheh struct ocfs2_path { 208dcd0538fSMark Fasheh int p_tree_depth; 209dcd0538fSMark Fasheh struct ocfs2_path_item p_node[OCFS2_MAX_PATH_DEPTH]; 210dcd0538fSMark Fasheh }; 211dcd0538fSMark Fasheh 212dcd0538fSMark Fasheh #define path_root_bh(_path) ((_path)->p_node[0].bh) 213dcd0538fSMark Fasheh #define path_root_el(_path) ((_path)->p_node[0].el) 214dcd0538fSMark Fasheh #define path_leaf_bh(_path) ((_path)->p_node[(_path)->p_tree_depth].bh) 215dcd0538fSMark Fasheh #define path_leaf_el(_path) ((_path)->p_node[(_path)->p_tree_depth].el) 216dcd0538fSMark Fasheh #define path_num_items(_path) ((_path)->p_tree_depth + 1) 217dcd0538fSMark Fasheh 218dcd0538fSMark Fasheh /* 219dcd0538fSMark Fasheh * Reset the actual path elements so that we can re-use the structure 220dcd0538fSMark Fasheh * to build another path. Generally, this involves freeing the buffer 221dcd0538fSMark Fasheh * heads. 222dcd0538fSMark Fasheh */ 223dcd0538fSMark Fasheh static void ocfs2_reinit_path(struct ocfs2_path *path, int keep_root) 224dcd0538fSMark Fasheh { 225dcd0538fSMark Fasheh int i, start = 0, depth = 0; 226dcd0538fSMark Fasheh struct ocfs2_path_item *node; 227dcd0538fSMark Fasheh 228dcd0538fSMark Fasheh if (keep_root) 229dcd0538fSMark Fasheh start = 1; 230dcd0538fSMark Fasheh 231dcd0538fSMark Fasheh for(i = start; i < path_num_items(path); i++) { 232dcd0538fSMark Fasheh node = &path->p_node[i]; 233dcd0538fSMark Fasheh 234dcd0538fSMark Fasheh brelse(node->bh); 235dcd0538fSMark Fasheh node->bh = NULL; 236dcd0538fSMark Fasheh node->el = NULL; 237dcd0538fSMark Fasheh } 238dcd0538fSMark Fasheh 239dcd0538fSMark Fasheh /* 240dcd0538fSMark Fasheh * Tree depth may change during truncate, or insert. If we're 241dcd0538fSMark Fasheh * keeping the root extent list, then make sure that our path 242dcd0538fSMark Fasheh * structure reflects the proper depth. 243dcd0538fSMark Fasheh */ 244dcd0538fSMark Fasheh if (keep_root) 245dcd0538fSMark Fasheh depth = le16_to_cpu(path_root_el(path)->l_tree_depth); 246dcd0538fSMark Fasheh 247dcd0538fSMark Fasheh path->p_tree_depth = depth; 248dcd0538fSMark Fasheh } 249dcd0538fSMark Fasheh 250dcd0538fSMark Fasheh static void ocfs2_free_path(struct ocfs2_path *path) 251dcd0538fSMark Fasheh { 252dcd0538fSMark Fasheh if (path) { 253dcd0538fSMark Fasheh ocfs2_reinit_path(path, 0); 254dcd0538fSMark Fasheh kfree(path); 255dcd0538fSMark Fasheh } 256dcd0538fSMark Fasheh } 257dcd0538fSMark Fasheh 258dcd0538fSMark Fasheh /* 259328d5752SMark Fasheh * All the elements of src into dest. After this call, src could be freed 260328d5752SMark Fasheh * without affecting dest. 261328d5752SMark Fasheh * 262328d5752SMark Fasheh * Both paths should have the same root. Any non-root elements of dest 263328d5752SMark Fasheh * will be freed. 264328d5752SMark Fasheh */ 265328d5752SMark Fasheh static void ocfs2_cp_path(struct ocfs2_path *dest, struct ocfs2_path *src) 266328d5752SMark Fasheh { 267328d5752SMark Fasheh int i; 268328d5752SMark Fasheh 269328d5752SMark Fasheh BUG_ON(path_root_bh(dest) != path_root_bh(src)); 270328d5752SMark Fasheh BUG_ON(path_root_el(dest) != path_root_el(src)); 271328d5752SMark Fasheh 272328d5752SMark Fasheh ocfs2_reinit_path(dest, 1); 273328d5752SMark Fasheh 274328d5752SMark Fasheh for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) { 275328d5752SMark Fasheh dest->p_node[i].bh = src->p_node[i].bh; 276328d5752SMark Fasheh dest->p_node[i].el = src->p_node[i].el; 277328d5752SMark Fasheh 278328d5752SMark Fasheh if (dest->p_node[i].bh) 279328d5752SMark Fasheh get_bh(dest->p_node[i].bh); 280328d5752SMark Fasheh } 281328d5752SMark Fasheh } 282328d5752SMark Fasheh 283328d5752SMark Fasheh /* 284dcd0538fSMark Fasheh * Make the *dest path the same as src and re-initialize src path to 285dcd0538fSMark Fasheh * have a root only. 286dcd0538fSMark Fasheh */ 287dcd0538fSMark Fasheh static void ocfs2_mv_path(struct ocfs2_path *dest, struct ocfs2_path *src) 288dcd0538fSMark Fasheh { 289dcd0538fSMark Fasheh int i; 290dcd0538fSMark Fasheh 291dcd0538fSMark Fasheh BUG_ON(path_root_bh(dest) != path_root_bh(src)); 292dcd0538fSMark Fasheh 293dcd0538fSMark Fasheh for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) { 294dcd0538fSMark Fasheh brelse(dest->p_node[i].bh); 295dcd0538fSMark Fasheh 296dcd0538fSMark Fasheh dest->p_node[i].bh = src->p_node[i].bh; 297dcd0538fSMark Fasheh dest->p_node[i].el = src->p_node[i].el; 298dcd0538fSMark Fasheh 299dcd0538fSMark Fasheh src->p_node[i].bh = NULL; 300dcd0538fSMark Fasheh src->p_node[i].el = NULL; 301dcd0538fSMark Fasheh } 302dcd0538fSMark Fasheh } 303dcd0538fSMark Fasheh 304dcd0538fSMark Fasheh /* 305dcd0538fSMark Fasheh * Insert an extent block at given index. 306dcd0538fSMark Fasheh * 307dcd0538fSMark Fasheh * This will not take an additional reference on eb_bh. 308dcd0538fSMark Fasheh */ 309dcd0538fSMark Fasheh static inline void ocfs2_path_insert_eb(struct ocfs2_path *path, int index, 310dcd0538fSMark Fasheh struct buffer_head *eb_bh) 311dcd0538fSMark Fasheh { 312dcd0538fSMark Fasheh struct ocfs2_extent_block *eb = (struct ocfs2_extent_block *)eb_bh->b_data; 313dcd0538fSMark Fasheh 314dcd0538fSMark Fasheh /* 315dcd0538fSMark Fasheh * Right now, no root bh is an extent block, so this helps 316dcd0538fSMark Fasheh * catch code errors with dinode trees. The assertion can be 317dcd0538fSMark Fasheh * safely removed if we ever need to insert extent block 318dcd0538fSMark Fasheh * structures at the root. 319dcd0538fSMark Fasheh */ 320dcd0538fSMark Fasheh BUG_ON(index == 0); 321dcd0538fSMark Fasheh 322dcd0538fSMark Fasheh path->p_node[index].bh = eb_bh; 323dcd0538fSMark Fasheh path->p_node[index].el = &eb->h_list; 324dcd0538fSMark Fasheh } 325dcd0538fSMark Fasheh 326dcd0538fSMark Fasheh static struct ocfs2_path *ocfs2_new_path(struct buffer_head *root_bh, 327dcd0538fSMark Fasheh struct ocfs2_extent_list *root_el) 328dcd0538fSMark Fasheh { 329dcd0538fSMark Fasheh struct ocfs2_path *path; 330dcd0538fSMark Fasheh 331dcd0538fSMark Fasheh BUG_ON(le16_to_cpu(root_el->l_tree_depth) >= OCFS2_MAX_PATH_DEPTH); 332dcd0538fSMark Fasheh 333dcd0538fSMark Fasheh path = kzalloc(sizeof(*path), GFP_NOFS); 334dcd0538fSMark Fasheh if (path) { 335dcd0538fSMark Fasheh path->p_tree_depth = le16_to_cpu(root_el->l_tree_depth); 336dcd0538fSMark Fasheh get_bh(root_bh); 337dcd0538fSMark Fasheh path_root_bh(path) = root_bh; 338dcd0538fSMark Fasheh path_root_el(path) = root_el; 339dcd0538fSMark Fasheh } 340dcd0538fSMark Fasheh 341dcd0538fSMark Fasheh return path; 342dcd0538fSMark Fasheh } 343dcd0538fSMark Fasheh 344dcd0538fSMark Fasheh /* 345dcd0538fSMark Fasheh * Convenience function to journal all components in a path. 346dcd0538fSMark Fasheh */ 347dcd0538fSMark Fasheh static int ocfs2_journal_access_path(struct inode *inode, handle_t *handle, 348dcd0538fSMark Fasheh struct ocfs2_path *path) 349dcd0538fSMark Fasheh { 350dcd0538fSMark Fasheh int i, ret = 0; 351dcd0538fSMark Fasheh 352dcd0538fSMark Fasheh if (!path) 353dcd0538fSMark Fasheh goto out; 354dcd0538fSMark Fasheh 355dcd0538fSMark Fasheh for(i = 0; i < path_num_items(path); i++) { 356dcd0538fSMark Fasheh ret = ocfs2_journal_access(handle, inode, path->p_node[i].bh, 357dcd0538fSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 358dcd0538fSMark Fasheh if (ret < 0) { 359dcd0538fSMark Fasheh mlog_errno(ret); 360dcd0538fSMark Fasheh goto out; 361dcd0538fSMark Fasheh } 362dcd0538fSMark Fasheh } 363dcd0538fSMark Fasheh 364dcd0538fSMark Fasheh out: 365dcd0538fSMark Fasheh return ret; 366dcd0538fSMark Fasheh } 367dcd0538fSMark Fasheh 368328d5752SMark Fasheh /* 369328d5752SMark Fasheh * Return the index of the extent record which contains cluster #v_cluster. 370328d5752SMark Fasheh * -1 is returned if it was not found. 371328d5752SMark Fasheh * 372328d5752SMark Fasheh * Should work fine on interior and exterior nodes. 373328d5752SMark Fasheh */ 374328d5752SMark Fasheh int ocfs2_search_extent_list(struct ocfs2_extent_list *el, u32 v_cluster) 375328d5752SMark Fasheh { 376328d5752SMark Fasheh int ret = -1; 377328d5752SMark Fasheh int i; 378328d5752SMark Fasheh struct ocfs2_extent_rec *rec; 379328d5752SMark Fasheh u32 rec_end, rec_start, clusters; 380328d5752SMark Fasheh 381328d5752SMark Fasheh for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) { 382328d5752SMark Fasheh rec = &el->l_recs[i]; 383328d5752SMark Fasheh 384328d5752SMark Fasheh rec_start = le32_to_cpu(rec->e_cpos); 385328d5752SMark Fasheh clusters = ocfs2_rec_clusters(el, rec); 386328d5752SMark Fasheh 387328d5752SMark Fasheh rec_end = rec_start + clusters; 388328d5752SMark Fasheh 389328d5752SMark Fasheh if (v_cluster >= rec_start && v_cluster < rec_end) { 390328d5752SMark Fasheh ret = i; 391328d5752SMark Fasheh break; 392328d5752SMark Fasheh } 393328d5752SMark Fasheh } 394328d5752SMark Fasheh 395328d5752SMark Fasheh return ret; 396328d5752SMark Fasheh } 397328d5752SMark Fasheh 398dcd0538fSMark Fasheh enum ocfs2_contig_type { 399dcd0538fSMark Fasheh CONTIG_NONE = 0, 400dcd0538fSMark Fasheh CONTIG_LEFT, 401328d5752SMark Fasheh CONTIG_RIGHT, 402328d5752SMark Fasheh CONTIG_LEFTRIGHT, 403dcd0538fSMark Fasheh }; 404dcd0538fSMark Fasheh 405e48edee2SMark Fasheh 406e48edee2SMark Fasheh /* 407e48edee2SMark Fasheh * NOTE: ocfs2_block_extent_contig(), ocfs2_extents_adjacent() and 408e48edee2SMark Fasheh * ocfs2_extent_contig only work properly against leaf nodes! 409e48edee2SMark Fasheh */ 410dcd0538fSMark Fasheh static int ocfs2_block_extent_contig(struct super_block *sb, 411ccd979bdSMark Fasheh struct ocfs2_extent_rec *ext, 412ccd979bdSMark Fasheh u64 blkno) 413ccd979bdSMark Fasheh { 414e48edee2SMark Fasheh u64 blk_end = le64_to_cpu(ext->e_blkno); 415e48edee2SMark Fasheh 416e48edee2SMark Fasheh blk_end += ocfs2_clusters_to_blocks(sb, 417e48edee2SMark Fasheh le16_to_cpu(ext->e_leaf_clusters)); 418e48edee2SMark Fasheh 419e48edee2SMark Fasheh return blkno == blk_end; 420ccd979bdSMark Fasheh } 421ccd979bdSMark Fasheh 422dcd0538fSMark Fasheh static int ocfs2_extents_adjacent(struct ocfs2_extent_rec *left, 423dcd0538fSMark Fasheh struct ocfs2_extent_rec *right) 424dcd0538fSMark Fasheh { 425e48edee2SMark Fasheh u32 left_range; 426e48edee2SMark Fasheh 427e48edee2SMark Fasheh left_range = le32_to_cpu(left->e_cpos) + 428e48edee2SMark Fasheh le16_to_cpu(left->e_leaf_clusters); 429e48edee2SMark Fasheh 430e48edee2SMark Fasheh return (left_range == le32_to_cpu(right->e_cpos)); 431dcd0538fSMark Fasheh } 432dcd0538fSMark Fasheh 433dcd0538fSMark Fasheh static enum ocfs2_contig_type 434dcd0538fSMark Fasheh ocfs2_extent_contig(struct inode *inode, 435dcd0538fSMark Fasheh struct ocfs2_extent_rec *ext, 436dcd0538fSMark Fasheh struct ocfs2_extent_rec *insert_rec) 437dcd0538fSMark Fasheh { 438dcd0538fSMark Fasheh u64 blkno = le64_to_cpu(insert_rec->e_blkno); 439dcd0538fSMark Fasheh 440328d5752SMark Fasheh /* 441328d5752SMark Fasheh * Refuse to coalesce extent records with different flag 442328d5752SMark Fasheh * fields - we don't want to mix unwritten extents with user 443328d5752SMark Fasheh * data. 444328d5752SMark Fasheh */ 445328d5752SMark Fasheh if (ext->e_flags != insert_rec->e_flags) 446328d5752SMark Fasheh return CONTIG_NONE; 447328d5752SMark Fasheh 448dcd0538fSMark Fasheh if (ocfs2_extents_adjacent(ext, insert_rec) && 449dcd0538fSMark Fasheh ocfs2_block_extent_contig(inode->i_sb, ext, blkno)) 450dcd0538fSMark Fasheh return CONTIG_RIGHT; 451dcd0538fSMark Fasheh 452dcd0538fSMark Fasheh blkno = le64_to_cpu(ext->e_blkno); 453dcd0538fSMark Fasheh if (ocfs2_extents_adjacent(insert_rec, ext) && 454dcd0538fSMark Fasheh ocfs2_block_extent_contig(inode->i_sb, insert_rec, blkno)) 455dcd0538fSMark Fasheh return CONTIG_LEFT; 456dcd0538fSMark Fasheh 457dcd0538fSMark Fasheh return CONTIG_NONE; 458dcd0538fSMark Fasheh } 459dcd0538fSMark Fasheh 460dcd0538fSMark Fasheh /* 461dcd0538fSMark Fasheh * NOTE: We can have pretty much any combination of contiguousness and 462dcd0538fSMark Fasheh * appending. 463dcd0538fSMark Fasheh * 464dcd0538fSMark Fasheh * The usefulness of APPEND_TAIL is more in that it lets us know that 465dcd0538fSMark Fasheh * we'll have to update the path to that leaf. 466dcd0538fSMark Fasheh */ 467dcd0538fSMark Fasheh enum ocfs2_append_type { 468dcd0538fSMark Fasheh APPEND_NONE = 0, 469dcd0538fSMark Fasheh APPEND_TAIL, 470dcd0538fSMark Fasheh }; 471dcd0538fSMark Fasheh 472328d5752SMark Fasheh enum ocfs2_split_type { 473328d5752SMark Fasheh SPLIT_NONE = 0, 474328d5752SMark Fasheh SPLIT_LEFT, 475328d5752SMark Fasheh SPLIT_RIGHT, 476328d5752SMark Fasheh }; 477328d5752SMark Fasheh 478dcd0538fSMark Fasheh struct ocfs2_insert_type { 479328d5752SMark Fasheh enum ocfs2_split_type ins_split; 480dcd0538fSMark Fasheh enum ocfs2_append_type ins_appending; 481dcd0538fSMark Fasheh enum ocfs2_contig_type ins_contig; 482dcd0538fSMark Fasheh int ins_contig_index; 483dcd0538fSMark Fasheh int ins_tree_depth; 484dcd0538fSMark Fasheh }; 485dcd0538fSMark Fasheh 486328d5752SMark Fasheh struct ocfs2_merge_ctxt { 487328d5752SMark Fasheh enum ocfs2_contig_type c_contig_type; 488328d5752SMark Fasheh int c_has_empty_extent; 489328d5752SMark Fasheh int c_split_covers_rec; 490328d5752SMark Fasheh }; 491328d5752SMark Fasheh 492ccd979bdSMark Fasheh /* 493ccd979bdSMark Fasheh * How many free extents have we got before we need more meta data? 494ccd979bdSMark Fasheh */ 495ccd979bdSMark Fasheh int ocfs2_num_free_extents(struct ocfs2_super *osb, 496ccd979bdSMark Fasheh struct inode *inode, 497*e7d4cb6bSTao Ma struct buffer_head *root_bh, 498*e7d4cb6bSTao Ma enum ocfs2_extent_tree_type type) 499ccd979bdSMark Fasheh { 500ccd979bdSMark Fasheh int retval; 501*e7d4cb6bSTao Ma struct ocfs2_extent_list *el = NULL; 502ccd979bdSMark Fasheh struct ocfs2_extent_block *eb; 503ccd979bdSMark Fasheh struct buffer_head *eb_bh = NULL; 504*e7d4cb6bSTao Ma u64 last_eb_blk = 0; 505ccd979bdSMark Fasheh 506ccd979bdSMark Fasheh mlog_entry_void(); 507ccd979bdSMark Fasheh 508*e7d4cb6bSTao Ma if (type == OCFS2_DINODE_EXTENT) { 509*e7d4cb6bSTao Ma struct ocfs2_dinode *fe = 510*e7d4cb6bSTao Ma (struct ocfs2_dinode *)root_bh->b_data; 511ccd979bdSMark Fasheh if (!OCFS2_IS_VALID_DINODE(fe)) { 512ccd979bdSMark Fasheh OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe); 513ccd979bdSMark Fasheh retval = -EIO; 514ccd979bdSMark Fasheh goto bail; 515ccd979bdSMark Fasheh } 516ccd979bdSMark Fasheh 517*e7d4cb6bSTao Ma if (fe->i_last_eb_blk) 518*e7d4cb6bSTao Ma last_eb_blk = le64_to_cpu(fe->i_last_eb_blk); 519*e7d4cb6bSTao Ma el = &fe->id2.i_list; 520*e7d4cb6bSTao Ma } 521*e7d4cb6bSTao Ma 522*e7d4cb6bSTao Ma if (last_eb_blk) { 523*e7d4cb6bSTao Ma retval = ocfs2_read_block(osb, last_eb_blk, 524ccd979bdSMark Fasheh &eb_bh, OCFS2_BH_CACHED, inode); 525ccd979bdSMark Fasheh if (retval < 0) { 526ccd979bdSMark Fasheh mlog_errno(retval); 527ccd979bdSMark Fasheh goto bail; 528ccd979bdSMark Fasheh } 529ccd979bdSMark Fasheh eb = (struct ocfs2_extent_block *) eb_bh->b_data; 530ccd979bdSMark Fasheh el = &eb->h_list; 531*e7d4cb6bSTao Ma } 532ccd979bdSMark Fasheh 533ccd979bdSMark Fasheh BUG_ON(el->l_tree_depth != 0); 534ccd979bdSMark Fasheh 535ccd979bdSMark Fasheh retval = le16_to_cpu(el->l_count) - le16_to_cpu(el->l_next_free_rec); 536ccd979bdSMark Fasheh bail: 537ccd979bdSMark Fasheh if (eb_bh) 538ccd979bdSMark Fasheh brelse(eb_bh); 539ccd979bdSMark Fasheh 540ccd979bdSMark Fasheh mlog_exit(retval); 541ccd979bdSMark Fasheh return retval; 542ccd979bdSMark Fasheh } 543ccd979bdSMark Fasheh 544ccd979bdSMark Fasheh /* expects array to already be allocated 545ccd979bdSMark Fasheh * 546ccd979bdSMark Fasheh * sets h_signature, h_blkno, h_suballoc_bit, h_suballoc_slot, and 547ccd979bdSMark Fasheh * l_count for you 548ccd979bdSMark Fasheh */ 549ccd979bdSMark Fasheh static int ocfs2_create_new_meta_bhs(struct ocfs2_super *osb, 5501fabe148SMark Fasheh handle_t *handle, 551ccd979bdSMark Fasheh struct inode *inode, 552ccd979bdSMark Fasheh int wanted, 553ccd979bdSMark Fasheh struct ocfs2_alloc_context *meta_ac, 554ccd979bdSMark Fasheh struct buffer_head *bhs[]) 555ccd979bdSMark Fasheh { 556ccd979bdSMark Fasheh int count, status, i; 557ccd979bdSMark Fasheh u16 suballoc_bit_start; 558ccd979bdSMark Fasheh u32 num_got; 559ccd979bdSMark Fasheh u64 first_blkno; 560ccd979bdSMark Fasheh struct ocfs2_extent_block *eb; 561ccd979bdSMark Fasheh 562ccd979bdSMark Fasheh mlog_entry_void(); 563ccd979bdSMark Fasheh 564ccd979bdSMark Fasheh count = 0; 565ccd979bdSMark Fasheh while (count < wanted) { 566ccd979bdSMark Fasheh status = ocfs2_claim_metadata(osb, 567ccd979bdSMark Fasheh handle, 568ccd979bdSMark Fasheh meta_ac, 569ccd979bdSMark Fasheh wanted - count, 570ccd979bdSMark Fasheh &suballoc_bit_start, 571ccd979bdSMark Fasheh &num_got, 572ccd979bdSMark Fasheh &first_blkno); 573ccd979bdSMark Fasheh if (status < 0) { 574ccd979bdSMark Fasheh mlog_errno(status); 575ccd979bdSMark Fasheh goto bail; 576ccd979bdSMark Fasheh } 577ccd979bdSMark Fasheh 578ccd979bdSMark Fasheh for(i = count; i < (num_got + count); i++) { 579ccd979bdSMark Fasheh bhs[i] = sb_getblk(osb->sb, first_blkno); 580ccd979bdSMark Fasheh if (bhs[i] == NULL) { 581ccd979bdSMark Fasheh status = -EIO; 582ccd979bdSMark Fasheh mlog_errno(status); 583ccd979bdSMark Fasheh goto bail; 584ccd979bdSMark Fasheh } 585ccd979bdSMark Fasheh ocfs2_set_new_buffer_uptodate(inode, bhs[i]); 586ccd979bdSMark Fasheh 587ccd979bdSMark Fasheh status = ocfs2_journal_access(handle, inode, bhs[i], 588ccd979bdSMark Fasheh OCFS2_JOURNAL_ACCESS_CREATE); 589ccd979bdSMark Fasheh if (status < 0) { 590ccd979bdSMark Fasheh mlog_errno(status); 591ccd979bdSMark Fasheh goto bail; 592ccd979bdSMark Fasheh } 593ccd979bdSMark Fasheh 594ccd979bdSMark Fasheh memset(bhs[i]->b_data, 0, osb->sb->s_blocksize); 595ccd979bdSMark Fasheh eb = (struct ocfs2_extent_block *) bhs[i]->b_data; 596ccd979bdSMark Fasheh /* Ok, setup the minimal stuff here. */ 597ccd979bdSMark Fasheh strcpy(eb->h_signature, OCFS2_EXTENT_BLOCK_SIGNATURE); 598ccd979bdSMark Fasheh eb->h_blkno = cpu_to_le64(first_blkno); 599ccd979bdSMark Fasheh eb->h_fs_generation = cpu_to_le32(osb->fs_generation); 600ccd979bdSMark Fasheh eb->h_suballoc_slot = cpu_to_le16(osb->slot_num); 601ccd979bdSMark Fasheh eb->h_suballoc_bit = cpu_to_le16(suballoc_bit_start); 602ccd979bdSMark Fasheh eb->h_list.l_count = 603ccd979bdSMark Fasheh cpu_to_le16(ocfs2_extent_recs_per_eb(osb->sb)); 604ccd979bdSMark Fasheh 605ccd979bdSMark Fasheh suballoc_bit_start++; 606ccd979bdSMark Fasheh first_blkno++; 607ccd979bdSMark Fasheh 608ccd979bdSMark Fasheh /* We'll also be dirtied by the caller, so 609ccd979bdSMark Fasheh * this isn't absolutely necessary. */ 610ccd979bdSMark Fasheh status = ocfs2_journal_dirty(handle, bhs[i]); 611ccd979bdSMark Fasheh if (status < 0) { 612ccd979bdSMark Fasheh mlog_errno(status); 613ccd979bdSMark Fasheh goto bail; 614ccd979bdSMark Fasheh } 615ccd979bdSMark Fasheh } 616ccd979bdSMark Fasheh 617ccd979bdSMark Fasheh count += num_got; 618ccd979bdSMark Fasheh } 619ccd979bdSMark Fasheh 620ccd979bdSMark Fasheh status = 0; 621ccd979bdSMark Fasheh bail: 622ccd979bdSMark Fasheh if (status < 0) { 623ccd979bdSMark Fasheh for(i = 0; i < wanted; i++) { 624ccd979bdSMark Fasheh if (bhs[i]) 625ccd979bdSMark Fasheh brelse(bhs[i]); 626ccd979bdSMark Fasheh bhs[i] = NULL; 627ccd979bdSMark Fasheh } 628ccd979bdSMark Fasheh } 629ccd979bdSMark Fasheh mlog_exit(status); 630ccd979bdSMark Fasheh return status; 631ccd979bdSMark Fasheh } 632ccd979bdSMark Fasheh 633ccd979bdSMark Fasheh /* 634dcd0538fSMark Fasheh * Helper function for ocfs2_add_branch() and ocfs2_shift_tree_depth(). 635dcd0538fSMark Fasheh * 636dcd0538fSMark Fasheh * Returns the sum of the rightmost extent rec logical offset and 637dcd0538fSMark Fasheh * cluster count. 638dcd0538fSMark Fasheh * 639dcd0538fSMark Fasheh * ocfs2_add_branch() uses this to determine what logical cluster 640dcd0538fSMark Fasheh * value should be populated into the leftmost new branch records. 641dcd0538fSMark Fasheh * 642dcd0538fSMark Fasheh * ocfs2_shift_tree_depth() uses this to determine the # clusters 643dcd0538fSMark Fasheh * value for the new topmost tree record. 644dcd0538fSMark Fasheh */ 645dcd0538fSMark Fasheh static inline u32 ocfs2_sum_rightmost_rec(struct ocfs2_extent_list *el) 646dcd0538fSMark Fasheh { 647dcd0538fSMark Fasheh int i; 648dcd0538fSMark Fasheh 649dcd0538fSMark Fasheh i = le16_to_cpu(el->l_next_free_rec) - 1; 650dcd0538fSMark Fasheh 651dcd0538fSMark Fasheh return le32_to_cpu(el->l_recs[i].e_cpos) + 652e48edee2SMark Fasheh ocfs2_rec_clusters(el, &el->l_recs[i]); 653dcd0538fSMark Fasheh } 654dcd0538fSMark Fasheh 655dcd0538fSMark Fasheh /* 656ccd979bdSMark Fasheh * Add an entire tree branch to our inode. eb_bh is the extent block 657ccd979bdSMark Fasheh * to start at, if we don't want to start the branch at the dinode 658ccd979bdSMark Fasheh * structure. 659ccd979bdSMark Fasheh * 660ccd979bdSMark Fasheh * last_eb_bh is required as we have to update it's next_leaf pointer 661ccd979bdSMark Fasheh * for the new last extent block. 662ccd979bdSMark Fasheh * 663ccd979bdSMark Fasheh * the new branch will be 'empty' in the sense that every block will 664e48edee2SMark Fasheh * contain a single record with cluster count == 0. 665ccd979bdSMark Fasheh */ 666ccd979bdSMark Fasheh static int ocfs2_add_branch(struct ocfs2_super *osb, 6671fabe148SMark Fasheh handle_t *handle, 668ccd979bdSMark Fasheh struct inode *inode, 669*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 670ccd979bdSMark Fasheh struct buffer_head *eb_bh, 671328d5752SMark Fasheh struct buffer_head **last_eb_bh, 672ccd979bdSMark Fasheh struct ocfs2_alloc_context *meta_ac) 673ccd979bdSMark Fasheh { 674ccd979bdSMark Fasheh int status, new_blocks, i; 675ccd979bdSMark Fasheh u64 next_blkno, new_last_eb_blk; 676ccd979bdSMark Fasheh struct buffer_head *bh; 677ccd979bdSMark Fasheh struct buffer_head **new_eb_bhs = NULL; 678ccd979bdSMark Fasheh struct ocfs2_extent_block *eb; 679ccd979bdSMark Fasheh struct ocfs2_extent_list *eb_el; 680ccd979bdSMark Fasheh struct ocfs2_extent_list *el; 681dcd0538fSMark Fasheh u32 new_cpos; 682ccd979bdSMark Fasheh 683ccd979bdSMark Fasheh mlog_entry_void(); 684ccd979bdSMark Fasheh 685328d5752SMark Fasheh BUG_ON(!last_eb_bh || !*last_eb_bh); 686ccd979bdSMark Fasheh 687ccd979bdSMark Fasheh if (eb_bh) { 688ccd979bdSMark Fasheh eb = (struct ocfs2_extent_block *) eb_bh->b_data; 689ccd979bdSMark Fasheh el = &eb->h_list; 690ccd979bdSMark Fasheh } else 691*e7d4cb6bSTao Ma el = et->root_el; 692ccd979bdSMark Fasheh 693ccd979bdSMark Fasheh /* we never add a branch to a leaf. */ 694ccd979bdSMark Fasheh BUG_ON(!el->l_tree_depth); 695ccd979bdSMark Fasheh 696ccd979bdSMark Fasheh new_blocks = le16_to_cpu(el->l_tree_depth); 697ccd979bdSMark Fasheh 698ccd979bdSMark Fasheh /* allocate the number of new eb blocks we need */ 699ccd979bdSMark Fasheh new_eb_bhs = kcalloc(new_blocks, sizeof(struct buffer_head *), 700ccd979bdSMark Fasheh GFP_KERNEL); 701ccd979bdSMark Fasheh if (!new_eb_bhs) { 702ccd979bdSMark Fasheh status = -ENOMEM; 703ccd979bdSMark Fasheh mlog_errno(status); 704ccd979bdSMark Fasheh goto bail; 705ccd979bdSMark Fasheh } 706ccd979bdSMark Fasheh 707ccd979bdSMark Fasheh status = ocfs2_create_new_meta_bhs(osb, handle, inode, new_blocks, 708ccd979bdSMark Fasheh meta_ac, new_eb_bhs); 709ccd979bdSMark Fasheh if (status < 0) { 710ccd979bdSMark Fasheh mlog_errno(status); 711ccd979bdSMark Fasheh goto bail; 712ccd979bdSMark Fasheh } 713ccd979bdSMark Fasheh 714328d5752SMark Fasheh eb = (struct ocfs2_extent_block *)(*last_eb_bh)->b_data; 715dcd0538fSMark Fasheh new_cpos = ocfs2_sum_rightmost_rec(&eb->h_list); 716dcd0538fSMark Fasheh 717ccd979bdSMark Fasheh /* Note: new_eb_bhs[new_blocks - 1] is the guy which will be 718ccd979bdSMark Fasheh * linked with the rest of the tree. 719ccd979bdSMark Fasheh * conversly, new_eb_bhs[0] is the new bottommost leaf. 720ccd979bdSMark Fasheh * 721ccd979bdSMark Fasheh * when we leave the loop, new_last_eb_blk will point to the 722ccd979bdSMark Fasheh * newest leaf, and next_blkno will point to the topmost extent 723ccd979bdSMark Fasheh * block. */ 724ccd979bdSMark Fasheh next_blkno = new_last_eb_blk = 0; 725ccd979bdSMark Fasheh for(i = 0; i < new_blocks; i++) { 726ccd979bdSMark Fasheh bh = new_eb_bhs[i]; 727ccd979bdSMark Fasheh eb = (struct ocfs2_extent_block *) bh->b_data; 728ccd979bdSMark Fasheh if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) { 729ccd979bdSMark Fasheh OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb); 730ccd979bdSMark Fasheh status = -EIO; 731ccd979bdSMark Fasheh goto bail; 732ccd979bdSMark Fasheh } 733ccd979bdSMark Fasheh eb_el = &eb->h_list; 734ccd979bdSMark Fasheh 735ccd979bdSMark Fasheh status = ocfs2_journal_access(handle, inode, bh, 736ccd979bdSMark Fasheh OCFS2_JOURNAL_ACCESS_CREATE); 737ccd979bdSMark Fasheh if (status < 0) { 738ccd979bdSMark Fasheh mlog_errno(status); 739ccd979bdSMark Fasheh goto bail; 740ccd979bdSMark Fasheh } 741ccd979bdSMark Fasheh 742ccd979bdSMark Fasheh eb->h_next_leaf_blk = 0; 743ccd979bdSMark Fasheh eb_el->l_tree_depth = cpu_to_le16(i); 744ccd979bdSMark Fasheh eb_el->l_next_free_rec = cpu_to_le16(1); 745dcd0538fSMark Fasheh /* 746dcd0538fSMark Fasheh * This actually counts as an empty extent as 747dcd0538fSMark Fasheh * c_clusters == 0 748dcd0538fSMark Fasheh */ 749dcd0538fSMark Fasheh eb_el->l_recs[0].e_cpos = cpu_to_le32(new_cpos); 750ccd979bdSMark Fasheh eb_el->l_recs[0].e_blkno = cpu_to_le64(next_blkno); 751e48edee2SMark Fasheh /* 752e48edee2SMark Fasheh * eb_el isn't always an interior node, but even leaf 753e48edee2SMark Fasheh * nodes want a zero'd flags and reserved field so 754e48edee2SMark Fasheh * this gets the whole 32 bits regardless of use. 755e48edee2SMark Fasheh */ 756e48edee2SMark Fasheh eb_el->l_recs[0].e_int_clusters = cpu_to_le32(0); 757ccd979bdSMark Fasheh if (!eb_el->l_tree_depth) 758ccd979bdSMark Fasheh new_last_eb_blk = le64_to_cpu(eb->h_blkno); 759ccd979bdSMark Fasheh 760ccd979bdSMark Fasheh status = ocfs2_journal_dirty(handle, bh); 761ccd979bdSMark Fasheh if (status < 0) { 762ccd979bdSMark Fasheh mlog_errno(status); 763ccd979bdSMark Fasheh goto bail; 764ccd979bdSMark Fasheh } 765ccd979bdSMark Fasheh 766ccd979bdSMark Fasheh next_blkno = le64_to_cpu(eb->h_blkno); 767ccd979bdSMark Fasheh } 768ccd979bdSMark Fasheh 769ccd979bdSMark Fasheh /* This is a bit hairy. We want to update up to three blocks 770ccd979bdSMark Fasheh * here without leaving any of them in an inconsistent state 771ccd979bdSMark Fasheh * in case of error. We don't have to worry about 772ccd979bdSMark Fasheh * journal_dirty erroring as it won't unless we've aborted the 773ccd979bdSMark Fasheh * handle (in which case we would never be here) so reserving 774ccd979bdSMark Fasheh * the write with journal_access is all we need to do. */ 775328d5752SMark Fasheh status = ocfs2_journal_access(handle, inode, *last_eb_bh, 776ccd979bdSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 777ccd979bdSMark Fasheh if (status < 0) { 778ccd979bdSMark Fasheh mlog_errno(status); 779ccd979bdSMark Fasheh goto bail; 780ccd979bdSMark Fasheh } 781*e7d4cb6bSTao Ma status = ocfs2_journal_access(handle, inode, et->root_bh, 782ccd979bdSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 783ccd979bdSMark Fasheh if (status < 0) { 784ccd979bdSMark Fasheh mlog_errno(status); 785ccd979bdSMark Fasheh goto bail; 786ccd979bdSMark Fasheh } 787ccd979bdSMark Fasheh if (eb_bh) { 788ccd979bdSMark Fasheh status = ocfs2_journal_access(handle, inode, eb_bh, 789ccd979bdSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 790ccd979bdSMark Fasheh if (status < 0) { 791ccd979bdSMark Fasheh mlog_errno(status); 792ccd979bdSMark Fasheh goto bail; 793ccd979bdSMark Fasheh } 794ccd979bdSMark Fasheh } 795ccd979bdSMark Fasheh 796ccd979bdSMark Fasheh /* Link the new branch into the rest of the tree (el will 797*e7d4cb6bSTao Ma * either be on the root_bh, or the extent block passed in. */ 798ccd979bdSMark Fasheh i = le16_to_cpu(el->l_next_free_rec); 799ccd979bdSMark Fasheh el->l_recs[i].e_blkno = cpu_to_le64(next_blkno); 800dcd0538fSMark Fasheh el->l_recs[i].e_cpos = cpu_to_le32(new_cpos); 801e48edee2SMark Fasheh el->l_recs[i].e_int_clusters = 0; 802ccd979bdSMark Fasheh le16_add_cpu(&el->l_next_free_rec, 1); 803ccd979bdSMark Fasheh 804ccd979bdSMark Fasheh /* fe needs a new last extent block pointer, as does the 805ccd979bdSMark Fasheh * next_leaf on the previously last-extent-block. */ 806*e7d4cb6bSTao Ma ocfs2_set_last_eb_blk(et, new_last_eb_blk); 807ccd979bdSMark Fasheh 808328d5752SMark Fasheh eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data; 809ccd979bdSMark Fasheh eb->h_next_leaf_blk = cpu_to_le64(new_last_eb_blk); 810ccd979bdSMark Fasheh 811328d5752SMark Fasheh status = ocfs2_journal_dirty(handle, *last_eb_bh); 812ccd979bdSMark Fasheh if (status < 0) 813ccd979bdSMark Fasheh mlog_errno(status); 814*e7d4cb6bSTao Ma status = ocfs2_journal_dirty(handle, et->root_bh); 815ccd979bdSMark Fasheh if (status < 0) 816ccd979bdSMark Fasheh mlog_errno(status); 817ccd979bdSMark Fasheh if (eb_bh) { 818ccd979bdSMark Fasheh status = ocfs2_journal_dirty(handle, eb_bh); 819ccd979bdSMark Fasheh if (status < 0) 820ccd979bdSMark Fasheh mlog_errno(status); 821ccd979bdSMark Fasheh } 822ccd979bdSMark Fasheh 823328d5752SMark Fasheh /* 824328d5752SMark Fasheh * Some callers want to track the rightmost leaf so pass it 825328d5752SMark Fasheh * back here. 826328d5752SMark Fasheh */ 827328d5752SMark Fasheh brelse(*last_eb_bh); 828328d5752SMark Fasheh get_bh(new_eb_bhs[0]); 829328d5752SMark Fasheh *last_eb_bh = new_eb_bhs[0]; 830328d5752SMark Fasheh 831ccd979bdSMark Fasheh status = 0; 832ccd979bdSMark Fasheh bail: 833ccd979bdSMark Fasheh if (new_eb_bhs) { 834ccd979bdSMark Fasheh for (i = 0; i < new_blocks; i++) 835ccd979bdSMark Fasheh if (new_eb_bhs[i]) 836ccd979bdSMark Fasheh brelse(new_eb_bhs[i]); 837ccd979bdSMark Fasheh kfree(new_eb_bhs); 838ccd979bdSMark Fasheh } 839ccd979bdSMark Fasheh 840ccd979bdSMark Fasheh mlog_exit(status); 841ccd979bdSMark Fasheh return status; 842ccd979bdSMark Fasheh } 843ccd979bdSMark Fasheh 844ccd979bdSMark Fasheh /* 845ccd979bdSMark Fasheh * adds another level to the allocation tree. 846ccd979bdSMark Fasheh * returns back the new extent block so you can add a branch to it 847ccd979bdSMark Fasheh * after this call. 848ccd979bdSMark Fasheh */ 849ccd979bdSMark Fasheh static int ocfs2_shift_tree_depth(struct ocfs2_super *osb, 8501fabe148SMark Fasheh handle_t *handle, 851ccd979bdSMark Fasheh struct inode *inode, 852*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 853ccd979bdSMark Fasheh struct ocfs2_alloc_context *meta_ac, 854ccd979bdSMark Fasheh struct buffer_head **ret_new_eb_bh) 855ccd979bdSMark Fasheh { 856ccd979bdSMark Fasheh int status, i; 857dcd0538fSMark Fasheh u32 new_clusters; 858ccd979bdSMark Fasheh struct buffer_head *new_eb_bh = NULL; 859ccd979bdSMark Fasheh struct ocfs2_extent_block *eb; 860*e7d4cb6bSTao Ma struct ocfs2_extent_list *root_el; 861ccd979bdSMark Fasheh struct ocfs2_extent_list *eb_el; 862ccd979bdSMark Fasheh 863ccd979bdSMark Fasheh mlog_entry_void(); 864ccd979bdSMark Fasheh 865ccd979bdSMark Fasheh status = ocfs2_create_new_meta_bhs(osb, handle, inode, 1, meta_ac, 866ccd979bdSMark Fasheh &new_eb_bh); 867ccd979bdSMark Fasheh if (status < 0) { 868ccd979bdSMark Fasheh mlog_errno(status); 869ccd979bdSMark Fasheh goto bail; 870ccd979bdSMark Fasheh } 871ccd979bdSMark Fasheh 872ccd979bdSMark Fasheh eb = (struct ocfs2_extent_block *) new_eb_bh->b_data; 873ccd979bdSMark Fasheh if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) { 874ccd979bdSMark Fasheh OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb); 875ccd979bdSMark Fasheh status = -EIO; 876ccd979bdSMark Fasheh goto bail; 877ccd979bdSMark Fasheh } 878ccd979bdSMark Fasheh 879ccd979bdSMark Fasheh eb_el = &eb->h_list; 880*e7d4cb6bSTao Ma root_el = et->root_el; 881ccd979bdSMark Fasheh 882ccd979bdSMark Fasheh status = ocfs2_journal_access(handle, inode, new_eb_bh, 883ccd979bdSMark Fasheh OCFS2_JOURNAL_ACCESS_CREATE); 884ccd979bdSMark Fasheh if (status < 0) { 885ccd979bdSMark Fasheh mlog_errno(status); 886ccd979bdSMark Fasheh goto bail; 887ccd979bdSMark Fasheh } 888ccd979bdSMark Fasheh 889*e7d4cb6bSTao Ma /* copy the root extent list data into the new extent block */ 890*e7d4cb6bSTao Ma eb_el->l_tree_depth = root_el->l_tree_depth; 891*e7d4cb6bSTao Ma eb_el->l_next_free_rec = root_el->l_next_free_rec; 892*e7d4cb6bSTao Ma for (i = 0; i < le16_to_cpu(root_el->l_next_free_rec); i++) 893*e7d4cb6bSTao Ma eb_el->l_recs[i] = root_el->l_recs[i]; 894ccd979bdSMark Fasheh 895ccd979bdSMark Fasheh status = ocfs2_journal_dirty(handle, new_eb_bh); 896ccd979bdSMark Fasheh if (status < 0) { 897ccd979bdSMark Fasheh mlog_errno(status); 898ccd979bdSMark Fasheh goto bail; 899ccd979bdSMark Fasheh } 900ccd979bdSMark Fasheh 901*e7d4cb6bSTao Ma status = ocfs2_journal_access(handle, inode, et->root_bh, 902ccd979bdSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 903ccd979bdSMark Fasheh if (status < 0) { 904ccd979bdSMark Fasheh mlog_errno(status); 905ccd979bdSMark Fasheh goto bail; 906ccd979bdSMark Fasheh } 907ccd979bdSMark Fasheh 908dcd0538fSMark Fasheh new_clusters = ocfs2_sum_rightmost_rec(eb_el); 909dcd0538fSMark Fasheh 910*e7d4cb6bSTao Ma /* update root_bh now */ 911*e7d4cb6bSTao Ma le16_add_cpu(&root_el->l_tree_depth, 1); 912*e7d4cb6bSTao Ma root_el->l_recs[0].e_cpos = 0; 913*e7d4cb6bSTao Ma root_el->l_recs[0].e_blkno = eb->h_blkno; 914*e7d4cb6bSTao Ma root_el->l_recs[0].e_int_clusters = cpu_to_le32(new_clusters); 915*e7d4cb6bSTao Ma for (i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++) 916*e7d4cb6bSTao Ma memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec)); 917*e7d4cb6bSTao Ma root_el->l_next_free_rec = cpu_to_le16(1); 918ccd979bdSMark Fasheh 919ccd979bdSMark Fasheh /* If this is our 1st tree depth shift, then last_eb_blk 920ccd979bdSMark Fasheh * becomes the allocated extent block */ 921*e7d4cb6bSTao Ma if (root_el->l_tree_depth == cpu_to_le16(1)) 922*e7d4cb6bSTao Ma ocfs2_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno)); 923ccd979bdSMark Fasheh 924*e7d4cb6bSTao Ma status = ocfs2_journal_dirty(handle, et->root_bh); 925ccd979bdSMark Fasheh if (status < 0) { 926ccd979bdSMark Fasheh mlog_errno(status); 927ccd979bdSMark Fasheh goto bail; 928ccd979bdSMark Fasheh } 929ccd979bdSMark Fasheh 930ccd979bdSMark Fasheh *ret_new_eb_bh = new_eb_bh; 931ccd979bdSMark Fasheh new_eb_bh = NULL; 932ccd979bdSMark Fasheh status = 0; 933ccd979bdSMark Fasheh bail: 934ccd979bdSMark Fasheh if (new_eb_bh) 935ccd979bdSMark Fasheh brelse(new_eb_bh); 936ccd979bdSMark Fasheh 937ccd979bdSMark Fasheh mlog_exit(status); 938ccd979bdSMark Fasheh return status; 939ccd979bdSMark Fasheh } 940ccd979bdSMark Fasheh 941ccd979bdSMark Fasheh /* 942ccd979bdSMark Fasheh * Should only be called when there is no space left in any of the 943ccd979bdSMark Fasheh * leaf nodes. What we want to do is find the lowest tree depth 944ccd979bdSMark Fasheh * non-leaf extent block with room for new records. There are three 945ccd979bdSMark Fasheh * valid results of this search: 946ccd979bdSMark Fasheh * 947ccd979bdSMark Fasheh * 1) a lowest extent block is found, then we pass it back in 948ccd979bdSMark Fasheh * *lowest_eb_bh and return '0' 949ccd979bdSMark Fasheh * 950*e7d4cb6bSTao Ma * 2) the search fails to find anything, but the root_el has room. We 951ccd979bdSMark Fasheh * pass NULL back in *lowest_eb_bh, but still return '0' 952ccd979bdSMark Fasheh * 953*e7d4cb6bSTao Ma * 3) the search fails to find anything AND the root_el is full, in 954ccd979bdSMark Fasheh * which case we return > 0 955ccd979bdSMark Fasheh * 956ccd979bdSMark Fasheh * return status < 0 indicates an error. 957ccd979bdSMark Fasheh */ 958ccd979bdSMark Fasheh static int ocfs2_find_branch_target(struct ocfs2_super *osb, 959ccd979bdSMark Fasheh struct inode *inode, 960*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 961ccd979bdSMark Fasheh struct buffer_head **target_bh) 962ccd979bdSMark Fasheh { 963ccd979bdSMark Fasheh int status = 0, i; 964ccd979bdSMark Fasheh u64 blkno; 965ccd979bdSMark Fasheh struct ocfs2_extent_block *eb; 966ccd979bdSMark Fasheh struct ocfs2_extent_list *el; 967ccd979bdSMark Fasheh struct buffer_head *bh = NULL; 968ccd979bdSMark Fasheh struct buffer_head *lowest_bh = NULL; 969ccd979bdSMark Fasheh 970ccd979bdSMark Fasheh mlog_entry_void(); 971ccd979bdSMark Fasheh 972ccd979bdSMark Fasheh *target_bh = NULL; 973ccd979bdSMark Fasheh 974*e7d4cb6bSTao Ma el = et->root_el; 975ccd979bdSMark Fasheh 976ccd979bdSMark Fasheh while(le16_to_cpu(el->l_tree_depth) > 1) { 977ccd979bdSMark Fasheh if (le16_to_cpu(el->l_next_free_rec) == 0) { 978b0697053SMark Fasheh ocfs2_error(inode->i_sb, "Dinode %llu has empty " 979ccd979bdSMark Fasheh "extent list (next_free_rec == 0)", 980b0697053SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno); 981ccd979bdSMark Fasheh status = -EIO; 982ccd979bdSMark Fasheh goto bail; 983ccd979bdSMark Fasheh } 984ccd979bdSMark Fasheh i = le16_to_cpu(el->l_next_free_rec) - 1; 985ccd979bdSMark Fasheh blkno = le64_to_cpu(el->l_recs[i].e_blkno); 986ccd979bdSMark Fasheh if (!blkno) { 987b0697053SMark Fasheh ocfs2_error(inode->i_sb, "Dinode %llu has extent " 988ccd979bdSMark Fasheh "list where extent # %d has no physical " 989ccd979bdSMark Fasheh "block start", 990b0697053SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, i); 991ccd979bdSMark Fasheh status = -EIO; 992ccd979bdSMark Fasheh goto bail; 993ccd979bdSMark Fasheh } 994ccd979bdSMark Fasheh 995ccd979bdSMark Fasheh if (bh) { 996ccd979bdSMark Fasheh brelse(bh); 997ccd979bdSMark Fasheh bh = NULL; 998ccd979bdSMark Fasheh } 999ccd979bdSMark Fasheh 1000ccd979bdSMark Fasheh status = ocfs2_read_block(osb, blkno, &bh, OCFS2_BH_CACHED, 1001ccd979bdSMark Fasheh inode); 1002ccd979bdSMark Fasheh if (status < 0) { 1003ccd979bdSMark Fasheh mlog_errno(status); 1004ccd979bdSMark Fasheh goto bail; 1005ccd979bdSMark Fasheh } 1006ccd979bdSMark Fasheh 1007ccd979bdSMark Fasheh eb = (struct ocfs2_extent_block *) bh->b_data; 1008ccd979bdSMark Fasheh if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) { 1009ccd979bdSMark Fasheh OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb); 1010ccd979bdSMark Fasheh status = -EIO; 1011ccd979bdSMark Fasheh goto bail; 1012ccd979bdSMark Fasheh } 1013ccd979bdSMark Fasheh el = &eb->h_list; 1014ccd979bdSMark Fasheh 1015ccd979bdSMark Fasheh if (le16_to_cpu(el->l_next_free_rec) < 1016ccd979bdSMark Fasheh le16_to_cpu(el->l_count)) { 1017ccd979bdSMark Fasheh if (lowest_bh) 1018ccd979bdSMark Fasheh brelse(lowest_bh); 1019ccd979bdSMark Fasheh lowest_bh = bh; 1020ccd979bdSMark Fasheh get_bh(lowest_bh); 1021ccd979bdSMark Fasheh } 1022ccd979bdSMark Fasheh } 1023ccd979bdSMark Fasheh 1024ccd979bdSMark Fasheh /* If we didn't find one and the fe doesn't have any room, 1025ccd979bdSMark Fasheh * then return '1' */ 1026*e7d4cb6bSTao Ma el = et->root_el; 1027*e7d4cb6bSTao Ma if (!lowest_bh && (el->l_next_free_rec == el->l_count)) 1028ccd979bdSMark Fasheh status = 1; 1029ccd979bdSMark Fasheh 1030ccd979bdSMark Fasheh *target_bh = lowest_bh; 1031ccd979bdSMark Fasheh bail: 1032ccd979bdSMark Fasheh if (bh) 1033ccd979bdSMark Fasheh brelse(bh); 1034ccd979bdSMark Fasheh 1035ccd979bdSMark Fasheh mlog_exit(status); 1036ccd979bdSMark Fasheh return status; 1037ccd979bdSMark Fasheh } 1038ccd979bdSMark Fasheh 1039e48edee2SMark Fasheh /* 1040c3afcbb3SMark Fasheh * Grow a b-tree so that it has more records. 1041c3afcbb3SMark Fasheh * 1042c3afcbb3SMark Fasheh * We might shift the tree depth in which case existing paths should 1043c3afcbb3SMark Fasheh * be considered invalid. 1044c3afcbb3SMark Fasheh * 1045c3afcbb3SMark Fasheh * Tree depth after the grow is returned via *final_depth. 1046328d5752SMark Fasheh * 1047328d5752SMark Fasheh * *last_eb_bh will be updated by ocfs2_add_branch(). 1048c3afcbb3SMark Fasheh */ 1049c3afcbb3SMark Fasheh static int ocfs2_grow_tree(struct inode *inode, handle_t *handle, 1050*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, int *final_depth, 1051328d5752SMark Fasheh struct buffer_head **last_eb_bh, 1052c3afcbb3SMark Fasheh struct ocfs2_alloc_context *meta_ac) 1053c3afcbb3SMark Fasheh { 1054c3afcbb3SMark Fasheh int ret, shift; 1055*e7d4cb6bSTao Ma struct ocfs2_extent_list *el = et->root_el; 1056*e7d4cb6bSTao Ma int depth = le16_to_cpu(el->l_tree_depth); 1057c3afcbb3SMark Fasheh struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); 1058c3afcbb3SMark Fasheh struct buffer_head *bh = NULL; 1059c3afcbb3SMark Fasheh 1060c3afcbb3SMark Fasheh BUG_ON(meta_ac == NULL); 1061c3afcbb3SMark Fasheh 1062*e7d4cb6bSTao Ma shift = ocfs2_find_branch_target(osb, inode, et, &bh); 1063c3afcbb3SMark Fasheh if (shift < 0) { 1064c3afcbb3SMark Fasheh ret = shift; 1065c3afcbb3SMark Fasheh mlog_errno(ret); 1066c3afcbb3SMark Fasheh goto out; 1067c3afcbb3SMark Fasheh } 1068c3afcbb3SMark Fasheh 1069c3afcbb3SMark Fasheh /* We traveled all the way to the bottom of the allocation tree 1070c3afcbb3SMark Fasheh * and didn't find room for any more extents - we need to add 1071c3afcbb3SMark Fasheh * another tree level */ 1072c3afcbb3SMark Fasheh if (shift) { 1073c3afcbb3SMark Fasheh BUG_ON(bh); 1074c3afcbb3SMark Fasheh mlog(0, "need to shift tree depth (current = %d)\n", depth); 1075c3afcbb3SMark Fasheh 1076c3afcbb3SMark Fasheh /* ocfs2_shift_tree_depth will return us a buffer with 1077c3afcbb3SMark Fasheh * the new extent block (so we can pass that to 1078c3afcbb3SMark Fasheh * ocfs2_add_branch). */ 1079*e7d4cb6bSTao Ma ret = ocfs2_shift_tree_depth(osb, handle, inode, et, 1080c3afcbb3SMark Fasheh meta_ac, &bh); 1081c3afcbb3SMark Fasheh if (ret < 0) { 1082c3afcbb3SMark Fasheh mlog_errno(ret); 1083c3afcbb3SMark Fasheh goto out; 1084c3afcbb3SMark Fasheh } 1085c3afcbb3SMark Fasheh depth++; 1086328d5752SMark Fasheh if (depth == 1) { 1087328d5752SMark Fasheh /* 1088328d5752SMark Fasheh * Special case: we have room now if we shifted from 1089328d5752SMark Fasheh * tree_depth 0, so no more work needs to be done. 1090328d5752SMark Fasheh * 1091328d5752SMark Fasheh * We won't be calling add_branch, so pass 1092328d5752SMark Fasheh * back *last_eb_bh as the new leaf. At depth 1093328d5752SMark Fasheh * zero, it should always be null so there's 1094328d5752SMark Fasheh * no reason to brelse. 1095328d5752SMark Fasheh */ 1096328d5752SMark Fasheh BUG_ON(*last_eb_bh); 1097328d5752SMark Fasheh get_bh(bh); 1098328d5752SMark Fasheh *last_eb_bh = bh; 1099c3afcbb3SMark Fasheh goto out; 1100c3afcbb3SMark Fasheh } 1101328d5752SMark Fasheh } 1102c3afcbb3SMark Fasheh 1103c3afcbb3SMark Fasheh /* call ocfs2_add_branch to add the final part of the tree with 1104c3afcbb3SMark Fasheh * the new data. */ 1105c3afcbb3SMark Fasheh mlog(0, "add branch. bh = %p\n", bh); 1106*e7d4cb6bSTao Ma ret = ocfs2_add_branch(osb, handle, inode, et, bh, last_eb_bh, 1107c3afcbb3SMark Fasheh meta_ac); 1108c3afcbb3SMark Fasheh if (ret < 0) { 1109c3afcbb3SMark Fasheh mlog_errno(ret); 1110c3afcbb3SMark Fasheh goto out; 1111c3afcbb3SMark Fasheh } 1112c3afcbb3SMark Fasheh 1113c3afcbb3SMark Fasheh out: 1114c3afcbb3SMark Fasheh if (final_depth) 1115c3afcbb3SMark Fasheh *final_depth = depth; 1116c3afcbb3SMark Fasheh brelse(bh); 1117c3afcbb3SMark Fasheh return ret; 1118c3afcbb3SMark Fasheh } 1119c3afcbb3SMark Fasheh 1120c3afcbb3SMark Fasheh /* 1121dcd0538fSMark Fasheh * This function will discard the rightmost extent record. 1122dcd0538fSMark Fasheh */ 1123dcd0538fSMark Fasheh static void ocfs2_shift_records_right(struct ocfs2_extent_list *el) 1124dcd0538fSMark Fasheh { 1125dcd0538fSMark Fasheh int next_free = le16_to_cpu(el->l_next_free_rec); 1126dcd0538fSMark Fasheh int count = le16_to_cpu(el->l_count); 1127dcd0538fSMark Fasheh unsigned int num_bytes; 1128dcd0538fSMark Fasheh 1129dcd0538fSMark Fasheh BUG_ON(!next_free); 1130dcd0538fSMark Fasheh /* This will cause us to go off the end of our extent list. */ 1131dcd0538fSMark Fasheh BUG_ON(next_free >= count); 1132dcd0538fSMark Fasheh 1133dcd0538fSMark Fasheh num_bytes = sizeof(struct ocfs2_extent_rec) * next_free; 1134dcd0538fSMark Fasheh 1135dcd0538fSMark Fasheh memmove(&el->l_recs[1], &el->l_recs[0], num_bytes); 1136dcd0538fSMark Fasheh } 1137dcd0538fSMark Fasheh 1138dcd0538fSMark Fasheh static void ocfs2_rotate_leaf(struct ocfs2_extent_list *el, 1139dcd0538fSMark Fasheh struct ocfs2_extent_rec *insert_rec) 1140dcd0538fSMark Fasheh { 1141dcd0538fSMark Fasheh int i, insert_index, next_free, has_empty, num_bytes; 1142dcd0538fSMark Fasheh u32 insert_cpos = le32_to_cpu(insert_rec->e_cpos); 1143dcd0538fSMark Fasheh struct ocfs2_extent_rec *rec; 1144dcd0538fSMark Fasheh 1145dcd0538fSMark Fasheh next_free = le16_to_cpu(el->l_next_free_rec); 1146dcd0538fSMark Fasheh has_empty = ocfs2_is_empty_extent(&el->l_recs[0]); 1147dcd0538fSMark Fasheh 1148dcd0538fSMark Fasheh BUG_ON(!next_free); 1149dcd0538fSMark Fasheh 1150dcd0538fSMark Fasheh /* The tree code before us didn't allow enough room in the leaf. */ 1151b1f3550fSJulia Lawall BUG_ON(el->l_next_free_rec == el->l_count && !has_empty); 1152dcd0538fSMark Fasheh 1153dcd0538fSMark Fasheh /* 1154dcd0538fSMark Fasheh * The easiest way to approach this is to just remove the 1155dcd0538fSMark Fasheh * empty extent and temporarily decrement next_free. 1156dcd0538fSMark Fasheh */ 1157dcd0538fSMark Fasheh if (has_empty) { 1158dcd0538fSMark Fasheh /* 1159dcd0538fSMark Fasheh * If next_free was 1 (only an empty extent), this 1160dcd0538fSMark Fasheh * loop won't execute, which is fine. We still want 1161dcd0538fSMark Fasheh * the decrement above to happen. 1162dcd0538fSMark Fasheh */ 1163dcd0538fSMark Fasheh for(i = 0; i < (next_free - 1); i++) 1164dcd0538fSMark Fasheh el->l_recs[i] = el->l_recs[i+1]; 1165dcd0538fSMark Fasheh 1166dcd0538fSMark Fasheh next_free--; 1167dcd0538fSMark Fasheh } 1168dcd0538fSMark Fasheh 1169dcd0538fSMark Fasheh /* 1170dcd0538fSMark Fasheh * Figure out what the new record index should be. 1171dcd0538fSMark Fasheh */ 1172dcd0538fSMark Fasheh for(i = 0; i < next_free; i++) { 1173dcd0538fSMark Fasheh rec = &el->l_recs[i]; 1174dcd0538fSMark Fasheh 1175dcd0538fSMark Fasheh if (insert_cpos < le32_to_cpu(rec->e_cpos)) 1176dcd0538fSMark Fasheh break; 1177dcd0538fSMark Fasheh } 1178dcd0538fSMark Fasheh insert_index = i; 1179dcd0538fSMark Fasheh 1180dcd0538fSMark Fasheh mlog(0, "ins %u: index %d, has_empty %d, next_free %d, count %d\n", 1181dcd0538fSMark Fasheh insert_cpos, insert_index, has_empty, next_free, le16_to_cpu(el->l_count)); 1182dcd0538fSMark Fasheh 1183dcd0538fSMark Fasheh BUG_ON(insert_index < 0); 1184dcd0538fSMark Fasheh BUG_ON(insert_index >= le16_to_cpu(el->l_count)); 1185dcd0538fSMark Fasheh BUG_ON(insert_index > next_free); 1186dcd0538fSMark Fasheh 1187dcd0538fSMark Fasheh /* 1188dcd0538fSMark Fasheh * No need to memmove if we're just adding to the tail. 1189dcd0538fSMark Fasheh */ 1190dcd0538fSMark Fasheh if (insert_index != next_free) { 1191dcd0538fSMark Fasheh BUG_ON(next_free >= le16_to_cpu(el->l_count)); 1192dcd0538fSMark Fasheh 1193dcd0538fSMark Fasheh num_bytes = next_free - insert_index; 1194dcd0538fSMark Fasheh num_bytes *= sizeof(struct ocfs2_extent_rec); 1195dcd0538fSMark Fasheh memmove(&el->l_recs[insert_index + 1], 1196dcd0538fSMark Fasheh &el->l_recs[insert_index], 1197dcd0538fSMark Fasheh num_bytes); 1198dcd0538fSMark Fasheh } 1199dcd0538fSMark Fasheh 1200dcd0538fSMark Fasheh /* 1201dcd0538fSMark Fasheh * Either we had an empty extent, and need to re-increment or 1202dcd0538fSMark Fasheh * there was no empty extent on a non full rightmost leaf node, 1203dcd0538fSMark Fasheh * in which case we still need to increment. 1204dcd0538fSMark Fasheh */ 1205dcd0538fSMark Fasheh next_free++; 1206dcd0538fSMark Fasheh el->l_next_free_rec = cpu_to_le16(next_free); 1207dcd0538fSMark Fasheh /* 1208dcd0538fSMark Fasheh * Make sure none of the math above just messed up our tree. 1209dcd0538fSMark Fasheh */ 1210dcd0538fSMark Fasheh BUG_ON(le16_to_cpu(el->l_next_free_rec) > le16_to_cpu(el->l_count)); 1211dcd0538fSMark Fasheh 1212dcd0538fSMark Fasheh el->l_recs[insert_index] = *insert_rec; 1213dcd0538fSMark Fasheh 1214dcd0538fSMark Fasheh } 1215dcd0538fSMark Fasheh 1216328d5752SMark Fasheh static void ocfs2_remove_empty_extent(struct ocfs2_extent_list *el) 1217328d5752SMark Fasheh { 1218328d5752SMark Fasheh int size, num_recs = le16_to_cpu(el->l_next_free_rec); 1219328d5752SMark Fasheh 1220328d5752SMark Fasheh BUG_ON(num_recs == 0); 1221328d5752SMark Fasheh 1222328d5752SMark Fasheh if (ocfs2_is_empty_extent(&el->l_recs[0])) { 1223328d5752SMark Fasheh num_recs--; 1224328d5752SMark Fasheh size = num_recs * sizeof(struct ocfs2_extent_rec); 1225328d5752SMark Fasheh memmove(&el->l_recs[0], &el->l_recs[1], size); 1226328d5752SMark Fasheh memset(&el->l_recs[num_recs], 0, 1227328d5752SMark Fasheh sizeof(struct ocfs2_extent_rec)); 1228328d5752SMark Fasheh el->l_next_free_rec = cpu_to_le16(num_recs); 1229328d5752SMark Fasheh } 1230328d5752SMark Fasheh } 1231328d5752SMark Fasheh 1232dcd0538fSMark Fasheh /* 1233dcd0538fSMark Fasheh * Create an empty extent record . 1234dcd0538fSMark Fasheh * 1235dcd0538fSMark Fasheh * l_next_free_rec may be updated. 1236dcd0538fSMark Fasheh * 1237dcd0538fSMark Fasheh * If an empty extent already exists do nothing. 1238dcd0538fSMark Fasheh */ 1239dcd0538fSMark Fasheh static void ocfs2_create_empty_extent(struct ocfs2_extent_list *el) 1240dcd0538fSMark Fasheh { 1241dcd0538fSMark Fasheh int next_free = le16_to_cpu(el->l_next_free_rec); 1242dcd0538fSMark Fasheh 1243e48edee2SMark Fasheh BUG_ON(le16_to_cpu(el->l_tree_depth) != 0); 1244e48edee2SMark Fasheh 1245dcd0538fSMark Fasheh if (next_free == 0) 1246dcd0538fSMark Fasheh goto set_and_inc; 1247dcd0538fSMark Fasheh 1248dcd0538fSMark Fasheh if (ocfs2_is_empty_extent(&el->l_recs[0])) 1249dcd0538fSMark Fasheh return; 1250dcd0538fSMark Fasheh 1251dcd0538fSMark Fasheh mlog_bug_on_msg(el->l_count == el->l_next_free_rec, 1252dcd0538fSMark Fasheh "Asked to create an empty extent in a full list:\n" 1253dcd0538fSMark Fasheh "count = %u, tree depth = %u", 1254dcd0538fSMark Fasheh le16_to_cpu(el->l_count), 1255dcd0538fSMark Fasheh le16_to_cpu(el->l_tree_depth)); 1256dcd0538fSMark Fasheh 1257dcd0538fSMark Fasheh ocfs2_shift_records_right(el); 1258dcd0538fSMark Fasheh 1259dcd0538fSMark Fasheh set_and_inc: 1260dcd0538fSMark Fasheh le16_add_cpu(&el->l_next_free_rec, 1); 1261dcd0538fSMark Fasheh memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec)); 1262dcd0538fSMark Fasheh } 1263dcd0538fSMark Fasheh 1264dcd0538fSMark Fasheh /* 1265dcd0538fSMark Fasheh * For a rotation which involves two leaf nodes, the "root node" is 1266dcd0538fSMark Fasheh * the lowest level tree node which contains a path to both leafs. This 1267dcd0538fSMark Fasheh * resulting set of information can be used to form a complete "subtree" 1268dcd0538fSMark Fasheh * 1269dcd0538fSMark Fasheh * This function is passed two full paths from the dinode down to a 1270dcd0538fSMark Fasheh * pair of adjacent leaves. It's task is to figure out which path 1271dcd0538fSMark Fasheh * index contains the subtree root - this can be the root index itself 1272dcd0538fSMark Fasheh * in a worst-case rotation. 1273dcd0538fSMark Fasheh * 1274dcd0538fSMark Fasheh * The array index of the subtree root is passed back. 1275dcd0538fSMark Fasheh */ 1276dcd0538fSMark Fasheh static int ocfs2_find_subtree_root(struct inode *inode, 1277dcd0538fSMark Fasheh struct ocfs2_path *left, 1278dcd0538fSMark Fasheh struct ocfs2_path *right) 1279dcd0538fSMark Fasheh { 1280dcd0538fSMark Fasheh int i = 0; 1281dcd0538fSMark Fasheh 1282dcd0538fSMark Fasheh /* 1283dcd0538fSMark Fasheh * Check that the caller passed in two paths from the same tree. 1284dcd0538fSMark Fasheh */ 1285dcd0538fSMark Fasheh BUG_ON(path_root_bh(left) != path_root_bh(right)); 1286dcd0538fSMark Fasheh 1287dcd0538fSMark Fasheh do { 1288dcd0538fSMark Fasheh i++; 1289dcd0538fSMark Fasheh 1290dcd0538fSMark Fasheh /* 1291dcd0538fSMark Fasheh * The caller didn't pass two adjacent paths. 1292dcd0538fSMark Fasheh */ 1293dcd0538fSMark Fasheh mlog_bug_on_msg(i > left->p_tree_depth, 1294dcd0538fSMark Fasheh "Inode %lu, left depth %u, right depth %u\n" 1295dcd0538fSMark Fasheh "left leaf blk %llu, right leaf blk %llu\n", 1296dcd0538fSMark Fasheh inode->i_ino, left->p_tree_depth, 1297dcd0538fSMark Fasheh right->p_tree_depth, 1298dcd0538fSMark Fasheh (unsigned long long)path_leaf_bh(left)->b_blocknr, 1299dcd0538fSMark Fasheh (unsigned long long)path_leaf_bh(right)->b_blocknr); 1300dcd0538fSMark Fasheh } while (left->p_node[i].bh->b_blocknr == 1301dcd0538fSMark Fasheh right->p_node[i].bh->b_blocknr); 1302dcd0538fSMark Fasheh 1303dcd0538fSMark Fasheh return i - 1; 1304dcd0538fSMark Fasheh } 1305dcd0538fSMark Fasheh 1306dcd0538fSMark Fasheh typedef void (path_insert_t)(void *, struct buffer_head *); 1307dcd0538fSMark Fasheh 1308dcd0538fSMark Fasheh /* 1309dcd0538fSMark Fasheh * Traverse a btree path in search of cpos, starting at root_el. 1310dcd0538fSMark Fasheh * 1311dcd0538fSMark Fasheh * This code can be called with a cpos larger than the tree, in which 1312dcd0538fSMark Fasheh * case it will return the rightmost path. 1313dcd0538fSMark Fasheh */ 1314dcd0538fSMark Fasheh static int __ocfs2_find_path(struct inode *inode, 1315dcd0538fSMark Fasheh struct ocfs2_extent_list *root_el, u32 cpos, 1316dcd0538fSMark Fasheh path_insert_t *func, void *data) 1317dcd0538fSMark Fasheh { 1318dcd0538fSMark Fasheh int i, ret = 0; 1319dcd0538fSMark Fasheh u32 range; 1320dcd0538fSMark Fasheh u64 blkno; 1321dcd0538fSMark Fasheh struct buffer_head *bh = NULL; 1322dcd0538fSMark Fasheh struct ocfs2_extent_block *eb; 1323dcd0538fSMark Fasheh struct ocfs2_extent_list *el; 1324dcd0538fSMark Fasheh struct ocfs2_extent_rec *rec; 1325dcd0538fSMark Fasheh struct ocfs2_inode_info *oi = OCFS2_I(inode); 1326dcd0538fSMark Fasheh 1327dcd0538fSMark Fasheh el = root_el; 1328dcd0538fSMark Fasheh while (el->l_tree_depth) { 1329dcd0538fSMark Fasheh if (le16_to_cpu(el->l_next_free_rec) == 0) { 1330dcd0538fSMark Fasheh ocfs2_error(inode->i_sb, 1331dcd0538fSMark Fasheh "Inode %llu has empty extent list at " 1332dcd0538fSMark Fasheh "depth %u\n", 1333dcd0538fSMark Fasheh (unsigned long long)oi->ip_blkno, 1334dcd0538fSMark Fasheh le16_to_cpu(el->l_tree_depth)); 1335dcd0538fSMark Fasheh ret = -EROFS; 1336dcd0538fSMark Fasheh goto out; 1337dcd0538fSMark Fasheh 1338dcd0538fSMark Fasheh } 1339dcd0538fSMark Fasheh 1340dcd0538fSMark Fasheh for(i = 0; i < le16_to_cpu(el->l_next_free_rec) - 1; i++) { 1341dcd0538fSMark Fasheh rec = &el->l_recs[i]; 1342dcd0538fSMark Fasheh 1343dcd0538fSMark Fasheh /* 1344dcd0538fSMark Fasheh * In the case that cpos is off the allocation 1345dcd0538fSMark Fasheh * tree, this should just wind up returning the 1346dcd0538fSMark Fasheh * rightmost record. 1347dcd0538fSMark Fasheh */ 1348dcd0538fSMark Fasheh range = le32_to_cpu(rec->e_cpos) + 1349e48edee2SMark Fasheh ocfs2_rec_clusters(el, rec); 1350dcd0538fSMark Fasheh if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range) 1351dcd0538fSMark Fasheh break; 1352dcd0538fSMark Fasheh } 1353dcd0538fSMark Fasheh 1354dcd0538fSMark Fasheh blkno = le64_to_cpu(el->l_recs[i].e_blkno); 1355dcd0538fSMark Fasheh if (blkno == 0) { 1356dcd0538fSMark Fasheh ocfs2_error(inode->i_sb, 1357dcd0538fSMark Fasheh "Inode %llu has bad blkno in extent list " 1358dcd0538fSMark Fasheh "at depth %u (index %d)\n", 1359dcd0538fSMark Fasheh (unsigned long long)oi->ip_blkno, 1360dcd0538fSMark Fasheh le16_to_cpu(el->l_tree_depth), i); 1361dcd0538fSMark Fasheh ret = -EROFS; 1362dcd0538fSMark Fasheh goto out; 1363dcd0538fSMark Fasheh } 1364dcd0538fSMark Fasheh 1365dcd0538fSMark Fasheh brelse(bh); 1366dcd0538fSMark Fasheh bh = NULL; 1367dcd0538fSMark Fasheh ret = ocfs2_read_block(OCFS2_SB(inode->i_sb), blkno, 1368dcd0538fSMark Fasheh &bh, OCFS2_BH_CACHED, inode); 1369dcd0538fSMark Fasheh if (ret) { 1370dcd0538fSMark Fasheh mlog_errno(ret); 1371dcd0538fSMark Fasheh goto out; 1372dcd0538fSMark Fasheh } 1373dcd0538fSMark Fasheh 1374dcd0538fSMark Fasheh eb = (struct ocfs2_extent_block *) bh->b_data; 1375dcd0538fSMark Fasheh el = &eb->h_list; 1376dcd0538fSMark Fasheh if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) { 1377dcd0538fSMark Fasheh OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb); 1378dcd0538fSMark Fasheh ret = -EIO; 1379dcd0538fSMark Fasheh goto out; 1380dcd0538fSMark Fasheh } 1381dcd0538fSMark Fasheh 1382dcd0538fSMark Fasheh if (le16_to_cpu(el->l_next_free_rec) > 1383dcd0538fSMark Fasheh le16_to_cpu(el->l_count)) { 1384dcd0538fSMark Fasheh ocfs2_error(inode->i_sb, 1385dcd0538fSMark Fasheh "Inode %llu has bad count in extent list " 1386dcd0538fSMark Fasheh "at block %llu (next free=%u, count=%u)\n", 1387dcd0538fSMark Fasheh (unsigned long long)oi->ip_blkno, 1388dcd0538fSMark Fasheh (unsigned long long)bh->b_blocknr, 1389dcd0538fSMark Fasheh le16_to_cpu(el->l_next_free_rec), 1390dcd0538fSMark Fasheh le16_to_cpu(el->l_count)); 1391dcd0538fSMark Fasheh ret = -EROFS; 1392dcd0538fSMark Fasheh goto out; 1393dcd0538fSMark Fasheh } 1394dcd0538fSMark Fasheh 1395dcd0538fSMark Fasheh if (func) 1396dcd0538fSMark Fasheh func(data, bh); 1397dcd0538fSMark Fasheh } 1398dcd0538fSMark Fasheh 1399dcd0538fSMark Fasheh out: 1400dcd0538fSMark Fasheh /* 1401dcd0538fSMark Fasheh * Catch any trailing bh that the loop didn't handle. 1402dcd0538fSMark Fasheh */ 1403dcd0538fSMark Fasheh brelse(bh); 1404dcd0538fSMark Fasheh 1405dcd0538fSMark Fasheh return ret; 1406dcd0538fSMark Fasheh } 1407dcd0538fSMark Fasheh 1408dcd0538fSMark Fasheh /* 1409dcd0538fSMark Fasheh * Given an initialized path (that is, it has a valid root extent 1410dcd0538fSMark Fasheh * list), this function will traverse the btree in search of the path 1411dcd0538fSMark Fasheh * which would contain cpos. 1412dcd0538fSMark Fasheh * 1413dcd0538fSMark Fasheh * The path traveled is recorded in the path structure. 1414dcd0538fSMark Fasheh * 1415dcd0538fSMark Fasheh * Note that this will not do any comparisons on leaf node extent 1416dcd0538fSMark Fasheh * records, so it will work fine in the case that we just added a tree 1417dcd0538fSMark Fasheh * branch. 1418dcd0538fSMark Fasheh */ 1419dcd0538fSMark Fasheh struct find_path_data { 1420dcd0538fSMark Fasheh int index; 1421dcd0538fSMark Fasheh struct ocfs2_path *path; 1422dcd0538fSMark Fasheh }; 1423dcd0538fSMark Fasheh static void find_path_ins(void *data, struct buffer_head *bh) 1424dcd0538fSMark Fasheh { 1425dcd0538fSMark Fasheh struct find_path_data *fp = data; 1426dcd0538fSMark Fasheh 1427dcd0538fSMark Fasheh get_bh(bh); 1428dcd0538fSMark Fasheh ocfs2_path_insert_eb(fp->path, fp->index, bh); 1429dcd0538fSMark Fasheh fp->index++; 1430dcd0538fSMark Fasheh } 1431dcd0538fSMark Fasheh static int ocfs2_find_path(struct inode *inode, struct ocfs2_path *path, 1432dcd0538fSMark Fasheh u32 cpos) 1433dcd0538fSMark Fasheh { 1434dcd0538fSMark Fasheh struct find_path_data data; 1435dcd0538fSMark Fasheh 1436dcd0538fSMark Fasheh data.index = 1; 1437dcd0538fSMark Fasheh data.path = path; 1438dcd0538fSMark Fasheh return __ocfs2_find_path(inode, path_root_el(path), cpos, 1439dcd0538fSMark Fasheh find_path_ins, &data); 1440dcd0538fSMark Fasheh } 1441dcd0538fSMark Fasheh 1442dcd0538fSMark Fasheh static void find_leaf_ins(void *data, struct buffer_head *bh) 1443dcd0538fSMark Fasheh { 1444dcd0538fSMark Fasheh struct ocfs2_extent_block *eb =(struct ocfs2_extent_block *)bh->b_data; 1445dcd0538fSMark Fasheh struct ocfs2_extent_list *el = &eb->h_list; 1446dcd0538fSMark Fasheh struct buffer_head **ret = data; 1447dcd0538fSMark Fasheh 1448dcd0538fSMark Fasheh /* We want to retain only the leaf block. */ 1449dcd0538fSMark Fasheh if (le16_to_cpu(el->l_tree_depth) == 0) { 1450dcd0538fSMark Fasheh get_bh(bh); 1451dcd0538fSMark Fasheh *ret = bh; 1452dcd0538fSMark Fasheh } 1453dcd0538fSMark Fasheh } 1454dcd0538fSMark Fasheh /* 1455dcd0538fSMark Fasheh * Find the leaf block in the tree which would contain cpos. No 1456dcd0538fSMark Fasheh * checking of the actual leaf is done. 1457dcd0538fSMark Fasheh * 1458dcd0538fSMark Fasheh * Some paths want to call this instead of allocating a path structure 1459dcd0538fSMark Fasheh * and calling ocfs2_find_path(). 1460dcd0538fSMark Fasheh * 1461dcd0538fSMark Fasheh * This function doesn't handle non btree extent lists. 1462dcd0538fSMark Fasheh */ 1463363041a5SMark Fasheh int ocfs2_find_leaf(struct inode *inode, struct ocfs2_extent_list *root_el, 1464363041a5SMark Fasheh u32 cpos, struct buffer_head **leaf_bh) 1465dcd0538fSMark Fasheh { 1466dcd0538fSMark Fasheh int ret; 1467dcd0538fSMark Fasheh struct buffer_head *bh = NULL; 1468dcd0538fSMark Fasheh 1469dcd0538fSMark Fasheh ret = __ocfs2_find_path(inode, root_el, cpos, find_leaf_ins, &bh); 1470dcd0538fSMark Fasheh if (ret) { 1471dcd0538fSMark Fasheh mlog_errno(ret); 1472dcd0538fSMark Fasheh goto out; 1473dcd0538fSMark Fasheh } 1474dcd0538fSMark Fasheh 1475dcd0538fSMark Fasheh *leaf_bh = bh; 1476dcd0538fSMark Fasheh out: 1477dcd0538fSMark Fasheh return ret; 1478dcd0538fSMark Fasheh } 1479dcd0538fSMark Fasheh 1480dcd0538fSMark Fasheh /* 1481dcd0538fSMark Fasheh * Adjust the adjacent records (left_rec, right_rec) involved in a rotation. 1482dcd0538fSMark Fasheh * 1483dcd0538fSMark Fasheh * Basically, we've moved stuff around at the bottom of the tree and 1484dcd0538fSMark Fasheh * we need to fix up the extent records above the changes to reflect 1485dcd0538fSMark Fasheh * the new changes. 1486dcd0538fSMark Fasheh * 1487dcd0538fSMark Fasheh * left_rec: the record on the left. 1488dcd0538fSMark Fasheh * left_child_el: is the child list pointed to by left_rec 1489dcd0538fSMark Fasheh * right_rec: the record to the right of left_rec 1490dcd0538fSMark Fasheh * right_child_el: is the child list pointed to by right_rec 1491dcd0538fSMark Fasheh * 1492dcd0538fSMark Fasheh * By definition, this only works on interior nodes. 1493dcd0538fSMark Fasheh */ 1494dcd0538fSMark Fasheh static void ocfs2_adjust_adjacent_records(struct ocfs2_extent_rec *left_rec, 1495dcd0538fSMark Fasheh struct ocfs2_extent_list *left_child_el, 1496dcd0538fSMark Fasheh struct ocfs2_extent_rec *right_rec, 1497dcd0538fSMark Fasheh struct ocfs2_extent_list *right_child_el) 1498dcd0538fSMark Fasheh { 1499dcd0538fSMark Fasheh u32 left_clusters, right_end; 1500dcd0538fSMark Fasheh 1501dcd0538fSMark Fasheh /* 1502dcd0538fSMark Fasheh * Interior nodes never have holes. Their cpos is the cpos of 1503dcd0538fSMark Fasheh * the leftmost record in their child list. Their cluster 1504dcd0538fSMark Fasheh * count covers the full theoretical range of their child list 1505dcd0538fSMark Fasheh * - the range between their cpos and the cpos of the record 1506dcd0538fSMark Fasheh * immediately to their right. 1507dcd0538fSMark Fasheh */ 1508dcd0538fSMark Fasheh left_clusters = le32_to_cpu(right_child_el->l_recs[0].e_cpos); 1509328d5752SMark Fasheh if (ocfs2_is_empty_extent(&right_child_el->l_recs[0])) { 1510328d5752SMark Fasheh BUG_ON(le16_to_cpu(right_child_el->l_next_free_rec) <= 1); 1511328d5752SMark Fasheh left_clusters = le32_to_cpu(right_child_el->l_recs[1].e_cpos); 1512328d5752SMark Fasheh } 1513dcd0538fSMark Fasheh left_clusters -= le32_to_cpu(left_rec->e_cpos); 1514e48edee2SMark Fasheh left_rec->e_int_clusters = cpu_to_le32(left_clusters); 1515dcd0538fSMark Fasheh 1516dcd0538fSMark Fasheh /* 1517dcd0538fSMark Fasheh * Calculate the rightmost cluster count boundary before 1518e48edee2SMark Fasheh * moving cpos - we will need to adjust clusters after 1519dcd0538fSMark Fasheh * updating e_cpos to keep the same highest cluster count. 1520dcd0538fSMark Fasheh */ 1521dcd0538fSMark Fasheh right_end = le32_to_cpu(right_rec->e_cpos); 1522e48edee2SMark Fasheh right_end += le32_to_cpu(right_rec->e_int_clusters); 1523dcd0538fSMark Fasheh 1524dcd0538fSMark Fasheh right_rec->e_cpos = left_rec->e_cpos; 1525dcd0538fSMark Fasheh le32_add_cpu(&right_rec->e_cpos, left_clusters); 1526dcd0538fSMark Fasheh 1527dcd0538fSMark Fasheh right_end -= le32_to_cpu(right_rec->e_cpos); 1528e48edee2SMark Fasheh right_rec->e_int_clusters = cpu_to_le32(right_end); 1529dcd0538fSMark Fasheh } 1530dcd0538fSMark Fasheh 1531dcd0538fSMark Fasheh /* 1532dcd0538fSMark Fasheh * Adjust the adjacent root node records involved in a 1533dcd0538fSMark Fasheh * rotation. left_el_blkno is passed in as a key so that we can easily 1534dcd0538fSMark Fasheh * find it's index in the root list. 1535dcd0538fSMark Fasheh */ 1536dcd0538fSMark Fasheh static void ocfs2_adjust_root_records(struct ocfs2_extent_list *root_el, 1537dcd0538fSMark Fasheh struct ocfs2_extent_list *left_el, 1538dcd0538fSMark Fasheh struct ocfs2_extent_list *right_el, 1539dcd0538fSMark Fasheh u64 left_el_blkno) 1540dcd0538fSMark Fasheh { 1541dcd0538fSMark Fasheh int i; 1542dcd0538fSMark Fasheh 1543dcd0538fSMark Fasheh BUG_ON(le16_to_cpu(root_el->l_tree_depth) <= 1544dcd0538fSMark Fasheh le16_to_cpu(left_el->l_tree_depth)); 1545dcd0538fSMark Fasheh 1546dcd0538fSMark Fasheh for(i = 0; i < le16_to_cpu(root_el->l_next_free_rec) - 1; i++) { 1547dcd0538fSMark Fasheh if (le64_to_cpu(root_el->l_recs[i].e_blkno) == left_el_blkno) 1548dcd0538fSMark Fasheh break; 1549dcd0538fSMark Fasheh } 1550dcd0538fSMark Fasheh 1551dcd0538fSMark Fasheh /* 1552dcd0538fSMark Fasheh * The path walking code should have never returned a root and 1553dcd0538fSMark Fasheh * two paths which are not adjacent. 1554dcd0538fSMark Fasheh */ 1555dcd0538fSMark Fasheh BUG_ON(i >= (le16_to_cpu(root_el->l_next_free_rec) - 1)); 1556dcd0538fSMark Fasheh 1557dcd0538fSMark Fasheh ocfs2_adjust_adjacent_records(&root_el->l_recs[i], left_el, 1558dcd0538fSMark Fasheh &root_el->l_recs[i + 1], right_el); 1559dcd0538fSMark Fasheh } 1560dcd0538fSMark Fasheh 1561dcd0538fSMark Fasheh /* 1562dcd0538fSMark Fasheh * We've changed a leaf block (in right_path) and need to reflect that 1563dcd0538fSMark Fasheh * change back up the subtree. 1564dcd0538fSMark Fasheh * 1565dcd0538fSMark Fasheh * This happens in multiple places: 1566dcd0538fSMark Fasheh * - When we've moved an extent record from the left path leaf to the right 1567dcd0538fSMark Fasheh * path leaf to make room for an empty extent in the left path leaf. 1568dcd0538fSMark Fasheh * - When our insert into the right path leaf is at the leftmost edge 1569dcd0538fSMark Fasheh * and requires an update of the path immediately to it's left. This 1570dcd0538fSMark Fasheh * can occur at the end of some types of rotation and appending inserts. 1571677b9752STao Ma * - When we've adjusted the last extent record in the left path leaf and the 1572677b9752STao Ma * 1st extent record in the right path leaf during cross extent block merge. 1573dcd0538fSMark Fasheh */ 1574dcd0538fSMark Fasheh static void ocfs2_complete_edge_insert(struct inode *inode, handle_t *handle, 1575dcd0538fSMark Fasheh struct ocfs2_path *left_path, 1576dcd0538fSMark Fasheh struct ocfs2_path *right_path, 1577dcd0538fSMark Fasheh int subtree_index) 1578dcd0538fSMark Fasheh { 1579dcd0538fSMark Fasheh int ret, i, idx; 1580dcd0538fSMark Fasheh struct ocfs2_extent_list *el, *left_el, *right_el; 1581dcd0538fSMark Fasheh struct ocfs2_extent_rec *left_rec, *right_rec; 1582dcd0538fSMark Fasheh struct buffer_head *root_bh = left_path->p_node[subtree_index].bh; 1583dcd0538fSMark Fasheh 1584dcd0538fSMark Fasheh /* 1585dcd0538fSMark Fasheh * Update the counts and position values within all the 1586dcd0538fSMark Fasheh * interior nodes to reflect the leaf rotation we just did. 1587dcd0538fSMark Fasheh * 1588dcd0538fSMark Fasheh * The root node is handled below the loop. 1589dcd0538fSMark Fasheh * 1590dcd0538fSMark Fasheh * We begin the loop with right_el and left_el pointing to the 1591dcd0538fSMark Fasheh * leaf lists and work our way up. 1592dcd0538fSMark Fasheh * 1593dcd0538fSMark Fasheh * NOTE: within this loop, left_el and right_el always refer 1594dcd0538fSMark Fasheh * to the *child* lists. 1595dcd0538fSMark Fasheh */ 1596dcd0538fSMark Fasheh left_el = path_leaf_el(left_path); 1597dcd0538fSMark Fasheh right_el = path_leaf_el(right_path); 1598dcd0538fSMark Fasheh for(i = left_path->p_tree_depth - 1; i > subtree_index; i--) { 1599dcd0538fSMark Fasheh mlog(0, "Adjust records at index %u\n", i); 1600dcd0538fSMark Fasheh 1601dcd0538fSMark Fasheh /* 1602dcd0538fSMark Fasheh * One nice property of knowing that all of these 1603dcd0538fSMark Fasheh * nodes are below the root is that we only deal with 1604dcd0538fSMark Fasheh * the leftmost right node record and the rightmost 1605dcd0538fSMark Fasheh * left node record. 1606dcd0538fSMark Fasheh */ 1607dcd0538fSMark Fasheh el = left_path->p_node[i].el; 1608dcd0538fSMark Fasheh idx = le16_to_cpu(left_el->l_next_free_rec) - 1; 1609dcd0538fSMark Fasheh left_rec = &el->l_recs[idx]; 1610dcd0538fSMark Fasheh 1611dcd0538fSMark Fasheh el = right_path->p_node[i].el; 1612dcd0538fSMark Fasheh right_rec = &el->l_recs[0]; 1613dcd0538fSMark Fasheh 1614dcd0538fSMark Fasheh ocfs2_adjust_adjacent_records(left_rec, left_el, right_rec, 1615dcd0538fSMark Fasheh right_el); 1616dcd0538fSMark Fasheh 1617dcd0538fSMark Fasheh ret = ocfs2_journal_dirty(handle, left_path->p_node[i].bh); 1618dcd0538fSMark Fasheh if (ret) 1619dcd0538fSMark Fasheh mlog_errno(ret); 1620dcd0538fSMark Fasheh 1621dcd0538fSMark Fasheh ret = ocfs2_journal_dirty(handle, right_path->p_node[i].bh); 1622dcd0538fSMark Fasheh if (ret) 1623dcd0538fSMark Fasheh mlog_errno(ret); 1624dcd0538fSMark Fasheh 1625dcd0538fSMark Fasheh /* 1626dcd0538fSMark Fasheh * Setup our list pointers now so that the current 1627dcd0538fSMark Fasheh * parents become children in the next iteration. 1628dcd0538fSMark Fasheh */ 1629dcd0538fSMark Fasheh left_el = left_path->p_node[i].el; 1630dcd0538fSMark Fasheh right_el = right_path->p_node[i].el; 1631dcd0538fSMark Fasheh } 1632dcd0538fSMark Fasheh 1633dcd0538fSMark Fasheh /* 1634dcd0538fSMark Fasheh * At the root node, adjust the two adjacent records which 1635dcd0538fSMark Fasheh * begin our path to the leaves. 1636dcd0538fSMark Fasheh */ 1637dcd0538fSMark Fasheh 1638dcd0538fSMark Fasheh el = left_path->p_node[subtree_index].el; 1639dcd0538fSMark Fasheh left_el = left_path->p_node[subtree_index + 1].el; 1640dcd0538fSMark Fasheh right_el = right_path->p_node[subtree_index + 1].el; 1641dcd0538fSMark Fasheh 1642dcd0538fSMark Fasheh ocfs2_adjust_root_records(el, left_el, right_el, 1643dcd0538fSMark Fasheh left_path->p_node[subtree_index + 1].bh->b_blocknr); 1644dcd0538fSMark Fasheh 1645dcd0538fSMark Fasheh root_bh = left_path->p_node[subtree_index].bh; 1646dcd0538fSMark Fasheh 1647dcd0538fSMark Fasheh ret = ocfs2_journal_dirty(handle, root_bh); 1648dcd0538fSMark Fasheh if (ret) 1649dcd0538fSMark Fasheh mlog_errno(ret); 1650dcd0538fSMark Fasheh } 1651dcd0538fSMark Fasheh 1652dcd0538fSMark Fasheh static int ocfs2_rotate_subtree_right(struct inode *inode, 1653dcd0538fSMark Fasheh handle_t *handle, 1654dcd0538fSMark Fasheh struct ocfs2_path *left_path, 1655dcd0538fSMark Fasheh struct ocfs2_path *right_path, 1656dcd0538fSMark Fasheh int subtree_index) 1657dcd0538fSMark Fasheh { 1658dcd0538fSMark Fasheh int ret, i; 1659dcd0538fSMark Fasheh struct buffer_head *right_leaf_bh; 1660dcd0538fSMark Fasheh struct buffer_head *left_leaf_bh = NULL; 1661dcd0538fSMark Fasheh struct buffer_head *root_bh; 1662dcd0538fSMark Fasheh struct ocfs2_extent_list *right_el, *left_el; 1663dcd0538fSMark Fasheh struct ocfs2_extent_rec move_rec; 1664dcd0538fSMark Fasheh 1665dcd0538fSMark Fasheh left_leaf_bh = path_leaf_bh(left_path); 1666dcd0538fSMark Fasheh left_el = path_leaf_el(left_path); 1667dcd0538fSMark Fasheh 1668dcd0538fSMark Fasheh if (left_el->l_next_free_rec != left_el->l_count) { 1669dcd0538fSMark Fasheh ocfs2_error(inode->i_sb, 1670dcd0538fSMark Fasheh "Inode %llu has non-full interior leaf node %llu" 1671dcd0538fSMark Fasheh "(next free = %u)", 1672dcd0538fSMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, 1673dcd0538fSMark Fasheh (unsigned long long)left_leaf_bh->b_blocknr, 1674dcd0538fSMark Fasheh le16_to_cpu(left_el->l_next_free_rec)); 1675dcd0538fSMark Fasheh return -EROFS; 1676dcd0538fSMark Fasheh } 1677dcd0538fSMark Fasheh 1678dcd0538fSMark Fasheh /* 1679dcd0538fSMark Fasheh * This extent block may already have an empty record, so we 1680dcd0538fSMark Fasheh * return early if so. 1681dcd0538fSMark Fasheh */ 1682dcd0538fSMark Fasheh if (ocfs2_is_empty_extent(&left_el->l_recs[0])) 1683dcd0538fSMark Fasheh return 0; 1684dcd0538fSMark Fasheh 1685dcd0538fSMark Fasheh root_bh = left_path->p_node[subtree_index].bh; 1686dcd0538fSMark Fasheh BUG_ON(root_bh != right_path->p_node[subtree_index].bh); 1687dcd0538fSMark Fasheh 1688dcd0538fSMark Fasheh ret = ocfs2_journal_access(handle, inode, root_bh, 1689dcd0538fSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 1690dcd0538fSMark Fasheh if (ret) { 1691dcd0538fSMark Fasheh mlog_errno(ret); 1692dcd0538fSMark Fasheh goto out; 1693dcd0538fSMark Fasheh } 1694dcd0538fSMark Fasheh 1695dcd0538fSMark Fasheh for(i = subtree_index + 1; i < path_num_items(right_path); i++) { 1696dcd0538fSMark Fasheh ret = ocfs2_journal_access(handle, inode, 1697dcd0538fSMark Fasheh right_path->p_node[i].bh, 1698dcd0538fSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 1699dcd0538fSMark Fasheh if (ret) { 1700dcd0538fSMark Fasheh mlog_errno(ret); 1701dcd0538fSMark Fasheh goto out; 1702dcd0538fSMark Fasheh } 1703dcd0538fSMark Fasheh 1704dcd0538fSMark Fasheh ret = ocfs2_journal_access(handle, inode, 1705dcd0538fSMark Fasheh left_path->p_node[i].bh, 1706dcd0538fSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 1707dcd0538fSMark Fasheh if (ret) { 1708dcd0538fSMark Fasheh mlog_errno(ret); 1709dcd0538fSMark Fasheh goto out; 1710dcd0538fSMark Fasheh } 1711dcd0538fSMark Fasheh } 1712dcd0538fSMark Fasheh 1713dcd0538fSMark Fasheh right_leaf_bh = path_leaf_bh(right_path); 1714dcd0538fSMark Fasheh right_el = path_leaf_el(right_path); 1715dcd0538fSMark Fasheh 1716dcd0538fSMark Fasheh /* This is a code error, not a disk corruption. */ 1717dcd0538fSMark Fasheh mlog_bug_on_msg(!right_el->l_next_free_rec, "Inode %llu: Rotate fails " 1718dcd0538fSMark Fasheh "because rightmost leaf block %llu is empty\n", 1719dcd0538fSMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, 1720dcd0538fSMark Fasheh (unsigned long long)right_leaf_bh->b_blocknr); 1721dcd0538fSMark Fasheh 1722dcd0538fSMark Fasheh ocfs2_create_empty_extent(right_el); 1723dcd0538fSMark Fasheh 1724dcd0538fSMark Fasheh ret = ocfs2_journal_dirty(handle, right_leaf_bh); 1725dcd0538fSMark Fasheh if (ret) { 1726dcd0538fSMark Fasheh mlog_errno(ret); 1727dcd0538fSMark Fasheh goto out; 1728dcd0538fSMark Fasheh } 1729dcd0538fSMark Fasheh 1730dcd0538fSMark Fasheh /* Do the copy now. */ 1731dcd0538fSMark Fasheh i = le16_to_cpu(left_el->l_next_free_rec) - 1; 1732dcd0538fSMark Fasheh move_rec = left_el->l_recs[i]; 1733dcd0538fSMark Fasheh right_el->l_recs[0] = move_rec; 1734dcd0538fSMark Fasheh 1735dcd0538fSMark Fasheh /* 1736dcd0538fSMark Fasheh * Clear out the record we just copied and shift everything 1737dcd0538fSMark Fasheh * over, leaving an empty extent in the left leaf. 1738dcd0538fSMark Fasheh * 1739dcd0538fSMark Fasheh * We temporarily subtract from next_free_rec so that the 1740dcd0538fSMark Fasheh * shift will lose the tail record (which is now defunct). 1741dcd0538fSMark Fasheh */ 1742dcd0538fSMark Fasheh le16_add_cpu(&left_el->l_next_free_rec, -1); 1743dcd0538fSMark Fasheh ocfs2_shift_records_right(left_el); 1744dcd0538fSMark Fasheh memset(&left_el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec)); 1745dcd0538fSMark Fasheh le16_add_cpu(&left_el->l_next_free_rec, 1); 1746dcd0538fSMark Fasheh 1747dcd0538fSMark Fasheh ret = ocfs2_journal_dirty(handle, left_leaf_bh); 1748dcd0538fSMark Fasheh if (ret) { 1749dcd0538fSMark Fasheh mlog_errno(ret); 1750dcd0538fSMark Fasheh goto out; 1751dcd0538fSMark Fasheh } 1752dcd0538fSMark Fasheh 1753dcd0538fSMark Fasheh ocfs2_complete_edge_insert(inode, handle, left_path, right_path, 1754dcd0538fSMark Fasheh subtree_index); 1755dcd0538fSMark Fasheh 1756dcd0538fSMark Fasheh out: 1757dcd0538fSMark Fasheh return ret; 1758dcd0538fSMark Fasheh } 1759dcd0538fSMark Fasheh 1760dcd0538fSMark Fasheh /* 1761dcd0538fSMark Fasheh * Given a full path, determine what cpos value would return us a path 1762dcd0538fSMark Fasheh * containing the leaf immediately to the left of the current one. 1763dcd0538fSMark Fasheh * 1764dcd0538fSMark Fasheh * Will return zero if the path passed in is already the leftmost path. 1765dcd0538fSMark Fasheh */ 1766dcd0538fSMark Fasheh static int ocfs2_find_cpos_for_left_leaf(struct super_block *sb, 1767dcd0538fSMark Fasheh struct ocfs2_path *path, u32 *cpos) 1768dcd0538fSMark Fasheh { 1769dcd0538fSMark Fasheh int i, j, ret = 0; 1770dcd0538fSMark Fasheh u64 blkno; 1771dcd0538fSMark Fasheh struct ocfs2_extent_list *el; 1772dcd0538fSMark Fasheh 1773e48edee2SMark Fasheh BUG_ON(path->p_tree_depth == 0); 1774e48edee2SMark Fasheh 1775dcd0538fSMark Fasheh *cpos = 0; 1776dcd0538fSMark Fasheh 1777dcd0538fSMark Fasheh blkno = path_leaf_bh(path)->b_blocknr; 1778dcd0538fSMark Fasheh 1779dcd0538fSMark Fasheh /* Start at the tree node just above the leaf and work our way up. */ 1780dcd0538fSMark Fasheh i = path->p_tree_depth - 1; 1781dcd0538fSMark Fasheh while (i >= 0) { 1782dcd0538fSMark Fasheh el = path->p_node[i].el; 1783dcd0538fSMark Fasheh 1784dcd0538fSMark Fasheh /* 1785dcd0538fSMark Fasheh * Find the extent record just before the one in our 1786dcd0538fSMark Fasheh * path. 1787dcd0538fSMark Fasheh */ 1788dcd0538fSMark Fasheh for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) { 1789dcd0538fSMark Fasheh if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) { 1790dcd0538fSMark Fasheh if (j == 0) { 1791dcd0538fSMark Fasheh if (i == 0) { 1792dcd0538fSMark Fasheh /* 1793dcd0538fSMark Fasheh * We've determined that the 1794dcd0538fSMark Fasheh * path specified is already 1795dcd0538fSMark Fasheh * the leftmost one - return a 1796dcd0538fSMark Fasheh * cpos of zero. 1797dcd0538fSMark Fasheh */ 1798dcd0538fSMark Fasheh goto out; 1799dcd0538fSMark Fasheh } 1800dcd0538fSMark Fasheh /* 1801dcd0538fSMark Fasheh * The leftmost record points to our 1802dcd0538fSMark Fasheh * leaf - we need to travel up the 1803dcd0538fSMark Fasheh * tree one level. 1804dcd0538fSMark Fasheh */ 1805dcd0538fSMark Fasheh goto next_node; 1806dcd0538fSMark Fasheh } 1807dcd0538fSMark Fasheh 1808dcd0538fSMark Fasheh *cpos = le32_to_cpu(el->l_recs[j - 1].e_cpos); 1809e48edee2SMark Fasheh *cpos = *cpos + ocfs2_rec_clusters(el, 1810e48edee2SMark Fasheh &el->l_recs[j - 1]); 1811e48edee2SMark Fasheh *cpos = *cpos - 1; 1812dcd0538fSMark Fasheh goto out; 1813dcd0538fSMark Fasheh } 1814dcd0538fSMark Fasheh } 1815dcd0538fSMark Fasheh 1816dcd0538fSMark Fasheh /* 1817dcd0538fSMark Fasheh * If we got here, we never found a valid node where 1818dcd0538fSMark Fasheh * the tree indicated one should be. 1819dcd0538fSMark Fasheh */ 1820dcd0538fSMark Fasheh ocfs2_error(sb, 1821dcd0538fSMark Fasheh "Invalid extent tree at extent block %llu\n", 1822dcd0538fSMark Fasheh (unsigned long long)blkno); 1823dcd0538fSMark Fasheh ret = -EROFS; 1824dcd0538fSMark Fasheh goto out; 1825dcd0538fSMark Fasheh 1826dcd0538fSMark Fasheh next_node: 1827dcd0538fSMark Fasheh blkno = path->p_node[i].bh->b_blocknr; 1828dcd0538fSMark Fasheh i--; 1829dcd0538fSMark Fasheh } 1830dcd0538fSMark Fasheh 1831dcd0538fSMark Fasheh out: 1832dcd0538fSMark Fasheh return ret; 1833dcd0538fSMark Fasheh } 1834dcd0538fSMark Fasheh 1835328d5752SMark Fasheh /* 1836328d5752SMark Fasheh * Extend the transaction by enough credits to complete the rotation, 1837328d5752SMark Fasheh * and still leave at least the original number of credits allocated 1838328d5752SMark Fasheh * to this transaction. 1839328d5752SMark Fasheh */ 1840dcd0538fSMark Fasheh static int ocfs2_extend_rotate_transaction(handle_t *handle, int subtree_depth, 1841328d5752SMark Fasheh int op_credits, 1842dcd0538fSMark Fasheh struct ocfs2_path *path) 1843dcd0538fSMark Fasheh { 1844328d5752SMark Fasheh int credits = (path->p_tree_depth - subtree_depth) * 2 + 1 + op_credits; 1845dcd0538fSMark Fasheh 1846dcd0538fSMark Fasheh if (handle->h_buffer_credits < credits) 1847dcd0538fSMark Fasheh return ocfs2_extend_trans(handle, credits); 1848dcd0538fSMark Fasheh 1849dcd0538fSMark Fasheh return 0; 1850dcd0538fSMark Fasheh } 1851dcd0538fSMark Fasheh 1852dcd0538fSMark Fasheh /* 1853dcd0538fSMark Fasheh * Trap the case where we're inserting into the theoretical range past 1854dcd0538fSMark Fasheh * the _actual_ left leaf range. Otherwise, we'll rotate a record 1855dcd0538fSMark Fasheh * whose cpos is less than ours into the right leaf. 1856dcd0538fSMark Fasheh * 1857dcd0538fSMark Fasheh * It's only necessary to look at the rightmost record of the left 1858dcd0538fSMark Fasheh * leaf because the logic that calls us should ensure that the 1859dcd0538fSMark Fasheh * theoretical ranges in the path components above the leaves are 1860dcd0538fSMark Fasheh * correct. 1861dcd0538fSMark Fasheh */ 1862dcd0538fSMark Fasheh static int ocfs2_rotate_requires_path_adjustment(struct ocfs2_path *left_path, 1863dcd0538fSMark Fasheh u32 insert_cpos) 1864dcd0538fSMark Fasheh { 1865dcd0538fSMark Fasheh struct ocfs2_extent_list *left_el; 1866dcd0538fSMark Fasheh struct ocfs2_extent_rec *rec; 1867dcd0538fSMark Fasheh int next_free; 1868dcd0538fSMark Fasheh 1869dcd0538fSMark Fasheh left_el = path_leaf_el(left_path); 1870dcd0538fSMark Fasheh next_free = le16_to_cpu(left_el->l_next_free_rec); 1871dcd0538fSMark Fasheh rec = &left_el->l_recs[next_free - 1]; 1872dcd0538fSMark Fasheh 1873dcd0538fSMark Fasheh if (insert_cpos > le32_to_cpu(rec->e_cpos)) 1874dcd0538fSMark Fasheh return 1; 1875dcd0538fSMark Fasheh return 0; 1876dcd0538fSMark Fasheh } 1877dcd0538fSMark Fasheh 1878328d5752SMark Fasheh static int ocfs2_leftmost_rec_contains(struct ocfs2_extent_list *el, u32 cpos) 1879328d5752SMark Fasheh { 1880328d5752SMark Fasheh int next_free = le16_to_cpu(el->l_next_free_rec); 1881328d5752SMark Fasheh unsigned int range; 1882328d5752SMark Fasheh struct ocfs2_extent_rec *rec; 1883328d5752SMark Fasheh 1884328d5752SMark Fasheh if (next_free == 0) 1885328d5752SMark Fasheh return 0; 1886328d5752SMark Fasheh 1887328d5752SMark Fasheh rec = &el->l_recs[0]; 1888328d5752SMark Fasheh if (ocfs2_is_empty_extent(rec)) { 1889328d5752SMark Fasheh /* Empty list. */ 1890328d5752SMark Fasheh if (next_free == 1) 1891328d5752SMark Fasheh return 0; 1892328d5752SMark Fasheh rec = &el->l_recs[1]; 1893328d5752SMark Fasheh } 1894328d5752SMark Fasheh 1895328d5752SMark Fasheh range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec); 1896328d5752SMark Fasheh if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range) 1897328d5752SMark Fasheh return 1; 1898328d5752SMark Fasheh return 0; 1899328d5752SMark Fasheh } 1900328d5752SMark Fasheh 1901dcd0538fSMark Fasheh /* 1902dcd0538fSMark Fasheh * Rotate all the records in a btree right one record, starting at insert_cpos. 1903dcd0538fSMark Fasheh * 1904dcd0538fSMark Fasheh * The path to the rightmost leaf should be passed in. 1905dcd0538fSMark Fasheh * 1906dcd0538fSMark Fasheh * The array is assumed to be large enough to hold an entire path (tree depth). 1907dcd0538fSMark Fasheh * 1908dcd0538fSMark Fasheh * Upon succesful return from this function: 1909dcd0538fSMark Fasheh * 1910dcd0538fSMark Fasheh * - The 'right_path' array will contain a path to the leaf block 1911dcd0538fSMark Fasheh * whose range contains e_cpos. 1912dcd0538fSMark Fasheh * - That leaf block will have a single empty extent in list index 0. 1913dcd0538fSMark Fasheh * - In the case that the rotation requires a post-insert update, 1914dcd0538fSMark Fasheh * *ret_left_path will contain a valid path which can be passed to 1915dcd0538fSMark Fasheh * ocfs2_insert_path(). 1916dcd0538fSMark Fasheh */ 1917dcd0538fSMark Fasheh static int ocfs2_rotate_tree_right(struct inode *inode, 1918dcd0538fSMark Fasheh handle_t *handle, 1919328d5752SMark Fasheh enum ocfs2_split_type split, 1920dcd0538fSMark Fasheh u32 insert_cpos, 1921dcd0538fSMark Fasheh struct ocfs2_path *right_path, 1922dcd0538fSMark Fasheh struct ocfs2_path **ret_left_path) 1923dcd0538fSMark Fasheh { 1924328d5752SMark Fasheh int ret, start, orig_credits = handle->h_buffer_credits; 1925dcd0538fSMark Fasheh u32 cpos; 1926dcd0538fSMark Fasheh struct ocfs2_path *left_path = NULL; 1927dcd0538fSMark Fasheh 1928dcd0538fSMark Fasheh *ret_left_path = NULL; 1929dcd0538fSMark Fasheh 1930dcd0538fSMark Fasheh left_path = ocfs2_new_path(path_root_bh(right_path), 1931dcd0538fSMark Fasheh path_root_el(right_path)); 1932dcd0538fSMark Fasheh if (!left_path) { 1933dcd0538fSMark Fasheh ret = -ENOMEM; 1934dcd0538fSMark Fasheh mlog_errno(ret); 1935dcd0538fSMark Fasheh goto out; 1936dcd0538fSMark Fasheh } 1937dcd0538fSMark Fasheh 1938dcd0538fSMark Fasheh ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, right_path, &cpos); 1939dcd0538fSMark Fasheh if (ret) { 1940dcd0538fSMark Fasheh mlog_errno(ret); 1941dcd0538fSMark Fasheh goto out; 1942dcd0538fSMark Fasheh } 1943dcd0538fSMark Fasheh 1944dcd0538fSMark Fasheh mlog(0, "Insert: %u, first left path cpos: %u\n", insert_cpos, cpos); 1945dcd0538fSMark Fasheh 1946dcd0538fSMark Fasheh /* 1947dcd0538fSMark Fasheh * What we want to do here is: 1948dcd0538fSMark Fasheh * 1949dcd0538fSMark Fasheh * 1) Start with the rightmost path. 1950dcd0538fSMark Fasheh * 1951dcd0538fSMark Fasheh * 2) Determine a path to the leaf block directly to the left 1952dcd0538fSMark Fasheh * of that leaf. 1953dcd0538fSMark Fasheh * 1954dcd0538fSMark Fasheh * 3) Determine the 'subtree root' - the lowest level tree node 1955dcd0538fSMark Fasheh * which contains a path to both leaves. 1956dcd0538fSMark Fasheh * 1957dcd0538fSMark Fasheh * 4) Rotate the subtree. 1958dcd0538fSMark Fasheh * 1959dcd0538fSMark Fasheh * 5) Find the next subtree by considering the left path to be 1960dcd0538fSMark Fasheh * the new right path. 1961dcd0538fSMark Fasheh * 1962dcd0538fSMark Fasheh * The check at the top of this while loop also accepts 1963dcd0538fSMark Fasheh * insert_cpos == cpos because cpos is only a _theoretical_ 1964dcd0538fSMark Fasheh * value to get us the left path - insert_cpos might very well 1965dcd0538fSMark Fasheh * be filling that hole. 1966dcd0538fSMark Fasheh * 1967dcd0538fSMark Fasheh * Stop at a cpos of '0' because we either started at the 1968dcd0538fSMark Fasheh * leftmost branch (i.e., a tree with one branch and a 1969dcd0538fSMark Fasheh * rotation inside of it), or we've gone as far as we can in 1970dcd0538fSMark Fasheh * rotating subtrees. 1971dcd0538fSMark Fasheh */ 1972dcd0538fSMark Fasheh while (cpos && insert_cpos <= cpos) { 1973dcd0538fSMark Fasheh mlog(0, "Rotating a tree: ins. cpos: %u, left path cpos: %u\n", 1974dcd0538fSMark Fasheh insert_cpos, cpos); 1975dcd0538fSMark Fasheh 1976dcd0538fSMark Fasheh ret = ocfs2_find_path(inode, left_path, cpos); 1977dcd0538fSMark Fasheh if (ret) { 1978dcd0538fSMark Fasheh mlog_errno(ret); 1979dcd0538fSMark Fasheh goto out; 1980dcd0538fSMark Fasheh } 1981dcd0538fSMark Fasheh 1982dcd0538fSMark Fasheh mlog_bug_on_msg(path_leaf_bh(left_path) == 1983dcd0538fSMark Fasheh path_leaf_bh(right_path), 1984dcd0538fSMark Fasheh "Inode %lu: error during insert of %u " 1985dcd0538fSMark Fasheh "(left path cpos %u) results in two identical " 1986dcd0538fSMark Fasheh "paths ending at %llu\n", 1987dcd0538fSMark Fasheh inode->i_ino, insert_cpos, cpos, 1988dcd0538fSMark Fasheh (unsigned long long) 1989dcd0538fSMark Fasheh path_leaf_bh(left_path)->b_blocknr); 1990dcd0538fSMark Fasheh 1991328d5752SMark Fasheh if (split == SPLIT_NONE && 1992328d5752SMark Fasheh ocfs2_rotate_requires_path_adjustment(left_path, 1993dcd0538fSMark Fasheh insert_cpos)) { 1994dcd0538fSMark Fasheh 1995dcd0538fSMark Fasheh /* 1996dcd0538fSMark Fasheh * We've rotated the tree as much as we 1997dcd0538fSMark Fasheh * should. The rest is up to 1998dcd0538fSMark Fasheh * ocfs2_insert_path() to complete, after the 1999dcd0538fSMark Fasheh * record insertion. We indicate this 2000dcd0538fSMark Fasheh * situation by returning the left path. 2001dcd0538fSMark Fasheh * 2002dcd0538fSMark Fasheh * The reason we don't adjust the records here 2003dcd0538fSMark Fasheh * before the record insert is that an error 2004dcd0538fSMark Fasheh * later might break the rule where a parent 2005dcd0538fSMark Fasheh * record e_cpos will reflect the actual 2006dcd0538fSMark Fasheh * e_cpos of the 1st nonempty record of the 2007dcd0538fSMark Fasheh * child list. 2008dcd0538fSMark Fasheh */ 2009dcd0538fSMark Fasheh *ret_left_path = left_path; 2010dcd0538fSMark Fasheh goto out_ret_path; 2011dcd0538fSMark Fasheh } 2012dcd0538fSMark Fasheh 2013dcd0538fSMark Fasheh start = ocfs2_find_subtree_root(inode, left_path, right_path); 2014dcd0538fSMark Fasheh 2015dcd0538fSMark Fasheh mlog(0, "Subtree root at index %d (blk %llu, depth %d)\n", 2016dcd0538fSMark Fasheh start, 2017dcd0538fSMark Fasheh (unsigned long long) right_path->p_node[start].bh->b_blocknr, 2018dcd0538fSMark Fasheh right_path->p_tree_depth); 2019dcd0538fSMark Fasheh 2020dcd0538fSMark Fasheh ret = ocfs2_extend_rotate_transaction(handle, start, 2021328d5752SMark Fasheh orig_credits, right_path); 2022dcd0538fSMark Fasheh if (ret) { 2023dcd0538fSMark Fasheh mlog_errno(ret); 2024dcd0538fSMark Fasheh goto out; 2025dcd0538fSMark Fasheh } 2026dcd0538fSMark Fasheh 2027dcd0538fSMark Fasheh ret = ocfs2_rotate_subtree_right(inode, handle, left_path, 2028dcd0538fSMark Fasheh right_path, start); 2029dcd0538fSMark Fasheh if (ret) { 2030dcd0538fSMark Fasheh mlog_errno(ret); 2031dcd0538fSMark Fasheh goto out; 2032dcd0538fSMark Fasheh } 2033dcd0538fSMark Fasheh 2034328d5752SMark Fasheh if (split != SPLIT_NONE && 2035328d5752SMark Fasheh ocfs2_leftmost_rec_contains(path_leaf_el(right_path), 2036328d5752SMark Fasheh insert_cpos)) { 2037328d5752SMark Fasheh /* 2038328d5752SMark Fasheh * A rotate moves the rightmost left leaf 2039328d5752SMark Fasheh * record over to the leftmost right leaf 2040328d5752SMark Fasheh * slot. If we're doing an extent split 2041328d5752SMark Fasheh * instead of a real insert, then we have to 2042328d5752SMark Fasheh * check that the extent to be split wasn't 2043328d5752SMark Fasheh * just moved over. If it was, then we can 2044328d5752SMark Fasheh * exit here, passing left_path back - 2045328d5752SMark Fasheh * ocfs2_split_extent() is smart enough to 2046328d5752SMark Fasheh * search both leaves. 2047328d5752SMark Fasheh */ 2048328d5752SMark Fasheh *ret_left_path = left_path; 2049328d5752SMark Fasheh goto out_ret_path; 2050328d5752SMark Fasheh } 2051328d5752SMark Fasheh 2052dcd0538fSMark Fasheh /* 2053dcd0538fSMark Fasheh * There is no need to re-read the next right path 2054dcd0538fSMark Fasheh * as we know that it'll be our current left 2055dcd0538fSMark Fasheh * path. Optimize by copying values instead. 2056dcd0538fSMark Fasheh */ 2057dcd0538fSMark Fasheh ocfs2_mv_path(right_path, left_path); 2058dcd0538fSMark Fasheh 2059dcd0538fSMark Fasheh ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, right_path, 2060dcd0538fSMark Fasheh &cpos); 2061dcd0538fSMark Fasheh if (ret) { 2062dcd0538fSMark Fasheh mlog_errno(ret); 2063dcd0538fSMark Fasheh goto out; 2064dcd0538fSMark Fasheh } 2065dcd0538fSMark Fasheh } 2066dcd0538fSMark Fasheh 2067dcd0538fSMark Fasheh out: 2068dcd0538fSMark Fasheh ocfs2_free_path(left_path); 2069dcd0538fSMark Fasheh 2070dcd0538fSMark Fasheh out_ret_path: 2071dcd0538fSMark Fasheh return ret; 2072dcd0538fSMark Fasheh } 2073dcd0538fSMark Fasheh 2074328d5752SMark Fasheh static void ocfs2_update_edge_lengths(struct inode *inode, handle_t *handle, 2075328d5752SMark Fasheh struct ocfs2_path *path) 2076328d5752SMark Fasheh { 2077328d5752SMark Fasheh int i, idx; 2078328d5752SMark Fasheh struct ocfs2_extent_rec *rec; 2079328d5752SMark Fasheh struct ocfs2_extent_list *el; 2080328d5752SMark Fasheh struct ocfs2_extent_block *eb; 2081328d5752SMark Fasheh u32 range; 2082328d5752SMark Fasheh 2083328d5752SMark Fasheh /* Path should always be rightmost. */ 2084328d5752SMark Fasheh eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data; 2085328d5752SMark Fasheh BUG_ON(eb->h_next_leaf_blk != 0ULL); 2086328d5752SMark Fasheh 2087328d5752SMark Fasheh el = &eb->h_list; 2088328d5752SMark Fasheh BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0); 2089328d5752SMark Fasheh idx = le16_to_cpu(el->l_next_free_rec) - 1; 2090328d5752SMark Fasheh rec = &el->l_recs[idx]; 2091328d5752SMark Fasheh range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec); 2092328d5752SMark Fasheh 2093328d5752SMark Fasheh for (i = 0; i < path->p_tree_depth; i++) { 2094328d5752SMark Fasheh el = path->p_node[i].el; 2095328d5752SMark Fasheh idx = le16_to_cpu(el->l_next_free_rec) - 1; 2096328d5752SMark Fasheh rec = &el->l_recs[idx]; 2097328d5752SMark Fasheh 2098328d5752SMark Fasheh rec->e_int_clusters = cpu_to_le32(range); 2099328d5752SMark Fasheh le32_add_cpu(&rec->e_int_clusters, -le32_to_cpu(rec->e_cpos)); 2100328d5752SMark Fasheh 2101328d5752SMark Fasheh ocfs2_journal_dirty(handle, path->p_node[i].bh); 2102328d5752SMark Fasheh } 2103328d5752SMark Fasheh } 2104328d5752SMark Fasheh 2105328d5752SMark Fasheh static void ocfs2_unlink_path(struct inode *inode, handle_t *handle, 2106328d5752SMark Fasheh struct ocfs2_cached_dealloc_ctxt *dealloc, 2107328d5752SMark Fasheh struct ocfs2_path *path, int unlink_start) 2108328d5752SMark Fasheh { 2109328d5752SMark Fasheh int ret, i; 2110328d5752SMark Fasheh struct ocfs2_extent_block *eb; 2111328d5752SMark Fasheh struct ocfs2_extent_list *el; 2112328d5752SMark Fasheh struct buffer_head *bh; 2113328d5752SMark Fasheh 2114328d5752SMark Fasheh for(i = unlink_start; i < path_num_items(path); i++) { 2115328d5752SMark Fasheh bh = path->p_node[i].bh; 2116328d5752SMark Fasheh 2117328d5752SMark Fasheh eb = (struct ocfs2_extent_block *)bh->b_data; 2118328d5752SMark Fasheh /* 2119328d5752SMark Fasheh * Not all nodes might have had their final count 2120328d5752SMark Fasheh * decremented by the caller - handle this here. 2121328d5752SMark Fasheh */ 2122328d5752SMark Fasheh el = &eb->h_list; 2123328d5752SMark Fasheh if (le16_to_cpu(el->l_next_free_rec) > 1) { 2124328d5752SMark Fasheh mlog(ML_ERROR, 2125328d5752SMark Fasheh "Inode %llu, attempted to remove extent block " 2126328d5752SMark Fasheh "%llu with %u records\n", 2127328d5752SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, 2128328d5752SMark Fasheh (unsigned long long)le64_to_cpu(eb->h_blkno), 2129328d5752SMark Fasheh le16_to_cpu(el->l_next_free_rec)); 2130328d5752SMark Fasheh 2131328d5752SMark Fasheh ocfs2_journal_dirty(handle, bh); 2132328d5752SMark Fasheh ocfs2_remove_from_cache(inode, bh); 2133328d5752SMark Fasheh continue; 2134328d5752SMark Fasheh } 2135328d5752SMark Fasheh 2136328d5752SMark Fasheh el->l_next_free_rec = 0; 2137328d5752SMark Fasheh memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec)); 2138328d5752SMark Fasheh 2139328d5752SMark Fasheh ocfs2_journal_dirty(handle, bh); 2140328d5752SMark Fasheh 2141328d5752SMark Fasheh ret = ocfs2_cache_extent_block_free(dealloc, eb); 2142328d5752SMark Fasheh if (ret) 2143328d5752SMark Fasheh mlog_errno(ret); 2144328d5752SMark Fasheh 2145328d5752SMark Fasheh ocfs2_remove_from_cache(inode, bh); 2146328d5752SMark Fasheh } 2147328d5752SMark Fasheh } 2148328d5752SMark Fasheh 2149328d5752SMark Fasheh static void ocfs2_unlink_subtree(struct inode *inode, handle_t *handle, 2150328d5752SMark Fasheh struct ocfs2_path *left_path, 2151328d5752SMark Fasheh struct ocfs2_path *right_path, 2152328d5752SMark Fasheh int subtree_index, 2153328d5752SMark Fasheh struct ocfs2_cached_dealloc_ctxt *dealloc) 2154328d5752SMark Fasheh { 2155328d5752SMark Fasheh int i; 2156328d5752SMark Fasheh struct buffer_head *root_bh = left_path->p_node[subtree_index].bh; 2157328d5752SMark Fasheh struct ocfs2_extent_list *root_el = left_path->p_node[subtree_index].el; 2158328d5752SMark Fasheh struct ocfs2_extent_list *el; 2159328d5752SMark Fasheh struct ocfs2_extent_block *eb; 2160328d5752SMark Fasheh 2161328d5752SMark Fasheh el = path_leaf_el(left_path); 2162328d5752SMark Fasheh 2163328d5752SMark Fasheh eb = (struct ocfs2_extent_block *)right_path->p_node[subtree_index + 1].bh->b_data; 2164328d5752SMark Fasheh 2165328d5752SMark Fasheh for(i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++) 2166328d5752SMark Fasheh if (root_el->l_recs[i].e_blkno == eb->h_blkno) 2167328d5752SMark Fasheh break; 2168328d5752SMark Fasheh 2169328d5752SMark Fasheh BUG_ON(i >= le16_to_cpu(root_el->l_next_free_rec)); 2170328d5752SMark Fasheh 2171328d5752SMark Fasheh memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec)); 2172328d5752SMark Fasheh le16_add_cpu(&root_el->l_next_free_rec, -1); 2173328d5752SMark Fasheh 2174328d5752SMark Fasheh eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data; 2175328d5752SMark Fasheh eb->h_next_leaf_blk = 0; 2176328d5752SMark Fasheh 2177328d5752SMark Fasheh ocfs2_journal_dirty(handle, root_bh); 2178328d5752SMark Fasheh ocfs2_journal_dirty(handle, path_leaf_bh(left_path)); 2179328d5752SMark Fasheh 2180328d5752SMark Fasheh ocfs2_unlink_path(inode, handle, dealloc, right_path, 2181328d5752SMark Fasheh subtree_index + 1); 2182328d5752SMark Fasheh } 2183328d5752SMark Fasheh 2184328d5752SMark Fasheh static int ocfs2_rotate_subtree_left(struct inode *inode, handle_t *handle, 2185328d5752SMark Fasheh struct ocfs2_path *left_path, 2186328d5752SMark Fasheh struct ocfs2_path *right_path, 2187328d5752SMark Fasheh int subtree_index, 2188328d5752SMark Fasheh struct ocfs2_cached_dealloc_ctxt *dealloc, 2189*e7d4cb6bSTao Ma int *deleted, 2190*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et) 2191328d5752SMark Fasheh { 2192328d5752SMark Fasheh int ret, i, del_right_subtree = 0, right_has_empty = 0; 2193*e7d4cb6bSTao Ma struct buffer_head *root_bh, *et_root_bh = path_root_bh(right_path); 2194328d5752SMark Fasheh struct ocfs2_extent_list *right_leaf_el, *left_leaf_el; 2195328d5752SMark Fasheh struct ocfs2_extent_block *eb; 2196328d5752SMark Fasheh 2197328d5752SMark Fasheh *deleted = 0; 2198328d5752SMark Fasheh 2199328d5752SMark Fasheh right_leaf_el = path_leaf_el(right_path); 2200328d5752SMark Fasheh left_leaf_el = path_leaf_el(left_path); 2201328d5752SMark Fasheh root_bh = left_path->p_node[subtree_index].bh; 2202328d5752SMark Fasheh BUG_ON(root_bh != right_path->p_node[subtree_index].bh); 2203328d5752SMark Fasheh 2204328d5752SMark Fasheh if (!ocfs2_is_empty_extent(&left_leaf_el->l_recs[0])) 2205328d5752SMark Fasheh return 0; 2206328d5752SMark Fasheh 2207328d5752SMark Fasheh eb = (struct ocfs2_extent_block *)path_leaf_bh(right_path)->b_data; 2208328d5752SMark Fasheh if (ocfs2_is_empty_extent(&right_leaf_el->l_recs[0])) { 2209328d5752SMark Fasheh /* 2210328d5752SMark Fasheh * It's legal for us to proceed if the right leaf is 2211328d5752SMark Fasheh * the rightmost one and it has an empty extent. There 2212328d5752SMark Fasheh * are two cases to handle - whether the leaf will be 2213328d5752SMark Fasheh * empty after removal or not. If the leaf isn't empty 2214328d5752SMark Fasheh * then just remove the empty extent up front. The 2215328d5752SMark Fasheh * next block will handle empty leaves by flagging 2216328d5752SMark Fasheh * them for unlink. 2217328d5752SMark Fasheh * 2218328d5752SMark Fasheh * Non rightmost leaves will throw -EAGAIN and the 2219328d5752SMark Fasheh * caller can manually move the subtree and retry. 2220328d5752SMark Fasheh */ 2221328d5752SMark Fasheh 2222328d5752SMark Fasheh if (eb->h_next_leaf_blk != 0ULL) 2223328d5752SMark Fasheh return -EAGAIN; 2224328d5752SMark Fasheh 2225328d5752SMark Fasheh if (le16_to_cpu(right_leaf_el->l_next_free_rec) > 1) { 2226328d5752SMark Fasheh ret = ocfs2_journal_access(handle, inode, 2227328d5752SMark Fasheh path_leaf_bh(right_path), 2228328d5752SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 2229328d5752SMark Fasheh if (ret) { 2230328d5752SMark Fasheh mlog_errno(ret); 2231328d5752SMark Fasheh goto out; 2232328d5752SMark Fasheh } 2233328d5752SMark Fasheh 2234328d5752SMark Fasheh ocfs2_remove_empty_extent(right_leaf_el); 2235328d5752SMark Fasheh } else 2236328d5752SMark Fasheh right_has_empty = 1; 2237328d5752SMark Fasheh } 2238328d5752SMark Fasheh 2239328d5752SMark Fasheh if (eb->h_next_leaf_blk == 0ULL && 2240328d5752SMark Fasheh le16_to_cpu(right_leaf_el->l_next_free_rec) == 1) { 2241328d5752SMark Fasheh /* 2242328d5752SMark Fasheh * We have to update i_last_eb_blk during the meta 2243328d5752SMark Fasheh * data delete. 2244328d5752SMark Fasheh */ 2245*e7d4cb6bSTao Ma ret = ocfs2_journal_access(handle, inode, et_root_bh, 2246328d5752SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 2247328d5752SMark Fasheh if (ret) { 2248328d5752SMark Fasheh mlog_errno(ret); 2249328d5752SMark Fasheh goto out; 2250328d5752SMark Fasheh } 2251328d5752SMark Fasheh 2252328d5752SMark Fasheh del_right_subtree = 1; 2253328d5752SMark Fasheh } 2254328d5752SMark Fasheh 2255328d5752SMark Fasheh /* 2256328d5752SMark Fasheh * Getting here with an empty extent in the right path implies 2257328d5752SMark Fasheh * that it's the rightmost path and will be deleted. 2258328d5752SMark Fasheh */ 2259328d5752SMark Fasheh BUG_ON(right_has_empty && !del_right_subtree); 2260328d5752SMark Fasheh 2261328d5752SMark Fasheh ret = ocfs2_journal_access(handle, inode, root_bh, 2262328d5752SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 2263328d5752SMark Fasheh if (ret) { 2264328d5752SMark Fasheh mlog_errno(ret); 2265328d5752SMark Fasheh goto out; 2266328d5752SMark Fasheh } 2267328d5752SMark Fasheh 2268328d5752SMark Fasheh for(i = subtree_index + 1; i < path_num_items(right_path); i++) { 2269328d5752SMark Fasheh ret = ocfs2_journal_access(handle, inode, 2270328d5752SMark Fasheh right_path->p_node[i].bh, 2271328d5752SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 2272328d5752SMark Fasheh if (ret) { 2273328d5752SMark Fasheh mlog_errno(ret); 2274328d5752SMark Fasheh goto out; 2275328d5752SMark Fasheh } 2276328d5752SMark Fasheh 2277328d5752SMark Fasheh ret = ocfs2_journal_access(handle, inode, 2278328d5752SMark Fasheh left_path->p_node[i].bh, 2279328d5752SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 2280328d5752SMark Fasheh if (ret) { 2281328d5752SMark Fasheh mlog_errno(ret); 2282328d5752SMark Fasheh goto out; 2283328d5752SMark Fasheh } 2284328d5752SMark Fasheh } 2285328d5752SMark Fasheh 2286328d5752SMark Fasheh if (!right_has_empty) { 2287328d5752SMark Fasheh /* 2288328d5752SMark Fasheh * Only do this if we're moving a real 2289328d5752SMark Fasheh * record. Otherwise, the action is delayed until 2290328d5752SMark Fasheh * after removal of the right path in which case we 2291328d5752SMark Fasheh * can do a simple shift to remove the empty extent. 2292328d5752SMark Fasheh */ 2293328d5752SMark Fasheh ocfs2_rotate_leaf(left_leaf_el, &right_leaf_el->l_recs[0]); 2294328d5752SMark Fasheh memset(&right_leaf_el->l_recs[0], 0, 2295328d5752SMark Fasheh sizeof(struct ocfs2_extent_rec)); 2296328d5752SMark Fasheh } 2297328d5752SMark Fasheh if (eb->h_next_leaf_blk == 0ULL) { 2298328d5752SMark Fasheh /* 2299328d5752SMark Fasheh * Move recs over to get rid of empty extent, decrease 2300328d5752SMark Fasheh * next_free. This is allowed to remove the last 2301328d5752SMark Fasheh * extent in our leaf (setting l_next_free_rec to 2302328d5752SMark Fasheh * zero) - the delete code below won't care. 2303328d5752SMark Fasheh */ 2304328d5752SMark Fasheh ocfs2_remove_empty_extent(right_leaf_el); 2305328d5752SMark Fasheh } 2306328d5752SMark Fasheh 2307328d5752SMark Fasheh ret = ocfs2_journal_dirty(handle, path_leaf_bh(left_path)); 2308328d5752SMark Fasheh if (ret) 2309328d5752SMark Fasheh mlog_errno(ret); 2310328d5752SMark Fasheh ret = ocfs2_journal_dirty(handle, path_leaf_bh(right_path)); 2311328d5752SMark Fasheh if (ret) 2312328d5752SMark Fasheh mlog_errno(ret); 2313328d5752SMark Fasheh 2314328d5752SMark Fasheh if (del_right_subtree) { 2315328d5752SMark Fasheh ocfs2_unlink_subtree(inode, handle, left_path, right_path, 2316328d5752SMark Fasheh subtree_index, dealloc); 2317328d5752SMark Fasheh ocfs2_update_edge_lengths(inode, handle, left_path); 2318328d5752SMark Fasheh 2319328d5752SMark Fasheh eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data; 2320*e7d4cb6bSTao Ma ocfs2_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno)); 2321328d5752SMark Fasheh 2322328d5752SMark Fasheh /* 2323328d5752SMark Fasheh * Removal of the extent in the left leaf was skipped 2324328d5752SMark Fasheh * above so we could delete the right path 2325328d5752SMark Fasheh * 1st. 2326328d5752SMark Fasheh */ 2327328d5752SMark Fasheh if (right_has_empty) 2328328d5752SMark Fasheh ocfs2_remove_empty_extent(left_leaf_el); 2329328d5752SMark Fasheh 2330*e7d4cb6bSTao Ma ret = ocfs2_journal_dirty(handle, et_root_bh); 2331328d5752SMark Fasheh if (ret) 2332328d5752SMark Fasheh mlog_errno(ret); 2333328d5752SMark Fasheh 2334328d5752SMark Fasheh *deleted = 1; 2335328d5752SMark Fasheh } else 2336328d5752SMark Fasheh ocfs2_complete_edge_insert(inode, handle, left_path, right_path, 2337328d5752SMark Fasheh subtree_index); 2338328d5752SMark Fasheh 2339328d5752SMark Fasheh out: 2340328d5752SMark Fasheh return ret; 2341328d5752SMark Fasheh } 2342328d5752SMark Fasheh 2343328d5752SMark Fasheh /* 2344328d5752SMark Fasheh * Given a full path, determine what cpos value would return us a path 2345328d5752SMark Fasheh * containing the leaf immediately to the right of the current one. 2346328d5752SMark Fasheh * 2347328d5752SMark Fasheh * Will return zero if the path passed in is already the rightmost path. 2348328d5752SMark Fasheh * 2349328d5752SMark Fasheh * This looks similar, but is subtly different to 2350328d5752SMark Fasheh * ocfs2_find_cpos_for_left_leaf(). 2351328d5752SMark Fasheh */ 2352328d5752SMark Fasheh static int ocfs2_find_cpos_for_right_leaf(struct super_block *sb, 2353328d5752SMark Fasheh struct ocfs2_path *path, u32 *cpos) 2354328d5752SMark Fasheh { 2355328d5752SMark Fasheh int i, j, ret = 0; 2356328d5752SMark Fasheh u64 blkno; 2357328d5752SMark Fasheh struct ocfs2_extent_list *el; 2358328d5752SMark Fasheh 2359328d5752SMark Fasheh *cpos = 0; 2360328d5752SMark Fasheh 2361328d5752SMark Fasheh if (path->p_tree_depth == 0) 2362328d5752SMark Fasheh return 0; 2363328d5752SMark Fasheh 2364328d5752SMark Fasheh blkno = path_leaf_bh(path)->b_blocknr; 2365328d5752SMark Fasheh 2366328d5752SMark Fasheh /* Start at the tree node just above the leaf and work our way up. */ 2367328d5752SMark Fasheh i = path->p_tree_depth - 1; 2368328d5752SMark Fasheh while (i >= 0) { 2369328d5752SMark Fasheh int next_free; 2370328d5752SMark Fasheh 2371328d5752SMark Fasheh el = path->p_node[i].el; 2372328d5752SMark Fasheh 2373328d5752SMark Fasheh /* 2374328d5752SMark Fasheh * Find the extent record just after the one in our 2375328d5752SMark Fasheh * path. 2376328d5752SMark Fasheh */ 2377328d5752SMark Fasheh next_free = le16_to_cpu(el->l_next_free_rec); 2378328d5752SMark Fasheh for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) { 2379328d5752SMark Fasheh if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) { 2380328d5752SMark Fasheh if (j == (next_free - 1)) { 2381328d5752SMark Fasheh if (i == 0) { 2382328d5752SMark Fasheh /* 2383328d5752SMark Fasheh * We've determined that the 2384328d5752SMark Fasheh * path specified is already 2385328d5752SMark Fasheh * the rightmost one - return a 2386328d5752SMark Fasheh * cpos of zero. 2387328d5752SMark Fasheh */ 2388328d5752SMark Fasheh goto out; 2389328d5752SMark Fasheh } 2390328d5752SMark Fasheh /* 2391328d5752SMark Fasheh * The rightmost record points to our 2392328d5752SMark Fasheh * leaf - we need to travel up the 2393328d5752SMark Fasheh * tree one level. 2394328d5752SMark Fasheh */ 2395328d5752SMark Fasheh goto next_node; 2396328d5752SMark Fasheh } 2397328d5752SMark Fasheh 2398328d5752SMark Fasheh *cpos = le32_to_cpu(el->l_recs[j + 1].e_cpos); 2399328d5752SMark Fasheh goto out; 2400328d5752SMark Fasheh } 2401328d5752SMark Fasheh } 2402328d5752SMark Fasheh 2403328d5752SMark Fasheh /* 2404328d5752SMark Fasheh * If we got here, we never found a valid node where 2405328d5752SMark Fasheh * the tree indicated one should be. 2406328d5752SMark Fasheh */ 2407328d5752SMark Fasheh ocfs2_error(sb, 2408328d5752SMark Fasheh "Invalid extent tree at extent block %llu\n", 2409328d5752SMark Fasheh (unsigned long long)blkno); 2410328d5752SMark Fasheh ret = -EROFS; 2411328d5752SMark Fasheh goto out; 2412328d5752SMark Fasheh 2413328d5752SMark Fasheh next_node: 2414328d5752SMark Fasheh blkno = path->p_node[i].bh->b_blocknr; 2415328d5752SMark Fasheh i--; 2416328d5752SMark Fasheh } 2417328d5752SMark Fasheh 2418328d5752SMark Fasheh out: 2419328d5752SMark Fasheh return ret; 2420328d5752SMark Fasheh } 2421328d5752SMark Fasheh 2422328d5752SMark Fasheh static int ocfs2_rotate_rightmost_leaf_left(struct inode *inode, 2423328d5752SMark Fasheh handle_t *handle, 2424328d5752SMark Fasheh struct buffer_head *bh, 2425328d5752SMark Fasheh struct ocfs2_extent_list *el) 2426328d5752SMark Fasheh { 2427328d5752SMark Fasheh int ret; 2428328d5752SMark Fasheh 2429328d5752SMark Fasheh if (!ocfs2_is_empty_extent(&el->l_recs[0])) 2430328d5752SMark Fasheh return 0; 2431328d5752SMark Fasheh 2432328d5752SMark Fasheh ret = ocfs2_journal_access(handle, inode, bh, 2433328d5752SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 2434328d5752SMark Fasheh if (ret) { 2435328d5752SMark Fasheh mlog_errno(ret); 2436328d5752SMark Fasheh goto out; 2437328d5752SMark Fasheh } 2438328d5752SMark Fasheh 2439328d5752SMark Fasheh ocfs2_remove_empty_extent(el); 2440328d5752SMark Fasheh 2441328d5752SMark Fasheh ret = ocfs2_journal_dirty(handle, bh); 2442328d5752SMark Fasheh if (ret) 2443328d5752SMark Fasheh mlog_errno(ret); 2444328d5752SMark Fasheh 2445328d5752SMark Fasheh out: 2446328d5752SMark Fasheh return ret; 2447328d5752SMark Fasheh } 2448328d5752SMark Fasheh 2449328d5752SMark Fasheh static int __ocfs2_rotate_tree_left(struct inode *inode, 2450328d5752SMark Fasheh handle_t *handle, int orig_credits, 2451328d5752SMark Fasheh struct ocfs2_path *path, 2452328d5752SMark Fasheh struct ocfs2_cached_dealloc_ctxt *dealloc, 2453*e7d4cb6bSTao Ma struct ocfs2_path **empty_extent_path, 2454*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et) 2455328d5752SMark Fasheh { 2456328d5752SMark Fasheh int ret, subtree_root, deleted; 2457328d5752SMark Fasheh u32 right_cpos; 2458328d5752SMark Fasheh struct ocfs2_path *left_path = NULL; 2459328d5752SMark Fasheh struct ocfs2_path *right_path = NULL; 2460328d5752SMark Fasheh 2461328d5752SMark Fasheh BUG_ON(!ocfs2_is_empty_extent(&(path_leaf_el(path)->l_recs[0]))); 2462328d5752SMark Fasheh 2463328d5752SMark Fasheh *empty_extent_path = NULL; 2464328d5752SMark Fasheh 2465328d5752SMark Fasheh ret = ocfs2_find_cpos_for_right_leaf(inode->i_sb, path, 2466328d5752SMark Fasheh &right_cpos); 2467328d5752SMark Fasheh if (ret) { 2468328d5752SMark Fasheh mlog_errno(ret); 2469328d5752SMark Fasheh goto out; 2470328d5752SMark Fasheh } 2471328d5752SMark Fasheh 2472328d5752SMark Fasheh left_path = ocfs2_new_path(path_root_bh(path), 2473328d5752SMark Fasheh path_root_el(path)); 2474328d5752SMark Fasheh if (!left_path) { 2475328d5752SMark Fasheh ret = -ENOMEM; 2476328d5752SMark Fasheh mlog_errno(ret); 2477328d5752SMark Fasheh goto out; 2478328d5752SMark Fasheh } 2479328d5752SMark Fasheh 2480328d5752SMark Fasheh ocfs2_cp_path(left_path, path); 2481328d5752SMark Fasheh 2482328d5752SMark Fasheh right_path = ocfs2_new_path(path_root_bh(path), 2483328d5752SMark Fasheh path_root_el(path)); 2484328d5752SMark Fasheh if (!right_path) { 2485328d5752SMark Fasheh ret = -ENOMEM; 2486328d5752SMark Fasheh mlog_errno(ret); 2487328d5752SMark Fasheh goto out; 2488328d5752SMark Fasheh } 2489328d5752SMark Fasheh 2490328d5752SMark Fasheh while (right_cpos) { 2491328d5752SMark Fasheh ret = ocfs2_find_path(inode, right_path, right_cpos); 2492328d5752SMark Fasheh if (ret) { 2493328d5752SMark Fasheh mlog_errno(ret); 2494328d5752SMark Fasheh goto out; 2495328d5752SMark Fasheh } 2496328d5752SMark Fasheh 2497328d5752SMark Fasheh subtree_root = ocfs2_find_subtree_root(inode, left_path, 2498328d5752SMark Fasheh right_path); 2499328d5752SMark Fasheh 2500328d5752SMark Fasheh mlog(0, "Subtree root at index %d (blk %llu, depth %d)\n", 2501328d5752SMark Fasheh subtree_root, 2502328d5752SMark Fasheh (unsigned long long) 2503328d5752SMark Fasheh right_path->p_node[subtree_root].bh->b_blocknr, 2504328d5752SMark Fasheh right_path->p_tree_depth); 2505328d5752SMark Fasheh 2506328d5752SMark Fasheh ret = ocfs2_extend_rotate_transaction(handle, subtree_root, 2507328d5752SMark Fasheh orig_credits, left_path); 2508328d5752SMark Fasheh if (ret) { 2509328d5752SMark Fasheh mlog_errno(ret); 2510328d5752SMark Fasheh goto out; 2511328d5752SMark Fasheh } 2512328d5752SMark Fasheh 2513e8aed345SMark Fasheh /* 2514e8aed345SMark Fasheh * Caller might still want to make changes to the 2515e8aed345SMark Fasheh * tree root, so re-add it to the journal here. 2516e8aed345SMark Fasheh */ 2517e8aed345SMark Fasheh ret = ocfs2_journal_access(handle, inode, 2518e8aed345SMark Fasheh path_root_bh(left_path), 2519e8aed345SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 2520e8aed345SMark Fasheh if (ret) { 2521e8aed345SMark Fasheh mlog_errno(ret); 2522e8aed345SMark Fasheh goto out; 2523e8aed345SMark Fasheh } 2524e8aed345SMark Fasheh 2525328d5752SMark Fasheh ret = ocfs2_rotate_subtree_left(inode, handle, left_path, 2526328d5752SMark Fasheh right_path, subtree_root, 2527*e7d4cb6bSTao Ma dealloc, &deleted, et); 2528328d5752SMark Fasheh if (ret == -EAGAIN) { 2529328d5752SMark Fasheh /* 2530328d5752SMark Fasheh * The rotation has to temporarily stop due to 2531328d5752SMark Fasheh * the right subtree having an empty 2532328d5752SMark Fasheh * extent. Pass it back to the caller for a 2533328d5752SMark Fasheh * fixup. 2534328d5752SMark Fasheh */ 2535328d5752SMark Fasheh *empty_extent_path = right_path; 2536328d5752SMark Fasheh right_path = NULL; 2537328d5752SMark Fasheh goto out; 2538328d5752SMark Fasheh } 2539328d5752SMark Fasheh if (ret) { 2540328d5752SMark Fasheh mlog_errno(ret); 2541328d5752SMark Fasheh goto out; 2542328d5752SMark Fasheh } 2543328d5752SMark Fasheh 2544328d5752SMark Fasheh /* 2545328d5752SMark Fasheh * The subtree rotate might have removed records on 2546328d5752SMark Fasheh * the rightmost edge. If so, then rotation is 2547328d5752SMark Fasheh * complete. 2548328d5752SMark Fasheh */ 2549328d5752SMark Fasheh if (deleted) 2550328d5752SMark Fasheh break; 2551328d5752SMark Fasheh 2552328d5752SMark Fasheh ocfs2_mv_path(left_path, right_path); 2553328d5752SMark Fasheh 2554328d5752SMark Fasheh ret = ocfs2_find_cpos_for_right_leaf(inode->i_sb, left_path, 2555328d5752SMark Fasheh &right_cpos); 2556328d5752SMark Fasheh if (ret) { 2557328d5752SMark Fasheh mlog_errno(ret); 2558328d5752SMark Fasheh goto out; 2559328d5752SMark Fasheh } 2560328d5752SMark Fasheh } 2561328d5752SMark Fasheh 2562328d5752SMark Fasheh out: 2563328d5752SMark Fasheh ocfs2_free_path(right_path); 2564328d5752SMark Fasheh ocfs2_free_path(left_path); 2565328d5752SMark Fasheh 2566328d5752SMark Fasheh return ret; 2567328d5752SMark Fasheh } 2568328d5752SMark Fasheh 2569328d5752SMark Fasheh static int ocfs2_remove_rightmost_path(struct inode *inode, handle_t *handle, 2570328d5752SMark Fasheh struct ocfs2_path *path, 2571*e7d4cb6bSTao Ma struct ocfs2_cached_dealloc_ctxt *dealloc, 2572*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et) 2573328d5752SMark Fasheh { 2574328d5752SMark Fasheh int ret, subtree_index; 2575328d5752SMark Fasheh u32 cpos; 2576328d5752SMark Fasheh struct ocfs2_path *left_path = NULL; 2577328d5752SMark Fasheh struct ocfs2_extent_block *eb; 2578328d5752SMark Fasheh struct ocfs2_extent_list *el; 2579328d5752SMark Fasheh 2580328d5752SMark Fasheh 2581*e7d4cb6bSTao Ma ret = et->eops->sanity_check(inode, et); 2582*e7d4cb6bSTao Ma if (ret) 2583*e7d4cb6bSTao Ma goto out; 2584328d5752SMark Fasheh /* 2585328d5752SMark Fasheh * There's two ways we handle this depending on 2586328d5752SMark Fasheh * whether path is the only existing one. 2587328d5752SMark Fasheh */ 2588328d5752SMark Fasheh ret = ocfs2_extend_rotate_transaction(handle, 0, 2589328d5752SMark Fasheh handle->h_buffer_credits, 2590328d5752SMark Fasheh path); 2591328d5752SMark Fasheh if (ret) { 2592328d5752SMark Fasheh mlog_errno(ret); 2593328d5752SMark Fasheh goto out; 2594328d5752SMark Fasheh } 2595328d5752SMark Fasheh 2596328d5752SMark Fasheh ret = ocfs2_journal_access_path(inode, handle, path); 2597328d5752SMark Fasheh if (ret) { 2598328d5752SMark Fasheh mlog_errno(ret); 2599328d5752SMark Fasheh goto out; 2600328d5752SMark Fasheh } 2601328d5752SMark Fasheh 2602328d5752SMark Fasheh ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, path, &cpos); 2603328d5752SMark Fasheh if (ret) { 2604328d5752SMark Fasheh mlog_errno(ret); 2605328d5752SMark Fasheh goto out; 2606328d5752SMark Fasheh } 2607328d5752SMark Fasheh 2608328d5752SMark Fasheh if (cpos) { 2609328d5752SMark Fasheh /* 2610328d5752SMark Fasheh * We have a path to the left of this one - it needs 2611328d5752SMark Fasheh * an update too. 2612328d5752SMark Fasheh */ 2613328d5752SMark Fasheh left_path = ocfs2_new_path(path_root_bh(path), 2614328d5752SMark Fasheh path_root_el(path)); 2615328d5752SMark Fasheh if (!left_path) { 2616328d5752SMark Fasheh ret = -ENOMEM; 2617328d5752SMark Fasheh mlog_errno(ret); 2618328d5752SMark Fasheh goto out; 2619328d5752SMark Fasheh } 2620328d5752SMark Fasheh 2621328d5752SMark Fasheh ret = ocfs2_find_path(inode, left_path, cpos); 2622328d5752SMark Fasheh if (ret) { 2623328d5752SMark Fasheh mlog_errno(ret); 2624328d5752SMark Fasheh goto out; 2625328d5752SMark Fasheh } 2626328d5752SMark Fasheh 2627328d5752SMark Fasheh ret = ocfs2_journal_access_path(inode, handle, left_path); 2628328d5752SMark Fasheh if (ret) { 2629328d5752SMark Fasheh mlog_errno(ret); 2630328d5752SMark Fasheh goto out; 2631328d5752SMark Fasheh } 2632328d5752SMark Fasheh 2633328d5752SMark Fasheh subtree_index = ocfs2_find_subtree_root(inode, left_path, path); 2634328d5752SMark Fasheh 2635328d5752SMark Fasheh ocfs2_unlink_subtree(inode, handle, left_path, path, 2636328d5752SMark Fasheh subtree_index, dealloc); 2637328d5752SMark Fasheh ocfs2_update_edge_lengths(inode, handle, left_path); 2638328d5752SMark Fasheh 2639328d5752SMark Fasheh eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data; 2640*e7d4cb6bSTao Ma ocfs2_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno)); 2641328d5752SMark Fasheh } else { 2642328d5752SMark Fasheh /* 2643328d5752SMark Fasheh * 'path' is also the leftmost path which 2644328d5752SMark Fasheh * means it must be the only one. This gets 2645328d5752SMark Fasheh * handled differently because we want to 2646328d5752SMark Fasheh * revert the inode back to having extents 2647328d5752SMark Fasheh * in-line. 2648328d5752SMark Fasheh */ 2649328d5752SMark Fasheh ocfs2_unlink_path(inode, handle, dealloc, path, 1); 2650328d5752SMark Fasheh 2651*e7d4cb6bSTao Ma el = et->root_el; 2652328d5752SMark Fasheh el->l_tree_depth = 0; 2653328d5752SMark Fasheh el->l_next_free_rec = 0; 2654328d5752SMark Fasheh memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec)); 2655328d5752SMark Fasheh 2656*e7d4cb6bSTao Ma ocfs2_set_last_eb_blk(et, 0); 2657328d5752SMark Fasheh } 2658328d5752SMark Fasheh 2659328d5752SMark Fasheh ocfs2_journal_dirty(handle, path_root_bh(path)); 2660328d5752SMark Fasheh 2661328d5752SMark Fasheh out: 2662328d5752SMark Fasheh ocfs2_free_path(left_path); 2663328d5752SMark Fasheh return ret; 2664328d5752SMark Fasheh } 2665328d5752SMark Fasheh 2666328d5752SMark Fasheh /* 2667328d5752SMark Fasheh * Left rotation of btree records. 2668328d5752SMark Fasheh * 2669328d5752SMark Fasheh * In many ways, this is (unsurprisingly) the opposite of right 2670328d5752SMark Fasheh * rotation. We start at some non-rightmost path containing an empty 2671328d5752SMark Fasheh * extent in the leaf block. The code works its way to the rightmost 2672328d5752SMark Fasheh * path by rotating records to the left in every subtree. 2673328d5752SMark Fasheh * 2674328d5752SMark Fasheh * This is used by any code which reduces the number of extent records 2675328d5752SMark Fasheh * in a leaf. After removal, an empty record should be placed in the 2676328d5752SMark Fasheh * leftmost list position. 2677328d5752SMark Fasheh * 2678328d5752SMark Fasheh * This won't handle a length update of the rightmost path records if 2679328d5752SMark Fasheh * the rightmost tree leaf record is removed so the caller is 2680328d5752SMark Fasheh * responsible for detecting and correcting that. 2681328d5752SMark Fasheh */ 2682328d5752SMark Fasheh static int ocfs2_rotate_tree_left(struct inode *inode, handle_t *handle, 2683328d5752SMark Fasheh struct ocfs2_path *path, 2684*e7d4cb6bSTao Ma struct ocfs2_cached_dealloc_ctxt *dealloc, 2685*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et) 2686328d5752SMark Fasheh { 2687328d5752SMark Fasheh int ret, orig_credits = handle->h_buffer_credits; 2688328d5752SMark Fasheh struct ocfs2_path *tmp_path = NULL, *restart_path = NULL; 2689328d5752SMark Fasheh struct ocfs2_extent_block *eb; 2690328d5752SMark Fasheh struct ocfs2_extent_list *el; 2691328d5752SMark Fasheh 2692328d5752SMark Fasheh el = path_leaf_el(path); 2693328d5752SMark Fasheh if (!ocfs2_is_empty_extent(&el->l_recs[0])) 2694328d5752SMark Fasheh return 0; 2695328d5752SMark Fasheh 2696328d5752SMark Fasheh if (path->p_tree_depth == 0) { 2697328d5752SMark Fasheh rightmost_no_delete: 2698328d5752SMark Fasheh /* 2699*e7d4cb6bSTao Ma * Inline extents. This is trivially handled, so do 2700328d5752SMark Fasheh * it up front. 2701328d5752SMark Fasheh */ 2702328d5752SMark Fasheh ret = ocfs2_rotate_rightmost_leaf_left(inode, handle, 2703328d5752SMark Fasheh path_leaf_bh(path), 2704328d5752SMark Fasheh path_leaf_el(path)); 2705328d5752SMark Fasheh if (ret) 2706328d5752SMark Fasheh mlog_errno(ret); 2707328d5752SMark Fasheh goto out; 2708328d5752SMark Fasheh } 2709328d5752SMark Fasheh 2710328d5752SMark Fasheh /* 2711328d5752SMark Fasheh * Handle rightmost branch now. There's several cases: 2712328d5752SMark Fasheh * 1) simple rotation leaving records in there. That's trivial. 2713328d5752SMark Fasheh * 2) rotation requiring a branch delete - there's no more 2714328d5752SMark Fasheh * records left. Two cases of this: 2715328d5752SMark Fasheh * a) There are branches to the left. 2716328d5752SMark Fasheh * b) This is also the leftmost (the only) branch. 2717328d5752SMark Fasheh * 2718328d5752SMark Fasheh * 1) is handled via ocfs2_rotate_rightmost_leaf_left() 2719328d5752SMark Fasheh * 2a) we need the left branch so that we can update it with the unlink 2720328d5752SMark Fasheh * 2b) we need to bring the inode back to inline extents. 2721328d5752SMark Fasheh */ 2722328d5752SMark Fasheh 2723328d5752SMark Fasheh eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data; 2724328d5752SMark Fasheh el = &eb->h_list; 2725328d5752SMark Fasheh if (eb->h_next_leaf_blk == 0) { 2726328d5752SMark Fasheh /* 2727328d5752SMark Fasheh * This gets a bit tricky if we're going to delete the 2728328d5752SMark Fasheh * rightmost path. Get the other cases out of the way 2729328d5752SMark Fasheh * 1st. 2730328d5752SMark Fasheh */ 2731328d5752SMark Fasheh if (le16_to_cpu(el->l_next_free_rec) > 1) 2732328d5752SMark Fasheh goto rightmost_no_delete; 2733328d5752SMark Fasheh 2734328d5752SMark Fasheh if (le16_to_cpu(el->l_next_free_rec) == 0) { 2735328d5752SMark Fasheh ret = -EIO; 2736328d5752SMark Fasheh ocfs2_error(inode->i_sb, 2737328d5752SMark Fasheh "Inode %llu has empty extent block at %llu", 2738328d5752SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, 2739328d5752SMark Fasheh (unsigned long long)le64_to_cpu(eb->h_blkno)); 2740328d5752SMark Fasheh goto out; 2741328d5752SMark Fasheh } 2742328d5752SMark Fasheh 2743328d5752SMark Fasheh /* 2744328d5752SMark Fasheh * XXX: The caller can not trust "path" any more after 2745328d5752SMark Fasheh * this as it will have been deleted. What do we do? 2746328d5752SMark Fasheh * 2747328d5752SMark Fasheh * In theory the rotate-for-merge code will never get 2748328d5752SMark Fasheh * here because it'll always ask for a rotate in a 2749328d5752SMark Fasheh * nonempty list. 2750328d5752SMark Fasheh */ 2751328d5752SMark Fasheh 2752328d5752SMark Fasheh ret = ocfs2_remove_rightmost_path(inode, handle, path, 2753*e7d4cb6bSTao Ma dealloc, et); 2754328d5752SMark Fasheh if (ret) 2755328d5752SMark Fasheh mlog_errno(ret); 2756328d5752SMark Fasheh goto out; 2757328d5752SMark Fasheh } 2758328d5752SMark Fasheh 2759328d5752SMark Fasheh /* 2760328d5752SMark Fasheh * Now we can loop, remembering the path we get from -EAGAIN 2761328d5752SMark Fasheh * and restarting from there. 2762328d5752SMark Fasheh */ 2763328d5752SMark Fasheh try_rotate: 2764328d5752SMark Fasheh ret = __ocfs2_rotate_tree_left(inode, handle, orig_credits, path, 2765*e7d4cb6bSTao Ma dealloc, &restart_path, et); 2766328d5752SMark Fasheh if (ret && ret != -EAGAIN) { 2767328d5752SMark Fasheh mlog_errno(ret); 2768328d5752SMark Fasheh goto out; 2769328d5752SMark Fasheh } 2770328d5752SMark Fasheh 2771328d5752SMark Fasheh while (ret == -EAGAIN) { 2772328d5752SMark Fasheh tmp_path = restart_path; 2773328d5752SMark Fasheh restart_path = NULL; 2774328d5752SMark Fasheh 2775328d5752SMark Fasheh ret = __ocfs2_rotate_tree_left(inode, handle, orig_credits, 2776328d5752SMark Fasheh tmp_path, dealloc, 2777*e7d4cb6bSTao Ma &restart_path, et); 2778328d5752SMark Fasheh if (ret && ret != -EAGAIN) { 2779328d5752SMark Fasheh mlog_errno(ret); 2780328d5752SMark Fasheh goto out; 2781328d5752SMark Fasheh } 2782328d5752SMark Fasheh 2783328d5752SMark Fasheh ocfs2_free_path(tmp_path); 2784328d5752SMark Fasheh tmp_path = NULL; 2785328d5752SMark Fasheh 2786328d5752SMark Fasheh if (ret == 0) 2787328d5752SMark Fasheh goto try_rotate; 2788328d5752SMark Fasheh } 2789328d5752SMark Fasheh 2790328d5752SMark Fasheh out: 2791328d5752SMark Fasheh ocfs2_free_path(tmp_path); 2792328d5752SMark Fasheh ocfs2_free_path(restart_path); 2793328d5752SMark Fasheh return ret; 2794328d5752SMark Fasheh } 2795328d5752SMark Fasheh 2796328d5752SMark Fasheh static void ocfs2_cleanup_merge(struct ocfs2_extent_list *el, 2797328d5752SMark Fasheh int index) 2798328d5752SMark Fasheh { 2799328d5752SMark Fasheh struct ocfs2_extent_rec *rec = &el->l_recs[index]; 2800328d5752SMark Fasheh unsigned int size; 2801328d5752SMark Fasheh 2802328d5752SMark Fasheh if (rec->e_leaf_clusters == 0) { 2803328d5752SMark Fasheh /* 2804328d5752SMark Fasheh * We consumed all of the merged-from record. An empty 2805328d5752SMark Fasheh * extent cannot exist anywhere but the 1st array 2806328d5752SMark Fasheh * position, so move things over if the merged-from 2807328d5752SMark Fasheh * record doesn't occupy that position. 2808328d5752SMark Fasheh * 2809328d5752SMark Fasheh * This creates a new empty extent so the caller 2810328d5752SMark Fasheh * should be smart enough to have removed any existing 2811328d5752SMark Fasheh * ones. 2812328d5752SMark Fasheh */ 2813328d5752SMark Fasheh if (index > 0) { 2814328d5752SMark Fasheh BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0])); 2815328d5752SMark Fasheh size = index * sizeof(struct ocfs2_extent_rec); 2816328d5752SMark Fasheh memmove(&el->l_recs[1], &el->l_recs[0], size); 2817328d5752SMark Fasheh } 2818328d5752SMark Fasheh 2819328d5752SMark Fasheh /* 2820328d5752SMark Fasheh * Always memset - the caller doesn't check whether it 2821328d5752SMark Fasheh * created an empty extent, so there could be junk in 2822328d5752SMark Fasheh * the other fields. 2823328d5752SMark Fasheh */ 2824328d5752SMark Fasheh memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec)); 2825328d5752SMark Fasheh } 2826328d5752SMark Fasheh } 2827328d5752SMark Fasheh 2828677b9752STao Ma static int ocfs2_get_right_path(struct inode *inode, 2829677b9752STao Ma struct ocfs2_path *left_path, 2830677b9752STao Ma struct ocfs2_path **ret_right_path) 2831328d5752SMark Fasheh { 2832328d5752SMark Fasheh int ret; 2833677b9752STao Ma u32 right_cpos; 2834677b9752STao Ma struct ocfs2_path *right_path = NULL; 2835677b9752STao Ma struct ocfs2_extent_list *left_el; 2836677b9752STao Ma 2837677b9752STao Ma *ret_right_path = NULL; 2838677b9752STao Ma 2839677b9752STao Ma /* This function shouldn't be called for non-trees. */ 2840677b9752STao Ma BUG_ON(left_path->p_tree_depth == 0); 2841677b9752STao Ma 2842677b9752STao Ma left_el = path_leaf_el(left_path); 2843677b9752STao Ma BUG_ON(left_el->l_next_free_rec != left_el->l_count); 2844677b9752STao Ma 2845677b9752STao Ma ret = ocfs2_find_cpos_for_right_leaf(inode->i_sb, left_path, 2846677b9752STao Ma &right_cpos); 2847677b9752STao Ma if (ret) { 2848677b9752STao Ma mlog_errno(ret); 2849677b9752STao Ma goto out; 2850677b9752STao Ma } 2851677b9752STao Ma 2852677b9752STao Ma /* This function shouldn't be called for the rightmost leaf. */ 2853677b9752STao Ma BUG_ON(right_cpos == 0); 2854677b9752STao Ma 2855677b9752STao Ma right_path = ocfs2_new_path(path_root_bh(left_path), 2856677b9752STao Ma path_root_el(left_path)); 2857677b9752STao Ma if (!right_path) { 2858677b9752STao Ma ret = -ENOMEM; 2859677b9752STao Ma mlog_errno(ret); 2860677b9752STao Ma goto out; 2861677b9752STao Ma } 2862677b9752STao Ma 2863677b9752STao Ma ret = ocfs2_find_path(inode, right_path, right_cpos); 2864677b9752STao Ma if (ret) { 2865677b9752STao Ma mlog_errno(ret); 2866677b9752STao Ma goto out; 2867677b9752STao Ma } 2868677b9752STao Ma 2869677b9752STao Ma *ret_right_path = right_path; 2870677b9752STao Ma out: 2871677b9752STao Ma if (ret) 2872677b9752STao Ma ocfs2_free_path(right_path); 2873677b9752STao Ma return ret; 2874677b9752STao Ma } 2875677b9752STao Ma 2876677b9752STao Ma /* 2877677b9752STao Ma * Remove split_rec clusters from the record at index and merge them 2878677b9752STao Ma * onto the beginning of the record "next" to it. 2879677b9752STao Ma * For index < l_count - 1, the next means the extent rec at index + 1. 2880677b9752STao Ma * For index == l_count - 1, the "next" means the 1st extent rec of the 2881677b9752STao Ma * next extent block. 2882677b9752STao Ma */ 2883677b9752STao Ma static int ocfs2_merge_rec_right(struct inode *inode, 2884677b9752STao Ma struct ocfs2_path *left_path, 2885677b9752STao Ma handle_t *handle, 2886677b9752STao Ma struct ocfs2_extent_rec *split_rec, 2887677b9752STao Ma int index) 2888677b9752STao Ma { 2889677b9752STao Ma int ret, next_free, i; 2890328d5752SMark Fasheh unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters); 2891328d5752SMark Fasheh struct ocfs2_extent_rec *left_rec; 2892328d5752SMark Fasheh struct ocfs2_extent_rec *right_rec; 2893677b9752STao Ma struct ocfs2_extent_list *right_el; 2894677b9752STao Ma struct ocfs2_path *right_path = NULL; 2895677b9752STao Ma int subtree_index = 0; 2896677b9752STao Ma struct ocfs2_extent_list *el = path_leaf_el(left_path); 2897677b9752STao Ma struct buffer_head *bh = path_leaf_bh(left_path); 2898677b9752STao Ma struct buffer_head *root_bh = NULL; 2899328d5752SMark Fasheh 2900328d5752SMark Fasheh BUG_ON(index >= le16_to_cpu(el->l_next_free_rec)); 2901328d5752SMark Fasheh left_rec = &el->l_recs[index]; 2902677b9752STao Ma 29039d8df6aaSAl Viro if (index == le16_to_cpu(el->l_next_free_rec) - 1 && 2904677b9752STao Ma le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count)) { 2905677b9752STao Ma /* we meet with a cross extent block merge. */ 2906677b9752STao Ma ret = ocfs2_get_right_path(inode, left_path, &right_path); 2907677b9752STao Ma if (ret) { 2908677b9752STao Ma mlog_errno(ret); 2909677b9752STao Ma goto out; 2910677b9752STao Ma } 2911677b9752STao Ma 2912677b9752STao Ma right_el = path_leaf_el(right_path); 2913677b9752STao Ma next_free = le16_to_cpu(right_el->l_next_free_rec); 2914677b9752STao Ma BUG_ON(next_free <= 0); 2915677b9752STao Ma right_rec = &right_el->l_recs[0]; 2916677b9752STao Ma if (ocfs2_is_empty_extent(right_rec)) { 29179d8df6aaSAl Viro BUG_ON(next_free <= 1); 2918677b9752STao Ma right_rec = &right_el->l_recs[1]; 2919677b9752STao Ma } 2920677b9752STao Ma 2921677b9752STao Ma BUG_ON(le32_to_cpu(left_rec->e_cpos) + 2922677b9752STao Ma le16_to_cpu(left_rec->e_leaf_clusters) != 2923677b9752STao Ma le32_to_cpu(right_rec->e_cpos)); 2924677b9752STao Ma 2925677b9752STao Ma subtree_index = ocfs2_find_subtree_root(inode, 2926677b9752STao Ma left_path, right_path); 2927677b9752STao Ma 2928677b9752STao Ma ret = ocfs2_extend_rotate_transaction(handle, subtree_index, 2929677b9752STao Ma handle->h_buffer_credits, 2930677b9752STao Ma right_path); 2931677b9752STao Ma if (ret) { 2932677b9752STao Ma mlog_errno(ret); 2933677b9752STao Ma goto out; 2934677b9752STao Ma } 2935677b9752STao Ma 2936677b9752STao Ma root_bh = left_path->p_node[subtree_index].bh; 2937677b9752STao Ma BUG_ON(root_bh != right_path->p_node[subtree_index].bh); 2938677b9752STao Ma 2939677b9752STao Ma ret = ocfs2_journal_access(handle, inode, root_bh, 2940677b9752STao Ma OCFS2_JOURNAL_ACCESS_WRITE); 2941677b9752STao Ma if (ret) { 2942677b9752STao Ma mlog_errno(ret); 2943677b9752STao Ma goto out; 2944677b9752STao Ma } 2945677b9752STao Ma 2946677b9752STao Ma for (i = subtree_index + 1; 2947677b9752STao Ma i < path_num_items(right_path); i++) { 2948677b9752STao Ma ret = ocfs2_journal_access(handle, inode, 2949677b9752STao Ma right_path->p_node[i].bh, 2950677b9752STao Ma OCFS2_JOURNAL_ACCESS_WRITE); 2951677b9752STao Ma if (ret) { 2952677b9752STao Ma mlog_errno(ret); 2953677b9752STao Ma goto out; 2954677b9752STao Ma } 2955677b9752STao Ma 2956677b9752STao Ma ret = ocfs2_journal_access(handle, inode, 2957677b9752STao Ma left_path->p_node[i].bh, 2958677b9752STao Ma OCFS2_JOURNAL_ACCESS_WRITE); 2959677b9752STao Ma if (ret) { 2960677b9752STao Ma mlog_errno(ret); 2961677b9752STao Ma goto out; 2962677b9752STao Ma } 2963677b9752STao Ma } 2964677b9752STao Ma 2965677b9752STao Ma } else { 2966677b9752STao Ma BUG_ON(index == le16_to_cpu(el->l_next_free_rec) - 1); 2967328d5752SMark Fasheh right_rec = &el->l_recs[index + 1]; 2968677b9752STao Ma } 2969328d5752SMark Fasheh 2970328d5752SMark Fasheh ret = ocfs2_journal_access(handle, inode, bh, 2971328d5752SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 2972328d5752SMark Fasheh if (ret) { 2973328d5752SMark Fasheh mlog_errno(ret); 2974328d5752SMark Fasheh goto out; 2975328d5752SMark Fasheh } 2976328d5752SMark Fasheh 2977328d5752SMark Fasheh le16_add_cpu(&left_rec->e_leaf_clusters, -split_clusters); 2978328d5752SMark Fasheh 2979328d5752SMark Fasheh le32_add_cpu(&right_rec->e_cpos, -split_clusters); 2980328d5752SMark Fasheh le64_add_cpu(&right_rec->e_blkno, 2981328d5752SMark Fasheh -ocfs2_clusters_to_blocks(inode->i_sb, split_clusters)); 2982328d5752SMark Fasheh le16_add_cpu(&right_rec->e_leaf_clusters, split_clusters); 2983328d5752SMark Fasheh 2984328d5752SMark Fasheh ocfs2_cleanup_merge(el, index); 2985328d5752SMark Fasheh 2986328d5752SMark Fasheh ret = ocfs2_journal_dirty(handle, bh); 2987328d5752SMark Fasheh if (ret) 2988328d5752SMark Fasheh mlog_errno(ret); 2989328d5752SMark Fasheh 2990677b9752STao Ma if (right_path) { 2991677b9752STao Ma ret = ocfs2_journal_dirty(handle, path_leaf_bh(right_path)); 2992677b9752STao Ma if (ret) 2993677b9752STao Ma mlog_errno(ret); 2994677b9752STao Ma 2995677b9752STao Ma ocfs2_complete_edge_insert(inode, handle, left_path, 2996677b9752STao Ma right_path, subtree_index); 2997677b9752STao Ma } 2998328d5752SMark Fasheh out: 2999677b9752STao Ma if (right_path) 3000677b9752STao Ma ocfs2_free_path(right_path); 3001677b9752STao Ma return ret; 3002677b9752STao Ma } 3003677b9752STao Ma 3004677b9752STao Ma static int ocfs2_get_left_path(struct inode *inode, 3005677b9752STao Ma struct ocfs2_path *right_path, 3006677b9752STao Ma struct ocfs2_path **ret_left_path) 3007677b9752STao Ma { 3008677b9752STao Ma int ret; 3009677b9752STao Ma u32 left_cpos; 3010677b9752STao Ma struct ocfs2_path *left_path = NULL; 3011677b9752STao Ma 3012677b9752STao Ma *ret_left_path = NULL; 3013677b9752STao Ma 3014677b9752STao Ma /* This function shouldn't be called for non-trees. */ 3015677b9752STao Ma BUG_ON(right_path->p_tree_depth == 0); 3016677b9752STao Ma 3017677b9752STao Ma ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, 3018677b9752STao Ma right_path, &left_cpos); 3019677b9752STao Ma if (ret) { 3020677b9752STao Ma mlog_errno(ret); 3021677b9752STao Ma goto out; 3022677b9752STao Ma } 3023677b9752STao Ma 3024677b9752STao Ma /* This function shouldn't be called for the leftmost leaf. */ 3025677b9752STao Ma BUG_ON(left_cpos == 0); 3026677b9752STao Ma 3027677b9752STao Ma left_path = ocfs2_new_path(path_root_bh(right_path), 3028677b9752STao Ma path_root_el(right_path)); 3029677b9752STao Ma if (!left_path) { 3030677b9752STao Ma ret = -ENOMEM; 3031677b9752STao Ma mlog_errno(ret); 3032677b9752STao Ma goto out; 3033677b9752STao Ma } 3034677b9752STao Ma 3035677b9752STao Ma ret = ocfs2_find_path(inode, left_path, left_cpos); 3036677b9752STao Ma if (ret) { 3037677b9752STao Ma mlog_errno(ret); 3038677b9752STao Ma goto out; 3039677b9752STao Ma } 3040677b9752STao Ma 3041677b9752STao Ma *ret_left_path = left_path; 3042677b9752STao Ma out: 3043677b9752STao Ma if (ret) 3044677b9752STao Ma ocfs2_free_path(left_path); 3045328d5752SMark Fasheh return ret; 3046328d5752SMark Fasheh } 3047328d5752SMark Fasheh 3048328d5752SMark Fasheh /* 3049328d5752SMark Fasheh * Remove split_rec clusters from the record at index and merge them 3050677b9752STao Ma * onto the tail of the record "before" it. 3051677b9752STao Ma * For index > 0, the "before" means the extent rec at index - 1. 3052677b9752STao Ma * 3053677b9752STao Ma * For index == 0, the "before" means the last record of the previous 3054677b9752STao Ma * extent block. And there is also a situation that we may need to 3055677b9752STao Ma * remove the rightmost leaf extent block in the right_path and change 3056677b9752STao Ma * the right path to indicate the new rightmost path. 3057328d5752SMark Fasheh */ 3058677b9752STao Ma static int ocfs2_merge_rec_left(struct inode *inode, 3059677b9752STao Ma struct ocfs2_path *right_path, 3060328d5752SMark Fasheh handle_t *handle, 3061328d5752SMark Fasheh struct ocfs2_extent_rec *split_rec, 3062677b9752STao Ma struct ocfs2_cached_dealloc_ctxt *dealloc, 3063*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 3064677b9752STao Ma int index) 3065328d5752SMark Fasheh { 3066677b9752STao Ma int ret, i, subtree_index = 0, has_empty_extent = 0; 3067328d5752SMark Fasheh unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters); 3068328d5752SMark Fasheh struct ocfs2_extent_rec *left_rec; 3069328d5752SMark Fasheh struct ocfs2_extent_rec *right_rec; 3070677b9752STao Ma struct ocfs2_extent_list *el = path_leaf_el(right_path); 3071677b9752STao Ma struct buffer_head *bh = path_leaf_bh(right_path); 3072677b9752STao Ma struct buffer_head *root_bh = NULL; 3073677b9752STao Ma struct ocfs2_path *left_path = NULL; 3074677b9752STao Ma struct ocfs2_extent_list *left_el; 3075328d5752SMark Fasheh 3076677b9752STao Ma BUG_ON(index < 0); 3077328d5752SMark Fasheh 3078328d5752SMark Fasheh right_rec = &el->l_recs[index]; 3079677b9752STao Ma if (index == 0) { 3080677b9752STao Ma /* we meet with a cross extent block merge. */ 3081677b9752STao Ma ret = ocfs2_get_left_path(inode, right_path, &left_path); 3082677b9752STao Ma if (ret) { 3083677b9752STao Ma mlog_errno(ret); 3084677b9752STao Ma goto out; 3085677b9752STao Ma } 3086677b9752STao Ma 3087677b9752STao Ma left_el = path_leaf_el(left_path); 3088677b9752STao Ma BUG_ON(le16_to_cpu(left_el->l_next_free_rec) != 3089677b9752STao Ma le16_to_cpu(left_el->l_count)); 3090677b9752STao Ma 3091677b9752STao Ma left_rec = &left_el->l_recs[ 3092677b9752STao Ma le16_to_cpu(left_el->l_next_free_rec) - 1]; 3093677b9752STao Ma BUG_ON(le32_to_cpu(left_rec->e_cpos) + 3094677b9752STao Ma le16_to_cpu(left_rec->e_leaf_clusters) != 3095677b9752STao Ma le32_to_cpu(split_rec->e_cpos)); 3096677b9752STao Ma 3097677b9752STao Ma subtree_index = ocfs2_find_subtree_root(inode, 3098677b9752STao Ma left_path, right_path); 3099677b9752STao Ma 3100677b9752STao Ma ret = ocfs2_extend_rotate_transaction(handle, subtree_index, 3101677b9752STao Ma handle->h_buffer_credits, 3102677b9752STao Ma left_path); 3103677b9752STao Ma if (ret) { 3104677b9752STao Ma mlog_errno(ret); 3105677b9752STao Ma goto out; 3106677b9752STao Ma } 3107677b9752STao Ma 3108677b9752STao Ma root_bh = left_path->p_node[subtree_index].bh; 3109677b9752STao Ma BUG_ON(root_bh != right_path->p_node[subtree_index].bh); 3110677b9752STao Ma 3111677b9752STao Ma ret = ocfs2_journal_access(handle, inode, root_bh, 3112677b9752STao Ma OCFS2_JOURNAL_ACCESS_WRITE); 3113677b9752STao Ma if (ret) { 3114677b9752STao Ma mlog_errno(ret); 3115677b9752STao Ma goto out; 3116677b9752STao Ma } 3117677b9752STao Ma 3118677b9752STao Ma for (i = subtree_index + 1; 3119677b9752STao Ma i < path_num_items(right_path); i++) { 3120677b9752STao Ma ret = ocfs2_journal_access(handle, inode, 3121677b9752STao Ma right_path->p_node[i].bh, 3122677b9752STao Ma OCFS2_JOURNAL_ACCESS_WRITE); 3123677b9752STao Ma if (ret) { 3124677b9752STao Ma mlog_errno(ret); 3125677b9752STao Ma goto out; 3126677b9752STao Ma } 3127677b9752STao Ma 3128677b9752STao Ma ret = ocfs2_journal_access(handle, inode, 3129677b9752STao Ma left_path->p_node[i].bh, 3130677b9752STao Ma OCFS2_JOURNAL_ACCESS_WRITE); 3131677b9752STao Ma if (ret) { 3132677b9752STao Ma mlog_errno(ret); 3133677b9752STao Ma goto out; 3134677b9752STao Ma } 3135677b9752STao Ma } 3136677b9752STao Ma } else { 3137677b9752STao Ma left_rec = &el->l_recs[index - 1]; 3138328d5752SMark Fasheh if (ocfs2_is_empty_extent(&el->l_recs[0])) 3139328d5752SMark Fasheh has_empty_extent = 1; 3140677b9752STao Ma } 3141328d5752SMark Fasheh 3142328d5752SMark Fasheh ret = ocfs2_journal_access(handle, inode, bh, 3143328d5752SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 3144328d5752SMark Fasheh if (ret) { 3145328d5752SMark Fasheh mlog_errno(ret); 3146328d5752SMark Fasheh goto out; 3147328d5752SMark Fasheh } 3148328d5752SMark Fasheh 3149328d5752SMark Fasheh if (has_empty_extent && index == 1) { 3150328d5752SMark Fasheh /* 3151328d5752SMark Fasheh * The easy case - we can just plop the record right in. 3152328d5752SMark Fasheh */ 3153328d5752SMark Fasheh *left_rec = *split_rec; 3154328d5752SMark Fasheh 3155328d5752SMark Fasheh has_empty_extent = 0; 3156677b9752STao Ma } else 3157328d5752SMark Fasheh le16_add_cpu(&left_rec->e_leaf_clusters, split_clusters); 3158328d5752SMark Fasheh 3159328d5752SMark Fasheh le32_add_cpu(&right_rec->e_cpos, split_clusters); 3160328d5752SMark Fasheh le64_add_cpu(&right_rec->e_blkno, 3161328d5752SMark Fasheh ocfs2_clusters_to_blocks(inode->i_sb, split_clusters)); 3162328d5752SMark Fasheh le16_add_cpu(&right_rec->e_leaf_clusters, -split_clusters); 3163328d5752SMark Fasheh 3164328d5752SMark Fasheh ocfs2_cleanup_merge(el, index); 3165328d5752SMark Fasheh 3166328d5752SMark Fasheh ret = ocfs2_journal_dirty(handle, bh); 3167328d5752SMark Fasheh if (ret) 3168328d5752SMark Fasheh mlog_errno(ret); 3169328d5752SMark Fasheh 3170677b9752STao Ma if (left_path) { 3171677b9752STao Ma ret = ocfs2_journal_dirty(handle, path_leaf_bh(left_path)); 3172677b9752STao Ma if (ret) 3173677b9752STao Ma mlog_errno(ret); 3174677b9752STao Ma 3175677b9752STao Ma /* 3176677b9752STao Ma * In the situation that the right_rec is empty and the extent 3177677b9752STao Ma * block is empty also, ocfs2_complete_edge_insert can't handle 3178677b9752STao Ma * it and we need to delete the right extent block. 3179677b9752STao Ma */ 3180677b9752STao Ma if (le16_to_cpu(right_rec->e_leaf_clusters) == 0 && 3181677b9752STao Ma le16_to_cpu(el->l_next_free_rec) == 1) { 3182677b9752STao Ma 3183677b9752STao Ma ret = ocfs2_remove_rightmost_path(inode, handle, 3184*e7d4cb6bSTao Ma right_path, 3185*e7d4cb6bSTao Ma dealloc, et); 3186677b9752STao Ma if (ret) { 3187677b9752STao Ma mlog_errno(ret); 3188677b9752STao Ma goto out; 3189677b9752STao Ma } 3190677b9752STao Ma 3191677b9752STao Ma /* Now the rightmost extent block has been deleted. 3192677b9752STao Ma * So we use the new rightmost path. 3193677b9752STao Ma */ 3194677b9752STao Ma ocfs2_mv_path(right_path, left_path); 3195677b9752STao Ma left_path = NULL; 3196677b9752STao Ma } else 3197677b9752STao Ma ocfs2_complete_edge_insert(inode, handle, left_path, 3198677b9752STao Ma right_path, subtree_index); 3199677b9752STao Ma } 3200328d5752SMark Fasheh out: 3201677b9752STao Ma if (left_path) 3202677b9752STao Ma ocfs2_free_path(left_path); 3203328d5752SMark Fasheh return ret; 3204328d5752SMark Fasheh } 3205328d5752SMark Fasheh 3206328d5752SMark Fasheh static int ocfs2_try_to_merge_extent(struct inode *inode, 3207328d5752SMark Fasheh handle_t *handle, 3208677b9752STao Ma struct ocfs2_path *path, 3209328d5752SMark Fasheh int split_index, 3210328d5752SMark Fasheh struct ocfs2_extent_rec *split_rec, 3211328d5752SMark Fasheh struct ocfs2_cached_dealloc_ctxt *dealloc, 3212*e7d4cb6bSTao Ma struct ocfs2_merge_ctxt *ctxt, 3213*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et) 3214328d5752SMark Fasheh 3215328d5752SMark Fasheh { 3216518d7269STao Mao int ret = 0; 3217677b9752STao Ma struct ocfs2_extent_list *el = path_leaf_el(path); 3218328d5752SMark Fasheh struct ocfs2_extent_rec *rec = &el->l_recs[split_index]; 3219328d5752SMark Fasheh 3220328d5752SMark Fasheh BUG_ON(ctxt->c_contig_type == CONTIG_NONE); 3221328d5752SMark Fasheh 3222518d7269STao Mao if (ctxt->c_split_covers_rec && ctxt->c_has_empty_extent) { 3223328d5752SMark Fasheh /* 3224328d5752SMark Fasheh * The merge code will need to create an empty 3225328d5752SMark Fasheh * extent to take the place of the newly 3226328d5752SMark Fasheh * emptied slot. Remove any pre-existing empty 3227328d5752SMark Fasheh * extents - having more than one in a leaf is 3228328d5752SMark Fasheh * illegal. 3229328d5752SMark Fasheh */ 3230677b9752STao Ma ret = ocfs2_rotate_tree_left(inode, handle, path, 3231*e7d4cb6bSTao Ma dealloc, et); 3232328d5752SMark Fasheh if (ret) { 3233328d5752SMark Fasheh mlog_errno(ret); 3234328d5752SMark Fasheh goto out; 3235328d5752SMark Fasheh } 3236328d5752SMark Fasheh split_index--; 3237328d5752SMark Fasheh rec = &el->l_recs[split_index]; 3238328d5752SMark Fasheh } 3239328d5752SMark Fasheh 3240328d5752SMark Fasheh if (ctxt->c_contig_type == CONTIG_LEFTRIGHT) { 3241328d5752SMark Fasheh /* 3242328d5752SMark Fasheh * Left-right contig implies this. 3243328d5752SMark Fasheh */ 3244328d5752SMark Fasheh BUG_ON(!ctxt->c_split_covers_rec); 3245328d5752SMark Fasheh 3246328d5752SMark Fasheh /* 3247328d5752SMark Fasheh * Since the leftright insert always covers the entire 3248328d5752SMark Fasheh * extent, this call will delete the insert record 3249328d5752SMark Fasheh * entirely, resulting in an empty extent record added to 3250328d5752SMark Fasheh * the extent block. 3251328d5752SMark Fasheh * 3252328d5752SMark Fasheh * Since the adding of an empty extent shifts 3253328d5752SMark Fasheh * everything back to the right, there's no need to 3254328d5752SMark Fasheh * update split_index here. 3255677b9752STao Ma * 3256677b9752STao Ma * When the split_index is zero, we need to merge it to the 3257677b9752STao Ma * prevoius extent block. It is more efficient and easier 3258677b9752STao Ma * if we do merge_right first and merge_left later. 3259328d5752SMark Fasheh */ 3260677b9752STao Ma ret = ocfs2_merge_rec_right(inode, path, 3261677b9752STao Ma handle, split_rec, 3262677b9752STao Ma split_index); 3263328d5752SMark Fasheh if (ret) { 3264328d5752SMark Fasheh mlog_errno(ret); 3265328d5752SMark Fasheh goto out; 3266328d5752SMark Fasheh } 3267328d5752SMark Fasheh 3268328d5752SMark Fasheh /* 3269328d5752SMark Fasheh * We can only get this from logic error above. 3270328d5752SMark Fasheh */ 3271328d5752SMark Fasheh BUG_ON(!ocfs2_is_empty_extent(&el->l_recs[0])); 3272328d5752SMark Fasheh 3273677b9752STao Ma /* The merge left us with an empty extent, remove it. */ 3274*e7d4cb6bSTao Ma ret = ocfs2_rotate_tree_left(inode, handle, path, 3275*e7d4cb6bSTao Ma dealloc, et); 3276328d5752SMark Fasheh if (ret) { 3277328d5752SMark Fasheh mlog_errno(ret); 3278328d5752SMark Fasheh goto out; 3279328d5752SMark Fasheh } 3280677b9752STao Ma 3281328d5752SMark Fasheh rec = &el->l_recs[split_index]; 3282328d5752SMark Fasheh 3283328d5752SMark Fasheh /* 3284328d5752SMark Fasheh * Note that we don't pass split_rec here on purpose - 3285677b9752STao Ma * we've merged it into the rec already. 3286328d5752SMark Fasheh */ 3287677b9752STao Ma ret = ocfs2_merge_rec_left(inode, path, 3288677b9752STao Ma handle, rec, 3289*e7d4cb6bSTao Ma dealloc, et, 3290677b9752STao Ma split_index); 3291677b9752STao Ma 3292328d5752SMark Fasheh if (ret) { 3293328d5752SMark Fasheh mlog_errno(ret); 3294328d5752SMark Fasheh goto out; 3295328d5752SMark Fasheh } 3296328d5752SMark Fasheh 3297677b9752STao Ma ret = ocfs2_rotate_tree_left(inode, handle, path, 3298*e7d4cb6bSTao Ma dealloc, et); 3299328d5752SMark Fasheh /* 3300328d5752SMark Fasheh * Error from this last rotate is not critical, so 3301328d5752SMark Fasheh * print but don't bubble it up. 3302328d5752SMark Fasheh */ 3303328d5752SMark Fasheh if (ret) 3304328d5752SMark Fasheh mlog_errno(ret); 3305328d5752SMark Fasheh ret = 0; 3306328d5752SMark Fasheh } else { 3307328d5752SMark Fasheh /* 3308328d5752SMark Fasheh * Merge a record to the left or right. 3309328d5752SMark Fasheh * 3310328d5752SMark Fasheh * 'contig_type' is relative to the existing record, 3311328d5752SMark Fasheh * so for example, if we're "right contig", it's to 3312328d5752SMark Fasheh * the record on the left (hence the left merge). 3313328d5752SMark Fasheh */ 3314328d5752SMark Fasheh if (ctxt->c_contig_type == CONTIG_RIGHT) { 3315328d5752SMark Fasheh ret = ocfs2_merge_rec_left(inode, 3316677b9752STao Ma path, 3317677b9752STao Ma handle, split_rec, 3318*e7d4cb6bSTao Ma dealloc, et, 3319328d5752SMark Fasheh split_index); 3320328d5752SMark Fasheh if (ret) { 3321328d5752SMark Fasheh mlog_errno(ret); 3322328d5752SMark Fasheh goto out; 3323328d5752SMark Fasheh } 3324328d5752SMark Fasheh } else { 3325328d5752SMark Fasheh ret = ocfs2_merge_rec_right(inode, 3326677b9752STao Ma path, 3327677b9752STao Ma handle, split_rec, 3328328d5752SMark Fasheh split_index); 3329328d5752SMark Fasheh if (ret) { 3330328d5752SMark Fasheh mlog_errno(ret); 3331328d5752SMark Fasheh goto out; 3332328d5752SMark Fasheh } 3333328d5752SMark Fasheh } 3334328d5752SMark Fasheh 3335328d5752SMark Fasheh if (ctxt->c_split_covers_rec) { 3336328d5752SMark Fasheh /* 3337328d5752SMark Fasheh * The merge may have left an empty extent in 3338328d5752SMark Fasheh * our leaf. Try to rotate it away. 3339328d5752SMark Fasheh */ 3340677b9752STao Ma ret = ocfs2_rotate_tree_left(inode, handle, path, 3341*e7d4cb6bSTao Ma dealloc, et); 3342328d5752SMark Fasheh if (ret) 3343328d5752SMark Fasheh mlog_errno(ret); 3344328d5752SMark Fasheh ret = 0; 3345328d5752SMark Fasheh } 3346328d5752SMark Fasheh } 3347328d5752SMark Fasheh 3348328d5752SMark Fasheh out: 3349328d5752SMark Fasheh return ret; 3350328d5752SMark Fasheh } 3351328d5752SMark Fasheh 3352328d5752SMark Fasheh static void ocfs2_subtract_from_rec(struct super_block *sb, 3353328d5752SMark Fasheh enum ocfs2_split_type split, 3354328d5752SMark Fasheh struct ocfs2_extent_rec *rec, 3355328d5752SMark Fasheh struct ocfs2_extent_rec *split_rec) 3356328d5752SMark Fasheh { 3357328d5752SMark Fasheh u64 len_blocks; 3358328d5752SMark Fasheh 3359328d5752SMark Fasheh len_blocks = ocfs2_clusters_to_blocks(sb, 3360328d5752SMark Fasheh le16_to_cpu(split_rec->e_leaf_clusters)); 3361328d5752SMark Fasheh 3362328d5752SMark Fasheh if (split == SPLIT_LEFT) { 3363328d5752SMark Fasheh /* 3364328d5752SMark Fasheh * Region is on the left edge of the existing 3365328d5752SMark Fasheh * record. 3366328d5752SMark Fasheh */ 3367328d5752SMark Fasheh le32_add_cpu(&rec->e_cpos, 3368328d5752SMark Fasheh le16_to_cpu(split_rec->e_leaf_clusters)); 3369328d5752SMark Fasheh le64_add_cpu(&rec->e_blkno, len_blocks); 3370328d5752SMark Fasheh le16_add_cpu(&rec->e_leaf_clusters, 3371328d5752SMark Fasheh -le16_to_cpu(split_rec->e_leaf_clusters)); 3372328d5752SMark Fasheh } else { 3373328d5752SMark Fasheh /* 3374328d5752SMark Fasheh * Region is on the right edge of the existing 3375328d5752SMark Fasheh * record. 3376328d5752SMark Fasheh */ 3377328d5752SMark Fasheh le16_add_cpu(&rec->e_leaf_clusters, 3378328d5752SMark Fasheh -le16_to_cpu(split_rec->e_leaf_clusters)); 3379328d5752SMark Fasheh } 3380328d5752SMark Fasheh } 3381328d5752SMark Fasheh 3382dcd0538fSMark Fasheh /* 3383dcd0538fSMark Fasheh * Do the final bits of extent record insertion at the target leaf 3384dcd0538fSMark Fasheh * list. If this leaf is part of an allocation tree, it is assumed 3385dcd0538fSMark Fasheh * that the tree above has been prepared. 3386dcd0538fSMark Fasheh */ 3387dcd0538fSMark Fasheh static void ocfs2_insert_at_leaf(struct ocfs2_extent_rec *insert_rec, 3388dcd0538fSMark Fasheh struct ocfs2_extent_list *el, 3389dcd0538fSMark Fasheh struct ocfs2_insert_type *insert, 3390dcd0538fSMark Fasheh struct inode *inode) 3391dcd0538fSMark Fasheh { 3392dcd0538fSMark Fasheh int i = insert->ins_contig_index; 3393dcd0538fSMark Fasheh unsigned int range; 3394dcd0538fSMark Fasheh struct ocfs2_extent_rec *rec; 3395dcd0538fSMark Fasheh 3396e48edee2SMark Fasheh BUG_ON(le16_to_cpu(el->l_tree_depth) != 0); 3397dcd0538fSMark Fasheh 3398328d5752SMark Fasheh if (insert->ins_split != SPLIT_NONE) { 3399328d5752SMark Fasheh i = ocfs2_search_extent_list(el, le32_to_cpu(insert_rec->e_cpos)); 3400328d5752SMark Fasheh BUG_ON(i == -1); 3401328d5752SMark Fasheh rec = &el->l_recs[i]; 3402328d5752SMark Fasheh ocfs2_subtract_from_rec(inode->i_sb, insert->ins_split, rec, 3403328d5752SMark Fasheh insert_rec); 3404328d5752SMark Fasheh goto rotate; 3405328d5752SMark Fasheh } 3406328d5752SMark Fasheh 3407dcd0538fSMark Fasheh /* 3408dcd0538fSMark Fasheh * Contiguous insert - either left or right. 3409dcd0538fSMark Fasheh */ 3410dcd0538fSMark Fasheh if (insert->ins_contig != CONTIG_NONE) { 3411dcd0538fSMark Fasheh rec = &el->l_recs[i]; 3412dcd0538fSMark Fasheh if (insert->ins_contig == CONTIG_LEFT) { 3413dcd0538fSMark Fasheh rec->e_blkno = insert_rec->e_blkno; 3414dcd0538fSMark Fasheh rec->e_cpos = insert_rec->e_cpos; 3415dcd0538fSMark Fasheh } 3416e48edee2SMark Fasheh le16_add_cpu(&rec->e_leaf_clusters, 3417e48edee2SMark Fasheh le16_to_cpu(insert_rec->e_leaf_clusters)); 3418dcd0538fSMark Fasheh return; 3419dcd0538fSMark Fasheh } 3420dcd0538fSMark Fasheh 3421dcd0538fSMark Fasheh /* 3422dcd0538fSMark Fasheh * Handle insert into an empty leaf. 3423dcd0538fSMark Fasheh */ 3424dcd0538fSMark Fasheh if (le16_to_cpu(el->l_next_free_rec) == 0 || 3425dcd0538fSMark Fasheh ((le16_to_cpu(el->l_next_free_rec) == 1) && 3426dcd0538fSMark Fasheh ocfs2_is_empty_extent(&el->l_recs[0]))) { 3427dcd0538fSMark Fasheh el->l_recs[0] = *insert_rec; 3428dcd0538fSMark Fasheh el->l_next_free_rec = cpu_to_le16(1); 3429dcd0538fSMark Fasheh return; 3430dcd0538fSMark Fasheh } 3431dcd0538fSMark Fasheh 3432dcd0538fSMark Fasheh /* 3433dcd0538fSMark Fasheh * Appending insert. 3434dcd0538fSMark Fasheh */ 3435dcd0538fSMark Fasheh if (insert->ins_appending == APPEND_TAIL) { 3436dcd0538fSMark Fasheh i = le16_to_cpu(el->l_next_free_rec) - 1; 3437dcd0538fSMark Fasheh rec = &el->l_recs[i]; 3438e48edee2SMark Fasheh range = le32_to_cpu(rec->e_cpos) 3439e48edee2SMark Fasheh + le16_to_cpu(rec->e_leaf_clusters); 3440dcd0538fSMark Fasheh BUG_ON(le32_to_cpu(insert_rec->e_cpos) < range); 3441dcd0538fSMark Fasheh 3442dcd0538fSMark Fasheh mlog_bug_on_msg(le16_to_cpu(el->l_next_free_rec) >= 3443dcd0538fSMark Fasheh le16_to_cpu(el->l_count), 3444dcd0538fSMark Fasheh "inode %lu, depth %u, count %u, next free %u, " 3445dcd0538fSMark Fasheh "rec.cpos %u, rec.clusters %u, " 3446dcd0538fSMark Fasheh "insert.cpos %u, insert.clusters %u\n", 3447dcd0538fSMark Fasheh inode->i_ino, 3448dcd0538fSMark Fasheh le16_to_cpu(el->l_tree_depth), 3449dcd0538fSMark Fasheh le16_to_cpu(el->l_count), 3450dcd0538fSMark Fasheh le16_to_cpu(el->l_next_free_rec), 3451dcd0538fSMark Fasheh le32_to_cpu(el->l_recs[i].e_cpos), 3452e48edee2SMark Fasheh le16_to_cpu(el->l_recs[i].e_leaf_clusters), 3453dcd0538fSMark Fasheh le32_to_cpu(insert_rec->e_cpos), 3454e48edee2SMark Fasheh le16_to_cpu(insert_rec->e_leaf_clusters)); 3455dcd0538fSMark Fasheh i++; 3456dcd0538fSMark Fasheh el->l_recs[i] = *insert_rec; 3457dcd0538fSMark Fasheh le16_add_cpu(&el->l_next_free_rec, 1); 3458dcd0538fSMark Fasheh return; 3459dcd0538fSMark Fasheh } 3460dcd0538fSMark Fasheh 3461328d5752SMark Fasheh rotate: 3462dcd0538fSMark Fasheh /* 3463dcd0538fSMark Fasheh * Ok, we have to rotate. 3464dcd0538fSMark Fasheh * 3465dcd0538fSMark Fasheh * At this point, it is safe to assume that inserting into an 3466dcd0538fSMark Fasheh * empty leaf and appending to a leaf have both been handled 3467dcd0538fSMark Fasheh * above. 3468dcd0538fSMark Fasheh * 3469dcd0538fSMark Fasheh * This leaf needs to have space, either by the empty 1st 3470dcd0538fSMark Fasheh * extent record, or by virtue of an l_next_rec < l_count. 3471dcd0538fSMark Fasheh */ 3472dcd0538fSMark Fasheh ocfs2_rotate_leaf(el, insert_rec); 3473dcd0538fSMark Fasheh } 3474dcd0538fSMark Fasheh 3475328d5752SMark Fasheh static void ocfs2_adjust_rightmost_records(struct inode *inode, 3476328d5752SMark Fasheh handle_t *handle, 3477328d5752SMark Fasheh struct ocfs2_path *path, 3478328d5752SMark Fasheh struct ocfs2_extent_rec *insert_rec) 3479328d5752SMark Fasheh { 3480328d5752SMark Fasheh int ret, i, next_free; 3481328d5752SMark Fasheh struct buffer_head *bh; 3482328d5752SMark Fasheh struct ocfs2_extent_list *el; 3483328d5752SMark Fasheh struct ocfs2_extent_rec *rec; 3484328d5752SMark Fasheh 3485328d5752SMark Fasheh /* 3486328d5752SMark Fasheh * Update everything except the leaf block. 3487328d5752SMark Fasheh */ 3488328d5752SMark Fasheh for (i = 0; i < path->p_tree_depth; i++) { 3489328d5752SMark Fasheh bh = path->p_node[i].bh; 3490328d5752SMark Fasheh el = path->p_node[i].el; 3491328d5752SMark Fasheh 3492328d5752SMark Fasheh next_free = le16_to_cpu(el->l_next_free_rec); 3493328d5752SMark Fasheh if (next_free == 0) { 3494328d5752SMark Fasheh ocfs2_error(inode->i_sb, 3495328d5752SMark Fasheh "Dinode %llu has a bad extent list", 3496328d5752SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno); 3497328d5752SMark Fasheh ret = -EIO; 3498328d5752SMark Fasheh return; 3499328d5752SMark Fasheh } 3500328d5752SMark Fasheh 3501328d5752SMark Fasheh rec = &el->l_recs[next_free - 1]; 3502328d5752SMark Fasheh 3503328d5752SMark Fasheh rec->e_int_clusters = insert_rec->e_cpos; 3504328d5752SMark Fasheh le32_add_cpu(&rec->e_int_clusters, 3505328d5752SMark Fasheh le16_to_cpu(insert_rec->e_leaf_clusters)); 3506328d5752SMark Fasheh le32_add_cpu(&rec->e_int_clusters, 3507328d5752SMark Fasheh -le32_to_cpu(rec->e_cpos)); 3508328d5752SMark Fasheh 3509328d5752SMark Fasheh ret = ocfs2_journal_dirty(handle, bh); 3510328d5752SMark Fasheh if (ret) 3511328d5752SMark Fasheh mlog_errno(ret); 3512328d5752SMark Fasheh 3513328d5752SMark Fasheh } 3514328d5752SMark Fasheh } 3515328d5752SMark Fasheh 3516dcd0538fSMark Fasheh static int ocfs2_append_rec_to_path(struct inode *inode, handle_t *handle, 3517dcd0538fSMark Fasheh struct ocfs2_extent_rec *insert_rec, 3518dcd0538fSMark Fasheh struct ocfs2_path *right_path, 3519dcd0538fSMark Fasheh struct ocfs2_path **ret_left_path) 3520dcd0538fSMark Fasheh { 3521328d5752SMark Fasheh int ret, next_free; 3522dcd0538fSMark Fasheh struct ocfs2_extent_list *el; 3523dcd0538fSMark Fasheh struct ocfs2_path *left_path = NULL; 3524dcd0538fSMark Fasheh 3525dcd0538fSMark Fasheh *ret_left_path = NULL; 3526dcd0538fSMark Fasheh 3527dcd0538fSMark Fasheh /* 3528e48edee2SMark Fasheh * This shouldn't happen for non-trees. The extent rec cluster 3529e48edee2SMark Fasheh * count manipulation below only works for interior nodes. 3530e48edee2SMark Fasheh */ 3531e48edee2SMark Fasheh BUG_ON(right_path->p_tree_depth == 0); 3532e48edee2SMark Fasheh 3533e48edee2SMark Fasheh /* 3534dcd0538fSMark Fasheh * If our appending insert is at the leftmost edge of a leaf, 3535dcd0538fSMark Fasheh * then we might need to update the rightmost records of the 3536dcd0538fSMark Fasheh * neighboring path. 3537dcd0538fSMark Fasheh */ 3538dcd0538fSMark Fasheh el = path_leaf_el(right_path); 3539dcd0538fSMark Fasheh next_free = le16_to_cpu(el->l_next_free_rec); 3540dcd0538fSMark Fasheh if (next_free == 0 || 3541dcd0538fSMark Fasheh (next_free == 1 && ocfs2_is_empty_extent(&el->l_recs[0]))) { 3542dcd0538fSMark Fasheh u32 left_cpos; 3543dcd0538fSMark Fasheh 3544dcd0538fSMark Fasheh ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, right_path, 3545dcd0538fSMark Fasheh &left_cpos); 3546dcd0538fSMark Fasheh if (ret) { 3547dcd0538fSMark Fasheh mlog_errno(ret); 3548dcd0538fSMark Fasheh goto out; 3549dcd0538fSMark Fasheh } 3550dcd0538fSMark Fasheh 3551dcd0538fSMark Fasheh mlog(0, "Append may need a left path update. cpos: %u, " 3552dcd0538fSMark Fasheh "left_cpos: %u\n", le32_to_cpu(insert_rec->e_cpos), 3553dcd0538fSMark Fasheh left_cpos); 3554dcd0538fSMark Fasheh 3555dcd0538fSMark Fasheh /* 3556dcd0538fSMark Fasheh * No need to worry if the append is already in the 3557dcd0538fSMark Fasheh * leftmost leaf. 3558dcd0538fSMark Fasheh */ 3559dcd0538fSMark Fasheh if (left_cpos) { 3560dcd0538fSMark Fasheh left_path = ocfs2_new_path(path_root_bh(right_path), 3561dcd0538fSMark Fasheh path_root_el(right_path)); 3562dcd0538fSMark Fasheh if (!left_path) { 3563dcd0538fSMark Fasheh ret = -ENOMEM; 3564dcd0538fSMark Fasheh mlog_errno(ret); 3565dcd0538fSMark Fasheh goto out; 3566dcd0538fSMark Fasheh } 3567dcd0538fSMark Fasheh 3568dcd0538fSMark Fasheh ret = ocfs2_find_path(inode, left_path, left_cpos); 3569dcd0538fSMark Fasheh if (ret) { 3570dcd0538fSMark Fasheh mlog_errno(ret); 3571dcd0538fSMark Fasheh goto out; 3572dcd0538fSMark Fasheh } 3573dcd0538fSMark Fasheh 3574dcd0538fSMark Fasheh /* 3575dcd0538fSMark Fasheh * ocfs2_insert_path() will pass the left_path to the 3576dcd0538fSMark Fasheh * journal for us. 3577dcd0538fSMark Fasheh */ 3578dcd0538fSMark Fasheh } 3579dcd0538fSMark Fasheh } 3580dcd0538fSMark Fasheh 3581dcd0538fSMark Fasheh ret = ocfs2_journal_access_path(inode, handle, right_path); 3582dcd0538fSMark Fasheh if (ret) { 3583dcd0538fSMark Fasheh mlog_errno(ret); 3584dcd0538fSMark Fasheh goto out; 3585dcd0538fSMark Fasheh } 3586dcd0538fSMark Fasheh 3587328d5752SMark Fasheh ocfs2_adjust_rightmost_records(inode, handle, right_path, insert_rec); 3588dcd0538fSMark Fasheh 3589dcd0538fSMark Fasheh *ret_left_path = left_path; 3590dcd0538fSMark Fasheh ret = 0; 3591dcd0538fSMark Fasheh out: 3592dcd0538fSMark Fasheh if (ret != 0) 3593dcd0538fSMark Fasheh ocfs2_free_path(left_path); 3594dcd0538fSMark Fasheh 3595dcd0538fSMark Fasheh return ret; 3596dcd0538fSMark Fasheh } 3597dcd0538fSMark Fasheh 3598328d5752SMark Fasheh static void ocfs2_split_record(struct inode *inode, 3599328d5752SMark Fasheh struct ocfs2_path *left_path, 3600328d5752SMark Fasheh struct ocfs2_path *right_path, 3601328d5752SMark Fasheh struct ocfs2_extent_rec *split_rec, 3602328d5752SMark Fasheh enum ocfs2_split_type split) 3603328d5752SMark Fasheh { 3604328d5752SMark Fasheh int index; 3605328d5752SMark Fasheh u32 cpos = le32_to_cpu(split_rec->e_cpos); 3606328d5752SMark Fasheh struct ocfs2_extent_list *left_el = NULL, *right_el, *insert_el, *el; 3607328d5752SMark Fasheh struct ocfs2_extent_rec *rec, *tmprec; 3608328d5752SMark Fasheh 3609328d5752SMark Fasheh right_el = path_leaf_el(right_path);; 3610328d5752SMark Fasheh if (left_path) 3611328d5752SMark Fasheh left_el = path_leaf_el(left_path); 3612328d5752SMark Fasheh 3613328d5752SMark Fasheh el = right_el; 3614328d5752SMark Fasheh insert_el = right_el; 3615328d5752SMark Fasheh index = ocfs2_search_extent_list(el, cpos); 3616328d5752SMark Fasheh if (index != -1) { 3617328d5752SMark Fasheh if (index == 0 && left_path) { 3618328d5752SMark Fasheh BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0])); 3619328d5752SMark Fasheh 3620328d5752SMark Fasheh /* 3621328d5752SMark Fasheh * This typically means that the record 3622328d5752SMark Fasheh * started in the left path but moved to the 3623328d5752SMark Fasheh * right as a result of rotation. We either 3624328d5752SMark Fasheh * move the existing record to the left, or we 3625328d5752SMark Fasheh * do the later insert there. 3626328d5752SMark Fasheh * 3627328d5752SMark Fasheh * In this case, the left path should always 3628328d5752SMark Fasheh * exist as the rotate code will have passed 3629328d5752SMark Fasheh * it back for a post-insert update. 3630328d5752SMark Fasheh */ 3631328d5752SMark Fasheh 3632328d5752SMark Fasheh if (split == SPLIT_LEFT) { 3633328d5752SMark Fasheh /* 3634328d5752SMark Fasheh * It's a left split. Since we know 3635328d5752SMark Fasheh * that the rotate code gave us an 3636328d5752SMark Fasheh * empty extent in the left path, we 3637328d5752SMark Fasheh * can just do the insert there. 3638328d5752SMark Fasheh */ 3639328d5752SMark Fasheh insert_el = left_el; 3640328d5752SMark Fasheh } else { 3641328d5752SMark Fasheh /* 3642328d5752SMark Fasheh * Right split - we have to move the 3643328d5752SMark Fasheh * existing record over to the left 3644328d5752SMark Fasheh * leaf. The insert will be into the 3645328d5752SMark Fasheh * newly created empty extent in the 3646328d5752SMark Fasheh * right leaf. 3647328d5752SMark Fasheh */ 3648328d5752SMark Fasheh tmprec = &right_el->l_recs[index]; 3649328d5752SMark Fasheh ocfs2_rotate_leaf(left_el, tmprec); 3650328d5752SMark Fasheh el = left_el; 3651328d5752SMark Fasheh 3652328d5752SMark Fasheh memset(tmprec, 0, sizeof(*tmprec)); 3653328d5752SMark Fasheh index = ocfs2_search_extent_list(left_el, cpos); 3654328d5752SMark Fasheh BUG_ON(index == -1); 3655328d5752SMark Fasheh } 3656328d5752SMark Fasheh } 3657328d5752SMark Fasheh } else { 3658328d5752SMark Fasheh BUG_ON(!left_path); 3659328d5752SMark Fasheh BUG_ON(!ocfs2_is_empty_extent(&left_el->l_recs[0])); 3660328d5752SMark Fasheh /* 3661328d5752SMark Fasheh * Left path is easy - we can just allow the insert to 3662328d5752SMark Fasheh * happen. 3663328d5752SMark Fasheh */ 3664328d5752SMark Fasheh el = left_el; 3665328d5752SMark Fasheh insert_el = left_el; 3666328d5752SMark Fasheh index = ocfs2_search_extent_list(el, cpos); 3667328d5752SMark Fasheh BUG_ON(index == -1); 3668328d5752SMark Fasheh } 3669328d5752SMark Fasheh 3670328d5752SMark Fasheh rec = &el->l_recs[index]; 3671328d5752SMark Fasheh ocfs2_subtract_from_rec(inode->i_sb, split, rec, split_rec); 3672328d5752SMark Fasheh ocfs2_rotate_leaf(insert_el, split_rec); 3673328d5752SMark Fasheh } 3674328d5752SMark Fasheh 3675dcd0538fSMark Fasheh /* 3676*e7d4cb6bSTao Ma * This function only does inserts on an allocation b-tree. For tree 3677*e7d4cb6bSTao Ma * depth = 0, ocfs2_insert_at_leaf() is called directly. 3678dcd0538fSMark Fasheh * 3679dcd0538fSMark Fasheh * right_path is the path we want to do the actual insert 3680dcd0538fSMark Fasheh * in. left_path should only be passed in if we need to update that 3681dcd0538fSMark Fasheh * portion of the tree after an edge insert. 3682dcd0538fSMark Fasheh */ 3683dcd0538fSMark Fasheh static int ocfs2_insert_path(struct inode *inode, 3684dcd0538fSMark Fasheh handle_t *handle, 3685dcd0538fSMark Fasheh struct ocfs2_path *left_path, 3686dcd0538fSMark Fasheh struct ocfs2_path *right_path, 3687dcd0538fSMark Fasheh struct ocfs2_extent_rec *insert_rec, 3688dcd0538fSMark Fasheh struct ocfs2_insert_type *insert) 3689dcd0538fSMark Fasheh { 3690dcd0538fSMark Fasheh int ret, subtree_index; 3691dcd0538fSMark Fasheh struct buffer_head *leaf_bh = path_leaf_bh(right_path); 3692dcd0538fSMark Fasheh 3693dcd0538fSMark Fasheh if (left_path) { 3694dcd0538fSMark Fasheh int credits = handle->h_buffer_credits; 3695dcd0538fSMark Fasheh 3696dcd0538fSMark Fasheh /* 3697dcd0538fSMark Fasheh * There's a chance that left_path got passed back to 3698dcd0538fSMark Fasheh * us without being accounted for in the 3699dcd0538fSMark Fasheh * journal. Extend our transaction here to be sure we 3700dcd0538fSMark Fasheh * can change those blocks. 3701dcd0538fSMark Fasheh */ 3702dcd0538fSMark Fasheh credits += left_path->p_tree_depth; 3703dcd0538fSMark Fasheh 3704dcd0538fSMark Fasheh ret = ocfs2_extend_trans(handle, credits); 3705dcd0538fSMark Fasheh if (ret < 0) { 3706dcd0538fSMark Fasheh mlog_errno(ret); 3707dcd0538fSMark Fasheh goto out; 3708dcd0538fSMark Fasheh } 3709dcd0538fSMark Fasheh 3710dcd0538fSMark Fasheh ret = ocfs2_journal_access_path(inode, handle, left_path); 3711dcd0538fSMark Fasheh if (ret < 0) { 3712dcd0538fSMark Fasheh mlog_errno(ret); 3713dcd0538fSMark Fasheh goto out; 3714dcd0538fSMark Fasheh } 3715dcd0538fSMark Fasheh } 3716dcd0538fSMark Fasheh 3717e8aed345SMark Fasheh /* 3718e8aed345SMark Fasheh * Pass both paths to the journal. The majority of inserts 3719e8aed345SMark Fasheh * will be touching all components anyway. 3720e8aed345SMark Fasheh */ 3721e8aed345SMark Fasheh ret = ocfs2_journal_access_path(inode, handle, right_path); 3722e8aed345SMark Fasheh if (ret < 0) { 3723e8aed345SMark Fasheh mlog_errno(ret); 3724e8aed345SMark Fasheh goto out; 3725e8aed345SMark Fasheh } 3726e8aed345SMark Fasheh 3727328d5752SMark Fasheh if (insert->ins_split != SPLIT_NONE) { 3728328d5752SMark Fasheh /* 3729328d5752SMark Fasheh * We could call ocfs2_insert_at_leaf() for some types 3730c78bad11SJoe Perches * of splits, but it's easier to just let one separate 3731328d5752SMark Fasheh * function sort it all out. 3732328d5752SMark Fasheh */ 3733328d5752SMark Fasheh ocfs2_split_record(inode, left_path, right_path, 3734328d5752SMark Fasheh insert_rec, insert->ins_split); 3735e8aed345SMark Fasheh 3736e8aed345SMark Fasheh /* 3737e8aed345SMark Fasheh * Split might have modified either leaf and we don't 3738e8aed345SMark Fasheh * have a guarantee that the later edge insert will 3739e8aed345SMark Fasheh * dirty this for us. 3740e8aed345SMark Fasheh */ 3741e8aed345SMark Fasheh if (left_path) 3742e8aed345SMark Fasheh ret = ocfs2_journal_dirty(handle, 3743e8aed345SMark Fasheh path_leaf_bh(left_path)); 3744e8aed345SMark Fasheh if (ret) 3745e8aed345SMark Fasheh mlog_errno(ret); 3746328d5752SMark Fasheh } else 3747328d5752SMark Fasheh ocfs2_insert_at_leaf(insert_rec, path_leaf_el(right_path), 3748328d5752SMark Fasheh insert, inode); 3749dcd0538fSMark Fasheh 3750dcd0538fSMark Fasheh ret = ocfs2_journal_dirty(handle, leaf_bh); 3751dcd0538fSMark Fasheh if (ret) 3752dcd0538fSMark Fasheh mlog_errno(ret); 3753dcd0538fSMark Fasheh 3754dcd0538fSMark Fasheh if (left_path) { 3755dcd0538fSMark Fasheh /* 3756dcd0538fSMark Fasheh * The rotate code has indicated that we need to fix 3757dcd0538fSMark Fasheh * up portions of the tree after the insert. 3758dcd0538fSMark Fasheh * 3759dcd0538fSMark Fasheh * XXX: Should we extend the transaction here? 3760dcd0538fSMark Fasheh */ 3761dcd0538fSMark Fasheh subtree_index = ocfs2_find_subtree_root(inode, left_path, 3762dcd0538fSMark Fasheh right_path); 3763dcd0538fSMark Fasheh ocfs2_complete_edge_insert(inode, handle, left_path, 3764dcd0538fSMark Fasheh right_path, subtree_index); 3765dcd0538fSMark Fasheh } 3766dcd0538fSMark Fasheh 3767dcd0538fSMark Fasheh ret = 0; 3768dcd0538fSMark Fasheh out: 3769dcd0538fSMark Fasheh return ret; 3770dcd0538fSMark Fasheh } 3771dcd0538fSMark Fasheh 3772dcd0538fSMark Fasheh static int ocfs2_do_insert_extent(struct inode *inode, 3773dcd0538fSMark Fasheh handle_t *handle, 3774*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 3775dcd0538fSMark Fasheh struct ocfs2_extent_rec *insert_rec, 3776dcd0538fSMark Fasheh struct ocfs2_insert_type *type) 3777dcd0538fSMark Fasheh { 3778dcd0538fSMark Fasheh int ret, rotate = 0; 3779dcd0538fSMark Fasheh u32 cpos; 3780dcd0538fSMark Fasheh struct ocfs2_path *right_path = NULL; 3781dcd0538fSMark Fasheh struct ocfs2_path *left_path = NULL; 3782dcd0538fSMark Fasheh struct ocfs2_extent_list *el; 3783dcd0538fSMark Fasheh 3784*e7d4cb6bSTao Ma el = et->root_el; 3785dcd0538fSMark Fasheh 3786*e7d4cb6bSTao Ma ret = ocfs2_journal_access(handle, inode, et->root_bh, 3787dcd0538fSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 3788dcd0538fSMark Fasheh if (ret) { 3789dcd0538fSMark Fasheh mlog_errno(ret); 3790dcd0538fSMark Fasheh goto out; 3791dcd0538fSMark Fasheh } 3792dcd0538fSMark Fasheh 3793dcd0538fSMark Fasheh if (le16_to_cpu(el->l_tree_depth) == 0) { 3794dcd0538fSMark Fasheh ocfs2_insert_at_leaf(insert_rec, el, type, inode); 3795dcd0538fSMark Fasheh goto out_update_clusters; 3796dcd0538fSMark Fasheh } 3797dcd0538fSMark Fasheh 3798*e7d4cb6bSTao Ma right_path = ocfs2_new_path(et->root_bh, et->root_el); 3799dcd0538fSMark Fasheh if (!right_path) { 3800dcd0538fSMark Fasheh ret = -ENOMEM; 3801dcd0538fSMark Fasheh mlog_errno(ret); 3802dcd0538fSMark Fasheh goto out; 3803dcd0538fSMark Fasheh } 3804dcd0538fSMark Fasheh 3805dcd0538fSMark Fasheh /* 3806dcd0538fSMark Fasheh * Determine the path to start with. Rotations need the 3807dcd0538fSMark Fasheh * rightmost path, everything else can go directly to the 3808dcd0538fSMark Fasheh * target leaf. 3809dcd0538fSMark Fasheh */ 3810dcd0538fSMark Fasheh cpos = le32_to_cpu(insert_rec->e_cpos); 3811dcd0538fSMark Fasheh if (type->ins_appending == APPEND_NONE && 3812dcd0538fSMark Fasheh type->ins_contig == CONTIG_NONE) { 3813dcd0538fSMark Fasheh rotate = 1; 3814dcd0538fSMark Fasheh cpos = UINT_MAX; 3815dcd0538fSMark Fasheh } 3816dcd0538fSMark Fasheh 3817dcd0538fSMark Fasheh ret = ocfs2_find_path(inode, right_path, cpos); 3818dcd0538fSMark Fasheh if (ret) { 3819dcd0538fSMark Fasheh mlog_errno(ret); 3820dcd0538fSMark Fasheh goto out; 3821dcd0538fSMark Fasheh } 3822dcd0538fSMark Fasheh 3823dcd0538fSMark Fasheh /* 3824dcd0538fSMark Fasheh * Rotations and appends need special treatment - they modify 3825dcd0538fSMark Fasheh * parts of the tree's above them. 3826dcd0538fSMark Fasheh * 3827dcd0538fSMark Fasheh * Both might pass back a path immediate to the left of the 3828dcd0538fSMark Fasheh * one being inserted to. This will be cause 3829dcd0538fSMark Fasheh * ocfs2_insert_path() to modify the rightmost records of 3830dcd0538fSMark Fasheh * left_path to account for an edge insert. 3831dcd0538fSMark Fasheh * 3832dcd0538fSMark Fasheh * XXX: When modifying this code, keep in mind that an insert 3833dcd0538fSMark Fasheh * can wind up skipping both of these two special cases... 3834dcd0538fSMark Fasheh */ 3835dcd0538fSMark Fasheh if (rotate) { 3836328d5752SMark Fasheh ret = ocfs2_rotate_tree_right(inode, handle, type->ins_split, 3837dcd0538fSMark Fasheh le32_to_cpu(insert_rec->e_cpos), 3838dcd0538fSMark Fasheh right_path, &left_path); 3839dcd0538fSMark Fasheh if (ret) { 3840dcd0538fSMark Fasheh mlog_errno(ret); 3841dcd0538fSMark Fasheh goto out; 3842dcd0538fSMark Fasheh } 3843e8aed345SMark Fasheh 3844e8aed345SMark Fasheh /* 3845e8aed345SMark Fasheh * ocfs2_rotate_tree_right() might have extended the 3846e8aed345SMark Fasheh * transaction without re-journaling our tree root. 3847e8aed345SMark Fasheh */ 3848*e7d4cb6bSTao Ma ret = ocfs2_journal_access(handle, inode, et->root_bh, 3849e8aed345SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 3850e8aed345SMark Fasheh if (ret) { 3851e8aed345SMark Fasheh mlog_errno(ret); 3852e8aed345SMark Fasheh goto out; 3853e8aed345SMark Fasheh } 3854dcd0538fSMark Fasheh } else if (type->ins_appending == APPEND_TAIL 3855dcd0538fSMark Fasheh && type->ins_contig != CONTIG_LEFT) { 3856dcd0538fSMark Fasheh ret = ocfs2_append_rec_to_path(inode, handle, insert_rec, 3857dcd0538fSMark Fasheh right_path, &left_path); 3858dcd0538fSMark Fasheh if (ret) { 3859dcd0538fSMark Fasheh mlog_errno(ret); 3860dcd0538fSMark Fasheh goto out; 3861dcd0538fSMark Fasheh } 3862dcd0538fSMark Fasheh } 3863dcd0538fSMark Fasheh 3864dcd0538fSMark Fasheh ret = ocfs2_insert_path(inode, handle, left_path, right_path, 3865dcd0538fSMark Fasheh insert_rec, type); 3866dcd0538fSMark Fasheh if (ret) { 3867dcd0538fSMark Fasheh mlog_errno(ret); 3868dcd0538fSMark Fasheh goto out; 3869dcd0538fSMark Fasheh } 3870dcd0538fSMark Fasheh 3871dcd0538fSMark Fasheh out_update_clusters: 3872328d5752SMark Fasheh if (type->ins_split == SPLIT_NONE) 3873*e7d4cb6bSTao Ma ocfs2_update_clusters(inode, et, 3874e48edee2SMark Fasheh le16_to_cpu(insert_rec->e_leaf_clusters)); 3875dcd0538fSMark Fasheh 3876*e7d4cb6bSTao Ma ret = ocfs2_journal_dirty(handle, et->root_bh); 3877dcd0538fSMark Fasheh if (ret) 3878dcd0538fSMark Fasheh mlog_errno(ret); 3879dcd0538fSMark Fasheh 3880dcd0538fSMark Fasheh out: 3881dcd0538fSMark Fasheh ocfs2_free_path(left_path); 3882dcd0538fSMark Fasheh ocfs2_free_path(right_path); 3883dcd0538fSMark Fasheh 3884dcd0538fSMark Fasheh return ret; 3885dcd0538fSMark Fasheh } 3886dcd0538fSMark Fasheh 3887328d5752SMark Fasheh static enum ocfs2_contig_type 3888ad5a4d70STao Ma ocfs2_figure_merge_contig_type(struct inode *inode, struct ocfs2_path *path, 3889328d5752SMark Fasheh struct ocfs2_extent_list *el, int index, 3890328d5752SMark Fasheh struct ocfs2_extent_rec *split_rec) 3891328d5752SMark Fasheh { 3892ad5a4d70STao Ma int status; 3893328d5752SMark Fasheh enum ocfs2_contig_type ret = CONTIG_NONE; 3894ad5a4d70STao Ma u32 left_cpos, right_cpos; 3895ad5a4d70STao Ma struct ocfs2_extent_rec *rec = NULL; 3896ad5a4d70STao Ma struct ocfs2_extent_list *new_el; 3897ad5a4d70STao Ma struct ocfs2_path *left_path = NULL, *right_path = NULL; 3898ad5a4d70STao Ma struct buffer_head *bh; 3899ad5a4d70STao Ma struct ocfs2_extent_block *eb; 3900ad5a4d70STao Ma 3901ad5a4d70STao Ma if (index > 0) { 3902ad5a4d70STao Ma rec = &el->l_recs[index - 1]; 3903ad5a4d70STao Ma } else if (path->p_tree_depth > 0) { 3904ad5a4d70STao Ma status = ocfs2_find_cpos_for_left_leaf(inode->i_sb, 3905ad5a4d70STao Ma path, &left_cpos); 3906ad5a4d70STao Ma if (status) 3907ad5a4d70STao Ma goto out; 3908ad5a4d70STao Ma 3909ad5a4d70STao Ma if (left_cpos != 0) { 3910ad5a4d70STao Ma left_path = ocfs2_new_path(path_root_bh(path), 3911ad5a4d70STao Ma path_root_el(path)); 3912ad5a4d70STao Ma if (!left_path) 3913ad5a4d70STao Ma goto out; 3914ad5a4d70STao Ma 3915ad5a4d70STao Ma status = ocfs2_find_path(inode, left_path, left_cpos); 3916ad5a4d70STao Ma if (status) 3917ad5a4d70STao Ma goto out; 3918ad5a4d70STao Ma 3919ad5a4d70STao Ma new_el = path_leaf_el(left_path); 3920ad5a4d70STao Ma 3921ad5a4d70STao Ma if (le16_to_cpu(new_el->l_next_free_rec) != 3922ad5a4d70STao Ma le16_to_cpu(new_el->l_count)) { 3923ad5a4d70STao Ma bh = path_leaf_bh(left_path); 3924ad5a4d70STao Ma eb = (struct ocfs2_extent_block *)bh->b_data; 3925ad5a4d70STao Ma OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, 3926ad5a4d70STao Ma eb); 3927ad5a4d70STao Ma goto out; 3928ad5a4d70STao Ma } 3929ad5a4d70STao Ma rec = &new_el->l_recs[ 3930ad5a4d70STao Ma le16_to_cpu(new_el->l_next_free_rec) - 1]; 3931ad5a4d70STao Ma } 3932ad5a4d70STao Ma } 3933328d5752SMark Fasheh 3934328d5752SMark Fasheh /* 3935328d5752SMark Fasheh * We're careful to check for an empty extent record here - 3936328d5752SMark Fasheh * the merge code will know what to do if it sees one. 3937328d5752SMark Fasheh */ 3938ad5a4d70STao Ma if (rec) { 3939328d5752SMark Fasheh if (index == 1 && ocfs2_is_empty_extent(rec)) { 3940328d5752SMark Fasheh if (split_rec->e_cpos == el->l_recs[index].e_cpos) 3941328d5752SMark Fasheh ret = CONTIG_RIGHT; 3942328d5752SMark Fasheh } else { 3943328d5752SMark Fasheh ret = ocfs2_extent_contig(inode, rec, split_rec); 3944328d5752SMark Fasheh } 3945328d5752SMark Fasheh } 3946328d5752SMark Fasheh 3947ad5a4d70STao Ma rec = NULL; 3948ad5a4d70STao Ma if (index < (le16_to_cpu(el->l_next_free_rec) - 1)) 3949ad5a4d70STao Ma rec = &el->l_recs[index + 1]; 3950ad5a4d70STao Ma else if (le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count) && 3951ad5a4d70STao Ma path->p_tree_depth > 0) { 3952ad5a4d70STao Ma status = ocfs2_find_cpos_for_right_leaf(inode->i_sb, 3953ad5a4d70STao Ma path, &right_cpos); 3954ad5a4d70STao Ma if (status) 3955ad5a4d70STao Ma goto out; 3956ad5a4d70STao Ma 3957ad5a4d70STao Ma if (right_cpos == 0) 3958ad5a4d70STao Ma goto out; 3959ad5a4d70STao Ma 3960ad5a4d70STao Ma right_path = ocfs2_new_path(path_root_bh(path), 3961ad5a4d70STao Ma path_root_el(path)); 3962ad5a4d70STao Ma if (!right_path) 3963ad5a4d70STao Ma goto out; 3964ad5a4d70STao Ma 3965ad5a4d70STao Ma status = ocfs2_find_path(inode, right_path, right_cpos); 3966ad5a4d70STao Ma if (status) 3967ad5a4d70STao Ma goto out; 3968ad5a4d70STao Ma 3969ad5a4d70STao Ma new_el = path_leaf_el(right_path); 3970ad5a4d70STao Ma rec = &new_el->l_recs[0]; 3971ad5a4d70STao Ma if (ocfs2_is_empty_extent(rec)) { 3972ad5a4d70STao Ma if (le16_to_cpu(new_el->l_next_free_rec) <= 1) { 3973ad5a4d70STao Ma bh = path_leaf_bh(right_path); 3974ad5a4d70STao Ma eb = (struct ocfs2_extent_block *)bh->b_data; 3975ad5a4d70STao Ma OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, 3976ad5a4d70STao Ma eb); 3977ad5a4d70STao Ma goto out; 3978ad5a4d70STao Ma } 3979ad5a4d70STao Ma rec = &new_el->l_recs[1]; 3980ad5a4d70STao Ma } 3981ad5a4d70STao Ma } 3982ad5a4d70STao Ma 3983ad5a4d70STao Ma if (rec) { 3984328d5752SMark Fasheh enum ocfs2_contig_type contig_type; 3985328d5752SMark Fasheh 3986328d5752SMark Fasheh contig_type = ocfs2_extent_contig(inode, rec, split_rec); 3987328d5752SMark Fasheh 3988328d5752SMark Fasheh if (contig_type == CONTIG_LEFT && ret == CONTIG_RIGHT) 3989328d5752SMark Fasheh ret = CONTIG_LEFTRIGHT; 3990328d5752SMark Fasheh else if (ret == CONTIG_NONE) 3991328d5752SMark Fasheh ret = contig_type; 3992328d5752SMark Fasheh } 3993328d5752SMark Fasheh 3994ad5a4d70STao Ma out: 3995ad5a4d70STao Ma if (left_path) 3996ad5a4d70STao Ma ocfs2_free_path(left_path); 3997ad5a4d70STao Ma if (right_path) 3998ad5a4d70STao Ma ocfs2_free_path(right_path); 3999ad5a4d70STao Ma 4000328d5752SMark Fasheh return ret; 4001328d5752SMark Fasheh } 4002328d5752SMark Fasheh 4003dcd0538fSMark Fasheh static void ocfs2_figure_contig_type(struct inode *inode, 4004dcd0538fSMark Fasheh struct ocfs2_insert_type *insert, 4005dcd0538fSMark Fasheh struct ocfs2_extent_list *el, 4006dcd0538fSMark Fasheh struct ocfs2_extent_rec *insert_rec) 4007dcd0538fSMark Fasheh { 4008dcd0538fSMark Fasheh int i; 4009dcd0538fSMark Fasheh enum ocfs2_contig_type contig_type = CONTIG_NONE; 4010dcd0538fSMark Fasheh 4011e48edee2SMark Fasheh BUG_ON(le16_to_cpu(el->l_tree_depth) != 0); 4012e48edee2SMark Fasheh 4013dcd0538fSMark Fasheh for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) { 4014dcd0538fSMark Fasheh contig_type = ocfs2_extent_contig(inode, &el->l_recs[i], 4015dcd0538fSMark Fasheh insert_rec); 4016dcd0538fSMark Fasheh if (contig_type != CONTIG_NONE) { 4017dcd0538fSMark Fasheh insert->ins_contig_index = i; 4018dcd0538fSMark Fasheh break; 4019dcd0538fSMark Fasheh } 4020dcd0538fSMark Fasheh } 4021dcd0538fSMark Fasheh insert->ins_contig = contig_type; 4022dcd0538fSMark Fasheh } 4023dcd0538fSMark Fasheh 4024dcd0538fSMark Fasheh /* 4025dcd0538fSMark Fasheh * This should only be called against the righmost leaf extent list. 4026dcd0538fSMark Fasheh * 4027dcd0538fSMark Fasheh * ocfs2_figure_appending_type() will figure out whether we'll have to 4028dcd0538fSMark Fasheh * insert at the tail of the rightmost leaf. 4029dcd0538fSMark Fasheh * 4030*e7d4cb6bSTao Ma * This should also work against the root extent list for tree's with 0 4031*e7d4cb6bSTao Ma * depth. If we consider the root extent list to be the rightmost leaf node 4032dcd0538fSMark Fasheh * then the logic here makes sense. 4033dcd0538fSMark Fasheh */ 4034dcd0538fSMark Fasheh static void ocfs2_figure_appending_type(struct ocfs2_insert_type *insert, 4035dcd0538fSMark Fasheh struct ocfs2_extent_list *el, 4036dcd0538fSMark Fasheh struct ocfs2_extent_rec *insert_rec) 4037dcd0538fSMark Fasheh { 4038dcd0538fSMark Fasheh int i; 4039dcd0538fSMark Fasheh u32 cpos = le32_to_cpu(insert_rec->e_cpos); 4040dcd0538fSMark Fasheh struct ocfs2_extent_rec *rec; 4041dcd0538fSMark Fasheh 4042dcd0538fSMark Fasheh insert->ins_appending = APPEND_NONE; 4043dcd0538fSMark Fasheh 4044e48edee2SMark Fasheh BUG_ON(le16_to_cpu(el->l_tree_depth) != 0); 4045dcd0538fSMark Fasheh 4046dcd0538fSMark Fasheh if (!el->l_next_free_rec) 4047dcd0538fSMark Fasheh goto set_tail_append; 4048dcd0538fSMark Fasheh 4049dcd0538fSMark Fasheh if (ocfs2_is_empty_extent(&el->l_recs[0])) { 4050dcd0538fSMark Fasheh /* Were all records empty? */ 4051dcd0538fSMark Fasheh if (le16_to_cpu(el->l_next_free_rec) == 1) 4052dcd0538fSMark Fasheh goto set_tail_append; 4053dcd0538fSMark Fasheh } 4054dcd0538fSMark Fasheh 4055dcd0538fSMark Fasheh i = le16_to_cpu(el->l_next_free_rec) - 1; 4056dcd0538fSMark Fasheh rec = &el->l_recs[i]; 4057dcd0538fSMark Fasheh 4058e48edee2SMark Fasheh if (cpos >= 4059e48edee2SMark Fasheh (le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters))) 4060dcd0538fSMark Fasheh goto set_tail_append; 4061dcd0538fSMark Fasheh 4062dcd0538fSMark Fasheh return; 4063dcd0538fSMark Fasheh 4064dcd0538fSMark Fasheh set_tail_append: 4065dcd0538fSMark Fasheh insert->ins_appending = APPEND_TAIL; 4066dcd0538fSMark Fasheh } 4067dcd0538fSMark Fasheh 4068dcd0538fSMark Fasheh /* 4069dcd0538fSMark Fasheh * Helper function called at the begining of an insert. 4070dcd0538fSMark Fasheh * 4071dcd0538fSMark Fasheh * This computes a few things that are commonly used in the process of 4072dcd0538fSMark Fasheh * inserting into the btree: 4073dcd0538fSMark Fasheh * - Whether the new extent is contiguous with an existing one. 4074dcd0538fSMark Fasheh * - The current tree depth. 4075dcd0538fSMark Fasheh * - Whether the insert is an appending one. 4076dcd0538fSMark Fasheh * - The total # of free records in the tree. 4077dcd0538fSMark Fasheh * 4078dcd0538fSMark Fasheh * All of the information is stored on the ocfs2_insert_type 4079dcd0538fSMark Fasheh * structure. 4080dcd0538fSMark Fasheh */ 4081dcd0538fSMark Fasheh static int ocfs2_figure_insert_type(struct inode *inode, 4082*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 4083dcd0538fSMark Fasheh struct buffer_head **last_eb_bh, 4084dcd0538fSMark Fasheh struct ocfs2_extent_rec *insert_rec, 4085c77534f6STao Mao int *free_records, 4086dcd0538fSMark Fasheh struct ocfs2_insert_type *insert) 4087dcd0538fSMark Fasheh { 4088dcd0538fSMark Fasheh int ret; 4089dcd0538fSMark Fasheh struct ocfs2_extent_block *eb; 4090dcd0538fSMark Fasheh struct ocfs2_extent_list *el; 4091dcd0538fSMark Fasheh struct ocfs2_path *path = NULL; 4092dcd0538fSMark Fasheh struct buffer_head *bh = NULL; 4093dcd0538fSMark Fasheh 4094328d5752SMark Fasheh insert->ins_split = SPLIT_NONE; 4095328d5752SMark Fasheh 4096*e7d4cb6bSTao Ma el = et->root_el; 4097dcd0538fSMark Fasheh insert->ins_tree_depth = le16_to_cpu(el->l_tree_depth); 4098dcd0538fSMark Fasheh 4099dcd0538fSMark Fasheh if (el->l_tree_depth) { 4100dcd0538fSMark Fasheh /* 4101dcd0538fSMark Fasheh * If we have tree depth, we read in the 4102dcd0538fSMark Fasheh * rightmost extent block ahead of time as 4103dcd0538fSMark Fasheh * ocfs2_figure_insert_type() and ocfs2_add_branch() 4104dcd0538fSMark Fasheh * may want it later. 4105dcd0538fSMark Fasheh */ 4106dcd0538fSMark Fasheh ret = ocfs2_read_block(OCFS2_SB(inode->i_sb), 4107*e7d4cb6bSTao Ma ocfs2_get_last_eb_blk(et), &bh, 4108dcd0538fSMark Fasheh OCFS2_BH_CACHED, inode); 4109dcd0538fSMark Fasheh if (ret) { 4110dcd0538fSMark Fasheh mlog_exit(ret); 4111dcd0538fSMark Fasheh goto out; 4112dcd0538fSMark Fasheh } 4113dcd0538fSMark Fasheh eb = (struct ocfs2_extent_block *) bh->b_data; 4114dcd0538fSMark Fasheh el = &eb->h_list; 4115dcd0538fSMark Fasheh } 4116dcd0538fSMark Fasheh 4117dcd0538fSMark Fasheh /* 4118dcd0538fSMark Fasheh * Unless we have a contiguous insert, we'll need to know if 4119dcd0538fSMark Fasheh * there is room left in our allocation tree for another 4120dcd0538fSMark Fasheh * extent record. 4121dcd0538fSMark Fasheh * 4122dcd0538fSMark Fasheh * XXX: This test is simplistic, we can search for empty 4123dcd0538fSMark Fasheh * extent records too. 4124dcd0538fSMark Fasheh */ 4125c77534f6STao Mao *free_records = le16_to_cpu(el->l_count) - 4126dcd0538fSMark Fasheh le16_to_cpu(el->l_next_free_rec); 4127dcd0538fSMark Fasheh 4128dcd0538fSMark Fasheh if (!insert->ins_tree_depth) { 4129dcd0538fSMark Fasheh ocfs2_figure_contig_type(inode, insert, el, insert_rec); 4130dcd0538fSMark Fasheh ocfs2_figure_appending_type(insert, el, insert_rec); 4131dcd0538fSMark Fasheh return 0; 4132dcd0538fSMark Fasheh } 4133dcd0538fSMark Fasheh 4134*e7d4cb6bSTao Ma path = ocfs2_new_path(et->root_bh, et->root_el); 4135dcd0538fSMark Fasheh if (!path) { 4136dcd0538fSMark Fasheh ret = -ENOMEM; 4137dcd0538fSMark Fasheh mlog_errno(ret); 4138dcd0538fSMark Fasheh goto out; 4139dcd0538fSMark Fasheh } 4140dcd0538fSMark Fasheh 4141dcd0538fSMark Fasheh /* 4142dcd0538fSMark Fasheh * In the case that we're inserting past what the tree 4143dcd0538fSMark Fasheh * currently accounts for, ocfs2_find_path() will return for 4144dcd0538fSMark Fasheh * us the rightmost tree path. This is accounted for below in 4145dcd0538fSMark Fasheh * the appending code. 4146dcd0538fSMark Fasheh */ 4147dcd0538fSMark Fasheh ret = ocfs2_find_path(inode, path, le32_to_cpu(insert_rec->e_cpos)); 4148dcd0538fSMark Fasheh if (ret) { 4149dcd0538fSMark Fasheh mlog_errno(ret); 4150dcd0538fSMark Fasheh goto out; 4151dcd0538fSMark Fasheh } 4152dcd0538fSMark Fasheh 4153dcd0538fSMark Fasheh el = path_leaf_el(path); 4154dcd0538fSMark Fasheh 4155dcd0538fSMark Fasheh /* 4156dcd0538fSMark Fasheh * Now that we have the path, there's two things we want to determine: 4157dcd0538fSMark Fasheh * 1) Contiguousness (also set contig_index if this is so) 4158dcd0538fSMark Fasheh * 4159dcd0538fSMark Fasheh * 2) Are we doing an append? We can trivially break this up 4160dcd0538fSMark Fasheh * into two types of appends: simple record append, or a 4161dcd0538fSMark Fasheh * rotate inside the tail leaf. 4162dcd0538fSMark Fasheh */ 4163dcd0538fSMark Fasheh ocfs2_figure_contig_type(inode, insert, el, insert_rec); 4164dcd0538fSMark Fasheh 4165dcd0538fSMark Fasheh /* 4166dcd0538fSMark Fasheh * The insert code isn't quite ready to deal with all cases of 4167dcd0538fSMark Fasheh * left contiguousness. Specifically, if it's an insert into 4168dcd0538fSMark Fasheh * the 1st record in a leaf, it will require the adjustment of 4169e48edee2SMark Fasheh * cluster count on the last record of the path directly to it's 4170dcd0538fSMark Fasheh * left. For now, just catch that case and fool the layers 4171dcd0538fSMark Fasheh * above us. This works just fine for tree_depth == 0, which 4172dcd0538fSMark Fasheh * is why we allow that above. 4173dcd0538fSMark Fasheh */ 4174dcd0538fSMark Fasheh if (insert->ins_contig == CONTIG_LEFT && 4175dcd0538fSMark Fasheh insert->ins_contig_index == 0) 4176dcd0538fSMark Fasheh insert->ins_contig = CONTIG_NONE; 4177dcd0538fSMark Fasheh 4178dcd0538fSMark Fasheh /* 4179dcd0538fSMark Fasheh * Ok, so we can simply compare against last_eb to figure out 4180dcd0538fSMark Fasheh * whether the path doesn't exist. This will only happen in 4181dcd0538fSMark Fasheh * the case that we're doing a tail append, so maybe we can 4182dcd0538fSMark Fasheh * take advantage of that information somehow. 4183dcd0538fSMark Fasheh */ 4184*e7d4cb6bSTao Ma if (ocfs2_get_last_eb_blk(et) == 4185*e7d4cb6bSTao Ma path_leaf_bh(path)->b_blocknr) { 4186dcd0538fSMark Fasheh /* 4187dcd0538fSMark Fasheh * Ok, ocfs2_find_path() returned us the rightmost 4188dcd0538fSMark Fasheh * tree path. This might be an appending insert. There are 4189dcd0538fSMark Fasheh * two cases: 4190dcd0538fSMark Fasheh * 1) We're doing a true append at the tail: 4191dcd0538fSMark Fasheh * -This might even be off the end of the leaf 4192dcd0538fSMark Fasheh * 2) We're "appending" by rotating in the tail 4193dcd0538fSMark Fasheh */ 4194dcd0538fSMark Fasheh ocfs2_figure_appending_type(insert, el, insert_rec); 4195dcd0538fSMark Fasheh } 4196dcd0538fSMark Fasheh 4197dcd0538fSMark Fasheh out: 4198dcd0538fSMark Fasheh ocfs2_free_path(path); 4199dcd0538fSMark Fasheh 4200dcd0538fSMark Fasheh if (ret == 0) 4201dcd0538fSMark Fasheh *last_eb_bh = bh; 4202dcd0538fSMark Fasheh else 4203dcd0538fSMark Fasheh brelse(bh); 4204dcd0538fSMark Fasheh return ret; 4205dcd0538fSMark Fasheh } 4206dcd0538fSMark Fasheh 4207dcd0538fSMark Fasheh /* 4208dcd0538fSMark Fasheh * Insert an extent into an inode btree. 4209dcd0538fSMark Fasheh * 4210dcd0538fSMark Fasheh * The caller needs to update fe->i_clusters 4211dcd0538fSMark Fasheh */ 4212ccd979bdSMark Fasheh int ocfs2_insert_extent(struct ocfs2_super *osb, 42131fabe148SMark Fasheh handle_t *handle, 4214ccd979bdSMark Fasheh struct inode *inode, 4215*e7d4cb6bSTao Ma struct buffer_head *root_bh, 4216dcd0538fSMark Fasheh u32 cpos, 4217ccd979bdSMark Fasheh u64 start_blk, 4218ccd979bdSMark Fasheh u32 new_clusters, 42192ae99a60SMark Fasheh u8 flags, 4220*e7d4cb6bSTao Ma struct ocfs2_alloc_context *meta_ac, 4221*e7d4cb6bSTao Ma enum ocfs2_extent_tree_type et_type) 4222ccd979bdSMark Fasheh { 4223c3afcbb3SMark Fasheh int status; 4224c77534f6STao Mao int uninitialized_var(free_records); 4225ccd979bdSMark Fasheh struct buffer_head *last_eb_bh = NULL; 4226dcd0538fSMark Fasheh struct ocfs2_insert_type insert = {0, }; 4227dcd0538fSMark Fasheh struct ocfs2_extent_rec rec; 4228*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et = NULL; 4229ccd979bdSMark Fasheh 42301afc32b9SMark Fasheh BUG_ON(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL); 42311afc32b9SMark Fasheh 4232*e7d4cb6bSTao Ma et = ocfs2_new_extent_tree(root_bh, et_type); 4233*e7d4cb6bSTao Ma if (!et) { 4234*e7d4cb6bSTao Ma status = -ENOMEM; 4235*e7d4cb6bSTao Ma mlog_errno(status); 4236*e7d4cb6bSTao Ma goto bail; 4237*e7d4cb6bSTao Ma } 4238*e7d4cb6bSTao Ma 4239dcd0538fSMark Fasheh mlog(0, "add %u clusters at position %u to inode %llu\n", 4240dcd0538fSMark Fasheh new_clusters, cpos, (unsigned long long)OCFS2_I(inode)->ip_blkno); 4241ccd979bdSMark Fasheh 4242dcd0538fSMark Fasheh mlog_bug_on_msg(!ocfs2_sparse_alloc(osb) && 4243dcd0538fSMark Fasheh (OCFS2_I(inode)->ip_clusters != cpos), 4244dcd0538fSMark Fasheh "Device %s, asking for sparse allocation: inode %llu, " 4245dcd0538fSMark Fasheh "cpos %u, clusters %u\n", 4246dcd0538fSMark Fasheh osb->dev_str, 4247dcd0538fSMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos, 4248dcd0538fSMark Fasheh OCFS2_I(inode)->ip_clusters); 4249ccd979bdSMark Fasheh 4250e48edee2SMark Fasheh memset(&rec, 0, sizeof(rec)); 4251dcd0538fSMark Fasheh rec.e_cpos = cpu_to_le32(cpos); 4252dcd0538fSMark Fasheh rec.e_blkno = cpu_to_le64(start_blk); 4253e48edee2SMark Fasheh rec.e_leaf_clusters = cpu_to_le16(new_clusters); 42542ae99a60SMark Fasheh rec.e_flags = flags; 4255ccd979bdSMark Fasheh 4256*e7d4cb6bSTao Ma status = ocfs2_figure_insert_type(inode, et, &last_eb_bh, &rec, 4257c77534f6STao Mao &free_records, &insert); 4258ccd979bdSMark Fasheh if (status < 0) { 4259dcd0538fSMark Fasheh mlog_errno(status); 4260ccd979bdSMark Fasheh goto bail; 4261ccd979bdSMark Fasheh } 4262ccd979bdSMark Fasheh 4263dcd0538fSMark Fasheh mlog(0, "Insert.appending: %u, Insert.Contig: %u, " 4264dcd0538fSMark Fasheh "Insert.contig_index: %d, Insert.free_records: %d, " 4265dcd0538fSMark Fasheh "Insert.tree_depth: %d\n", 4266dcd0538fSMark Fasheh insert.ins_appending, insert.ins_contig, insert.ins_contig_index, 4267c77534f6STao Mao free_records, insert.ins_tree_depth); 4268dcd0538fSMark Fasheh 4269c77534f6STao Mao if (insert.ins_contig == CONTIG_NONE && free_records == 0) { 4270*e7d4cb6bSTao Ma status = ocfs2_grow_tree(inode, handle, et, 4271328d5752SMark Fasheh &insert.ins_tree_depth, &last_eb_bh, 4272ccd979bdSMark Fasheh meta_ac); 4273c3afcbb3SMark Fasheh if (status) { 4274ccd979bdSMark Fasheh mlog_errno(status); 4275ccd979bdSMark Fasheh goto bail; 4276ccd979bdSMark Fasheh } 4277c3afcbb3SMark Fasheh } 4278ccd979bdSMark Fasheh 4279dcd0538fSMark Fasheh /* Finally, we can add clusters. This might rotate the tree for us. */ 4280*e7d4cb6bSTao Ma status = ocfs2_do_insert_extent(inode, handle, et, &rec, &insert); 4281ccd979bdSMark Fasheh if (status < 0) 4282ccd979bdSMark Fasheh mlog_errno(status); 4283*e7d4cb6bSTao Ma else if (et->type == OCFS2_DINODE_EXTENT) 428483418978SMark Fasheh ocfs2_extent_map_insert_rec(inode, &rec); 4285ccd979bdSMark Fasheh 4286ccd979bdSMark Fasheh bail: 4287ccd979bdSMark Fasheh if (last_eb_bh) 4288ccd979bdSMark Fasheh brelse(last_eb_bh); 4289ccd979bdSMark Fasheh 4290*e7d4cb6bSTao Ma if (et) 4291*e7d4cb6bSTao Ma ocfs2_free_extent_tree(et); 4292ccd979bdSMark Fasheh mlog_exit(status); 4293ccd979bdSMark Fasheh return status; 4294ccd979bdSMark Fasheh } 4295ccd979bdSMark Fasheh 4296328d5752SMark Fasheh static void ocfs2_make_right_split_rec(struct super_block *sb, 4297328d5752SMark Fasheh struct ocfs2_extent_rec *split_rec, 4298328d5752SMark Fasheh u32 cpos, 4299328d5752SMark Fasheh struct ocfs2_extent_rec *rec) 4300328d5752SMark Fasheh { 4301328d5752SMark Fasheh u32 rec_cpos = le32_to_cpu(rec->e_cpos); 4302328d5752SMark Fasheh u32 rec_range = rec_cpos + le16_to_cpu(rec->e_leaf_clusters); 4303328d5752SMark Fasheh 4304328d5752SMark Fasheh memset(split_rec, 0, sizeof(struct ocfs2_extent_rec)); 4305328d5752SMark Fasheh 4306328d5752SMark Fasheh split_rec->e_cpos = cpu_to_le32(cpos); 4307328d5752SMark Fasheh split_rec->e_leaf_clusters = cpu_to_le16(rec_range - cpos); 4308328d5752SMark Fasheh 4309328d5752SMark Fasheh split_rec->e_blkno = rec->e_blkno; 4310328d5752SMark Fasheh le64_add_cpu(&split_rec->e_blkno, 4311328d5752SMark Fasheh ocfs2_clusters_to_blocks(sb, cpos - rec_cpos)); 4312328d5752SMark Fasheh 4313328d5752SMark Fasheh split_rec->e_flags = rec->e_flags; 4314328d5752SMark Fasheh } 4315328d5752SMark Fasheh 4316328d5752SMark Fasheh static int ocfs2_split_and_insert(struct inode *inode, 4317328d5752SMark Fasheh handle_t *handle, 4318328d5752SMark Fasheh struct ocfs2_path *path, 4319*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 4320328d5752SMark Fasheh struct buffer_head **last_eb_bh, 4321328d5752SMark Fasheh int split_index, 4322328d5752SMark Fasheh struct ocfs2_extent_rec *orig_split_rec, 4323328d5752SMark Fasheh struct ocfs2_alloc_context *meta_ac) 4324328d5752SMark Fasheh { 4325328d5752SMark Fasheh int ret = 0, depth; 4326328d5752SMark Fasheh unsigned int insert_range, rec_range, do_leftright = 0; 4327328d5752SMark Fasheh struct ocfs2_extent_rec tmprec; 4328328d5752SMark Fasheh struct ocfs2_extent_list *rightmost_el; 4329328d5752SMark Fasheh struct ocfs2_extent_rec rec; 4330328d5752SMark Fasheh struct ocfs2_extent_rec split_rec = *orig_split_rec; 4331328d5752SMark Fasheh struct ocfs2_insert_type insert; 4332328d5752SMark Fasheh struct ocfs2_extent_block *eb; 4333328d5752SMark Fasheh 4334328d5752SMark Fasheh leftright: 4335328d5752SMark Fasheh /* 4336328d5752SMark Fasheh * Store a copy of the record on the stack - it might move 4337328d5752SMark Fasheh * around as the tree is manipulated below. 4338328d5752SMark Fasheh */ 4339328d5752SMark Fasheh rec = path_leaf_el(path)->l_recs[split_index]; 4340328d5752SMark Fasheh 4341*e7d4cb6bSTao Ma rightmost_el = et->root_el; 4342328d5752SMark Fasheh 4343328d5752SMark Fasheh depth = le16_to_cpu(rightmost_el->l_tree_depth); 4344328d5752SMark Fasheh if (depth) { 4345328d5752SMark Fasheh BUG_ON(!(*last_eb_bh)); 4346328d5752SMark Fasheh eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data; 4347328d5752SMark Fasheh rightmost_el = &eb->h_list; 4348328d5752SMark Fasheh } 4349328d5752SMark Fasheh 4350328d5752SMark Fasheh if (le16_to_cpu(rightmost_el->l_next_free_rec) == 4351328d5752SMark Fasheh le16_to_cpu(rightmost_el->l_count)) { 4352*e7d4cb6bSTao Ma ret = ocfs2_grow_tree(inode, handle, et, 4353*e7d4cb6bSTao Ma &depth, last_eb_bh, meta_ac); 4354328d5752SMark Fasheh if (ret) { 4355328d5752SMark Fasheh mlog_errno(ret); 4356328d5752SMark Fasheh goto out; 4357328d5752SMark Fasheh } 4358328d5752SMark Fasheh } 4359328d5752SMark Fasheh 4360328d5752SMark Fasheh memset(&insert, 0, sizeof(struct ocfs2_insert_type)); 4361328d5752SMark Fasheh insert.ins_appending = APPEND_NONE; 4362328d5752SMark Fasheh insert.ins_contig = CONTIG_NONE; 4363328d5752SMark Fasheh insert.ins_tree_depth = depth; 4364328d5752SMark Fasheh 4365328d5752SMark Fasheh insert_range = le32_to_cpu(split_rec.e_cpos) + 4366328d5752SMark Fasheh le16_to_cpu(split_rec.e_leaf_clusters); 4367328d5752SMark Fasheh rec_range = le32_to_cpu(rec.e_cpos) + 4368328d5752SMark Fasheh le16_to_cpu(rec.e_leaf_clusters); 4369328d5752SMark Fasheh 4370328d5752SMark Fasheh if (split_rec.e_cpos == rec.e_cpos) { 4371328d5752SMark Fasheh insert.ins_split = SPLIT_LEFT; 4372328d5752SMark Fasheh } else if (insert_range == rec_range) { 4373328d5752SMark Fasheh insert.ins_split = SPLIT_RIGHT; 4374328d5752SMark Fasheh } else { 4375328d5752SMark Fasheh /* 4376328d5752SMark Fasheh * Left/right split. We fake this as a right split 4377328d5752SMark Fasheh * first and then make a second pass as a left split. 4378328d5752SMark Fasheh */ 4379328d5752SMark Fasheh insert.ins_split = SPLIT_RIGHT; 4380328d5752SMark Fasheh 4381328d5752SMark Fasheh ocfs2_make_right_split_rec(inode->i_sb, &tmprec, insert_range, 4382328d5752SMark Fasheh &rec); 4383328d5752SMark Fasheh 4384328d5752SMark Fasheh split_rec = tmprec; 4385328d5752SMark Fasheh 4386328d5752SMark Fasheh BUG_ON(do_leftright); 4387328d5752SMark Fasheh do_leftright = 1; 4388328d5752SMark Fasheh } 4389328d5752SMark Fasheh 4390*e7d4cb6bSTao Ma ret = ocfs2_do_insert_extent(inode, handle, et, &split_rec, &insert); 4391328d5752SMark Fasheh if (ret) { 4392328d5752SMark Fasheh mlog_errno(ret); 4393328d5752SMark Fasheh goto out; 4394328d5752SMark Fasheh } 4395328d5752SMark Fasheh 4396328d5752SMark Fasheh if (do_leftright == 1) { 4397328d5752SMark Fasheh u32 cpos; 4398328d5752SMark Fasheh struct ocfs2_extent_list *el; 4399328d5752SMark Fasheh 4400328d5752SMark Fasheh do_leftright++; 4401328d5752SMark Fasheh split_rec = *orig_split_rec; 4402328d5752SMark Fasheh 4403328d5752SMark Fasheh ocfs2_reinit_path(path, 1); 4404328d5752SMark Fasheh 4405328d5752SMark Fasheh cpos = le32_to_cpu(split_rec.e_cpos); 4406328d5752SMark Fasheh ret = ocfs2_find_path(inode, path, cpos); 4407328d5752SMark Fasheh if (ret) { 4408328d5752SMark Fasheh mlog_errno(ret); 4409328d5752SMark Fasheh goto out; 4410328d5752SMark Fasheh } 4411328d5752SMark Fasheh 4412328d5752SMark Fasheh el = path_leaf_el(path); 4413328d5752SMark Fasheh split_index = ocfs2_search_extent_list(el, cpos); 4414328d5752SMark Fasheh goto leftright; 4415328d5752SMark Fasheh } 4416328d5752SMark Fasheh out: 4417328d5752SMark Fasheh 4418328d5752SMark Fasheh return ret; 4419328d5752SMark Fasheh } 4420328d5752SMark Fasheh 4421328d5752SMark Fasheh /* 4422328d5752SMark Fasheh * Mark part or all of the extent record at split_index in the leaf 4423328d5752SMark Fasheh * pointed to by path as written. This removes the unwritten 4424328d5752SMark Fasheh * extent flag. 4425328d5752SMark Fasheh * 4426328d5752SMark Fasheh * Care is taken to handle contiguousness so as to not grow the tree. 4427328d5752SMark Fasheh * 4428328d5752SMark Fasheh * meta_ac is not strictly necessary - we only truly need it if growth 4429328d5752SMark Fasheh * of the tree is required. All other cases will degrade into a less 4430328d5752SMark Fasheh * optimal tree layout. 4431328d5752SMark Fasheh * 4432*e7d4cb6bSTao Ma * last_eb_bh should be the rightmost leaf block for any extent 4433*e7d4cb6bSTao Ma * btree. Since a split may grow the tree or a merge might shrink it, 4434*e7d4cb6bSTao Ma * the caller cannot trust the contents of that buffer after this call. 4435328d5752SMark Fasheh * 4436328d5752SMark Fasheh * This code is optimized for readability - several passes might be 4437328d5752SMark Fasheh * made over certain portions of the tree. All of those blocks will 4438328d5752SMark Fasheh * have been brought into cache (and pinned via the journal), so the 4439328d5752SMark Fasheh * extra overhead is not expressed in terms of disk reads. 4440328d5752SMark Fasheh */ 4441328d5752SMark Fasheh static int __ocfs2_mark_extent_written(struct inode *inode, 4442*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et, 4443328d5752SMark Fasheh handle_t *handle, 4444328d5752SMark Fasheh struct ocfs2_path *path, 4445328d5752SMark Fasheh int split_index, 4446328d5752SMark Fasheh struct ocfs2_extent_rec *split_rec, 4447328d5752SMark Fasheh struct ocfs2_alloc_context *meta_ac, 4448328d5752SMark Fasheh struct ocfs2_cached_dealloc_ctxt *dealloc) 4449328d5752SMark Fasheh { 4450328d5752SMark Fasheh int ret = 0; 4451328d5752SMark Fasheh struct ocfs2_extent_list *el = path_leaf_el(path); 4452e8aed345SMark Fasheh struct buffer_head *last_eb_bh = NULL; 4453328d5752SMark Fasheh struct ocfs2_extent_rec *rec = &el->l_recs[split_index]; 4454328d5752SMark Fasheh struct ocfs2_merge_ctxt ctxt; 4455328d5752SMark Fasheh struct ocfs2_extent_list *rightmost_el; 4456328d5752SMark Fasheh 44573cf0c507SRoel Kluin if (!(rec->e_flags & OCFS2_EXT_UNWRITTEN)) { 4458328d5752SMark Fasheh ret = -EIO; 4459328d5752SMark Fasheh mlog_errno(ret); 4460328d5752SMark Fasheh goto out; 4461328d5752SMark Fasheh } 4462328d5752SMark Fasheh 4463328d5752SMark Fasheh if (le32_to_cpu(rec->e_cpos) > le32_to_cpu(split_rec->e_cpos) || 4464328d5752SMark Fasheh ((le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)) < 4465328d5752SMark Fasheh (le32_to_cpu(split_rec->e_cpos) + le16_to_cpu(split_rec->e_leaf_clusters)))) { 4466328d5752SMark Fasheh ret = -EIO; 4467328d5752SMark Fasheh mlog_errno(ret); 4468328d5752SMark Fasheh goto out; 4469328d5752SMark Fasheh } 4470328d5752SMark Fasheh 4471ad5a4d70STao Ma ctxt.c_contig_type = ocfs2_figure_merge_contig_type(inode, path, el, 4472328d5752SMark Fasheh split_index, 4473328d5752SMark Fasheh split_rec); 4474328d5752SMark Fasheh 4475328d5752SMark Fasheh /* 4476328d5752SMark Fasheh * The core merge / split code wants to know how much room is 4477328d5752SMark Fasheh * left in this inodes allocation tree, so we pass the 4478328d5752SMark Fasheh * rightmost extent list. 4479328d5752SMark Fasheh */ 4480328d5752SMark Fasheh if (path->p_tree_depth) { 4481328d5752SMark Fasheh struct ocfs2_extent_block *eb; 4482328d5752SMark Fasheh 4483328d5752SMark Fasheh ret = ocfs2_read_block(OCFS2_SB(inode->i_sb), 4484*e7d4cb6bSTao Ma ocfs2_get_last_eb_blk(et), 4485328d5752SMark Fasheh &last_eb_bh, OCFS2_BH_CACHED, inode); 4486328d5752SMark Fasheh if (ret) { 4487328d5752SMark Fasheh mlog_exit(ret); 4488328d5752SMark Fasheh goto out; 4489328d5752SMark Fasheh } 4490328d5752SMark Fasheh 4491328d5752SMark Fasheh eb = (struct ocfs2_extent_block *) last_eb_bh->b_data; 4492328d5752SMark Fasheh if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) { 4493328d5752SMark Fasheh OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb); 4494328d5752SMark Fasheh ret = -EROFS; 4495328d5752SMark Fasheh goto out; 4496328d5752SMark Fasheh } 4497328d5752SMark Fasheh 4498328d5752SMark Fasheh rightmost_el = &eb->h_list; 4499328d5752SMark Fasheh } else 4500328d5752SMark Fasheh rightmost_el = path_root_el(path); 4501328d5752SMark Fasheh 4502328d5752SMark Fasheh if (rec->e_cpos == split_rec->e_cpos && 4503328d5752SMark Fasheh rec->e_leaf_clusters == split_rec->e_leaf_clusters) 4504328d5752SMark Fasheh ctxt.c_split_covers_rec = 1; 4505328d5752SMark Fasheh else 4506328d5752SMark Fasheh ctxt.c_split_covers_rec = 0; 4507328d5752SMark Fasheh 4508328d5752SMark Fasheh ctxt.c_has_empty_extent = ocfs2_is_empty_extent(&el->l_recs[0]); 4509328d5752SMark Fasheh 4510015452b1SMark Fasheh mlog(0, "index: %d, contig: %u, has_empty: %u, split_covers: %u\n", 4511015452b1SMark Fasheh split_index, ctxt.c_contig_type, ctxt.c_has_empty_extent, 4512015452b1SMark Fasheh ctxt.c_split_covers_rec); 4513328d5752SMark Fasheh 4514328d5752SMark Fasheh if (ctxt.c_contig_type == CONTIG_NONE) { 4515328d5752SMark Fasheh if (ctxt.c_split_covers_rec) 4516328d5752SMark Fasheh el->l_recs[split_index] = *split_rec; 4517328d5752SMark Fasheh else 4518*e7d4cb6bSTao Ma ret = ocfs2_split_and_insert(inode, handle, path, et, 4519328d5752SMark Fasheh &last_eb_bh, split_index, 4520328d5752SMark Fasheh split_rec, meta_ac); 4521328d5752SMark Fasheh if (ret) 4522328d5752SMark Fasheh mlog_errno(ret); 4523328d5752SMark Fasheh } else { 4524328d5752SMark Fasheh ret = ocfs2_try_to_merge_extent(inode, handle, path, 4525328d5752SMark Fasheh split_index, split_rec, 4526*e7d4cb6bSTao Ma dealloc, &ctxt, et); 4527328d5752SMark Fasheh if (ret) 4528328d5752SMark Fasheh mlog_errno(ret); 4529328d5752SMark Fasheh } 4530328d5752SMark Fasheh 4531328d5752SMark Fasheh out: 4532328d5752SMark Fasheh brelse(last_eb_bh); 4533328d5752SMark Fasheh return ret; 4534328d5752SMark Fasheh } 4535328d5752SMark Fasheh 4536328d5752SMark Fasheh /* 4537328d5752SMark Fasheh * Mark the already-existing extent at cpos as written for len clusters. 4538328d5752SMark Fasheh * 4539328d5752SMark Fasheh * If the existing extent is larger than the request, initiate a 4540328d5752SMark Fasheh * split. An attempt will be made at merging with adjacent extents. 4541328d5752SMark Fasheh * 4542328d5752SMark Fasheh * The caller is responsible for passing down meta_ac if we'll need it. 4543328d5752SMark Fasheh */ 4544*e7d4cb6bSTao Ma int ocfs2_mark_extent_written(struct inode *inode, struct buffer_head *root_bh, 4545328d5752SMark Fasheh handle_t *handle, u32 cpos, u32 len, u32 phys, 4546328d5752SMark Fasheh struct ocfs2_alloc_context *meta_ac, 4547*e7d4cb6bSTao Ma struct ocfs2_cached_dealloc_ctxt *dealloc, 4548*e7d4cb6bSTao Ma enum ocfs2_extent_tree_type et_type) 4549328d5752SMark Fasheh { 4550328d5752SMark Fasheh int ret, index; 4551328d5752SMark Fasheh u64 start_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys); 4552328d5752SMark Fasheh struct ocfs2_extent_rec split_rec; 4553328d5752SMark Fasheh struct ocfs2_path *left_path = NULL; 4554328d5752SMark Fasheh struct ocfs2_extent_list *el; 4555*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et = NULL; 4556328d5752SMark Fasheh 4557328d5752SMark Fasheh mlog(0, "Inode %lu cpos %u, len %u, phys %u (%llu)\n", 4558328d5752SMark Fasheh inode->i_ino, cpos, len, phys, (unsigned long long)start_blkno); 4559328d5752SMark Fasheh 4560328d5752SMark Fasheh if (!ocfs2_writes_unwritten_extents(OCFS2_SB(inode->i_sb))) { 4561328d5752SMark Fasheh ocfs2_error(inode->i_sb, "Inode %llu has unwritten extents " 4562328d5752SMark Fasheh "that are being written to, but the feature bit " 4563328d5752SMark Fasheh "is not set in the super block.", 4564328d5752SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno); 4565328d5752SMark Fasheh ret = -EROFS; 4566328d5752SMark Fasheh goto out; 4567328d5752SMark Fasheh } 4568328d5752SMark Fasheh 4569*e7d4cb6bSTao Ma et = ocfs2_new_extent_tree(root_bh, et_type); 4570*e7d4cb6bSTao Ma if (!et) { 4571*e7d4cb6bSTao Ma ret = -ENOMEM; 4572*e7d4cb6bSTao Ma mlog_errno(ret); 4573*e7d4cb6bSTao Ma goto out; 4574*e7d4cb6bSTao Ma } 4575*e7d4cb6bSTao Ma 4576328d5752SMark Fasheh /* 4577328d5752SMark Fasheh * XXX: This should be fixed up so that we just re-insert the 4578328d5752SMark Fasheh * next extent records. 4579328d5752SMark Fasheh */ 4580*e7d4cb6bSTao Ma if (et_type == OCFS2_DINODE_EXTENT) 4581328d5752SMark Fasheh ocfs2_extent_map_trunc(inode, 0); 4582328d5752SMark Fasheh 4583*e7d4cb6bSTao Ma left_path = ocfs2_new_path(et->root_bh, et->root_el); 4584328d5752SMark Fasheh if (!left_path) { 4585328d5752SMark Fasheh ret = -ENOMEM; 4586328d5752SMark Fasheh mlog_errno(ret); 4587328d5752SMark Fasheh goto out; 4588328d5752SMark Fasheh } 4589328d5752SMark Fasheh 4590328d5752SMark Fasheh ret = ocfs2_find_path(inode, left_path, cpos); 4591328d5752SMark Fasheh if (ret) { 4592328d5752SMark Fasheh mlog_errno(ret); 4593328d5752SMark Fasheh goto out; 4594328d5752SMark Fasheh } 4595328d5752SMark Fasheh el = path_leaf_el(left_path); 4596328d5752SMark Fasheh 4597328d5752SMark Fasheh index = ocfs2_search_extent_list(el, cpos); 4598328d5752SMark Fasheh if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) { 4599328d5752SMark Fasheh ocfs2_error(inode->i_sb, 4600328d5752SMark Fasheh "Inode %llu has an extent at cpos %u which can no " 4601328d5752SMark Fasheh "longer be found.\n", 4602328d5752SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos); 4603328d5752SMark Fasheh ret = -EROFS; 4604328d5752SMark Fasheh goto out; 4605328d5752SMark Fasheh } 4606328d5752SMark Fasheh 4607328d5752SMark Fasheh memset(&split_rec, 0, sizeof(struct ocfs2_extent_rec)); 4608328d5752SMark Fasheh split_rec.e_cpos = cpu_to_le32(cpos); 4609328d5752SMark Fasheh split_rec.e_leaf_clusters = cpu_to_le16(len); 4610328d5752SMark Fasheh split_rec.e_blkno = cpu_to_le64(start_blkno); 4611328d5752SMark Fasheh split_rec.e_flags = path_leaf_el(left_path)->l_recs[index].e_flags; 4612328d5752SMark Fasheh split_rec.e_flags &= ~OCFS2_EXT_UNWRITTEN; 4613328d5752SMark Fasheh 4614*e7d4cb6bSTao Ma ret = __ocfs2_mark_extent_written(inode, et, handle, left_path, 4615*e7d4cb6bSTao Ma index, &split_rec, meta_ac, 4616*e7d4cb6bSTao Ma dealloc); 4617328d5752SMark Fasheh if (ret) 4618328d5752SMark Fasheh mlog_errno(ret); 4619328d5752SMark Fasheh 4620328d5752SMark Fasheh out: 4621328d5752SMark Fasheh ocfs2_free_path(left_path); 4622*e7d4cb6bSTao Ma if (et) 4623*e7d4cb6bSTao Ma ocfs2_free_extent_tree(et); 4624328d5752SMark Fasheh return ret; 4625328d5752SMark Fasheh } 4626328d5752SMark Fasheh 4627*e7d4cb6bSTao Ma static int ocfs2_split_tree(struct inode *inode, struct ocfs2_extent_tree *et, 4628d0c7d708SMark Fasheh handle_t *handle, struct ocfs2_path *path, 4629d0c7d708SMark Fasheh int index, u32 new_range, 4630d0c7d708SMark Fasheh struct ocfs2_alloc_context *meta_ac) 4631d0c7d708SMark Fasheh { 4632d0c7d708SMark Fasheh int ret, depth, credits = handle->h_buffer_credits; 4633d0c7d708SMark Fasheh struct buffer_head *last_eb_bh = NULL; 4634d0c7d708SMark Fasheh struct ocfs2_extent_block *eb; 4635d0c7d708SMark Fasheh struct ocfs2_extent_list *rightmost_el, *el; 4636d0c7d708SMark Fasheh struct ocfs2_extent_rec split_rec; 4637d0c7d708SMark Fasheh struct ocfs2_extent_rec *rec; 4638d0c7d708SMark Fasheh struct ocfs2_insert_type insert; 4639d0c7d708SMark Fasheh 4640d0c7d708SMark Fasheh /* 4641d0c7d708SMark Fasheh * Setup the record to split before we grow the tree. 4642d0c7d708SMark Fasheh */ 4643d0c7d708SMark Fasheh el = path_leaf_el(path); 4644d0c7d708SMark Fasheh rec = &el->l_recs[index]; 4645d0c7d708SMark Fasheh ocfs2_make_right_split_rec(inode->i_sb, &split_rec, new_range, rec); 4646d0c7d708SMark Fasheh 4647d0c7d708SMark Fasheh depth = path->p_tree_depth; 4648d0c7d708SMark Fasheh if (depth > 0) { 4649d0c7d708SMark Fasheh ret = ocfs2_read_block(OCFS2_SB(inode->i_sb), 4650*e7d4cb6bSTao Ma ocfs2_get_last_eb_blk(et), 4651d0c7d708SMark Fasheh &last_eb_bh, OCFS2_BH_CACHED, inode); 4652d0c7d708SMark Fasheh if (ret < 0) { 4653d0c7d708SMark Fasheh mlog_errno(ret); 4654d0c7d708SMark Fasheh goto out; 4655d0c7d708SMark Fasheh } 4656d0c7d708SMark Fasheh 4657d0c7d708SMark Fasheh eb = (struct ocfs2_extent_block *) last_eb_bh->b_data; 4658d0c7d708SMark Fasheh rightmost_el = &eb->h_list; 4659d0c7d708SMark Fasheh } else 4660d0c7d708SMark Fasheh rightmost_el = path_leaf_el(path); 4661d0c7d708SMark Fasheh 4662811f933dSTao Ma credits += path->p_tree_depth + 4663*e7d4cb6bSTao Ma ocfs2_extend_meta_needed(et->root_el); 4664d0c7d708SMark Fasheh ret = ocfs2_extend_trans(handle, credits); 4665d0c7d708SMark Fasheh if (ret) { 4666d0c7d708SMark Fasheh mlog_errno(ret); 4667d0c7d708SMark Fasheh goto out; 4668d0c7d708SMark Fasheh } 4669d0c7d708SMark Fasheh 4670d0c7d708SMark Fasheh if (le16_to_cpu(rightmost_el->l_next_free_rec) == 4671d0c7d708SMark Fasheh le16_to_cpu(rightmost_el->l_count)) { 4672*e7d4cb6bSTao Ma ret = ocfs2_grow_tree(inode, handle, et, &depth, &last_eb_bh, 4673d0c7d708SMark Fasheh meta_ac); 4674d0c7d708SMark Fasheh if (ret) { 4675d0c7d708SMark Fasheh mlog_errno(ret); 4676d0c7d708SMark Fasheh goto out; 4677d0c7d708SMark Fasheh } 4678d0c7d708SMark Fasheh } 4679d0c7d708SMark Fasheh 4680d0c7d708SMark Fasheh memset(&insert, 0, sizeof(struct ocfs2_insert_type)); 4681d0c7d708SMark Fasheh insert.ins_appending = APPEND_NONE; 4682d0c7d708SMark Fasheh insert.ins_contig = CONTIG_NONE; 4683d0c7d708SMark Fasheh insert.ins_split = SPLIT_RIGHT; 4684d0c7d708SMark Fasheh insert.ins_tree_depth = depth; 4685d0c7d708SMark Fasheh 4686*e7d4cb6bSTao Ma ret = ocfs2_do_insert_extent(inode, handle, et, &split_rec, &insert); 4687d0c7d708SMark Fasheh if (ret) 4688d0c7d708SMark Fasheh mlog_errno(ret); 4689d0c7d708SMark Fasheh 4690d0c7d708SMark Fasheh out: 4691d0c7d708SMark Fasheh brelse(last_eb_bh); 4692d0c7d708SMark Fasheh return ret; 4693d0c7d708SMark Fasheh } 4694d0c7d708SMark Fasheh 4695d0c7d708SMark Fasheh static int ocfs2_truncate_rec(struct inode *inode, handle_t *handle, 4696d0c7d708SMark Fasheh struct ocfs2_path *path, int index, 4697d0c7d708SMark Fasheh struct ocfs2_cached_dealloc_ctxt *dealloc, 4698*e7d4cb6bSTao Ma u32 cpos, u32 len, 4699*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et) 4700d0c7d708SMark Fasheh { 4701d0c7d708SMark Fasheh int ret; 4702d0c7d708SMark Fasheh u32 left_cpos, rec_range, trunc_range; 4703d0c7d708SMark Fasheh int wants_rotate = 0, is_rightmost_tree_rec = 0; 4704d0c7d708SMark Fasheh struct super_block *sb = inode->i_sb; 4705d0c7d708SMark Fasheh struct ocfs2_path *left_path = NULL; 4706d0c7d708SMark Fasheh struct ocfs2_extent_list *el = path_leaf_el(path); 4707d0c7d708SMark Fasheh struct ocfs2_extent_rec *rec; 4708d0c7d708SMark Fasheh struct ocfs2_extent_block *eb; 4709d0c7d708SMark Fasheh 4710d0c7d708SMark Fasheh if (ocfs2_is_empty_extent(&el->l_recs[0]) && index > 0) { 4711*e7d4cb6bSTao Ma ret = ocfs2_rotate_tree_left(inode, handle, path, dealloc, et); 4712d0c7d708SMark Fasheh if (ret) { 4713d0c7d708SMark Fasheh mlog_errno(ret); 4714d0c7d708SMark Fasheh goto out; 4715d0c7d708SMark Fasheh } 4716d0c7d708SMark Fasheh 4717d0c7d708SMark Fasheh index--; 4718d0c7d708SMark Fasheh } 4719d0c7d708SMark Fasheh 4720d0c7d708SMark Fasheh if (index == (le16_to_cpu(el->l_next_free_rec) - 1) && 4721d0c7d708SMark Fasheh path->p_tree_depth) { 4722d0c7d708SMark Fasheh /* 4723d0c7d708SMark Fasheh * Check whether this is the rightmost tree record. If 4724d0c7d708SMark Fasheh * we remove all of this record or part of its right 4725d0c7d708SMark Fasheh * edge then an update of the record lengths above it 4726d0c7d708SMark Fasheh * will be required. 4727d0c7d708SMark Fasheh */ 4728d0c7d708SMark Fasheh eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data; 4729d0c7d708SMark Fasheh if (eb->h_next_leaf_blk == 0) 4730d0c7d708SMark Fasheh is_rightmost_tree_rec = 1; 4731d0c7d708SMark Fasheh } 4732d0c7d708SMark Fasheh 4733d0c7d708SMark Fasheh rec = &el->l_recs[index]; 4734d0c7d708SMark Fasheh if (index == 0 && path->p_tree_depth && 4735d0c7d708SMark Fasheh le32_to_cpu(rec->e_cpos) == cpos) { 4736d0c7d708SMark Fasheh /* 4737d0c7d708SMark Fasheh * Changing the leftmost offset (via partial or whole 4738d0c7d708SMark Fasheh * record truncate) of an interior (or rightmost) path 4739d0c7d708SMark Fasheh * means we have to update the subtree that is formed 4740d0c7d708SMark Fasheh * by this leaf and the one to it's left. 4741d0c7d708SMark Fasheh * 4742d0c7d708SMark Fasheh * There are two cases we can skip: 4743d0c7d708SMark Fasheh * 1) Path is the leftmost one in our inode tree. 4744d0c7d708SMark Fasheh * 2) The leaf is rightmost and will be empty after 4745d0c7d708SMark Fasheh * we remove the extent record - the rotate code 4746d0c7d708SMark Fasheh * knows how to update the newly formed edge. 4747d0c7d708SMark Fasheh */ 4748d0c7d708SMark Fasheh 4749d0c7d708SMark Fasheh ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, path, 4750d0c7d708SMark Fasheh &left_cpos); 4751d0c7d708SMark Fasheh if (ret) { 4752d0c7d708SMark Fasheh mlog_errno(ret); 4753d0c7d708SMark Fasheh goto out; 4754d0c7d708SMark Fasheh } 4755d0c7d708SMark Fasheh 4756d0c7d708SMark Fasheh if (left_cpos && le16_to_cpu(el->l_next_free_rec) > 1) { 4757d0c7d708SMark Fasheh left_path = ocfs2_new_path(path_root_bh(path), 4758d0c7d708SMark Fasheh path_root_el(path)); 4759d0c7d708SMark Fasheh if (!left_path) { 4760d0c7d708SMark Fasheh ret = -ENOMEM; 4761d0c7d708SMark Fasheh mlog_errno(ret); 4762d0c7d708SMark Fasheh goto out; 4763d0c7d708SMark Fasheh } 4764d0c7d708SMark Fasheh 4765d0c7d708SMark Fasheh ret = ocfs2_find_path(inode, left_path, left_cpos); 4766d0c7d708SMark Fasheh if (ret) { 4767d0c7d708SMark Fasheh mlog_errno(ret); 4768d0c7d708SMark Fasheh goto out; 4769d0c7d708SMark Fasheh } 4770d0c7d708SMark Fasheh } 4771d0c7d708SMark Fasheh } 4772d0c7d708SMark Fasheh 4773d0c7d708SMark Fasheh ret = ocfs2_extend_rotate_transaction(handle, 0, 4774d0c7d708SMark Fasheh handle->h_buffer_credits, 4775d0c7d708SMark Fasheh path); 4776d0c7d708SMark Fasheh if (ret) { 4777d0c7d708SMark Fasheh mlog_errno(ret); 4778d0c7d708SMark Fasheh goto out; 4779d0c7d708SMark Fasheh } 4780d0c7d708SMark Fasheh 4781d0c7d708SMark Fasheh ret = ocfs2_journal_access_path(inode, handle, path); 4782d0c7d708SMark Fasheh if (ret) { 4783d0c7d708SMark Fasheh mlog_errno(ret); 4784d0c7d708SMark Fasheh goto out; 4785d0c7d708SMark Fasheh } 4786d0c7d708SMark Fasheh 4787d0c7d708SMark Fasheh ret = ocfs2_journal_access_path(inode, handle, left_path); 4788d0c7d708SMark Fasheh if (ret) { 4789d0c7d708SMark Fasheh mlog_errno(ret); 4790d0c7d708SMark Fasheh goto out; 4791d0c7d708SMark Fasheh } 4792d0c7d708SMark Fasheh 4793d0c7d708SMark Fasheh rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec); 4794d0c7d708SMark Fasheh trunc_range = cpos + len; 4795d0c7d708SMark Fasheh 4796d0c7d708SMark Fasheh if (le32_to_cpu(rec->e_cpos) == cpos && rec_range == trunc_range) { 4797d0c7d708SMark Fasheh int next_free; 4798d0c7d708SMark Fasheh 4799d0c7d708SMark Fasheh memset(rec, 0, sizeof(*rec)); 4800d0c7d708SMark Fasheh ocfs2_cleanup_merge(el, index); 4801d0c7d708SMark Fasheh wants_rotate = 1; 4802d0c7d708SMark Fasheh 4803d0c7d708SMark Fasheh next_free = le16_to_cpu(el->l_next_free_rec); 4804d0c7d708SMark Fasheh if (is_rightmost_tree_rec && next_free > 1) { 4805d0c7d708SMark Fasheh /* 4806d0c7d708SMark Fasheh * We skip the edge update if this path will 4807d0c7d708SMark Fasheh * be deleted by the rotate code. 4808d0c7d708SMark Fasheh */ 4809d0c7d708SMark Fasheh rec = &el->l_recs[next_free - 1]; 4810d0c7d708SMark Fasheh ocfs2_adjust_rightmost_records(inode, handle, path, 4811d0c7d708SMark Fasheh rec); 4812d0c7d708SMark Fasheh } 4813d0c7d708SMark Fasheh } else if (le32_to_cpu(rec->e_cpos) == cpos) { 4814d0c7d708SMark Fasheh /* Remove leftmost portion of the record. */ 4815d0c7d708SMark Fasheh le32_add_cpu(&rec->e_cpos, len); 4816d0c7d708SMark Fasheh le64_add_cpu(&rec->e_blkno, ocfs2_clusters_to_blocks(sb, len)); 4817d0c7d708SMark Fasheh le16_add_cpu(&rec->e_leaf_clusters, -len); 4818d0c7d708SMark Fasheh } else if (rec_range == trunc_range) { 4819d0c7d708SMark Fasheh /* Remove rightmost portion of the record */ 4820d0c7d708SMark Fasheh le16_add_cpu(&rec->e_leaf_clusters, -len); 4821d0c7d708SMark Fasheh if (is_rightmost_tree_rec) 4822d0c7d708SMark Fasheh ocfs2_adjust_rightmost_records(inode, handle, path, rec); 4823d0c7d708SMark Fasheh } else { 4824d0c7d708SMark Fasheh /* Caller should have trapped this. */ 4825d0c7d708SMark Fasheh mlog(ML_ERROR, "Inode %llu: Invalid record truncate: (%u, %u) " 4826d0c7d708SMark Fasheh "(%u, %u)\n", (unsigned long long)OCFS2_I(inode)->ip_blkno, 4827d0c7d708SMark Fasheh le32_to_cpu(rec->e_cpos), 4828d0c7d708SMark Fasheh le16_to_cpu(rec->e_leaf_clusters), cpos, len); 4829d0c7d708SMark Fasheh BUG(); 4830d0c7d708SMark Fasheh } 4831d0c7d708SMark Fasheh 4832d0c7d708SMark Fasheh if (left_path) { 4833d0c7d708SMark Fasheh int subtree_index; 4834d0c7d708SMark Fasheh 4835d0c7d708SMark Fasheh subtree_index = ocfs2_find_subtree_root(inode, left_path, path); 4836d0c7d708SMark Fasheh ocfs2_complete_edge_insert(inode, handle, left_path, path, 4837d0c7d708SMark Fasheh subtree_index); 4838d0c7d708SMark Fasheh } 4839d0c7d708SMark Fasheh 4840d0c7d708SMark Fasheh ocfs2_journal_dirty(handle, path_leaf_bh(path)); 4841d0c7d708SMark Fasheh 4842*e7d4cb6bSTao Ma ret = ocfs2_rotate_tree_left(inode, handle, path, dealloc, et); 4843d0c7d708SMark Fasheh if (ret) { 4844d0c7d708SMark Fasheh mlog_errno(ret); 4845d0c7d708SMark Fasheh goto out; 4846d0c7d708SMark Fasheh } 4847d0c7d708SMark Fasheh 4848d0c7d708SMark Fasheh out: 4849d0c7d708SMark Fasheh ocfs2_free_path(left_path); 4850d0c7d708SMark Fasheh return ret; 4851d0c7d708SMark Fasheh } 4852d0c7d708SMark Fasheh 4853*e7d4cb6bSTao Ma int ocfs2_remove_extent(struct inode *inode, struct buffer_head *root_bh, 4854d0c7d708SMark Fasheh u32 cpos, u32 len, handle_t *handle, 4855d0c7d708SMark Fasheh struct ocfs2_alloc_context *meta_ac, 4856*e7d4cb6bSTao Ma struct ocfs2_cached_dealloc_ctxt *dealloc, 4857*e7d4cb6bSTao Ma enum ocfs2_extent_tree_type et_type) 4858d0c7d708SMark Fasheh { 4859d0c7d708SMark Fasheh int ret, index; 4860d0c7d708SMark Fasheh u32 rec_range, trunc_range; 4861d0c7d708SMark Fasheh struct ocfs2_extent_rec *rec; 4862d0c7d708SMark Fasheh struct ocfs2_extent_list *el; 4863*e7d4cb6bSTao Ma struct ocfs2_path *path = NULL; 4864*e7d4cb6bSTao Ma struct ocfs2_extent_tree *et = NULL; 4865*e7d4cb6bSTao Ma 4866*e7d4cb6bSTao Ma et = ocfs2_new_extent_tree(root_bh, et_type); 4867*e7d4cb6bSTao Ma if (!et) { 4868*e7d4cb6bSTao Ma ret = -ENOMEM; 4869*e7d4cb6bSTao Ma mlog_errno(ret); 4870*e7d4cb6bSTao Ma goto out; 4871*e7d4cb6bSTao Ma } 4872d0c7d708SMark Fasheh 4873d0c7d708SMark Fasheh ocfs2_extent_map_trunc(inode, 0); 4874d0c7d708SMark Fasheh 4875*e7d4cb6bSTao Ma path = ocfs2_new_path(et->root_bh, et->root_el); 4876d0c7d708SMark Fasheh if (!path) { 4877d0c7d708SMark Fasheh ret = -ENOMEM; 4878d0c7d708SMark Fasheh mlog_errno(ret); 4879d0c7d708SMark Fasheh goto out; 4880d0c7d708SMark Fasheh } 4881d0c7d708SMark Fasheh 4882d0c7d708SMark Fasheh ret = ocfs2_find_path(inode, path, cpos); 4883d0c7d708SMark Fasheh if (ret) { 4884d0c7d708SMark Fasheh mlog_errno(ret); 4885d0c7d708SMark Fasheh goto out; 4886d0c7d708SMark Fasheh } 4887d0c7d708SMark Fasheh 4888d0c7d708SMark Fasheh el = path_leaf_el(path); 4889d0c7d708SMark Fasheh index = ocfs2_search_extent_list(el, cpos); 4890d0c7d708SMark Fasheh if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) { 4891d0c7d708SMark Fasheh ocfs2_error(inode->i_sb, 4892d0c7d708SMark Fasheh "Inode %llu has an extent at cpos %u which can no " 4893d0c7d708SMark Fasheh "longer be found.\n", 4894d0c7d708SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos); 4895d0c7d708SMark Fasheh ret = -EROFS; 4896d0c7d708SMark Fasheh goto out; 4897d0c7d708SMark Fasheh } 4898d0c7d708SMark Fasheh 4899d0c7d708SMark Fasheh /* 4900d0c7d708SMark Fasheh * We have 3 cases of extent removal: 4901d0c7d708SMark Fasheh * 1) Range covers the entire extent rec 4902d0c7d708SMark Fasheh * 2) Range begins or ends on one edge of the extent rec 4903d0c7d708SMark Fasheh * 3) Range is in the middle of the extent rec (no shared edges) 4904d0c7d708SMark Fasheh * 4905d0c7d708SMark Fasheh * For case 1 we remove the extent rec and left rotate to 4906d0c7d708SMark Fasheh * fill the hole. 4907d0c7d708SMark Fasheh * 4908d0c7d708SMark Fasheh * For case 2 we just shrink the existing extent rec, with a 4909d0c7d708SMark Fasheh * tree update if the shrinking edge is also the edge of an 4910d0c7d708SMark Fasheh * extent block. 4911d0c7d708SMark Fasheh * 4912d0c7d708SMark Fasheh * For case 3 we do a right split to turn the extent rec into 4913d0c7d708SMark Fasheh * something case 2 can handle. 4914d0c7d708SMark Fasheh */ 4915d0c7d708SMark Fasheh rec = &el->l_recs[index]; 4916d0c7d708SMark Fasheh rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec); 4917d0c7d708SMark Fasheh trunc_range = cpos + len; 4918d0c7d708SMark Fasheh 4919d0c7d708SMark Fasheh BUG_ON(cpos < le32_to_cpu(rec->e_cpos) || trunc_range > rec_range); 4920d0c7d708SMark Fasheh 4921d0c7d708SMark Fasheh mlog(0, "Inode %llu, remove (cpos %u, len %u). Existing index %d " 4922d0c7d708SMark Fasheh "(cpos %u, len %u)\n", 4923d0c7d708SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos, len, index, 4924d0c7d708SMark Fasheh le32_to_cpu(rec->e_cpos), ocfs2_rec_clusters(el, rec)); 4925d0c7d708SMark Fasheh 4926d0c7d708SMark Fasheh if (le32_to_cpu(rec->e_cpos) == cpos || rec_range == trunc_range) { 4927d0c7d708SMark Fasheh ret = ocfs2_truncate_rec(inode, handle, path, index, dealloc, 4928*e7d4cb6bSTao Ma cpos, len, et); 4929d0c7d708SMark Fasheh if (ret) { 4930d0c7d708SMark Fasheh mlog_errno(ret); 4931d0c7d708SMark Fasheh goto out; 4932d0c7d708SMark Fasheh } 4933d0c7d708SMark Fasheh } else { 4934*e7d4cb6bSTao Ma ret = ocfs2_split_tree(inode, et, handle, path, index, 4935d0c7d708SMark Fasheh trunc_range, meta_ac); 4936d0c7d708SMark Fasheh if (ret) { 4937d0c7d708SMark Fasheh mlog_errno(ret); 4938d0c7d708SMark Fasheh goto out; 4939d0c7d708SMark Fasheh } 4940d0c7d708SMark Fasheh 4941d0c7d708SMark Fasheh /* 4942d0c7d708SMark Fasheh * The split could have manipulated the tree enough to 4943d0c7d708SMark Fasheh * move the record location, so we have to look for it again. 4944d0c7d708SMark Fasheh */ 4945d0c7d708SMark Fasheh ocfs2_reinit_path(path, 1); 4946d0c7d708SMark Fasheh 4947d0c7d708SMark Fasheh ret = ocfs2_find_path(inode, path, cpos); 4948d0c7d708SMark Fasheh if (ret) { 4949d0c7d708SMark Fasheh mlog_errno(ret); 4950d0c7d708SMark Fasheh goto out; 4951d0c7d708SMark Fasheh } 4952d0c7d708SMark Fasheh 4953d0c7d708SMark Fasheh el = path_leaf_el(path); 4954d0c7d708SMark Fasheh index = ocfs2_search_extent_list(el, cpos); 4955d0c7d708SMark Fasheh if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) { 4956d0c7d708SMark Fasheh ocfs2_error(inode->i_sb, 4957d0c7d708SMark Fasheh "Inode %llu: split at cpos %u lost record.", 4958d0c7d708SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, 4959d0c7d708SMark Fasheh cpos); 4960d0c7d708SMark Fasheh ret = -EROFS; 4961d0c7d708SMark Fasheh goto out; 4962d0c7d708SMark Fasheh } 4963d0c7d708SMark Fasheh 4964d0c7d708SMark Fasheh /* 4965d0c7d708SMark Fasheh * Double check our values here. If anything is fishy, 4966d0c7d708SMark Fasheh * it's easier to catch it at the top level. 4967d0c7d708SMark Fasheh */ 4968d0c7d708SMark Fasheh rec = &el->l_recs[index]; 4969d0c7d708SMark Fasheh rec_range = le32_to_cpu(rec->e_cpos) + 4970d0c7d708SMark Fasheh ocfs2_rec_clusters(el, rec); 4971d0c7d708SMark Fasheh if (rec_range != trunc_range) { 4972d0c7d708SMark Fasheh ocfs2_error(inode->i_sb, 4973d0c7d708SMark Fasheh "Inode %llu: error after split at cpos %u" 4974d0c7d708SMark Fasheh "trunc len %u, existing record is (%u,%u)", 4975d0c7d708SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, 4976d0c7d708SMark Fasheh cpos, len, le32_to_cpu(rec->e_cpos), 4977d0c7d708SMark Fasheh ocfs2_rec_clusters(el, rec)); 4978d0c7d708SMark Fasheh ret = -EROFS; 4979d0c7d708SMark Fasheh goto out; 4980d0c7d708SMark Fasheh } 4981d0c7d708SMark Fasheh 4982d0c7d708SMark Fasheh ret = ocfs2_truncate_rec(inode, handle, path, index, dealloc, 4983*e7d4cb6bSTao Ma cpos, len, et); 4984d0c7d708SMark Fasheh if (ret) { 4985d0c7d708SMark Fasheh mlog_errno(ret); 4986d0c7d708SMark Fasheh goto out; 4987d0c7d708SMark Fasheh } 4988d0c7d708SMark Fasheh } 4989d0c7d708SMark Fasheh 4990d0c7d708SMark Fasheh out: 4991d0c7d708SMark Fasheh ocfs2_free_path(path); 4992*e7d4cb6bSTao Ma if (et) 4993*e7d4cb6bSTao Ma ocfs2_free_extent_tree(et); 4994d0c7d708SMark Fasheh return ret; 4995d0c7d708SMark Fasheh } 4996d0c7d708SMark Fasheh 4997063c4561SMark Fasheh int ocfs2_truncate_log_needs_flush(struct ocfs2_super *osb) 4998ccd979bdSMark Fasheh { 4999ccd979bdSMark Fasheh struct buffer_head *tl_bh = osb->osb_tl_bh; 5000ccd979bdSMark Fasheh struct ocfs2_dinode *di; 5001ccd979bdSMark Fasheh struct ocfs2_truncate_log *tl; 5002ccd979bdSMark Fasheh 5003ccd979bdSMark Fasheh di = (struct ocfs2_dinode *) tl_bh->b_data; 5004ccd979bdSMark Fasheh tl = &di->id2.i_dealloc; 5005ccd979bdSMark Fasheh 5006ccd979bdSMark Fasheh mlog_bug_on_msg(le16_to_cpu(tl->tl_used) > le16_to_cpu(tl->tl_count), 5007ccd979bdSMark Fasheh "slot %d, invalid truncate log parameters: used = " 5008ccd979bdSMark Fasheh "%u, count = %u\n", osb->slot_num, 5009ccd979bdSMark Fasheh le16_to_cpu(tl->tl_used), le16_to_cpu(tl->tl_count)); 5010ccd979bdSMark Fasheh return le16_to_cpu(tl->tl_used) == le16_to_cpu(tl->tl_count); 5011ccd979bdSMark Fasheh } 5012ccd979bdSMark Fasheh 5013ccd979bdSMark Fasheh static int ocfs2_truncate_log_can_coalesce(struct ocfs2_truncate_log *tl, 5014ccd979bdSMark Fasheh unsigned int new_start) 5015ccd979bdSMark Fasheh { 5016ccd979bdSMark Fasheh unsigned int tail_index; 5017ccd979bdSMark Fasheh unsigned int current_tail; 5018ccd979bdSMark Fasheh 5019ccd979bdSMark Fasheh /* No records, nothing to coalesce */ 5020ccd979bdSMark Fasheh if (!le16_to_cpu(tl->tl_used)) 5021ccd979bdSMark Fasheh return 0; 5022ccd979bdSMark Fasheh 5023ccd979bdSMark Fasheh tail_index = le16_to_cpu(tl->tl_used) - 1; 5024ccd979bdSMark Fasheh current_tail = le32_to_cpu(tl->tl_recs[tail_index].t_start); 5025ccd979bdSMark Fasheh current_tail += le32_to_cpu(tl->tl_recs[tail_index].t_clusters); 5026ccd979bdSMark Fasheh 5027ccd979bdSMark Fasheh return current_tail == new_start; 5028ccd979bdSMark Fasheh } 5029ccd979bdSMark Fasheh 5030063c4561SMark Fasheh int ocfs2_truncate_log_append(struct ocfs2_super *osb, 50311fabe148SMark Fasheh handle_t *handle, 5032ccd979bdSMark Fasheh u64 start_blk, 5033ccd979bdSMark Fasheh unsigned int num_clusters) 5034ccd979bdSMark Fasheh { 5035ccd979bdSMark Fasheh int status, index; 5036ccd979bdSMark Fasheh unsigned int start_cluster, tl_count; 5037ccd979bdSMark Fasheh struct inode *tl_inode = osb->osb_tl_inode; 5038ccd979bdSMark Fasheh struct buffer_head *tl_bh = osb->osb_tl_bh; 5039ccd979bdSMark Fasheh struct ocfs2_dinode *di; 5040ccd979bdSMark Fasheh struct ocfs2_truncate_log *tl; 5041ccd979bdSMark Fasheh 5042b0697053SMark Fasheh mlog_entry("start_blk = %llu, num_clusters = %u\n", 5043b0697053SMark Fasheh (unsigned long long)start_blk, num_clusters); 5044ccd979bdSMark Fasheh 50451b1dcc1bSJes Sorensen BUG_ON(mutex_trylock(&tl_inode->i_mutex)); 5046ccd979bdSMark Fasheh 5047ccd979bdSMark Fasheh start_cluster = ocfs2_blocks_to_clusters(osb->sb, start_blk); 5048ccd979bdSMark Fasheh 5049ccd979bdSMark Fasheh di = (struct ocfs2_dinode *) tl_bh->b_data; 5050ccd979bdSMark Fasheh tl = &di->id2.i_dealloc; 5051ccd979bdSMark Fasheh if (!OCFS2_IS_VALID_DINODE(di)) { 5052ccd979bdSMark Fasheh OCFS2_RO_ON_INVALID_DINODE(osb->sb, di); 5053ccd979bdSMark Fasheh status = -EIO; 5054ccd979bdSMark Fasheh goto bail; 5055ccd979bdSMark Fasheh } 5056ccd979bdSMark Fasheh 5057ccd979bdSMark Fasheh tl_count = le16_to_cpu(tl->tl_count); 5058ccd979bdSMark Fasheh mlog_bug_on_msg(tl_count > ocfs2_truncate_recs_per_inode(osb->sb) || 5059ccd979bdSMark Fasheh tl_count == 0, 5060b0697053SMark Fasheh "Truncate record count on #%llu invalid " 5061b0697053SMark Fasheh "wanted %u, actual %u\n", 5062b0697053SMark Fasheh (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, 5063ccd979bdSMark Fasheh ocfs2_truncate_recs_per_inode(osb->sb), 5064ccd979bdSMark Fasheh le16_to_cpu(tl->tl_count)); 5065ccd979bdSMark Fasheh 5066ccd979bdSMark Fasheh /* Caller should have known to flush before calling us. */ 5067ccd979bdSMark Fasheh index = le16_to_cpu(tl->tl_used); 5068ccd979bdSMark Fasheh if (index >= tl_count) { 5069ccd979bdSMark Fasheh status = -ENOSPC; 5070ccd979bdSMark Fasheh mlog_errno(status); 5071ccd979bdSMark Fasheh goto bail; 5072ccd979bdSMark Fasheh } 5073ccd979bdSMark Fasheh 5074ccd979bdSMark Fasheh status = ocfs2_journal_access(handle, tl_inode, tl_bh, 5075ccd979bdSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 5076ccd979bdSMark Fasheh if (status < 0) { 5077ccd979bdSMark Fasheh mlog_errno(status); 5078ccd979bdSMark Fasheh goto bail; 5079ccd979bdSMark Fasheh } 5080ccd979bdSMark Fasheh 5081ccd979bdSMark Fasheh mlog(0, "Log truncate of %u clusters starting at cluster %u to " 5082b0697053SMark Fasheh "%llu (index = %d)\n", num_clusters, start_cluster, 5083b0697053SMark Fasheh (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, index); 5084ccd979bdSMark Fasheh 5085ccd979bdSMark Fasheh if (ocfs2_truncate_log_can_coalesce(tl, start_cluster)) { 5086ccd979bdSMark Fasheh /* 5087ccd979bdSMark Fasheh * Move index back to the record we are coalescing with. 5088ccd979bdSMark Fasheh * ocfs2_truncate_log_can_coalesce() guarantees nonzero 5089ccd979bdSMark Fasheh */ 5090ccd979bdSMark Fasheh index--; 5091ccd979bdSMark Fasheh 5092ccd979bdSMark Fasheh num_clusters += le32_to_cpu(tl->tl_recs[index].t_clusters); 5093ccd979bdSMark Fasheh mlog(0, "Coalesce with index %u (start = %u, clusters = %u)\n", 5094ccd979bdSMark Fasheh index, le32_to_cpu(tl->tl_recs[index].t_start), 5095ccd979bdSMark Fasheh num_clusters); 5096ccd979bdSMark Fasheh } else { 5097ccd979bdSMark Fasheh tl->tl_recs[index].t_start = cpu_to_le32(start_cluster); 5098ccd979bdSMark Fasheh tl->tl_used = cpu_to_le16(index + 1); 5099ccd979bdSMark Fasheh } 5100ccd979bdSMark Fasheh tl->tl_recs[index].t_clusters = cpu_to_le32(num_clusters); 5101ccd979bdSMark Fasheh 5102ccd979bdSMark Fasheh status = ocfs2_journal_dirty(handle, tl_bh); 5103ccd979bdSMark Fasheh if (status < 0) { 5104ccd979bdSMark Fasheh mlog_errno(status); 5105ccd979bdSMark Fasheh goto bail; 5106ccd979bdSMark Fasheh } 5107ccd979bdSMark Fasheh 5108ccd979bdSMark Fasheh bail: 5109ccd979bdSMark Fasheh mlog_exit(status); 5110ccd979bdSMark Fasheh return status; 5111ccd979bdSMark Fasheh } 5112ccd979bdSMark Fasheh 5113ccd979bdSMark Fasheh static int ocfs2_replay_truncate_records(struct ocfs2_super *osb, 51141fabe148SMark Fasheh handle_t *handle, 5115ccd979bdSMark Fasheh struct inode *data_alloc_inode, 5116ccd979bdSMark Fasheh struct buffer_head *data_alloc_bh) 5117ccd979bdSMark Fasheh { 5118ccd979bdSMark Fasheh int status = 0; 5119ccd979bdSMark Fasheh int i; 5120ccd979bdSMark Fasheh unsigned int num_clusters; 5121ccd979bdSMark Fasheh u64 start_blk; 5122ccd979bdSMark Fasheh struct ocfs2_truncate_rec rec; 5123ccd979bdSMark Fasheh struct ocfs2_dinode *di; 5124ccd979bdSMark Fasheh struct ocfs2_truncate_log *tl; 5125ccd979bdSMark Fasheh struct inode *tl_inode = osb->osb_tl_inode; 5126ccd979bdSMark Fasheh struct buffer_head *tl_bh = osb->osb_tl_bh; 5127ccd979bdSMark Fasheh 5128ccd979bdSMark Fasheh mlog_entry_void(); 5129ccd979bdSMark Fasheh 5130ccd979bdSMark Fasheh di = (struct ocfs2_dinode *) tl_bh->b_data; 5131ccd979bdSMark Fasheh tl = &di->id2.i_dealloc; 5132ccd979bdSMark Fasheh i = le16_to_cpu(tl->tl_used) - 1; 5133ccd979bdSMark Fasheh while (i >= 0) { 5134ccd979bdSMark Fasheh /* Caller has given us at least enough credits to 5135ccd979bdSMark Fasheh * update the truncate log dinode */ 5136ccd979bdSMark Fasheh status = ocfs2_journal_access(handle, tl_inode, tl_bh, 5137ccd979bdSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 5138ccd979bdSMark Fasheh if (status < 0) { 5139ccd979bdSMark Fasheh mlog_errno(status); 5140ccd979bdSMark Fasheh goto bail; 5141ccd979bdSMark Fasheh } 5142ccd979bdSMark Fasheh 5143ccd979bdSMark Fasheh tl->tl_used = cpu_to_le16(i); 5144ccd979bdSMark Fasheh 5145ccd979bdSMark Fasheh status = ocfs2_journal_dirty(handle, tl_bh); 5146ccd979bdSMark Fasheh if (status < 0) { 5147ccd979bdSMark Fasheh mlog_errno(status); 5148ccd979bdSMark Fasheh goto bail; 5149ccd979bdSMark Fasheh } 5150ccd979bdSMark Fasheh 5151ccd979bdSMark Fasheh /* TODO: Perhaps we can calculate the bulk of the 5152ccd979bdSMark Fasheh * credits up front rather than extending like 5153ccd979bdSMark Fasheh * this. */ 5154ccd979bdSMark Fasheh status = ocfs2_extend_trans(handle, 5155ccd979bdSMark Fasheh OCFS2_TRUNCATE_LOG_FLUSH_ONE_REC); 5156ccd979bdSMark Fasheh if (status < 0) { 5157ccd979bdSMark Fasheh mlog_errno(status); 5158ccd979bdSMark Fasheh goto bail; 5159ccd979bdSMark Fasheh } 5160ccd979bdSMark Fasheh 5161ccd979bdSMark Fasheh rec = tl->tl_recs[i]; 5162ccd979bdSMark Fasheh start_blk = ocfs2_clusters_to_blocks(data_alloc_inode->i_sb, 5163ccd979bdSMark Fasheh le32_to_cpu(rec.t_start)); 5164ccd979bdSMark Fasheh num_clusters = le32_to_cpu(rec.t_clusters); 5165ccd979bdSMark Fasheh 5166ccd979bdSMark Fasheh /* if start_blk is not set, we ignore the record as 5167ccd979bdSMark Fasheh * invalid. */ 5168ccd979bdSMark Fasheh if (start_blk) { 5169ccd979bdSMark Fasheh mlog(0, "free record %d, start = %u, clusters = %u\n", 5170ccd979bdSMark Fasheh i, le32_to_cpu(rec.t_start), num_clusters); 5171ccd979bdSMark Fasheh 5172ccd979bdSMark Fasheh status = ocfs2_free_clusters(handle, data_alloc_inode, 5173ccd979bdSMark Fasheh data_alloc_bh, start_blk, 5174ccd979bdSMark Fasheh num_clusters); 5175ccd979bdSMark Fasheh if (status < 0) { 5176ccd979bdSMark Fasheh mlog_errno(status); 5177ccd979bdSMark Fasheh goto bail; 5178ccd979bdSMark Fasheh } 5179ccd979bdSMark Fasheh } 5180ccd979bdSMark Fasheh i--; 5181ccd979bdSMark Fasheh } 5182ccd979bdSMark Fasheh 5183ccd979bdSMark Fasheh bail: 5184ccd979bdSMark Fasheh mlog_exit(status); 5185ccd979bdSMark Fasheh return status; 5186ccd979bdSMark Fasheh } 5187ccd979bdSMark Fasheh 51881b1dcc1bSJes Sorensen /* Expects you to already be holding tl_inode->i_mutex */ 5189063c4561SMark Fasheh int __ocfs2_flush_truncate_log(struct ocfs2_super *osb) 5190ccd979bdSMark Fasheh { 5191ccd979bdSMark Fasheh int status; 5192ccd979bdSMark Fasheh unsigned int num_to_flush; 51931fabe148SMark Fasheh handle_t *handle; 5194ccd979bdSMark Fasheh struct inode *tl_inode = osb->osb_tl_inode; 5195ccd979bdSMark Fasheh struct inode *data_alloc_inode = NULL; 5196ccd979bdSMark Fasheh struct buffer_head *tl_bh = osb->osb_tl_bh; 5197ccd979bdSMark Fasheh struct buffer_head *data_alloc_bh = NULL; 5198ccd979bdSMark Fasheh struct ocfs2_dinode *di; 5199ccd979bdSMark Fasheh struct ocfs2_truncate_log *tl; 5200ccd979bdSMark Fasheh 5201ccd979bdSMark Fasheh mlog_entry_void(); 5202ccd979bdSMark Fasheh 52031b1dcc1bSJes Sorensen BUG_ON(mutex_trylock(&tl_inode->i_mutex)); 5204ccd979bdSMark Fasheh 5205ccd979bdSMark Fasheh di = (struct ocfs2_dinode *) tl_bh->b_data; 5206ccd979bdSMark Fasheh tl = &di->id2.i_dealloc; 5207ccd979bdSMark Fasheh if (!OCFS2_IS_VALID_DINODE(di)) { 5208ccd979bdSMark Fasheh OCFS2_RO_ON_INVALID_DINODE(osb->sb, di); 5209ccd979bdSMark Fasheh status = -EIO; 5210e08dc8b9SMark Fasheh goto out; 5211ccd979bdSMark Fasheh } 5212ccd979bdSMark Fasheh 5213ccd979bdSMark Fasheh num_to_flush = le16_to_cpu(tl->tl_used); 5214b0697053SMark Fasheh mlog(0, "Flush %u records from truncate log #%llu\n", 5215b0697053SMark Fasheh num_to_flush, (unsigned long long)OCFS2_I(tl_inode)->ip_blkno); 5216ccd979bdSMark Fasheh if (!num_to_flush) { 5217ccd979bdSMark Fasheh status = 0; 5218e08dc8b9SMark Fasheh goto out; 5219ccd979bdSMark Fasheh } 5220ccd979bdSMark Fasheh 5221ccd979bdSMark Fasheh data_alloc_inode = ocfs2_get_system_file_inode(osb, 5222ccd979bdSMark Fasheh GLOBAL_BITMAP_SYSTEM_INODE, 5223ccd979bdSMark Fasheh OCFS2_INVALID_SLOT); 5224ccd979bdSMark Fasheh if (!data_alloc_inode) { 5225ccd979bdSMark Fasheh status = -EINVAL; 5226ccd979bdSMark Fasheh mlog(ML_ERROR, "Could not get bitmap inode!\n"); 5227e08dc8b9SMark Fasheh goto out; 5228ccd979bdSMark Fasheh } 5229ccd979bdSMark Fasheh 5230e08dc8b9SMark Fasheh mutex_lock(&data_alloc_inode->i_mutex); 5231e08dc8b9SMark Fasheh 5232e63aecb6SMark Fasheh status = ocfs2_inode_lock(data_alloc_inode, &data_alloc_bh, 1); 5233ccd979bdSMark Fasheh if (status < 0) { 5234ccd979bdSMark Fasheh mlog_errno(status); 5235e08dc8b9SMark Fasheh goto out_mutex; 5236ccd979bdSMark Fasheh } 5237ccd979bdSMark Fasheh 523865eff9ccSMark Fasheh handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE); 5239ccd979bdSMark Fasheh if (IS_ERR(handle)) { 5240ccd979bdSMark Fasheh status = PTR_ERR(handle); 5241ccd979bdSMark Fasheh mlog_errno(status); 5242e08dc8b9SMark Fasheh goto out_unlock; 5243ccd979bdSMark Fasheh } 5244ccd979bdSMark Fasheh 5245ccd979bdSMark Fasheh status = ocfs2_replay_truncate_records(osb, handle, data_alloc_inode, 5246ccd979bdSMark Fasheh data_alloc_bh); 5247e08dc8b9SMark Fasheh if (status < 0) 5248ccd979bdSMark Fasheh mlog_errno(status); 5249ccd979bdSMark Fasheh 525002dc1af4SMark Fasheh ocfs2_commit_trans(osb, handle); 5251ccd979bdSMark Fasheh 5252e08dc8b9SMark Fasheh out_unlock: 5253e08dc8b9SMark Fasheh brelse(data_alloc_bh); 5254e63aecb6SMark Fasheh ocfs2_inode_unlock(data_alloc_inode, 1); 5255e08dc8b9SMark Fasheh 5256e08dc8b9SMark Fasheh out_mutex: 5257e08dc8b9SMark Fasheh mutex_unlock(&data_alloc_inode->i_mutex); 5258ccd979bdSMark Fasheh iput(data_alloc_inode); 5259ccd979bdSMark Fasheh 5260e08dc8b9SMark Fasheh out: 5261ccd979bdSMark Fasheh mlog_exit(status); 5262ccd979bdSMark Fasheh return status; 5263ccd979bdSMark Fasheh } 5264ccd979bdSMark Fasheh 5265ccd979bdSMark Fasheh int ocfs2_flush_truncate_log(struct ocfs2_super *osb) 5266ccd979bdSMark Fasheh { 5267ccd979bdSMark Fasheh int status; 5268ccd979bdSMark Fasheh struct inode *tl_inode = osb->osb_tl_inode; 5269ccd979bdSMark Fasheh 52701b1dcc1bSJes Sorensen mutex_lock(&tl_inode->i_mutex); 5271ccd979bdSMark Fasheh status = __ocfs2_flush_truncate_log(osb); 52721b1dcc1bSJes Sorensen mutex_unlock(&tl_inode->i_mutex); 5273ccd979bdSMark Fasheh 5274ccd979bdSMark Fasheh return status; 5275ccd979bdSMark Fasheh } 5276ccd979bdSMark Fasheh 5277c4028958SDavid Howells static void ocfs2_truncate_log_worker(struct work_struct *work) 5278ccd979bdSMark Fasheh { 5279ccd979bdSMark Fasheh int status; 5280c4028958SDavid Howells struct ocfs2_super *osb = 5281c4028958SDavid Howells container_of(work, struct ocfs2_super, 5282c4028958SDavid Howells osb_truncate_log_wq.work); 5283ccd979bdSMark Fasheh 5284ccd979bdSMark Fasheh mlog_entry_void(); 5285ccd979bdSMark Fasheh 5286ccd979bdSMark Fasheh status = ocfs2_flush_truncate_log(osb); 5287ccd979bdSMark Fasheh if (status < 0) 5288ccd979bdSMark Fasheh mlog_errno(status); 52894d0ddb2cSTao Ma else 52904d0ddb2cSTao Ma ocfs2_init_inode_steal_slot(osb); 5291ccd979bdSMark Fasheh 5292ccd979bdSMark Fasheh mlog_exit(status); 5293ccd979bdSMark Fasheh } 5294ccd979bdSMark Fasheh 5295ccd979bdSMark Fasheh #define OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL (2 * HZ) 5296ccd979bdSMark Fasheh void ocfs2_schedule_truncate_log_flush(struct ocfs2_super *osb, 5297ccd979bdSMark Fasheh int cancel) 5298ccd979bdSMark Fasheh { 5299ccd979bdSMark Fasheh if (osb->osb_tl_inode) { 5300ccd979bdSMark Fasheh /* We want to push off log flushes while truncates are 5301ccd979bdSMark Fasheh * still running. */ 5302ccd979bdSMark Fasheh if (cancel) 5303ccd979bdSMark Fasheh cancel_delayed_work(&osb->osb_truncate_log_wq); 5304ccd979bdSMark Fasheh 5305ccd979bdSMark Fasheh queue_delayed_work(ocfs2_wq, &osb->osb_truncate_log_wq, 5306ccd979bdSMark Fasheh OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL); 5307ccd979bdSMark Fasheh } 5308ccd979bdSMark Fasheh } 5309ccd979bdSMark Fasheh 5310ccd979bdSMark Fasheh static int ocfs2_get_truncate_log_info(struct ocfs2_super *osb, 5311ccd979bdSMark Fasheh int slot_num, 5312ccd979bdSMark Fasheh struct inode **tl_inode, 5313ccd979bdSMark Fasheh struct buffer_head **tl_bh) 5314ccd979bdSMark Fasheh { 5315ccd979bdSMark Fasheh int status; 5316ccd979bdSMark Fasheh struct inode *inode = NULL; 5317ccd979bdSMark Fasheh struct buffer_head *bh = NULL; 5318ccd979bdSMark Fasheh 5319ccd979bdSMark Fasheh inode = ocfs2_get_system_file_inode(osb, 5320ccd979bdSMark Fasheh TRUNCATE_LOG_SYSTEM_INODE, 5321ccd979bdSMark Fasheh slot_num); 5322ccd979bdSMark Fasheh if (!inode) { 5323ccd979bdSMark Fasheh status = -EINVAL; 5324ccd979bdSMark Fasheh mlog(ML_ERROR, "Could not get load truncate log inode!\n"); 5325ccd979bdSMark Fasheh goto bail; 5326ccd979bdSMark Fasheh } 5327ccd979bdSMark Fasheh 5328ccd979bdSMark Fasheh status = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno, &bh, 5329ccd979bdSMark Fasheh OCFS2_BH_CACHED, inode); 5330ccd979bdSMark Fasheh if (status < 0) { 5331ccd979bdSMark Fasheh iput(inode); 5332ccd979bdSMark Fasheh mlog_errno(status); 5333ccd979bdSMark Fasheh goto bail; 5334ccd979bdSMark Fasheh } 5335ccd979bdSMark Fasheh 5336ccd979bdSMark Fasheh *tl_inode = inode; 5337ccd979bdSMark Fasheh *tl_bh = bh; 5338ccd979bdSMark Fasheh bail: 5339ccd979bdSMark Fasheh mlog_exit(status); 5340ccd979bdSMark Fasheh return status; 5341ccd979bdSMark Fasheh } 5342ccd979bdSMark Fasheh 5343ccd979bdSMark Fasheh /* called during the 1st stage of node recovery. we stamp a clean 5344ccd979bdSMark Fasheh * truncate log and pass back a copy for processing later. if the 5345ccd979bdSMark Fasheh * truncate log does not require processing, a *tl_copy is set to 5346ccd979bdSMark Fasheh * NULL. */ 5347ccd979bdSMark Fasheh int ocfs2_begin_truncate_log_recovery(struct ocfs2_super *osb, 5348ccd979bdSMark Fasheh int slot_num, 5349ccd979bdSMark Fasheh struct ocfs2_dinode **tl_copy) 5350ccd979bdSMark Fasheh { 5351ccd979bdSMark Fasheh int status; 5352ccd979bdSMark Fasheh struct inode *tl_inode = NULL; 5353ccd979bdSMark Fasheh struct buffer_head *tl_bh = NULL; 5354ccd979bdSMark Fasheh struct ocfs2_dinode *di; 5355ccd979bdSMark Fasheh struct ocfs2_truncate_log *tl; 5356ccd979bdSMark Fasheh 5357ccd979bdSMark Fasheh *tl_copy = NULL; 5358ccd979bdSMark Fasheh 5359ccd979bdSMark Fasheh mlog(0, "recover truncate log from slot %d\n", slot_num); 5360ccd979bdSMark Fasheh 5361ccd979bdSMark Fasheh status = ocfs2_get_truncate_log_info(osb, slot_num, &tl_inode, &tl_bh); 5362ccd979bdSMark Fasheh if (status < 0) { 5363ccd979bdSMark Fasheh mlog_errno(status); 5364ccd979bdSMark Fasheh goto bail; 5365ccd979bdSMark Fasheh } 5366ccd979bdSMark Fasheh 5367ccd979bdSMark Fasheh di = (struct ocfs2_dinode *) tl_bh->b_data; 5368ccd979bdSMark Fasheh tl = &di->id2.i_dealloc; 5369ccd979bdSMark Fasheh if (!OCFS2_IS_VALID_DINODE(di)) { 5370ccd979bdSMark Fasheh OCFS2_RO_ON_INVALID_DINODE(tl_inode->i_sb, di); 5371ccd979bdSMark Fasheh status = -EIO; 5372ccd979bdSMark Fasheh goto bail; 5373ccd979bdSMark Fasheh } 5374ccd979bdSMark Fasheh 5375ccd979bdSMark Fasheh if (le16_to_cpu(tl->tl_used)) { 5376ccd979bdSMark Fasheh mlog(0, "We'll have %u logs to recover\n", 5377ccd979bdSMark Fasheh le16_to_cpu(tl->tl_used)); 5378ccd979bdSMark Fasheh 5379ccd979bdSMark Fasheh *tl_copy = kmalloc(tl_bh->b_size, GFP_KERNEL); 5380ccd979bdSMark Fasheh if (!(*tl_copy)) { 5381ccd979bdSMark Fasheh status = -ENOMEM; 5382ccd979bdSMark Fasheh mlog_errno(status); 5383ccd979bdSMark Fasheh goto bail; 5384ccd979bdSMark Fasheh } 5385ccd979bdSMark Fasheh 5386ccd979bdSMark Fasheh /* Assuming the write-out below goes well, this copy 5387ccd979bdSMark Fasheh * will be passed back to recovery for processing. */ 5388ccd979bdSMark Fasheh memcpy(*tl_copy, tl_bh->b_data, tl_bh->b_size); 5389ccd979bdSMark Fasheh 5390ccd979bdSMark Fasheh /* All we need to do to clear the truncate log is set 5391ccd979bdSMark Fasheh * tl_used. */ 5392ccd979bdSMark Fasheh tl->tl_used = 0; 5393ccd979bdSMark Fasheh 5394ccd979bdSMark Fasheh status = ocfs2_write_block(osb, tl_bh, tl_inode); 5395ccd979bdSMark Fasheh if (status < 0) { 5396ccd979bdSMark Fasheh mlog_errno(status); 5397ccd979bdSMark Fasheh goto bail; 5398ccd979bdSMark Fasheh } 5399ccd979bdSMark Fasheh } 5400ccd979bdSMark Fasheh 5401ccd979bdSMark Fasheh bail: 5402ccd979bdSMark Fasheh if (tl_inode) 5403ccd979bdSMark Fasheh iput(tl_inode); 5404ccd979bdSMark Fasheh if (tl_bh) 5405ccd979bdSMark Fasheh brelse(tl_bh); 5406ccd979bdSMark Fasheh 5407ccd979bdSMark Fasheh if (status < 0 && (*tl_copy)) { 5408ccd979bdSMark Fasheh kfree(*tl_copy); 5409ccd979bdSMark Fasheh *tl_copy = NULL; 5410ccd979bdSMark Fasheh } 5411ccd979bdSMark Fasheh 5412ccd979bdSMark Fasheh mlog_exit(status); 5413ccd979bdSMark Fasheh return status; 5414ccd979bdSMark Fasheh } 5415ccd979bdSMark Fasheh 5416ccd979bdSMark Fasheh int ocfs2_complete_truncate_log_recovery(struct ocfs2_super *osb, 5417ccd979bdSMark Fasheh struct ocfs2_dinode *tl_copy) 5418ccd979bdSMark Fasheh { 5419ccd979bdSMark Fasheh int status = 0; 5420ccd979bdSMark Fasheh int i; 5421ccd979bdSMark Fasheh unsigned int clusters, num_recs, start_cluster; 5422ccd979bdSMark Fasheh u64 start_blk; 54231fabe148SMark Fasheh handle_t *handle; 5424ccd979bdSMark Fasheh struct inode *tl_inode = osb->osb_tl_inode; 5425ccd979bdSMark Fasheh struct ocfs2_truncate_log *tl; 5426ccd979bdSMark Fasheh 5427ccd979bdSMark Fasheh mlog_entry_void(); 5428ccd979bdSMark Fasheh 5429ccd979bdSMark Fasheh if (OCFS2_I(tl_inode)->ip_blkno == le64_to_cpu(tl_copy->i_blkno)) { 5430ccd979bdSMark Fasheh mlog(ML_ERROR, "Asked to recover my own truncate log!\n"); 5431ccd979bdSMark Fasheh return -EINVAL; 5432ccd979bdSMark Fasheh } 5433ccd979bdSMark Fasheh 5434ccd979bdSMark Fasheh tl = &tl_copy->id2.i_dealloc; 5435ccd979bdSMark Fasheh num_recs = le16_to_cpu(tl->tl_used); 5436b0697053SMark Fasheh mlog(0, "cleanup %u records from %llu\n", num_recs, 54371ca1a111SMark Fasheh (unsigned long long)le64_to_cpu(tl_copy->i_blkno)); 5438ccd979bdSMark Fasheh 54391b1dcc1bSJes Sorensen mutex_lock(&tl_inode->i_mutex); 5440ccd979bdSMark Fasheh for(i = 0; i < num_recs; i++) { 5441ccd979bdSMark Fasheh if (ocfs2_truncate_log_needs_flush(osb)) { 5442ccd979bdSMark Fasheh status = __ocfs2_flush_truncate_log(osb); 5443ccd979bdSMark Fasheh if (status < 0) { 5444ccd979bdSMark Fasheh mlog_errno(status); 5445ccd979bdSMark Fasheh goto bail_up; 5446ccd979bdSMark Fasheh } 5447ccd979bdSMark Fasheh } 5448ccd979bdSMark Fasheh 544965eff9ccSMark Fasheh handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE); 5450ccd979bdSMark Fasheh if (IS_ERR(handle)) { 5451ccd979bdSMark Fasheh status = PTR_ERR(handle); 5452ccd979bdSMark Fasheh mlog_errno(status); 5453ccd979bdSMark Fasheh goto bail_up; 5454ccd979bdSMark Fasheh } 5455ccd979bdSMark Fasheh 5456ccd979bdSMark Fasheh clusters = le32_to_cpu(tl->tl_recs[i].t_clusters); 5457ccd979bdSMark Fasheh start_cluster = le32_to_cpu(tl->tl_recs[i].t_start); 5458ccd979bdSMark Fasheh start_blk = ocfs2_clusters_to_blocks(osb->sb, start_cluster); 5459ccd979bdSMark Fasheh 5460ccd979bdSMark Fasheh status = ocfs2_truncate_log_append(osb, handle, 5461ccd979bdSMark Fasheh start_blk, clusters); 546202dc1af4SMark Fasheh ocfs2_commit_trans(osb, handle); 5463ccd979bdSMark Fasheh if (status < 0) { 5464ccd979bdSMark Fasheh mlog_errno(status); 5465ccd979bdSMark Fasheh goto bail_up; 5466ccd979bdSMark Fasheh } 5467ccd979bdSMark Fasheh } 5468ccd979bdSMark Fasheh 5469ccd979bdSMark Fasheh bail_up: 54701b1dcc1bSJes Sorensen mutex_unlock(&tl_inode->i_mutex); 5471ccd979bdSMark Fasheh 5472ccd979bdSMark Fasheh mlog_exit(status); 5473ccd979bdSMark Fasheh return status; 5474ccd979bdSMark Fasheh } 5475ccd979bdSMark Fasheh 5476ccd979bdSMark Fasheh void ocfs2_truncate_log_shutdown(struct ocfs2_super *osb) 5477ccd979bdSMark Fasheh { 5478ccd979bdSMark Fasheh int status; 5479ccd979bdSMark Fasheh struct inode *tl_inode = osb->osb_tl_inode; 5480ccd979bdSMark Fasheh 5481ccd979bdSMark Fasheh mlog_entry_void(); 5482ccd979bdSMark Fasheh 5483ccd979bdSMark Fasheh if (tl_inode) { 5484ccd979bdSMark Fasheh cancel_delayed_work(&osb->osb_truncate_log_wq); 5485ccd979bdSMark Fasheh flush_workqueue(ocfs2_wq); 5486ccd979bdSMark Fasheh 5487ccd979bdSMark Fasheh status = ocfs2_flush_truncate_log(osb); 5488ccd979bdSMark Fasheh if (status < 0) 5489ccd979bdSMark Fasheh mlog_errno(status); 5490ccd979bdSMark Fasheh 5491ccd979bdSMark Fasheh brelse(osb->osb_tl_bh); 5492ccd979bdSMark Fasheh iput(osb->osb_tl_inode); 5493ccd979bdSMark Fasheh } 5494ccd979bdSMark Fasheh 5495ccd979bdSMark Fasheh mlog_exit_void(); 5496ccd979bdSMark Fasheh } 5497ccd979bdSMark Fasheh 5498ccd979bdSMark Fasheh int ocfs2_truncate_log_init(struct ocfs2_super *osb) 5499ccd979bdSMark Fasheh { 5500ccd979bdSMark Fasheh int status; 5501ccd979bdSMark Fasheh struct inode *tl_inode = NULL; 5502ccd979bdSMark Fasheh struct buffer_head *tl_bh = NULL; 5503ccd979bdSMark Fasheh 5504ccd979bdSMark Fasheh mlog_entry_void(); 5505ccd979bdSMark Fasheh 5506ccd979bdSMark Fasheh status = ocfs2_get_truncate_log_info(osb, 5507ccd979bdSMark Fasheh osb->slot_num, 5508ccd979bdSMark Fasheh &tl_inode, 5509ccd979bdSMark Fasheh &tl_bh); 5510ccd979bdSMark Fasheh if (status < 0) 5511ccd979bdSMark Fasheh mlog_errno(status); 5512ccd979bdSMark Fasheh 5513ccd979bdSMark Fasheh /* ocfs2_truncate_log_shutdown keys on the existence of 5514ccd979bdSMark Fasheh * osb->osb_tl_inode so we don't set any of the osb variables 5515ccd979bdSMark Fasheh * until we're sure all is well. */ 5516c4028958SDavid Howells INIT_DELAYED_WORK(&osb->osb_truncate_log_wq, 5517c4028958SDavid Howells ocfs2_truncate_log_worker); 5518ccd979bdSMark Fasheh osb->osb_tl_bh = tl_bh; 5519ccd979bdSMark Fasheh osb->osb_tl_inode = tl_inode; 5520ccd979bdSMark Fasheh 5521ccd979bdSMark Fasheh mlog_exit(status); 5522ccd979bdSMark Fasheh return status; 5523ccd979bdSMark Fasheh } 5524ccd979bdSMark Fasheh 55252b604351SMark Fasheh /* 55262b604351SMark Fasheh * Delayed de-allocation of suballocator blocks. 55272b604351SMark Fasheh * 55282b604351SMark Fasheh * Some sets of block de-allocations might involve multiple suballocator inodes. 55292b604351SMark Fasheh * 55302b604351SMark Fasheh * The locking for this can get extremely complicated, especially when 55312b604351SMark Fasheh * the suballocator inodes to delete from aren't known until deep 55322b604351SMark Fasheh * within an unrelated codepath. 55332b604351SMark Fasheh * 55342b604351SMark Fasheh * ocfs2_extent_block structures are a good example of this - an inode 55352b604351SMark Fasheh * btree could have been grown by any number of nodes each allocating 55362b604351SMark Fasheh * out of their own suballoc inode. 55372b604351SMark Fasheh * 55382b604351SMark Fasheh * These structures allow the delay of block de-allocation until a 55392b604351SMark Fasheh * later time, when locking of multiple cluster inodes won't cause 55402b604351SMark Fasheh * deadlock. 55412b604351SMark Fasheh */ 55422b604351SMark Fasheh 55432b604351SMark Fasheh /* 55442b604351SMark Fasheh * Describes a single block free from a suballocator 55452b604351SMark Fasheh */ 55462b604351SMark Fasheh struct ocfs2_cached_block_free { 55472b604351SMark Fasheh struct ocfs2_cached_block_free *free_next; 55482b604351SMark Fasheh u64 free_blk; 55492b604351SMark Fasheh unsigned int free_bit; 55502b604351SMark Fasheh }; 55512b604351SMark Fasheh 55522b604351SMark Fasheh struct ocfs2_per_slot_free_list { 55532b604351SMark Fasheh struct ocfs2_per_slot_free_list *f_next_suballocator; 55542b604351SMark Fasheh int f_inode_type; 55552b604351SMark Fasheh int f_slot; 55562b604351SMark Fasheh struct ocfs2_cached_block_free *f_first; 55572b604351SMark Fasheh }; 55582b604351SMark Fasheh 55592b604351SMark Fasheh static int ocfs2_free_cached_items(struct ocfs2_super *osb, 55602b604351SMark Fasheh int sysfile_type, 55612b604351SMark Fasheh int slot, 55622b604351SMark Fasheh struct ocfs2_cached_block_free *head) 55632b604351SMark Fasheh { 55642b604351SMark Fasheh int ret; 55652b604351SMark Fasheh u64 bg_blkno; 55662b604351SMark Fasheh handle_t *handle; 55672b604351SMark Fasheh struct inode *inode; 55682b604351SMark Fasheh struct buffer_head *di_bh = NULL; 55692b604351SMark Fasheh struct ocfs2_cached_block_free *tmp; 55702b604351SMark Fasheh 55712b604351SMark Fasheh inode = ocfs2_get_system_file_inode(osb, sysfile_type, slot); 55722b604351SMark Fasheh if (!inode) { 55732b604351SMark Fasheh ret = -EINVAL; 55742b604351SMark Fasheh mlog_errno(ret); 55752b604351SMark Fasheh goto out; 55762b604351SMark Fasheh } 55772b604351SMark Fasheh 55782b604351SMark Fasheh mutex_lock(&inode->i_mutex); 55792b604351SMark Fasheh 5580e63aecb6SMark Fasheh ret = ocfs2_inode_lock(inode, &di_bh, 1); 55812b604351SMark Fasheh if (ret) { 55822b604351SMark Fasheh mlog_errno(ret); 55832b604351SMark Fasheh goto out_mutex; 55842b604351SMark Fasheh } 55852b604351SMark Fasheh 55862b604351SMark Fasheh handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE); 55872b604351SMark Fasheh if (IS_ERR(handle)) { 55882b604351SMark Fasheh ret = PTR_ERR(handle); 55892b604351SMark Fasheh mlog_errno(ret); 55902b604351SMark Fasheh goto out_unlock; 55912b604351SMark Fasheh } 55922b604351SMark Fasheh 55932b604351SMark Fasheh while (head) { 55942b604351SMark Fasheh bg_blkno = ocfs2_which_suballoc_group(head->free_blk, 55952b604351SMark Fasheh head->free_bit); 55962b604351SMark Fasheh mlog(0, "Free bit: (bit %u, blkno %llu)\n", 55972b604351SMark Fasheh head->free_bit, (unsigned long long)head->free_blk); 55982b604351SMark Fasheh 55992b604351SMark Fasheh ret = ocfs2_free_suballoc_bits(handle, inode, di_bh, 56002b604351SMark Fasheh head->free_bit, bg_blkno, 1); 56012b604351SMark Fasheh if (ret) { 56022b604351SMark Fasheh mlog_errno(ret); 56032b604351SMark Fasheh goto out_journal; 56042b604351SMark Fasheh } 56052b604351SMark Fasheh 56062b604351SMark Fasheh ret = ocfs2_extend_trans(handle, OCFS2_SUBALLOC_FREE); 56072b604351SMark Fasheh if (ret) { 56082b604351SMark Fasheh mlog_errno(ret); 56092b604351SMark Fasheh goto out_journal; 56102b604351SMark Fasheh } 56112b604351SMark Fasheh 56122b604351SMark Fasheh tmp = head; 56132b604351SMark Fasheh head = head->free_next; 56142b604351SMark Fasheh kfree(tmp); 56152b604351SMark Fasheh } 56162b604351SMark Fasheh 56172b604351SMark Fasheh out_journal: 56182b604351SMark Fasheh ocfs2_commit_trans(osb, handle); 56192b604351SMark Fasheh 56202b604351SMark Fasheh out_unlock: 5621e63aecb6SMark Fasheh ocfs2_inode_unlock(inode, 1); 56222b604351SMark Fasheh brelse(di_bh); 56232b604351SMark Fasheh out_mutex: 56242b604351SMark Fasheh mutex_unlock(&inode->i_mutex); 56252b604351SMark Fasheh iput(inode); 56262b604351SMark Fasheh out: 56272b604351SMark Fasheh while(head) { 56282b604351SMark Fasheh /* Premature exit may have left some dangling items. */ 56292b604351SMark Fasheh tmp = head; 56302b604351SMark Fasheh head = head->free_next; 56312b604351SMark Fasheh kfree(tmp); 56322b604351SMark Fasheh } 56332b604351SMark Fasheh 56342b604351SMark Fasheh return ret; 56352b604351SMark Fasheh } 56362b604351SMark Fasheh 56372b604351SMark Fasheh int ocfs2_run_deallocs(struct ocfs2_super *osb, 56382b604351SMark Fasheh struct ocfs2_cached_dealloc_ctxt *ctxt) 56392b604351SMark Fasheh { 56402b604351SMark Fasheh int ret = 0, ret2; 56412b604351SMark Fasheh struct ocfs2_per_slot_free_list *fl; 56422b604351SMark Fasheh 56432b604351SMark Fasheh if (!ctxt) 56442b604351SMark Fasheh return 0; 56452b604351SMark Fasheh 56462b604351SMark Fasheh while (ctxt->c_first_suballocator) { 56472b604351SMark Fasheh fl = ctxt->c_first_suballocator; 56482b604351SMark Fasheh 56492b604351SMark Fasheh if (fl->f_first) { 56502b604351SMark Fasheh mlog(0, "Free items: (type %u, slot %d)\n", 56512b604351SMark Fasheh fl->f_inode_type, fl->f_slot); 56522b604351SMark Fasheh ret2 = ocfs2_free_cached_items(osb, fl->f_inode_type, 56532b604351SMark Fasheh fl->f_slot, fl->f_first); 56542b604351SMark Fasheh if (ret2) 56552b604351SMark Fasheh mlog_errno(ret2); 56562b604351SMark Fasheh if (!ret) 56572b604351SMark Fasheh ret = ret2; 56582b604351SMark Fasheh } 56592b604351SMark Fasheh 56602b604351SMark Fasheh ctxt->c_first_suballocator = fl->f_next_suballocator; 56612b604351SMark Fasheh kfree(fl); 56622b604351SMark Fasheh } 56632b604351SMark Fasheh 56642b604351SMark Fasheh return ret; 56652b604351SMark Fasheh } 56662b604351SMark Fasheh 56672b604351SMark Fasheh static struct ocfs2_per_slot_free_list * 56682b604351SMark Fasheh ocfs2_find_per_slot_free_list(int type, 56692b604351SMark Fasheh int slot, 56702b604351SMark Fasheh struct ocfs2_cached_dealloc_ctxt *ctxt) 56712b604351SMark Fasheh { 56722b604351SMark Fasheh struct ocfs2_per_slot_free_list *fl = ctxt->c_first_suballocator; 56732b604351SMark Fasheh 56742b604351SMark Fasheh while (fl) { 56752b604351SMark Fasheh if (fl->f_inode_type == type && fl->f_slot == slot) 56762b604351SMark Fasheh return fl; 56772b604351SMark Fasheh 56782b604351SMark Fasheh fl = fl->f_next_suballocator; 56792b604351SMark Fasheh } 56802b604351SMark Fasheh 56812b604351SMark Fasheh fl = kmalloc(sizeof(*fl), GFP_NOFS); 56822b604351SMark Fasheh if (fl) { 56832b604351SMark Fasheh fl->f_inode_type = type; 56842b604351SMark Fasheh fl->f_slot = slot; 56852b604351SMark Fasheh fl->f_first = NULL; 56862b604351SMark Fasheh fl->f_next_suballocator = ctxt->c_first_suballocator; 56872b604351SMark Fasheh 56882b604351SMark Fasheh ctxt->c_first_suballocator = fl; 56892b604351SMark Fasheh } 56902b604351SMark Fasheh return fl; 56912b604351SMark Fasheh } 56922b604351SMark Fasheh 56932b604351SMark Fasheh static int ocfs2_cache_block_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt, 56942b604351SMark Fasheh int type, int slot, u64 blkno, 56952b604351SMark Fasheh unsigned int bit) 56962b604351SMark Fasheh { 56972b604351SMark Fasheh int ret; 56982b604351SMark Fasheh struct ocfs2_per_slot_free_list *fl; 56992b604351SMark Fasheh struct ocfs2_cached_block_free *item; 57002b604351SMark Fasheh 57012b604351SMark Fasheh fl = ocfs2_find_per_slot_free_list(type, slot, ctxt); 57022b604351SMark Fasheh if (fl == NULL) { 57032b604351SMark Fasheh ret = -ENOMEM; 57042b604351SMark Fasheh mlog_errno(ret); 57052b604351SMark Fasheh goto out; 57062b604351SMark Fasheh } 57072b604351SMark Fasheh 57082b604351SMark Fasheh item = kmalloc(sizeof(*item), GFP_NOFS); 57092b604351SMark Fasheh if (item == NULL) { 57102b604351SMark Fasheh ret = -ENOMEM; 57112b604351SMark Fasheh mlog_errno(ret); 57122b604351SMark Fasheh goto out; 57132b604351SMark Fasheh } 57142b604351SMark Fasheh 57152b604351SMark Fasheh mlog(0, "Insert: (type %d, slot %u, bit %u, blk %llu)\n", 57162b604351SMark Fasheh type, slot, bit, (unsigned long long)blkno); 57172b604351SMark Fasheh 57182b604351SMark Fasheh item->free_blk = blkno; 57192b604351SMark Fasheh item->free_bit = bit; 57202b604351SMark Fasheh item->free_next = fl->f_first; 57212b604351SMark Fasheh 57222b604351SMark Fasheh fl->f_first = item; 57232b604351SMark Fasheh 57242b604351SMark Fasheh ret = 0; 57252b604351SMark Fasheh out: 57262b604351SMark Fasheh return ret; 57272b604351SMark Fasheh } 57282b604351SMark Fasheh 572959a5e416SMark Fasheh static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt, 573059a5e416SMark Fasheh struct ocfs2_extent_block *eb) 573159a5e416SMark Fasheh { 573259a5e416SMark Fasheh return ocfs2_cache_block_dealloc(ctxt, EXTENT_ALLOC_SYSTEM_INODE, 573359a5e416SMark Fasheh le16_to_cpu(eb->h_suballoc_slot), 573459a5e416SMark Fasheh le64_to_cpu(eb->h_blkno), 573559a5e416SMark Fasheh le16_to_cpu(eb->h_suballoc_bit)); 573659a5e416SMark Fasheh } 573759a5e416SMark Fasheh 5738ccd979bdSMark Fasheh /* This function will figure out whether the currently last extent 5739ccd979bdSMark Fasheh * block will be deleted, and if it will, what the new last extent 5740ccd979bdSMark Fasheh * block will be so we can update his h_next_leaf_blk field, as well 5741ccd979bdSMark Fasheh * as the dinodes i_last_eb_blk */ 5742dcd0538fSMark Fasheh static int ocfs2_find_new_last_ext_blk(struct inode *inode, 57433a0782d0SMark Fasheh unsigned int clusters_to_del, 5744dcd0538fSMark Fasheh struct ocfs2_path *path, 5745ccd979bdSMark Fasheh struct buffer_head **new_last_eb) 5746ccd979bdSMark Fasheh { 57473a0782d0SMark Fasheh int next_free, ret = 0; 5748dcd0538fSMark Fasheh u32 cpos; 57493a0782d0SMark Fasheh struct ocfs2_extent_rec *rec; 5750ccd979bdSMark Fasheh struct ocfs2_extent_block *eb; 5751ccd979bdSMark Fasheh struct ocfs2_extent_list *el; 5752ccd979bdSMark Fasheh struct buffer_head *bh = NULL; 5753ccd979bdSMark Fasheh 5754ccd979bdSMark Fasheh *new_last_eb = NULL; 5755ccd979bdSMark Fasheh 5756ccd979bdSMark Fasheh /* we have no tree, so of course, no last_eb. */ 5757dcd0538fSMark Fasheh if (!path->p_tree_depth) 5758dcd0538fSMark Fasheh goto out; 5759ccd979bdSMark Fasheh 5760ccd979bdSMark Fasheh /* trunc to zero special case - this makes tree_depth = 0 5761ccd979bdSMark Fasheh * regardless of what it is. */ 57623a0782d0SMark Fasheh if (OCFS2_I(inode)->ip_clusters == clusters_to_del) 5763dcd0538fSMark Fasheh goto out; 5764ccd979bdSMark Fasheh 5765dcd0538fSMark Fasheh el = path_leaf_el(path); 5766ccd979bdSMark Fasheh BUG_ON(!el->l_next_free_rec); 5767ccd979bdSMark Fasheh 57683a0782d0SMark Fasheh /* 57693a0782d0SMark Fasheh * Make sure that this extent list will actually be empty 57703a0782d0SMark Fasheh * after we clear away the data. We can shortcut out if 57713a0782d0SMark Fasheh * there's more than one non-empty extent in the 57723a0782d0SMark Fasheh * list. Otherwise, a check of the remaining extent is 57733a0782d0SMark Fasheh * necessary. 57743a0782d0SMark Fasheh */ 57753a0782d0SMark Fasheh next_free = le16_to_cpu(el->l_next_free_rec); 57763a0782d0SMark Fasheh rec = NULL; 5777dcd0538fSMark Fasheh if (ocfs2_is_empty_extent(&el->l_recs[0])) { 57783a0782d0SMark Fasheh if (next_free > 2) 5779dcd0538fSMark Fasheh goto out; 57803a0782d0SMark Fasheh 57813a0782d0SMark Fasheh /* We may have a valid extent in index 1, check it. */ 57823a0782d0SMark Fasheh if (next_free == 2) 57833a0782d0SMark Fasheh rec = &el->l_recs[1]; 57843a0782d0SMark Fasheh 57853a0782d0SMark Fasheh /* 57863a0782d0SMark Fasheh * Fall through - no more nonempty extents, so we want 57873a0782d0SMark Fasheh * to delete this leaf. 57883a0782d0SMark Fasheh */ 57893a0782d0SMark Fasheh } else { 57903a0782d0SMark Fasheh if (next_free > 1) 5791dcd0538fSMark Fasheh goto out; 5792ccd979bdSMark Fasheh 57933a0782d0SMark Fasheh rec = &el->l_recs[0]; 57943a0782d0SMark Fasheh } 57953a0782d0SMark Fasheh 57963a0782d0SMark Fasheh if (rec) { 57973a0782d0SMark Fasheh /* 57983a0782d0SMark Fasheh * Check it we'll only be trimming off the end of this 57993a0782d0SMark Fasheh * cluster. 58003a0782d0SMark Fasheh */ 5801e48edee2SMark Fasheh if (le16_to_cpu(rec->e_leaf_clusters) > clusters_to_del) 58023a0782d0SMark Fasheh goto out; 58033a0782d0SMark Fasheh } 58043a0782d0SMark Fasheh 5805dcd0538fSMark Fasheh ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, path, &cpos); 5806dcd0538fSMark Fasheh if (ret) { 5807dcd0538fSMark Fasheh mlog_errno(ret); 5808dcd0538fSMark Fasheh goto out; 5809ccd979bdSMark Fasheh } 5810ccd979bdSMark Fasheh 5811dcd0538fSMark Fasheh ret = ocfs2_find_leaf(inode, path_root_el(path), cpos, &bh); 5812dcd0538fSMark Fasheh if (ret) { 5813dcd0538fSMark Fasheh mlog_errno(ret); 5814dcd0538fSMark Fasheh goto out; 5815ccd979bdSMark Fasheh } 5816dcd0538fSMark Fasheh 5817ccd979bdSMark Fasheh eb = (struct ocfs2_extent_block *) bh->b_data; 5818ccd979bdSMark Fasheh el = &eb->h_list; 5819ccd979bdSMark Fasheh if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) { 5820ccd979bdSMark Fasheh OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb); 5821dcd0538fSMark Fasheh ret = -EROFS; 5822dcd0538fSMark Fasheh goto out; 5823ccd979bdSMark Fasheh } 5824ccd979bdSMark Fasheh 5825ccd979bdSMark Fasheh *new_last_eb = bh; 5826ccd979bdSMark Fasheh get_bh(*new_last_eb); 5827dcd0538fSMark Fasheh mlog(0, "returning block %llu, (cpos: %u)\n", 5828dcd0538fSMark Fasheh (unsigned long long)le64_to_cpu(eb->h_blkno), cpos); 5829dcd0538fSMark Fasheh out: 5830ccd979bdSMark Fasheh brelse(bh); 5831ccd979bdSMark Fasheh 5832dcd0538fSMark Fasheh return ret; 5833ccd979bdSMark Fasheh } 5834ccd979bdSMark Fasheh 58353a0782d0SMark Fasheh /* 58363a0782d0SMark Fasheh * Trim some clusters off the rightmost edge of a tree. Only called 58373a0782d0SMark Fasheh * during truncate. 58383a0782d0SMark Fasheh * 58393a0782d0SMark Fasheh * The caller needs to: 58403a0782d0SMark Fasheh * - start journaling of each path component. 58413a0782d0SMark Fasheh * - compute and fully set up any new last ext block 58423a0782d0SMark Fasheh */ 58433a0782d0SMark Fasheh static int ocfs2_trim_tree(struct inode *inode, struct ocfs2_path *path, 58443a0782d0SMark Fasheh handle_t *handle, struct ocfs2_truncate_context *tc, 58453a0782d0SMark Fasheh u32 clusters_to_del, u64 *delete_start) 58463a0782d0SMark Fasheh { 58473a0782d0SMark Fasheh int ret, i, index = path->p_tree_depth; 58483a0782d0SMark Fasheh u32 new_edge = 0; 58493a0782d0SMark Fasheh u64 deleted_eb = 0; 58503a0782d0SMark Fasheh struct buffer_head *bh; 58513a0782d0SMark Fasheh struct ocfs2_extent_list *el; 58523a0782d0SMark Fasheh struct ocfs2_extent_rec *rec; 58533a0782d0SMark Fasheh 58543a0782d0SMark Fasheh *delete_start = 0; 58553a0782d0SMark Fasheh 58563a0782d0SMark Fasheh while (index >= 0) { 58573a0782d0SMark Fasheh bh = path->p_node[index].bh; 58583a0782d0SMark Fasheh el = path->p_node[index].el; 58593a0782d0SMark Fasheh 58603a0782d0SMark Fasheh mlog(0, "traveling tree (index = %d, block = %llu)\n", 58613a0782d0SMark Fasheh index, (unsigned long long)bh->b_blocknr); 58623a0782d0SMark Fasheh 58633a0782d0SMark Fasheh BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0); 58643a0782d0SMark Fasheh 58653a0782d0SMark Fasheh if (index != 58663a0782d0SMark Fasheh (path->p_tree_depth - le16_to_cpu(el->l_tree_depth))) { 58673a0782d0SMark Fasheh ocfs2_error(inode->i_sb, 58683a0782d0SMark Fasheh "Inode %lu has invalid ext. block %llu", 58693a0782d0SMark Fasheh inode->i_ino, 58703a0782d0SMark Fasheh (unsigned long long)bh->b_blocknr); 58713a0782d0SMark Fasheh ret = -EROFS; 58723a0782d0SMark Fasheh goto out; 58733a0782d0SMark Fasheh } 58743a0782d0SMark Fasheh 58753a0782d0SMark Fasheh find_tail_record: 58763a0782d0SMark Fasheh i = le16_to_cpu(el->l_next_free_rec) - 1; 58773a0782d0SMark Fasheh rec = &el->l_recs[i]; 58783a0782d0SMark Fasheh 58793a0782d0SMark Fasheh mlog(0, "Extent list before: record %d: (%u, %u, %llu), " 58803a0782d0SMark Fasheh "next = %u\n", i, le32_to_cpu(rec->e_cpos), 5881e48edee2SMark Fasheh ocfs2_rec_clusters(el, rec), 58823a0782d0SMark Fasheh (unsigned long long)le64_to_cpu(rec->e_blkno), 58833a0782d0SMark Fasheh le16_to_cpu(el->l_next_free_rec)); 58843a0782d0SMark Fasheh 5885e48edee2SMark Fasheh BUG_ON(ocfs2_rec_clusters(el, rec) < clusters_to_del); 58863a0782d0SMark Fasheh 58873a0782d0SMark Fasheh if (le16_to_cpu(el->l_tree_depth) == 0) { 58883a0782d0SMark Fasheh /* 58893a0782d0SMark Fasheh * If the leaf block contains a single empty 58903a0782d0SMark Fasheh * extent and no records, we can just remove 58913a0782d0SMark Fasheh * the block. 58923a0782d0SMark Fasheh */ 58933a0782d0SMark Fasheh if (i == 0 && ocfs2_is_empty_extent(rec)) { 58943a0782d0SMark Fasheh memset(rec, 0, 58953a0782d0SMark Fasheh sizeof(struct ocfs2_extent_rec)); 58963a0782d0SMark Fasheh el->l_next_free_rec = cpu_to_le16(0); 58973a0782d0SMark Fasheh 58983a0782d0SMark Fasheh goto delete; 58993a0782d0SMark Fasheh } 59003a0782d0SMark Fasheh 59013a0782d0SMark Fasheh /* 59023a0782d0SMark Fasheh * Remove any empty extents by shifting things 59033a0782d0SMark Fasheh * left. That should make life much easier on 59043a0782d0SMark Fasheh * the code below. This condition is rare 59053a0782d0SMark Fasheh * enough that we shouldn't see a performance 59063a0782d0SMark Fasheh * hit. 59073a0782d0SMark Fasheh */ 59083a0782d0SMark Fasheh if (ocfs2_is_empty_extent(&el->l_recs[0])) { 59093a0782d0SMark Fasheh le16_add_cpu(&el->l_next_free_rec, -1); 59103a0782d0SMark Fasheh 59113a0782d0SMark Fasheh for(i = 0; 59123a0782d0SMark Fasheh i < le16_to_cpu(el->l_next_free_rec); i++) 59133a0782d0SMark Fasheh el->l_recs[i] = el->l_recs[i + 1]; 59143a0782d0SMark Fasheh 59153a0782d0SMark Fasheh memset(&el->l_recs[i], 0, 59163a0782d0SMark Fasheh sizeof(struct ocfs2_extent_rec)); 59173a0782d0SMark Fasheh 59183a0782d0SMark Fasheh /* 59193a0782d0SMark Fasheh * We've modified our extent list. The 59203a0782d0SMark Fasheh * simplest way to handle this change 59213a0782d0SMark Fasheh * is to being the search from the 59223a0782d0SMark Fasheh * start again. 59233a0782d0SMark Fasheh */ 59243a0782d0SMark Fasheh goto find_tail_record; 59253a0782d0SMark Fasheh } 59263a0782d0SMark Fasheh 5927e48edee2SMark Fasheh le16_add_cpu(&rec->e_leaf_clusters, -clusters_to_del); 59283a0782d0SMark Fasheh 59293a0782d0SMark Fasheh /* 59303a0782d0SMark Fasheh * We'll use "new_edge" on our way back up the 59313a0782d0SMark Fasheh * tree to know what our rightmost cpos is. 59323a0782d0SMark Fasheh */ 5933e48edee2SMark Fasheh new_edge = le16_to_cpu(rec->e_leaf_clusters); 59343a0782d0SMark Fasheh new_edge += le32_to_cpu(rec->e_cpos); 59353a0782d0SMark Fasheh 59363a0782d0SMark Fasheh /* 59373a0782d0SMark Fasheh * The caller will use this to delete data blocks. 59383a0782d0SMark Fasheh */ 59393a0782d0SMark Fasheh *delete_start = le64_to_cpu(rec->e_blkno) 59403a0782d0SMark Fasheh + ocfs2_clusters_to_blocks(inode->i_sb, 5941e48edee2SMark Fasheh le16_to_cpu(rec->e_leaf_clusters)); 59423a0782d0SMark Fasheh 59433a0782d0SMark Fasheh /* 59443a0782d0SMark Fasheh * If it's now empty, remove this record. 59453a0782d0SMark Fasheh */ 5946e48edee2SMark Fasheh if (le16_to_cpu(rec->e_leaf_clusters) == 0) { 59473a0782d0SMark Fasheh memset(rec, 0, 59483a0782d0SMark Fasheh sizeof(struct ocfs2_extent_rec)); 59493a0782d0SMark Fasheh le16_add_cpu(&el->l_next_free_rec, -1); 59503a0782d0SMark Fasheh } 59513a0782d0SMark Fasheh } else { 59523a0782d0SMark Fasheh if (le64_to_cpu(rec->e_blkno) == deleted_eb) { 59533a0782d0SMark Fasheh memset(rec, 0, 59543a0782d0SMark Fasheh sizeof(struct ocfs2_extent_rec)); 59553a0782d0SMark Fasheh le16_add_cpu(&el->l_next_free_rec, -1); 59563a0782d0SMark Fasheh 59573a0782d0SMark Fasheh goto delete; 59583a0782d0SMark Fasheh } 59593a0782d0SMark Fasheh 59603a0782d0SMark Fasheh /* Can this actually happen? */ 59613a0782d0SMark Fasheh if (le16_to_cpu(el->l_next_free_rec) == 0) 59623a0782d0SMark Fasheh goto delete; 59633a0782d0SMark Fasheh 59643a0782d0SMark Fasheh /* 59653a0782d0SMark Fasheh * We never actually deleted any clusters 59663a0782d0SMark Fasheh * because our leaf was empty. There's no 59673a0782d0SMark Fasheh * reason to adjust the rightmost edge then. 59683a0782d0SMark Fasheh */ 59693a0782d0SMark Fasheh if (new_edge == 0) 59703a0782d0SMark Fasheh goto delete; 59713a0782d0SMark Fasheh 5972e48edee2SMark Fasheh rec->e_int_clusters = cpu_to_le32(new_edge); 5973e48edee2SMark Fasheh le32_add_cpu(&rec->e_int_clusters, 59743a0782d0SMark Fasheh -le32_to_cpu(rec->e_cpos)); 59753a0782d0SMark Fasheh 59763a0782d0SMark Fasheh /* 59773a0782d0SMark Fasheh * A deleted child record should have been 59783a0782d0SMark Fasheh * caught above. 59793a0782d0SMark Fasheh */ 5980e48edee2SMark Fasheh BUG_ON(le32_to_cpu(rec->e_int_clusters) == 0); 59813a0782d0SMark Fasheh } 59823a0782d0SMark Fasheh 59833a0782d0SMark Fasheh delete: 59843a0782d0SMark Fasheh ret = ocfs2_journal_dirty(handle, bh); 59853a0782d0SMark Fasheh if (ret) { 59863a0782d0SMark Fasheh mlog_errno(ret); 59873a0782d0SMark Fasheh goto out; 59883a0782d0SMark Fasheh } 59893a0782d0SMark Fasheh 59903a0782d0SMark Fasheh mlog(0, "extent list container %llu, after: record %d: " 59913a0782d0SMark Fasheh "(%u, %u, %llu), next = %u.\n", 59923a0782d0SMark Fasheh (unsigned long long)bh->b_blocknr, i, 5993e48edee2SMark Fasheh le32_to_cpu(rec->e_cpos), ocfs2_rec_clusters(el, rec), 59943a0782d0SMark Fasheh (unsigned long long)le64_to_cpu(rec->e_blkno), 59953a0782d0SMark Fasheh le16_to_cpu(el->l_next_free_rec)); 59963a0782d0SMark Fasheh 59973a0782d0SMark Fasheh /* 59983a0782d0SMark Fasheh * We must be careful to only attempt delete of an 59993a0782d0SMark Fasheh * extent block (and not the root inode block). 60003a0782d0SMark Fasheh */ 60013a0782d0SMark Fasheh if (index > 0 && le16_to_cpu(el->l_next_free_rec) == 0) { 60023a0782d0SMark Fasheh struct ocfs2_extent_block *eb = 60033a0782d0SMark Fasheh (struct ocfs2_extent_block *)bh->b_data; 60043a0782d0SMark Fasheh 60053a0782d0SMark Fasheh /* 60063a0782d0SMark Fasheh * Save this for use when processing the 60073a0782d0SMark Fasheh * parent block. 60083a0782d0SMark Fasheh */ 60093a0782d0SMark Fasheh deleted_eb = le64_to_cpu(eb->h_blkno); 60103a0782d0SMark Fasheh 60113a0782d0SMark Fasheh mlog(0, "deleting this extent block.\n"); 60123a0782d0SMark Fasheh 60133a0782d0SMark Fasheh ocfs2_remove_from_cache(inode, bh); 60143a0782d0SMark Fasheh 6015e48edee2SMark Fasheh BUG_ON(ocfs2_rec_clusters(el, &el->l_recs[0])); 60163a0782d0SMark Fasheh BUG_ON(le32_to_cpu(el->l_recs[0].e_cpos)); 60173a0782d0SMark Fasheh BUG_ON(le64_to_cpu(el->l_recs[0].e_blkno)); 60183a0782d0SMark Fasheh 601959a5e416SMark Fasheh ret = ocfs2_cache_extent_block_free(&tc->tc_dealloc, eb); 60203a0782d0SMark Fasheh /* An error here is not fatal. */ 60213a0782d0SMark Fasheh if (ret < 0) 60223a0782d0SMark Fasheh mlog_errno(ret); 60233a0782d0SMark Fasheh } else { 60243a0782d0SMark Fasheh deleted_eb = 0; 60253a0782d0SMark Fasheh } 60263a0782d0SMark Fasheh 60273a0782d0SMark Fasheh index--; 60283a0782d0SMark Fasheh } 60293a0782d0SMark Fasheh 60303a0782d0SMark Fasheh ret = 0; 60313a0782d0SMark Fasheh out: 60323a0782d0SMark Fasheh return ret; 60333a0782d0SMark Fasheh } 60343a0782d0SMark Fasheh 6035ccd979bdSMark Fasheh static int ocfs2_do_truncate(struct ocfs2_super *osb, 6036ccd979bdSMark Fasheh unsigned int clusters_to_del, 6037ccd979bdSMark Fasheh struct inode *inode, 6038ccd979bdSMark Fasheh struct buffer_head *fe_bh, 60391fabe148SMark Fasheh handle_t *handle, 6040dcd0538fSMark Fasheh struct ocfs2_truncate_context *tc, 6041dcd0538fSMark Fasheh struct ocfs2_path *path) 6042ccd979bdSMark Fasheh { 60433a0782d0SMark Fasheh int status; 6044ccd979bdSMark Fasheh struct ocfs2_dinode *fe; 6045ccd979bdSMark Fasheh struct ocfs2_extent_block *last_eb = NULL; 6046ccd979bdSMark Fasheh struct ocfs2_extent_list *el; 6047ccd979bdSMark Fasheh struct buffer_head *last_eb_bh = NULL; 6048ccd979bdSMark Fasheh u64 delete_blk = 0; 6049ccd979bdSMark Fasheh 6050ccd979bdSMark Fasheh fe = (struct ocfs2_dinode *) fe_bh->b_data; 6051ccd979bdSMark Fasheh 60523a0782d0SMark Fasheh status = ocfs2_find_new_last_ext_blk(inode, clusters_to_del, 6053dcd0538fSMark Fasheh path, &last_eb_bh); 6054ccd979bdSMark Fasheh if (status < 0) { 6055ccd979bdSMark Fasheh mlog_errno(status); 6056ccd979bdSMark Fasheh goto bail; 6057ccd979bdSMark Fasheh } 6058ccd979bdSMark Fasheh 6059dcd0538fSMark Fasheh /* 6060dcd0538fSMark Fasheh * Each component will be touched, so we might as well journal 6061dcd0538fSMark Fasheh * here to avoid having to handle errors later. 6062dcd0538fSMark Fasheh */ 60633a0782d0SMark Fasheh status = ocfs2_journal_access_path(inode, handle, path); 6064ccd979bdSMark Fasheh if (status < 0) { 6065ccd979bdSMark Fasheh mlog_errno(status); 6066ccd979bdSMark Fasheh goto bail; 6067ccd979bdSMark Fasheh } 6068dcd0538fSMark Fasheh 6069dcd0538fSMark Fasheh if (last_eb_bh) { 6070dcd0538fSMark Fasheh status = ocfs2_journal_access(handle, inode, last_eb_bh, 6071dcd0538fSMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 6072dcd0538fSMark Fasheh if (status < 0) { 6073dcd0538fSMark Fasheh mlog_errno(status); 6074dcd0538fSMark Fasheh goto bail; 6075dcd0538fSMark Fasheh } 6076dcd0538fSMark Fasheh 6077dcd0538fSMark Fasheh last_eb = (struct ocfs2_extent_block *) last_eb_bh->b_data; 6078dcd0538fSMark Fasheh } 6079dcd0538fSMark Fasheh 6080ccd979bdSMark Fasheh el = &(fe->id2.i_list); 6081ccd979bdSMark Fasheh 6082dcd0538fSMark Fasheh /* 6083dcd0538fSMark Fasheh * Lower levels depend on this never happening, but it's best 6084dcd0538fSMark Fasheh * to check it up here before changing the tree. 6085dcd0538fSMark Fasheh */ 6086e48edee2SMark Fasheh if (el->l_tree_depth && el->l_recs[0].e_int_clusters == 0) { 6087dcd0538fSMark Fasheh ocfs2_error(inode->i_sb, 6088dcd0538fSMark Fasheh "Inode %lu has an empty extent record, depth %u\n", 6089dcd0538fSMark Fasheh inode->i_ino, le16_to_cpu(el->l_tree_depth)); 60903a0782d0SMark Fasheh status = -EROFS; 6091dcd0538fSMark Fasheh goto bail; 6092dcd0538fSMark Fasheh } 6093dcd0538fSMark Fasheh 6094ccd979bdSMark Fasheh spin_lock(&OCFS2_I(inode)->ip_lock); 6095ccd979bdSMark Fasheh OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters) - 6096ccd979bdSMark Fasheh clusters_to_del; 6097ccd979bdSMark Fasheh spin_unlock(&OCFS2_I(inode)->ip_lock); 6098ccd979bdSMark Fasheh le32_add_cpu(&fe->i_clusters, -clusters_to_del); 6099e535e2efSMark Fasheh inode->i_blocks = ocfs2_inode_sector_count(inode); 6100ccd979bdSMark Fasheh 61013a0782d0SMark Fasheh status = ocfs2_trim_tree(inode, path, handle, tc, 61023a0782d0SMark Fasheh clusters_to_del, &delete_blk); 61033a0782d0SMark Fasheh if (status) { 61043a0782d0SMark Fasheh mlog_errno(status); 61053a0782d0SMark Fasheh goto bail; 6106ccd979bdSMark Fasheh } 6107ccd979bdSMark Fasheh 6108dcd0538fSMark Fasheh if (le32_to_cpu(fe->i_clusters) == 0) { 6109ccd979bdSMark Fasheh /* trunc to zero is a special case. */ 6110ccd979bdSMark Fasheh el->l_tree_depth = 0; 6111ccd979bdSMark Fasheh fe->i_last_eb_blk = 0; 6112ccd979bdSMark Fasheh } else if (last_eb) 6113ccd979bdSMark Fasheh fe->i_last_eb_blk = last_eb->h_blkno; 6114ccd979bdSMark Fasheh 6115ccd979bdSMark Fasheh status = ocfs2_journal_dirty(handle, fe_bh); 6116ccd979bdSMark Fasheh if (status < 0) { 6117ccd979bdSMark Fasheh mlog_errno(status); 6118ccd979bdSMark Fasheh goto bail; 6119ccd979bdSMark Fasheh } 6120ccd979bdSMark Fasheh 6121ccd979bdSMark Fasheh if (last_eb) { 6122ccd979bdSMark Fasheh /* If there will be a new last extent block, then by 6123ccd979bdSMark Fasheh * definition, there cannot be any leaves to the right of 6124ccd979bdSMark Fasheh * him. */ 6125ccd979bdSMark Fasheh last_eb->h_next_leaf_blk = 0; 6126ccd979bdSMark Fasheh status = ocfs2_journal_dirty(handle, last_eb_bh); 6127ccd979bdSMark Fasheh if (status < 0) { 6128ccd979bdSMark Fasheh mlog_errno(status); 6129ccd979bdSMark Fasheh goto bail; 6130ccd979bdSMark Fasheh } 6131ccd979bdSMark Fasheh } 6132ccd979bdSMark Fasheh 61333a0782d0SMark Fasheh if (delete_blk) { 6134ccd979bdSMark Fasheh status = ocfs2_truncate_log_append(osb, handle, delete_blk, 6135ccd979bdSMark Fasheh clusters_to_del); 6136ccd979bdSMark Fasheh if (status < 0) { 6137ccd979bdSMark Fasheh mlog_errno(status); 6138ccd979bdSMark Fasheh goto bail; 6139ccd979bdSMark Fasheh } 61403a0782d0SMark Fasheh } 6141ccd979bdSMark Fasheh status = 0; 6142ccd979bdSMark Fasheh bail: 6143dcd0538fSMark Fasheh 6144ccd979bdSMark Fasheh mlog_exit(status); 6145ccd979bdSMark Fasheh return status; 6146ccd979bdSMark Fasheh } 6147ccd979bdSMark Fasheh 614860b11392SMark Fasheh static int ocfs2_writeback_zero_func(handle_t *handle, struct buffer_head *bh) 614960b11392SMark Fasheh { 615060b11392SMark Fasheh set_buffer_uptodate(bh); 615160b11392SMark Fasheh mark_buffer_dirty(bh); 615260b11392SMark Fasheh return 0; 615360b11392SMark Fasheh } 615460b11392SMark Fasheh 615560b11392SMark Fasheh static int ocfs2_ordered_zero_func(handle_t *handle, struct buffer_head *bh) 615660b11392SMark Fasheh { 615760b11392SMark Fasheh set_buffer_uptodate(bh); 615860b11392SMark Fasheh mark_buffer_dirty(bh); 615960b11392SMark Fasheh return ocfs2_journal_dirty_data(handle, bh); 616060b11392SMark Fasheh } 616160b11392SMark Fasheh 61621d410a6eSMark Fasheh static void ocfs2_map_and_dirty_page(struct inode *inode, handle_t *handle, 61631d410a6eSMark Fasheh unsigned int from, unsigned int to, 61641d410a6eSMark Fasheh struct page *page, int zero, u64 *phys) 616560b11392SMark Fasheh { 61661d410a6eSMark Fasheh int ret, partial = 0; 616760b11392SMark Fasheh 61681d410a6eSMark Fasheh ret = ocfs2_map_page_blocks(page, phys, inode, from, to, 0); 616960b11392SMark Fasheh if (ret) 617060b11392SMark Fasheh mlog_errno(ret); 617160b11392SMark Fasheh 61721d410a6eSMark Fasheh if (zero) 6173eebd2aa3SChristoph Lameter zero_user_segment(page, from, to); 617460b11392SMark Fasheh 617560b11392SMark Fasheh /* 617660b11392SMark Fasheh * Need to set the buffers we zero'd into uptodate 617760b11392SMark Fasheh * here if they aren't - ocfs2_map_page_blocks() 617860b11392SMark Fasheh * might've skipped some 617960b11392SMark Fasheh */ 618060b11392SMark Fasheh if (ocfs2_should_order_data(inode)) { 618160b11392SMark Fasheh ret = walk_page_buffers(handle, 618260b11392SMark Fasheh page_buffers(page), 618360b11392SMark Fasheh from, to, &partial, 618460b11392SMark Fasheh ocfs2_ordered_zero_func); 618560b11392SMark Fasheh if (ret < 0) 618660b11392SMark Fasheh mlog_errno(ret); 618760b11392SMark Fasheh } else { 618860b11392SMark Fasheh ret = walk_page_buffers(handle, page_buffers(page), 618960b11392SMark Fasheh from, to, &partial, 619060b11392SMark Fasheh ocfs2_writeback_zero_func); 619160b11392SMark Fasheh if (ret < 0) 619260b11392SMark Fasheh mlog_errno(ret); 619360b11392SMark Fasheh } 619460b11392SMark Fasheh 619560b11392SMark Fasheh if (!partial) 619660b11392SMark Fasheh SetPageUptodate(page); 619760b11392SMark Fasheh 619860b11392SMark Fasheh flush_dcache_page(page); 61991d410a6eSMark Fasheh } 62001d410a6eSMark Fasheh 62011d410a6eSMark Fasheh static void ocfs2_zero_cluster_pages(struct inode *inode, loff_t start, 62021d410a6eSMark Fasheh loff_t end, struct page **pages, 62031d410a6eSMark Fasheh int numpages, u64 phys, handle_t *handle) 62041d410a6eSMark Fasheh { 62051d410a6eSMark Fasheh int i; 62061d410a6eSMark Fasheh struct page *page; 62071d410a6eSMark Fasheh unsigned int from, to = PAGE_CACHE_SIZE; 62081d410a6eSMark Fasheh struct super_block *sb = inode->i_sb; 62091d410a6eSMark Fasheh 62101d410a6eSMark Fasheh BUG_ON(!ocfs2_sparse_alloc(OCFS2_SB(sb))); 62111d410a6eSMark Fasheh 62121d410a6eSMark Fasheh if (numpages == 0) 62131d410a6eSMark Fasheh goto out; 62141d410a6eSMark Fasheh 62151d410a6eSMark Fasheh to = PAGE_CACHE_SIZE; 62161d410a6eSMark Fasheh for(i = 0; i < numpages; i++) { 62171d410a6eSMark Fasheh page = pages[i]; 62181d410a6eSMark Fasheh 62191d410a6eSMark Fasheh from = start & (PAGE_CACHE_SIZE - 1); 62201d410a6eSMark Fasheh if ((end >> PAGE_CACHE_SHIFT) == page->index) 62211d410a6eSMark Fasheh to = end & (PAGE_CACHE_SIZE - 1); 62221d410a6eSMark Fasheh 62231d410a6eSMark Fasheh BUG_ON(from > PAGE_CACHE_SIZE); 62241d410a6eSMark Fasheh BUG_ON(to > PAGE_CACHE_SIZE); 62251d410a6eSMark Fasheh 62261d410a6eSMark Fasheh ocfs2_map_and_dirty_page(inode, handle, from, to, page, 1, 62271d410a6eSMark Fasheh &phys); 622860b11392SMark Fasheh 622935edec1dSMark Fasheh start = (page->index + 1) << PAGE_CACHE_SHIFT; 623060b11392SMark Fasheh } 623160b11392SMark Fasheh out: 62321d410a6eSMark Fasheh if (pages) 62331d410a6eSMark Fasheh ocfs2_unlock_and_free_pages(pages, numpages); 623460b11392SMark Fasheh } 623560b11392SMark Fasheh 623635edec1dSMark Fasheh static int ocfs2_grab_eof_pages(struct inode *inode, loff_t start, loff_t end, 62371d410a6eSMark Fasheh struct page **pages, int *num) 623860b11392SMark Fasheh { 62391d410a6eSMark Fasheh int numpages, ret = 0; 624060b11392SMark Fasheh struct super_block *sb = inode->i_sb; 624160b11392SMark Fasheh struct address_space *mapping = inode->i_mapping; 624260b11392SMark Fasheh unsigned long index; 624335edec1dSMark Fasheh loff_t last_page_bytes; 624460b11392SMark Fasheh 624535edec1dSMark Fasheh BUG_ON(start > end); 624660b11392SMark Fasheh 624735edec1dSMark Fasheh BUG_ON(start >> OCFS2_SB(sb)->s_clustersize_bits != 624835edec1dSMark Fasheh (end - 1) >> OCFS2_SB(sb)->s_clustersize_bits); 624935edec1dSMark Fasheh 62501d410a6eSMark Fasheh numpages = 0; 625135edec1dSMark Fasheh last_page_bytes = PAGE_ALIGN(end); 625235edec1dSMark Fasheh index = start >> PAGE_CACHE_SHIFT; 625360b11392SMark Fasheh do { 625460b11392SMark Fasheh pages[numpages] = grab_cache_page(mapping, index); 625560b11392SMark Fasheh if (!pages[numpages]) { 625660b11392SMark Fasheh ret = -ENOMEM; 625760b11392SMark Fasheh mlog_errno(ret); 625860b11392SMark Fasheh goto out; 625960b11392SMark Fasheh } 626060b11392SMark Fasheh 626160b11392SMark Fasheh numpages++; 626260b11392SMark Fasheh index++; 626335edec1dSMark Fasheh } while (index < (last_page_bytes >> PAGE_CACHE_SHIFT)); 626460b11392SMark Fasheh 626560b11392SMark Fasheh out: 626660b11392SMark Fasheh if (ret != 0) { 62671d410a6eSMark Fasheh if (pages) 62681d410a6eSMark Fasheh ocfs2_unlock_and_free_pages(pages, numpages); 626960b11392SMark Fasheh numpages = 0; 627060b11392SMark Fasheh } 627160b11392SMark Fasheh 627260b11392SMark Fasheh *num = numpages; 627360b11392SMark Fasheh 627460b11392SMark Fasheh return ret; 627560b11392SMark Fasheh } 627660b11392SMark Fasheh 627760b11392SMark Fasheh /* 627860b11392SMark Fasheh * Zero the area past i_size but still within an allocated 627960b11392SMark Fasheh * cluster. This avoids exposing nonzero data on subsequent file 628060b11392SMark Fasheh * extends. 628160b11392SMark Fasheh * 628260b11392SMark Fasheh * We need to call this before i_size is updated on the inode because 628360b11392SMark Fasheh * otherwise block_write_full_page() will skip writeout of pages past 628460b11392SMark Fasheh * i_size. The new_i_size parameter is passed for this reason. 628560b11392SMark Fasheh */ 628635edec1dSMark Fasheh int ocfs2_zero_range_for_truncate(struct inode *inode, handle_t *handle, 628735edec1dSMark Fasheh u64 range_start, u64 range_end) 628860b11392SMark Fasheh { 62891d410a6eSMark Fasheh int ret = 0, numpages; 629060b11392SMark Fasheh struct page **pages = NULL; 629160b11392SMark Fasheh u64 phys; 62921d410a6eSMark Fasheh unsigned int ext_flags; 62931d410a6eSMark Fasheh struct super_block *sb = inode->i_sb; 629460b11392SMark Fasheh 629560b11392SMark Fasheh /* 629660b11392SMark Fasheh * File systems which don't support sparse files zero on every 629760b11392SMark Fasheh * extend. 629860b11392SMark Fasheh */ 62991d410a6eSMark Fasheh if (!ocfs2_sparse_alloc(OCFS2_SB(sb))) 630060b11392SMark Fasheh return 0; 630160b11392SMark Fasheh 63021d410a6eSMark Fasheh pages = kcalloc(ocfs2_pages_per_cluster(sb), 630360b11392SMark Fasheh sizeof(struct page *), GFP_NOFS); 630460b11392SMark Fasheh if (pages == NULL) { 630560b11392SMark Fasheh ret = -ENOMEM; 630660b11392SMark Fasheh mlog_errno(ret); 630760b11392SMark Fasheh goto out; 630860b11392SMark Fasheh } 630960b11392SMark Fasheh 63101d410a6eSMark Fasheh if (range_start == range_end) 63111d410a6eSMark Fasheh goto out; 63121d410a6eSMark Fasheh 63131d410a6eSMark Fasheh ret = ocfs2_extent_map_get_blocks(inode, 63141d410a6eSMark Fasheh range_start >> sb->s_blocksize_bits, 63151d410a6eSMark Fasheh &phys, NULL, &ext_flags); 631660b11392SMark Fasheh if (ret) { 631760b11392SMark Fasheh mlog_errno(ret); 631860b11392SMark Fasheh goto out; 631960b11392SMark Fasheh } 632060b11392SMark Fasheh 63211d410a6eSMark Fasheh /* 63221d410a6eSMark Fasheh * Tail is a hole, or is marked unwritten. In either case, we 63231d410a6eSMark Fasheh * can count on read and write to return/push zero's. 63241d410a6eSMark Fasheh */ 63251d410a6eSMark Fasheh if (phys == 0 || ext_flags & OCFS2_EXT_UNWRITTEN) 632660b11392SMark Fasheh goto out; 632760b11392SMark Fasheh 63281d410a6eSMark Fasheh ret = ocfs2_grab_eof_pages(inode, range_start, range_end, pages, 63291d410a6eSMark Fasheh &numpages); 63301d410a6eSMark Fasheh if (ret) { 63311d410a6eSMark Fasheh mlog_errno(ret); 63321d410a6eSMark Fasheh goto out; 63331d410a6eSMark Fasheh } 63341d410a6eSMark Fasheh 633535edec1dSMark Fasheh ocfs2_zero_cluster_pages(inode, range_start, range_end, pages, 633635edec1dSMark Fasheh numpages, phys, handle); 633760b11392SMark Fasheh 633860b11392SMark Fasheh /* 633960b11392SMark Fasheh * Initiate writeout of the pages we zero'd here. We don't 634060b11392SMark Fasheh * wait on them - the truncate_inode_pages() call later will 634160b11392SMark Fasheh * do that for us. 634260b11392SMark Fasheh */ 634335edec1dSMark Fasheh ret = do_sync_mapping_range(inode->i_mapping, range_start, 634435edec1dSMark Fasheh range_end - 1, SYNC_FILE_RANGE_WRITE); 634560b11392SMark Fasheh if (ret) 634660b11392SMark Fasheh mlog_errno(ret); 634760b11392SMark Fasheh 634860b11392SMark Fasheh out: 634960b11392SMark Fasheh if (pages) 635060b11392SMark Fasheh kfree(pages); 635160b11392SMark Fasheh 635260b11392SMark Fasheh return ret; 635360b11392SMark Fasheh } 635460b11392SMark Fasheh 63551afc32b9SMark Fasheh static void ocfs2_zero_dinode_id2(struct inode *inode, struct ocfs2_dinode *di) 63561afc32b9SMark Fasheh { 63571afc32b9SMark Fasheh unsigned int blocksize = 1 << inode->i_sb->s_blocksize_bits; 63581afc32b9SMark Fasheh 63591afc32b9SMark Fasheh memset(&di->id2, 0, blocksize - offsetof(struct ocfs2_dinode, id2)); 63601afc32b9SMark Fasheh } 63611afc32b9SMark Fasheh 63625b6a3a2bSMark Fasheh void ocfs2_dinode_new_extent_list(struct inode *inode, 63635b6a3a2bSMark Fasheh struct ocfs2_dinode *di) 63645b6a3a2bSMark Fasheh { 63655b6a3a2bSMark Fasheh ocfs2_zero_dinode_id2(inode, di); 63665b6a3a2bSMark Fasheh di->id2.i_list.l_tree_depth = 0; 63675b6a3a2bSMark Fasheh di->id2.i_list.l_next_free_rec = 0; 63685b6a3a2bSMark Fasheh di->id2.i_list.l_count = cpu_to_le16(ocfs2_extent_recs_per_inode(inode->i_sb)); 63695b6a3a2bSMark Fasheh } 63705b6a3a2bSMark Fasheh 63711afc32b9SMark Fasheh void ocfs2_set_inode_data_inline(struct inode *inode, struct ocfs2_dinode *di) 63721afc32b9SMark Fasheh { 63731afc32b9SMark Fasheh struct ocfs2_inode_info *oi = OCFS2_I(inode); 63741afc32b9SMark Fasheh struct ocfs2_inline_data *idata = &di->id2.i_data; 63751afc32b9SMark Fasheh 63761afc32b9SMark Fasheh spin_lock(&oi->ip_lock); 63771afc32b9SMark Fasheh oi->ip_dyn_features |= OCFS2_INLINE_DATA_FL; 63781afc32b9SMark Fasheh di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features); 63791afc32b9SMark Fasheh spin_unlock(&oi->ip_lock); 63801afc32b9SMark Fasheh 63811afc32b9SMark Fasheh /* 63821afc32b9SMark Fasheh * We clear the entire i_data structure here so that all 63831afc32b9SMark Fasheh * fields can be properly initialized. 63841afc32b9SMark Fasheh */ 63851afc32b9SMark Fasheh ocfs2_zero_dinode_id2(inode, di); 63861afc32b9SMark Fasheh 63871afc32b9SMark Fasheh idata->id_count = cpu_to_le16(ocfs2_max_inline_data(inode->i_sb)); 63881afc32b9SMark Fasheh } 63891afc32b9SMark Fasheh 63901afc32b9SMark Fasheh int ocfs2_convert_inline_data_to_extents(struct inode *inode, 63911afc32b9SMark Fasheh struct buffer_head *di_bh) 63921afc32b9SMark Fasheh { 63931afc32b9SMark Fasheh int ret, i, has_data, num_pages = 0; 63941afc32b9SMark Fasheh handle_t *handle; 63951afc32b9SMark Fasheh u64 uninitialized_var(block); 63961afc32b9SMark Fasheh struct ocfs2_inode_info *oi = OCFS2_I(inode); 63971afc32b9SMark Fasheh struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); 63981afc32b9SMark Fasheh struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; 63991afc32b9SMark Fasheh struct ocfs2_alloc_context *data_ac = NULL; 64001afc32b9SMark Fasheh struct page **pages = NULL; 64011afc32b9SMark Fasheh loff_t end = osb->s_clustersize; 64021afc32b9SMark Fasheh 64031afc32b9SMark Fasheh has_data = i_size_read(inode) ? 1 : 0; 64041afc32b9SMark Fasheh 64051afc32b9SMark Fasheh if (has_data) { 64061afc32b9SMark Fasheh pages = kcalloc(ocfs2_pages_per_cluster(osb->sb), 64071afc32b9SMark Fasheh sizeof(struct page *), GFP_NOFS); 64081afc32b9SMark Fasheh if (pages == NULL) { 64091afc32b9SMark Fasheh ret = -ENOMEM; 64101afc32b9SMark Fasheh mlog_errno(ret); 64111afc32b9SMark Fasheh goto out; 64121afc32b9SMark Fasheh } 64131afc32b9SMark Fasheh 64141afc32b9SMark Fasheh ret = ocfs2_reserve_clusters(osb, 1, &data_ac); 64151afc32b9SMark Fasheh if (ret) { 64161afc32b9SMark Fasheh mlog_errno(ret); 64171afc32b9SMark Fasheh goto out; 64181afc32b9SMark Fasheh } 64191afc32b9SMark Fasheh } 64201afc32b9SMark Fasheh 64211afc32b9SMark Fasheh handle = ocfs2_start_trans(osb, OCFS2_INLINE_TO_EXTENTS_CREDITS); 64221afc32b9SMark Fasheh if (IS_ERR(handle)) { 64231afc32b9SMark Fasheh ret = PTR_ERR(handle); 64241afc32b9SMark Fasheh mlog_errno(ret); 64251afc32b9SMark Fasheh goto out_unlock; 64261afc32b9SMark Fasheh } 64271afc32b9SMark Fasheh 64281afc32b9SMark Fasheh ret = ocfs2_journal_access(handle, inode, di_bh, 64291afc32b9SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 64301afc32b9SMark Fasheh if (ret) { 64311afc32b9SMark Fasheh mlog_errno(ret); 64321afc32b9SMark Fasheh goto out_commit; 64331afc32b9SMark Fasheh } 64341afc32b9SMark Fasheh 64351afc32b9SMark Fasheh if (has_data) { 64361afc32b9SMark Fasheh u32 bit_off, num; 64371afc32b9SMark Fasheh unsigned int page_end; 64381afc32b9SMark Fasheh u64 phys; 64391afc32b9SMark Fasheh 64401afc32b9SMark Fasheh ret = ocfs2_claim_clusters(osb, handle, data_ac, 1, &bit_off, 64411afc32b9SMark Fasheh &num); 64421afc32b9SMark Fasheh if (ret) { 64431afc32b9SMark Fasheh mlog_errno(ret); 64441afc32b9SMark Fasheh goto out_commit; 64451afc32b9SMark Fasheh } 64461afc32b9SMark Fasheh 64471afc32b9SMark Fasheh /* 64481afc32b9SMark Fasheh * Save two copies, one for insert, and one that can 64491afc32b9SMark Fasheh * be changed by ocfs2_map_and_dirty_page() below. 64501afc32b9SMark Fasheh */ 64511afc32b9SMark Fasheh block = phys = ocfs2_clusters_to_blocks(inode->i_sb, bit_off); 64521afc32b9SMark Fasheh 64531afc32b9SMark Fasheh /* 64541afc32b9SMark Fasheh * Non sparse file systems zero on extend, so no need 64551afc32b9SMark Fasheh * to do that now. 64561afc32b9SMark Fasheh */ 64571afc32b9SMark Fasheh if (!ocfs2_sparse_alloc(osb) && 64581afc32b9SMark Fasheh PAGE_CACHE_SIZE < osb->s_clustersize) 64591afc32b9SMark Fasheh end = PAGE_CACHE_SIZE; 64601afc32b9SMark Fasheh 64611afc32b9SMark Fasheh ret = ocfs2_grab_eof_pages(inode, 0, end, pages, &num_pages); 64621afc32b9SMark Fasheh if (ret) { 64631afc32b9SMark Fasheh mlog_errno(ret); 64641afc32b9SMark Fasheh goto out_commit; 64651afc32b9SMark Fasheh } 64661afc32b9SMark Fasheh 64671afc32b9SMark Fasheh /* 64681afc32b9SMark Fasheh * This should populate the 1st page for us and mark 64691afc32b9SMark Fasheh * it up to date. 64701afc32b9SMark Fasheh */ 64711afc32b9SMark Fasheh ret = ocfs2_read_inline_data(inode, pages[0], di_bh); 64721afc32b9SMark Fasheh if (ret) { 64731afc32b9SMark Fasheh mlog_errno(ret); 64741afc32b9SMark Fasheh goto out_commit; 64751afc32b9SMark Fasheh } 64761afc32b9SMark Fasheh 64771afc32b9SMark Fasheh page_end = PAGE_CACHE_SIZE; 64781afc32b9SMark Fasheh if (PAGE_CACHE_SIZE > osb->s_clustersize) 64791afc32b9SMark Fasheh page_end = osb->s_clustersize; 64801afc32b9SMark Fasheh 64811afc32b9SMark Fasheh for (i = 0; i < num_pages; i++) 64821afc32b9SMark Fasheh ocfs2_map_and_dirty_page(inode, handle, 0, page_end, 64831afc32b9SMark Fasheh pages[i], i > 0, &phys); 64841afc32b9SMark Fasheh } 64851afc32b9SMark Fasheh 64861afc32b9SMark Fasheh spin_lock(&oi->ip_lock); 64871afc32b9SMark Fasheh oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL; 64881afc32b9SMark Fasheh di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features); 64891afc32b9SMark Fasheh spin_unlock(&oi->ip_lock); 64901afc32b9SMark Fasheh 64915b6a3a2bSMark Fasheh ocfs2_dinode_new_extent_list(inode, di); 64921afc32b9SMark Fasheh 64931afc32b9SMark Fasheh ocfs2_journal_dirty(handle, di_bh); 64941afc32b9SMark Fasheh 64951afc32b9SMark Fasheh if (has_data) { 64961afc32b9SMark Fasheh /* 64971afc32b9SMark Fasheh * An error at this point should be extremely rare. If 64981afc32b9SMark Fasheh * this proves to be false, we could always re-build 64991afc32b9SMark Fasheh * the in-inode data from our pages. 65001afc32b9SMark Fasheh */ 65011afc32b9SMark Fasheh ret = ocfs2_insert_extent(osb, handle, inode, di_bh, 6502*e7d4cb6bSTao Ma 0, block, 1, 0, 6503*e7d4cb6bSTao Ma NULL, OCFS2_DINODE_EXTENT); 65041afc32b9SMark Fasheh if (ret) { 65051afc32b9SMark Fasheh mlog_errno(ret); 65061afc32b9SMark Fasheh goto out_commit; 65071afc32b9SMark Fasheh } 65081afc32b9SMark Fasheh 65091afc32b9SMark Fasheh inode->i_blocks = ocfs2_inode_sector_count(inode); 65101afc32b9SMark Fasheh } 65111afc32b9SMark Fasheh 65121afc32b9SMark Fasheh out_commit: 65131afc32b9SMark Fasheh ocfs2_commit_trans(osb, handle); 65141afc32b9SMark Fasheh 65151afc32b9SMark Fasheh out_unlock: 65161afc32b9SMark Fasheh if (data_ac) 65171afc32b9SMark Fasheh ocfs2_free_alloc_context(data_ac); 65181afc32b9SMark Fasheh 65191afc32b9SMark Fasheh out: 65201afc32b9SMark Fasheh if (pages) { 65211afc32b9SMark Fasheh ocfs2_unlock_and_free_pages(pages, num_pages); 65221afc32b9SMark Fasheh kfree(pages); 65231afc32b9SMark Fasheh } 65241afc32b9SMark Fasheh 65251afc32b9SMark Fasheh return ret; 65261afc32b9SMark Fasheh } 65271afc32b9SMark Fasheh 6528ccd979bdSMark Fasheh /* 6529ccd979bdSMark Fasheh * It is expected, that by the time you call this function, 6530ccd979bdSMark Fasheh * inode->i_size and fe->i_size have been adjusted. 6531ccd979bdSMark Fasheh * 6532ccd979bdSMark Fasheh * WARNING: This will kfree the truncate context 6533ccd979bdSMark Fasheh */ 6534ccd979bdSMark Fasheh int ocfs2_commit_truncate(struct ocfs2_super *osb, 6535ccd979bdSMark Fasheh struct inode *inode, 6536ccd979bdSMark Fasheh struct buffer_head *fe_bh, 6537ccd979bdSMark Fasheh struct ocfs2_truncate_context *tc) 6538ccd979bdSMark Fasheh { 6539ccd979bdSMark Fasheh int status, i, credits, tl_sem = 0; 6540dcd0538fSMark Fasheh u32 clusters_to_del, new_highest_cpos, range; 6541ccd979bdSMark Fasheh struct ocfs2_extent_list *el; 65421fabe148SMark Fasheh handle_t *handle = NULL; 6543ccd979bdSMark Fasheh struct inode *tl_inode = osb->osb_tl_inode; 6544dcd0538fSMark Fasheh struct ocfs2_path *path = NULL; 6545*e7d4cb6bSTao Ma struct ocfs2_dinode *di = (struct ocfs2_dinode *)fe_bh->b_data; 6546ccd979bdSMark Fasheh 6547ccd979bdSMark Fasheh mlog_entry_void(); 6548ccd979bdSMark Fasheh 6549dcd0538fSMark Fasheh new_highest_cpos = ocfs2_clusters_for_bytes(osb->sb, 6550ccd979bdSMark Fasheh i_size_read(inode)); 6551ccd979bdSMark Fasheh 6552*e7d4cb6bSTao Ma path = ocfs2_new_path(fe_bh, &di->id2.i_list); 6553dcd0538fSMark Fasheh if (!path) { 6554dcd0538fSMark Fasheh status = -ENOMEM; 6555ccd979bdSMark Fasheh mlog_errno(status); 6556ccd979bdSMark Fasheh goto bail; 6557ccd979bdSMark Fasheh } 655883418978SMark Fasheh 655983418978SMark Fasheh ocfs2_extent_map_trunc(inode, new_highest_cpos); 656083418978SMark Fasheh 6561dcd0538fSMark Fasheh start: 6562dcd0538fSMark Fasheh /* 65633a0782d0SMark Fasheh * Check that we still have allocation to delete. 65643a0782d0SMark Fasheh */ 65653a0782d0SMark Fasheh if (OCFS2_I(inode)->ip_clusters == 0) { 65663a0782d0SMark Fasheh status = 0; 65673a0782d0SMark Fasheh goto bail; 65683a0782d0SMark Fasheh } 65693a0782d0SMark Fasheh 65703a0782d0SMark Fasheh /* 6571dcd0538fSMark Fasheh * Truncate always works against the rightmost tree branch. 6572dcd0538fSMark Fasheh */ 6573dcd0538fSMark Fasheh status = ocfs2_find_path(inode, path, UINT_MAX); 6574dcd0538fSMark Fasheh if (status) { 6575dcd0538fSMark Fasheh mlog_errno(status); 6576ccd979bdSMark Fasheh goto bail; 6577ccd979bdSMark Fasheh } 6578ccd979bdSMark Fasheh 6579dcd0538fSMark Fasheh mlog(0, "inode->ip_clusters = %u, tree_depth = %u\n", 6580dcd0538fSMark Fasheh OCFS2_I(inode)->ip_clusters, path->p_tree_depth); 6581dcd0538fSMark Fasheh 6582dcd0538fSMark Fasheh /* 6583dcd0538fSMark Fasheh * By now, el will point to the extent list on the bottom most 6584dcd0538fSMark Fasheh * portion of this tree. Only the tail record is considered in 6585dcd0538fSMark Fasheh * each pass. 6586dcd0538fSMark Fasheh * 6587dcd0538fSMark Fasheh * We handle the following cases, in order: 6588dcd0538fSMark Fasheh * - empty extent: delete the remaining branch 6589dcd0538fSMark Fasheh * - remove the entire record 6590dcd0538fSMark Fasheh * - remove a partial record 6591dcd0538fSMark Fasheh * - no record needs to be removed (truncate has completed) 6592dcd0538fSMark Fasheh */ 6593dcd0538fSMark Fasheh el = path_leaf_el(path); 65943a0782d0SMark Fasheh if (le16_to_cpu(el->l_next_free_rec) == 0) { 65953a0782d0SMark Fasheh ocfs2_error(inode->i_sb, 65963a0782d0SMark Fasheh "Inode %llu has empty extent block at %llu\n", 65973a0782d0SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, 65983a0782d0SMark Fasheh (unsigned long long)path_leaf_bh(path)->b_blocknr); 65993a0782d0SMark Fasheh status = -EROFS; 66003a0782d0SMark Fasheh goto bail; 66013a0782d0SMark Fasheh } 66023a0782d0SMark Fasheh 6603ccd979bdSMark Fasheh i = le16_to_cpu(el->l_next_free_rec) - 1; 6604dcd0538fSMark Fasheh range = le32_to_cpu(el->l_recs[i].e_cpos) + 6605e48edee2SMark Fasheh ocfs2_rec_clusters(el, &el->l_recs[i]); 6606dcd0538fSMark Fasheh if (i == 0 && ocfs2_is_empty_extent(&el->l_recs[i])) { 6607dcd0538fSMark Fasheh clusters_to_del = 0; 6608dcd0538fSMark Fasheh } else if (le32_to_cpu(el->l_recs[i].e_cpos) >= new_highest_cpos) { 6609e48edee2SMark Fasheh clusters_to_del = ocfs2_rec_clusters(el, &el->l_recs[i]); 6610dcd0538fSMark Fasheh } else if (range > new_highest_cpos) { 6611e48edee2SMark Fasheh clusters_to_del = (ocfs2_rec_clusters(el, &el->l_recs[i]) + 6612ccd979bdSMark Fasheh le32_to_cpu(el->l_recs[i].e_cpos)) - 6613dcd0538fSMark Fasheh new_highest_cpos; 6614dcd0538fSMark Fasheh } else { 6615dcd0538fSMark Fasheh status = 0; 6616dcd0538fSMark Fasheh goto bail; 6617dcd0538fSMark Fasheh } 6618ccd979bdSMark Fasheh 6619dcd0538fSMark Fasheh mlog(0, "clusters_to_del = %u in this pass, tail blk=%llu\n", 6620dcd0538fSMark Fasheh clusters_to_del, (unsigned long long)path_leaf_bh(path)->b_blocknr); 6621dcd0538fSMark Fasheh 66221b1dcc1bSJes Sorensen mutex_lock(&tl_inode->i_mutex); 6623ccd979bdSMark Fasheh tl_sem = 1; 6624ccd979bdSMark Fasheh /* ocfs2_truncate_log_needs_flush guarantees us at least one 6625ccd979bdSMark Fasheh * record is free for use. If there isn't any, we flush to get 6626ccd979bdSMark Fasheh * an empty truncate log. */ 6627ccd979bdSMark Fasheh if (ocfs2_truncate_log_needs_flush(osb)) { 6628ccd979bdSMark Fasheh status = __ocfs2_flush_truncate_log(osb); 6629ccd979bdSMark Fasheh if (status < 0) { 6630ccd979bdSMark Fasheh mlog_errno(status); 6631ccd979bdSMark Fasheh goto bail; 6632ccd979bdSMark Fasheh } 6633ccd979bdSMark Fasheh } 6634ccd979bdSMark Fasheh 6635ccd979bdSMark Fasheh credits = ocfs2_calc_tree_trunc_credits(osb->sb, clusters_to_del, 6636dcd0538fSMark Fasheh (struct ocfs2_dinode *)fe_bh->b_data, 6637dcd0538fSMark Fasheh el); 663865eff9ccSMark Fasheh handle = ocfs2_start_trans(osb, credits); 6639ccd979bdSMark Fasheh if (IS_ERR(handle)) { 6640ccd979bdSMark Fasheh status = PTR_ERR(handle); 6641ccd979bdSMark Fasheh handle = NULL; 6642ccd979bdSMark Fasheh mlog_errno(status); 6643ccd979bdSMark Fasheh goto bail; 6644ccd979bdSMark Fasheh } 6645ccd979bdSMark Fasheh 6646dcd0538fSMark Fasheh status = ocfs2_do_truncate(osb, clusters_to_del, inode, fe_bh, handle, 6647dcd0538fSMark Fasheh tc, path); 6648ccd979bdSMark Fasheh if (status < 0) { 6649ccd979bdSMark Fasheh mlog_errno(status); 6650ccd979bdSMark Fasheh goto bail; 6651ccd979bdSMark Fasheh } 6652ccd979bdSMark Fasheh 66531b1dcc1bSJes Sorensen mutex_unlock(&tl_inode->i_mutex); 6654ccd979bdSMark Fasheh tl_sem = 0; 6655ccd979bdSMark Fasheh 665602dc1af4SMark Fasheh ocfs2_commit_trans(osb, handle); 6657ccd979bdSMark Fasheh handle = NULL; 6658ccd979bdSMark Fasheh 6659dcd0538fSMark Fasheh ocfs2_reinit_path(path, 1); 6660dcd0538fSMark Fasheh 6661dcd0538fSMark Fasheh /* 66623a0782d0SMark Fasheh * The check above will catch the case where we've truncated 66633a0782d0SMark Fasheh * away all allocation. 6664dcd0538fSMark Fasheh */ 6665ccd979bdSMark Fasheh goto start; 66663a0782d0SMark Fasheh 6667ccd979bdSMark Fasheh bail: 6668ccd979bdSMark Fasheh 6669ccd979bdSMark Fasheh ocfs2_schedule_truncate_log_flush(osb, 1); 6670ccd979bdSMark Fasheh 6671ccd979bdSMark Fasheh if (tl_sem) 66721b1dcc1bSJes Sorensen mutex_unlock(&tl_inode->i_mutex); 6673ccd979bdSMark Fasheh 6674ccd979bdSMark Fasheh if (handle) 667502dc1af4SMark Fasheh ocfs2_commit_trans(osb, handle); 6676ccd979bdSMark Fasheh 667759a5e416SMark Fasheh ocfs2_run_deallocs(osb, &tc->tc_dealloc); 667859a5e416SMark Fasheh 6679dcd0538fSMark Fasheh ocfs2_free_path(path); 6680ccd979bdSMark Fasheh 6681ccd979bdSMark Fasheh /* This will drop the ext_alloc cluster lock for us */ 6682ccd979bdSMark Fasheh ocfs2_free_truncate_context(tc); 6683ccd979bdSMark Fasheh 6684ccd979bdSMark Fasheh mlog_exit(status); 6685ccd979bdSMark Fasheh return status; 6686ccd979bdSMark Fasheh } 6687ccd979bdSMark Fasheh 6688ccd979bdSMark Fasheh /* 668959a5e416SMark Fasheh * Expects the inode to already be locked. 6690ccd979bdSMark Fasheh */ 6691ccd979bdSMark Fasheh int ocfs2_prepare_truncate(struct ocfs2_super *osb, 6692ccd979bdSMark Fasheh struct inode *inode, 6693ccd979bdSMark Fasheh struct buffer_head *fe_bh, 6694ccd979bdSMark Fasheh struct ocfs2_truncate_context **tc) 6695ccd979bdSMark Fasheh { 669659a5e416SMark Fasheh int status; 6697ccd979bdSMark Fasheh unsigned int new_i_clusters; 6698ccd979bdSMark Fasheh struct ocfs2_dinode *fe; 6699ccd979bdSMark Fasheh struct ocfs2_extent_block *eb; 6700ccd979bdSMark Fasheh struct buffer_head *last_eb_bh = NULL; 6701ccd979bdSMark Fasheh 6702ccd979bdSMark Fasheh mlog_entry_void(); 6703ccd979bdSMark Fasheh 6704ccd979bdSMark Fasheh *tc = NULL; 6705ccd979bdSMark Fasheh 6706ccd979bdSMark Fasheh new_i_clusters = ocfs2_clusters_for_bytes(osb->sb, 6707ccd979bdSMark Fasheh i_size_read(inode)); 6708ccd979bdSMark Fasheh fe = (struct ocfs2_dinode *) fe_bh->b_data; 6709ccd979bdSMark Fasheh 6710ccd979bdSMark Fasheh mlog(0, "fe->i_clusters = %u, new_i_clusters = %u, fe->i_size =" 67111ca1a111SMark Fasheh "%llu\n", le32_to_cpu(fe->i_clusters), new_i_clusters, 67121ca1a111SMark Fasheh (unsigned long long)le64_to_cpu(fe->i_size)); 6713ccd979bdSMark Fasheh 6714cd861280SRobert P. J. Day *tc = kzalloc(sizeof(struct ocfs2_truncate_context), GFP_KERNEL); 6715ccd979bdSMark Fasheh if (!(*tc)) { 6716ccd979bdSMark Fasheh status = -ENOMEM; 6717ccd979bdSMark Fasheh mlog_errno(status); 6718ccd979bdSMark Fasheh goto bail; 6719ccd979bdSMark Fasheh } 672059a5e416SMark Fasheh ocfs2_init_dealloc_ctxt(&(*tc)->tc_dealloc); 6721ccd979bdSMark Fasheh 6722ccd979bdSMark Fasheh if (fe->id2.i_list.l_tree_depth) { 6723ccd979bdSMark Fasheh status = ocfs2_read_block(osb, le64_to_cpu(fe->i_last_eb_blk), 6724ccd979bdSMark Fasheh &last_eb_bh, OCFS2_BH_CACHED, inode); 6725ccd979bdSMark Fasheh if (status < 0) { 6726ccd979bdSMark Fasheh mlog_errno(status); 6727ccd979bdSMark Fasheh goto bail; 6728ccd979bdSMark Fasheh } 6729ccd979bdSMark Fasheh eb = (struct ocfs2_extent_block *) last_eb_bh->b_data; 6730ccd979bdSMark Fasheh if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) { 6731ccd979bdSMark Fasheh OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb); 6732ccd979bdSMark Fasheh 6733ccd979bdSMark Fasheh brelse(last_eb_bh); 6734ccd979bdSMark Fasheh status = -EIO; 6735ccd979bdSMark Fasheh goto bail; 6736ccd979bdSMark Fasheh } 6737ccd979bdSMark Fasheh } 6738ccd979bdSMark Fasheh 6739ccd979bdSMark Fasheh (*tc)->tc_last_eb_bh = last_eb_bh; 6740ccd979bdSMark Fasheh 6741ccd979bdSMark Fasheh status = 0; 6742ccd979bdSMark Fasheh bail: 6743ccd979bdSMark Fasheh if (status < 0) { 6744ccd979bdSMark Fasheh if (*tc) 6745ccd979bdSMark Fasheh ocfs2_free_truncate_context(*tc); 6746ccd979bdSMark Fasheh *tc = NULL; 6747ccd979bdSMark Fasheh } 6748ccd979bdSMark Fasheh mlog_exit_void(); 6749ccd979bdSMark Fasheh return status; 6750ccd979bdSMark Fasheh } 6751ccd979bdSMark Fasheh 67521afc32b9SMark Fasheh /* 67531afc32b9SMark Fasheh * 'start' is inclusive, 'end' is not. 67541afc32b9SMark Fasheh */ 67551afc32b9SMark Fasheh int ocfs2_truncate_inline(struct inode *inode, struct buffer_head *di_bh, 67561afc32b9SMark Fasheh unsigned int start, unsigned int end, int trunc) 67571afc32b9SMark Fasheh { 67581afc32b9SMark Fasheh int ret; 67591afc32b9SMark Fasheh unsigned int numbytes; 67601afc32b9SMark Fasheh handle_t *handle; 67611afc32b9SMark Fasheh struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); 67621afc32b9SMark Fasheh struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; 67631afc32b9SMark Fasheh struct ocfs2_inline_data *idata = &di->id2.i_data; 67641afc32b9SMark Fasheh 67651afc32b9SMark Fasheh if (end > i_size_read(inode)) 67661afc32b9SMark Fasheh end = i_size_read(inode); 67671afc32b9SMark Fasheh 67681afc32b9SMark Fasheh BUG_ON(start >= end); 67691afc32b9SMark Fasheh 67701afc32b9SMark Fasheh if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) || 67711afc32b9SMark Fasheh !(le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_DATA_FL) || 67721afc32b9SMark Fasheh !ocfs2_supports_inline_data(osb)) { 67731afc32b9SMark Fasheh ocfs2_error(inode->i_sb, 67741afc32b9SMark Fasheh "Inline data flags for inode %llu don't agree! " 67751afc32b9SMark Fasheh "Disk: 0x%x, Memory: 0x%x, Superblock: 0x%x\n", 67761afc32b9SMark Fasheh (unsigned long long)OCFS2_I(inode)->ip_blkno, 67771afc32b9SMark Fasheh le16_to_cpu(di->i_dyn_features), 67781afc32b9SMark Fasheh OCFS2_I(inode)->ip_dyn_features, 67791afc32b9SMark Fasheh osb->s_feature_incompat); 67801afc32b9SMark Fasheh ret = -EROFS; 67811afc32b9SMark Fasheh goto out; 67821afc32b9SMark Fasheh } 67831afc32b9SMark Fasheh 67841afc32b9SMark Fasheh handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); 67851afc32b9SMark Fasheh if (IS_ERR(handle)) { 67861afc32b9SMark Fasheh ret = PTR_ERR(handle); 67871afc32b9SMark Fasheh mlog_errno(ret); 67881afc32b9SMark Fasheh goto out; 67891afc32b9SMark Fasheh } 67901afc32b9SMark Fasheh 67911afc32b9SMark Fasheh ret = ocfs2_journal_access(handle, inode, di_bh, 67921afc32b9SMark Fasheh OCFS2_JOURNAL_ACCESS_WRITE); 67931afc32b9SMark Fasheh if (ret) { 67941afc32b9SMark Fasheh mlog_errno(ret); 67951afc32b9SMark Fasheh goto out_commit; 67961afc32b9SMark Fasheh } 67971afc32b9SMark Fasheh 67981afc32b9SMark Fasheh numbytes = end - start; 67991afc32b9SMark Fasheh memset(idata->id_data + start, 0, numbytes); 68001afc32b9SMark Fasheh 68011afc32b9SMark Fasheh /* 68021afc32b9SMark Fasheh * No need to worry about the data page here - it's been 68031afc32b9SMark Fasheh * truncated already and inline data doesn't need it for 68041afc32b9SMark Fasheh * pushing zero's to disk, so we'll let readpage pick it up 68051afc32b9SMark Fasheh * later. 68061afc32b9SMark Fasheh */ 68071afc32b9SMark Fasheh if (trunc) { 68081afc32b9SMark Fasheh i_size_write(inode, start); 68091afc32b9SMark Fasheh di->i_size = cpu_to_le64(start); 68101afc32b9SMark Fasheh } 68111afc32b9SMark Fasheh 68121afc32b9SMark Fasheh inode->i_blocks = ocfs2_inode_sector_count(inode); 68131afc32b9SMark Fasheh inode->i_ctime = inode->i_mtime = CURRENT_TIME; 68141afc32b9SMark Fasheh 68151afc32b9SMark Fasheh di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec); 68161afc32b9SMark Fasheh di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec); 68171afc32b9SMark Fasheh 68181afc32b9SMark Fasheh ocfs2_journal_dirty(handle, di_bh); 68191afc32b9SMark Fasheh 68201afc32b9SMark Fasheh out_commit: 68211afc32b9SMark Fasheh ocfs2_commit_trans(osb, handle); 68221afc32b9SMark Fasheh 68231afc32b9SMark Fasheh out: 68241afc32b9SMark Fasheh return ret; 68251afc32b9SMark Fasheh } 68261afc32b9SMark Fasheh 6827ccd979bdSMark Fasheh static void ocfs2_free_truncate_context(struct ocfs2_truncate_context *tc) 6828ccd979bdSMark Fasheh { 682959a5e416SMark Fasheh /* 683059a5e416SMark Fasheh * The caller is responsible for completing deallocation 683159a5e416SMark Fasheh * before freeing the context. 683259a5e416SMark Fasheh */ 683359a5e416SMark Fasheh if (tc->tc_dealloc.c_first_suballocator != NULL) 683459a5e416SMark Fasheh mlog(ML_NOTICE, 683559a5e416SMark Fasheh "Truncate completion has non-empty dealloc context\n"); 6836ccd979bdSMark Fasheh 6837ccd979bdSMark Fasheh if (tc->tc_last_eb_bh) 6838ccd979bdSMark Fasheh brelse(tc->tc_last_eb_bh); 6839ccd979bdSMark Fasheh 6840ccd979bdSMark Fasheh kfree(tc); 6841ccd979bdSMark Fasheh } 6842