blob: dec14b739b1016223259255d568d17017d79cc69 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Arne Jansen7414a032011-05-23 14:33:49 +02002/*
3 * Copyright (C) 2011 STRATO. All rights reserved.
Arne Jansen7414a032011-05-23 14:33:49 +02004 */
5
6#include <linux/sched.h>
7#include <linux/pagemap.h>
8#include <linux/writeback.h>
9#include <linux/blkdev.h>
Arne Jansen7414a032011-05-23 14:33:49 +020010#include <linux/slab.h>
11#include <linux/workqueue.h>
12#include "ctree.h"
13#include "volumes.h"
14#include "disk-io.h"
15#include "transaction.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010016#include "dev-replace.h"
Arne Jansen7414a032011-05-23 14:33:49 +020017
18#undef DEBUG
19
20/*
21 * This is the implementation for the generic read ahead framework.
22 *
23 * To trigger a readahead, btrfs_reada_add must be called. It will start
24 * a read ahead for the given range [start, end) on tree root. The returned
25 * handle can either be used to wait on the readahead to finish
26 * (btrfs_reada_wait), or to send it to the background (btrfs_reada_detach).
27 *
28 * The read ahead works as follows:
29 * On btrfs_reada_add, the root of the tree is inserted into a radix_tree.
30 * reada_start_machine will then search for extents to prefetch and trigger
31 * some reads. When a read finishes for a node, all contained node/leaf
32 * pointers that lie in the given range will also be enqueued. The reads will
33 * be triggered in sequential order, thus giving a big win over a naive
34 * enumeration. It will also make use of multi-device layouts. Each disk
35 * will have its on read pointer and all disks will by utilized in parallel.
36 * Also will no two disks read both sides of a mirror simultaneously, as this
37 * would waste seeking capacity. Instead both disks will read different parts
38 * of the filesystem.
39 * Any number of readaheads can be started in parallel. The read order will be
40 * determined globally, i.e. 2 parallel readaheads will normally finish faster
41 * than the 2 started one after another.
42 */
43
Arne Jansen7414a032011-05-23 14:33:49 +020044#define MAX_IN_FLIGHT 6
45
46struct reada_extctl {
47 struct list_head list;
48 struct reada_control *rc;
49 u64 generation;
50};
51
52struct reada_extent {
53 u64 logical;
54 struct btrfs_key top;
Arne Jansen7414a032011-05-23 14:33:49 +020055 struct list_head extctl;
Al Viro99621b42012-08-29 16:31:33 -040056 int refcnt;
Arne Jansen7414a032011-05-23 14:33:49 +020057 spinlock_t lock;
Stefan Behrens94598ba2012-03-27 14:21:26 -040058 struct reada_zone *zones[BTRFS_MAX_MIRRORS];
Arne Jansen7414a032011-05-23 14:33:49 +020059 int nzones;
Zhao Lei895a11b2016-01-12 14:58:39 +080060 int scheduled;
Arne Jansen7414a032011-05-23 14:33:49 +020061};
62
63struct reada_zone {
64 u64 start;
65 u64 end;
66 u64 elems;
67 struct list_head list;
68 spinlock_t lock;
69 int locked;
70 struct btrfs_device *device;
Stefan Behrens94598ba2012-03-27 14:21:26 -040071 struct btrfs_device *devs[BTRFS_MAX_MIRRORS]; /* full list, incl
72 * self */
Arne Jansen7414a032011-05-23 14:33:49 +020073 int ndevs;
74 struct kref refcnt;
75};
76
77struct reada_machine_work {
Qu Wenruod458b052014-02-28 10:46:19 +080078 struct btrfs_work work;
Arne Jansen7414a032011-05-23 14:33:49 +020079 struct btrfs_fs_info *fs_info;
80};
81
82static void reada_extent_put(struct btrfs_fs_info *, struct reada_extent *);
83static void reada_control_release(struct kref *kref);
84static void reada_zone_release(struct kref *kref);
85static void reada_start_machine(struct btrfs_fs_info *fs_info);
86static void __reada_start_machine(struct btrfs_fs_info *fs_info);
87
88static int reada_add_block(struct reada_control *rc, u64 logical,
Zhao Lei1e7970c2015-12-31 20:30:00 +080089 struct btrfs_key *top, u64 generation);
Arne Jansen7414a032011-05-23 14:33:49 +020090
91/* recurses */
92/* in case of err, eb might be NULL */
Zhao Lei02873e42015-12-31 22:46:45 +080093static void __readahead_hook(struct btrfs_fs_info *fs_info,
94 struct reada_extent *re, struct extent_buffer *eb,
David Sterbabcdc51b2016-11-08 13:39:05 +010095 int err)
Arne Jansen7414a032011-05-23 14:33:49 +020096{
Arne Jansen7414a032011-05-23 14:33:49 +020097 int nritems;
98 int i;
99 u64 bytenr;
100 u64 generation;
Arne Jansen7414a032011-05-23 14:33:49 +0200101 struct list_head list;
Arne Jansen7414a032011-05-23 14:33:49 +0200102
Arne Jansen7414a032011-05-23 14:33:49 +0200103 spin_lock(&re->lock);
104 /*
105 * just take the full list from the extent. afterwards we
106 * don't need the lock anymore
107 */
108 list_replace_init(&re->extctl, &list);
Zhao Lei895a11b2016-01-12 14:58:39 +0800109 re->scheduled = 0;
Arne Jansen7414a032011-05-23 14:33:49 +0200110 spin_unlock(&re->lock);
111
Zhao Lei57f16e02015-12-31 22:20:59 +0800112 /*
113 * this is the error case, the extent buffer has not been
114 * read correctly. We won't access anything from it and
115 * just cleanup our data structures. Effectively this will
116 * cut the branch below this node from read ahead.
117 */
118 if (err)
119 goto cleanup;
Arne Jansen7414a032011-05-23 14:33:49 +0200120
Zhao Lei57f16e02015-12-31 22:20:59 +0800121 /*
122 * FIXME: currently we just set nritems to 0 if this is a leaf,
123 * effectively ignoring the content. In a next step we could
124 * trigger more readahead depending from the content, e.g.
125 * fetch the checksums for the extents in the leaf.
126 */
David Sterba04998b32016-11-08 13:32:43 +0100127 if (!btrfs_header_level(eb))
Zhao Lei57f16e02015-12-31 22:20:59 +0800128 goto cleanup;
129
130 nritems = btrfs_header_nritems(eb);
131 generation = btrfs_header_generation(eb);
Arne Jansen7414a032011-05-23 14:33:49 +0200132 for (i = 0; i < nritems; i++) {
133 struct reada_extctl *rec;
134 u64 n_gen;
135 struct btrfs_key key;
136 struct btrfs_key next_key;
137
138 btrfs_node_key_to_cpu(eb, &key, i);
139 if (i + 1 < nritems)
140 btrfs_node_key_to_cpu(eb, &next_key, i + 1);
141 else
142 next_key = re->top;
143 bytenr = btrfs_node_blockptr(eb, i);
144 n_gen = btrfs_node_ptr_generation(eb, i);
145
146 list_for_each_entry(rec, &list, list) {
147 struct reada_control *rc = rec->rc;
148
149 /*
150 * if the generation doesn't match, just ignore this
151 * extctl. This will probably cut off a branch from
152 * prefetch. Alternatively one could start a new (sub-)
153 * prefetch for this branch, starting again from root.
154 * FIXME: move the generation check out of this loop
155 */
156#ifdef DEBUG
157 if (rec->generation != generation) {
Zhao Lei02873e42015-12-31 22:46:45 +0800158 btrfs_debug(fs_info,
159 "generation mismatch for (%llu,%d,%llu) %llu != %llu",
160 key.objectid, key.type, key.offset,
161 rec->generation, generation);
Arne Jansen7414a032011-05-23 14:33:49 +0200162 }
163#endif
164 if (rec->generation == generation &&
165 btrfs_comp_cpu_keys(&key, &rc->key_end) < 0 &&
166 btrfs_comp_cpu_keys(&next_key, &rc->key_start) > 0)
Zhao Lei1e7970c2015-12-31 20:30:00 +0800167 reada_add_block(rc, bytenr, &next_key, n_gen);
Arne Jansen7414a032011-05-23 14:33:49 +0200168 }
169 }
Zhao Lei57f16e02015-12-31 22:20:59 +0800170
171cleanup:
Arne Jansen7414a032011-05-23 14:33:49 +0200172 /*
173 * free extctl records
174 */
175 while (!list_empty(&list)) {
176 struct reada_control *rc;
177 struct reada_extctl *rec;
178
179 rec = list_first_entry(&list, struct reada_extctl, list);
180 list_del(&rec->list);
181 rc = rec->rc;
182 kfree(rec);
183
184 kref_get(&rc->refcnt);
185 if (atomic_dec_and_test(&rc->elems)) {
186 kref_put(&rc->refcnt, reada_control_release);
187 wake_up(&rc->wait);
188 }
189 kref_put(&rc->refcnt, reada_control_release);
190
191 reada_extent_put(fs_info, re); /* one ref for each entry */
192 }
Arne Jansen7414a032011-05-23 14:33:49 +0200193
Zhao Lei6e39dbe2015-12-31 22:09:05 +0800194 return;
Arne Jansen7414a032011-05-23 14:33:49 +0200195}
196
David Sterbad48d71a2017-03-02 19:43:30 +0100197int btree_readahead_hook(struct extent_buffer *eb, int err)
Arne Jansen7414a032011-05-23 14:33:49 +0200198{
David Sterbad48d71a2017-03-02 19:43:30 +0100199 struct btrfs_fs_info *fs_info = eb->fs_info;
Zhao Lei6e39dbe2015-12-31 22:09:05 +0800200 int ret = 0;
201 struct reada_extent *re;
Arne Jansen7414a032011-05-23 14:33:49 +0200202
Zhao Lei6e39dbe2015-12-31 22:09:05 +0800203 /* find extent */
204 spin_lock(&fs_info->reada_lock);
205 re = radix_tree_lookup(&fs_info->reada_tree,
David Sterbafc2e9012016-11-08 13:50:03 +0100206 eb->start >> PAGE_SHIFT);
Zhao Lei6e39dbe2015-12-31 22:09:05 +0800207 if (re)
208 re->refcnt++;
209 spin_unlock(&fs_info->reada_lock);
210 if (!re) {
211 ret = -1;
212 goto start_machine;
213 }
Arne Jansen7414a032011-05-23 14:33:49 +0200214
David Sterbabcdc51b2016-11-08 13:39:05 +0100215 __readahead_hook(fs_info, re, eb, err);
Zhao Lei6e39dbe2015-12-31 22:09:05 +0800216 reada_extent_put(fs_info, re); /* our ref */
Arne Jansen7414a032011-05-23 14:33:49 +0200217
Zhao Lei6e39dbe2015-12-31 22:09:05 +0800218start_machine:
219 reada_start_machine(fs_info);
Arne Jansen7414a032011-05-23 14:33:49 +0200220 return ret;
221}
222
David Sterba0ceaf282017-03-02 19:43:30 +0100223static struct reada_zone *reada_find_zone(struct btrfs_device *dev, u64 logical,
Ilya Dryomov21ca5432011-11-04 09:41:02 -0400224 struct btrfs_bio *bbio)
Arne Jansen7414a032011-05-23 14:33:49 +0200225{
David Sterba0ceaf282017-03-02 19:43:30 +0100226 struct btrfs_fs_info *fs_info = dev->fs_info;
Arne Jansen7414a032011-05-23 14:33:49 +0200227 int ret;
Arne Jansen7414a032011-05-23 14:33:49 +0200228 struct reada_zone *zone;
229 struct btrfs_block_group_cache *cache = NULL;
230 u64 start;
231 u64 end;
232 int i;
233
Arne Jansen7414a032011-05-23 14:33:49 +0200234 zone = NULL;
235 spin_lock(&fs_info->reada_lock);
236 ret = radix_tree_gang_lookup(&dev->reada_zones, (void **)&zone,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300237 logical >> PAGE_SHIFT, 1);
Zhao Leic37f49c2015-12-18 21:48:48 +0800238 if (ret == 1 && logical >= zone->start && logical <= zone->end) {
Arne Jansen7414a032011-05-23 14:33:49 +0200239 kref_get(&zone->refcnt);
Arne Jansen7414a032011-05-23 14:33:49 +0200240 spin_unlock(&fs_info->reada_lock);
Zhao Leic37f49c2015-12-18 21:48:48 +0800241 return zone;
Arne Jansen7414a032011-05-23 14:33:49 +0200242 }
243
Zhao Leic37f49c2015-12-18 21:48:48 +0800244 spin_unlock(&fs_info->reada_lock);
245
Arne Jansen7414a032011-05-23 14:33:49 +0200246 cache = btrfs_lookup_block_group(fs_info, logical);
247 if (!cache)
248 return NULL;
249
250 start = cache->key.objectid;
251 end = start + cache->key.offset - 1;
252 btrfs_put_block_group(cache);
253
David Sterbaed0244f2016-01-18 18:42:13 +0100254 zone = kzalloc(sizeof(*zone), GFP_KERNEL);
Arne Jansen7414a032011-05-23 14:33:49 +0200255 if (!zone)
256 return NULL;
257
David Sterbacc8385b2017-03-02 18:54:52 +0100258 ret = radix_tree_preload(GFP_KERNEL);
259 if (ret) {
260 kfree(zone);
261 return NULL;
262 }
263
Arne Jansen7414a032011-05-23 14:33:49 +0200264 zone->start = start;
265 zone->end = end;
266 INIT_LIST_HEAD(&zone->list);
267 spin_lock_init(&zone->lock);
268 zone->locked = 0;
269 kref_init(&zone->refcnt);
270 zone->elems = 0;
271 zone->device = dev; /* our device always sits at index 0 */
Ilya Dryomov21ca5432011-11-04 09:41:02 -0400272 for (i = 0; i < bbio->num_stripes; ++i) {
Arne Jansen7414a032011-05-23 14:33:49 +0200273 /* bounds have already been checked */
Ilya Dryomov21ca5432011-11-04 09:41:02 -0400274 zone->devs[i] = bbio->stripes[i].dev;
Arne Jansen7414a032011-05-23 14:33:49 +0200275 }
Ilya Dryomov21ca5432011-11-04 09:41:02 -0400276 zone->ndevs = bbio->num_stripes;
Arne Jansen7414a032011-05-23 14:33:49 +0200277
278 spin_lock(&fs_info->reada_lock);
279 ret = radix_tree_insert(&dev->reada_zones,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300280 (unsigned long)(zone->end >> PAGE_SHIFT),
Arne Jansen7414a032011-05-23 14:33:49 +0200281 zone);
Arne Jansen7414a032011-05-23 14:33:49 +0200282
Arne Jansen8c9c2bf2012-02-25 09:09:30 +0100283 if (ret == -EEXIST) {
Arne Jansen7414a032011-05-23 14:33:49 +0200284 kfree(zone);
Arne Jansen8c9c2bf2012-02-25 09:09:30 +0100285 ret = radix_tree_gang_lookup(&dev->reada_zones, (void **)&zone,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300286 logical >> PAGE_SHIFT, 1);
Zhao Lei8e9aa512015-12-18 21:56:08 +0800287 if (ret == 1 && logical >= zone->start && logical <= zone->end)
Arne Jansen8c9c2bf2012-02-25 09:09:30 +0100288 kref_get(&zone->refcnt);
Zhao Lei8e9aa512015-12-18 21:56:08 +0800289 else
290 zone = NULL;
Arne Jansen7414a032011-05-23 14:33:49 +0200291 }
Arne Jansen8c9c2bf2012-02-25 09:09:30 +0100292 spin_unlock(&fs_info->reada_lock);
David Sterbacc8385b2017-03-02 18:54:52 +0100293 radix_tree_preload_end();
Arne Jansen7414a032011-05-23 14:33:49 +0200294
295 return zone;
296}
297
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400298static struct reada_extent *reada_find_extent(struct btrfs_fs_info *fs_info,
Arne Jansen7414a032011-05-23 14:33:49 +0200299 u64 logical,
Zhao Lei1e7970c2015-12-31 20:30:00 +0800300 struct btrfs_key *top)
Arne Jansen7414a032011-05-23 14:33:49 +0200301{
302 int ret;
Arne Jansen7414a032011-05-23 14:33:49 +0200303 struct reada_extent *re = NULL;
Arne Jansen8c9c2bf2012-02-25 09:09:30 +0100304 struct reada_extent *re_exist = NULL;
Ilya Dryomov21ca5432011-11-04 09:41:02 -0400305 struct btrfs_bio *bbio = NULL;
Arne Jansen7414a032011-05-23 14:33:49 +0200306 struct btrfs_device *dev;
Arne Jansen207a2322012-02-25 09:09:47 +0100307 struct btrfs_device *prev_dev;
Arne Jansen7414a032011-05-23 14:33:49 +0200308 u64 length;
Omar Sandoval7cb2c422015-06-19 11:52:49 -0700309 int real_stripes;
Arne Jansen7414a032011-05-23 14:33:49 +0200310 int nzones = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300311 unsigned long index = logical >> PAGE_SHIFT;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100312 int dev_replace_is_ongoing;
Zhao Lei31945022015-12-31 18:48:54 +0800313 int have_zone = 0;
Arne Jansen7414a032011-05-23 14:33:49 +0200314
Arne Jansen7414a032011-05-23 14:33:49 +0200315 spin_lock(&fs_info->reada_lock);
316 re = radix_tree_lookup(&fs_info->reada_tree, index);
317 if (re)
Al Viro99621b42012-08-29 16:31:33 -0400318 re->refcnt++;
Arne Jansen7414a032011-05-23 14:33:49 +0200319 spin_unlock(&fs_info->reada_lock);
320
Arne Jansen8c9c2bf2012-02-25 09:09:30 +0100321 if (re)
Arne Jansen7414a032011-05-23 14:33:49 +0200322 return re;
323
David Sterbaed0244f2016-01-18 18:42:13 +0100324 re = kzalloc(sizeof(*re), GFP_KERNEL);
Arne Jansen7414a032011-05-23 14:33:49 +0200325 if (!re)
326 return NULL;
327
Arne Jansen7414a032011-05-23 14:33:49 +0200328 re->logical = logical;
Arne Jansen7414a032011-05-23 14:33:49 +0200329 re->top = *top;
330 INIT_LIST_HEAD(&re->extctl);
331 spin_lock_init(&re->lock);
Al Viro99621b42012-08-29 16:31:33 -0400332 re->refcnt = 1;
Arne Jansen7414a032011-05-23 14:33:49 +0200333
334 /*
335 * map block
336 */
David Sterba994a5d22017-03-15 16:39:59 +0100337 length = fs_info->nodesize;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +0200338 ret = btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS, logical,
339 &length, &bbio, 0);
David Sterba994a5d22017-03-15 16:39:59 +0100340 if (ret || !bbio || length < fs_info->nodesize)
Arne Jansen7414a032011-05-23 14:33:49 +0200341 goto error;
342
Stefan Behrens94598ba2012-03-27 14:21:26 -0400343 if (bbio->num_stripes > BTRFS_MAX_MIRRORS) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400344 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -0500345 "readahead: more than %d copies not supported",
346 BTRFS_MAX_MIRRORS);
Arne Jansen7414a032011-05-23 14:33:49 +0200347 goto error;
348 }
349
Omar Sandoval7cb2c422015-06-19 11:52:49 -0700350 real_stripes = bbio->num_stripes - bbio->num_tgtdevs;
351 for (nzones = 0; nzones < real_stripes; ++nzones) {
Arne Jansen7414a032011-05-23 14:33:49 +0200352 struct reada_zone *zone;
353
Ilya Dryomov21ca5432011-11-04 09:41:02 -0400354 dev = bbio->stripes[nzones].dev;
Zhao Lei7aff8cf2016-01-14 18:39:00 +0800355
356 /* cannot read ahead on missing device. */
Bart Van Asschebece2e82018-06-20 10:03:31 -0700357 if (!dev->bdev)
Zhao Lei7aff8cf2016-01-14 18:39:00 +0800358 continue;
359
David Sterba0ceaf282017-03-02 19:43:30 +0100360 zone = reada_find_zone(dev, logical, bbio);
Arne Jansen7414a032011-05-23 14:33:49 +0200361 if (!zone)
Zhao Lei6a159d22015-12-31 18:15:47 +0800362 continue;
Arne Jansen7414a032011-05-23 14:33:49 +0200363
Zhao Lei6a159d22015-12-31 18:15:47 +0800364 re->zones[re->nzones++] = zone;
Arne Jansen7414a032011-05-23 14:33:49 +0200365 spin_lock(&zone->lock);
366 if (!zone->elems)
367 kref_get(&zone->refcnt);
368 ++zone->elems;
369 spin_unlock(&zone->lock);
370 spin_lock(&fs_info->reada_lock);
371 kref_put(&zone->refcnt, reada_zone_release);
372 spin_unlock(&fs_info->reada_lock);
373 }
Zhao Lei6a159d22015-12-31 18:15:47 +0800374 if (re->nzones == 0) {
Arne Jansen7414a032011-05-23 14:33:49 +0200375 /* not a single zone found, error and out */
376 goto error;
377 }
378
David Sterba7ef70b42017-03-02 18:54:52 +0100379 ret = radix_tree_preload(GFP_KERNEL);
380 if (ret)
381 goto error;
382
Arne Jansen7414a032011-05-23 14:33:49 +0200383 /* insert extent in reada_tree + all per-device trees, all or nothing */
David Sterba7e79cb82018-03-24 02:11:38 +0100384 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Arne Jansen7414a032011-05-23 14:33:49 +0200385 spin_lock(&fs_info->reada_lock);
386 ret = radix_tree_insert(&fs_info->reada_tree, index, re);
Arne Jansen8c9c2bf2012-02-25 09:09:30 +0100387 if (ret == -EEXIST) {
388 re_exist = radix_tree_lookup(&fs_info->reada_tree, index);
Al Viro99621b42012-08-29 16:31:33 -0400389 re_exist->refcnt++;
Arne Jansen8c9c2bf2012-02-25 09:09:30 +0100390 spin_unlock(&fs_info->reada_lock);
David Sterba7e79cb82018-03-24 02:11:38 +0100391 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
David Sterba7ef70b42017-03-02 18:54:52 +0100392 radix_tree_preload_end();
Arne Jansen8c9c2bf2012-02-25 09:09:30 +0100393 goto error;
394 }
Arne Jansen7414a032011-05-23 14:33:49 +0200395 if (ret) {
396 spin_unlock(&fs_info->reada_lock);
David Sterba7e79cb82018-03-24 02:11:38 +0100397 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
David Sterba7ef70b42017-03-02 18:54:52 +0100398 radix_tree_preload_end();
Arne Jansen7414a032011-05-23 14:33:49 +0200399 goto error;
400 }
David Sterba7ef70b42017-03-02 18:54:52 +0100401 radix_tree_preload_end();
Arne Jansen207a2322012-02-25 09:09:47 +0100402 prev_dev = NULL;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100403 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(
404 &fs_info->dev_replace);
Zhao Lei6a159d22015-12-31 18:15:47 +0800405 for (nzones = 0; nzones < re->nzones; ++nzones) {
406 dev = re->zones[nzones]->device;
407
Arne Jansen207a2322012-02-25 09:09:47 +0100408 if (dev == prev_dev) {
409 /*
410 * in case of DUP, just add the first zone. As both
411 * are on the same device, there's nothing to gain
412 * from adding both.
413 * Also, it wouldn't work, as the tree is per device
414 * and adding would fail with EEXIST
415 */
416 continue;
417 }
Zhao Lei7aff8cf2016-01-14 18:39:00 +0800418 if (!dev->bdev)
419 continue;
420
Stefan Behrens8dabb742012-11-06 13:15:27 +0100421 if (dev_replace_is_ongoing &&
422 dev == fs_info->dev_replace.tgtdev) {
423 /*
424 * as this device is selected for reading only as
425 * a last resort, skip it for read ahead.
426 */
427 continue;
428 }
Arne Jansen207a2322012-02-25 09:09:47 +0100429 prev_dev = dev;
Arne Jansen7414a032011-05-23 14:33:49 +0200430 ret = radix_tree_insert(&dev->reada_extents, index, re);
431 if (ret) {
Zhao Lei6a159d22015-12-31 18:15:47 +0800432 while (--nzones >= 0) {
433 dev = re->zones[nzones]->device;
Arne Jansen7414a032011-05-23 14:33:49 +0200434 BUG_ON(dev == NULL);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100435 /* ignore whether the entry was inserted */
Arne Jansen7414a032011-05-23 14:33:49 +0200436 radix_tree_delete(&dev->reada_extents, index);
437 }
Arne Jansen7414a032011-05-23 14:33:49 +0200438 radix_tree_delete(&fs_info->reada_tree, index);
439 spin_unlock(&fs_info->reada_lock);
David Sterba7e79cb82018-03-24 02:11:38 +0100440 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Arne Jansen7414a032011-05-23 14:33:49 +0200441 goto error;
442 }
Zhao Lei31945022015-12-31 18:48:54 +0800443 have_zone = 1;
Arne Jansen7414a032011-05-23 14:33:49 +0200444 }
445 spin_unlock(&fs_info->reada_lock);
David Sterba7e79cb82018-03-24 02:11:38 +0100446 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Arne Jansen7414a032011-05-23 14:33:49 +0200447
Zhao Lei31945022015-12-31 18:48:54 +0800448 if (!have_zone)
449 goto error;
450
Zhao Lei6e9606d2015-01-20 15:11:34 +0800451 btrfs_put_bbio(bbio);
Arne Jansen7414a032011-05-23 14:33:49 +0200452 return re;
453
454error:
Zhao Lei6a159d22015-12-31 18:15:47 +0800455 for (nzones = 0; nzones < re->nzones; ++nzones) {
Arne Jansen7414a032011-05-23 14:33:49 +0200456 struct reada_zone *zone;
457
Arne Jansen7414a032011-05-23 14:33:49 +0200458 zone = re->zones[nzones];
459 kref_get(&zone->refcnt);
460 spin_lock(&zone->lock);
461 --zone->elems;
462 if (zone->elems == 0) {
463 /*
464 * no fs_info->reada_lock needed, as this can't be
465 * the last ref
466 */
467 kref_put(&zone->refcnt, reada_zone_release);
468 }
469 spin_unlock(&zone->lock);
470
471 spin_lock(&fs_info->reada_lock);
472 kref_put(&zone->refcnt, reada_zone_release);
473 spin_unlock(&fs_info->reada_lock);
474 }
Zhao Lei6e9606d2015-01-20 15:11:34 +0800475 btrfs_put_bbio(bbio);
Arne Jansen7414a032011-05-23 14:33:49 +0200476 kfree(re);
Arne Jansen8c9c2bf2012-02-25 09:09:30 +0100477 return re_exist;
Arne Jansen7414a032011-05-23 14:33:49 +0200478}
479
Arne Jansen7414a032011-05-23 14:33:49 +0200480static void reada_extent_put(struct btrfs_fs_info *fs_info,
481 struct reada_extent *re)
482{
483 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300484 unsigned long index = re->logical >> PAGE_SHIFT;
Arne Jansen7414a032011-05-23 14:33:49 +0200485
486 spin_lock(&fs_info->reada_lock);
Al Viro99621b42012-08-29 16:31:33 -0400487 if (--re->refcnt) {
Arne Jansen7414a032011-05-23 14:33:49 +0200488 spin_unlock(&fs_info->reada_lock);
489 return;
490 }
491
492 radix_tree_delete(&fs_info->reada_tree, index);
493 for (i = 0; i < re->nzones; ++i) {
494 struct reada_zone *zone = re->zones[i];
495
496 radix_tree_delete(&zone->device->reada_extents, index);
497 }
498
499 spin_unlock(&fs_info->reada_lock);
500
501 for (i = 0; i < re->nzones; ++i) {
502 struct reada_zone *zone = re->zones[i];
503
504 kref_get(&zone->refcnt);
505 spin_lock(&zone->lock);
506 --zone->elems;
507 if (zone->elems == 0) {
508 /* no fs_info->reada_lock needed, as this can't be
509 * the last ref */
510 kref_put(&zone->refcnt, reada_zone_release);
511 }
512 spin_unlock(&zone->lock);
513
514 spin_lock(&fs_info->reada_lock);
515 kref_put(&zone->refcnt, reada_zone_release);
516 spin_unlock(&fs_info->reada_lock);
517 }
Arne Jansen7414a032011-05-23 14:33:49 +0200518
519 kfree(re);
520}
521
522static void reada_zone_release(struct kref *kref)
523{
524 struct reada_zone *zone = container_of(kref, struct reada_zone, refcnt);
525
526 radix_tree_delete(&zone->device->reada_zones,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300527 zone->end >> PAGE_SHIFT);
Arne Jansen7414a032011-05-23 14:33:49 +0200528
529 kfree(zone);
530}
531
532static void reada_control_release(struct kref *kref)
533{
534 struct reada_control *rc = container_of(kref, struct reada_control,
535 refcnt);
536
537 kfree(rc);
538}
539
540static int reada_add_block(struct reada_control *rc, u64 logical,
Zhao Lei1e7970c2015-12-31 20:30:00 +0800541 struct btrfs_key *top, u64 generation)
Arne Jansen7414a032011-05-23 14:33:49 +0200542{
Jeff Mahoneyc28f1582016-06-22 18:56:44 -0400543 struct btrfs_fs_info *fs_info = rc->fs_info;
Arne Jansen7414a032011-05-23 14:33:49 +0200544 struct reada_extent *re;
545 struct reada_extctl *rec;
546
Jeff Mahoneyc28f1582016-06-22 18:56:44 -0400547 /* takes one ref */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400548 re = reada_find_extent(fs_info, logical, top);
Arne Jansen7414a032011-05-23 14:33:49 +0200549 if (!re)
550 return -1;
551
David Sterbaed0244f2016-01-18 18:42:13 +0100552 rec = kzalloc(sizeof(*rec), GFP_KERNEL);
Arne Jansen7414a032011-05-23 14:33:49 +0200553 if (!rec) {
Jeff Mahoneyc28f1582016-06-22 18:56:44 -0400554 reada_extent_put(fs_info, re);
Luis de Bethencourtddd664f2015-10-20 14:56:23 +0100555 return -ENOMEM;
Arne Jansen7414a032011-05-23 14:33:49 +0200556 }
557
558 rec->rc = rc;
559 rec->generation = generation;
560 atomic_inc(&rc->elems);
561
562 spin_lock(&re->lock);
563 list_add_tail(&rec->list, &re->extctl);
564 spin_unlock(&re->lock);
565
566 /* leave the ref on the extent */
567
568 return 0;
569}
570
571/*
572 * called with fs_info->reada_lock held
573 */
574static void reada_peer_zones_set_lock(struct reada_zone *zone, int lock)
575{
576 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300577 unsigned long index = zone->end >> PAGE_SHIFT;
Arne Jansen7414a032011-05-23 14:33:49 +0200578
579 for (i = 0; i < zone->ndevs; ++i) {
580 struct reada_zone *peer;
581 peer = radix_tree_lookup(&zone->devs[i]->reada_zones, index);
582 if (peer && peer->device != zone->device)
583 peer->locked = lock;
584 }
585}
586
587/*
588 * called with fs_info->reada_lock held
589 */
590static int reada_pick_zone(struct btrfs_device *dev)
591{
592 struct reada_zone *top_zone = NULL;
593 struct reada_zone *top_locked_zone = NULL;
594 u64 top_elems = 0;
595 u64 top_locked_elems = 0;
596 unsigned long index = 0;
597 int ret;
598
599 if (dev->reada_curr_zone) {
600 reada_peer_zones_set_lock(dev->reada_curr_zone, 0);
601 kref_put(&dev->reada_curr_zone->refcnt, reada_zone_release);
602 dev->reada_curr_zone = NULL;
603 }
604 /* pick the zone with the most elements */
605 while (1) {
606 struct reada_zone *zone;
607
608 ret = radix_tree_gang_lookup(&dev->reada_zones,
609 (void **)&zone, index, 1);
610 if (ret == 0)
611 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300612 index = (zone->end >> PAGE_SHIFT) + 1;
Arne Jansen7414a032011-05-23 14:33:49 +0200613 if (zone->locked) {
614 if (zone->elems > top_locked_elems) {
615 top_locked_elems = zone->elems;
616 top_locked_zone = zone;
617 }
618 } else {
619 if (zone->elems > top_elems) {
620 top_elems = zone->elems;
621 top_zone = zone;
622 }
623 }
624 }
625 if (top_zone)
626 dev->reada_curr_zone = top_zone;
627 else if (top_locked_zone)
628 dev->reada_curr_zone = top_locked_zone;
629 else
630 return 0;
631
632 dev->reada_next = dev->reada_curr_zone->start;
633 kref_get(&dev->reada_curr_zone->refcnt);
634 reada_peer_zones_set_lock(dev->reada_curr_zone, 1);
635
636 return 1;
637}
638
David Sterba5721b8a2017-03-02 19:43:30 +0100639static int reada_start_machine_dev(struct btrfs_device *dev)
Arne Jansen7414a032011-05-23 14:33:49 +0200640{
David Sterba5721b8a2017-03-02 19:43:30 +0100641 struct btrfs_fs_info *fs_info = dev->fs_info;
Arne Jansen7414a032011-05-23 14:33:49 +0200642 struct reada_extent *re = NULL;
643 int mirror_num = 0;
644 struct extent_buffer *eb = NULL;
645 u64 logical;
Arne Jansen7414a032011-05-23 14:33:49 +0200646 int ret;
647 int i;
Arne Jansen7414a032011-05-23 14:33:49 +0200648
649 spin_lock(&fs_info->reada_lock);
650 if (dev->reada_curr_zone == NULL) {
651 ret = reada_pick_zone(dev);
652 if (!ret) {
653 spin_unlock(&fs_info->reada_lock);
654 return 0;
655 }
656 }
657 /*
658 * FIXME currently we issue the reads one extent at a time. If we have
659 * a contiguous block of extents, we could also coagulate them or use
660 * plugging to speed things up
661 */
662 ret = radix_tree_gang_lookup(&dev->reada_extents, (void **)&re,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300663 dev->reada_next >> PAGE_SHIFT, 1);
Zhao Lei50378532015-12-18 21:33:05 +0800664 if (ret == 0 || re->logical > dev->reada_curr_zone->end) {
Arne Jansen7414a032011-05-23 14:33:49 +0200665 ret = reada_pick_zone(dev);
666 if (!ret) {
667 spin_unlock(&fs_info->reada_lock);
668 return 0;
669 }
670 re = NULL;
671 ret = radix_tree_gang_lookup(&dev->reada_extents, (void **)&re,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300672 dev->reada_next >> PAGE_SHIFT, 1);
Arne Jansen7414a032011-05-23 14:33:49 +0200673 }
674 if (ret == 0) {
675 spin_unlock(&fs_info->reada_lock);
676 return 0;
677 }
Jeff Mahoneyda170662016-06-15 09:22:56 -0400678 dev->reada_next = re->logical + fs_info->nodesize;
Al Viro99621b42012-08-29 16:31:33 -0400679 re->refcnt++;
Arne Jansen7414a032011-05-23 14:33:49 +0200680
681 spin_unlock(&fs_info->reada_lock);
682
Zhao Leia3f7fde2015-12-31 22:57:52 +0800683 spin_lock(&re->lock);
Zhao Lei895a11b2016-01-12 14:58:39 +0800684 if (re->scheduled || list_empty(&re->extctl)) {
Zhao Leia3f7fde2015-12-31 22:57:52 +0800685 spin_unlock(&re->lock);
686 reada_extent_put(fs_info, re);
687 return 0;
688 }
Zhao Lei895a11b2016-01-12 14:58:39 +0800689 re->scheduled = 1;
Zhao Leia3f7fde2015-12-31 22:57:52 +0800690 spin_unlock(&re->lock);
691
Arne Jansen7414a032011-05-23 14:33:49 +0200692 /*
693 * find mirror num
694 */
695 for (i = 0; i < re->nzones; ++i) {
696 if (re->zones[i]->device == dev) {
697 mirror_num = i + 1;
698 break;
699 }
700 }
701 logical = re->logical;
Arne Jansen7414a032011-05-23 14:33:49 +0200702
Arne Jansen7414a032011-05-23 14:33:49 +0200703 atomic_inc(&dev->reada_in_flight);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400704 ret = reada_tree_block_flagged(fs_info, logical, mirror_num, &eb);
Arne Jansen7414a032011-05-23 14:33:49 +0200705 if (ret)
David Sterbabcdc51b2016-11-08 13:39:05 +0100706 __readahead_hook(fs_info, re, NULL, ret);
Arne Jansen7414a032011-05-23 14:33:49 +0200707 else if (eb)
David Sterbabcdc51b2016-11-08 13:39:05 +0100708 __readahead_hook(fs_info, re, eb, ret);
Arne Jansen7414a032011-05-23 14:33:49 +0200709
710 if (eb)
711 free_extent_buffer(eb);
712
Zhao Lei895a11b2016-01-12 14:58:39 +0800713 atomic_dec(&dev->reada_in_flight);
Zhao Leib257cf52015-12-31 21:07:17 +0800714 reada_extent_put(fs_info, re);
715
Arne Jansen7414a032011-05-23 14:33:49 +0200716 return 1;
717
718}
719
Qu Wenruod458b052014-02-28 10:46:19 +0800720static void reada_start_machine_worker(struct btrfs_work *work)
Arne Jansen7414a032011-05-23 14:33:49 +0200721{
722 struct reada_machine_work *rmw;
723 struct btrfs_fs_info *fs_info;
Stefan Behrens3d136a12012-02-03 11:20:04 +0100724 int old_ioprio;
Arne Jansen7414a032011-05-23 14:33:49 +0200725
726 rmw = container_of(work, struct reada_machine_work, work);
727 fs_info = rmw->fs_info;
728
729 kfree(rmw);
730
Stefan Behrens3d136a12012-02-03 11:20:04 +0100731 old_ioprio = IOPRIO_PRIO_VALUE(task_nice_ioclass(current),
732 task_nice_ioprio(current));
733 set_task_ioprio(current, BTRFS_IOPRIO_READA);
Arne Jansen7414a032011-05-23 14:33:49 +0200734 __reada_start_machine(fs_info);
Stefan Behrens3d136a12012-02-03 11:20:04 +0100735 set_task_ioprio(current, old_ioprio);
Zhao Lei2fefd552016-01-07 18:38:48 +0800736
737 atomic_dec(&fs_info->reada_works_cnt);
Arne Jansen7414a032011-05-23 14:33:49 +0200738}
739
740static void __reada_start_machine(struct btrfs_fs_info *fs_info)
741{
742 struct btrfs_device *device;
743 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
744 u64 enqueued;
745 u64 total = 0;
746 int i;
747
748 do {
749 enqueued = 0;
Filipe Mananace7791f2016-05-20 01:57:20 +0100750 mutex_lock(&fs_devices->device_list_mutex);
Arne Jansen7414a032011-05-23 14:33:49 +0200751 list_for_each_entry(device, &fs_devices->devices, dev_list) {
752 if (atomic_read(&device->reada_in_flight) <
753 MAX_IN_FLIGHT)
David Sterba5721b8a2017-03-02 19:43:30 +0100754 enqueued += reada_start_machine_dev(device);
Arne Jansen7414a032011-05-23 14:33:49 +0200755 }
Filipe Mananace7791f2016-05-20 01:57:20 +0100756 mutex_unlock(&fs_devices->device_list_mutex);
Arne Jansen7414a032011-05-23 14:33:49 +0200757 total += enqueued;
758 } while (enqueued && total < 10000);
759
760 if (enqueued == 0)
761 return;
762
763 /*
764 * If everything is already in the cache, this is effectively single
765 * threaded. To a) not hold the caller for too long and b) to utilize
766 * more cores, we broke the loop above after 10000 iterations and now
767 * enqueue to workers to finish it. This will distribute the load to
768 * the cores.
769 */
Zhao Lei2fefd552016-01-07 18:38:48 +0800770 for (i = 0; i < 2; ++i) {
Arne Jansen7414a032011-05-23 14:33:49 +0200771 reada_start_machine(fs_info);
Zhao Lei2fefd552016-01-07 18:38:48 +0800772 if (atomic_read(&fs_info->reada_works_cnt) >
773 BTRFS_MAX_MIRRORS * 2)
774 break;
775 }
Arne Jansen7414a032011-05-23 14:33:49 +0200776}
777
778static void reada_start_machine(struct btrfs_fs_info *fs_info)
779{
780 struct reada_machine_work *rmw;
781
David Sterbaed0244f2016-01-18 18:42:13 +0100782 rmw = kzalloc(sizeof(*rmw), GFP_KERNEL);
Arne Jansen7414a032011-05-23 14:33:49 +0200783 if (!rmw) {
784 /* FIXME we cannot handle this properly right now */
785 BUG();
786 }
Liu Bo9e0af232014-08-15 23:36:53 +0800787 btrfs_init_work(&rmw->work, btrfs_readahead_helper,
788 reada_start_machine_worker, NULL, NULL);
Arne Jansen7414a032011-05-23 14:33:49 +0200789 rmw->fs_info = fs_info;
790
Qu Wenruo736cfa12014-02-28 10:46:13 +0800791 btrfs_queue_work(fs_info->readahead_workers, &rmw->work);
Zhao Lei2fefd552016-01-07 18:38:48 +0800792 atomic_inc(&fs_info->reada_works_cnt);
Arne Jansen7414a032011-05-23 14:33:49 +0200793}
794
795#ifdef DEBUG
796static void dump_devs(struct btrfs_fs_info *fs_info, int all)
797{
798 struct btrfs_device *device;
799 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
800 unsigned long index;
801 int ret;
802 int i;
803 int j;
804 int cnt;
805
806 spin_lock(&fs_info->reada_lock);
807 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400808 btrfs_debug(fs_info, "dev %lld has %d in flight", device->devid,
Arne Jansen7414a032011-05-23 14:33:49 +0200809 atomic_read(&device->reada_in_flight));
810 index = 0;
811 while (1) {
812 struct reada_zone *zone;
813 ret = radix_tree_gang_lookup(&device->reada_zones,
814 (void **)&zone, index, 1);
815 if (ret == 0)
816 break;
Jeff Mahoney62e85572016-09-20 10:05:01 -0400817 pr_debug(" zone %llu-%llu elems %llu locked %d devs",
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400818 zone->start, zone->end, zone->elems,
819 zone->locked);
Arne Jansen7414a032011-05-23 14:33:49 +0200820 for (j = 0; j < zone->ndevs; ++j) {
Jeff Mahoney62e85572016-09-20 10:05:01 -0400821 pr_cont(" %lld",
Arne Jansen7414a032011-05-23 14:33:49 +0200822 zone->devs[j]->devid);
823 }
824 if (device->reada_curr_zone == zone)
Jeff Mahoney62e85572016-09-20 10:05:01 -0400825 pr_cont(" curr off %llu",
Arne Jansen7414a032011-05-23 14:33:49 +0200826 device->reada_next - zone->start);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400827 pr_cont("\n");
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300828 index = (zone->end >> PAGE_SHIFT) + 1;
Arne Jansen7414a032011-05-23 14:33:49 +0200829 }
830 cnt = 0;
831 index = 0;
832 while (all) {
833 struct reada_extent *re = NULL;
834
835 ret = radix_tree_gang_lookup(&device->reada_extents,
836 (void **)&re, index, 1);
837 if (ret == 0)
838 break;
Jeff Mahoney62e85572016-09-20 10:05:01 -0400839 pr_debug(" re: logical %llu size %u empty %d scheduled %d",
Jeff Mahoneyda170662016-06-15 09:22:56 -0400840 re->logical, fs_info->nodesize,
Zhao Lei895a11b2016-01-12 14:58:39 +0800841 list_empty(&re->extctl), re->scheduled);
Arne Jansen7414a032011-05-23 14:33:49 +0200842
843 for (i = 0; i < re->nzones; ++i) {
Jeff Mahoney62e85572016-09-20 10:05:01 -0400844 pr_cont(" zone %llu-%llu devs",
Arne Jansen7414a032011-05-23 14:33:49 +0200845 re->zones[i]->start,
846 re->zones[i]->end);
847 for (j = 0; j < re->zones[i]->ndevs; ++j) {
Jeff Mahoney62e85572016-09-20 10:05:01 -0400848 pr_cont(" %lld",
Arne Jansen7414a032011-05-23 14:33:49 +0200849 re->zones[i]->devs[j]->devid);
850 }
851 }
Jeff Mahoney62e85572016-09-20 10:05:01 -0400852 pr_cont("\n");
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300853 index = (re->logical >> PAGE_SHIFT) + 1;
Arne Jansen7414a032011-05-23 14:33:49 +0200854 if (++cnt > 15)
855 break;
856 }
857 }
858
859 index = 0;
860 cnt = 0;
861 while (all) {
862 struct reada_extent *re = NULL;
863
864 ret = radix_tree_gang_lookup(&fs_info->reada_tree, (void **)&re,
865 index, 1);
866 if (ret == 0)
867 break;
Zhao Lei895a11b2016-01-12 14:58:39 +0800868 if (!re->scheduled) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300869 index = (re->logical >> PAGE_SHIFT) + 1;
Arne Jansen7414a032011-05-23 14:33:49 +0200870 continue;
871 }
Jeff Mahoney62e85572016-09-20 10:05:01 -0400872 pr_debug("re: logical %llu size %u list empty %d scheduled %d",
Jeff Mahoneyda170662016-06-15 09:22:56 -0400873 re->logical, fs_info->nodesize,
Zhao Lei895a11b2016-01-12 14:58:39 +0800874 list_empty(&re->extctl), re->scheduled);
Arne Jansen7414a032011-05-23 14:33:49 +0200875 for (i = 0; i < re->nzones; ++i) {
Jeff Mahoney62e85572016-09-20 10:05:01 -0400876 pr_cont(" zone %llu-%llu devs",
Arne Jansen7414a032011-05-23 14:33:49 +0200877 re->zones[i]->start,
878 re->zones[i]->end);
Zhao Lei8afd6842015-12-31 22:28:51 +0800879 for (j = 0; j < re->zones[i]->ndevs; ++j) {
Jeff Mahoney62e85572016-09-20 10:05:01 -0400880 pr_cont(" %lld",
Zhao Lei8afd6842015-12-31 22:28:51 +0800881 re->zones[i]->devs[j]->devid);
Arne Jansen7414a032011-05-23 14:33:49 +0200882 }
883 }
Jeff Mahoney62e85572016-09-20 10:05:01 -0400884 pr_cont("\n");
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300885 index = (re->logical >> PAGE_SHIFT) + 1;
Arne Jansen7414a032011-05-23 14:33:49 +0200886 }
887 spin_unlock(&fs_info->reada_lock);
888}
889#endif
890
891/*
892 * interface
893 */
894struct reada_control *btrfs_reada_add(struct btrfs_root *root,
895 struct btrfs_key *key_start, struct btrfs_key *key_end)
896{
897 struct reada_control *rc;
898 u64 start;
899 u64 generation;
Luis de Bethencourtddd664f2015-10-20 14:56:23 +0100900 int ret;
Arne Jansen7414a032011-05-23 14:33:49 +0200901 struct extent_buffer *node;
902 static struct btrfs_key max_key = {
903 .objectid = (u64)-1,
904 .type = (u8)-1,
905 .offset = (u64)-1
906 };
907
David Sterbaed0244f2016-01-18 18:42:13 +0100908 rc = kzalloc(sizeof(*rc), GFP_KERNEL);
Arne Jansen7414a032011-05-23 14:33:49 +0200909 if (!rc)
910 return ERR_PTR(-ENOMEM);
911
Jeff Mahoneyc28f1582016-06-22 18:56:44 -0400912 rc->fs_info = root->fs_info;
Arne Jansen7414a032011-05-23 14:33:49 +0200913 rc->key_start = *key_start;
914 rc->key_end = *key_end;
915 atomic_set(&rc->elems, 0);
916 init_waitqueue_head(&rc->wait);
917 kref_init(&rc->refcnt);
918 kref_get(&rc->refcnt); /* one ref for having elements */
919
920 node = btrfs_root_node(root);
921 start = node->start;
Arne Jansen7414a032011-05-23 14:33:49 +0200922 generation = btrfs_header_generation(node);
923 free_extent_buffer(node);
924
Zhao Lei1e7970c2015-12-31 20:30:00 +0800925 ret = reada_add_block(rc, start, &max_key, generation);
Luis de Bethencourtddd664f2015-10-20 14:56:23 +0100926 if (ret) {
Stefan Behrensff023aa2012-11-06 11:43:11 +0100927 kfree(rc);
Luis de Bethencourtddd664f2015-10-20 14:56:23 +0100928 return ERR_PTR(ret);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100929 }
Arne Jansen7414a032011-05-23 14:33:49 +0200930
931 reada_start_machine(root->fs_info);
932
933 return rc;
934}
935
936#ifdef DEBUG
937int btrfs_reada_wait(void *handle)
938{
939 struct reada_control *rc = handle;
Jeff Mahoneyc28f1582016-06-22 18:56:44 -0400940 struct btrfs_fs_info *fs_info = rc->fs_info;
Arne Jansen7414a032011-05-23 14:33:49 +0200941
942 while (atomic_read(&rc->elems)) {
Zhao Lei4fe7a0e2016-01-26 18:42:40 +0800943 if (!atomic_read(&fs_info->reada_works_cnt))
944 reada_start_machine(fs_info);
Arne Jansen7414a032011-05-23 14:33:49 +0200945 wait_event_timeout(rc->wait, atomic_read(&rc->elems) == 0,
946 5 * HZ);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400947 dump_devs(fs_info, atomic_read(&rc->elems) < 10 ? 1 : 0);
Arne Jansen7414a032011-05-23 14:33:49 +0200948 }
949
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400950 dump_devs(fs_info, atomic_read(&rc->elems) < 10 ? 1 : 0);
Arne Jansen7414a032011-05-23 14:33:49 +0200951
952 kref_put(&rc->refcnt, reada_control_release);
953
954 return 0;
955}
956#else
957int btrfs_reada_wait(void *handle)
958{
959 struct reada_control *rc = handle;
Jeff Mahoneyc28f1582016-06-22 18:56:44 -0400960 struct btrfs_fs_info *fs_info = rc->fs_info;
Arne Jansen7414a032011-05-23 14:33:49 +0200961
962 while (atomic_read(&rc->elems)) {
Zhao Lei4fe7a0e2016-01-26 18:42:40 +0800963 if (!atomic_read(&fs_info->reada_works_cnt))
964 reada_start_machine(fs_info);
965 wait_event_timeout(rc->wait, atomic_read(&rc->elems) == 0,
966 (HZ + 9) / 10);
Arne Jansen7414a032011-05-23 14:33:49 +0200967 }
968
969 kref_put(&rc->refcnt, reada_control_release);
970
971 return 0;
972}
973#endif
974
975void btrfs_reada_detach(void *handle)
976{
977 struct reada_control *rc = handle;
978
979 kref_put(&rc->refcnt, reada_control_release);
980}