movinggc.c 5.2 KB
Newer Older
K
Kent Overstreet 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 * Moving/copying garbage collector
 *
 * Copyright 2012 Google, Inc.
 */

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

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

K
Kent Overstreet 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
struct moving_io {
	struct keybuf_key	*w;
	struct search		s;
	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);
	unsigned i;

	for (i = 0; i < KEY_PTRS(k); i++) {
		struct cache *ca = PTR_CACHE(c, k, i);
		struct bucket *g = PTR_BUCKET(c, k, i);

		if (GC_SECTORS_USED(g) < ca->gc_move_threshold)
			return true;
	}

	return false;
}

/* Moving GC - IO loop */

static void moving_io_destructor(struct closure *cl)
{
	struct moving_io *io = container_of(cl, struct moving_io, s.cl);
	kfree(io);
}

static void write_moving_finish(struct closure *cl)
{
	struct moving_io *io = container_of(cl, struct moving_io, s.cl);
	struct bio *bio = &io->bio.bio;
49 50
	struct bio_vec *bv;
	int i;
K
Kent Overstreet 已提交
51

52
	bio_for_each_segment_all(bv, bio, i)
K
Kent Overstreet 已提交
53 54
		__free_page(bv->bv_page);

55
	if (io->s.insert_collision)
K
Kent Overstreet 已提交
56
		trace_bcache_gc_copy_collision(&io->w->key);
K
Kent Overstreet 已提交
57

K
Kent Overstreet 已提交
58
	bch_keybuf_del(&io->s.c->moving_gc_keys, io->w);
K
Kent Overstreet 已提交
59

K
Kent Overstreet 已提交
60
	up(&io->s.c->moving_in_flight);
K
Kent Overstreet 已提交
61 62 63 64 65 66 67 68 69 70 71 72

	closure_return_with_destructor(cl, moving_io_destructor);
}

static void read_moving_endio(struct bio *bio, int error)
{
	struct moving_io *io = container_of(bio->bi_private,
					    struct moving_io, s.cl);

	if (error)
		io->s.error = error;

K
Kent Overstreet 已提交
73
	bch_bbio_endio(io->s.c, bio, error, "reading data to move");
K
Kent Overstreet 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
}

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

	bio_init(bio);
	bio_get(bio);
	bio_set_prio(bio, IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0));

	bio->bi_size		= KEY_SIZE(&io->w->key) << 9;
	bio->bi_max_vecs	= DIV_ROUND_UP(KEY_SIZE(&io->w->key),
					       PAGE_SECTORS);
	bio->bi_private		= &io->s.cl;
	bio->bi_io_vec		= bio->bi_inline_vecs;
89
	bch_bio_map(bio, NULL);
K
Kent Overstreet 已提交
90 91 92 93 94 95 96 97 98 99 100 101
}

static void write_moving(struct closure *cl)
{
	struct search *s = container_of(cl, struct search, cl);
	struct moving_io *io = container_of(s, struct moving_io, s);

	if (!s->error) {
		moving_init(io);

		io->bio.bio.bi_sector	= KEY_START(&io->w->key);
		s->op.lock		= -1;
K
Kent Overstreet 已提交
102 103
		s->write_prio		= 1;
		s->cache_bio		= &io->bio.bio;
K
Kent Overstreet 已提交
104 105

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

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

K
Kent Overstreet 已提交
111 112
		closure_init(&s->btree, cl);
		bch_data_insert(&s->btree);
K
Kent Overstreet 已提交
113 114
	}

K
Kent Overstreet 已提交
115
	continue_at(cl, write_moving_finish, system_wq);
K
Kent Overstreet 已提交
116 117 118 119 120 121 122 123
}

static void read_moving_submit(struct closure *cl)
{
	struct search *s = container_of(cl, struct search, cl);
	struct moving_io *io = container_of(s, struct moving_io, s);
	struct bio *bio = &io->bio.bio;

K
Kent Overstreet 已提交
124
	bch_submit_bbio(bio, s->c, &io->w->key, 0);
K
Kent Overstreet 已提交
125

K
Kent Overstreet 已提交
126
	continue_at(cl, write_moving, system_wq);
K
Kent Overstreet 已提交
127 128
}

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

	closure_init_stack(&cl);
K
Kent Overstreet 已提交
137 138 139 140

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

	while (!test_bit(CACHE_SET_STOPPING, &c->flags)) {
K
Kent Overstreet 已提交
141 142
		w = bch_keybuf_next_rescan(c, &c->moving_gc_keys,
					   &MAX_KEY, moving_pred);
K
Kent Overstreet 已提交
143 144 145 146 147 148 149 150 151 152 153
		if (!w)
			break;

		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 已提交
154 155
		io->s.inode	= KEY_INODE(&w->key);
		io->s.c		= c;
K
Kent Overstreet 已提交
156 157 158 159 160 161 162

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

		bio->bi_rw	= READ;
		bio->bi_end_io	= read_moving_endio;

163
		if (bio_alloc_pages(bio, GFP_KERNEL))
K
Kent Overstreet 已提交
164 165
			goto err;

K
Kent Overstreet 已提交
166
		trace_bcache_gc_copy(&w->key);
K
Kent Overstreet 已提交
167

K
Kent Overstreet 已提交
168 169
		down(&c->moving_in_flight);
		closure_call(&io->s.cl, read_moving_submit, NULL, &cl);
K
Kent Overstreet 已提交
170 171 172 173 174 175 176 177 178
	}

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

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

K
Kent Overstreet 已提交
179
	closure_sync(&cl);
K
Kent Overstreet 已提交
180 181
}

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

static unsigned bucket_heap_top(struct cache *ca)
{
	return GC_SECTORS_USED(heap_peek(&ca->heap));
}

K
Kent Overstreet 已提交
192
void bch_moving_gc(struct cache_set *c)
K
Kent Overstreet 已提交
193 194 195 196 197 198
{
	struct cache *ca;
	struct bucket *b;
	unsigned i;

	if (!c->copy_gc_enabled)
K
Kent Overstreet 已提交
199
		return;
K
Kent Overstreet 已提交
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217

	mutex_lock(&c->bucket_lock);

	for_each_cache(ca, c, i) {
		unsigned sectors_to_move = 0;
		unsigned reserve_sectors = ca->sb.bucket_size *
			min(fifo_used(&ca->free), ca->free.size / 2);

		ca->heap.used = 0;

		for_each_bucket(b, ca) {
			if (!GC_SECTORS_USED(b))
				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 已提交
218
				sectors_to_move -= bucket_heap_top(ca);
K
Kent Overstreet 已提交
219 220 221 222 223 224 225 226 227 228 229 230
				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);
		}

K
Kent Overstreet 已提交
231
		ca->gc_move_threshold = bucket_heap_top(ca);
K
Kent Overstreet 已提交
232 233 234 235 236 237 238 239

		pr_debug("threshold %u", ca->gc_move_threshold);
	}

	mutex_unlock(&c->bucket_lock);

	c->moving_gc_keys.last_scanned = ZERO_KEY;

K
Kent Overstreet 已提交
240
	read_moving(c);
K
Kent Overstreet 已提交
241 242 243 244
}

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