movinggc.c 5.4 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
K
Kent Overstreet 已提交
2 3 4 5 6 7 8 9 10 11 12
/*
 * Moving/copying garbage collector
 *
 * Copyright 2012 Google, Inc.
 */

#include "bcache.h"
#include "btree.h"
#include "debug.h"
#include "request.h"

K
Kent Overstreet 已提交
13 14
#include <trace/events/bcache.h>

K
Kent Overstreet 已提交
15
struct moving_io {
K
Kent Overstreet 已提交
16
	struct closure		cl;
K
Kent Overstreet 已提交
17
	struct keybuf_key	*w;
K
Kent Overstreet 已提交
18
	struct data_insert_op	op;
K
Kent Overstreet 已提交
19 20 21 22 23 24 25
	struct bbio		bio;
};

static bool moving_pred(struct keybuf *buf, struct bkey *k)
{
	struct cache_set *c = container_of(buf, struct cache_set,
					   moving_gc_keys);
26
	unsigned int i;
K
Kent Overstreet 已提交
27

K
Kent Overstreet 已提交
28 29 30
	for (i = 0; i < KEY_PTRS(k); i++)
		if (ptr_available(c, k, i) &&
		    GC_MOVE(PTR_BUCKET(c, k, i)))
K
Kent Overstreet 已提交
31 32 33 34 35 36 37 38 39
			return true;

	return false;
}

/* Moving GC - IO loop */

static void moving_io_destructor(struct closure *cl)
{
K
Kent Overstreet 已提交
40
	struct moving_io *io = container_of(cl, struct moving_io, cl);
41

K
Kent Overstreet 已提交
42 43 44 45 46
	kfree(io);
}

static void write_moving_finish(struct closure *cl)
{
K
Kent Overstreet 已提交
47
	struct moving_io *io = container_of(cl, struct moving_io, cl);
K
Kent Overstreet 已提交
48 49
	struct bio *bio = &io->bio.bio;

50
	bio_free_pages(bio);
K
Kent Overstreet 已提交
51

K
Kent Overstreet 已提交
52
	if (io->op.replace_collision)
K
Kent Overstreet 已提交
53
		trace_bcache_gc_copy_collision(&io->w->key);
K
Kent Overstreet 已提交
54

K
Kent Overstreet 已提交
55
	bch_keybuf_del(&io->op.c->moving_gc_keys, io->w);
K
Kent Overstreet 已提交
56

K
Kent Overstreet 已提交
57
	up(&io->op.c->moving_in_flight);
K
Kent Overstreet 已提交
58 59 60 61

	closure_return_with_destructor(cl, moving_io_destructor);
}

62
static void read_moving_endio(struct bio *bio)
K
Kent Overstreet 已提交
63
{
64
	struct bbio *b = container_of(bio, struct bbio, bio);
K
Kent Overstreet 已提交
65
	struct moving_io *io = container_of(bio->bi_private,
K
Kent Overstreet 已提交
66
					    struct moving_io, cl);
K
Kent Overstreet 已提交
67

68 69
	if (bio->bi_status)
		io->op.status = bio->bi_status;
70 71
	else if (!KEY_DIRTY(&b->key) &&
		 ptr_stale(io->op.c, &b->key, 0)) {
72
		io->op.status = BLK_STS_IOERR;
73
	}
K
Kent Overstreet 已提交
74

75
	bch_bbio_endio(io->op.c, bio, bio->bi_status, "reading data to move");
K
Kent Overstreet 已提交
76 77 78 79 80 81
}

static void moving_init(struct moving_io *io)
{
	struct bio *bio = &io->bio.bio;

82 83
	bio_init(bio, bio->bi_inline_vecs,
		 DIV_ROUND_UP(KEY_SIZE(&io->w->key), PAGE_SECTORS));
K
Kent Overstreet 已提交
84 85 86
	bio_get(bio);
	bio_set_prio(bio, IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0));

87
	bio->bi_iter.bi_size	= KEY_SIZE(&io->w->key) << 9;
