blob: 2388a60bd6e334cfc2c7d5615638a3a4031d110d [file] [log] [blame]
Chris Masona52d9a82007-08-27 16:49:44 -04001#ifndef __EXTENTMAP__
2#define __EXTENTMAP__
3
4#include <linux/rbtree.h>
5
Chris Masond1310b22008-01-24 16:13:08 -05006#define EXTENT_MAP_LAST_BYTE (u64)-4
Chris Mason5f39d392007-10-15 16:14:19 -04007#define EXTENT_MAP_HOLE (u64)-3
Chris Masona52d9a82007-08-27 16:49:44 -04008#define EXTENT_MAP_INLINE (u64)-2
9#define EXTENT_MAP_DELALLOC (u64)-1
10
Chris Mason7f3c74f2008-07-18 12:01:11 -040011/* bits for the flags field */
12#define EXTENT_FLAG_PINNED 0 /* this entry not yet on disk, don't free it */
Chris Masonc8b97812008-10-29 14:49:59 -040013#define EXTENT_FLAG_COMPRESSED 1
Yan Zheng9036c102008-10-30 14:19:41 -040014#define EXTENT_FLAG_VACANCY 2 /* no file extent item found */
Yan Zhengd899e052008-10-30 14:25:28 -040015#define EXTENT_FLAG_PREALLOC 3 /* pre-allocated extent */
Chris Mason7f3c74f2008-07-18 12:01:11 -040016
Chris Masond1310b22008-01-24 16:13:08 -050017struct extent_map {
18 struct rb_node rb_node;
Chris Mason5f39d392007-10-15 16:14:19 -040019
Chris Masond1310b22008-01-24 16:13:08 -050020 /* all of these are in bytes */
21 u64 start;
22 u64 len;
Yan Zhengff5b7ee2008-11-10 07:34:43 -050023 u64 orig_start;
Chris Masond1310b22008-01-24 16:13:08 -050024 u64 block_start;
Chris Masonc8b97812008-10-29 14:49:59 -040025 u64 block_len;
Josef Bacik5dc562c2012-08-17 13:14:17 -040026 u64 generation;
Chris Masond1310b22008-01-24 16:13:08 -050027 unsigned long flags;
28 struct block_device *bdev;
29 atomic_t refs;
David Sterbac08782d2012-01-26 15:01:12 -050030 unsigned int in_tree;
31 unsigned int compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -040032 struct list_head list;
Chris Mason07157aa2007-08-30 08:50:51 -040033};
34
Chris Masona52d9a82007-08-27 16:49:44 -040035struct extent_map_tree {
36 struct rb_root map;
Josef Bacik5dc562c2012-08-17 13:14:17 -040037 struct list_head modified_extents;
Chris Mason890871b2009-09-02 16:24:52 -040038 rwlock_t lock;
Chris Masona52d9a82007-08-27 16:49:44 -040039};
40
Chris Masond1310b22008-01-24 16:13:08 -050041static inline u64 extent_map_end(struct extent_map *em)
42{
43 if (em->start + em->len < em->start)
44 return (u64)-1;
45 return em->start + em->len;
46}
Chris Masona52d9a82007-08-27 16:49:44 -040047
Chris Masond1310b22008-01-24 16:13:08 -050048static inline u64 extent_map_block_end(struct extent_map *em)
49{
Chris Masonc8b97812008-10-29 14:49:59 -040050 if (em->block_start + em->block_len < em->block_start)
Chris Masond1310b22008-01-24 16:13:08 -050051 return (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -040052 return em->block_start + em->block_len;
Chris Masond1310b22008-01-24 16:13:08 -050053}
Chris Mason07157aa2007-08-30 08:50:51 -040054
David Sterbaa8067e02011-04-21 00:34:43 +020055void extent_map_tree_init(struct extent_map_tree *tree);
Chris Masona52d9a82007-08-27 16:49:44 -040056struct extent_map *lookup_extent_mapping(struct extent_map_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -050057 u64 start, u64 len);
Chris Masona52d9a82007-08-27 16:49:44 -040058int add_extent_mapping(struct extent_map_tree *tree,
59 struct extent_map *em);
60int remove_extent_mapping(struct extent_map_tree *tree, struct extent_map *em);
Chris Masond1310b22008-01-24 16:13:08 -050061
David Sterba172ddd62011-04-21 00:48:27 +020062struct extent_map *alloc_extent_map(void);
Chris Masona52d9a82007-08-27 16:49:44 -040063void free_extent_map(struct extent_map *em);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050064int __init extent_map_init(void);
Christian Hesse17636e02007-12-11 09:25:06 -050065void extent_map_exit(void);
Josef Bacik5dc562c2012-08-17 13:14:17 -040066int unpin_extent_cache(struct extent_map_tree *tree, u64 start, u64 len, u64 gen);
Chris Masonb917b7c2009-09-18 16:07:03 -040067struct extent_map *search_extent_mapping(struct extent_map_tree *tree,
68 u64 start, u64 len);
Chris Masona52d9a82007-08-27 16:49:44 -040069#endif