blob: 59a8c0565a244ad14daf17516bc90be97a29c8b6 [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
171 * match is found.
Chris Mason56bec292009-03-13 10:10:06 -0400172 */
Liu Bo5c9d0282018-08-23 03:51:49 +0800173static struct btrfs_delayed_ref_head* find_ref_head(
174 struct btrfs_delayed_ref_root *dr, u64 bytenr,
175 int return_bigger)
Chris Mason56bec292009-03-13 10:10:06 -0400176{
Liu Bo5c9d0282018-08-23 03:51:49 +0800177 struct rb_root *root = &dr->href_root.rb_root;
Arne Jansend1270cd2011-09-13 15:16:43 +0200178 struct rb_node *n;
Liu Boc46effa2013-10-14 12:59:45 +0800179 struct btrfs_delayed_ref_head *entry;
Chris Mason56bec292009-03-13 10:10:06 -0400180
Arne Jansend1270cd2011-09-13 15:16:43 +0200181 n = root->rb_node;
182 entry = NULL;
Chris Mason56bec292009-03-13 10:10:06 -0400183 while (n) {
Liu Boc46effa2013-10-14 12:59:45 +0800184 entry = rb_entry(n, struct btrfs_delayed_ref_head, href_node);
Chris Mason56bec292009-03-13 10:10:06 -0400185
Josef Bacikd2788502017-09-29 15:43:57 -0400186 if (bytenr < entry->bytenr)
Chris Mason56bec292009-03-13 10:10:06 -0400187 n = n->rb_left;
Josef Bacikd2788502017-09-29 15:43:57 -0400188 else if (bytenr > entry->bytenr)
Chris Mason56bec292009-03-13 10:10:06 -0400189 n = n->rb_right;
190 else
191 return entry;
192 }
Arne Jansend1270cd2011-09-13 15:16:43 +0200193 if (entry && return_bigger) {
Josef Bacikd2788502017-09-29 15:43:57 -0400194 if (bytenr > entry->bytenr) {
Liu Boc46effa2013-10-14 12:59:45 +0800195 n = rb_next(&entry->href_node);
Arne Jansend1270cd2011-09-13 15:16:43 +0200196 if (!n)
Liu Bo5c9d0282018-08-23 03:51:49 +0800197 n = rb_first_cached(&dr->href_root);
Liu Boc46effa2013-10-14 12:59:45 +0800198 entry = rb_entry(n, struct btrfs_delayed_ref_head,
199 href_node);
Filipe Manana6103fb42014-02-12 15:07:52 +0000200 return entry;
Arne Jansend1270cd2011-09-13 15:16:43 +0200201 }
202 return entry;
203 }
Chris Mason56bec292009-03-13 10:10:06 -0400204 return NULL;
205}
206
Chris Masonc3e69d52009-03-13 10:17:05 -0400207int btrfs_delayed_ref_lock(struct btrfs_trans_handle *trans,
208 struct btrfs_delayed_ref_head *head)
Chris Mason56bec292009-03-13 10:10:06 -0400209{
Chris Masonc3e69d52009-03-13 10:17:05 -0400210 struct btrfs_delayed_ref_root *delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -0400211
Chris Masonc3e69d52009-03-13 10:17:05 -0400212 delayed_refs = &trans->transaction->delayed_refs;
David Sterbaa4666e62018-03-16 02:21:22 +0100213 lockdep_assert_held(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -0400214 if (mutex_trylock(&head->mutex))
215 return 0;
216
Josef Bacikd2788502017-09-29 15:43:57 -0400217 refcount_inc(&head->refs);
Chris Masonc3e69d52009-03-13 10:17:05 -0400218 spin_unlock(&delayed_refs->lock);
219
220 mutex_lock(&head->mutex);
221 spin_lock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -0400222 if (RB_EMPTY_NODE(&head->href_node)) {
Chris Masonc3e69d52009-03-13 10:17:05 -0400223 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -0400224 btrfs_put_delayed_ref_head(head);
Chris Masonc3e69d52009-03-13 10:17:05 -0400225 return -EAGAIN;
226 }
Josef Bacikd2788502017-09-29 15:43:57 -0400227 btrfs_put_delayed_ref_head(head);
Chris Masonc3e69d52009-03-13 10:17:05 -0400228 return 0;
229}
230
Stefan Behrens35a36212013-08-14 18:12:25 +0200231static inline void drop_delayed_ref(struct btrfs_trans_handle *trans,
Josef Bacikae1e2062012-08-07 16:00:32 -0400232 struct btrfs_delayed_ref_root *delayed_refs,
Josef Bacikd7df2c72014-01-23 09:21:38 -0500233 struct btrfs_delayed_ref_head *head,
Josef Bacikae1e2062012-08-07 16:00:32 -0400234 struct btrfs_delayed_ref_node *ref)
235{
David Sterbaa4666e62018-03-16 02:21:22 +0100236 lockdep_assert_held(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +0800237 rb_erase_cached(&ref->ref_node, &head->ref_tree);
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400238 RB_CLEAR_NODE(&ref->ref_node);
Josef Bacikd2788502017-09-29 15:43:57 -0400239 if (!list_empty(&ref->add_list))
240 list_del(&ref->add_list);
Josef Bacikae1e2062012-08-07 16:00:32 -0400241 ref->in_tree = 0;
242 btrfs_put_delayed_ref(ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -0500243 atomic_dec(&delayed_refs->num_entries);
Josef Bacikae1e2062012-08-07 16:00:32 -0400244 if (trans->delayed_ref_updates)
245 trans->delayed_ref_updates--;
246}
247
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100248static bool merge_ref(struct btrfs_trans_handle *trans,
249 struct btrfs_delayed_ref_root *delayed_refs,
250 struct btrfs_delayed_ref_head *head,
251 struct btrfs_delayed_ref_node *ref,
252 u64 seq)
253{
254 struct btrfs_delayed_ref_node *next;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400255 struct rb_node *node = rb_next(&ref->ref_node);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100256 bool done = false;
257
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400258 while (!done && node) {
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100259 int mod;
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100260
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400261 next = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
262 node = rb_next(node);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100263 if (seq && next->seq >= seq)
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400264 break;
Josef Bacik1d148e52017-10-19 14:15:59 -0400265 if (comp_refs(ref, next, false))
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400266 break;
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100267
268 if (ref->action == next->action) {
269 mod = next->ref_mod;
270 } else {
271 if (ref->ref_mod < next->ref_mod) {
272 swap(ref, next);
273 done = true;
274 }
275 mod = -next->ref_mod;
276 }
277
278 drop_delayed_ref(trans, delayed_refs, head, next);
279 ref->ref_mod += mod;
280 if (ref->ref_mod == 0) {
281 drop_delayed_ref(trans, delayed_refs, head, ref);
282 done = true;
283 } else {
284 /*
285 * Can't have multiples of the same ref on a tree block.
286 */
287 WARN_ON(ref->type == BTRFS_TREE_BLOCK_REF_KEY ||
288 ref->type == BTRFS_SHARED_BLOCK_REF_KEY);
289 }
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100290 }
291
292 return done;
293}
294
295void btrfs_merge_delayed_refs(struct btrfs_trans_handle *trans,
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100296 struct btrfs_delayed_ref_root *delayed_refs,
297 struct btrfs_delayed_ref_head *head)
298{
Nikolay Borisovbe97f132018-04-19 11:06:39 +0300299 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100300 struct btrfs_delayed_ref_node *ref;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400301 struct rb_node *node;
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100302 u64 seq = 0;
303
David Sterbaa4666e62018-03-16 02:21:22 +0100304 lockdep_assert_held(&head->lock);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100305
Liu Boe3d03962018-08-23 03:51:50 +0800306 if (RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100307 return;
308
309 /* We don't have too many refs to merge for data. */
310 if (head->is_data)
311 return;
312
313 spin_lock(&fs_info->tree_mod_seq_lock);
314 if (!list_empty(&fs_info->tree_mod_seq_list)) {
315 struct seq_list *elem;
316
317 elem = list_first_entry(&fs_info->tree_mod_seq_list,
318 struct seq_list, list);
319 seq = elem->seq;
320 }
321 spin_unlock(&fs_info->tree_mod_seq_lock);
322
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400323again:
Liu Boe3d03962018-08-23 03:51:50 +0800324 for (node = rb_first_cached(&head->ref_tree); node;
325 node = rb_next(node)) {
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400326 ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100327 if (seq && ref->seq >= seq)
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100328 continue;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400329 if (merge_ref(trans, delayed_refs, head, ref, seq))
330 goto again;
Filipe Manana2c3cf7d2015-10-22 09:47:34 +0100331 }
332}
333
Nikolay Borisov41d0bd32018-04-04 15:57:42 +0300334int btrfs_check_delayed_seq(struct btrfs_fs_info *fs_info, u64 seq)
Arne Jansen00f04b82011-09-14 12:37:00 +0200335{
336 struct seq_list *elem;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200337 int ret = 0;
Arne Jansen00f04b82011-09-14 12:37:00 +0200338
Jan Schmidt097b8a72012-06-21 11:08:04 +0200339 spin_lock(&fs_info->tree_mod_seq_lock);
340 if (!list_empty(&fs_info->tree_mod_seq_list)) {
341 elem = list_first_entry(&fs_info->tree_mod_seq_list,
342 struct seq_list, list);
343 if (seq >= elem->seq) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400344 btrfs_debug(fs_info,
Nikolay Borisov41d0bd32018-04-04 15:57:42 +0300345 "holding back delayed_ref %#x.%x, lowest is %#x.%x",
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400346 (u32)(seq >> 32), (u32)seq,
Nikolay Borisov41d0bd32018-04-04 15:57:42 +0300347 (u32)(elem->seq >> 32), (u32)elem->seq);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200348 ret = 1;
349 }
Arne Jansen00f04b82011-09-14 12:37:00 +0200350 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200351
352 spin_unlock(&fs_info->tree_mod_seq_lock);
353 return ret;
Arne Jansen00f04b82011-09-14 12:37:00 +0200354}
355
Lu Fengqi5637c742018-10-11 13:40:33 +0800356struct btrfs_delayed_ref_head *btrfs_select_ref_head(
357 struct btrfs_delayed_ref_root *delayed_refs)
Chris Masonc3e69d52009-03-13 10:17:05 -0400358{
Josef Bacikd7df2c72014-01-23 09:21:38 -0500359 struct btrfs_delayed_ref_head *head;
360 u64 start;
361 bool loop = false;
Chris Masonc3e69d52009-03-13 10:17:05 -0400362
Chris Masonc3e69d52009-03-13 10:17:05 -0400363again:
Josef Bacikd7df2c72014-01-23 09:21:38 -0500364 start = delayed_refs->run_delayed_start;
Liu Bo5c9d0282018-08-23 03:51:49 +0800365 head = find_ref_head(delayed_refs, start, 1);
Josef Bacikd7df2c72014-01-23 09:21:38 -0500366 if (!head && !loop) {
367 delayed_refs->run_delayed_start = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400368 start = 0;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500369 loop = true;
Liu Bo5c9d0282018-08-23 03:51:49 +0800370 head = find_ref_head(delayed_refs, start, 1);
Josef Bacikd7df2c72014-01-23 09:21:38 -0500371 if (!head)
372 return NULL;
373 } else if (!head && loop) {
374 return NULL;
Chris Masonc3e69d52009-03-13 10:17:05 -0400375 }
Chris Mason56bec292009-03-13 10:10:06 -0400376
Josef Bacikd7df2c72014-01-23 09:21:38 -0500377 while (head->processing) {
378 struct rb_node *node;
Miao Xie093486c2012-12-19 08:10:10 +0000379
Josef Bacikd7df2c72014-01-23 09:21:38 -0500380 node = rb_next(&head->href_node);
381 if (!node) {
382 if (loop)
383 return NULL;
384 delayed_refs->run_delayed_start = 0;
385 start = 0;
386 loop = true;
387 goto again;
388 }
389 head = rb_entry(node, struct btrfs_delayed_ref_head,
390 href_node);
391 }
392
393 head->processing = 1;
394 WARN_ON(delayed_refs->num_heads_ready == 0);
395 delayed_refs->num_heads_ready--;
Josef Bacikd2788502017-09-29 15:43:57 -0400396 delayed_refs->run_delayed_start = head->bytenr +
397 head->num_bytes;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500398 return head;
Miao Xie093486c2012-12-19 08:10:10 +0000399}
400
Chris Mason56bec292009-03-13 10:10:06 -0400401/*
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800402 * Helper to insert the ref_node to the tail or merge with tail.
403 *
404 * Return 0 for insert.
405 * Return >0 for merge.
406 */
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400407static int insert_delayed_ref(struct btrfs_trans_handle *trans,
408 struct btrfs_delayed_ref_root *root,
409 struct btrfs_delayed_ref_head *href,
410 struct btrfs_delayed_ref_node *ref)
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800411{
412 struct btrfs_delayed_ref_node *exist;
413 int mod;
414 int ret = 0;
415
416 spin_lock(&href->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400417 exist = tree_insert(&href->ref_tree, ref);
418 if (!exist)
419 goto inserted;
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800420
421 /* Now we are sure we can merge */
422 ret = 1;
423 if (exist->action == ref->action) {
424 mod = ref->ref_mod;
425 } else {
426 /* Need to change action */
427 if (exist->ref_mod < ref->ref_mod) {
428 exist->action = ref->action;
429 mod = -exist->ref_mod;
430 exist->ref_mod = ref->ref_mod;
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +0800431 if (ref->action == BTRFS_ADD_DELAYED_REF)
432 list_add_tail(&exist->add_list,
433 &href->ref_add_list);
434 else if (ref->action == BTRFS_DROP_DELAYED_REF) {
435 ASSERT(!list_empty(&exist->add_list));
436 list_del(&exist->add_list);
437 } else {
438 ASSERT(0);
439 }
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800440 } else
441 mod = -ref->ref_mod;
442 }
443 exist->ref_mod += mod;
444
445 /* remove existing tail if its ref_mod is zero */
446 if (exist->ref_mod == 0)
447 drop_delayed_ref(trans, root, href, exist);
448 spin_unlock(&href->lock);
449 return ret;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400450inserted:
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +0800451 if (ref->action == BTRFS_ADD_DELAYED_REF)
452 list_add_tail(&ref->add_list, &href->ref_add_list);
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800453 atomic_inc(&root->num_entries);
454 trans->delayed_ref_updates++;
455 spin_unlock(&href->lock);
456 return ret;
457}
458
459/*
Chris Mason56bec292009-03-13 10:10:06 -0400460 * helper function to update the accounting in the head ref
461 * existing and update must have the same bytenr
462 */
463static noinline void
Josef Bacik12621332015-02-03 07:50:16 -0800464update_existing_head_ref(struct btrfs_delayed_ref_root *delayed_refs,
Josef Bacikd2788502017-09-29 15:43:57 -0400465 struct btrfs_delayed_ref_head *existing,
466 struct btrfs_delayed_ref_head *update,
Omar Sandoval7be07912017-06-06 16:45:30 -0700467 int *old_ref_mod_ret)
Chris Mason56bec292009-03-13 10:10:06 -0400468{
Josef Bacik12621332015-02-03 07:50:16 -0800469 int old_ref_mod;
Chris Mason56bec292009-03-13 10:10:06 -0400470
Josef Bacikd2788502017-09-29 15:43:57 -0400471 BUG_ON(existing->is_data != update->is_data);
Chris Mason56bec292009-03-13 10:10:06 -0400472
Josef Bacikd2788502017-09-29 15:43:57 -0400473 spin_lock(&existing->lock);
474 if (update->must_insert_reserved) {
Chris Mason56bec292009-03-13 10:10:06 -0400475 /* if the extent was freed and then
476 * reallocated before the delayed ref
477 * entries were processed, we can end up
478 * with an existing head ref without
479 * the must_insert_reserved flag set.
480 * Set it again here
481 */
Josef Bacikd2788502017-09-29 15:43:57 -0400482 existing->must_insert_reserved = update->must_insert_reserved;
Chris Mason56bec292009-03-13 10:10:06 -0400483
484 /*
485 * update the num_bytes so we make sure the accounting
486 * is done correctly
487 */
488 existing->num_bytes = update->num_bytes;
489
490 }
491
Josef Bacikd2788502017-09-29 15:43:57 -0400492 if (update->extent_op) {
493 if (!existing->extent_op) {
494 existing->extent_op = update->extent_op;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400495 } else {
Josef Bacikd2788502017-09-29 15:43:57 -0400496 if (update->extent_op->update_key) {
497 memcpy(&existing->extent_op->key,
498 &update->extent_op->key,
499 sizeof(update->extent_op->key));
500 existing->extent_op->update_key = true;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400501 }
Josef Bacikd2788502017-09-29 15:43:57 -0400502 if (update->extent_op->update_flags) {
503 existing->extent_op->flags_to_set |=
504 update->extent_op->flags_to_set;
505 existing->extent_op->update_flags = true;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400506 }
Josef Bacikd2788502017-09-29 15:43:57 -0400507 btrfs_free_delayed_extent_op(update->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400508 }
509 }
Chris Mason56bec292009-03-13 10:10:06 -0400510 /*
Josef Bacikd7df2c72014-01-23 09:21:38 -0500511 * update the reference mod on the head to reflect this new operation,
512 * only need the lock for this case cause we could be processing it
513 * currently, for refs we just added we know we're a-ok.
Chris Mason56bec292009-03-13 10:10:06 -0400514 */
Josef Bacikd2788502017-09-29 15:43:57 -0400515 old_ref_mod = existing->total_ref_mod;
Omar Sandoval7be07912017-06-06 16:45:30 -0700516 if (old_ref_mod_ret)
517 *old_ref_mod_ret = old_ref_mod;
Chris Mason56bec292009-03-13 10:10:06 -0400518 existing->ref_mod += update->ref_mod;
Josef Bacikd2788502017-09-29 15:43:57 -0400519 existing->total_ref_mod += update->ref_mod;
Josef Bacik12621332015-02-03 07:50:16 -0800520
521 /*
522 * If we are going to from a positive ref mod to a negative or vice
523 * versa we need to make sure to adjust pending_csums accordingly.
524 */
Josef Bacikd2788502017-09-29 15:43:57 -0400525 if (existing->is_data) {
526 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;
Josef Bacikd2788502017-09-29 15:43:57 -0400528 if (existing->total_ref_mod < 0 && old_ref_mod >= 0)
Josef Bacik12621332015-02-03 07:50:16 -0800529 delayed_refs->pending_csums += existing->num_bytes;
530 }
Josef Bacikd2788502017-09-29 15:43:57 -0400531 spin_unlock(&existing->lock);
Chris Mason56bec292009-03-13 10:10:06 -0400532}
533
Nikolay Borisova2e569b2018-04-24 17:18:22 +0300534static void init_delayed_ref_head(struct btrfs_delayed_ref_head *head_ref,
535 struct btrfs_qgroup_extent_record *qrecord,
536 u64 bytenr, u64 num_bytes, u64 ref_root,
537 u64 reserved, int action, bool is_data,
538 bool is_system)
539{
540 int count_mod = 1;
541 int must_insert_reserved = 0;
542
543 /* If reserved is provided, it must be a data extent. */
544 BUG_ON(!is_data && reserved);
545
546 /*
547 * The head node stores the sum of all the mods, so dropping a ref
548 * should drop the sum in the head node by one.
549 */
550 if (action == BTRFS_UPDATE_DELAYED_HEAD)
551 count_mod = 0;
552 else if (action == BTRFS_DROP_DELAYED_REF)
553 count_mod = -1;
554
555 /*
556 * BTRFS_ADD_DELAYED_EXTENT means that we need to update the reserved
557 * accounting when the extent is finally added, or if a later
558 * modification deletes the delayed ref without ever inserting the
559 * extent into the extent allocation tree. ref->must_insert_reserved
560 * is the flag used to record that accounting mods are required.
561 *
562 * Once we record must_insert_reserved, switch the action to
563 * BTRFS_ADD_DELAYED_REF because other special casing is not required.
564 */
565 if (action == BTRFS_ADD_DELAYED_EXTENT)
566 must_insert_reserved = 1;
567 else
568 must_insert_reserved = 0;
569
570 refcount_set(&head_ref->refs, 1);
571 head_ref->bytenr = bytenr;
572 head_ref->num_bytes = num_bytes;
573 head_ref->ref_mod = count_mod;
574 head_ref->must_insert_reserved = must_insert_reserved;
575 head_ref->is_data = is_data;
576 head_ref->is_system = is_system;
Liu Boe3d03962018-08-23 03:51:50 +0800577 head_ref->ref_tree = RB_ROOT_CACHED;
Nikolay Borisova2e569b2018-04-24 17:18:22 +0300578 INIT_LIST_HEAD(&head_ref->ref_add_list);
579 RB_CLEAR_NODE(&head_ref->href_node);
580 head_ref->processing = 0;
581 head_ref->total_ref_mod = count_mod;
582 head_ref->qgroup_reserved = 0;
583 head_ref->qgroup_ref_root = 0;
584 spin_lock_init(&head_ref->lock);
585 mutex_init(&head_ref->mutex);
586
587 if (qrecord) {
588 if (ref_root && reserved) {
589 head_ref->qgroup_ref_root = ref_root;
590 head_ref->qgroup_reserved = reserved;
591 }
592
593 qrecord->bytenr = bytenr;
594 qrecord->num_bytes = num_bytes;
595 qrecord->old_roots = NULL;
596 }
597}
598
Chris Mason56bec292009-03-13 10:10:06 -0400599/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400600 * helper function to actually insert a head node into the rbtree.
Chris Mason56bec292009-03-13 10:10:06 -0400601 * this does all the dirty work in terms of maintaining the correct
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400602 * overall modification count.
Chris Mason56bec292009-03-13 10:10:06 -0400603 */
Josef Bacikd7df2c72014-01-23 09:21:38 -0500604static noinline struct btrfs_delayed_ref_head *
Nikolay Borisov1acda0c2018-04-19 11:06:37 +0300605add_delayed_ref_head(struct btrfs_trans_handle *trans,
Josef Bacikd2788502017-09-29 15:43:57 -0400606 struct btrfs_delayed_ref_head *head_ref,
Qu Wenruo3368d002015-04-16 14:34:17 +0800607 struct btrfs_qgroup_extent_record *qrecord,
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300608 int action, int *qrecord_inserted_ret,
Omar Sandoval7be07912017-06-06 16:45:30 -0700609 int *old_ref_mod, int *new_ref_mod)
Chris Mason56bec292009-03-13 10:10:06 -0400610{
Josef Bacikd7df2c72014-01-23 09:21:38 -0500611 struct btrfs_delayed_ref_head *existing;
Chris Mason56bec292009-03-13 10:10:06 -0400612 struct btrfs_delayed_ref_root *delayed_refs;
Qu Wenruofb235dc2017-02-15 10:43:03 +0800613 int qrecord_inserted = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400614
Chris Mason56bec292009-03-13 10:10:06 -0400615 delayed_refs = &trans->transaction->delayed_refs;
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300616
Qu Wenruo3368d002015-04-16 14:34:17 +0800617 /* Record qgroup extent info if provided */
618 if (qrecord) {
Nikolay Borisoveb86ec72018-04-24 17:18:23 +0300619 if (btrfs_qgroup_trace_extent_nolock(trans->fs_info,
Qu Wenruocb93b522016-08-15 10:36:50 +0800620 delayed_refs, qrecord))
Qu Wenruo3368d002015-04-16 14:34:17 +0800621 kfree(qrecord);
Qu Wenruofb235dc2017-02-15 10:43:03 +0800622 else
623 qrecord_inserted = 1;
Qu Wenruo3368d002015-04-16 14:34:17 +0800624 }
625
Nikolay Borisov1acda0c2018-04-19 11:06:37 +0300626 trace_add_delayed_ref_head(trans->fs_info, head_ref, action);
liubo1abe9b82011-03-24 11:18:59 +0000627
Josef Bacikd7df2c72014-01-23 09:21:38 -0500628 existing = htree_insert(&delayed_refs->href_root,
629 &head_ref->href_node);
Chris Mason56bec292009-03-13 10:10:06 -0400630 if (existing) {
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300631 WARN_ON(qrecord && head_ref->qgroup_ref_root
632 && head_ref->qgroup_reserved
633 && existing->qgroup_ref_root
Qu Wenruo5846a3c2015-10-26 14:11:18 +0800634 && existing->qgroup_reserved);
Josef Bacikd2788502017-09-29 15:43:57 -0400635 update_existing_head_ref(delayed_refs, existing, head_ref,
Omar Sandoval7be07912017-06-06 16:45:30 -0700636 old_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -0400637 /*
638 * we've updated the existing ref, free the newly
639 * allocated ref
640 */
Miao Xie78a61842012-11-21 02:21:28 +0000641 kmem_cache_free(btrfs_delayed_ref_head_cachep, head_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -0500642 head_ref = existing;
Chris Mason56bec292009-03-13 10:10:06 -0400643 } else {
Omar Sandoval7be07912017-06-06 16:45:30 -0700644 if (old_ref_mod)
645 *old_ref_mod = 0;
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300646 if (head_ref->is_data && head_ref->ref_mod < 0)
647 delayed_refs->pending_csums += head_ref->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400648 delayed_refs->num_heads++;
649 delayed_refs->num_heads_ready++;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500650 atomic_inc(&delayed_refs->num_entries);
Chris Mason56bec292009-03-13 10:10:06 -0400651 trans->delayed_ref_updates++;
652 }
Qu Wenruofb235dc2017-02-15 10:43:03 +0800653 if (qrecord_inserted_ret)
654 *qrecord_inserted_ret = qrecord_inserted;
Omar Sandoval7be07912017-06-06 16:45:30 -0700655 if (new_ref_mod)
656 *new_ref_mod = head_ref->total_ref_mod;
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300657
Josef Bacikd7df2c72014-01-23 09:21:38 -0500658 return head_ref;
Chris Mason56bec292009-03-13 10:10:06 -0400659}
660
661/*
Nikolay Borisovcb49a872018-04-24 17:18:17 +0300662 * init_delayed_ref_common - Initialize the structure which represents a
663 * modification to a an extent.
664 *
665 * @fs_info: Internal to the mounted filesystem mount structure.
666 *
667 * @ref: The structure which is going to be initialized.
668 *
669 * @bytenr: The logical address of the extent for which a modification is
670 * going to be recorded.
671 *
672 * @num_bytes: Size of the extent whose modification is being recorded.
673 *
674 * @ref_root: The id of the root where this modification has originated, this
675 * can be either one of the well-known metadata trees or the
676 * subvolume id which references this extent.
677 *
678 * @action: Can be one of BTRFS_ADD_DELAYED_REF/BTRFS_DROP_DELAYED_REF or
679 * BTRFS_ADD_DELAYED_EXTENT
680 *
681 * @ref_type: Holds the type of the extent which is being recorded, can be
682 * one of BTRFS_SHARED_BLOCK_REF_KEY/BTRFS_TREE_BLOCK_REF_KEY
683 * when recording a metadata extent or BTRFS_SHARED_DATA_REF_KEY/
684 * BTRFS_EXTENT_DATA_REF_KEY when recording data extent
685 */
686static void init_delayed_ref_common(struct btrfs_fs_info *fs_info,
687 struct btrfs_delayed_ref_node *ref,
688 u64 bytenr, u64 num_bytes, u64 ref_root,
689 int action, u8 ref_type)
690{
691 u64 seq = 0;
692
693 if (action == BTRFS_ADD_DELAYED_EXTENT)
694 action = BTRFS_ADD_DELAYED_REF;
695
696 if (is_fstree(ref_root))
697 seq = atomic64_read(&fs_info->tree_mod_seq);
698
699 refcount_set(&ref->refs, 1);
700 ref->bytenr = bytenr;
701 ref->num_bytes = num_bytes;
702 ref->ref_mod = 1;
703 ref->action = action;
704 ref->is_head = 0;
705 ref->in_tree = 1;
706 ref->seq = seq;
707 ref->type = ref_type;
708 RB_CLEAR_NODE(&ref->ref_node);
709 INIT_LIST_HEAD(&ref->add_list);
710}
711
712/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400713 * add a delayed tree ref. This does all of the accounting required
Chris Mason56bec292009-03-13 10:10:06 -0400714 * to make sure the delayed ref is eventually processed before this
715 * transaction commits.
716 */
Nikolay Borisov44e1c472018-06-20 15:48:53 +0300717int btrfs_add_delayed_tree_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400718 u64 bytenr, u64 num_bytes, u64 parent,
719 u64 ref_root, int level, int action,
Omar Sandoval7be07912017-06-06 16:45:30 -0700720 struct btrfs_delayed_extent_op *extent_op,
721 int *old_ref_mod, int *new_ref_mod)
Chris Mason56bec292009-03-13 10:10:06 -0400722{
Nikolay Borisov44e1c472018-06-20 15:48:53 +0300723 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400724 struct btrfs_delayed_tree_ref *ref;
Chris Mason56bec292009-03-13 10:10:06 -0400725 struct btrfs_delayed_ref_head *head_ref;
726 struct btrfs_delayed_ref_root *delayed_refs;
Qu Wenruo3368d002015-04-16 14:34:17 +0800727 struct btrfs_qgroup_extent_record *record = NULL;
Qu Wenruofb235dc2017-02-15 10:43:03 +0800728 int qrecord_inserted;
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300729 bool is_system = (ref_root == BTRFS_CHUNK_TREE_OBJECTID);
Nikolay Borisov70d64002018-04-24 17:18:20 +0300730 int ret;
731 u8 ref_type;
Chris Mason56bec292009-03-13 10:10:06 -0400732
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400733 BUG_ON(extent_op && extent_op->is_data);
Miao Xie78a61842012-11-21 02:21:28 +0000734 ref = kmem_cache_alloc(btrfs_delayed_tree_ref_cachep, GFP_NOFS);
Chris Mason56bec292009-03-13 10:10:06 -0400735 if (!ref)
736 return -ENOMEM;
737
Nikolay Borisov7b4284d2018-06-20 18:43:12 +0300738 head_ref = kmem_cache_alloc(btrfs_delayed_ref_head_cachep, GFP_NOFS);
739 if (!head_ref) {
740 kmem_cache_free(btrfs_delayed_tree_ref_cachep, ref);
741 return -ENOMEM;
742 }
743
744 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) &&
745 is_fstree(ref_root)) {
746 record = kmalloc(sizeof(*record), GFP_NOFS);
747 if (!record) {
748 kmem_cache_free(btrfs_delayed_tree_ref_cachep, ref);
749 kmem_cache_free(btrfs_delayed_ref_head_cachep, head_ref);
750 return -ENOMEM;
751 }
752 }
753
Nikolay Borisov70d64002018-04-24 17:18:20 +0300754 if (parent)
755 ref_type = BTRFS_SHARED_BLOCK_REF_KEY;
756 else
757 ref_type = BTRFS_TREE_BLOCK_REF_KEY;
Nikolay Borisov7b4284d2018-06-20 18:43:12 +0300758
Nikolay Borisov70d64002018-04-24 17:18:20 +0300759 init_delayed_ref_common(fs_info, &ref->node, bytenr, num_bytes,
760 ref_root, action, ref_type);
761 ref->root = ref_root;
762 ref->parent = parent;
763 ref->level = level;
764
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300765 init_delayed_ref_head(head_ref, record, bytenr, num_bytes,
766 ref_root, 0, action, false, is_system);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400767 head_ref->extent_op = extent_op;
768
Chris Mason56bec292009-03-13 10:10:06 -0400769 delayed_refs = &trans->transaction->delayed_refs;
770 spin_lock(&delayed_refs->lock);
771
772 /*
773 * insert both the head node and the new ref without dropping
774 * the spin lock
775 */
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300776 head_ref = add_delayed_ref_head(trans, head_ref, record,
777 action, &qrecord_inserted,
Nikolay Borisov5e388e92018-04-18 09:41:54 +0300778 old_ref_mod, new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -0400779
Nikolay Borisov70d64002018-04-24 17:18:20 +0300780 ret = insert_delayed_ref(trans, delayed_refs, head_ref, &ref->node);
Chris Mason56bec292009-03-13 10:10:06 -0400781 spin_unlock(&delayed_refs->lock);
Jan Schmidt95a06072012-05-29 17:06:54 +0200782
Nikolay Borisov70d64002018-04-24 17:18:20 +0300783 trace_add_delayed_tree_ref(fs_info, &ref->node, ref,
784 action == BTRFS_ADD_DELAYED_EXTENT ?
785 BTRFS_ADD_DELAYED_REF : action);
786 if (ret > 0)
787 kmem_cache_free(btrfs_delayed_tree_ref_cachep, ref);
788
Qu Wenruofb235dc2017-02-15 10:43:03 +0800789 if (qrecord_inserted)
Nikolay Borisov952bd3db2018-01-29 15:53:01 +0200790 btrfs_qgroup_trace_extent_post(fs_info, record);
791
Chris Mason56bec292009-03-13 10:10:06 -0400792 return 0;
793}
794
795/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400796 * add a delayed data ref. it's similar to btrfs_add_delayed_tree_ref.
797 */
Nikolay Borisov88a979c2018-06-20 15:48:54 +0300798int btrfs_add_delayed_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400799 u64 bytenr, u64 num_bytes,
800 u64 parent, u64 ref_root,
Omar Sandoval7be07912017-06-06 16:45:30 -0700801 u64 owner, u64 offset, u64 reserved, int action,
802 int *old_ref_mod, int *new_ref_mod)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400803{
Nikolay Borisov88a979c2018-06-20 15:48:54 +0300804 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400805 struct btrfs_delayed_data_ref *ref;
806 struct btrfs_delayed_ref_head *head_ref;
807 struct btrfs_delayed_ref_root *delayed_refs;
Qu Wenruo3368d002015-04-16 14:34:17 +0800808 struct btrfs_qgroup_extent_record *record = NULL;
Qu Wenruofb235dc2017-02-15 10:43:03 +0800809 int qrecord_inserted;
Nikolay Borisovcd7f9692018-04-24 17:18:21 +0300810 int ret;
811 u8 ref_type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400812
Miao Xie78a61842012-11-21 02:21:28 +0000813 ref = kmem_cache_alloc(btrfs_delayed_data_ref_cachep, GFP_NOFS);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400814 if (!ref)
815 return -ENOMEM;
816
Nikolay Borisovcd7f9692018-04-24 17:18:21 +0300817 if (parent)
818 ref_type = BTRFS_SHARED_DATA_REF_KEY;
819 else
820 ref_type = BTRFS_EXTENT_DATA_REF_KEY;
821 init_delayed_ref_common(fs_info, &ref->node, bytenr, num_bytes,
822 ref_root, action, ref_type);
823 ref->root = ref_root;
824 ref->parent = parent;
825 ref->objectid = owner;
826 ref->offset = offset;
827
828
Miao Xie78a61842012-11-21 02:21:28 +0000829 head_ref = kmem_cache_alloc(btrfs_delayed_ref_head_cachep, GFP_NOFS);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400830 if (!head_ref) {
Miao Xie78a61842012-11-21 02:21:28 +0000831 kmem_cache_free(btrfs_delayed_data_ref_cachep, ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400832 return -ENOMEM;
833 }
834
Josef Bacikafcdd122016-09-02 15:40:02 -0400835 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) &&
836 is_fstree(ref_root)) {
Qu Wenruo3368d002015-04-16 14:34:17 +0800837 record = kmalloc(sizeof(*record), GFP_NOFS);
838 if (!record) {
839 kmem_cache_free(btrfs_delayed_data_ref_cachep, ref);
840 kmem_cache_free(btrfs_delayed_ref_head_cachep,
841 head_ref);
842 return -ENOMEM;
843 }
844 }
845
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300846 init_delayed_ref_head(head_ref, record, bytenr, num_bytes, ref_root,
847 reserved, action, true, false);
Jeff Mahoneyfef394f2016-12-13 14:39:34 -0500848 head_ref->extent_op = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400849
850 delayed_refs = &trans->transaction->delayed_refs;
851 spin_lock(&delayed_refs->lock);
852
853 /*
854 * insert both the head node and the new ref without dropping
855 * the spin lock
856 */
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300857 head_ref = add_delayed_ref_head(trans, head_ref, record,
858 action, &qrecord_inserted,
Omar Sandoval7be07912017-06-06 16:45:30 -0700859 old_ref_mod, new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400860
Nikolay Borisovcd7f9692018-04-24 17:18:21 +0300861 ret = insert_delayed_ref(trans, delayed_refs, head_ref, &ref->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400862 spin_unlock(&delayed_refs->lock);
Jan Schmidt95a06072012-05-29 17:06:54 +0200863
Nikolay Borisovcd7f9692018-04-24 17:18:21 +0300864 trace_add_delayed_data_ref(trans->fs_info, &ref->node, ref,
865 action == BTRFS_ADD_DELAYED_EXTENT ?
866 BTRFS_ADD_DELAYED_REF : action);
867 if (ret > 0)
868 kmem_cache_free(btrfs_delayed_data_ref_cachep, ref);
869
870
Qu Wenruofb235dc2017-02-15 10:43:03 +0800871 if (qrecord_inserted)
872 return btrfs_qgroup_trace_extent_post(fs_info, record);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400873 return 0;
874}
875
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200876int btrfs_add_delayed_extent_op(struct btrfs_fs_info *fs_info,
877 struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400878 u64 bytenr, u64 num_bytes,
879 struct btrfs_delayed_extent_op *extent_op)
880{
881 struct btrfs_delayed_ref_head *head_ref;
882 struct btrfs_delayed_ref_root *delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400883
Miao Xie78a61842012-11-21 02:21:28 +0000884 head_ref = kmem_cache_alloc(btrfs_delayed_ref_head_cachep, GFP_NOFS);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400885 if (!head_ref)
886 return -ENOMEM;
887
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300888 init_delayed_ref_head(head_ref, NULL, bytenr, num_bytes, 0, 0,
889 BTRFS_UPDATE_DELAYED_HEAD, extent_op->is_data,
890 false);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400891 head_ref->extent_op = extent_op;
892
893 delayed_refs = &trans->transaction->delayed_refs;
894 spin_lock(&delayed_refs->lock);
895
Nikolay Borisov2335efa2018-04-24 17:18:24 +0300896 add_delayed_ref_head(trans, head_ref, NULL, BTRFS_UPDATE_DELAYED_HEAD,
897 NULL, NULL, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400898
899 spin_unlock(&delayed_refs->lock);
900 return 0;
901}
902
903/*
Chris Mason1887be62009-03-13 10:11:24 -0400904 * this does a simple search for the head node for a given extent.
905 * It must be called with the delayed ref spinlock held, and it returns
906 * the head node if any where found, or NULL if not.
907 */
908struct btrfs_delayed_ref_head *
Liu Bof72ad18e2017-01-30 12:24:37 -0800909btrfs_find_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs, u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -0400910{
Liu Bo5c9d0282018-08-23 03:51:49 +0800911 return find_ref_head(delayed_refs, bytenr, 0);
Chris Mason1887be62009-03-13 10:11:24 -0400912}
Miao Xie78a61842012-11-21 02:21:28 +0000913
David Sterbae67c7182018-02-19 17:24:18 +0100914void __cold btrfs_delayed_ref_exit(void)
Miao Xie78a61842012-11-21 02:21:28 +0000915{
Kinglong Mee5598e902016-01-29 21:36:35 +0800916 kmem_cache_destroy(btrfs_delayed_ref_head_cachep);
917 kmem_cache_destroy(btrfs_delayed_tree_ref_cachep);
918 kmem_cache_destroy(btrfs_delayed_data_ref_cachep);
919 kmem_cache_destroy(btrfs_delayed_extent_op_cachep);
Miao Xie78a61842012-11-21 02:21:28 +0000920}
921
Liu Bof5c29bd2017-11-02 17:21:50 -0600922int __init btrfs_delayed_ref_init(void)
Miao Xie78a61842012-11-21 02:21:28 +0000923{
924 btrfs_delayed_ref_head_cachep = kmem_cache_create(
925 "btrfs_delayed_ref_head",
926 sizeof(struct btrfs_delayed_ref_head), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300927 SLAB_MEM_SPREAD, NULL);
Miao Xie78a61842012-11-21 02:21:28 +0000928 if (!btrfs_delayed_ref_head_cachep)
929 goto fail;
930
931 btrfs_delayed_tree_ref_cachep = kmem_cache_create(
932 "btrfs_delayed_tree_ref",
933 sizeof(struct btrfs_delayed_tree_ref), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300934 SLAB_MEM_SPREAD, NULL);
Miao Xie78a61842012-11-21 02:21:28 +0000935 if (!btrfs_delayed_tree_ref_cachep)
936 goto fail;
937
938 btrfs_delayed_data_ref_cachep = kmem_cache_create(
939 "btrfs_delayed_data_ref",
940 sizeof(struct btrfs_delayed_data_ref), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300941 SLAB_MEM_SPREAD, NULL);
Miao Xie78a61842012-11-21 02:21:28 +0000942 if (!btrfs_delayed_data_ref_cachep)
943 goto fail;
944
945 btrfs_delayed_extent_op_cachep = kmem_cache_create(
946 "btrfs_delayed_extent_op",
947 sizeof(struct btrfs_delayed_extent_op), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300948 SLAB_MEM_SPREAD, NULL);
Miao Xie78a61842012-11-21 02:21:28 +0000949 if (!btrfs_delayed_extent_op_cachep)
950 goto fail;
951
952 return 0;
953fail:
954 btrfs_delayed_ref_exit();
955 return -ENOMEM;
956}