K
Kent Overstreet 已提交
88
	bio->bi_private		= &io->cl;
89
	bch_bio_map(bio, NULL);
K
Kent Overstreet 已提交
90 91 92 93
}

static void write_moving(struct closure *cl)
{
K
Kent Overstreet 已提交
94 95
	struct moving_io *io = container_of(cl, struct moving_io, cl);
	struct data_insert_op *op = &io->op;
K
Kent Overstreet 已提交
96

97
	if (!op->status) {
K
Kent Overstreet 已提交
98 99
		moving_init(io);

100
		io->bio.bio.bi_iter.bi_sector = KEY_START(&io->w->key);
K
Kent Overstreet 已提交
101 102
		op->write_prio		= 1;
		op->bio			= &io->bio.bio;
K
Kent Overstreet 已提交
103

K
Kent Overstreet 已提交
104 105
		op->writeback		= KEY_DIRTY(&io->w->key);
		op->csum		= KEY_CSUM(&io->w->key);
K
Kent Overstreet 已提交
106

K
Kent Overstreet 已提交
107 108
		bkey_copy(&op->replace_key, &io->w->key);
		op->replace		= true;
K
Kent Overstreet 已提交
109

K
Kent Overstreet 已提交
110
		closure_call(&op->cl, bch_data_insert, NULL, cl);
K
Kent Overstreet 已提交
111 112
	}

113
	continue_at(cl, write_moving_finish, op->wq);
K
Kent Overstreet 已提交
114 115 116 117
}

static void read_moving_submit(struct closure *cl)
{
K
Kent Overstreet 已提交
118
	struct moving_io *io = container_of(cl, struct moving_io, cl);
K
Kent Overstreet 已提交
119 120
	struct bio *bio = &io->bio.bio;

K
Kent Overstreet 已提交
121
	bch_submit_bbio(bio, io->op.c, &io->w->key, 0);
K
Kent Overstreet 已提交
122

123
	continue_at(cl, write_moving, io->op.wq);
K
Kent Overstreet 已提交
124 125
}

K
Kent Overstreet 已提交
126
static void read_moving(struct cache_set *c)
K
Kent Overstreet 已提交
127 128 129 130
{
	struct keybuf_key *w;
	struct moving_io *io;
	struct bio *bio;
K
Kent Overstreet 已提交
131 132 133
	struct closure cl;

	closure_init_stack(&cl);
K
Kent Overstreet 已提交
134 135 136 137

	/* XXX: if we error, background writeback could stall indefinitely */

	while (!test_bit(CACHE_SET_STOPPING, &c->flags)) {
K
Kent Overstreet 已提交
138 139
		w = bch_keybuf_next_rescan(c, &c->moving_gc_keys,
					   &MAX_KEY, moving_pred);
K
Kent Overstreet 已提交
140 141 142
		if (!w)
			break;

143 144 145 146 147
		if (ptr_stale(c, &w->key, 0)) {
			bch_keybuf_del(&c->moving_gc_keys, w);
			continue;
		}

K
Kent Overstreet 已提交
148 149 150 151 152 153 154 155
		io = kzalloc(sizeof(struct moving_io) + sizeof(struct bio_vec)
			     * DIV_ROUND_UP(KEY_SIZE(&w->key), PAGE_SECTORS),
			     GFP_KERNEL);
		if (!io)
			goto err;

		w->private	= io;
		io->w		= w;
K
Kent Overstreet 已提交
156 157
		io->op.inode	= KEY_INODE(&w->key);
		io->op.c	= c;
158
		io->op.wq	= c->moving_gc_wq;
K
Kent Overstreet 已提交
159 160 161 162

		moving_init(io);
		bio = &io->bio.bio;

M
Mike Christie 已提交
163
		bio_set_op_attrs(bio, REQ_OP_READ, 0);
K
Kent Overstreet 已提交
164 165
		bio->bi_end_io	= read_moving_endio;

166
		if (bch_bio_alloc_pages(bio, GFP_KERNEL))
K
Kent Overstreet 已提交
167 168
			goto err;

K
Kent Overstreet 已提交
169
		trace_bcache_gc_copy(&w->key);
K
Kent Overstreet 已提交
170

K
Kent Overstreet 已提交
171
		down(&c->moving_in_flight);
K
Kent Overstreet 已提交
172
		closure_call(&io->cl, read_moving_submit, NULL, &cl);
K
Kent Overstreet 已提交
173 174 175 176 177 178 179 180 181
	}

	if (0) {
err:		if (!IS_ERR_OR_NULL(w->private))
			kfree(w->private);

		bch_keybuf_del(&c->moving_gc_keys, w);
	}

K
Kent Overstreet 已提交
182
	closure_sync(&cl);
K
Kent Overstreet 已提交
183 184
}

