xref: /openbmc/linux/fs/ext4/extents_status.h (revision 921f266b)
1c0677e6dSZheng Liu /*
2c0677e6dSZheng Liu  *  fs/ext4/extents_status.h
3c0677e6dSZheng Liu  *
4c0677e6dSZheng Liu  * Written by Yongqiang Yang <xiaoqiangnk@gmail.com>
5c0677e6dSZheng Liu  * Modified by
6c0677e6dSZheng Liu  *	Allison Henderson <achender@linux.vnet.ibm.com>
7c0677e6dSZheng Liu  *	Zheng Liu <wenqing.lz@taobao.com>
8c0677e6dSZheng Liu  *
9c0677e6dSZheng Liu  */
10c0677e6dSZheng Liu 
11c0677e6dSZheng Liu #ifndef _EXT4_EXTENTS_STATUS_H
12c0677e6dSZheng Liu #define _EXT4_EXTENTS_STATUS_H
13c0677e6dSZheng Liu 
14654598beSZheng Liu /*
15654598beSZheng Liu  * Turn on ES_DEBUG__ to get lots of info about extent status operations.
16654598beSZheng Liu  */
17654598beSZheng Liu #ifdef ES_DEBUG__
18654598beSZheng Liu #define es_debug(fmt, ...)	printk(fmt, ##__VA_ARGS__)
19654598beSZheng Liu #else
20654598beSZheng Liu #define es_debug(fmt, ...)	no_printk(fmt, ##__VA_ARGS__)
21654598beSZheng Liu #endif
22654598beSZheng Liu 
238e919d13STheodore Ts'o /*
24921f266bSDmitry Monakhov  * With ES_AGGRESSIVE_TEST defined, the result of es caching will be
25921f266bSDmitry Monakhov  * checked with old map_block's result.
26921f266bSDmitry Monakhov  */
27921f266bSDmitry Monakhov #define ES_AGGRESSIVE_TEST__
28921f266bSDmitry Monakhov 
29921f266bSDmitry Monakhov /*
308e919d13STheodore Ts'o  * These flags live in the high bits of extent_status.es_pblk
318e919d13STheodore Ts'o  */
328e919d13STheodore Ts'o #define EXTENT_STATUS_WRITTEN	(1ULL << 63)
338e919d13STheodore Ts'o #define EXTENT_STATUS_UNWRITTEN (1ULL << 62)
348e919d13STheodore Ts'o #define EXTENT_STATUS_DELAYED	(1ULL << 61)
358e919d13STheodore Ts'o #define EXTENT_STATUS_HOLE	(1ULL << 60)
36fdc0212eSZheng Liu 
37fdc0212eSZheng Liu #define EXTENT_STATUS_FLAGS	(EXTENT_STATUS_WRITTEN | \
38fdc0212eSZheng Liu 				 EXTENT_STATUS_UNWRITTEN | \
39fdc0212eSZheng Liu 				 EXTENT_STATUS_DELAYED | \
40fdc0212eSZheng Liu 				 EXTENT_STATUS_HOLE)
41fdc0212eSZheng Liu 
42c0677e6dSZheng Liu struct extent_status {
43c0677e6dSZheng Liu 	struct rb_node rb_node;
4406b0c886SZheng Liu 	ext4_lblk_t es_lblk;	/* first logical block extent covers */
4506b0c886SZheng Liu 	ext4_lblk_t es_len;	/* length of extent in block */
46fdc0212eSZheng Liu 	ext4_fsblk_t es_pblk;	/* first physical block */
47c0677e6dSZheng Liu };
48c0677e6dSZheng Liu 
49c0677e6dSZheng Liu struct ext4_es_tree {
50c0677e6dSZheng Liu 	struct rb_root root;
51c0677e6dSZheng Liu 	struct extent_status *cache_es;	/* recently accessed extent */
52c0677e6dSZheng Liu };
53c0677e6dSZheng Liu 
54654598beSZheng Liu extern int __init ext4_init_es(void);
55654598beSZheng Liu extern void ext4_exit_es(void);
56654598beSZheng Liu extern void ext4_es_init_tree(struct ext4_es_tree *tree);
57654598beSZheng Liu 
5806b0c886SZheng Liu extern int ext4_es_insert_extent(struct inode *inode, ext4_lblk_t lblk,
59fdc0212eSZheng Liu 				 ext4_lblk_t len, ext4_fsblk_t pblk,
60fdc0212eSZheng Liu 				 unsigned long long status);
6106b0c886SZheng Liu extern int ext4_es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
62654598beSZheng Liu 				 ext4_lblk_t len);
63be401363SZheng Liu extern void ext4_es_find_delayed_extent(struct inode *inode, ext4_lblk_t lblk,
64654598beSZheng Liu 					struct extent_status *es);
65d100eef2SZheng Liu extern int ext4_es_lookup_extent(struct inode *inode, ext4_lblk_t lblk,
66d100eef2SZheng Liu 				 struct extent_status *es);
67654598beSZheng Liu 
68fdc0212eSZheng Liu static inline int ext4_es_is_written(struct extent_status *es)
69fdc0212eSZheng Liu {
708e919d13STheodore Ts'o 	return (es->es_pblk & EXTENT_STATUS_WRITTEN) != 0;
71fdc0212eSZheng Liu }
72fdc0212eSZheng Liu 
73fdc0212eSZheng Liu static inline int ext4_es_is_unwritten(struct extent_status *es)
74fdc0212eSZheng Liu {
758e919d13STheodore Ts'o 	return (es->es_pblk & EXTENT_STATUS_UNWRITTEN) != 0;
76fdc0212eSZheng Liu }
77fdc0212eSZheng Liu 
78fdc0212eSZheng Liu static inline int ext4_es_is_delayed(struct extent_status *es)
79fdc0212eSZheng Liu {
808e919d13STheodore Ts'o 	return (es->es_pblk & EXTENT_STATUS_DELAYED) != 0;
81fdc0212eSZheng Liu }
82fdc0212eSZheng Liu 
83fdc0212eSZheng Liu static inline int ext4_es_is_hole(struct extent_status *es)
84fdc0212eSZheng Liu {
858e919d13STheodore Ts'o 	return (es->es_pblk & EXTENT_STATUS_HOLE) != 0;
86fdc0212eSZheng Liu }
87fdc0212eSZheng Liu 
88fdc0212eSZheng Liu static inline ext4_fsblk_t ext4_es_status(struct extent_status *es)
89fdc0212eSZheng Liu {
90fdc0212eSZheng Liu 	return (es->es_pblk & EXTENT_STATUS_FLAGS);
91fdc0212eSZheng Liu }
92fdc0212eSZheng Liu 
93fdc0212eSZheng Liu static inline ext4_fsblk_t ext4_es_pblock(struct extent_status *es)
94fdc0212eSZheng Liu {
95fdc0212eSZheng Liu 	return (es->es_pblk & ~EXTENT_STATUS_FLAGS);
96fdc0212eSZheng Liu }
97fdc0212eSZheng Liu 
98fdc0212eSZheng Liu static inline void ext4_es_store_pblock(struct extent_status *es,
99fdc0212eSZheng Liu 					ext4_fsblk_t pb)
100fdc0212eSZheng Liu {
101fdc0212eSZheng Liu 	ext4_fsblk_t block;
102fdc0212eSZheng Liu 
103fdc0212eSZheng Liu 	block = (pb & ~EXTENT_STATUS_FLAGS) |
104fdc0212eSZheng Liu 		(es->es_pblk & EXTENT_STATUS_FLAGS);
105fdc0212eSZheng Liu 	es->es_pblk = block;
106fdc0212eSZheng Liu }
107fdc0212eSZheng Liu 
108fdc0212eSZheng Liu static inline void ext4_es_store_status(struct extent_status *es,
109fdc0212eSZheng Liu 					unsigned long long status)
110fdc0212eSZheng Liu {
111fdc0212eSZheng Liu 	ext4_fsblk_t block;
112fdc0212eSZheng Liu 
113fdc0212eSZheng Liu 	block = (status & EXTENT_STATUS_FLAGS) |
114fdc0212eSZheng Liu 		(es->es_pblk & ~EXTENT_STATUS_FLAGS);
115fdc0212eSZheng Liu 	es->es_pblk = block;
116fdc0212eSZheng Liu }
117fdc0212eSZheng Liu 
11874cd15cdSZheng Liu extern void ext4_es_register_shrinker(struct super_block *sb);
11974cd15cdSZheng Liu extern void ext4_es_unregister_shrinker(struct super_block *sb);
12074cd15cdSZheng Liu extern void ext4_es_lru_add(struct inode *inode);
12174cd15cdSZheng Liu extern void ext4_es_lru_del(struct inode *inode);
12274cd15cdSZheng Liu 
123c0677e6dSZheng Liu #endif /* _EXT4_EXTENTS_STATUS_H */
124