1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * In-memory extent map for OCFS2. Man, this code was prettier in
9 * Copyright (C) 2004 Oracle. All rights reserved.
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public
13 * License, version 2, as published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
27 #include <linux/init.h>
28 #include <linux/types.h>
29 #include <linux/slab.h>
30 #include <linux/rbtree.h>
32 #define MLOG_MASK_PREFIX ML_EXTENT_MAP
33 #include <cluster/masklog.h>
37 #include "extent_map.h"
41 #include "buffer_head_io.h"
46 * Our headers are so bad that struct ocfs2_extent_map is in ocfs.h
49 struct ocfs2_extent_map_entry {
50 struct rb_node e_node;
52 struct ocfs2_extent_rec e_rec;
55 struct ocfs2_em_insert_context {
58 struct ocfs2_extent_map_entry *new_ent;
59 struct ocfs2_extent_map_entry *old_ent;
60 struct ocfs2_extent_map_entry *left_ent;
61 struct ocfs2_extent_map_entry *right_ent;
64 static kmem_cache_t *ocfs2_em_ent_cachep = NULL;
67 static struct ocfs2_extent_map_entry *
68 ocfs2_extent_map_lookup(struct ocfs2_extent_map *em,
69 u32 cpos, u32 clusters,
70 struct rb_node ***ret_p,
71 struct rb_node **ret_parent);
72 static int ocfs2_extent_map_insert(struct inode *inode,
73 struct ocfs2_extent_rec *rec,
75 static int ocfs2_extent_map_insert_entry(struct ocfs2_extent_map *em,
76 struct ocfs2_extent_map_entry *ent);
77 static int ocfs2_extent_map_find_leaf(struct inode *inode,
78 u32 cpos, u32 clusters,
79 struct ocfs2_extent_list *el);
80 static int ocfs2_extent_map_lookup_read(struct inode *inode,
81 u32 cpos, u32 clusters,
82 struct ocfs2_extent_map_entry **ret_ent);
83 static int ocfs2_extent_map_try_insert(struct inode *inode,
84 struct ocfs2_extent_rec *rec,
86 struct ocfs2_em_insert_context *ctxt);
88 /* returns 1 only if the rec contains all the given clusters -- that is that
89 * rec's cpos is <= the cluster cpos and that the rec endpoint (cpos +
90 * clusters) is >= the argument's endpoint */
91 static int ocfs2_extent_rec_contains_clusters(struct ocfs2_extent_rec *rec,
92 u32 cpos, u32 clusters)
94 if (le32_to_cpu(rec->e_cpos) > cpos)
96 if (cpos + clusters > le32_to_cpu(rec->e_cpos) +
97 le32_to_cpu(rec->e_clusters))
104 * Find an entry in the tree that intersects the region passed in.
105 * Note that this will find straddled intervals, it is up to the
106 * callers to enforce any boundary conditions.
108 * Callers must hold ip_lock. This lookup is not guaranteed to return
109 * a tree_depth 0 match, and as such can race inserts if the lock
112 * The rb_node garbage lets insertion share the search. Trivial
115 static struct ocfs2_extent_map_entry *
116 ocfs2_extent_map_lookup(struct ocfs2_extent_map *em,
117 u32 cpos, u32 clusters,
118 struct rb_node ***ret_p,
119 struct rb_node **ret_parent)
121 struct rb_node **p = &em->em_extents.rb_node;
122 struct rb_node *parent = NULL;
123 struct ocfs2_extent_map_entry *ent = NULL;
128 ent = rb_entry(parent, struct ocfs2_extent_map_entry,
130 if ((cpos + clusters) <= le32_to_cpu(ent->e_rec.e_cpos)) {
133 } else if (cpos >= (le32_to_cpu(ent->e_rec.e_cpos) +
134 le32_to_cpu(ent->e_rec.e_clusters))) {
143 if (ret_parent != NULL)
144 *ret_parent = parent;
149 * Find the leaf containing the interval we want. While we're on our
150 * way down the tree, fill in every record we see at any depth, because
151 * we might want it later.
153 * Note that this code is run without ip_lock. That's because it
154 * sleeps while reading. If someone is also filling the extent list at
155 * the same time we are, we might have to restart.
157 static int ocfs2_extent_map_find_leaf(struct inode *inode,
158 u32 cpos, u32 clusters,
159 struct ocfs2_extent_list *el)
162 struct buffer_head *eb_bh = NULL;
165 struct ocfs2_extent_block *eb;
166 struct ocfs2_extent_rec *rec;
169 * The bh data containing the el cannot change here, because
170 * we hold alloc_sem. So we can do this without other
173 while (el->l_tree_depth)
176 for (i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
177 rec = &el->l_recs[i];
178 rec_end = (le32_to_cpu(rec->e_cpos) +
179 le32_to_cpu(rec->e_clusters));
182 if (rec_end > OCFS2_I(inode)->ip_clusters) {
187 if (rec_end <= cpos) {
188 ret = ocfs2_extent_map_insert(inode, rec,
189 le16_to_cpu(el->l_tree_depth));
190 if (ret && (ret != -EEXIST)) {
196 if ((cpos + clusters) <= le32_to_cpu(rec->e_cpos)) {
197 ret = ocfs2_extent_map_insert(inode, rec,
198 le16_to_cpu(el->l_tree_depth));
199 if (ret && (ret != -EEXIST)) {
207 * We've found a record that matches our
208 * interval. We don't insert it because we're
209 * about to traverse it.
212 /* Check to see if we're stradling */
214 if (!ocfs2_extent_rec_contains_clusters(rec,
222 * If we've already found a record, the el has
223 * two records covering the same interval.
232 blkno = le64_to_cpu(rec->e_blkno);
236 * We don't support holes, and we're still up
237 * in the branches, so we'd better have found someone
249 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb),
250 blkno, &eb_bh, OCFS2_BH_CACHED,
256 eb = (struct ocfs2_extent_block *)eb_bh->b_data;
257 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
258 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
265 BUG_ON(el->l_tree_depth);
267 for (i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
268 rec = &el->l_recs[i];
269 ret = ocfs2_extent_map_insert(inode, rec,
270 le16_to_cpu(el->l_tree_depth));
287 * This lookup actually will read from disk. It has one invariant:
288 * It will never re-traverse blocks. This means that all inserts should
289 * be new regions or more granular regions (both allowed by insert).
291 static int ocfs2_extent_map_lookup_read(struct inode *inode,
294 struct ocfs2_extent_map_entry **ret_ent)
298 struct ocfs2_extent_map *em = &OCFS2_I(inode)->ip_map;
299 struct ocfs2_extent_map_entry *ent;
300 struct buffer_head *bh = NULL;
301 struct ocfs2_extent_block *eb;
302 struct ocfs2_dinode *di;
303 struct ocfs2_extent_list *el;
305 spin_lock(&OCFS2_I(inode)->ip_lock);
306 ent = ocfs2_extent_map_lookup(em, cpos, clusters, NULL, NULL);
308 if (!ent->e_tree_depth) {
309 spin_unlock(&OCFS2_I(inode)->ip_lock);
313 blkno = le64_to_cpu(ent->e_rec.e_blkno);
314 spin_unlock(&OCFS2_I(inode)->ip_lock);
316 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb), blkno, &bh,
317 OCFS2_BH_CACHED, inode);
324 eb = (struct ocfs2_extent_block *)bh->b_data;
325 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
326 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
332 spin_unlock(&OCFS2_I(inode)->ip_lock);
334 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb),
335 OCFS2_I(inode)->ip_blkno, &bh,
336 OCFS2_BH_CACHED, inode);
343 di = (struct ocfs2_dinode *)bh->b_data;
344 if (!OCFS2_IS_VALID_DINODE(di)) {
346 OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, di);
349 el = &di->id2.i_list;
352 ret = ocfs2_extent_map_find_leaf(inode, cpos, clusters, el);
359 ent = ocfs2_extent_map_lookup(em, cpos, clusters, NULL, NULL);
366 /* FIXME: Make sure this isn't a corruption */
367 BUG_ON(ent->e_tree_depth);
375 * Callers must hold ip_lock. This can insert pieces of the tree,
376 * thus racing lookup if the lock weren't held.
378 static int ocfs2_extent_map_insert_entry(struct ocfs2_extent_map *em,
379 struct ocfs2_extent_map_entry *ent)
381 struct rb_node **p, *parent;
382 struct ocfs2_extent_map_entry *old_ent;
384 old_ent = ocfs2_extent_map_lookup(em, le32_to_cpu(ent->e_rec.e_cpos),
385 le32_to_cpu(ent->e_rec.e_clusters),
390 rb_link_node(&ent->e_node, parent, p);
391 rb_insert_color(&ent->e_node, &em->em_extents);
398 * Simple rule: on any return code other than -EAGAIN, anything left
399 * in the insert_context will be freed.
401 static int ocfs2_extent_map_try_insert(struct inode *inode,
402 struct ocfs2_extent_rec *rec,
404 struct ocfs2_em_insert_context *ctxt)
407 struct ocfs2_extent_map *em = &OCFS2_I(inode)->ip_map;
408 struct ocfs2_extent_map_entry *old_ent;
411 ctxt->need_right = 0;
412 ctxt->old_ent = NULL;
414 spin_lock(&OCFS2_I(inode)->ip_lock);
415 ret = ocfs2_extent_map_insert_entry(em, ctxt->new_ent);
417 ctxt->new_ent = NULL;
421 old_ent = ocfs2_extent_map_lookup(em, le32_to_cpu(rec->e_cpos),
422 le32_to_cpu(rec->e_clusters), NULL,
428 if (old_ent->e_tree_depth < tree_depth)
431 if (old_ent->e_tree_depth == tree_depth) {
432 if (!memcmp(rec, &old_ent->e_rec,
433 sizeof(struct ocfs2_extent_rec)))
436 /* FIXME: Should this be ESRCH/EBADR??? */
441 * We do it in this order specifically so that no actual tree
442 * changes occur until we have all the pieces we need. We
443 * don't want malloc failures to leave an inconsistent tree.
444 * Whenever we drop the lock, another process could be
445 * inserting. Also note that, if another process just beat us
446 * to an insert, we might not need the same pieces we needed
447 * the first go round. In the end, the pieces we need will
448 * be used, and the pieces we don't will be freed.
450 ctxt->need_left = !!(le32_to_cpu(rec->e_cpos) >
451 le32_to_cpu(old_ent->e_rec.e_cpos));
452 ctxt->need_right = !!((le32_to_cpu(old_ent->e_rec.e_cpos) +
453 le32_to_cpu(old_ent->e_rec.e_clusters)) >
454 (le32_to_cpu(rec->e_cpos) + le32_to_cpu(rec->e_clusters)));
456 if (ctxt->need_left) {
459 *(ctxt->left_ent) = *old_ent;
460 ctxt->left_ent->e_rec.e_clusters =
461 cpu_to_le32(le32_to_cpu(rec->e_cpos) -
462 le32_to_cpu(ctxt->left_ent->e_rec.e_cpos));
464 if (ctxt->need_right) {
465 if (!ctxt->right_ent)
467 *(ctxt->right_ent) = *old_ent;
468 ctxt->right_ent->e_rec.e_cpos =
469 cpu_to_le32(le32_to_cpu(rec->e_cpos) +
470 le32_to_cpu(rec->e_clusters));
471 ctxt->right_ent->e_rec.e_clusters =
472 cpu_to_le32((le32_to_cpu(old_ent->e_rec.e_cpos) +
473 le32_to_cpu(old_ent->e_rec.e_clusters)) -
474 le32_to_cpu(ctxt->right_ent->e_rec.e_cpos));
477 rb_erase(&old_ent->e_node, &em->em_extents);
478 /* Now that he's erased, set him up for deletion */
479 ctxt->old_ent = old_ent;
481 if (ctxt->need_left) {
482 ret = ocfs2_extent_map_insert_entry(em,
486 ctxt->left_ent = NULL;
489 if (ctxt->need_right) {
490 ret = ocfs2_extent_map_insert_entry(em,
494 ctxt->right_ent = NULL;
497 ret = ocfs2_extent_map_insert_entry(em, ctxt->new_ent);
500 ctxt->new_ent = NULL;
503 spin_unlock(&OCFS2_I(inode)->ip_lock);
509 static int ocfs2_extent_map_insert(struct inode *inode,
510 struct ocfs2_extent_rec *rec,
514 struct ocfs2_em_insert_context ctxt = {0, };
516 if ((le32_to_cpu(rec->e_cpos) + le32_to_cpu(rec->e_clusters)) >
517 OCFS2_I(inode)->ip_map.em_clusters) {
523 /* Zero e_clusters means a truncated tail record. It better be EOF */
524 if (!rec->e_clusters) {
525 if ((le32_to_cpu(rec->e_cpos) + le32_to_cpu(rec->e_clusters)) !=
526 OCFS2_I(inode)->ip_map.em_clusters) {
532 /* Ignore the truncated tail */
537 ctxt.new_ent = kmem_cache_alloc(ocfs2_em_ent_cachep,
544 ctxt.new_ent->e_rec = *rec;
545 ctxt.new_ent->e_tree_depth = tree_depth;
549 if (ctxt.need_left && !ctxt.left_ent) {
551 kmem_cache_alloc(ocfs2_em_ent_cachep,
556 if (ctxt.need_right && !ctxt.right_ent) {
558 kmem_cache_alloc(ocfs2_em_ent_cachep,
564 ret = ocfs2_extent_map_try_insert(inode, rec,
566 } while (ret == -EAGAIN);
572 kmem_cache_free(ocfs2_em_ent_cachep, ctxt.left_ent);
574 kmem_cache_free(ocfs2_em_ent_cachep, ctxt.right_ent);
576 kmem_cache_free(ocfs2_em_ent_cachep, ctxt.old_ent);
578 kmem_cache_free(ocfs2_em_ent_cachep, ctxt.new_ent);
584 * Append this record to the tail of the extent map. It must be
585 * tree_depth 0. The record might be an extension of an existing
586 * record, and as such that needs to be handled. eg:
588 * Existing record in the extent map:
590 * cpos = 10, len = 10
595 * cpos = 10, len = 20
596 * |------------------|
598 * The passed record is the new on-disk record. The new_clusters value
599 * is how many clusters were added to the file. If the append is a
600 * contiguous append, the new_clusters has been added to
601 * rec->e_clusters. If the append is an entirely new extent, then
602 * rec->e_clusters is == new_clusters.
604 int ocfs2_extent_map_append(struct inode *inode,
605 struct ocfs2_extent_rec *rec,
609 struct ocfs2_extent_map *em = &OCFS2_I(inode)->ip_map;
610 struct ocfs2_extent_map_entry *ent;
611 struct ocfs2_extent_rec *old;
613 BUG_ON(!new_clusters);
614 BUG_ON(le32_to_cpu(rec->e_clusters) < new_clusters);
616 if (em->em_clusters < OCFS2_I(inode)->ip_clusters) {
618 * Size changed underneath us on disk. Drop any
619 * straddling records and update our idea of
622 ocfs2_extent_map_drop(inode, em->em_clusters - 1);
623 em->em_clusters = OCFS2_I(inode)->ip_clusters;
626 mlog_bug_on_msg((le32_to_cpu(rec->e_cpos) +
627 le32_to_cpu(rec->e_clusters)) !=
628 (em->em_clusters + new_clusters),
630 "rec->e_cpos = %u + rec->e_clusters = %u = %u\n"
631 "em->em_clusters = %u + new_clusters = %u = %u\n",
632 OCFS2_I(inode)->ip_blkno,
633 le32_to_cpu(rec->e_cpos), le32_to_cpu(rec->e_clusters),
634 le32_to_cpu(rec->e_cpos) + le32_to_cpu(rec->e_clusters),
635 em->em_clusters, new_clusters,
636 em->em_clusters + new_clusters);
638 em->em_clusters += new_clusters;
641 if (le32_to_cpu(rec->e_clusters) > new_clusters) {
642 /* This is a contiguous append */
643 ent = ocfs2_extent_map_lookup(em, le32_to_cpu(rec->e_cpos), 1,
647 BUG_ON((le32_to_cpu(rec->e_cpos) +
648 le32_to_cpu(rec->e_clusters)) !=
649 (le32_to_cpu(old->e_cpos) +
650 le32_to_cpu(old->e_clusters) +
652 if (ent->e_tree_depth == 0) {
653 BUG_ON(le32_to_cpu(old->e_cpos) !=
654 le32_to_cpu(rec->e_cpos));
655 BUG_ON(le64_to_cpu(old->e_blkno) !=
656 le64_to_cpu(rec->e_blkno));
660 * Let non-leafs fall through as -ENOENT to
661 * force insertion of the new leaf.
663 le32_add_cpu(&old->e_clusters, new_clusters);
668 ret = ocfs2_extent_map_insert(inode, rec, 0);
675 /* Code here is included but defined out as it completes the extent
676 * map api and may be used in the future. */
679 * Look up the record containing this cluster offset. This record is
680 * part of the extent map. Do not free it. Any changes you make to
681 * it will reflect in the extent map. So, if your last extent
682 * is (cpos = 10, clusters = 10) and you truncate the file by 5
683 * clusters, you can do:
685 * ret = ocfs2_extent_map_get_rec(em, orig_size - 5, &rec);
686 * rec->e_clusters -= 5;
688 * The lookup does not read from disk. If the map isn't filled in for
689 * an entry, you won't find it.
691 * Also note that the returned record is valid until alloc_sem is
692 * dropped. After that, truncate and extend can happen. Caveat Emptor.
694 int ocfs2_extent_map_get_rec(struct inode *inode, u32 cpos,
695 struct ocfs2_extent_rec **rec,
699 struct ocfs2_extent_map *em = &OCFS2_I(inode)->ip_map;
700 struct ocfs2_extent_map_entry *ent;
704 if (cpos >= OCFS2_I(inode)->ip_clusters)
707 if (cpos >= em->em_clusters) {
709 * Size changed underneath us on disk. Drop any
710 * straddling records and update our idea of
713 ocfs2_extent_map_drop(inode, em->em_clusters - 1);
714 em->em_clusters = OCFS2_I(inode)->ip_clusters ;
717 ent = ocfs2_extent_map_lookup(&OCFS2_I(inode)->ip_map, cpos, 1,
723 *tree_depth = ent->e_tree_depth;
730 int ocfs2_extent_map_get_clusters(struct inode *inode,
731 u32 v_cpos, int count,
732 u32 *p_cpos, int *ret_count)
736 struct ocfs2_extent_map *em = &OCFS2_I(inode)->ip_map;
737 struct ocfs2_extent_map_entry *ent = NULL;
739 *p_cpos = ccount = 0;
741 if ((v_cpos + count) > OCFS2_I(inode)->ip_clusters)
744 if ((v_cpos + count) > em->em_clusters) {
746 * Size changed underneath us on disk. Drop any
747 * straddling records and update our idea of
750 ocfs2_extent_map_drop(inode, em->em_clusters - 1);
751 em->em_clusters = OCFS2_I(inode)->ip_clusters;
755 ret = ocfs2_extent_map_lookup_read(inode, v_cpos, count, &ent);
760 /* We should never find ourselves straddling an interval */
761 if (!ocfs2_extent_rec_contains_clusters(&ent->e_rec,
766 coff = v_cpos - le32_to_cpu(ent->e_rec.e_cpos);
767 *p_cpos = ocfs2_blocks_to_clusters(inode->i_sb,
768 le64_to_cpu(ent->e_rec.e_blkno)) +
772 *ret_count = le32_to_cpu(ent->e_rec.e_clusters) - coff;
783 int ocfs2_extent_map_get_blocks(struct inode *inode,
784 u64 v_blkno, int count,
785 u64 *p_blkno, int *ret_count)
790 int bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
791 struct ocfs2_extent_map_entry *ent = NULL;
792 struct ocfs2_extent_map *em = &OCFS2_I(inode)->ip_map;
793 struct ocfs2_extent_rec *rec;
797 cpos = ocfs2_blocks_to_clusters(inode->i_sb, v_blkno);
798 clusters = ocfs2_blocks_to_clusters(inode->i_sb,
799 (u64)count + bpc - 1);
800 if ((cpos + clusters) > OCFS2_I(inode)->ip_clusters) {
806 if ((cpos + clusters) > em->em_clusters) {
808 * Size changed underneath us on disk. Drop any
809 * straddling records and update our idea of
812 ocfs2_extent_map_drop(inode, em->em_clusters - 1);
813 em->em_clusters = OCFS2_I(inode)->ip_clusters;
816 ret = ocfs2_extent_map_lookup_read(inode, cpos, clusters, &ent);
826 /* We should never find ourselves straddling an interval */
827 if (!ocfs2_extent_rec_contains_clusters(rec, cpos, clusters)) {
833 boff = ocfs2_clusters_to_blocks(inode->i_sb, cpos -
834 le32_to_cpu(rec->e_cpos));
835 boff += (v_blkno & (u64)(bpc - 1));
836 *p_blkno = le64_to_cpu(rec->e_blkno) + boff;
839 *ret_count = ocfs2_clusters_to_blocks(inode->i_sb,
840 le32_to_cpu(rec->e_clusters)) - boff;
849 int ocfs2_extent_map_init(struct inode *inode)
851 struct ocfs2_extent_map *em = &OCFS2_I(inode)->ip_map;
853 em->em_extents = RB_ROOT;
860 static void __ocfs2_extent_map_drop(struct inode *inode,
862 struct rb_node **free_head,
863 struct ocfs2_extent_map_entry **tail_ent)
865 struct rb_node *node, *next;
866 struct ocfs2_extent_map *em = &OCFS2_I(inode)->ip_map;
867 struct ocfs2_extent_map_entry *ent;
872 node = rb_last(&em->em_extents);
875 next = rb_prev(node);
877 ent = rb_entry(node, struct ocfs2_extent_map_entry,
879 if (le32_to_cpu(ent->e_rec.e_cpos) < new_clusters)
882 rb_erase(&ent->e_node, &em->em_extents);
884 node->rb_right = *free_head;
891 /* Do we have an entry straddling new_clusters? */
894 ((le32_to_cpu(ent->e_rec.e_cpos) +
895 le32_to_cpu(ent->e_rec.e_clusters)) > new_clusters))
902 static void __ocfs2_extent_map_drop_cleanup(struct rb_node *free_head)
904 struct rb_node *node;
905 struct ocfs2_extent_map_entry *ent;
909 free_head = node->rb_right;
911 ent = rb_entry(node, struct ocfs2_extent_map_entry,
913 kmem_cache_free(ocfs2_em_ent_cachep, ent);
918 * Remove all entries past new_clusters, inclusive of an entry that
919 * contains new_clusters. This is effectively a cache forget.
921 * If you want to also clip the last extent by some number of clusters,
922 * you need to call ocfs2_extent_map_trunc().
923 * This code does not check or modify ip_clusters.
925 int ocfs2_extent_map_drop(struct inode *inode, u32 new_clusters)
927 struct rb_node *free_head = NULL;
928 struct ocfs2_extent_map *em = &OCFS2_I(inode)->ip_map;
929 struct ocfs2_extent_map_entry *ent;
931 spin_lock(&OCFS2_I(inode)->ip_lock);
933 __ocfs2_extent_map_drop(inode, new_clusters, &free_head, &ent);
936 rb_erase(&ent->e_node, &em->em_extents);
937 ent->e_node.rb_right = free_head;
938 free_head = &ent->e_node;
941 spin_unlock(&OCFS2_I(inode)->ip_lock);
944 __ocfs2_extent_map_drop_cleanup(free_head);
950 * Remove all entries past new_clusters and also clip any extent
951 * straddling new_clusters, if there is one. This does not check
952 * or modify ip_clusters
954 int ocfs2_extent_map_trunc(struct inode *inode, u32 new_clusters)
956 struct rb_node *free_head = NULL;
957 struct ocfs2_extent_map_entry *ent = NULL;
959 spin_lock(&OCFS2_I(inode)->ip_lock);
961 __ocfs2_extent_map_drop(inode, new_clusters, &free_head, &ent);
964 ent->e_rec.e_clusters = cpu_to_le32(new_clusters -
965 le32_to_cpu(ent->e_rec.e_cpos));
967 OCFS2_I(inode)->ip_map.em_clusters = new_clusters;
969 spin_unlock(&OCFS2_I(inode)->ip_lock);
972 __ocfs2_extent_map_drop_cleanup(free_head);
977 int __init init_ocfs2_extent_maps(void)
979 ocfs2_em_ent_cachep =
980 kmem_cache_create("ocfs2_em_ent",
981 sizeof(struct ocfs2_extent_map_entry),
982 0, SLAB_HWCACHE_ALIGN, NULL, NULL);
983 if (!ocfs2_em_ent_cachep)
989 void exit_ocfs2_extent_maps(void)
991 kmem_cache_destroy(ocfs2_em_ent_cachep);