2 * Copyright (C) 2008 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
18 #ifndef __DELAYED_REF__
19 #define __DELAYED_REF__
21 /* these are the possible values of struct btrfs_delayed_ref->action */
22 #define BTRFS_ADD_DELAYED_REF 1 /* add one backref to the tree */
23 #define BTRFS_DROP_DELAYED_REF 2 /* delete one backref from the tree */
24 #define BTRFS_ADD_DELAYED_EXTENT 3 /* record a full extent allocation */
25 #define BTRFS_UPDATE_DELAYED_HEAD 4 /* not changing ref count on head ref */
27 struct btrfs_delayed_ref_node
{
28 struct rb_node rb_node
;
30 /* the starting bytenr of the extent */
33 /* the size of the extent */
36 /* ref count on this data structure */
40 * how many refs is this entry adding or deleting. For
41 * head refs, this may be a negative number because it is keeping
42 * track of the total mods done to the reference count.
43 * For individual refs, this will always be a positive number
45 * It may be more than one, since it is possible for a single
46 * parent to have more than one ref on an extent
50 unsigned int action
:8;
52 /* is this node still in the rbtree? */
53 unsigned int is_head
:1;
54 unsigned int in_tree
:1;
57 struct btrfs_delayed_extent_op
{
58 struct btrfs_disk_key key
;
60 unsigned int update_key
:1;
61 unsigned int update_flags
:1;
62 unsigned int is_data
:1;
66 * the head refs are used to hold a lock on a given extent, which allows us
67 * to make sure that only one process is running the delayed refs
68 * at a time for a single extent. They also store the sum of all the
69 * reference count modifications we've queued up.
71 struct btrfs_delayed_ref_head
{
72 struct btrfs_delayed_ref_node node
;
75 * the mutex is held while running the refs, and it is also
76 * held when checking the sum of reference modifications.
80 struct list_head cluster
;
82 struct btrfs_delayed_extent_op
*extent_op
;
84 * when a new extent is allocated, it is just reserved in memory
85 * The actual extent isn't inserted into the extent allocation tree
86 * until the delayed ref is processed. must_insert_reserved is
87 * used to flag a delayed ref so the accounting can be updated
88 * when a full insert is done.
90 * It is possible the extent will be freed before it is ever
91 * inserted into the extent allocation tree. In this case
92 * we need to update the in ram accounting to properly reflect
93 * the free has happened.
95 unsigned int must_insert_reserved
:1;
96 unsigned int is_data
:1;
99 struct btrfs_delayed_tree_ref
{
100 struct btrfs_delayed_ref_node node
;
108 struct btrfs_delayed_data_ref
{
109 struct btrfs_delayed_ref_node node
;
118 struct btrfs_delayed_ref_root
{
121 /* this spin lock protects the rbtree and the entries inside */
124 /* how many delayed ref updates we've queued, used by the
127 unsigned long num_entries
;
129 /* total number of head nodes in tree */
130 unsigned long num_heads
;
132 /* total number of head nodes ready for processing */
133 unsigned long num_heads_ready
;
136 * set when the tree is flushing before a transaction commit,
137 * used by the throttling code to decide if new updates need
138 * to be run right away
142 u64 run_delayed_start
;
145 static inline void btrfs_put_delayed_ref(struct btrfs_delayed_ref_node
*ref
)
147 WARN_ON(atomic_read(&ref
->refs
) == 0);
148 if (atomic_dec_and_test(&ref
->refs
)) {
149 WARN_ON(ref
->in_tree
);
154 int btrfs_add_delayed_tree_ref(struct btrfs_trans_handle
*trans
,
155 u64 bytenr
, u64 num_bytes
, u64 parent
,
156 u64 ref_root
, int level
, int action
,
157 struct btrfs_delayed_extent_op
*extent_op
);
158 int btrfs_add_delayed_data_ref(struct btrfs_trans_handle
*trans
,
159 u64 bytenr
, u64 num_bytes
,
160 u64 parent
, u64 ref_root
,
161 u64 owner
, u64 offset
, int action
,
162 struct btrfs_delayed_extent_op
*extent_op
);
163 int btrfs_add_delayed_extent_op(struct btrfs_trans_handle
*trans
,
164 u64 bytenr
, u64 num_bytes
,
165 struct btrfs_delayed_extent_op
*extent_op
);
167 struct btrfs_delayed_ref_head
*
168 btrfs_find_delayed_ref_head(struct btrfs_trans_handle
*trans
, u64 bytenr
);
169 int btrfs_delayed_ref_pending(struct btrfs_trans_handle
*trans
, u64 bytenr
);
170 int btrfs_lookup_extent_info(struct btrfs_trans_handle
*trans
,
171 struct btrfs_root
*root
, u64 bytenr
,
172 u64 num_bytes
, u64
*refs
, u64
*flags
);
173 int btrfs_update_delayed_ref(struct btrfs_trans_handle
*trans
,
174 u64 bytenr
, u64 num_bytes
, u64 orig_parent
,
175 u64 parent
, u64 orig_ref_root
, u64 ref_root
,
176 u64 orig_ref_generation
, u64 ref_generation
,
177 u64 owner_objectid
, int pin
);
178 int btrfs_delayed_ref_lock(struct btrfs_trans_handle
*trans
,
179 struct btrfs_delayed_ref_head
*head
);
180 int btrfs_find_ref_cluster(struct btrfs_trans_handle
*trans
,
181 struct list_head
*cluster
, u64 search_start
);
183 * a node might live in a head or a regular ref, this lets you
184 * test for the proper type to use.
186 static int btrfs_delayed_ref_is_head(struct btrfs_delayed_ref_node
*node
)
188 return node
->is_head
;
192 * helper functions to cast a node into its container
194 static inline struct btrfs_delayed_tree_ref
*
195 btrfs_delayed_node_to_tree_ref(struct btrfs_delayed_ref_node
*node
)
197 WARN_ON(btrfs_delayed_ref_is_head(node
));
198 return container_of(node
, struct btrfs_delayed_tree_ref
, node
);
201 static inline struct btrfs_delayed_data_ref
*
202 btrfs_delayed_node_to_data_ref(struct btrfs_delayed_ref_node
*node
)
204 WARN_ON(btrfs_delayed_ref_is_head(node
));
205 return container_of(node
, struct btrfs_delayed_data_ref
, node
);
208 static inline struct btrfs_delayed_ref_head
*
209 btrfs_delayed_node_to_head(struct btrfs_delayed_ref_node
*node
)
211 WARN_ON(!btrfs_delayed_ref_is_head(node
));
212 return container_of(node
, struct btrfs_delayed_ref_head
, node
);