Btrfs: Change btrfs_truncate_inode_items to stop when it hits the inode
[safe/jmp/linux-2.6] / fs / btrfs / extent_map.h
index a3978ec..fb6eeef 100644 (file)
@@ -10,6 +10,9 @@
 
 /* bits for the flags field */
 #define EXTENT_FLAG_PINNED 0 /* this entry not yet on disk, don't free it */
+#define EXTENT_FLAG_COMPRESSED 1
+#define EXTENT_FLAG_VACANCY 2 /* no file extent item found */
+#define EXTENT_FLAG_PREALLOC 3 /* pre-allocated extent */
 
 struct extent_map {
        struct rb_node rb_node;
@@ -17,7 +20,9 @@ struct extent_map {
        /* all of these are in bytes */
        u64 start;
        u64 len;
+       u64 orig_start;
        u64 block_start;
+       u64 block_len;
        unsigned long flags;
        struct block_device *bdev;
        atomic_t refs;
@@ -26,7 +31,6 @@ struct extent_map {
 
 struct extent_map_tree {
        struct rb_root map;
-       struct extent_map *last;
        spinlock_t lock;
 };
 
@@ -39,9 +43,9 @@ static inline u64 extent_map_end(struct extent_map *em)
 
 static inline u64 extent_map_block_end(struct extent_map *em)
 {
-       if (em->block_start + em->len < em->block_start)
+       if (em->block_start + em->block_len < em->block_start)
                return (u64)-1;
-       return em->block_start + em->len;
+       return em->block_start + em->block_len;
 }
 
 void extent_map_tree_init(struct extent_map_tree *tree, gfp_t mask);