K
Kent Overstreet 已提交
185 186 187 188 189
static bool bucket_cmp(struct bucket *l, struct bucket *r)
{
	return GC_SECTORS_USED(l) < GC_SECTORS_USED(r);
}

190
static unsigned int bucket_heap_top(struct cache *ca)
K
Kent Overstreet 已提交
191
{
192
	struct bucket *b;
193

194
	return (b = heap_peek(&ca->heap)) ? GC_SECTORS_USED(b) : 0;
K
Kent Overstreet 已提交
195 196
}

K
Kent Overstreet 已提交
197
void bch_moving_gc(struct cache_set *c)
K
Kent Overstreet 已提交
198 199 200
{
	struct cache *ca;
	struct bucket *b;
201
	unsigned int i;
K
Kent Overstreet 已提交
202 203

	if (!c->copy_gc_enabled)
K
Kent Overstreet 已提交
204
		return;
K
Kent Overstreet 已提交
205 206 207 208

	mutex_lock(&c->bucket_lock);

	for_each_cache(ca, c, i) {
209 210 211
		unsigned int sectors_to_move = 0;
		unsigned int reserve_sectors = ca->sb.bucket_size *
			     fifo_used(&ca->free[RESERVE_MOVINGGC]);
K
Kent Overstreet 已提交
212 213 214 215

		ca->heap.used = 0;

		for_each_bucket(b, ca) {
216 217 218 219
			if (GC_MARK(b) == GC_MARK_METADATA ||
			    !GC_SECTORS_USED(b) ||
			    GC_SECTORS_USED(b) == ca->sb.bucket_size ||
			    atomic_read(&b->pin))
K
Kent Overstreet 已提交
220 221 222 223 224 225
				continue;

			if (!heap_full(&ca->heap)) {
				sectors_to_move += GC_SECTORS_USED(b);
				heap_add(&ca->heap, b, bucket_cmp);
			} else if (bucket_cmp(b, heap_peek(&ca->heap))) {
K
Kent Overstreet 已提交
226
				sectors_to_move -= bucket_heap_top(ca);
K
Kent Overstreet 已提交
227 228 229 230 231 232 233 234 235 236 237 238
				sectors_to_move += GC_SECTORS_USED(b);

				ca->heap.data[0] = b;
				heap_sift(&ca->heap, 0, bucket_cmp);
			}
		}

		while (sectors_to_move > reserve_sectors) {
			heap_pop(&ca->heap, b, bucket_cmp);
			sectors_to_move -= GC_SECTORS_USED(b);
		}

239 240
		while (heap_pop(&ca->heap, b, bucket_cmp))
			SET_GC_MOVE(b, 1);
K
Kent Overstreet 已提交
241 242 243 244 245 246
	}

	mutex_unlock(&c->bucket_lock);

	c->moving_gc_keys.last_scanned = ZERO_KEY;

K
Kent Overstreet 已提交
247
	read_moving(c);
K
Kent Overstreet 已提交
248 249 250 251
}

void bch_moving_init_cache_set(struct cache_set *c)
{
K
Kent Overstreet 已提交
252
	bch_keybuf_init(&c->moving_gc_keys);
K
Kent Overstreet 已提交
253
	sema_init(&c->moving_in_flight, 64);
K
Kent Overstreet 已提交
254
}