blob: 5149165b49a45d96e2e62091b26b5d54dea1f815 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason56bec292009-03-13 10:10:06 -04002/*
3 * Copyright (C) 2009 Oracle. All rights reserved.
Chris Mason56bec292009-03-13 10:10:06 -04004 */
5
6#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Chris Mason56bec292009-03-13 10:10:06 -04008#include <linux/sort.h>
Chris Mason56bec292009-03-13 10:10:06 -04009#include "ctree.h"
10#include "delayed-ref.h"
11#include "transaction.h"
Qu Wenruo3368d002015-04-16 14:34:17 +080012#include "qgroup.h"
Chris Mason56bec292009-03-13 10:10:06 -040013
Miao Xie78a61842012-11-21 02:21:28 +000014struct kmem_cache *btrfs_delayed_ref_head_cachep;
15struct kmem_cache *btrfs_delayed_tree_ref_cachep;
16struct kmem_cache *btrfs_delayed_data_ref_cachep;
17struct kmem_cache *btrfs_delayed_extent_op_cachep;
Chris Mason56bec292009-03-13 10:10:06 -040018/*
19 * delayed back reference update tracking. For subvolume trees
20 * we queue up extent allocations and backref maintenance for
21 * delayed processing. This avoids deep call chains where we
22 * add extents in the middle of btrfs_search_slot, and it allows
23 * us to buffer up frequently modified backrefs in an rb tree instead
24 * of hammering updates on the extent allocation tree.
Chris Mason56bec292009-03-13 10:10:06 -040025 */
26
27/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -040028 * compare two delayed tree backrefs with same bytenr and type
Chris Mason56bec292009-03-13 10:10:06 -040029 */
Josef Bacikc7ad7c82017-10-19 14:15:58 -040030static int comp_tree_refs(struct btrfs_delayed_tree_ref *ref1,
31 struct btrfs_delayed_tree_ref *ref2)
Chris Mason56bec292009-03-13 10:10:06 -040032{
Josef Bacik3b60d432017-09-29 15:43:58 -040033 if (ref1->node.type == BTRFS_TREE_BLOCK_REF_KEY) {
Josef Bacik41b0fc42013-04-01 20:36:28 -040034 if (ref1->root < ref2->root)
35 return -1;
36 if (ref1->root > ref2->root)
37 return 1;
38 } else {
39 if (ref1->parent < ref2->parent)
40 return -1;
41 if (ref1->parent > ref2->parent)
42 return 1;
43 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -040044 return 0;
45}
46
47/*
48 * compare two delayed data backrefs with same bytenr and type
49 */
Josef Bacikc7ad7c82017-10-19 14:15:58 -040050static int comp_data_refs(struct btrfs_delayed_data_ref *ref1,
51 struct btrfs_delayed_data_ref *ref2)
Yan Zheng5d4f98a2009-06-10 10:45:14 -040052{
53 if (ref1->node.type == BTRFS_EXTENT_DATA_REF_KEY) {
54 if (ref1->root < ref2->root)
55 return -1;
56 if (ref1->root > ref2->root)
57 return 1;
58 if (ref1->objectid < ref2->objectid)
59 return -1;
60 if (ref1->objectid > ref2->objectid)
61 return 1;
62 if (ref1->offset < ref2->offset)
63 return -1;
64 if (ref1->offset > ref2->offset)
65 return 1;
66 } else {
67 if (ref1->parent < ref2->parent)
68 return -1;
69 if (ref1->parent > ref2->parent)
70 return 1;
71 }
72 return 0;
73}
74
Josef Bacik1d148e52017-10-19 14:15:59 -040075static int comp_refs(struct btrfs_delayed_ref_node *ref1,
76 struct btrfs_delayed_ref_node *ref2,
77 bool check_seq)
78{
79 int ret = 0;
80
81 if (ref1->type < ref2->type)
82 return -1;
83 if (ref1->type > ref2->type)
84 return 1;
85 if (ref1->type == BTRFS_TREE_BLOCK_REF_KEY ||
86 ref1->type == BTRFS_SHARED_BLOCK_REF_KEY)
87 ret = comp_tree_refs(btrfs_delayed_node_to_tree_ref(ref1),
88 btrfs_delayed_node_to_tree_ref(ref2));
89 else
90 ret = comp_data_refs(btrfs_delayed_node_to_data_ref(ref1),
91 btrfs_delayed_node_to_data_ref(ref2));
92 if (ret)
93 return ret;
94 if (check_seq) {
95 if (ref1->seq < ref2->seq)
96 return -1;
97 if (ref1->seq > ref2->seq)
98 return 1;
99 }
100 return 0;
101}
102
Liu Boc46effa2013-10-14 12:59:45 +0800103/* insert a new ref to head ref rbtree */
Liu Bo5c9d0282018-08-23 03:51:49 +0800104static struct btrfs_delayed_ref_head *htree_insert(struct rb_root_cached *root,
Liu Boc46effa2013-10-14 12:59:45 +0800105 struct rb_node *node)
106{
Liu Bo5c9d0282018-08-23 03:51:49 +0800107 struct rb_node **p = &root->rb_root.rb_node;
Liu Boc46effa2013-10-14 12:59:45 +0800108 struct rb_node *parent_node = NULL;
109 struct btrfs_delayed_ref_head *entry;
110 struct btrfs_delayed_ref_head *ins;
111 u64 bytenr;
Liu Bo5c9d0282018-08-23 03:51:49 +0800112 bool leftmost = true;
Liu Boc46effa2013-10-14 12:59:45 +0800113
114 ins = rb_entry(node, struct btrfs_delayed_ref_head, href_node);
Josef Bacikd2788502017-09-29 15:43:57 -0400115 bytenr = ins->bytenr;
Liu Boc46effa2013-10-14 12:59:45 +0800116 while (*p) {
117 parent_node = *p;
118 entry = rb_entry(parent_node, struct btrfs_delayed_ref_head,
119 href_node);
120
Liu Bo5c9d0282018-08-23 03:51:49 +0800121 if (bytenr < entry->bytenr) {
Liu Boc46effa2013-10-14 12:59:45 +0800122 p = &(*p)->rb_left;
Liu Bo5c9d0282018-08-23 03:51:49 +0800123 } else if (bytenr > entry->bytenr) {
Liu Boc46effa2013-10-14 12:59:45 +0800124 p = &(*p)->rb_right;
Liu Bo5c9d0282018-08-23 03:51:49 +0800125 leftmost = false;
126 } else {
Liu Boc46effa2013-10-14 12:59:45 +0800127 return entry;
Liu Bo5c9d0282018-08-23 03:51:49 +0800128 }
Liu Boc46effa2013-10-14 12:59:45 +0800129 }
130
131 rb_link_node(node, parent_node, p);
Liu Bo5c9d0282018-08-23 03:51:49 +0800132 rb_insert_color_cached(node, root, leftmost);
Liu Boc46effa2013-10-14 12:59:45 +0800133 return NULL;
134}
135
Liu Boe3d03962018-08-23 03:51:50 +0800136static struct btrfs_delayed_ref_node* tree_insert(struct rb_root_cached *root,
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400137 struct btrfs_delayed_ref_node *ins)
138{
Liu Boe3d03962018-08-23 03:51:50 +0800139 struct rb_node **p = &root->rb_root.rb_node;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400140 struct rb_node *node = &ins->ref_node;
141 struct rb_node *parent_node = NULL;
142 struct btrfs_delayed_ref_node *entry;
Liu Boe3d03962018-08-23 03:51:50 +0800143 bool leftmost = true;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400144
145 while (*p) {
146 int comp;
147
148 parent_node = *p;
149 entry = rb_entry(parent_node, struct btrfs_delayed_ref_node,
150 ref_node);
151 comp = comp_refs(ins, entry, true);
Liu Boe3d03962018-08-23 03:51:50 +0800152 if (comp < 0) {
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400153 p = &(*p)->rb_left;
Liu Boe3d03962018-08-23 03:51:50 +0800154 } else if (comp > 0) {
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400155 p = &(*p)->rb_right;
Liu Boe3d03962018-08-23 03:51:50 +0800156 leftmost = false;
157 } else {
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400158 return entry;
Liu Boe3d03962018-08-23 03:51:50 +0800159 }
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400160 }
161
162 rb_link_node(node, parent_node, p);
Liu Boe3d03962018-08-23 03:51:50 +0800163 rb_insert_color_cached(node, root, leftmost);
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400164 return NULL;
165}
166
Chris Mason56bec292009-03-13 10:10:06 -0400167/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400168 * find an head entry based on bytenr. This returns the delayed ref
Arne Jansend1270cd2011-09-13 15:16:43 +0200169 * head if it was able to find one, or NULL if nothing was in that spot.
170 * If return_bigger is given, the next bigger entry is returned if no exact
Lu Fengqid93527942018-10-11 13:40:38 +0800171 * match is found. But if no bigger one is found then the first node of the
172 * ref head tree will be returned.
Chris Mason56bec292009-03-13 10:10:06 -0400173 */
Liu Bo5c9d0282018-08-23 03:51:49 +0800174static struct btrfs_delayed_ref_head* find_ref_head(
175 struct btrfs_delayed_ref_root *dr, u64 bytenr,
Lu Fengqid93527942018-10-11 13:40:38 +0800176 bool return_bigger)
Chris Mason56bec292009-03-13 10:10:06 -0400177{
Liu Bo5c9d0282018-08-23 03:51:49 +0800178 struct rb_root *root = &dr->href_root.rb_root;
Arne Jansend1270cd2011-09-13 15:16:43 +0200179 struct rb_node *n;
Liu Boc46effa2013-10-14 12:59:45 +0800180 struct btrfs_delayed_ref_head *entry;
Chris Mason56bec292009-03-13 10:10:06 -0400181
Arne Jansend1270cd2011-09-13 15:16:43 +0200182 n = root->rb_node;
183 entry = NULL;
Chris Mason56bec292009-03-13 10:10:06 -0400184 while (n) {
Liu Boc46effa2013-10-14 12:59:45 +0800185 entry = rb_entry(n, struct btrfs_delayed_ref_head, href_node);
Chris Mason56bec292009-03-13 10:10:06 -0400186
Josef Bacikd2788502017-09-29 15:43:57 -0400187 if (bytenr < entry->bytenr)
Chris Mason56bec292009-03-13 10:10:06 -0400188 n = n->rb_left;
Josef Bacikd2788502017-09-29 15:43:57 -0400189 else if (bytenr > entry->bytenr)
Chris Mason56bec292009-03-13 10:10:06 -0400190 n = n->rb_right;
191 else
192 return entry;
193 }
Arne Jansend1270cd2011-09-13 15:16:43 +0200194 if (entry && return_bigger) {
Josef Bacikd2788502017-09-29 15:43:57 -0400195 if (bytenr > entry->bytenr) {
Liu Boc46effa2013-10-14 12:59:45 +0800196 n = rb_next(&entry->href_node);
Arne Jansend1270cd2011-09-13 15:16:43 +0200197 if (!n)
Liu Bo5c9d0282018-08-23 03:51:49 +0800198 n = rb_first_cached(&dr->href_root);
Liu Boc46effa2013-10-14 12:59:45 +0800199 entry = rb_entry(n, struct btrfs_delayed_ref_head,
200 href_node);
Filipe Manana6103fb42014-02-12 15:07:52 +0000201 return entry;
Arne Jansend1270cd2011-09-13 15:16:43 +0200202 }
203 return entry;
204 }
Chris Mason56bec292009-03-13 10:10:06 -0400205 return NULL;
206}
207
Lu Fengqi9e920a62018-10-11 13:40:34 +0800208int btrfs_delayed_ref_lock(struct btrfs_delayed_ref_root *delayed_refs,
Chris Masonc3e69d52009-03-13 10:17:05 -0400209 struct btrfs_delayed_ref_head *head)
Chris Mason56bec292009-03-13 10:10:06 -0400210{
David Sterbaa4666e62018-03-16 02:21:22 +0100211 lockdep_assert_held(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -0400212 if (mutex_trylock(&head->mutex))
213 return 0;
214
Josef Bacikd2788502017-09-29 15:43:57 -0400215 refcount_inc(&head->refs);
Chris Masonc3e69d52009-03-13 10:17:05 -0400216 spin_unlock(&delayed_refs->lock);
217
218 mutex_lock(&head->mutex);
219 spin_lock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -0400220 if (RB_EMPTY_NODE(&head->href_node)) {
Chris Masonc3e69d52009-03-13 10:17:05 -0400221 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -0400222 btrfs_put_delayed_ref_head(head);
Chris Masonc3e69d52009-03-13 10:17:05 -0400223 return -EAGAIN;
224 }
Josef Bacikd2788502017-09-29 15:43:57 -0400225 btrfs_put_delayed_ref_head(head);
Chris Masonc3e69d52009-03-13 10:17:05 -0400226 return 0;
227}
228
Stefan Behrens35a36212013-08-14 18:12:25 +0200229static inline void drop_delayed_ref(struct btrfs_trans_handle *trans,
Josef Bacikae1e2062012-08-07 16:00:32 -0400230 struct btrfs_delayed_ref_root *delayed_refs,
Josef Bacikd7df2c72014-01-23 09:21:38 -0500231 struct btrfs_delayed_ref_head *head,
Josef Bacikae1e2062012-08-07 16:00:32 -0400232 struct btrfs_delayed_ref_node *ref)
233{
David Sterbaa4666e62018-03-16 02:21:22 +0100234 lockdep_assert_held(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +0800235 rb_erase_cached(&ref->ref_node, &head->ref_tree);
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400236 RB_CLEAR_NODE(&ref->ref_node);
Josef Bacikd2788502017-09-29 15:43:57 -0400237 if (!list_empty(&ref->add_list))
238 list_del(&ref->add_list);
Josef Bacikae1e2062012-08-07 16:00:32 -0400239 ref->in_tree = 0;
240 btrfs_put_delayed_ref(ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -0500241 atomic_dec(&delayed_refs->num_entries);
Josef Bacikae1e2062012-08-07 16:00:32 -0400242 if (trans->delayed_ref_updates)
243 trans->delayed_ref_updates--;
244}
245
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100246static bool merge_ref(struct btrfs_trans_handle *trans,
247 struct btrfs_delayed_ref_root *delayed_refs,
248 struct btrfs_delayed_ref_head *head,
249 struct btrfs_delayed_ref_node *ref,
250 u64 seq)
251{
252 struct btrfs_delayed_ref_node *next;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400253 struct rb_node *node = rb_next(&ref->ref_node);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100254 bool done = false;
255
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400256 while (!done && node) {
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100257 int mod;
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100258
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400259 next = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
260 node = rb_next(node);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100261 if (seq && next->seq >= seq)
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400262 break;
Josef Bacik1d148e52017-10-19 14:15:59 -0400263 if (comp_refs(ref, next, false))
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400264 break;
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100265
266 if (ref->action == next->action) {
267 mod = next->ref_mod;
268 } else {
269 if (ref->ref_mod < next->ref_mod) {
270 swap(ref, next);
271 done = true;
272 }
273 mod = -next->ref_mod;
274 }
275
276 drop_delayed_ref(trans, delayed_refs, head, next);
277 ref->ref_mod += mod;
278 if (ref->ref_mod == 0) {
279 drop_delayed_ref(trans, delayed_refs, head, ref);
280 done = true;
281 } else {
282 /*
283 * Can't have multiples of the same ref on a tree block.
284 */
285 WARN_ON(ref->type == BTRFS_TREE_BLOCK_REF_KEY ||
286 ref->type == BTRFS_SHARED_BLOCK_REF_KEY);
287 }
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100288 }
289
290 return done;
291}
292
293void btrfs_merge_delayed_refs(struct btrfs_trans_handle *trans,
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100294 struct btrfs_delayed_ref_root *delayed_refs,
295 struct btrfs_delayed_ref_head *head)
296{
Nikolay Borisovbe97f132018-04-19 11:06:39 +0300297 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100298 struct btrfs_delayed_ref_node *ref;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400299 struct rb_node *node;
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100300 u64 seq = 0;
301
David Sterbaa4666e62018-03-16 02:21:22 +0100302 lockdep_assert_held(&head->lock);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100303
Liu Boe3d03962018-08-23 03:51:50 +0800304 if (RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100305 return;
306
307 /* We don't have too many refs to merge for data. */
308 if (head->is_data)
309 return;
310
311 spin_lock(&fs_info->tree_mod_seq_lock);
312 if (!list_empty(&fs_info->tree_mod_seq_list)) {
313 struct seq_list *elem;
314
315 elem = list_first_entry(&fs_info->tree_mod_seq_list,
316 struct seq_list, list);
317 seq = elem->seq;
318 }
319 spin_unlock(&fs_info->tree_mod_seq_lock);
320
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400321again:
Liu Boe3d03962018-08-23 03:51:50 +0800322 for (node = rb_first_cached(&head->ref_tree); node;
323 node = rb_next(node)) {
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400324 ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100325 if (seq && ref->seq >= seq)
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100326 continue;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400327 if (merge_ref(trans, delayed_refs, head, ref, seq))
328 goto again;
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100329 }
330}
331
Nikolay Borisov41d0bd32018-04-04 15:57:42 +0300332int btrfs_check_delayed_seq(struct btrfs_fs_info *fs_info, u64 seq)
Arne Jansen00f04b82011-09-14 12:37:00 +0200333{
334 struct seq_list *elem;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200335 int ret = 0;
Arne Jansen00f04b82011-09-14 12:37:00 +0200336
Jan Schmidt097b8a72012-06-21 11:08:04 +0200337 spin_lock(&fs_info->tree_mod_seq_lock);
338 if (!list_empty(&fs_info->tree_mod_seq_list)) {
339 elem = list_first_entry(&fs_info->tree_mod_seq_list,
340 struct seq_list, list);
341 if (seq >= elem->seq) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400342 btrfs_debug(fs_info,
Nikolay Borisov41d0bd32018-04-04 15:57:42 +0300343 "holding back delayed_ref %#x.%x, lowest is %#x.%x",
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400344 (u32)(seq >> 32), (u32)seq,
Nikolay Borisov41d0bd32018-04-04 15:57:42 +0300345 (u32)(elem->seq >> 32), (u32)elem->seq);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200346 ret = 1;
347 }
Arne Jansen00f04b82011-09-14 12:37:00 +0200348 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200349
350 spin_unlock(&fs_info->tree_mod_seq_lock);
351 return ret;
Arne Jansen00f04b82011-09-14 12:37:00 +0200352}
353
Lu Fengqi5637c742018-10-11 13:40:33 +0800354struct btrfs_delayed_ref_head *btrfs_select_ref_head(
355 struct btrfs_delayed_ref_root *delayed_refs)
Chris Masonc3e69d52009-03-13 10:17:05 -0400356{
Josef Bacikd7df2c72014-01-23 09:21:38 -0500357 struct btrfs_delayed_ref_head *head;
358 u64 start;
359 bool loop = false;
Chris Masonc3e69d52009-03-13 10:17:05 -0400360
Chris Masonc3e69d52009-03-13 10:17:05 -0400361again:
Josef Bacikd7df2c72014-01-23 09:21:38 -0500362 start = delayed_refs->run_delayed_start;
Lu Fengqid93527942018-10-11 13:40:38 +0800363 head = find_ref_head(delayed_refs, start, true);
Josef Bacikd7df2c72014-01-23 09:21:38 -0500364 if (!head && !loop) {
365 delayed_refs->run_delayed_start = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400366 start = 0;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500367 loop = true;
Lu Fengqid93527942018-10-11 13:40:38 +0800368 head = find_ref_head(delayed_refs, start, true);
Josef Bacikd7df2c72014-01-23 09:21:38 -0500369 if (!head)
370 return NULL;
371 } else if (!head && loop) {
372 return NULL;
Chris Masonc3e69d52009-03-13 10:17:05 -0400373 }
Chris Mason56bec292009-03-13 10:10:06 -0400374
Josef Bacikd7df2c72014-01-23 09:21:38 -0500375 while (head->processing) {
376 struct rb_node *node;
Miao Xie093486c2012-12-19 08:10:10 +0000377
Josef Bacikd7df2c72014-01-23 09:21:38 -0500378 node = rb_next(&head->href_node);
379 if (!node) {
380 if (loop)
381 return NULL;
382 delayed_refs->run_delayed_start = 0;
383 start = 0;
384 loop = true;
385 goto again;
386 }
387 head = rb_entry(node, struct btrfs_delayed_ref_head,
388 href_node);
389 }
390
391 head->processing = 1;
392 WARN_ON(delayed_refs->num_heads_ready == 0);
393 delayed_refs->num_heads_ready--;
Josef Bacikd2788502017-09-29 15:43:57 -0400394 delayed_refs->run_delayed_start = head->bytenr +
395 head->num_bytes;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500396 return head;
Miao Xie093486c2012-12-19 08:10:10 +0000397}
398
Chris Mason56bec292009-03-13 10:10:06 -0400399/*
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800400 * Helper to insert the ref_node to the tail or merge with tail.
401 *
402 * Return 0 for insert.
403 * Return >0 for merge.
404 */
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400405static int insert_delayed_ref(struct btrfs_trans_handle *trans,
406 struct btrfs_delayed_ref_root *root,
407 struct btrfs_delayed_ref_head *href,
408 struct btrfs_delayed_ref_node *ref)
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800409{
410 struct btrfs_delayed_ref_node *exist;
411 int mod;
412 int ret = 0;
413
414 spin_lock(&href->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400415 exist = tree_insert(&href->ref_tree, ref);
416 if (!exist)
417 goto inserted;
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800418
419 /* Now we are sure we can merge */
420 ret = 1;
421 if (exist->action == ref->action) {
422 mod = ref->ref_mod;
423 } else {
424 /* Need to change action */
425 if (exist->ref_mod < ref->ref_mod) {
426 exist->action = ref->action;
427 mod = -exist->ref_mod;
428 exist->ref_mod = ref->ref_mod;
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +0800429 if (ref->action == BTRFS_ADD_DELAYED_REF)
430 list_add_tail(&exist->add_list,
431 &href->ref_add_list);
432 else if (ref->action == BTRFS_DROP_DELAYED_REF) {
433 ASSERT(!list_empty(&exist->add_list));
434 list_del(&exist->add_list);
435 } else {
436 ASSERT(0);
437 }
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800438 } else
439 mod = -ref->ref_mod;
440 }
441 exist->ref_mod += mod;
442
443 /* remove existing tail if its ref_mod is zero */
444 if (exist->ref_mod == 0)
445 drop_delayed_ref(trans, root, href, exist);
446 spin_unlock(&href->lock);
447 return ret;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400448inserted:
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +0800449 if (ref->action == BTRFS_ADD_DELAYED_REF)
450 list_add_tail(&ref->add_list, &href->ref_add_list);
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800451 atomic_inc(&root->num_entries);
452 trans->delayed_ref_updates++;
453 spin_unlock(&href->lock);
454 return ret;
455}
456
457/*
Chris Mason56bec292009-03-13 10:10:06 -0400458 * helper function to update the accounting in the head ref
459 * existing and update must have the same bytenr
460 */
461static noinline void
Josef Bacik12621332015-02-03 07:50:16 -0800462update_existing_head_ref(struct btrfs_delayed_ref_root *delayed_refs,
Josef Bacikd2788502017-09-29 15:43:57 -0400463 struct btrfs_delayed_ref_head *existing,
464 struct btrfs_delayed_ref_head *update,
Omar Sandoval7be07912017-06-06 16:45:30 -0700465 int *old_ref_mod_ret)
Chris Mason56bec292009-03-13 10:10:06 -0400466{
Josef Bacik12621332015-02-03 07:50:16 -0800467 int old_ref_mod;
Chris Mason56bec292009-03-13 10:10:06 -0400468
Josef Bacikd2788502017-09-29 15:43:57 -0400469 BUG_ON(existing->is_data != update->is_data);
Chris Mason56bec292009-03-13 10:10:06 -0400470
Josef Bacikd2788502017-09-29 15:43:57 -0400471 spin_lock(&existing->lock);
472 if (update->must_insert_reserved) {
Chris Mason56bec292009-03-13 10:10:06 -0400473 /* if the extent was freed and then
474 * reallocated before the delayed ref
475 * entries were processed, we can end up
476 * with an existing head ref without
477 * the must_insert_reserved flag set.
478 * Set it again here
479 */
Josef Bacikd2788502017-09-29 15:43:57 -0400480 existing->must_insert_reserved = update->must_insert_reserved;
Chris Mason56bec292009-03-13 10:10:06 -0400481
482 /*
483 * update the num_bytes so we make sure the accounting
484 * is done correctly
485 */
486 existing->num_bytes = update->num_bytes;
487
488 }
489
Josef Bacikd2788502017-09-29 15:43:57 -0400490 if (update->extent_op) {
491 if (!existing->extent_op) {
492 existing->extent_op = update->extent_op;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400493 } else {
Josef Bacikd2788502017-09-29 15:43:57 -0400494 if (update->extent_op->update_key) {
495 memcpy(&existing->extent_op->key,
496 &update->extent_op->key,
497 sizeof(update->extent_op->key));
498 existing->extent_op->update_key = true;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400499 }
Josef Bacikd2788502017-09-29 15:43:57 -0400500 if (update->extent_op->update_flags) {
501 existing->extent_op->flags_to_set |=
502 update->extent_op->flags_to_set;
503 existing->extent_op->update_flags = true;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400504 }
Josef Bacikd2788502017-09-29 15:43:57 -0400505 btrfs_free_delayed_extent_op(update->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400506 }
507 }
Chris Mason56bec292009-03-13 10:10:06 -0400508 /*
Josef Bacikd7df2c72014-01-23 09:21:38 -0500509 * update the reference mod on the head to reflect this new operation,
510 * only need the lock for this case cause we could be processing it
511 * currently, for refs we just added we know we're a-ok.
Chris Mason56bec292009-03-13 10:10:06 -0400512 */
Josef Bacikd2788502017-09-29 15:43:57 -0400513 old_ref_mod = existing->total_ref_mod;
Omar Sandoval7be07912017-06-06 16:45:30 -0700514 if (old_ref_mod_ret)
515 *old_ref_mod_ret = old_ref_mod;
Chris Mason56bec292009-03-13 10:10:06 -0400516 existing->ref_mod += update->ref_mod;
Josef Bacikd2788502017-09-29 15:43:57 -0400517 existing->total_ref_mod += update->ref_mod;
Josef Bacik12621332015-02-03 07:50:16 -0800518
519 /*
520 * If we are going to from a positive ref mod to a negative or vice
521 * versa we need to make sure to adjust pending_csums accordingly.
522 */
Josef Bacikd2788502017-09-29 15:43:57 -0400523 if (existing->is_data) {
524 if (existing->total_ref_mod >= 0 && old_ref_mod < 0)
Josef Bacik12621332015-02-03 07:50:16 -0800525 delayed_refs->pending_csums -= existing->num_bytes;
Josef Bacikd2788502017-09-29 15:43:57 -0400526 if (existing->total_ref_mod < 0 && old_ref_mod >= 0)
Josef Bacik12621332015-02-03 07:50:16 -0800527 delayed_refs->pending_csums += existing->num_bytes;
528 }
Josef Bacikd2788502017-09-29 15:43:57 -0400529 spin_unlock(&existing->lock);
Chris Mason56bec292009-03-13 10:10:06 -0400530}
531
Nikolay Borisova2e569b2018-04-24 17:18:22 +0300532static void init_delayed_ref_head(struct btrfs_delayed_ref_head *head_ref,
533 struct btrfs_qgroup_extent_record *qrecord,
534 u64 bytenr, u64 num_bytes, u64 ref_root,
535 u64 reserved, int action, bool is_data,
536 bool is_system)
537{
538 int count_mod = 1;
539 int must_insert_reserved = 0;
540
541 /* If reserved is provided, it must be a data extent. */
542 BUG_ON(!is_data && reserved);
543
544 /*
545 * The head node stores the sum of all the mods, so dropping a ref
546 * should drop the sum in the head node by one.
547 */
548 if (action == BTRFS_UPDATE_DELAYED_HEAD)
549 count_mod = 0;
550 else if (action == BTRFS_DROP_DELAYED_REF)
551 count_mod = -1;
552
553 /*
554 * BTRFS_ADD_DELAYED_EXTENT means that we need to update the reserved
555 * accounting when the extent is finally added, or if a later
556 * modification deletes the delayed ref without ever inserting the
557 * extent into the extent allocation tree. ref->must_insert_reserved
558 * is the flag used to record that accounting mods are required.
559 *
560 * Once we record must_insert_reserved, switch the action to
561 * BTRFS_ADD_DELAYED_REF because other special casing is not required.
562 */
563 if (action == BTRFS_ADD_DELAYED_EXTENT)
564 must_insert_reserved = 1;
565 else
566 must_insert_reserved = 0;
567
568 refcount_set(&head_ref->refs, 1);
569 head_ref->bytenr = bytenr;
570 head_ref->num_bytes = num_bytes;
571 head_ref->ref_mod = count_mod;
572 head_ref->must_insert_reserved = must_insert_reserved;
573 head_ref->is_data = is_data;
574 head_ref->is_system = is_system;
Liu Boe3d03962018-08-23 03:51:50 +0800575 head_ref->ref_tree = RB_ROOT_CACHED;
Nikolay Borisova2e569b2018-04-24 17:18:22 +0300576 INIT_LIST_HEAD(&head_ref->ref_add_list);
577 RB_CLEAR_NODE(&head_ref->href_node);
578 head_ref->processing = 0;
579 head_ref->total_ref_mod = count_mod;
580 head_ref->qgroup_reserved = 0;
581 head_ref->qgroup_ref_root = 0;
582 spin_lock_init(&head_ref->lock);
583 mutex_init(&head_ref->mutex);
584
585 if (qrecord) {
586 if (ref_root && reserved) {
587 head_ref->qgroup_ref_root = ref_root;
588 head_ref->qgroup_reserved = reserved;
589 }
590
591 qrecord->bytenr = bytenr;
592 qrecord->num_bytes = num_bytes;
593 qrecord->old_roots = NULL;
594 }
595}
596
Chris Mason56bec292009-03-13 10:10:06 -0400597/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400598 * helper function to actually insert a head node into the rbtree.
Chris Mason56bec292009-03-13 10:10:06 -0400599 * this does all the dirty work in terms of maintaining the correct
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400600 * overall modification count.
Chris Mason56bec292009-03-13 10:10:06 -0400601 */
Josef Bacikd7df2c72014-01-23 09:21:38 -0500602static noinline struct btrfs_delayed_ref_head *
Nikolay Borisov1acda0c2018-04-19 11:06:37 +0300603add_delayed_ref_head(struct btrfs_trans_handle *trans,
Josef Bacikd2788502017-09-29 15:43:57 -0400604 struct btrfs_delayed_ref_head *head_ref,
Qu Wenruo3368d002015-04-16 14:34:17 +0800605 struct btrfs_qgroup_extent_record *qrecord,
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300606 int action, int *qrecord_inserted_ret,
Omar Sandoval7be07912017-06-06 16:45:30 -0700607 int *old_ref_mod, int *new_ref_mod)
Chris Mason56bec292009-03-13 10:10:06 -0400608{
Josef Bacikd7df2c72014-01-23 09:21:38 -0500609 struct btrfs_delayed_ref_head *existing;
Chris Mason56bec292009-03-13 10:10:06 -0400610 struct btrfs_delayed_ref_root *delayed_refs;
Qu Wenruofb235dc2017-02-15 10:43:03 +0800611 int qrecord_inserted = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400612
Chris Mason56bec292009-03-13 10:10:06 -0400613 delayed_refs = &trans->transaction->delayed_refs;
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300614
Qu Wenruo3368d002015-04-16 14:34:17 +0800615 /* Record qgroup extent info if provided */
616 if (qrecord) {
Nikolay Borisoveb86ec72018-04-24 17:18:23 +0300617 if (btrfs_qgroup_trace_extent_nolock(trans->fs_info,
Qu Wenruocb93b522016-08-15 10:36:50 +0800618 delayed_refs, qrecord))
Qu Wenruo3368d002015-04-16 14:34:17 +0800619 kfree(qrecord);
Qu Wenruofb235dc2017-02-15 10:43:03 +0800620 else
621 qrecord_inserted = 1;
Qu Wenruo3368d002015-04-16 14:34:17 +0800622 }
623
Nikolay Borisov1acda0c2018-04-19 11:06:37 +0300624 trace_add_delayed_ref_head(trans->fs_info, head_ref, action);
liubo1abe9b82011-03-24 11:18:59 +0000625
Josef Bacikd7df2c72014-01-23 09:21:38 -0500626 existing = htree_insert(&delayed_refs->href_root,
627 &head_ref->href_node);
Chris Mason56bec292009-03-13 10:10:06 -0400628 if (existing) {
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300629 WARN_ON(qrecord && head_ref->qgroup_ref_root
630 && head_ref->qgroup_reserved
631 && existing->qgroup_ref_root
Qu Wenruo5846a3c2015-10-26 14:11:18 +0800632 && existing->qgroup_reserved);
Josef Bacikd2788502017-09-29 15:43:57 -0400633 update_existing_head_ref(delayed_refs, existing, head_ref,
Omar Sandoval7be07912017-06-06 16:45:30 -0700634 old_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -0400635 /*
636 * we've updated the existing ref, free the newly
637 * allocated ref
638 */
Miao Xie78a61842012-11-21 02:21:28 +0000639 kmem_cache_free(btrfs_delayed_ref_head_cachep, head_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -0500640 head_ref = existing;
Chris Mason56bec292009-03-13 10:10:06 -0400641 } else {
Omar Sandoval7be07912017-06-06 16:45:30 -0700642 if (old_ref_mod)
643 *old_ref_mod = 0;
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300644 if (head_ref->is_data && head_ref->ref_mod < 0)
645 delayed_refs->pending_csums += head_ref->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400646 delayed_refs->num_heads++;
647 delayed_refs->num_heads_ready++;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500648 atomic_inc(&delayed_refs->num_entries);
Chris Mason56bec292009-03-13 10:10:06 -0400649 trans->delayed_ref_updates++;
650 }
Qu Wenruofb235dc2017-02-15 10:43:03 +0800651 if (qrecord_inserted_ret)
652 *qrecord_inserted_ret = qrecord_inserted;
Omar Sandoval7be07912017-06-06 16:45:30 -0700653 if (new_ref_mod)
654 *new_ref_mod = head_ref->total_ref_mod;
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300655
Josef Bacikd7df2c72014-01-23 09:21:38 -0500656 return head_ref;
Chris Mason56bec292009-03-13 10:10:06 -0400657}
658
659/*
Nikolay Borisovcb49a872018-04-24 17:18:17 +0300660 * init_delayed_ref_common - Initialize the structure which represents a
661 * modification to a an extent.
662 *
663 * @fs_info: Internal to the mounted filesystem mount structure.
664 *
665 * @ref: The structure which is going to be initialized.
666 *
667 * @bytenr: The logical address of the extent for which a modification is
668 * going to be recorded.
669 *
670 * @num_bytes: Size of the extent whose modification is being recorded.
671 *
672 * @ref_root: The id of the root where this modification has originated, this
673 * can be either one of the well-known metadata trees or the
674 * subvolume id which references this extent.
675 *
676 * @action: Can be one of BTRFS_ADD_DELAYED_REF/BTRFS_DROP_DELAYED_REF or
677 * BTRFS_ADD_DELAYED_EXTENT
678 *
679 * @ref_type: Holds the type of the extent which is being recorded, can be
680 * one of BTRFS_SHARED_BLOCK_REF_KEY/BTRFS_TREE_BLOCK_REF_KEY
681 * when recording a metadata extent or BTRFS_SHARED_DATA_REF_KEY/
682 * BTRFS_EXTENT_DATA_REF_KEY when recording data extent
683 */
684static void init_delayed_ref_common(struct btrfs_fs_info *fs_info,
685 struct btrfs_delayed_ref_node *ref,
686 u64 bytenr, u64 num_bytes, u64 ref_root,
687 int action, u8 ref_type)
688{
689 u64 seq = 0;
690
691 if (action == BTRFS_ADD_DELAYED_EXTENT)
692 action = BTRFS_ADD_DELAYED_REF;
693
694 if (is_fstree(ref_root))
695 seq = atomic64_read(&fs_info->tree_mod_seq);
696
697 refcount_set(&ref->refs, 1);
698 ref->bytenr = bytenr;
699 ref->num_bytes = num_bytes;
700 ref->ref_mod = 1;
701 ref->action = action;
702 ref->is_head = 0;
703 ref->in_tree = 1;
704 ref->seq = seq;
705 ref->type = ref_type;
706 RB_CLEAR_NODE(&ref->ref_node);
707 INIT_LIST_HEAD(&ref->add_list);
708}
709
710/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400711 * add a delayed tree ref. This does all of the accounting required
Chris Mason56bec292009-03-13 10:10:06 -0400712 * to make sure the delayed ref is eventually processed before this
713 * transaction commits.
714 */
Nikolay Borisov44e1c472018-06-20 15:48:53 +0300715int btrfs_add_delayed_tree_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400716 u64 bytenr, u64 num_bytes, u64 parent,
717 u64 ref_root, int level, int action,
Omar Sandoval7be07912017-06-06 16:45:30 -0700718 struct btrfs_delayed_extent_op *extent_op,
719 int *old_ref_mod, int *new_ref_mod)
Chris Mason56bec292009-03-13 10:10:06 -0400720{
Nikolay Borisov44e1c472018-06-20 15:48:53 +0300721 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400722 struct btrfs_delayed_tree_ref *ref;
Chris Mason56bec292009-03-13 10:10:06 -0400723 struct btrfs_delayed_ref_head *head_ref;
724 struct btrfs_delayed_ref_root *delayed_refs;
Qu Wenruo3368d002015-04-16 14:34:17 +0800725 struct btrfs_qgroup_extent_record *record = NULL;
Qu Wenruofb235dc2017-02-15 10:43:03 +0800726 int qrecord_inserted;
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300727 bool is_system = (ref_root == BTRFS_CHUNK_TREE_OBJECTID);
Nikolay Borisov70d64002018-04-24 17:18:20 +0300728 int ret;
729 u8 ref_type;
Chris Mason56bec292009-03-13 10:10:06 -0400730
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400731 BUG_ON(extent_op && extent_op->is_data);
Miao Xie78a61842012-11-21 02:21:28 +0000732 ref = kmem_cache_alloc(btrfs_delayed_tree_ref_cachep, GFP_NOFS);
Chris Mason56bec292009-03-13 10:10:06 -0400733 if (!ref)
734 return -ENOMEM;
735
Nikolay Borisov7b4284d2018-06-20 18:43:12 +0300736 head_ref = kmem_cache_alloc(btrfs_delayed_ref_head_cachep, GFP_NOFS);
737 if (!head_ref) {
738 kmem_cache_free(btrfs_delayed_tree_ref_cachep, ref);
739 return -ENOMEM;
740 }
741
742 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) &&
743 is_fstree(ref_root)) {
744 record = kmalloc(sizeof(*record), GFP_NOFS);
745 if (!record) {
746 kmem_cache_free(btrfs_delayed_tree_ref_cachep, ref);
747 kmem_cache_free(btrfs_delayed_ref_head_cachep, head_ref);
748 return -ENOMEM;
749 }
750 }
751
Nikolay Borisov70d64002018-04-24 17:18:20 +0300752 if (parent)
753 ref_type = BTRFS_SHARED_BLOCK_REF_KEY;
754 else
755 ref_type = BTRFS_TREE_BLOCK_REF_KEY;
Nikolay Borisov7b4284d2018-06-20 18:43:12 +0300756
Nikolay Borisov70d64002018-04-24 17:18:20 +0300757 init_delayed_ref_common(fs_info, &ref->node, bytenr, num_bytes,
758 ref_root, action, ref_type);
759 ref->root = ref_root;
760 ref->parent = parent;
761 ref->level = level;
762
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300763 init_delayed_ref_head(head_ref, record, bytenr, num_bytes,
764 ref_root, 0, action, false, is_system);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400765 head_ref->extent_op = extent_op;
766
Chris Mason56bec292009-03-13 10:10:06 -0400767 delayed_refs = &trans->transaction->delayed_refs;
768 spin_lock(&delayed_refs->lock);
769
770 /*
771 * insert both the head node and the new ref without dropping
772 * the spin lock
773 */
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300774 head_ref = add_delayed_ref_head(trans, head_ref, record,
775 action, &qrecord_inserted,
Nikolay Borisov5e388e92018-04-18 09:41:54 +0300776 old_ref_mod, new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -0400777
Nikolay Borisov70d64002018-04-24 17:18:20 +0300778 ret = insert_delayed_ref(trans, delayed_refs, head_ref, &ref->node);
Chris Mason56bec292009-03-13 10:10:06 -0400779 spin_unlock(&delayed_refs->lock);
Jan Schmidt95a06072012-05-29 17:06:54 +0200780
Nikolay Borisov70d64002018-04-24 17:18:20 +0300781 trace_add_delayed_tree_ref(fs_info, &ref->node, ref,
782 action == BTRFS_ADD_DELAYED_EXTENT ?
783 BTRFS_ADD_DELAYED_REF : action);
784 if (ret > 0)
785 kmem_cache_free(btrfs_delayed_tree_ref_cachep, ref);
786
Qu Wenruofb235dc2017-02-15 10:43:03 +0800787 if (qrecord_inserted)
Nikolay Borisov952bd3db2018-01-29 15:53:01 +0200788 btrfs_qgroup_trace_extent_post(fs_info, record);
789
Chris Mason56bec292009-03-13 10:10:06 -0400790 return 0;
791}
792
793/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400794 * add a delayed data ref. it's similar to btrfs_add_delayed_tree_ref.
795 */
Nikolay Borisov88a979c2018-06-20 15:48:54 +0300796int btrfs_add_delayed_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400797 u64 bytenr, u64 num_bytes,
798 u64 parent, u64 ref_root,
Omar Sandoval7be07912017-06-06 16:45:30 -0700799 u64 owner, u64 offset, u64 reserved, int action,
800 int *old_ref_mod, int *new_ref_mod)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400801{
Nikolay Borisov88a979c2018-06-20 15:48:54 +0300802 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400803 struct btrfs_delayed_data_ref *ref;
804 struct btrfs_delayed_ref_head *head_ref;
805 struct btrfs_delayed_ref_root *delayed_refs;
Qu Wenruo3368d002015-04-16 14:34:17 +0800806 struct btrfs_qgroup_extent_record *record = NULL;
Qu Wenruofb235dc2017-02-15 10:43:03 +0800807 int qrecord_inserted;
Nikolay Borisovcd7f9692018-04-24 17:18:21 +0300808 int ret;
809 u8 ref_type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400810
Miao Xie78a61842012-11-21 02:21:28 +0000811 ref = kmem_cache_alloc(btrfs_delayed_data_ref_cachep, GFP_NOFS);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400812 if (!ref)
813 return -ENOMEM;
814
Nikolay Borisovcd7f9692018-04-24 17:18:21 +0300815 if (parent)
816 ref_type = BTRFS_SHARED_DATA_REF_KEY;
817 else
818 ref_type = BTRFS_EXTENT_DATA_REF_KEY;
819 init_delayed_ref_common(fs_info, &ref->node, bytenr, num_bytes,
820 ref_root, action, ref_type);
821 ref->root = ref_root;
822 ref->parent = parent;
823 ref->objectid = owner;
824 ref->offset = offset;
825
826
Miao Xie78a61842012-11-21 02:21:28 +0000827 head_ref = kmem_cache_alloc(btrfs_delayed_ref_head_cachep, GFP_NOFS);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400828 if (!head_ref) {
Miao Xie78a61842012-11-21 02:21:28 +0000829 kmem_cache_free(btrfs_delayed_data_ref_cachep, ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400830 return -ENOMEM;
831 }
832
Josef Bacikafcdd122016-09-02 15:40:02 -0400833 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) &&
834 is_fstree(ref_root)) {
Qu Wenruo3368d002015-04-16 14:34:17 +0800835 record = kmalloc(sizeof(*record), GFP_NOFS);
836 if (!record) {
837 kmem_cache_free(btrfs_delayed_data_ref_cachep, ref);
838 kmem_cache_free(btrfs_delayed_ref_head_cachep,
839 head_ref);
840 return -ENOMEM;
841 }
842 }
843
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300844 init_delayed_ref_head(head_ref, record, bytenr, num_bytes, ref_root,
845 reserved, action, true, false);
Jeff Mahoneyfef394f2016-12-13 14:39:34 -0500846 head_ref->extent_op = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400847
848 delayed_refs = &trans->transaction->delayed_refs;
849 spin_lock(&delayed_refs->lock);
850
851 /*
852 * insert both the head node and the new ref without dropping
853 * the spin lock
854 */
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300855 head_ref = add_delayed_ref_head(trans, head_ref, record,
856 action, &qrecord_inserted,
Omar Sandoval7be07912017-06-06 16:45:30 -0700857 old_ref_mod, new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400858
Nikolay Borisovcd7f9692018-04-24 17:18:21 +0300859 ret = insert_delayed_ref(trans, delayed_refs, head_ref, &ref->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400860 spin_unlock(&delayed_refs->lock);
Jan Schmidt95a06072012-05-29 17:06:54 +0200861
Nikolay Borisovcd7f9692018-04-24 17:18:21 +0300862 trace_add_delayed_data_ref(trans->fs_info, &ref->node, ref,
863 action == BTRFS_ADD_DELAYED_EXTENT ?
864 BTRFS_ADD_DELAYED_REF : action);
865 if (ret > 0)
866 kmem_cache_free(btrfs_delayed_data_ref_cachep, ref);
867
868
Qu Wenruofb235dc2017-02-15 10:43:03 +0800869 if (qrecord_inserted)
870 return btrfs_qgroup_trace_extent_post(fs_info, record);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400871 return 0;
872}
873
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200874int btrfs_add_delayed_extent_op(struct btrfs_fs_info *fs_info,
875 struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400876 u64 bytenr, u64 num_bytes,
877 struct btrfs_delayed_extent_op *extent_op)
878{
879 struct btrfs_delayed_ref_head *head_ref;
880 struct btrfs_delayed_ref_root *delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400881
Miao Xie78a61842012-11-21 02:21:28 +0000882 head_ref = kmem_cache_alloc(btrfs_delayed_ref_head_cachep, GFP_NOFS);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400883 if (!head_ref)
884 return -ENOMEM;
885
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300886 init_delayed_ref_head(head_ref, NULL, bytenr, num_bytes, 0, 0,
887 BTRFS_UPDATE_DELAYED_HEAD, extent_op->is_data,
888 false);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400889 head_ref->extent_op = extent_op;
890
891 delayed_refs = &trans->transaction->delayed_refs;
892 spin_lock(&delayed_refs->lock);
893
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300894 add_delayed_ref_head(trans, head_ref, NULL, BTRFS_UPDATE_DELAYED_HEAD,
895 NULL, NULL, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400896
897 spin_unlock(&delayed_refs->lock);
898 return 0;
899}
900
901/*
Chris Mason1887be62009-03-13 10:11:24 -0400902 * this does a simple search for the head node for a given extent.
903 * It must be called with the delayed ref spinlock held, and it returns
904 * the head node if any where found, or NULL if not.
905 */
906struct btrfs_delayed_ref_head *
Liu Bof72ad18e2017-01-30 12:24:37 -0800907btrfs_find_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs, u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -0400908{
Lu Fengqid93527942018-10-11 13:40:38 +0800909 return find_ref_head(delayed_refs, bytenr, false);
Chris Mason1887be62009-03-13 10:11:24 -0400910}
Miao Xie78a61842012-11-21 02:21:28 +0000911
David Sterbae67c7182018-02-19 17:24:18 +0100912void __cold btrfs_delayed_ref_exit(void)
Miao Xie78a61842012-11-21 02:21:28 +0000913{
Kinglong Mee5598e902016-01-29 21:36:35 +0800914 kmem_cache_destroy(btrfs_delayed_ref_head_cachep);
915 kmem_cache_destroy(btrfs_delayed_tree_ref_cachep);
916 kmem_cache_destroy(btrfs_delayed_data_ref_cachep);
917 kmem_cache_destroy(btrfs_delayed_extent_op_cachep);
Miao Xie78a61842012-11-21 02:21:28 +0000918}
919
Liu Bof5c29bd2017-11-02 17:21:50 -0600920int __init btrfs_delayed_ref_init(void)
Miao Xie78a61842012-11-21 02:21:28 +0000921{
922 btrfs_delayed_ref_head_cachep = kmem_cache_create(
923 "btrfs_delayed_ref_head",
924 sizeof(struct btrfs_delayed_ref_head), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300925 SLAB_MEM_SPREAD, NULL);
Miao Xie78a61842012-11-21 02:21:28 +0000926 if (!btrfs_delayed_ref_head_cachep)
927 goto fail;
928
929 btrfs_delayed_tree_ref_cachep = kmem_cache_create(
930 "btrfs_delayed_tree_ref",
931 sizeof(struct btrfs_delayed_tree_ref), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300932 SLAB_MEM_SPREAD, NULL);
Miao Xie78a61842012-11-21 02:21:28 +0000933 if (!btrfs_delayed_tree_ref_cachep)
934 goto fail;
935
936 btrfs_delayed_data_ref_cachep = kmem_cache_create(
937 "btrfs_delayed_data_ref",
938 sizeof(struct btrfs_delayed_data_ref), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300939 SLAB_MEM_SPREAD, NULL);
Miao Xie78a61842012-11-21 02:21:28 +0000940 if (!btrfs_delayed_data_ref_cachep)
941 goto fail;
942
943 btrfs_delayed_extent_op_cachep = kmem_cache_create(
944 "btrfs_delayed_extent_op",
945 sizeof(struct btrfs_delayed_extent_op), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300946 SLAB_MEM_SPREAD, NULL);
Miao Xie78a61842012-11-21 02:21:28 +0000947 if (!btrfs_delayed_extent_op_cachep)
948 goto fail;
949
950 return 0;
951fail:
952 btrfs_delayed_ref_exit();
953 return -ENOMEM;
954}