blob: eb8b8fae036bc3c67ceea03220cdca503626546f [file] [log] [blame]
Chris Masona52d9a82007-08-27 16:49:44 -04001#ifndef __EXTENTMAP__
2#define __EXTENTMAP__
3
4#include <linux/rbtree.h>
5
Dulshani Gunawardhanae248e042013-10-31 10:31:13 +05306#define EXTENT_MAP_LAST_BYTE ((u64)-4)
7#define EXTENT_MAP_HOLE ((u64)-3)
8#define EXTENT_MAP_INLINE ((u64)-2)
9#define EXTENT_MAP_DELALLOC ((u64)-1)
Chris Masona52d9a82007-08-27 16:49:44 -040010
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 */
Josef Bacikff44c6e2012-09-14 12:59:20 -040016#define EXTENT_FLAG_LOGGING 4 /* Logging this extent */
Josef Bacikb11e2342012-12-03 10:58:15 -050017#define EXTENT_FLAG_FILLING 5 /* Filling in a preallocated extent */
Wang Shilong298a8f92014-06-19 10:42:52 +080018#define EXTENT_FLAG_FS_MAPPING 6 /* filesystem extent mapping type */
Chris Mason7f3c74f2008-07-18 12:01:11 -040019
Chris Masond1310b22008-01-24 16:13:08 -050020struct extent_map {
21 struct rb_node rb_node;
Chris Mason5f39d392007-10-15 16:14:19 -040022
Chris Masond1310b22008-01-24 16:13:08 -050023 /* all of these are in bytes */
24 u64 start;
25 u64 len;
Liu Bo4e2f84e2012-08-27 10:52:20 -060026 u64 mod_start;
27 u64 mod_len;
Yan Zhengff5b7ee2008-11-10 07:34:43 -050028 u64 orig_start;
Josef Bacikb4939682012-12-03 10:31:19 -050029 u64 orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -040030 u64 ram_bytes;
Chris Masond1310b22008-01-24 16:13:08 -050031 u64 block_start;
Chris Masonc8b97812008-10-29 14:49:59 -040032 u64 block_len;
Josef Bacik5dc562c2012-08-17 13:14:17 -040033 u64 generation;
Chris Masond1310b22008-01-24 16:13:08 -050034 unsigned long flags;
Jeff Mahoney95617d62015-06-03 10:55:48 -040035 union {
36 struct block_device *bdev;
37
38 /*
39 * used for chunk mappings
40 * flags & EXTENT_FLAG_FS_MAPPING must be set
41 */
42 struct map_lookup *map_lookup;
43 };
Chris Masond1310b22008-01-24 16:13:08 -050044 atomic_t refs;
David Sterbac08782d2012-01-26 15:01:12 -050045 unsigned int compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -040046 struct list_head list;
Chris Mason07157aa2007-08-30 08:50:51 -040047};
48
Chris Masona52d9a82007-08-27 16:49:44 -040049struct extent_map_tree {
50 struct rb_root map;
Josef Bacik5dc562c2012-08-17 13:14:17 -040051 struct list_head modified_extents;
Chris Mason890871b2009-09-02 16:24:52 -040052 rwlock_t lock;
Chris Masona52d9a82007-08-27 16:49:44 -040053};
54
Filipe Mananacbc0e922014-02-25 14:15:12 +000055static inline int extent_map_in_tree(const struct extent_map *em)
56{
57 return !RB_EMPTY_NODE(&em->rb_node);
58}
59
Chris Masond1310b22008-01-24 16:13:08 -050060static inline u64 extent_map_end(struct extent_map *em)
61{
62 if (em->start + em->len < em->start)
63 return (u64)-1;
64 return em->start + em->len;
65}
Chris Masona52d9a82007-08-27 16:49:44 -040066
Chris Masond1310b22008-01-24 16:13:08 -050067static inline u64 extent_map_block_end(struct extent_map *em)
68{
Chris Masonc8b97812008-10-29 14:49:59 -040069 if (em->block_start + em->block_len < em->block_start)
Chris Masond1310b22008-01-24 16:13:08 -050070 return (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -040071 return em->block_start + em->block_len;
Chris Masond1310b22008-01-24 16:13:08 -050072}
Chris Mason07157aa2007-08-30 08:50:51 -040073
David Sterbaa8067e02011-04-21 00:34:43 +020074void extent_map_tree_init(struct extent_map_tree *tree);
Chris Masona52d9a82007-08-27 16:49:44 -040075struct extent_map *lookup_extent_mapping(struct extent_map_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -050076 u64 start, u64 len);
Chris Masona52d9a82007-08-27 16:49:44 -040077int add_extent_mapping(struct extent_map_tree *tree,
Josef Bacik09a2a8f92013-04-05 16:51:15 -040078 struct extent_map *em, int modified);
Chris Masona52d9a82007-08-27 16:49:44 -040079int remove_extent_mapping(struct extent_map_tree *tree, struct extent_map *em);
Filipe Manana176840b2014-02-25 14:15:13 +000080void replace_extent_mapping(struct extent_map_tree *tree,
81 struct extent_map *cur,
82 struct extent_map *new,
83 int modified);
Chris Masond1310b22008-01-24 16:13:08 -050084
David Sterba172ddd62011-04-21 00:48:27 +020085struct extent_map *alloc_extent_map(void);
Chris Masona52d9a82007-08-27 16:49:44 -040086void free_extent_map(struct extent_map *em);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050087int __init extent_map_init(void);
Christian Hesse17636e02007-12-11 09:25:06 -050088void extent_map_exit(void);
Josef Bacik5dc562c2012-08-17 13:14:17 -040089int unpin_extent_cache(struct extent_map_tree *tree, u64 start, u64 len, u64 gen);
Josef Bacik201a9032013-01-24 12:02:07 -050090void clear_em_logging(struct extent_map_tree *tree, struct extent_map *em);
Chris Masonb917b7c2009-09-18 16:07:03 -040091struct extent_map *search_extent_mapping(struct extent_map_tree *tree,
92 u64 start, u64 len);
Chris Masona52d9a82007-08-27 16:49:44 -040093#endif