xref: /openbmc/linux/drivers/md/bcache/super.c (revision 17e4aed8)
187418ef9SColy Li // SPDX-License-Identifier: GPL-2.0
2cafe5635SKent Overstreet /*
3cafe5635SKent Overstreet  * bcache setup/teardown code, and some metadata io - read a superblock and
4cafe5635SKent Overstreet  * figure out what to do with it.
5cafe5635SKent Overstreet  *
6cafe5635SKent Overstreet  * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
7cafe5635SKent Overstreet  * Copyright 2012 Google, Inc.
8cafe5635SKent Overstreet  */
9cafe5635SKent Overstreet 
10cafe5635SKent Overstreet #include "bcache.h"
11cafe5635SKent Overstreet #include "btree.h"
12cafe5635SKent Overstreet #include "debug.h"
1365d45231SKent Overstreet #include "extents.h"
14cafe5635SKent Overstreet #include "request.h"
15279afbadSKent Overstreet #include "writeback.h"
16d721a43fSColy Li #include "features.h"
17cafe5635SKent Overstreet 
18c37511b8SKent Overstreet #include <linux/blkdev.h>
19cafe5635SKent Overstreet #include <linux/debugfs.h>
20cafe5635SKent Overstreet #include <linux/genhd.h>
2128935ab5SKent Overstreet #include <linux/idr.h>
2279826c35SKent Overstreet #include <linux/kthread.h>
23ee4a36f4SColy Li #include <linux/workqueue.h>
24cafe5635SKent Overstreet #include <linux/module.h>
25cafe5635SKent Overstreet #include <linux/random.h>
26cafe5635SKent Overstreet #include <linux/reboot.h>
27cafe5635SKent Overstreet #include <linux/sysfs.h>
28cafe5635SKent Overstreet 
299aaf5165SColy Li unsigned int bch_cutoff_writeback;
309aaf5165SColy Li unsigned int bch_cutoff_writeback_sync;
319aaf5165SColy Li 
32cafe5635SKent Overstreet static const char bcache_magic[] = {
33cafe5635SKent Overstreet 	0xc6, 0x85, 0x73, 0xf6, 0x4e, 0x1a, 0x45, 0xca,
34cafe5635SKent Overstreet 	0x82, 0x65, 0xf5, 0x7f, 0x48, 0xba, 0x6d, 0x81
35cafe5635SKent Overstreet };
36cafe5635SKent Overstreet 
37cafe5635SKent Overstreet static const char invalid_uuid[] = {
38cafe5635SKent Overstreet 	0xa0, 0x3e, 0xf8, 0xed, 0x3e, 0xe1, 0xb8, 0x78,
39cafe5635SKent Overstreet 	0xc8, 0x50, 0xfc, 0x5e, 0xcb, 0x16, 0xcd, 0x99
40cafe5635SKent Overstreet };
41cafe5635SKent Overstreet 
42cafe5635SKent Overstreet static struct kobject *bcache_kobj;
43cafe5635SKent Overstreet struct mutex bch_register_lock;
44a59ff6ccSColy Li bool bcache_is_reboot;
45cafe5635SKent Overstreet LIST_HEAD(bch_cache_sets);
46cafe5635SKent Overstreet static LIST_HEAD(uncached_devices);
47cafe5635SKent Overstreet 
4828935ab5SKent Overstreet static int bcache_major;
491dbe32adSColy Li static DEFINE_IDA(bcache_device_idx);
50cafe5635SKent Overstreet static wait_queue_head_t unregister_wait;
51cafe5635SKent Overstreet struct workqueue_struct *bcache_wq;
520f843e65SGuoju Fang struct workqueue_struct *bch_journal_wq;
53cafe5635SKent Overstreet 
54a59ff6ccSColy Li 
55cafe5635SKent Overstreet #define BTREE_MAX_PAGES		(256 * 1024 / PAGE_SIZE)
561dbe32adSColy Li /* limitation of partitions number on single bcache device */
571dbe32adSColy Li #define BCACHE_MINORS		128
581dbe32adSColy Li /* limitation of bcache devices number on single system */
591dbe32adSColy Li #define BCACHE_DEVICE_IDX_MAX	((1U << MINORBITS)/BCACHE_MINORS)
60cafe5635SKent Overstreet 
61cafe5635SKent Overstreet /* Superblock */
62cafe5635SKent Overstreet 
63ffa47032SColy Li static unsigned int get_bucket_size(struct cache_sb *sb, struct cache_sb_disk *s)
64ffa47032SColy Li {
65ffa47032SColy Li 	unsigned int bucket_size = le16_to_cpu(s->bucket_size);
66ffa47032SColy Li 
67ffa47032SColy Li 	if (sb->version >= BCACHE_SB_VERSION_CDEV_WITH_FEATURES &&
68ffa47032SColy Li 	     bch_has_feature_large_bucket(sb))
69ffa47032SColy Li 		bucket_size |= le16_to_cpu(s->bucket_size_hi) << 16;
70ffa47032SColy Li 
71ffa47032SColy Li 	return bucket_size;
72ffa47032SColy Li }
73ffa47032SColy Li 
745b21403cSColy Li static const char *read_super_common(struct cache_sb *sb,  struct block_device *bdev,
755b21403cSColy Li 				     struct cache_sb_disk *s)
76cafe5635SKent Overstreet {
77cafe5635SKent Overstreet 	const char *err;
786f10f7d1SColy Li 	unsigned int i;
79cafe5635SKent Overstreet 
80cafe5635SKent Overstreet 	sb->first_bucket= le16_to_cpu(s->first_bucket);
815b21403cSColy Li 	sb->nbuckets	= le64_to_cpu(s->nbuckets);
82ffa47032SColy Li 	sb->bucket_size	= get_bucket_size(sb, s);
83cafe5635SKent Overstreet 
845b21403cSColy Li 	sb->nr_in_set	= le16_to_cpu(s->nr_in_set);
855b21403cSColy Li 	sb->nr_this_dev	= le16_to_cpu(s->nr_this_dev);
86cafe5635SKent Overstreet 
87cafe5635SKent Overstreet 	err = "Too many journal buckets";
88cafe5635SKent Overstreet 	if (sb->keys > SB_JOURNAL_BUCKETS)
89cafe5635SKent Overstreet 		goto err;
90cafe5635SKent Overstreet 
91cafe5635SKent Overstreet 	err = "Too many buckets";
92cafe5635SKent Overstreet 	if (sb->nbuckets > LONG_MAX)
93cafe5635SKent Overstreet 		goto err;
94cafe5635SKent Overstreet 
95cafe5635SKent Overstreet 	err = "Not enough buckets";
96cafe5635SKent Overstreet 	if (sb->nbuckets < 1 << 7)
97cafe5635SKent Overstreet 		goto err;
98cafe5635SKent Overstreet 
99c557a5f7SColy Li 	err = "Bad block size (not power of 2)";
100c557a5f7SColy Li 	if (!is_power_of_2(sb->block_size))
101c557a5f7SColy Li 		goto err;
102c557a5f7SColy Li 
103c557a5f7SColy Li 	err = "Bad block size (larger than page size)";
104c557a5f7SColy Li 	if (sb->block_size > PAGE_SECTORS)
105c557a5f7SColy Li 		goto err;
106c557a5f7SColy Li 
107c557a5f7SColy Li 	err = "Bad bucket size (not power of 2)";
108c557a5f7SColy Li 	if (!is_power_of_2(sb->bucket_size))
109c557a5f7SColy Li 		goto err;
110c557a5f7SColy Li 
111c557a5f7SColy Li 	err = "Bad bucket size (smaller than page size)";
112c557a5f7SColy Li 	if (sb->bucket_size < PAGE_SECTORS)
1132903381fSKent Overstreet 		goto err;
1142903381fSKent Overstreet 
115cafe5635SKent Overstreet 	err = "Invalid superblock: device too small";
116b0d30981SColy Li 	if (get_capacity(bdev->bd_disk) <
117b0d30981SColy Li 	    sb->bucket_size * sb->nbuckets)
118cafe5635SKent Overstreet 		goto err;
119cafe5635SKent Overstreet 
120cafe5635SKent Overstreet 	err = "Bad UUID";
121169ef1cfSKent Overstreet 	if (bch_is_zero(sb->set_uuid, 16))
122cafe5635SKent Overstreet 		goto err;
123cafe5635SKent Overstreet 
124cafe5635SKent Overstreet 	err = "Bad cache device number in set";
125cafe5635SKent Overstreet 	if (!sb->nr_in_set ||
126cafe5635SKent Overstreet 	    sb->nr_in_set <= sb->nr_this_dev ||
127cafe5635SKent Overstreet 	    sb->nr_in_set > MAX_CACHES_PER_SET)
128cafe5635SKent Overstreet 		goto err;
129cafe5635SKent Overstreet 
130cafe5635SKent Overstreet 	err = "Journal buckets not sequential";
131cafe5635SKent Overstreet 	for (i = 0; i < sb->keys; i++)
132cafe5635SKent Overstreet 		if (sb->d[i] != sb->first_bucket + i)
133cafe5635SKent Overstreet 			goto err;
134cafe5635SKent Overstreet 
135cafe5635SKent Overstreet 	err = "Too many journal buckets";
136cafe5635SKent Overstreet 	if (sb->first_bucket + sb->keys > sb->nbuckets)
137cafe5635SKent Overstreet 		goto err;
138cafe5635SKent Overstreet 
139cafe5635SKent Overstreet 	err = "Invalid superblock: first bucket comes before end of super";
140cafe5635SKent Overstreet 	if (sb->first_bucket * sb->bucket_size < 16)
141cafe5635SKent Overstreet 		goto err;
1422903381fSKent Overstreet 
1435b21403cSColy Li 	err = NULL;
1445b21403cSColy Li err:
1455b21403cSColy Li 	return err;
1465b21403cSColy Li }
1475b21403cSColy Li 
1485b21403cSColy Li 
149cafe5635SKent Overstreet static const char *read_super(struct cache_sb *sb, struct block_device *bdev,
150cafe5635SKent Overstreet 			      struct cache_sb_disk **res)
151cafe5635SKent Overstreet {
152cafe5635SKent Overstreet 	const char *err;
153cafe5635SKent Overstreet 	struct cache_sb_disk *s;
154cafe5635SKent Overstreet 	struct page *page;
155cafe5635SKent Overstreet 	unsigned int i;
156cafe5635SKent Overstreet 
157cafe5635SKent Overstreet 	page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
158cafe5635SKent Overstreet 				   SB_OFFSET >> PAGE_SHIFT, GFP_KERNEL);
159cafe5635SKent Overstreet 	if (IS_ERR(page))
160cafe5635SKent Overstreet 		return "IO error";
161cafe5635SKent Overstreet 	s = page_address(page) + offset_in_page(SB_OFFSET);
162cafe5635SKent Overstreet 
163cafe5635SKent Overstreet 	sb->offset		= le64_to_cpu(s->offset);
164cafe5635SKent Overstreet 	sb->version		= le64_to_cpu(s->version);
165cafe5635SKent Overstreet 
166cafe5635SKent Overstreet 	memcpy(sb->magic,	s->magic, 16);
167cafe5635SKent Overstreet 	memcpy(sb->uuid,	s->uuid, 16);
168cafe5635SKent Overstreet 	memcpy(sb->set_uuid,	s->set_uuid, 16);
169cafe5635SKent Overstreet 	memcpy(sb->label,	s->label, SB_LABEL_SIZE);
170cafe5635SKent Overstreet 
171cafe5635SKent Overstreet 	sb->flags		= le64_to_cpu(s->flags);
172cafe5635SKent Overstreet 	sb->seq			= le64_to_cpu(s->seq);
173cafe5635SKent Overstreet 	sb->last_mount		= le32_to_cpu(s->last_mount);
174cafe5635SKent Overstreet 	sb->keys		= le16_to_cpu(s->keys);
175cafe5635SKent Overstreet 
176cafe5635SKent Overstreet 	for (i = 0; i < SB_JOURNAL_BUCKETS; i++)
177cafe5635SKent Overstreet 		sb->d[i] = le64_to_cpu(s->d[i]);
178cafe5635SKent Overstreet 
179cafe5635SKent Overstreet 	pr_debug("read sb version %llu, flags %llu, seq %llu, journal size %u\n",
180cafe5635SKent Overstreet 		 sb->version, sb->flags, sb->seq, sb->keys);
181cafe5635SKent Overstreet 
182cafe5635SKent Overstreet 	err = "Not a bcache superblock (bad offset)";
183cafe5635SKent Overstreet 	if (sb->offset != SB_SECTOR)
184cafe5635SKent Overstreet 		goto err;
185cafe5635SKent Overstreet 
186cafe5635SKent Overstreet 	err = "Not a bcache superblock (bad magic)";
187cafe5635SKent Overstreet 	if (memcmp(sb->magic, bcache_magic, 16))
188cafe5635SKent Overstreet 		goto err;
189cafe5635SKent Overstreet 
190cafe5635SKent Overstreet 	err = "Bad checksum";
191cafe5635SKent Overstreet 	if (s->csum != csum_set(s))
192cafe5635SKent Overstreet 		goto err;
193cafe5635SKent Overstreet 
194cafe5635SKent Overstreet 	err = "Bad UUID";
195cafe5635SKent Overstreet 	if (bch_is_zero(sb->uuid, 16))
196cafe5635SKent Overstreet 		goto err;
197cafe5635SKent Overstreet 
198cafe5635SKent Overstreet 	sb->block_size	= le16_to_cpu(s->block_size);
199cafe5635SKent Overstreet 
200cafe5635SKent Overstreet 	err = "Superblock block size smaller than device block size";
201cafe5635SKent Overstreet 	if (sb->block_size << 9 < bdev_logical_block_size(bdev))
202cafe5635SKent Overstreet 		goto err;
203cafe5635SKent Overstreet 
204cafe5635SKent Overstreet 	switch (sb->version) {
205cafe5635SKent Overstreet 	case BCACHE_SB_VERSION_BDEV:
206cafe5635SKent Overstreet 		sb->data_offset	= BDEV_DATA_START_DEFAULT;
207cafe5635SKent Overstreet 		break;
208cafe5635SKent Overstreet 	case BCACHE_SB_VERSION_BDEV_WITH_OFFSET:
209d721a43fSColy Li 	case BCACHE_SB_VERSION_BDEV_WITH_FEATURES:
210cafe5635SKent Overstreet 		sb->data_offset	= le64_to_cpu(s->data_offset);
211cafe5635SKent Overstreet 
212cafe5635SKent Overstreet 		err = "Bad data offset";
213cafe5635SKent Overstreet 		if (sb->data_offset < BDEV_DATA_START_DEFAULT)
214cafe5635SKent Overstreet 			goto err;
215cafe5635SKent Overstreet 
216cafe5635SKent Overstreet 		break;
217cafe5635SKent Overstreet 	case BCACHE_SB_VERSION_CDEV:
218cafe5635SKent Overstreet 	case BCACHE_SB_VERSION_CDEV_WITH_UUID:
2195b21403cSColy Li 		err = read_super_common(sb, bdev, s);
2205b21403cSColy Li 		if (err)
221cafe5635SKent Overstreet 			goto err;
2222903381fSKent Overstreet 		break;
223d721a43fSColy Li 	case BCACHE_SB_VERSION_CDEV_WITH_FEATURES:
224ffa47032SColy Li 		/*
225ffa47032SColy Li 		 * Feature bits are needed in read_super_common(),
226ffa47032SColy Li 		 * convert them firstly.
227ffa47032SColy Li 		 */
228d721a43fSColy Li 		sb->feature_compat = le64_to_cpu(s->feature_compat);
229d721a43fSColy Li 		sb->feature_incompat = le64_to_cpu(s->feature_incompat);
230d721a43fSColy Li 		sb->feature_ro_compat = le64_to_cpu(s->feature_ro_compat);
231ffa47032SColy Li 		err = read_super_common(sb, bdev, s);
232ffa47032SColy Li 		if (err)
233ffa47032SColy Li 			goto err;
2342903381fSKent Overstreet 		break;
2352903381fSKent Overstreet 	default:
2362903381fSKent Overstreet 		err = "Unsupported superblock version";
2372903381fSKent Overstreet 		goto err;
2382903381fSKent Overstreet 	}
2392903381fSKent Overstreet 
24075cbb3f1SArnd Bergmann 	sb->last_mount = (u32)ktime_get_real_seconds();
241cfa0c56dSChristoph Hellwig 	*res = s;
2426321bef0SChristoph Hellwig 	return NULL;
243cafe5635SKent Overstreet err:
2446321bef0SChristoph Hellwig 	put_page(page);
245cafe5635SKent Overstreet 	return err;
246cafe5635SKent Overstreet }
247cafe5635SKent Overstreet 
2484246a0b6SChristoph Hellwig static void write_bdev_super_endio(struct bio *bio)
249cafe5635SKent Overstreet {
250cafe5635SKent Overstreet 	struct cached_dev *dc = bio->bi_private;
25108ec1e62SColy Li 
25208ec1e62SColy Li 	if (bio->bi_status)
25308ec1e62SColy Li 		bch_count_backing_io_errors(dc, bio);
254cafe5635SKent Overstreet 
255cb7a583eSKent Overstreet 	closure_put(&dc->sb_write);
256cafe5635SKent Overstreet }
257cafe5635SKent Overstreet 
258475389aeSChristoph Hellwig static void __write_super(struct cache_sb *sb, struct cache_sb_disk *out,
259475389aeSChristoph Hellwig 		struct bio *bio)
260cafe5635SKent Overstreet {
2616f10f7d1SColy Li 	unsigned int i;
262cafe5635SKent Overstreet 
263475389aeSChristoph Hellwig 	bio->bi_opf = REQ_OP_WRITE | REQ_SYNC | REQ_META;
2644f024f37SKent Overstreet 	bio->bi_iter.bi_sector	= SB_SECTOR;
265475389aeSChristoph Hellwig 	__bio_add_page(bio, virt_to_page(out), SB_SIZE,
266475389aeSChristoph Hellwig 			offset_in_page(out));
267cafe5635SKent Overstreet 
268cafe5635SKent Overstreet 	out->offset		= cpu_to_le64(sb->offset);
269cafe5635SKent Overstreet 
270cafe5635SKent Overstreet 	memcpy(out->uuid,	sb->uuid, 16);
271cafe5635SKent Overstreet 	memcpy(out->set_uuid,	sb->set_uuid, 16);
272cafe5635SKent Overstreet 	memcpy(out->label,	sb->label, SB_LABEL_SIZE);
273cafe5635SKent Overstreet 
274cafe5635SKent Overstreet 	out->flags		= cpu_to_le64(sb->flags);
275cafe5635SKent Overstreet 	out->seq		= cpu_to_le64(sb->seq);
276cafe5635SKent Overstreet 
277cafe5635SKent Overstreet 	out->last_mount		= cpu_to_le32(sb->last_mount);
278cafe5635SKent Overstreet 	out->first_bucket	= cpu_to_le16(sb->first_bucket);
279cafe5635SKent Overstreet 	out->keys		= cpu_to_le16(sb->keys);
280cafe5635SKent Overstreet 
281cafe5635SKent Overstreet 	for (i = 0; i < sb->keys; i++)
282cafe5635SKent Overstreet 		out->d[i] = cpu_to_le64(sb->d[i]);
283cafe5635SKent Overstreet 
284d721a43fSColy Li 	if (sb->version >= BCACHE_SB_VERSION_CDEV_WITH_FEATURES) {
285d721a43fSColy Li 		out->feature_compat    = cpu_to_le64(sb->feature_compat);
286d721a43fSColy Li 		out->feature_incompat  = cpu_to_le64(sb->feature_incompat);
287d721a43fSColy Li 		out->feature_ro_compat = cpu_to_le64(sb->feature_ro_compat);
288d721a43fSColy Li 	}
289d721a43fSColy Li 
290d721a43fSColy Li 	out->version		= cpu_to_le64(sb->version);
291cafe5635SKent Overstreet 	out->csum = csum_set(out);
292cafe5635SKent Overstreet 
29346f5aa88SJoe Perches 	pr_debug("ver %llu, flags %llu, seq %llu\n",
294cafe5635SKent Overstreet 		 sb->version, sb->flags, sb->seq);
295cafe5635SKent Overstreet 
2964e49ea4aSMike Christie 	submit_bio(bio);
297cafe5635SKent Overstreet }
298cafe5635SKent Overstreet 
299cb7a583eSKent Overstreet static void bch_write_bdev_super_unlock(struct closure *cl)
300cb7a583eSKent Overstreet {
301cb7a583eSKent Overstreet 	struct cached_dev *dc = container_of(cl, struct cached_dev, sb_write);
302cb7a583eSKent Overstreet 
303cb7a583eSKent Overstreet 	up(&dc->sb_write_mutex);
304cb7a583eSKent Overstreet }
305cb7a583eSKent Overstreet 
306cafe5635SKent Overstreet void bch_write_bdev_super(struct cached_dev *dc, struct closure *parent)
307cafe5635SKent Overstreet {
308cb7a583eSKent Overstreet 	struct closure *cl = &dc->sb_write;
309cafe5635SKent Overstreet 	struct bio *bio = &dc->sb_bio;
310cafe5635SKent Overstreet 
311cb7a583eSKent Overstreet 	down(&dc->sb_write_mutex);
312cb7a583eSKent Overstreet 	closure_init(cl, parent);
313cafe5635SKent Overstreet 
314475389aeSChristoph Hellwig 	bio_init(bio, dc->sb_bv, 1);
31574d46992SChristoph Hellwig 	bio_set_dev(bio, dc->bdev);
316cafe5635SKent Overstreet 	bio->bi_end_io	= write_bdev_super_endio;
317cafe5635SKent Overstreet 	bio->bi_private = dc;
318cafe5635SKent Overstreet 
319cafe5635SKent Overstreet 	closure_get(cl);
32027a40ab9SColy Li 	/* I/O request sent to backing device */
321475389aeSChristoph Hellwig 	__write_super(&dc->sb, dc->sb_disk, bio);
322cafe5635SKent Overstreet 
323cb7a583eSKent Overstreet 	closure_return_with_destructor(cl, bch_write_bdev_super_unlock);
324cafe5635SKent Overstreet }
325cafe5635SKent Overstreet 
3264246a0b6SChristoph Hellwig static void write_super_endio(struct bio *bio)
327cafe5635SKent Overstreet {
328cafe5635SKent Overstreet 	struct cache *ca = bio->bi_private;
329cafe5635SKent Overstreet 
3305138ac67SColy Li 	/* is_read = 0 */
3315138ac67SColy Li 	bch_count_io_errors(ca, bio->bi_status, 0,
3325138ac67SColy Li 			    "writing superblock");
333cb7a583eSKent Overstreet 	closure_put(&ca->set->sb_write);
334cb7a583eSKent Overstreet }
335cb7a583eSKent Overstreet 
336cb7a583eSKent Overstreet static void bcache_write_super_unlock(struct closure *cl)
337cb7a583eSKent Overstreet {
338cb7a583eSKent Overstreet 	struct cache_set *c = container_of(cl, struct cache_set, sb_write);
339cb7a583eSKent Overstreet 
340cb7a583eSKent Overstreet 	up(&c->sb_write_mutex);
341cafe5635SKent Overstreet }
342cafe5635SKent Overstreet 
343cafe5635SKent Overstreet void bcache_write_super(struct cache_set *c)
344cafe5635SKent Overstreet {
345cb7a583eSKent Overstreet 	struct closure *cl = &c->sb_write;
346cafe5635SKent Overstreet 	struct cache *ca;
347d721a43fSColy Li 	unsigned int i, version = BCACHE_SB_VERSION_CDEV_WITH_UUID;
348cafe5635SKent Overstreet 
349cb7a583eSKent Overstreet 	down(&c->sb_write_mutex);
350cb7a583eSKent Overstreet 	closure_init(cl, &c->cl);
351cafe5635SKent Overstreet 
352cafe5635SKent Overstreet 	c->sb.seq++;
353cafe5635SKent Overstreet 
354d721a43fSColy Li 	if (c->sb.version > version)
355d721a43fSColy Li 		version = c->sb.version;
356d721a43fSColy Li 
357cafe5635SKent Overstreet 	for_each_cache(ca, c, i) {
358cafe5635SKent Overstreet 		struct bio *bio = &ca->sb_bio;
359cafe5635SKent Overstreet 
360d721a43fSColy Li 		ca->sb.version		= version;
361cafe5635SKent Overstreet 		ca->sb.seq		= c->sb.seq;
362cafe5635SKent Overstreet 		ca->sb.last_mount	= c->sb.last_mount;
363cafe5635SKent Overstreet 
364cafe5635SKent Overstreet 		SET_CACHE_SYNC(&ca->sb, CACHE_SYNC(&c->sb));
365cafe5635SKent Overstreet 
366475389aeSChristoph Hellwig 		bio_init(bio, ca->sb_bv, 1);
36774d46992SChristoph Hellwig 		bio_set_dev(bio, ca->bdev);
368cafe5635SKent Overstreet 		bio->bi_end_io	= write_super_endio;
369cafe5635SKent Overstreet 		bio->bi_private = ca;
370cafe5635SKent Overstreet 
371cafe5635SKent Overstreet 		closure_get(cl);
372475389aeSChristoph Hellwig 		__write_super(&ca->sb, ca->sb_disk, bio);
373cafe5635SKent Overstreet 	}
374cafe5635SKent Overstreet 
375cb7a583eSKent Overstreet 	closure_return_with_destructor(cl, bcache_write_super_unlock);
376cafe5635SKent Overstreet }
377cafe5635SKent Overstreet 
378cafe5635SKent Overstreet /* UUID io */
379cafe5635SKent Overstreet 
3804246a0b6SChristoph Hellwig static void uuid_endio(struct bio *bio)
381cafe5635SKent Overstreet {
382cafe5635SKent Overstreet 	struct closure *cl = bio->bi_private;
383cb7a583eSKent Overstreet 	struct cache_set *c = container_of(cl, struct cache_set, uuid_write);
384cafe5635SKent Overstreet 
3854e4cbee9SChristoph Hellwig 	cache_set_err_on(bio->bi_status, c, "accessing uuids");
386cafe5635SKent Overstreet 	bch_bbio_free(bio, c);
387cafe5635SKent Overstreet 	closure_put(cl);
388cafe5635SKent Overstreet }
389cafe5635SKent Overstreet 
390cb7a583eSKent Overstreet static void uuid_io_unlock(struct closure *cl)
391cb7a583eSKent Overstreet {
392cb7a583eSKent Overstreet 	struct cache_set *c = container_of(cl, struct cache_set, uuid_write);
393cb7a583eSKent Overstreet 
394cb7a583eSKent Overstreet 	up(&c->uuid_write_mutex);
395cb7a583eSKent Overstreet }
396cb7a583eSKent Overstreet 
397ad0d9e76SMike Christie static void uuid_io(struct cache_set *c, int op, unsigned long op_flags,
398cafe5635SKent Overstreet 		    struct bkey *k, struct closure *parent)
399cafe5635SKent Overstreet {
400cb7a583eSKent Overstreet 	struct closure *cl = &c->uuid_write;
401cafe5635SKent Overstreet 	struct uuid_entry *u;
4026f10f7d1SColy Li 	unsigned int i;
40385b1492eSKent Overstreet 	char buf[80];
404cafe5635SKent Overstreet 
405cafe5635SKent Overstreet 	BUG_ON(!parent);
406cb7a583eSKent Overstreet 	down(&c->uuid_write_mutex);
407cb7a583eSKent Overstreet 	closure_init(cl, parent);
408cafe5635SKent Overstreet 
409cafe5635SKent Overstreet 	for (i = 0; i < KEY_PTRS(k); i++) {
410cafe5635SKent Overstreet 		struct bio *bio = bch_bbio_alloc(c);
411cafe5635SKent Overstreet 
4121eff9d32SJens Axboe 		bio->bi_opf = REQ_SYNC | REQ_META | op_flags;
4134f024f37SKent Overstreet 		bio->bi_iter.bi_size = KEY_SIZE(k) << 9;
414cafe5635SKent Overstreet 
415cafe5635SKent Overstreet 		bio->bi_end_io	= uuid_endio;
416cafe5635SKent Overstreet 		bio->bi_private = cl;
417ad0d9e76SMike Christie 		bio_set_op_attrs(bio, op, REQ_SYNC|REQ_META|op_flags);
418169ef1cfSKent Overstreet 		bch_bio_map(bio, c->uuids);
419cafe5635SKent Overstreet 
420cafe5635SKent Overstreet 		bch_submit_bbio(bio, c, k, i);
421cafe5635SKent Overstreet 
422ad0d9e76SMike Christie 		if (op != REQ_OP_WRITE)
423cafe5635SKent Overstreet 			break;
424cafe5635SKent Overstreet 	}
425cafe5635SKent Overstreet 
426dc9d98d6SKent Overstreet 	bch_extent_to_text(buf, sizeof(buf), k);
42746f5aa88SJoe Perches 	pr_debug("%s UUIDs at %s\n", op == REQ_OP_WRITE ? "wrote" : "read", buf);
428cafe5635SKent Overstreet 
429cafe5635SKent Overstreet 	for (u = c->uuids; u < c->uuids + c->nr_uuids; u++)
430169ef1cfSKent Overstreet 		if (!bch_is_zero(u->uuid, 16))
43146f5aa88SJoe Perches 			pr_debug("Slot %zi: %pU: %s: 1st: %u last: %u inv: %u\n",
432cafe5635SKent Overstreet 				 u - c->uuids, u->uuid, u->label,
433cafe5635SKent Overstreet 				 u->first_reg, u->last_reg, u->invalidated);
434cafe5635SKent Overstreet 
435cb7a583eSKent Overstreet 	closure_return_with_destructor(cl, uuid_io_unlock);
436cafe5635SKent Overstreet }
437cafe5635SKent Overstreet 
438cafe5635SKent Overstreet static char *uuid_read(struct cache_set *c, struct jset *j, struct closure *cl)
439cafe5635SKent Overstreet {
440cafe5635SKent Overstreet 	struct bkey *k = &j->uuid_bucket;
441cafe5635SKent Overstreet 
44265d45231SKent Overstreet 	if (__bch_btree_ptr_invalid(c, k))
443cafe5635SKent Overstreet 		return "bad uuid pointer";
444cafe5635SKent Overstreet 
445cafe5635SKent Overstreet 	bkey_copy(&c->uuid_bucket, k);
44670fd7614SChristoph Hellwig 	uuid_io(c, REQ_OP_READ, 0, k, cl);
447cafe5635SKent Overstreet 
448cafe5635SKent Overstreet 	if (j->version < BCACHE_JSET_VERSION_UUIDv1) {
449cafe5635SKent Overstreet 		struct uuid_entry_v0	*u0 = (void *) c->uuids;
450cafe5635SKent Overstreet 		struct uuid_entry	*u1 = (void *) c->uuids;
451cafe5635SKent Overstreet 		int i;
452cafe5635SKent Overstreet 
453cafe5635SKent Overstreet 		closure_sync(cl);
454cafe5635SKent Overstreet 
455cafe5635SKent Overstreet 		/*
456cafe5635SKent Overstreet 		 * Since the new uuid entry is bigger than the old, we have to
457cafe5635SKent Overstreet 		 * convert starting at the highest memory address and work down
458cafe5635SKent Overstreet 		 * in order to do it in place
459cafe5635SKent Overstreet 		 */
460cafe5635SKent Overstreet 
461cafe5635SKent Overstreet 		for (i = c->nr_uuids - 1;
462cafe5635SKent Overstreet 		     i >= 0;
463cafe5635SKent Overstreet 		     --i) {
464cafe5635SKent Overstreet 			memcpy(u1[i].uuid,	u0[i].uuid, 16);
465cafe5635SKent Overstreet 			memcpy(u1[i].label,	u0[i].label, 32);
466cafe5635SKent Overstreet 
467cafe5635SKent Overstreet 			u1[i].first_reg		= u0[i].first_reg;
468cafe5635SKent Overstreet 			u1[i].last_reg		= u0[i].last_reg;
469cafe5635SKent Overstreet 			u1[i].invalidated	= u0[i].invalidated;
470cafe5635SKent Overstreet 
471cafe5635SKent Overstreet 			u1[i].flags	= 0;
472cafe5635SKent Overstreet 			u1[i].sectors	= 0;
473cafe5635SKent Overstreet 		}
474cafe5635SKent Overstreet 	}
475cafe5635SKent Overstreet 
476cafe5635SKent Overstreet 	return NULL;
477cafe5635SKent Overstreet }
478cafe5635SKent Overstreet 
479cafe5635SKent Overstreet static int __uuid_write(struct cache_set *c)
480cafe5635SKent Overstreet {
481cafe5635SKent Overstreet 	BKEY_PADDED(key) k;
482cafe5635SKent Overstreet 	struct closure cl;
4837a55948dSShenghui Wang 	struct cache *ca;
48421e478ddSColy Li 	unsigned int size;
485cafe5635SKent Overstreet 
4861fae7cf0SColy Li 	closure_init_stack(&cl);
487cafe5635SKent Overstreet 	lockdep_assert_held(&bch_register_lock);
488cafe5635SKent Overstreet 
48917e4aed8SColy Li 	if (bch_bucket_alloc_set(c, RESERVE_BTREE, &k.key, true))
490cafe5635SKent Overstreet 		return 1;
491cafe5635SKent Overstreet 
49221e478ddSColy Li 	size =  meta_bucket_pages(&c->sb) * PAGE_SECTORS;
49321e478ddSColy Li 	SET_KEY_SIZE(&k.key, size);
494ad0d9e76SMike Christie 	uuid_io(c, REQ_OP_WRITE, 0, &k.key, &cl);
495cafe5635SKent Overstreet 	closure_sync(&cl);
496cafe5635SKent Overstreet 
4977a55948dSShenghui Wang 	/* Only one bucket used for uuid write */
4987a55948dSShenghui Wang 	ca = PTR_CACHE(c, &k.key, 0);
4997a55948dSShenghui Wang 	atomic_long_add(ca->sb.bucket_size, &ca->meta_sectors_written);
5007a55948dSShenghui Wang 
501cafe5635SKent Overstreet 	bkey_copy(&c->uuid_bucket, &k.key);
5023a3b6a4eSKent Overstreet 	bkey_put(c, &k.key);
503cafe5635SKent Overstreet 	return 0;
504cafe5635SKent Overstreet }
505cafe5635SKent Overstreet 
506cafe5635SKent Overstreet int bch_uuid_write(struct cache_set *c)
507cafe5635SKent Overstreet {
508cafe5635SKent Overstreet 	int ret = __uuid_write(c);
509cafe5635SKent Overstreet 
510cafe5635SKent Overstreet 	if (!ret)
511cafe5635SKent Overstreet 		bch_journal_meta(c, NULL);
512cafe5635SKent Overstreet 
513cafe5635SKent Overstreet 	return ret;
514cafe5635SKent Overstreet }
515cafe5635SKent Overstreet 
516cafe5635SKent Overstreet static struct uuid_entry *uuid_find(struct cache_set *c, const char *uuid)
517cafe5635SKent Overstreet {
518cafe5635SKent Overstreet 	struct uuid_entry *u;
519cafe5635SKent Overstreet 
520cafe5635SKent Overstreet 	for (u = c->uuids;
521cafe5635SKent Overstreet 	     u < c->uuids + c->nr_uuids; u++)
522cafe5635SKent Overstreet 		if (!memcmp(u->uuid, uuid, 16))
523cafe5635SKent Overstreet 			return u;
524cafe5635SKent Overstreet 
525cafe5635SKent Overstreet 	return NULL;
526cafe5635SKent Overstreet }
527cafe5635SKent Overstreet 
528cafe5635SKent Overstreet static struct uuid_entry *uuid_find_empty(struct cache_set *c)
529cafe5635SKent Overstreet {
530cafe5635SKent Overstreet 	static const char zero_uuid[16] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
5311fae7cf0SColy Li 
532cafe5635SKent Overstreet 	return uuid_find(c, zero_uuid);
533cafe5635SKent Overstreet }
534cafe5635SKent Overstreet 
535cafe5635SKent Overstreet /*
536cafe5635SKent Overstreet  * Bucket priorities/gens:
537cafe5635SKent Overstreet  *
538cafe5635SKent Overstreet  * For each bucket, we store on disk its
539cafe5635SKent Overstreet  *   8 bit gen
540cafe5635SKent Overstreet  *  16 bit priority
541cafe5635SKent Overstreet  *
542cafe5635SKent Overstreet  * See alloc.c for an explanation of the gen. The priority is used to implement
543cafe5635SKent Overstreet  * lru (and in the future other) cache replacement policies; for most purposes
544cafe5635SKent Overstreet  * it's just an opaque integer.
545cafe5635SKent Overstreet  *
546cafe5635SKent Overstreet  * The gens and the priorities don't have a whole lot to do with each other, and
547cafe5635SKent Overstreet  * it's actually the gens that must be written out at specific times - it's no
548cafe5635SKent Overstreet  * big deal if the priorities don't get written, if we lose them we just reuse
549cafe5635SKent Overstreet  * buckets in suboptimal order.
550cafe5635SKent Overstreet  *
551cafe5635SKent Overstreet  * On disk they're stored in a packed array, and in as many buckets are required
552cafe5635SKent Overstreet  * to fit them all. The buckets we use to store them form a list; the journal
553cafe5635SKent Overstreet  * header points to the first bucket, the first bucket points to the second
554cafe5635SKent Overstreet  * bucket, et cetera.
555cafe5635SKent Overstreet  *
556cafe5635SKent Overstreet  * This code is used by the allocation code; periodically (whenever it runs out
557cafe5635SKent Overstreet  * of buckets to allocate from) the allocation code will invalidate some
558cafe5635SKent Overstreet  * buckets, but it can't use those buckets until their new gens are safely on
559cafe5635SKent Overstreet  * disk.
560cafe5635SKent Overstreet  */
561cafe5635SKent Overstreet 
5624246a0b6SChristoph Hellwig static void prio_endio(struct bio *bio)
563cafe5635SKent Overstreet {
564cafe5635SKent Overstreet 	struct cache *ca = bio->bi_private;
565cafe5635SKent Overstreet 
5664e4cbee9SChristoph Hellwig 	cache_set_err_on(bio->bi_status, ca->set, "accessing priorities");
567cafe5635SKent Overstreet 	bch_bbio_free(bio, ca->set);
568cafe5635SKent Overstreet 	closure_put(&ca->prio);
569cafe5635SKent Overstreet }
570cafe5635SKent Overstreet 
571ad0d9e76SMike Christie static void prio_io(struct cache *ca, uint64_t bucket, int op,
572ad0d9e76SMike Christie 		    unsigned long op_flags)
573cafe5635SKent Overstreet {
574cafe5635SKent Overstreet 	struct closure *cl = &ca->prio;
575cafe5635SKent Overstreet 	struct bio *bio = bch_bbio_alloc(ca->set);
576cafe5635SKent Overstreet 
577cafe5635SKent Overstreet 	closure_init_stack(cl);
578cafe5635SKent Overstreet 
5794f024f37SKent Overstreet 	bio->bi_iter.bi_sector	= bucket * ca->sb.bucket_size;
58074d46992SChristoph Hellwig 	bio_set_dev(bio, ca->bdev);
581c954ac8dSColy Li 	bio->bi_iter.bi_size	= meta_bucket_bytes(&ca->sb);
582cafe5635SKent Overstreet 
583cafe5635SKent Overstreet 	bio->bi_end_io	= prio_endio;
584cafe5635SKent Overstreet 	bio->bi_private = ca;
585ad0d9e76SMike Christie 	bio_set_op_attrs(bio, op, REQ_SYNC|REQ_META|op_flags);
586169ef1cfSKent Overstreet 	bch_bio_map(bio, ca->disk_buckets);
587cafe5635SKent Overstreet 
588771f393eSColy Li 	closure_bio_submit(ca->set, bio, &ca->prio);
589cafe5635SKent Overstreet 	closure_sync(cl);
590cafe5635SKent Overstreet }
591cafe5635SKent Overstreet 
59284c529aeSAndrea Righi int bch_prio_write(struct cache *ca, bool wait)
593cafe5635SKent Overstreet {
594cafe5635SKent Overstreet 	int i;
595cafe5635SKent Overstreet 	struct bucket *b;
596cafe5635SKent Overstreet 	struct closure cl;
597cafe5635SKent Overstreet 
59846f5aa88SJoe Perches 	pr_debug("free_prio=%zu, free_none=%zu, free_inc=%zu\n",
59984c529aeSAndrea Righi 		 fifo_used(&ca->free[RESERVE_PRIO]),
60084c529aeSAndrea Righi 		 fifo_used(&ca->free[RESERVE_NONE]),
60184c529aeSAndrea Righi 		 fifo_used(&ca->free_inc));
60284c529aeSAndrea Righi 
60384c529aeSAndrea Righi 	/*
60484c529aeSAndrea Righi 	 * Pre-check if there are enough free buckets. In the non-blocking
60584c529aeSAndrea Righi 	 * scenario it's better to fail early rather than starting to allocate
60684c529aeSAndrea Righi 	 * buckets and do a cleanup later in case of failure.
60784c529aeSAndrea Righi 	 */
60884c529aeSAndrea Righi 	if (!wait) {
60984c529aeSAndrea Righi 		size_t avail = fifo_used(&ca->free[RESERVE_PRIO]) +
61084c529aeSAndrea Righi 			       fifo_used(&ca->free[RESERVE_NONE]);
61184c529aeSAndrea Righi 		if (prio_buckets(ca) > avail)
61284c529aeSAndrea Righi 			return -ENOMEM;
61384c529aeSAndrea Righi 	}
61484c529aeSAndrea Righi 
615cafe5635SKent Overstreet 	closure_init_stack(&cl);
616cafe5635SKent Overstreet 
617cafe5635SKent Overstreet 	lockdep_assert_held(&ca->set->bucket_lock);
618cafe5635SKent Overstreet 
619cafe5635SKent Overstreet 	ca->disk_buckets->seq++;
620cafe5635SKent Overstreet 
621cafe5635SKent Overstreet 	atomic_long_add(ca->sb.bucket_size * prio_buckets(ca),
622cafe5635SKent Overstreet 			&ca->meta_sectors_written);
623cafe5635SKent Overstreet 
624cafe5635SKent Overstreet 	for (i = prio_buckets(ca) - 1; i >= 0; --i) {
625cafe5635SKent Overstreet 		long bucket;
626cafe5635SKent Overstreet 		struct prio_set *p = ca->disk_buckets;
627b1a67b0fSKent Overstreet 		struct bucket_disk *d = p->data;
628b1a67b0fSKent Overstreet 		struct bucket_disk *end = d + prios_per_bucket(ca);
629cafe5635SKent Overstreet 
630cafe5635SKent Overstreet 		for (b = ca->buckets + i * prios_per_bucket(ca);
631cafe5635SKent Overstreet 		     b < ca->buckets + ca->sb.nbuckets && d < end;
632cafe5635SKent Overstreet 		     b++, d++) {
633cafe5635SKent Overstreet 			d->prio = cpu_to_le16(b->prio);
634cafe5635SKent Overstreet 			d->gen = b->gen;
635cafe5635SKent Overstreet 		}
636cafe5635SKent Overstreet 
637cafe5635SKent Overstreet 		p->next_bucket	= ca->prio_buckets[i + 1];
63881ab4190SKent Overstreet 		p->magic	= pset_magic(&ca->sb);
639c954ac8dSColy Li 		p->csum		= bch_crc64(&p->magic, meta_bucket_bytes(&ca->sb) - 8);
640cafe5635SKent Overstreet 
64184c529aeSAndrea Righi 		bucket = bch_bucket_alloc(ca, RESERVE_PRIO, wait);
642cafe5635SKent Overstreet 		BUG_ON(bucket == -1);
643cafe5635SKent Overstreet 
644cafe5635SKent Overstreet 		mutex_unlock(&ca->set->bucket_lock);
645ad0d9e76SMike Christie 		prio_io(ca, bucket, REQ_OP_WRITE, 0);
646cafe5635SKent Overstreet 		mutex_lock(&ca->set->bucket_lock);
647cafe5635SKent Overstreet 
648cafe5635SKent Overstreet 		ca->prio_buckets[i] = bucket;
649cafe5635SKent Overstreet 		atomic_dec_bug(&ca->buckets[bucket].pin);
650cafe5635SKent Overstreet 	}
651cafe5635SKent Overstreet 
652cafe5635SKent Overstreet 	mutex_unlock(&ca->set->bucket_lock);
653cafe5635SKent Overstreet 
654cafe5635SKent Overstreet 	bch_journal_meta(ca->set, &cl);
655cafe5635SKent Overstreet 	closure_sync(&cl);
656cafe5635SKent Overstreet 
657cafe5635SKent Overstreet 	mutex_lock(&ca->set->bucket_lock);
658cafe5635SKent Overstreet 
659cafe5635SKent Overstreet 	/*
660cafe5635SKent Overstreet 	 * Don't want the old priorities to get garbage collected until after we
661cafe5635SKent Overstreet 	 * finish writing the new ones, and they're journalled
662cafe5635SKent Overstreet 	 */
6632531d9eeSKent Overstreet 	for (i = 0; i < prio_buckets(ca); i++) {
6642531d9eeSKent Overstreet 		if (ca->prio_last_buckets[i])
6652531d9eeSKent Overstreet 			__bch_bucket_free(ca,
6662531d9eeSKent Overstreet 				&ca->buckets[ca->prio_last_buckets[i]]);
6672531d9eeSKent Overstreet 
668cafe5635SKent Overstreet 		ca->prio_last_buckets[i] = ca->prio_buckets[i];
669cafe5635SKent Overstreet 	}
67084c529aeSAndrea Righi 	return 0;
6712531d9eeSKent Overstreet }
672cafe5635SKent Overstreet 
67349d08d59SColy Li static int prio_read(struct cache *ca, uint64_t bucket)
674cafe5635SKent Overstreet {
675cafe5635SKent Overstreet 	struct prio_set *p = ca->disk_buckets;
676cafe5635SKent Overstreet 	struct bucket_disk *d = p->data + prios_per_bucket(ca), *end = d;
677cafe5635SKent Overstreet 	struct bucket *b;
6786f10f7d1SColy Li 	unsigned int bucket_nr = 0;
67949d08d59SColy Li 	int ret = -EIO;
680cafe5635SKent Overstreet 
681cafe5635SKent Overstreet 	for (b = ca->buckets;
682cafe5635SKent Overstreet 	     b < ca->buckets + ca->sb.nbuckets;
683cafe5635SKent Overstreet 	     b++, d++) {
684cafe5635SKent Overstreet 		if (d == end) {
685cafe5635SKent Overstreet 			ca->prio_buckets[bucket_nr] = bucket;
686cafe5635SKent Overstreet 			ca->prio_last_buckets[bucket_nr] = bucket;
687cafe5635SKent Overstreet 			bucket_nr++;
688cafe5635SKent Overstreet 
68970fd7614SChristoph Hellwig 			prio_io(ca, bucket, REQ_OP_READ, 0);
690cafe5635SKent Overstreet 
691b0d30981SColy Li 			if (p->csum !=
692c954ac8dSColy Li 			    bch_crc64(&p->magic, meta_bucket_bytes(&ca->sb) - 8)) {
69346f5aa88SJoe Perches 				pr_warn("bad csum reading priorities\n");
69449d08d59SColy Li 				goto out;
69549d08d59SColy Li 			}
696cafe5635SKent Overstreet 
69749d08d59SColy Li 			if (p->magic != pset_magic(&ca->sb)) {
69846f5aa88SJoe Perches 				pr_warn("bad magic reading priorities\n");
69949d08d59SColy Li 				goto out;
70049d08d59SColy Li 			}
701cafe5635SKent Overstreet 
702cafe5635SKent Overstreet 			bucket = p->next_bucket;
703cafe5635SKent Overstreet 			d = p->data;
704cafe5635SKent Overstreet 		}
705cafe5635SKent Overstreet 
706cafe5635SKent Overstreet 		b->prio = le16_to_cpu(d->prio);
7073a2fd9d5SKent Overstreet 		b->gen = b->last_gc = d->gen;
708cafe5635SKent Overstreet 	}
70949d08d59SColy Li 
71049d08d59SColy Li 	ret = 0;
71149d08d59SColy Li out:
71249d08d59SColy Li 	return ret;
713cafe5635SKent Overstreet }
714cafe5635SKent Overstreet 
715cafe5635SKent Overstreet /* Bcache device */
716cafe5635SKent Overstreet 
717cafe5635SKent Overstreet static int open_dev(struct block_device *b, fmode_t mode)
718cafe5635SKent Overstreet {
719cafe5635SKent Overstreet 	struct bcache_device *d = b->bd_disk->private_data;
7201fae7cf0SColy Li 
721c4d951ddSKent Overstreet 	if (test_bit(BCACHE_DEV_CLOSING, &d->flags))
722cafe5635SKent Overstreet 		return -ENXIO;
723cafe5635SKent Overstreet 
724cafe5635SKent Overstreet 	closure_get(&d->cl);
725cafe5635SKent Overstreet 	return 0;
726cafe5635SKent Overstreet }
727cafe5635SKent Overstreet 
728867e1162SEmil Goode static void release_dev(struct gendisk *b, fmode_t mode)
729cafe5635SKent Overstreet {
730cafe5635SKent Overstreet 	struct bcache_device *d = b->private_data;
7311fae7cf0SColy Li 
732cafe5635SKent Overstreet 	closure_put(&d->cl);
733cafe5635SKent Overstreet }
734cafe5635SKent Overstreet 
735cafe5635SKent Overstreet static int ioctl_dev(struct block_device *b, fmode_t mode,
736cafe5635SKent Overstreet 		     unsigned int cmd, unsigned long arg)
737cafe5635SKent Overstreet {
738cafe5635SKent Overstreet 	struct bcache_device *d = b->bd_disk->private_data;
7390f0709e6SColy Li 
740cafe5635SKent Overstreet 	return d->ioctl(d, mode, cmd, arg);
741cafe5635SKent Overstreet }
742cafe5635SKent Overstreet 
743c62b37d9SChristoph Hellwig static const struct block_device_operations bcache_cached_ops = {
744c62b37d9SChristoph Hellwig 	.submit_bio	= cached_dev_submit_bio,
745c62b37d9SChristoph Hellwig 	.open		= open_dev,
746c62b37d9SChristoph Hellwig 	.release	= release_dev,
747c62b37d9SChristoph Hellwig 	.ioctl		= ioctl_dev,
748c62b37d9SChristoph Hellwig 	.owner		= THIS_MODULE,
749c62b37d9SChristoph Hellwig };
750c62b37d9SChristoph Hellwig 
751c62b37d9SChristoph Hellwig static const struct block_device_operations bcache_flash_ops = {
752c62b37d9SChristoph Hellwig 	.submit_bio	= flash_dev_submit_bio,
753cafe5635SKent Overstreet 	.open		= open_dev,
754cafe5635SKent Overstreet 	.release	= release_dev,
755cafe5635SKent Overstreet 	.ioctl		= ioctl_dev,
756cafe5635SKent Overstreet 	.owner		= THIS_MODULE,
757cafe5635SKent Overstreet };
758cafe5635SKent Overstreet 
759cafe5635SKent Overstreet void bcache_device_stop(struct bcache_device *d)
760cafe5635SKent Overstreet {
761c4d951ddSKent Overstreet 	if (!test_and_set_bit(BCACHE_DEV_CLOSING, &d->flags))
76263d63b51SColy Li 		/*
76363d63b51SColy Li 		 * closure_fn set to
76463d63b51SColy Li 		 * - cached device: cached_dev_flush()
76563d63b51SColy Li 		 * - flash dev: flash_dev_flush()
76663d63b51SColy Li 		 */
767cafe5635SKent Overstreet 		closure_queue(&d->cl);
768cafe5635SKent Overstreet }
769cafe5635SKent Overstreet 
770ee668506SKent Overstreet static void bcache_device_unlink(struct bcache_device *d)
771ee668506SKent Overstreet {
772c4d951ddSKent Overstreet 	lockdep_assert_held(&bch_register_lock);
773c4d951ddSKent Overstreet 
774c4d951ddSKent Overstreet 	if (d->c && !test_and_set_bit(BCACHE_DEV_UNLINK_DONE, &d->flags)) {
7756f10f7d1SColy Li 		unsigned int i;
776ee668506SKent Overstreet 		struct cache *ca;
777ee668506SKent Overstreet 
778ee668506SKent Overstreet 		sysfs_remove_link(&d->c->kobj, d->name);
779ee668506SKent Overstreet 		sysfs_remove_link(&d->kobj, "cache");
780ee668506SKent Overstreet 
781ee668506SKent Overstreet 		for_each_cache(ca, d->c, i)
782ee668506SKent Overstreet 			bd_unlink_disk_holder(ca->bdev, d->disk);
783ee668506SKent Overstreet 	}
784c4d951ddSKent Overstreet }
785ee668506SKent Overstreet 
786ee668506SKent Overstreet static void bcache_device_link(struct bcache_device *d, struct cache_set *c,
787ee668506SKent Overstreet 			       const char *name)
788ee668506SKent Overstreet {
7896f10f7d1SColy Li 	unsigned int i;
790ee668506SKent Overstreet 	struct cache *ca;
7914b6efb4bSColy Li 	int ret;
792ee668506SKent Overstreet 
793ee668506SKent Overstreet 	for_each_cache(ca, d->c, i)
794ee668506SKent Overstreet 		bd_link_disk_holder(ca->bdev, d->disk);
795ee668506SKent Overstreet 
796ee668506SKent Overstreet 	snprintf(d->name, BCACHEDEVNAME_SIZE,
797ee668506SKent Overstreet 		 "%s%u", name, d->id);
798ee668506SKent Overstreet 
7994b6efb4bSColy Li 	ret = sysfs_create_link(&d->kobj, &c->kobj, "cache");
8004b6efb4bSColy Li 	if (ret < 0)
80146f5aa88SJoe Perches 		pr_err("Couldn't create device -> cache set symlink\n");
8024b6efb4bSColy Li 
8034b6efb4bSColy Li 	ret = sysfs_create_link(&c->kobj, &d->kobj, d->name);
8044b6efb4bSColy Li 	if (ret < 0)
80546f5aa88SJoe Perches 		pr_err("Couldn't create cache set -> device symlink\n");
806fecaee6fSZheng Liu 
807fecaee6fSZheng Liu 	clear_bit(BCACHE_DEV_UNLINK_DONE, &d->flags);
808ee668506SKent Overstreet }
809ee668506SKent Overstreet 
810cafe5635SKent Overstreet static void bcache_device_detach(struct bcache_device *d)
811cafe5635SKent Overstreet {
812cafe5635SKent Overstreet 	lockdep_assert_held(&bch_register_lock);
813cafe5635SKent Overstreet 
814ea8c5356SColy Li 	atomic_dec(&d->c->attached_dev_nr);
815ea8c5356SColy Li 
816c4d951ddSKent Overstreet 	if (test_bit(BCACHE_DEV_DETACHING, &d->flags)) {
817cafe5635SKent Overstreet 		struct uuid_entry *u = d->c->uuids + d->id;
818cafe5635SKent Overstreet 
819cafe5635SKent Overstreet 		SET_UUID_FLASH_ONLY(u, 0);
820cafe5635SKent Overstreet 		memcpy(u->uuid, invalid_uuid, 16);
82175cbb3f1SArnd Bergmann 		u->invalidated = cpu_to_le32((u32)ktime_get_real_seconds());
822cafe5635SKent Overstreet 		bch_uuid_write(d->c);
823cafe5635SKent Overstreet 	}
824cafe5635SKent Overstreet 
825ee668506SKent Overstreet 	bcache_device_unlink(d);
826ee668506SKent Overstreet 
827cafe5635SKent Overstreet 	d->c->devices[d->id] = NULL;
828cafe5635SKent Overstreet 	closure_put(&d->c->caching);
829cafe5635SKent Overstreet 	d->c = NULL;
830cafe5635SKent Overstreet }
831cafe5635SKent Overstreet 
832cafe5635SKent Overstreet static void bcache_device_attach(struct bcache_device *d, struct cache_set *c,
8336f10f7d1SColy Li 				 unsigned int id)
834cafe5635SKent Overstreet {
835cafe5635SKent Overstreet 	d->id = id;
836cafe5635SKent Overstreet 	d->c = c;
837cafe5635SKent Overstreet 	c->devices[id] = d;
838cafe5635SKent Overstreet 
8392831231dSColy Li 	if (id >= c->devices_max_used)
8402831231dSColy Li 		c->devices_max_used = id + 1;
8412831231dSColy Li 
842cafe5635SKent Overstreet 	closure_get(&c->caching);
843cafe5635SKent Overstreet }
844cafe5635SKent Overstreet 
8451dbe32adSColy Li static inline int first_minor_to_idx(int first_minor)
8461dbe32adSColy Li {
8471dbe32adSColy Li 	return (first_minor/BCACHE_MINORS);
8481dbe32adSColy Li }
8491dbe32adSColy Li 
8501dbe32adSColy Li static inline int idx_to_first_minor(int idx)
8511dbe32adSColy Li {
8521dbe32adSColy Li 	return (idx * BCACHE_MINORS);
8531dbe32adSColy Li }
8541dbe32adSColy Li 
855cafe5635SKent Overstreet static void bcache_device_free(struct bcache_device *d)
856cafe5635SKent Overstreet {
8572d886951SColy Li 	struct gendisk *disk = d->disk;
8582d886951SColy Li 
859cafe5635SKent Overstreet 	lockdep_assert_held(&bch_register_lock);
860cafe5635SKent Overstreet 
8612d886951SColy Li 	if (disk)
86246f5aa88SJoe Perches 		pr_info("%s stopped\n", disk->disk_name);
8632d886951SColy Li 	else
86446f5aa88SJoe Perches 		pr_err("bcache device (NULL gendisk) stopped\n");
865cafe5635SKent Overstreet 
866cafe5635SKent Overstreet 	if (d->c)
867cafe5635SKent Overstreet 		bcache_device_detach(d);
8682d886951SColy Li 
8692d886951SColy Li 	if (disk) {
87086da9f73SColy Li 		bool disk_added = (disk->flags & GENHD_FL_UP) != 0;
87186da9f73SColy Li 
87286da9f73SColy Li 		if (disk_added)
8732d886951SColy Li 			del_gendisk(disk);
8742d886951SColy Li 
8752d886951SColy Li 		if (disk->queue)
8762d886951SColy Li 			blk_cleanup_queue(disk->queue);
8772d886951SColy Li 
8781dbe32adSColy Li 		ida_simple_remove(&bcache_device_idx,
8792d886951SColy Li 				  first_minor_to_idx(disk->first_minor));
88086da9f73SColy Li 		if (disk_added)
8812d886951SColy Li 			put_disk(disk);
88228935ab5SKent Overstreet 	}
883cafe5635SKent Overstreet 
884d19936a2SKent Overstreet 	bioset_exit(&d->bio_split);
885958b4338SPekka Enberg 	kvfree(d->full_dirty_stripes);
886958b4338SPekka Enberg 	kvfree(d->stripe_sectors_dirty);
887cafe5635SKent Overstreet 
888cafe5635SKent Overstreet 	closure_debug_destroy(&d->cl);
889cafe5635SKent Overstreet }
890cafe5635SKent Overstreet 
8916f10f7d1SColy Li static int bcache_device_init(struct bcache_device *d, unsigned int block_size,
892c62b37d9SChristoph Hellwig 		sector_t sectors, struct block_device *cached_bdev,
893c62b37d9SChristoph Hellwig 		const struct block_device_operations *ops)
894cafe5635SKent Overstreet {
895cafe5635SKent Overstreet 	struct request_queue *q;
8965f2b18ecSBart Van Assche 	const size_t max_stripes = min_t(size_t, INT_MAX,
8975f2b18ecSBart Van Assche 					 SIZE_MAX / sizeof(atomic_t));
89865f0f017SColy Li 	uint64_t n;
8991dbe32adSColy Li 	int idx;
900279afbadSKent Overstreet 
9012d679fc7SKent Overstreet 	if (!d->stripe_size)
9022d679fc7SKent Overstreet 		d->stripe_size = 1 << 31;
903279afbadSKent Overstreet 
90465f0f017SColy Li 	n = DIV_ROUND_UP_ULL(sectors, d->stripe_size);
90565f0f017SColy Li 	if (!n || n > max_stripes) {
90665f0f017SColy Li 		pr_err("nr_stripes too large or invalid: %llu (start sector beyond end of disk?)\n",
90765f0f017SColy Li 			n);
908279afbadSKent Overstreet 		return -ENOMEM;
90948a915a8SKent Overstreet 	}
91065f0f017SColy Li 	d->nr_stripes = n;
911279afbadSKent Overstreet 
912279afbadSKent Overstreet 	n = d->nr_stripes * sizeof(atomic_t);
913bc4e54f6SMichal Hocko 	d->stripe_sectors_dirty = kvzalloc(n, GFP_KERNEL);
914279afbadSKent Overstreet 	if (!d->stripe_sectors_dirty)
915279afbadSKent Overstreet 		return -ENOMEM;
916cafe5635SKent Overstreet 
91748a915a8SKent Overstreet 	n = BITS_TO_LONGS(d->nr_stripes) * sizeof(unsigned long);
918bc4e54f6SMichal Hocko 	d->full_dirty_stripes = kvzalloc(n, GFP_KERNEL);
91948a915a8SKent Overstreet 	if (!d->full_dirty_stripes)
92048a915a8SKent Overstreet 		return -ENOMEM;
92148a915a8SKent Overstreet 
9221dbe32adSColy Li 	idx = ida_simple_get(&bcache_device_idx, 0,
9231dbe32adSColy Li 				BCACHE_DEVICE_IDX_MAX, GFP_KERNEL);
9241dbe32adSColy Li 	if (idx < 0)
9251dbe32adSColy Li 		return idx;
926b8c0d911SEric Wheeler 
927d19936a2SKent Overstreet 	if (bioset_init(&d->bio_split, 4, offsetof(struct bbio, bio),
9289b4e9f5aSFlorian Schmaus 			BIOSET_NEED_BVECS|BIOSET_NEED_RESCUER))
9299b4e9f5aSFlorian Schmaus 		goto err;
9309b4e9f5aSFlorian Schmaus 
9319b4e9f5aSFlorian Schmaus 	d->disk = alloc_disk(BCACHE_MINORS);
9329b4e9f5aSFlorian Schmaus 	if (!d->disk)
9339b4e9f5aSFlorian Schmaus 		goto err;
934cafe5635SKent Overstreet 
935279afbadSKent Overstreet 	set_capacity(d->disk, sectors);
9361dbe32adSColy Li 	snprintf(d->disk->disk_name, DISK_NAME_LEN, "bcache%i", idx);
937cafe5635SKent Overstreet 
938cafe5635SKent Overstreet 	d->disk->major		= bcache_major;
9391dbe32adSColy Li 	d->disk->first_minor	= idx_to_first_minor(idx);
940c62b37d9SChristoph Hellwig 	d->disk->fops		= ops;
941cafe5635SKent Overstreet 	d->disk->private_data	= d;
942cafe5635SKent Overstreet 
943c62b37d9SChristoph Hellwig 	q = blk_alloc_queue(NUMA_NO_NODE);
94428935ab5SKent Overstreet 	if (!q)
94528935ab5SKent Overstreet 		return -ENOMEM;
94628935ab5SKent Overstreet 
947cafe5635SKent Overstreet 	d->disk->queue			= q;
948cafe5635SKent Overstreet 	q->limits.max_hw_sectors	= UINT_MAX;
949cafe5635SKent Overstreet 	q->limits.max_sectors		= UINT_MAX;
950cafe5635SKent Overstreet 	q->limits.max_segment_size	= UINT_MAX;
951cafe5635SKent Overstreet 	q->limits.max_segments		= BIO_MAX_PAGES;
9522bb4cd5cSJens Axboe 	blk_queue_max_discard_sectors(q, UINT_MAX);
95390db6919SKent Overstreet 	q->limits.discard_granularity	= 512;
954cafe5635SKent Overstreet 	q->limits.io_min		= block_size;
955cafe5635SKent Overstreet 	q->limits.logical_block_size	= block_size;
956cafe5635SKent Overstreet 	q->limits.physical_block_size	= block_size;
957dcacbc12SMauricio Faria de Oliveira 
958dcacbc12SMauricio Faria de Oliveira 	if (q->limits.logical_block_size > PAGE_SIZE && cached_bdev) {
959dcacbc12SMauricio Faria de Oliveira 		/*
960dcacbc12SMauricio Faria de Oliveira 		 * This should only happen with BCACHE_SB_VERSION_BDEV.
961dcacbc12SMauricio Faria de Oliveira 		 * Block/page size is checked for BCACHE_SB_VERSION_CDEV.
962dcacbc12SMauricio Faria de Oliveira 		 */
9634b25bbf5SColy Li 		pr_info("%s: sb/logical block size (%u) greater than page size (%lu) falling back to device logical block size (%u)\n",
964dcacbc12SMauricio Faria de Oliveira 			d->disk->disk_name, q->limits.logical_block_size,
965dcacbc12SMauricio Faria de Oliveira 			PAGE_SIZE, bdev_logical_block_size(cached_bdev));
966dcacbc12SMauricio Faria de Oliveira 
967dcacbc12SMauricio Faria de Oliveira 		/* This also adjusts physical block size/min io size if needed */
968dcacbc12SMauricio Faria de Oliveira 		blk_queue_logical_block_size(q, bdev_logical_block_size(cached_bdev));
969dcacbc12SMauricio Faria de Oliveira 	}
970dcacbc12SMauricio Faria de Oliveira 
97144e1ebe2SBart Van Assche 	blk_queue_flag_set(QUEUE_FLAG_NONROT, d->disk->queue);
97244e1ebe2SBart Van Assche 	blk_queue_flag_clear(QUEUE_FLAG_ADD_RANDOM, d->disk->queue);
97344e1ebe2SBart Van Assche 	blk_queue_flag_set(QUEUE_FLAG_DISCARD, d->disk->queue);
974cafe5635SKent Overstreet 
97584b4ff9eSJens Axboe 	blk_queue_write_cache(q, true, true);
97654d12f2bSKent Overstreet 
977cafe5635SKent Overstreet 	return 0;
9789b4e9f5aSFlorian Schmaus 
9799b4e9f5aSFlorian Schmaus err:
9809b4e9f5aSFlorian Schmaus 	ida_simple_remove(&bcache_device_idx, idx);
9819b4e9f5aSFlorian Schmaus 	return -ENOMEM;
9829b4e9f5aSFlorian Schmaus 
983cafe5635SKent Overstreet }
984cafe5635SKent Overstreet 
985cafe5635SKent Overstreet /* Cached device */
986cafe5635SKent Overstreet 
987cafe5635SKent Overstreet static void calc_cached_dev_sectors(struct cache_set *c)
988cafe5635SKent Overstreet {
989cafe5635SKent Overstreet 	uint64_t sectors = 0;
990cafe5635SKent Overstreet 	struct cached_dev *dc;
991cafe5635SKent Overstreet 
992cafe5635SKent Overstreet 	list_for_each_entry(dc, &c->cached_devs, list)
993cafe5635SKent Overstreet 		sectors += bdev_sectors(dc->bdev);
994cafe5635SKent Overstreet 
995cafe5635SKent Overstreet 	c->cached_dev_sectors = sectors;
996cafe5635SKent Overstreet }
997cafe5635SKent Overstreet 
9980f0709e6SColy Li #define BACKING_DEV_OFFLINE_TIMEOUT 5
9990f0709e6SColy Li static int cached_dev_status_update(void *arg)
10000f0709e6SColy Li {
10010f0709e6SColy Li 	struct cached_dev *dc = arg;
10020f0709e6SColy Li 	struct request_queue *q;
10030f0709e6SColy Li 
10040f0709e6SColy Li 	/*
10050f0709e6SColy Li 	 * If this delayed worker is stopping outside, directly quit here.
10060f0709e6SColy Li 	 * dc->io_disable might be set via sysfs interface, so check it
10070f0709e6SColy Li 	 * here too.
10080f0709e6SColy Li 	 */
10090f0709e6SColy Li 	while (!kthread_should_stop() && !dc->io_disable) {
10100f0709e6SColy Li 		q = bdev_get_queue(dc->bdev);
10110f0709e6SColy Li 		if (blk_queue_dying(q))
10120f0709e6SColy Li 			dc->offline_seconds++;
10130f0709e6SColy Li 		else
10140f0709e6SColy Li 			dc->offline_seconds = 0;
10150f0709e6SColy Li 
10160f0709e6SColy Li 		if (dc->offline_seconds >= BACKING_DEV_OFFLINE_TIMEOUT) {
101746f5aa88SJoe Perches 			pr_err("%s: device offline for %d seconds\n",
10180f0709e6SColy Li 			       dc->backing_dev_name,
10190f0709e6SColy Li 			       BACKING_DEV_OFFLINE_TIMEOUT);
102046f5aa88SJoe Perches 			pr_err("%s: disable I/O request due to backing device offline\n",
102146f5aa88SJoe Perches 			       dc->disk.name);
10220f0709e6SColy Li 			dc->io_disable = true;
10230f0709e6SColy Li 			/* let others know earlier that io_disable is true */
10240f0709e6SColy Li 			smp_mb();
10250f0709e6SColy Li 			bcache_device_stop(&dc->disk);
10260f0709e6SColy Li 			break;
10270f0709e6SColy Li 		}
10280f0709e6SColy Li 		schedule_timeout_interruptible(HZ);
10290f0709e6SColy Li 	}
10300f0709e6SColy Li 
10310f0709e6SColy Li 	wait_for_kthread_stop();
10320f0709e6SColy Li 	return 0;
10330f0709e6SColy Li }
10340f0709e6SColy Li 
10350f0709e6SColy Li 
10360b13efecSColy Li int bch_cached_dev_run(struct cached_dev *dc)
1037cafe5635SKent Overstreet {
1038cafe5635SKent Overstreet 	struct bcache_device *d = &dc->disk;
1039792732d9SGeliang Tang 	char *buf = kmemdup_nul(dc->sb.label, SB_LABEL_SIZE, GFP_KERNEL);
1040a25c32beSGabriel de Perthuis 	char *env[] = {
1041a25c32beSGabriel de Perthuis 		"DRIVER=bcache",
1042a25c32beSGabriel de Perthuis 		kasprintf(GFP_KERNEL, "CACHED_UUID=%pU", dc->sb.uuid),
1043792732d9SGeliang Tang 		kasprintf(GFP_KERNEL, "CACHED_LABEL=%s", buf ? : ""),
1044ab9e1400SGabriel de Perthuis 		NULL,
1045a25c32beSGabriel de Perthuis 	};
1046cafe5635SKent Overstreet 
1047e0faa3d7SColy Li 	if (dc->io_disable) {
104846f5aa88SJoe Perches 		pr_err("I/O disabled on cached dev %s\n",
1049e0faa3d7SColy Li 		       dc->backing_dev_name);
10505d9e06d6SWei Yongjun 		kfree(env[1]);
10515d9e06d6SWei Yongjun 		kfree(env[2]);
10525d9e06d6SWei Yongjun 		kfree(buf);
10530b13efecSColy Li 		return -EIO;
1054e0faa3d7SColy Li 	}
10550b13efecSColy Li 
10564d4d8573SAl Viro 	if (atomic_xchg(&dc->running, 1)) {
10574d4d8573SAl Viro 		kfree(env[1]);
10584d4d8573SAl Viro 		kfree(env[2]);
1059792732d9SGeliang Tang 		kfree(buf);
106046f5aa88SJoe Perches 		pr_info("cached dev %s is running already\n",
1061e0faa3d7SColy Li 		       dc->backing_dev_name);
10620b13efecSColy Li 		return -EBUSY;
10634d4d8573SAl Viro 	}
1064cafe5635SKent Overstreet 
1065cafe5635SKent Overstreet 	if (!d->c &&
1066cafe5635SKent Overstreet 	    BDEV_STATE(&dc->sb) != BDEV_STATE_NONE) {
1067cafe5635SKent Overstreet 		struct closure cl;
10681fae7cf0SColy Li 
1069cafe5635SKent Overstreet 		closure_init_stack(&cl);
1070cafe5635SKent Overstreet 
1071cafe5635SKent Overstreet 		SET_BDEV_STATE(&dc->sb, BDEV_STATE_STALE);
1072cafe5635SKent Overstreet 		bch_write_bdev_super(dc, &cl);
1073cafe5635SKent Overstreet 		closure_sync(&cl);
1074cafe5635SKent Overstreet 	}
1075cafe5635SKent Overstreet 
1076cafe5635SKent Overstreet 	add_disk(d->disk);
1077ee668506SKent Overstreet 	bd_link_disk_holder(dc->bdev, dc->disk.disk);
10783be11dbaSColy Li 	/*
10793be11dbaSColy Li 	 * won't show up in the uevent file, use udevadm monitor -e instead
10803be11dbaSColy Li 	 * only class / kset properties are persistent
10813be11dbaSColy Li 	 */
1082cafe5635SKent Overstreet 	kobject_uevent_env(&disk_to_dev(d->disk)->kobj, KOBJ_CHANGE, env);
1083a25c32beSGabriel de Perthuis 	kfree(env[1]);
1084ab9e1400SGabriel de Perthuis 	kfree(env[2]);
1085792732d9SGeliang Tang 	kfree(buf);
1086a25c32beSGabriel de Perthuis 
1087cafe5635SKent Overstreet 	if (sysfs_create_link(&d->kobj, &disk_to_dev(d->disk)->kobj, "dev") ||
10880b13efecSColy Li 	    sysfs_create_link(&disk_to_dev(d->disk)->kobj,
10890b13efecSColy Li 			      &d->kobj, "bcache")) {
109046f5aa88SJoe Perches 		pr_err("Couldn't create bcache dev <-> disk sysfs symlinks\n");
10910b13efecSColy Li 		return -ENOMEM;
10920b13efecSColy Li 	}
10930f0709e6SColy Li 
10940f0709e6SColy Li 	dc->status_update_thread = kthread_run(cached_dev_status_update,
10950f0709e6SColy Li 					       dc, "bcache_status_update");
10960f0709e6SColy Li 	if (IS_ERR(dc->status_update_thread)) {
109746f5aa88SJoe Perches 		pr_warn("failed to create bcache_status_update kthread, continue to run without monitoring backing device status\n");
10980f0709e6SColy Li 	}
10990b13efecSColy Li 
11000b13efecSColy Li 	return 0;
1101cafe5635SKent Overstreet }
1102cafe5635SKent Overstreet 
11033fd47bfeSColy Li /*
11043fd47bfeSColy Li  * If BCACHE_DEV_RATE_DW_RUNNING is set, it means routine of the delayed
11053fd47bfeSColy Li  * work dc->writeback_rate_update is running. Wait until the routine
11063fd47bfeSColy Li  * quits (BCACHE_DEV_RATE_DW_RUNNING is clear), then continue to
11073fd47bfeSColy Li  * cancel it. If BCACHE_DEV_RATE_DW_RUNNING is not clear after time_out
11083fd47bfeSColy Li  * seconds, give up waiting here and continue to cancel it too.
11093fd47bfeSColy Li  */
11103fd47bfeSColy Li static void cancel_writeback_rate_update_dwork(struct cached_dev *dc)
11113fd47bfeSColy Li {
11123fd47bfeSColy Li 	int time_out = WRITEBACK_RATE_UPDATE_SECS_MAX * HZ;
11133fd47bfeSColy Li 
11143fd47bfeSColy Li 	do {
11153fd47bfeSColy Li 		if (!test_bit(BCACHE_DEV_RATE_DW_RUNNING,
11163fd47bfeSColy Li 			      &dc->disk.flags))
11173fd47bfeSColy Li 			break;
11183fd47bfeSColy Li 		time_out--;
11193fd47bfeSColy Li 		schedule_timeout_interruptible(1);
11203fd47bfeSColy Li 	} while (time_out > 0);
11213fd47bfeSColy Li 
11223fd47bfeSColy Li 	if (time_out == 0)
112346f5aa88SJoe Perches 		pr_warn("give up waiting for dc->writeback_write_update to quit\n");
11243fd47bfeSColy Li 
11253fd47bfeSColy Li 	cancel_delayed_work_sync(&dc->writeback_rate_update);
11263fd47bfeSColy Li }
11273fd47bfeSColy Li 
1128cafe5635SKent Overstreet static void cached_dev_detach_finish(struct work_struct *w)
1129cafe5635SKent Overstreet {
1130cafe5635SKent Overstreet 	struct cached_dev *dc = container_of(w, struct cached_dev, detach);
1131cafe5635SKent Overstreet 	struct closure cl;
11321fae7cf0SColy Li 
1133cafe5635SKent Overstreet 	closure_init_stack(&cl);
1134cafe5635SKent Overstreet 
1135c4d951ddSKent Overstreet 	BUG_ON(!test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags));
11363b304d24SElena Reshetova 	BUG_ON(refcount_read(&dc->count));
1137cafe5635SKent Overstreet 
1138cafe5635SKent Overstreet 
11393fd47bfeSColy Li 	if (test_and_clear_bit(BCACHE_DEV_WB_RUNNING, &dc->disk.flags))
11403fd47bfeSColy Li 		cancel_writeback_rate_update_dwork(dc);
11413fd47bfeSColy Li 
11428d29c442STang Junhui 	if (!IS_ERR_OR_NULL(dc->writeback_thread)) {
11438d29c442STang Junhui 		kthread_stop(dc->writeback_thread);
11448d29c442STang Junhui 		dc->writeback_thread = NULL;
11458d29c442STang Junhui 	}
11468d29c442STang Junhui 
1147cafe5635SKent Overstreet 	memset(&dc->sb.set_uuid, 0, 16);
1148cafe5635SKent Overstreet 	SET_BDEV_STATE(&dc->sb, BDEV_STATE_NONE);
1149cafe5635SKent Overstreet 
1150cafe5635SKent Overstreet 	bch_write_bdev_super(dc, &cl);
1151cafe5635SKent Overstreet 	closure_sync(&cl);
1152cafe5635SKent Overstreet 
115397ba3b81SColy Li 	mutex_lock(&bch_register_lock);
115497ba3b81SColy Li 
115546010141SShenghui Wang 	calc_cached_dev_sectors(dc->disk.c);
1156cafe5635SKent Overstreet 	bcache_device_detach(&dc->disk);
1157cafe5635SKent Overstreet 	list_move(&dc->list, &uncached_devices);
1158cafe5635SKent Overstreet 
1159c4d951ddSKent Overstreet 	clear_bit(BCACHE_DEV_DETACHING, &dc->disk.flags);
11605b1016e6SKent Overstreet 	clear_bit(BCACHE_DEV_UNLINK_DONE, &dc->disk.flags);
1161c4d951ddSKent Overstreet 
1162cafe5635SKent Overstreet 	mutex_unlock(&bch_register_lock);
1163cafe5635SKent Overstreet 
116446f5aa88SJoe Perches 	pr_info("Caching disabled for %s\n", dc->backing_dev_name);
1165cafe5635SKent Overstreet 
1166cafe5635SKent Overstreet 	/* Drop ref we took in cached_dev_detach() */
1167cafe5635SKent Overstreet 	closure_put(&dc->disk.cl);
1168cafe5635SKent Overstreet }
1169cafe5635SKent Overstreet 
1170cafe5635SKent Overstreet void bch_cached_dev_detach(struct cached_dev *dc)
1171cafe5635SKent Overstreet {
1172cafe5635SKent Overstreet 	lockdep_assert_held(&bch_register_lock);
1173cafe5635SKent Overstreet 
1174c4d951ddSKent Overstreet 	if (test_bit(BCACHE_DEV_CLOSING, &dc->disk.flags))
1175cafe5635SKent Overstreet 		return;
1176cafe5635SKent Overstreet 
1177c4d951ddSKent Overstreet 	if (test_and_set_bit(BCACHE_DEV_DETACHING, &dc->disk.flags))
1178cafe5635SKent Overstreet 		return;
1179cafe5635SKent Overstreet 
1180cafe5635SKent Overstreet 	/*
1181cafe5635SKent Overstreet 	 * Block the device from being closed and freed until we're finished
1182cafe5635SKent Overstreet 	 * detaching
1183cafe5635SKent Overstreet 	 */
1184cafe5635SKent Overstreet 	closure_get(&dc->disk.cl);
1185cafe5635SKent Overstreet 
1186cafe5635SKent Overstreet 	bch_writeback_queue(dc);
11873fd47bfeSColy Li 
1188cafe5635SKent Overstreet 	cached_dev_put(dc);
1189cafe5635SKent Overstreet }
1190cafe5635SKent Overstreet 
119173ac105bSTang Junhui int bch_cached_dev_attach(struct cached_dev *dc, struct cache_set *c,
119273ac105bSTang Junhui 			  uint8_t *set_uuid)
1193cafe5635SKent Overstreet {
119475cbb3f1SArnd Bergmann 	uint32_t rtime = cpu_to_le32((u32)ktime_get_real_seconds());
1195cafe5635SKent Overstreet 	struct uuid_entry *u;
119686755b7aSMichael Lyle 	struct cached_dev *exist_dc, *t;
11970b13efecSColy Li 	int ret = 0;
1198cafe5635SKent Overstreet 
119973ac105bSTang Junhui 	if ((set_uuid && memcmp(set_uuid, c->sb.set_uuid, 16)) ||
120073ac105bSTang Junhui 	    (!set_uuid && memcmp(dc->sb.set_uuid, c->sb.set_uuid, 16)))
1201cafe5635SKent Overstreet 		return -ENOENT;
1202cafe5635SKent Overstreet 
1203cafe5635SKent Overstreet 	if (dc->disk.c) {
120446f5aa88SJoe Perches 		pr_err("Can't attach %s: already attached\n",
12056e916a7eSColy Li 		       dc->backing_dev_name);
1206cafe5635SKent Overstreet 		return -EINVAL;
1207cafe5635SKent Overstreet 	}
1208cafe5635SKent Overstreet 
1209cafe5635SKent Overstreet 	if (test_bit(CACHE_SET_STOPPING, &c->flags)) {
121046f5aa88SJoe Perches 		pr_err("Can't attach %s: shutting down\n",
12116e916a7eSColy Li 		       dc->backing_dev_name);
1212cafe5635SKent Overstreet 		return -EINVAL;
1213cafe5635SKent Overstreet 	}
1214cafe5635SKent Overstreet 
1215cafe5635SKent Overstreet 	if (dc->sb.block_size < c->sb.block_size) {
1216cafe5635SKent Overstreet 		/* Will die */
121746f5aa88SJoe Perches 		pr_err("Couldn't attach %s: block size less than set's block size\n",
12186e916a7eSColy Li 		       dc->backing_dev_name);
1219cafe5635SKent Overstreet 		return -EINVAL;
1220cafe5635SKent Overstreet 	}
1221cafe5635SKent Overstreet 
122286755b7aSMichael Lyle 	/* Check whether already attached */
122386755b7aSMichael Lyle 	list_for_each_entry_safe(exist_dc, t, &c->cached_devs, list) {
122486755b7aSMichael Lyle 		if (!memcmp(dc->sb.uuid, exist_dc->sb.uuid, 16)) {
122546f5aa88SJoe Perches 			pr_err("Tried to attach %s but duplicate UUID already attached\n",
12266e916a7eSColy Li 				dc->backing_dev_name);
122786755b7aSMichael Lyle 
122886755b7aSMichael Lyle 			return -EINVAL;
122986755b7aSMichael Lyle 		}
123086755b7aSMichael Lyle 	}
123186755b7aSMichael Lyle 
1232cafe5635SKent Overstreet 	u = uuid_find(c, dc->sb.uuid);
1233cafe5635SKent Overstreet 
1234cafe5635SKent Overstreet 	if (u &&
1235cafe5635SKent Overstreet 	    (BDEV_STATE(&dc->sb) == BDEV_STATE_STALE ||
1236cafe5635SKent Overstreet 	     BDEV_STATE(&dc->sb) == BDEV_STATE_NONE)) {
1237cafe5635SKent Overstreet 		memcpy(u->uuid, invalid_uuid, 16);
123875cbb3f1SArnd Bergmann 		u->invalidated = cpu_to_le32((u32)ktime_get_real_seconds());
1239cafe5635SKent Overstreet 		u = NULL;
1240cafe5635SKent Overstreet 	}
1241cafe5635SKent Overstreet 
1242cafe5635SKent Overstreet 	if (!u) {
1243cafe5635SKent Overstreet 		if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) {
124446f5aa88SJoe Perches 			pr_err("Couldn't find uuid for %s in set\n",
12456e916a7eSColy Li 			       dc->backing_dev_name);
1246cafe5635SKent Overstreet 			return -ENOENT;
1247cafe5635SKent Overstreet 		}
1248cafe5635SKent Overstreet 
1249cafe5635SKent Overstreet 		u = uuid_find_empty(c);
1250cafe5635SKent Overstreet 		if (!u) {
125146f5aa88SJoe Perches 			pr_err("Not caching %s, no room for UUID\n",
12526e916a7eSColy Li 			       dc->backing_dev_name);
1253cafe5635SKent Overstreet 			return -EINVAL;
1254cafe5635SKent Overstreet 		}
1255cafe5635SKent Overstreet 	}
1256cafe5635SKent Overstreet 
12573be11dbaSColy Li 	/*
12583be11dbaSColy Li 	 * Deadlocks since we're called via sysfs...
12593be11dbaSColy Li 	 * sysfs_remove_file(&dc->kobj, &sysfs_attach);
1260cafe5635SKent Overstreet 	 */
1261cafe5635SKent Overstreet 
1262169ef1cfSKent Overstreet 	if (bch_is_zero(u->uuid, 16)) {
1263cafe5635SKent Overstreet 		struct closure cl;
12641fae7cf0SColy Li 
1265cafe5635SKent Overstreet 		closure_init_stack(&cl);
1266cafe5635SKent Overstreet 
1267cafe5635SKent Overstreet 		memcpy(u->uuid, dc->sb.uuid, 16);
1268cafe5635SKent Overstreet 		memcpy(u->label, dc->sb.label, SB_LABEL_SIZE);
1269cafe5635SKent Overstreet 		u->first_reg = u->last_reg = rtime;
1270cafe5635SKent Overstreet 		bch_uuid_write(c);
1271cafe5635SKent Overstreet 
1272cafe5635SKent Overstreet 		memcpy(dc->sb.set_uuid, c->sb.set_uuid, 16);
1273cafe5635SKent Overstreet 		SET_BDEV_STATE(&dc->sb, BDEV_STATE_CLEAN);
1274cafe5635SKent Overstreet 
1275cafe5635SKent Overstreet 		bch_write_bdev_super(dc, &cl);
1276cafe5635SKent Overstreet 		closure_sync(&cl);
1277cafe5635SKent Overstreet 	} else {
1278cafe5635SKent Overstreet 		u->last_reg = rtime;
1279cafe5635SKent Overstreet 		bch_uuid_write(c);
1280cafe5635SKent Overstreet 	}
1281cafe5635SKent Overstreet 
1282cafe5635SKent Overstreet 	bcache_device_attach(&dc->disk, c, u - c->uuids);
1283cafe5635SKent Overstreet 	list_move(&dc->list, &c->cached_devs);
1284cafe5635SKent Overstreet 	calc_cached_dev_sectors(c);
1285cafe5635SKent Overstreet 
1286cafe5635SKent Overstreet 	/*
1287cafe5635SKent Overstreet 	 * dc->c must be set before dc->count != 0 - paired with the mb in
1288cafe5635SKent Overstreet 	 * cached_dev_get()
1289cafe5635SKent Overstreet 	 */
1290eb2b3d03SColy Li 	smp_wmb();
12913b304d24SElena Reshetova 	refcount_set(&dc->count, 1);
1292cafe5635SKent Overstreet 
129307cc6ef8SEric Wheeler 	/* Block writeback thread, but spawn it */
129407cc6ef8SEric Wheeler 	down_write(&dc->writeback_lock);
129507cc6ef8SEric Wheeler 	if (bch_cached_dev_writeback_start(dc)) {
129607cc6ef8SEric Wheeler 		up_write(&dc->writeback_lock);
129746f5aa88SJoe Perches 		pr_err("Couldn't start writeback facilities for %s\n",
1298633bb2ceSColy Li 		       dc->disk.disk->disk_name);
12999e5c3535SSlava Pestov 		return -ENOMEM;
130007cc6ef8SEric Wheeler 	}
13019e5c3535SSlava Pestov 
1302cafe5635SKent Overstreet 	if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) {
1303cafe5635SKent Overstreet 		atomic_set(&dc->has_dirty, 1);
1304cafe5635SKent Overstreet 		bch_writeback_queue(dc);
1305cafe5635SKent Overstreet 	}
1306cafe5635SKent Overstreet 
13072e17a262STang Junhui 	bch_sectors_dirty_init(&dc->disk);
13082e17a262STang Junhui 
13090b13efecSColy Li 	ret = bch_cached_dev_run(dc);
13100b13efecSColy Li 	if (ret && (ret != -EBUSY)) {
13110b13efecSColy Li 		up_write(&dc->writeback_lock);
13125c2a634cSColy Li 		/*
13135c2a634cSColy Li 		 * bch_register_lock is held, bcache_device_stop() is not
13145c2a634cSColy Li 		 * able to be directly called. The kthread and kworker
13155c2a634cSColy Li 		 * created previously in bch_cached_dev_writeback_start()
13165c2a634cSColy Li 		 * have to be stopped manually here.
13175c2a634cSColy Li 		 */
13185c2a634cSColy Li 		kthread_stop(dc->writeback_thread);
13195c2a634cSColy Li 		cancel_writeback_rate_update_dwork(dc);
132046f5aa88SJoe Perches 		pr_err("Couldn't run cached device %s\n",
1321633bb2ceSColy Li 		       dc->backing_dev_name);
13220b13efecSColy Li 		return ret;
13230b13efecSColy Li 	}
13240b13efecSColy Li 
1325ee668506SKent Overstreet 	bcache_device_link(&dc->disk, c, "bdev");
1326ea8c5356SColy Li 	atomic_inc(&c->attached_dev_nr);
1327cafe5635SKent Overstreet 
132807cc6ef8SEric Wheeler 	/* Allow the writeback thread to proceed */
132907cc6ef8SEric Wheeler 	up_write(&dc->writeback_lock);
133007cc6ef8SEric Wheeler 
133146f5aa88SJoe Perches 	pr_info("Caching %s as %s on set %pU\n",
13326e916a7eSColy Li 		dc->backing_dev_name,
13336e916a7eSColy Li 		dc->disk.disk->disk_name,
1334cafe5635SKent Overstreet 		dc->disk.c->sb.set_uuid);
1335cafe5635SKent Overstreet 	return 0;
1336cafe5635SKent Overstreet }
1337cafe5635SKent Overstreet 
13382d17456eSColy Li /* when dc->disk.kobj released */
1339cafe5635SKent Overstreet void bch_cached_dev_release(struct kobject *kobj)
1340cafe5635SKent Overstreet {
1341cafe5635SKent Overstreet 	struct cached_dev *dc = container_of(kobj, struct cached_dev,
1342cafe5635SKent Overstreet 					     disk.kobj);
1343cafe5635SKent Overstreet 	kfree(dc);
1344cafe5635SKent Overstreet 	module_put(THIS_MODULE);
1345cafe5635SKent Overstreet }
1346cafe5635SKent Overstreet 
1347cafe5635SKent Overstreet static void cached_dev_free(struct closure *cl)
1348cafe5635SKent Overstreet {
1349cafe5635SKent Overstreet 	struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl);
1350cafe5635SKent Overstreet 
13513fd47bfeSColy Li 	if (test_and_clear_bit(BCACHE_DEV_WB_RUNNING, &dc->disk.flags))
13523fd47bfeSColy Li 		cancel_writeback_rate_update_dwork(dc);
13533fd47bfeSColy Li 
1354a664d0f0SSlava Pestov 	if (!IS_ERR_OR_NULL(dc->writeback_thread))
13555e6926daSKent Overstreet 		kthread_stop(dc->writeback_thread);
13560f0709e6SColy Li 	if (!IS_ERR_OR_NULL(dc->status_update_thread))
13570f0709e6SColy Li 		kthread_stop(dc->status_update_thread);
1358cafe5635SKent Overstreet 
135980265d8dSColy Li 	mutex_lock(&bch_register_lock);
136080265d8dSColy Li 
1361f59fce84SKent Overstreet 	if (atomic_read(&dc->running))
1362ee668506SKent Overstreet 		bd_unlink_disk_holder(dc->bdev, dc->disk.disk);
1363cafe5635SKent Overstreet 	bcache_device_free(&dc->disk);
1364cafe5635SKent Overstreet 	list_del(&dc->list);
1365cafe5635SKent Overstreet 
1366cafe5635SKent Overstreet 	mutex_unlock(&bch_register_lock);
1367cafe5635SKent Overstreet 
1368475389aeSChristoph Hellwig 	if (dc->sb_disk)
1369475389aeSChristoph Hellwig 		put_page(virt_to_page(dc->sb_disk));
1370e8547d42SLiang Chen 
13710781c874SKent Overstreet 	if (!IS_ERR_OR_NULL(dc->bdev))
1372cafe5635SKent Overstreet 		blkdev_put(dc->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
1373cafe5635SKent Overstreet 
1374cafe5635SKent Overstreet 	wake_up(&unregister_wait);
1375cafe5635SKent Overstreet 
1376cafe5635SKent Overstreet 	kobject_put(&dc->disk.kobj);
1377cafe5635SKent Overstreet }
1378cafe5635SKent Overstreet 
1379cafe5635SKent Overstreet static void cached_dev_flush(struct closure *cl)
1380cafe5635SKent Overstreet {
1381cafe5635SKent Overstreet 	struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl);
1382cafe5635SKent Overstreet 	struct bcache_device *d = &dc->disk;
1383cafe5635SKent Overstreet 
1384c9502ea4SKent Overstreet 	mutex_lock(&bch_register_lock);
1385c9502ea4SKent Overstreet 	bcache_device_unlink(d);
1386c9502ea4SKent Overstreet 	mutex_unlock(&bch_register_lock);
1387c9502ea4SKent Overstreet 
1388cafe5635SKent Overstreet 	bch_cache_accounting_destroy(&dc->accounting);
1389cafe5635SKent Overstreet 	kobject_del(&d->kobj);
1390cafe5635SKent Overstreet 
1391cafe5635SKent Overstreet 	continue_at(cl, cached_dev_free, system_wq);
1392cafe5635SKent Overstreet }
1393cafe5635SKent Overstreet 
13946f10f7d1SColy Li static int cached_dev_init(struct cached_dev *dc, unsigned int block_size)
1395cafe5635SKent Overstreet {
1396f59fce84SKent Overstreet 	int ret;
1397cafe5635SKent Overstreet 	struct io *io;
1398f59fce84SKent Overstreet 	struct request_queue *q = bdev_get_queue(dc->bdev);
1399cafe5635SKent Overstreet 
1400cafe5635SKent Overstreet 	__module_get(THIS_MODULE);
1401cafe5635SKent Overstreet 	INIT_LIST_HEAD(&dc->list);
1402f59fce84SKent Overstreet 	closure_init(&dc->disk.cl, NULL);
1403f59fce84SKent Overstreet 	set_closure_fn(&dc->disk.cl, cached_dev_flush, system_wq);
1404cafe5635SKent Overstreet 	kobject_init(&dc->disk.kobj, &bch_cached_dev_ktype);
1405cafe5635SKent Overstreet 	INIT_WORK(&dc->detach, cached_dev_detach_finish);
1406cb7a583eSKent Overstreet 	sema_init(&dc->sb_write_mutex, 1);
1407f59fce84SKent Overstreet 	INIT_LIST_HEAD(&dc->io_lru);
1408f59fce84SKent Overstreet 	spin_lock_init(&dc->io_lock);
1409f59fce84SKent Overstreet 	bch_cache_accounting_init(&dc->accounting, &dc->disk.cl);
1410cafe5635SKent Overstreet 
1411cafe5635SKent Overstreet 	dc->sequential_cutoff		= 4 << 20;
1412cafe5635SKent Overstreet 
1413cafe5635SKent Overstreet 	for (io = dc->io; io < dc->io + RECENT_IO; io++) {
1414cafe5635SKent Overstreet 		list_add(&io->lru, &dc->io_lru);
1415cafe5635SKent Overstreet 		hlist_add_head(&io->hash, dc->io_hash + RECENT_IO);
1416cafe5635SKent Overstreet 	}
1417cafe5635SKent Overstreet 
1418c78afc62SKent Overstreet 	dc->disk.stripe_size = q->limits.io_opt >> 9;
1419c78afc62SKent Overstreet 
1420c78afc62SKent Overstreet 	if (dc->disk.stripe_size)
1421c78afc62SKent Overstreet 		dc->partial_stripes_expensive =
1422c78afc62SKent Overstreet 			q->limits.raid_partial_stripes_expensive;
1423c78afc62SKent Overstreet 
1424279afbadSKent Overstreet 	ret = bcache_device_init(&dc->disk, block_size,
1425ff27668cSChristoph Hellwig 			 dc->bdev->bd_part->nr_sects - dc->sb.data_offset,
1426c62b37d9SChristoph Hellwig 			 dc->bdev, &bcache_cached_ops);
1427f59fce84SKent Overstreet 	if (ret)
1428f59fce84SKent Overstreet 		return ret;
1429f59fce84SKent Overstreet 
14305d4ce78bSChristoph Hellwig 	blk_queue_io_opt(dc->disk.disk->queue,
14315d4ce78bSChristoph Hellwig 		max(queue_io_opt(dc->disk.disk->queue), queue_io_opt(q)));
1432f59fce84SKent Overstreet 
1433c7b7bd07SColy Li 	atomic_set(&dc->io_errors, 0);
1434c7b7bd07SColy Li 	dc->io_disable = false;
1435c7b7bd07SColy Li 	dc->error_limit = DEFAULT_CACHED_DEV_ERROR_LIMIT;
14367e027ca4SColy Li 	/* default to auto */
14377e027ca4SColy Li 	dc->stop_when_cache_set_failed = BCH_CACHED_DEV_STOP_AUTO;
14387e027ca4SColy Li 
1439f59fce84SKent Overstreet 	bch_cached_dev_request_init(dc);
1440f59fce84SKent Overstreet 	bch_cached_dev_writeback_init(dc);
1441cafe5635SKent Overstreet 	return 0;
1442cafe5635SKent Overstreet }
1443cafe5635SKent Overstreet 
1444cafe5635SKent Overstreet /* Cached device - bcache superblock */
1445cafe5635SKent Overstreet 
1446cfa0c56dSChristoph Hellwig static int register_bdev(struct cache_sb *sb, struct cache_sb_disk *sb_disk,
1447cafe5635SKent Overstreet 				 struct block_device *bdev,
1448cafe5635SKent Overstreet 				 struct cached_dev *dc)
1449cafe5635SKent Overstreet {
1450cafe5635SKent Overstreet 	const char *err = "cannot allocate memory";
1451cafe5635SKent Overstreet 	struct cache_set *c;
14520b13efecSColy Li 	int ret = -ENOMEM;
1453cafe5635SKent Overstreet 
14546e916a7eSColy Li 	bdevname(bdev, dc->backing_dev_name);
1455cafe5635SKent Overstreet 	memcpy(&dc->sb, sb, sizeof(struct cache_sb));
1456cafe5635SKent Overstreet 	dc->bdev = bdev;
1457cafe5635SKent Overstreet 	dc->bdev->bd_holder = dc;
1458475389aeSChristoph Hellwig 	dc->sb_disk = sb_disk;
14596e916a7eSColy Li 
1460f59fce84SKent Overstreet 	if (cached_dev_init(dc, sb->block_size << 9))
1461f59fce84SKent Overstreet 		goto err;
1462cafe5635SKent Overstreet 
1463cafe5635SKent Overstreet 	err = "error creating kobject";
1464cafe5635SKent Overstreet 	if (kobject_add(&dc->disk.kobj, &part_to_dev(bdev->bd_part)->kobj,
1465cafe5635SKent Overstreet 			"bcache"))
1466cafe5635SKent Overstreet 		goto err;
1467cafe5635SKent Overstreet 	if (bch_cache_accounting_add_kobjs(&dc->accounting, &dc->disk.kobj))
1468cafe5635SKent Overstreet 		goto err;
1469cafe5635SKent Overstreet 
147046f5aa88SJoe Perches 	pr_info("registered backing device %s\n", dc->backing_dev_name);
1471f59fce84SKent Overstreet 
1472cafe5635SKent Overstreet 	list_add(&dc->list, &uncached_devices);
1473e57fd746SColy Li 	/* attach to a matched cache set if it exists */
1474cafe5635SKent Overstreet 	list_for_each_entry(c, &bch_cache_sets, list)
147573ac105bSTang Junhui 		bch_cached_dev_attach(dc, c, NULL);
1476cafe5635SKent Overstreet 
1477cafe5635SKent Overstreet 	if (BDEV_STATE(&dc->sb) == BDEV_STATE_NONE ||
14780b13efecSColy Li 	    BDEV_STATE(&dc->sb) == BDEV_STATE_STALE) {
14790b13efecSColy Li 		err = "failed to run cached device";
14800b13efecSColy Li 		ret = bch_cached_dev_run(dc);
14810b13efecSColy Li 		if (ret)
14820b13efecSColy Li 			goto err;
14830b13efecSColy Li 	}
1484cafe5635SKent Overstreet 
148588c12d42SColy Li 	return 0;
1486cafe5635SKent Overstreet err:
148746f5aa88SJoe Perches 	pr_notice("error %s: %s\n", dc->backing_dev_name, err);
1488f59fce84SKent Overstreet 	bcache_device_stop(&dc->disk);
14890b13efecSColy Li 	return ret;
1490cafe5635SKent Overstreet }
1491cafe5635SKent Overstreet 
1492cafe5635SKent Overstreet /* Flash only volumes */
1493cafe5635SKent Overstreet 
14942d17456eSColy Li /* When d->kobj released */
1495cafe5635SKent Overstreet void bch_flash_dev_release(struct kobject *kobj)
1496cafe5635SKent Overstreet {
1497cafe5635SKent Overstreet 	struct bcache_device *d = container_of(kobj, struct bcache_device,
1498cafe5635SKent Overstreet 					       kobj);
1499cafe5635SKent Overstreet 	kfree(d);
1500cafe5635SKent Overstreet }
1501cafe5635SKent Overstreet 
1502cafe5635SKent Overstreet static void flash_dev_free(struct closure *cl)
1503cafe5635SKent Overstreet {
1504cafe5635SKent Overstreet 	struct bcache_device *d = container_of(cl, struct bcache_device, cl);
15051fae7cf0SColy Li 
1506e5112201SSlava Pestov 	mutex_lock(&bch_register_lock);
150799a27d59STang Junhui 	atomic_long_sub(bcache_dev_sectors_dirty(d),
150899a27d59STang Junhui 			&d->c->flash_dev_dirty_sectors);
1509cafe5635SKent Overstreet 	bcache_device_free(d);
1510e5112201SSlava Pestov 	mutex_unlock(&bch_register_lock);
1511cafe5635SKent Overstreet 	kobject_put(&d->kobj);
1512cafe5635SKent Overstreet }
1513cafe5635SKent Overstreet 
1514cafe5635SKent Overstreet static void flash_dev_flush(struct closure *cl)
1515cafe5635SKent Overstreet {
1516cafe5635SKent Overstreet 	struct bcache_device *d = container_of(cl, struct bcache_device, cl);
1517cafe5635SKent Overstreet 
1518e5112201SSlava Pestov 	mutex_lock(&bch_register_lock);
1519ee668506SKent Overstreet 	bcache_device_unlink(d);
1520e5112201SSlava Pestov 	mutex_unlock(&bch_register_lock);
1521cafe5635SKent Overstreet 	kobject_del(&d->kobj);
1522cafe5635SKent Overstreet 	continue_at(cl, flash_dev_free, system_wq);
1523cafe5635SKent Overstreet }
1524cafe5635SKent Overstreet 
1525cafe5635SKent Overstreet static int flash_dev_run(struct cache_set *c, struct uuid_entry *u)
1526cafe5635SKent Overstreet {
1527cafe5635SKent Overstreet 	struct bcache_device *d = kzalloc(sizeof(struct bcache_device),
1528cafe5635SKent Overstreet 					  GFP_KERNEL);
1529cafe5635SKent Overstreet 	if (!d)
1530cafe5635SKent Overstreet 		return -ENOMEM;
1531cafe5635SKent Overstreet 
1532cafe5635SKent Overstreet 	closure_init(&d->cl, NULL);
1533cafe5635SKent Overstreet 	set_closure_fn(&d->cl, flash_dev_flush, system_wq);
1534cafe5635SKent Overstreet 
1535cafe5635SKent Overstreet 	kobject_init(&d->kobj, &bch_flash_dev_ktype);
1536cafe5635SKent Overstreet 
1537ff27668cSChristoph Hellwig 	if (bcache_device_init(d, block_bytes(c), u->sectors,
1538c62b37d9SChristoph Hellwig 			NULL, &bcache_flash_ops))
1539cafe5635SKent Overstreet 		goto err;
1540cafe5635SKent Overstreet 
1541cafe5635SKent Overstreet 	bcache_device_attach(d, c, u - c->uuids);
1542175206cfSTang Junhui 	bch_sectors_dirty_init(d);
1543cafe5635SKent Overstreet 	bch_flash_dev_request_init(d);
1544cafe5635SKent Overstreet 	add_disk(d->disk);
1545cafe5635SKent Overstreet 
1546cafe5635SKent Overstreet 	if (kobject_add(&d->kobj, &disk_to_dev(d->disk)->kobj, "bcache"))
1547cafe5635SKent Overstreet 		goto err;
1548cafe5635SKent Overstreet 
1549cafe5635SKent Overstreet 	bcache_device_link(d, c, "volume");
1550cafe5635SKent Overstreet 
1551cafe5635SKent Overstreet 	return 0;
1552cafe5635SKent Overstreet err:
1553cafe5635SKent Overstreet 	kobject_put(&d->kobj);
1554cafe5635SKent Overstreet 	return -ENOMEM;
1555cafe5635SKent Overstreet }
1556cafe5635SKent Overstreet 
1557cafe5635SKent Overstreet static int flash_devs_run(struct cache_set *c)
1558cafe5635SKent Overstreet {
1559cafe5635SKent Overstreet 	int ret = 0;
1560cafe5635SKent Overstreet 	struct uuid_entry *u;
1561cafe5635SKent Overstreet 
1562cafe5635SKent Overstreet 	for (u = c->uuids;
156302aa8a8bSColy Li 	     u < c->uuids + c->nr_uuids && !ret;
1564cafe5635SKent Overstreet 	     u++)
1565cafe5635SKent Overstreet 		if (UUID_FLASH_ONLY(u))
1566cafe5635SKent Overstreet 			ret = flash_dev_run(c, u);
1567cafe5635SKent Overstreet 
1568cafe5635SKent Overstreet 	return ret;
1569cafe5635SKent Overstreet }
1570cafe5635SKent Overstreet 
1571cafe5635SKent Overstreet int bch_flash_dev_create(struct cache_set *c, uint64_t size)
1572cafe5635SKent Overstreet {
1573cafe5635SKent Overstreet 	struct uuid_entry *u;
1574cafe5635SKent Overstreet 
1575cafe5635SKent Overstreet 	if (test_bit(CACHE_SET_STOPPING, &c->flags))
1576cafe5635SKent Overstreet 		return -EINTR;
1577cafe5635SKent Overstreet 
1578bf0c55c9SSlava Pestov 	if (!test_bit(CACHE_SET_RUNNING, &c->flags))
1579bf0c55c9SSlava Pestov 		return -EPERM;
1580bf0c55c9SSlava Pestov 
1581cafe5635SKent Overstreet 	u = uuid_find_empty(c);
1582cafe5635SKent Overstreet 	if (!u) {
158346f5aa88SJoe Perches 		pr_err("Can't create volume, no room for UUID\n");
1584cafe5635SKent Overstreet 		return -EINVAL;
1585cafe5635SKent Overstreet 	}
1586cafe5635SKent Overstreet 
1587cafe5635SKent Overstreet 	get_random_bytes(u->uuid, 16);
1588cafe5635SKent Overstreet 	memset(u->label, 0, 32);
158975cbb3f1SArnd Bergmann 	u->first_reg = u->last_reg = cpu_to_le32((u32)ktime_get_real_seconds());
1590cafe5635SKent Overstreet 
1591cafe5635SKent Overstreet 	SET_UUID_FLASH_ONLY(u, 1);
1592cafe5635SKent Overstreet 	u->sectors = size >> 9;
1593cafe5635SKent Overstreet 
1594cafe5635SKent Overstreet 	bch_uuid_write(c);
1595cafe5635SKent Overstreet 
1596cafe5635SKent Overstreet 	return flash_dev_run(c, u);
1597cafe5635SKent Overstreet }
1598cafe5635SKent Overstreet 
1599c7b7bd07SColy Li bool bch_cached_dev_error(struct cached_dev *dc)
1600c7b7bd07SColy Li {
1601c7b7bd07SColy Li 	if (!dc || test_bit(BCACHE_DEV_CLOSING, &dc->disk.flags))
1602c7b7bd07SColy Li 		return false;
1603c7b7bd07SColy Li 
1604c7b7bd07SColy Li 	dc->io_disable = true;
1605c7b7bd07SColy Li 	/* make others know io_disable is true earlier */
1606c7b7bd07SColy Li 	smp_mb();
1607c7b7bd07SColy Li 
1608c7b7bd07SColy Li 	pr_err("stop %s: too many IO errors on backing device %s\n",
16096e916a7eSColy Li 	       dc->disk.disk->disk_name, dc->backing_dev_name);
1610c7b7bd07SColy Li 
1611c7b7bd07SColy Li 	bcache_device_stop(&dc->disk);
1612c7b7bd07SColy Li 	return true;
1613c7b7bd07SColy Li }
1614c7b7bd07SColy Li 
1615cafe5635SKent Overstreet /* Cache set */
1616cafe5635SKent Overstreet 
1617cafe5635SKent Overstreet __printf(2, 3)
1618cafe5635SKent Overstreet bool bch_cache_set_error(struct cache_set *c, const char *fmt, ...)
1619cafe5635SKent Overstreet {
162046f5aa88SJoe Perches 	struct va_format vaf;
1621cafe5635SKent Overstreet 	va_list args;
1622cafe5635SKent Overstreet 
162377c320ebSKent Overstreet 	if (c->on_error != ON_ERROR_PANIC &&
162477c320ebSKent Overstreet 	    test_bit(CACHE_SET_STOPPING, &c->flags))
1625cafe5635SKent Overstreet 		return false;
1626cafe5635SKent Overstreet 
1627771f393eSColy Li 	if (test_and_set_bit(CACHE_SET_IO_DISABLE, &c->flags))
162846f5aa88SJoe Perches 		pr_info("CACHE_SET_IO_DISABLE already set\n");
1629771f393eSColy Li 
16303be11dbaSColy Li 	/*
16313be11dbaSColy Li 	 * XXX: we can be called from atomic context
16323be11dbaSColy Li 	 * acquire_console_sem();
1633cafe5635SKent Overstreet 	 */
1634cafe5635SKent Overstreet 
1635cafe5635SKent Overstreet 	va_start(args, fmt);
1636cafe5635SKent Overstreet 
163746f5aa88SJoe Perches 	vaf.fmt = fmt;
163846f5aa88SJoe Perches 	vaf.va = &args;
163946f5aa88SJoe Perches 
164046f5aa88SJoe Perches 	pr_err("error on %pU: %pV, disabling caching\n",
164146f5aa88SJoe Perches 	       c->sb.set_uuid, &vaf);
164246f5aa88SJoe Perches 
164346f5aa88SJoe Perches 	va_end(args);
1644cafe5635SKent Overstreet 
164577c320ebSKent Overstreet 	if (c->on_error == ON_ERROR_PANIC)
164677c320ebSKent Overstreet 		panic("panic forced after error\n");
164777c320ebSKent Overstreet 
1648cafe5635SKent Overstreet 	bch_cache_set_unregister(c);
1649cafe5635SKent Overstreet 	return true;
1650cafe5635SKent Overstreet }
1651cafe5635SKent Overstreet 
16522d17456eSColy Li /* When c->kobj released */
1653cafe5635SKent Overstreet void bch_cache_set_release(struct kobject *kobj)
1654cafe5635SKent Overstreet {
1655cafe5635SKent Overstreet 	struct cache_set *c = container_of(kobj, struct cache_set, kobj);
16561fae7cf0SColy Li 
1657cafe5635SKent Overstreet 	kfree(c);
1658cafe5635SKent Overstreet 	module_put(THIS_MODULE);
1659cafe5635SKent Overstreet }
1660cafe5635SKent Overstreet 
1661cafe5635SKent Overstreet static void cache_set_free(struct closure *cl)
1662cafe5635SKent Overstreet {
1663cafe5635SKent Overstreet 	struct cache_set *c = container_of(cl, struct cache_set, cl);
1664cafe5635SKent Overstreet 	struct cache *ca;
16656f10f7d1SColy Li 	unsigned int i;
1666cafe5635SKent Overstreet 
1667cafe5635SKent Overstreet 	debugfs_remove(c->debug);
1668cafe5635SKent Overstreet 
1669cafe5635SKent Overstreet 	bch_open_buckets_free(c);
1670cafe5635SKent Overstreet 	bch_btree_cache_free(c);
1671cafe5635SKent Overstreet 	bch_journal_free(c);
1672cafe5635SKent Overstreet 
1673a4b732a2SLiang Chen 	mutex_lock(&bch_register_lock);
1674cafe5635SKent Overstreet 	for_each_cache(ca, c, i)
1675c9a78332SSlava Pestov 		if (ca) {
1676c9a78332SSlava Pestov 			ca->set = NULL;
1677c9a78332SSlava Pestov 			c->cache[ca->sb.nr_this_dev] = NULL;
1678cafe5635SKent Overstreet 			kobject_put(&ca->kobj);
1679c9a78332SSlava Pestov 		}
1680cafe5635SKent Overstreet 
168167539e85SKent Overstreet 	bch_bset_sort_state_free(&c->sort);
168221e478ddSColy Li 	free_pages((unsigned long) c->uuids, ilog2(meta_bucket_pages(&c->sb)));
1683cafe5635SKent Overstreet 
1684da415a09SNicholas Swenson 	if (c->moving_gc_wq)
1685da415a09SNicholas Swenson 		destroy_workqueue(c->moving_gc_wq);
1686d19936a2SKent Overstreet 	bioset_exit(&c->bio_split);
1687d19936a2SKent Overstreet 	mempool_exit(&c->fill_iter);
1688d19936a2SKent Overstreet 	mempool_exit(&c->bio_meta);
1689d19936a2SKent Overstreet 	mempool_exit(&c->search);
1690cafe5635SKent Overstreet 	kfree(c->devices);
1691cafe5635SKent Overstreet 
1692cafe5635SKent Overstreet 	list_del(&c->list);
1693cafe5635SKent Overstreet 	mutex_unlock(&bch_register_lock);
1694cafe5635SKent Overstreet 
169546f5aa88SJoe Perches 	pr_info("Cache set %pU unregistered\n", c->sb.set_uuid);
1696cafe5635SKent Overstreet 	wake_up(&unregister_wait);
1697cafe5635SKent Overstreet 
1698cafe5635SKent Overstreet 	closure_debug_destroy(&c->cl);
1699cafe5635SKent Overstreet 	kobject_put(&c->kobj);
1700cafe5635SKent Overstreet }
1701cafe5635SKent Overstreet 
1702cafe5635SKent Overstreet static void cache_set_flush(struct closure *cl)
1703cafe5635SKent Overstreet {
1704cafe5635SKent Overstreet 	struct cache_set *c = container_of(cl, struct cache_set, caching);
170579826c35SKent Overstreet 	struct cache *ca;
1706cafe5635SKent Overstreet 	struct btree *b;
17076f10f7d1SColy Li 	unsigned int i;
1708cafe5635SKent Overstreet 
1709cafe5635SKent Overstreet 	bch_cache_accounting_destroy(&c->accounting);
1710cafe5635SKent Overstreet 
1711cafe5635SKent Overstreet 	kobject_put(&c->internal);
1712cafe5635SKent Overstreet 	kobject_del(&c->kobj);
1713cafe5635SKent Overstreet 
1714b387e9b5SColy Li 	if (!IS_ERR_OR_NULL(c->gc_thread))
171572a44517SKent Overstreet 		kthread_stop(c->gc_thread);
171672a44517SKent Overstreet 
1717cafe5635SKent Overstreet 	if (!IS_ERR_OR_NULL(c->root))
1718cafe5635SKent Overstreet 		list_add(&c->root->list, &c->btree_cache);
1719cafe5635SKent Overstreet 
1720e6dcbd3eSColy Li 	/*
1721e6dcbd3eSColy Li 	 * Avoid flushing cached nodes if cache set is retiring
1722e6dcbd3eSColy Li 	 * due to too many I/O errors detected.
1723e6dcbd3eSColy Li 	 */
1724e6dcbd3eSColy Li 	if (!test_bit(CACHE_SET_IO_DISABLE, &c->flags))
17252a285686SKent Overstreet 		list_for_each_entry(b, &c->btree_cache, list) {
17262a285686SKent Overstreet 			mutex_lock(&b->write_lock);
1727cafe5635SKent Overstreet 			if (btree_node_dirty(b))
17282a285686SKent Overstreet 				__bch_btree_node_write(b, NULL);
17292a285686SKent Overstreet 			mutex_unlock(&b->write_lock);
17302a285686SKent Overstreet 		}
1731cafe5635SKent Overstreet 
173279826c35SKent Overstreet 	for_each_cache(ca, c, i)
173379826c35SKent Overstreet 		if (ca->alloc_thread)
173479826c35SKent Overstreet 			kthread_stop(ca->alloc_thread);
173579826c35SKent Overstreet 
17365b1016e6SKent Overstreet 	if (c->journal.cur) {
1737dabb4433SKent Overstreet 		cancel_delayed_work_sync(&c->journal.work);
1738dabb4433SKent Overstreet 		/* flush last journal entry if needed */
1739dabb4433SKent Overstreet 		c->journal.work.work.func(&c->journal.work.work);
17405b1016e6SKent Overstreet 	}
1741dabb4433SKent Overstreet 
1742cafe5635SKent Overstreet 	closure_return(cl);
1743cafe5635SKent Overstreet }
1744cafe5635SKent Overstreet 
17457e027ca4SColy Li /*
17467e027ca4SColy Li  * This function is only called when CACHE_SET_IO_DISABLE is set, which means
17477e027ca4SColy Li  * cache set is unregistering due to too many I/O errors. In this condition,
17487e027ca4SColy Li  * the bcache device might be stopped, it depends on stop_when_cache_set_failed
17497e027ca4SColy Li  * value and whether the broken cache has dirty data:
17507e027ca4SColy Li  *
17517e027ca4SColy Li  * dc->stop_when_cache_set_failed    dc->has_dirty   stop bcache device
17527e027ca4SColy Li  *  BCH_CACHED_STOP_AUTO               0               NO
17537e027ca4SColy Li  *  BCH_CACHED_STOP_AUTO               1               YES
17547e027ca4SColy Li  *  BCH_CACHED_DEV_STOP_ALWAYS         0               YES
17557e027ca4SColy Li  *  BCH_CACHED_DEV_STOP_ALWAYS         1               YES
17567e027ca4SColy Li  *
17577e027ca4SColy Li  * The expected behavior is, if stop_when_cache_set_failed is configured to
17587e027ca4SColy Li  * "auto" via sysfs interface, the bcache device will not be stopped if the
17597e027ca4SColy Li  * backing device is clean on the broken cache device.
17607e027ca4SColy Li  */
17617e027ca4SColy Li static void conditional_stop_bcache_device(struct cache_set *c,
17627e027ca4SColy Li 					   struct bcache_device *d,
17637e027ca4SColy Li 					   struct cached_dev *dc)
17647e027ca4SColy Li {
17657e027ca4SColy Li 	if (dc->stop_when_cache_set_failed == BCH_CACHED_DEV_STOP_ALWAYS) {
176646f5aa88SJoe Perches 		pr_warn("stop_when_cache_set_failed of %s is \"always\", stop it for failed cache set %pU.\n",
17677e027ca4SColy Li 			d->disk->disk_name, c->sb.set_uuid);
17687e027ca4SColy Li 		bcache_device_stop(d);
17697e027ca4SColy Li 	} else if (atomic_read(&dc->has_dirty)) {
17707e027ca4SColy Li 		/*
17717e027ca4SColy Li 		 * dc->stop_when_cache_set_failed == BCH_CACHED_STOP_AUTO
17727e027ca4SColy Li 		 * and dc->has_dirty == 1
17737e027ca4SColy Li 		 */
177446f5aa88SJoe Perches 		pr_warn("stop_when_cache_set_failed of %s is \"auto\" and cache is dirty, stop it to avoid potential data corruption.\n",
17757e027ca4SColy Li 			d->disk->disk_name);
17764fd8e138SColy Li 		/*
17774fd8e138SColy Li 		 * There might be a small time gap that cache set is
17784fd8e138SColy Li 		 * released but bcache device is not. Inside this time
17794fd8e138SColy Li 		 * gap, regular I/O requests will directly go into
17804fd8e138SColy Li 		 * backing device as no cache set attached to. This
17814fd8e138SColy Li 		 * behavior may also introduce potential inconsistence
17824fd8e138SColy Li 		 * data in writeback mode while cache is dirty.
17834fd8e138SColy Li 		 * Therefore before calling bcache_device_stop() due
17844fd8e138SColy Li 		 * to a broken cache device, dc->io_disable should be
17854fd8e138SColy Li 		 * explicitly set to true.
17864fd8e138SColy Li 		 */
17874fd8e138SColy Li 		dc->io_disable = true;
17884fd8e138SColy Li 		/* make others know io_disable is true earlier */
17894fd8e138SColy Li 		smp_mb();
17907e027ca4SColy Li 		bcache_device_stop(d);
17917e027ca4SColy Li 	} else {
17927e027ca4SColy Li 		/*
17937e027ca4SColy Li 		 * dc->stop_when_cache_set_failed == BCH_CACHED_STOP_AUTO
17947e027ca4SColy Li 		 * and dc->has_dirty == 0
17957e027ca4SColy Li 		 */
179646f5aa88SJoe Perches 		pr_warn("stop_when_cache_set_failed of %s is \"auto\" and cache is clean, keep it alive.\n",
17977e027ca4SColy Li 			d->disk->disk_name);
17987e027ca4SColy Li 	}
17997e027ca4SColy Li }
18007e027ca4SColy Li 
1801cafe5635SKent Overstreet static void __cache_set_unregister(struct closure *cl)
1802cafe5635SKent Overstreet {
1803cafe5635SKent Overstreet 	struct cache_set *c = container_of(cl, struct cache_set, caching);
18045caa52afSKent Overstreet 	struct cached_dev *dc;
18057e027ca4SColy Li 	struct bcache_device *d;
1806cafe5635SKent Overstreet 	size_t i;
1807cafe5635SKent Overstreet 
1808cafe5635SKent Overstreet 	mutex_lock(&bch_register_lock);
1809cafe5635SKent Overstreet 
18107e027ca4SColy Li 	for (i = 0; i < c->devices_max_used; i++) {
18117e027ca4SColy Li 		d = c->devices[i];
18127e027ca4SColy Li 		if (!d)
18137e027ca4SColy Li 			continue;
18147e027ca4SColy Li 
18155caa52afSKent Overstreet 		if (!UUID_FLASH_ONLY(&c->uuids[i]) &&
18165caa52afSKent Overstreet 		    test_bit(CACHE_SET_UNREGISTERING, &c->flags)) {
18177e027ca4SColy Li 			dc = container_of(d, struct cached_dev, disk);
18185caa52afSKent Overstreet 			bch_cached_dev_detach(dc);
18197e027ca4SColy Li 			if (test_bit(CACHE_SET_IO_DISABLE, &c->flags))
18207e027ca4SColy Li 				conditional_stop_bcache_device(c, d, dc);
18215caa52afSKent Overstreet 		} else {
18227e027ca4SColy Li 			bcache_device_stop(d);
18235caa52afSKent Overstreet 		}
18245caa52afSKent Overstreet 	}
1825cafe5635SKent Overstreet 
1826cafe5635SKent Overstreet 	mutex_unlock(&bch_register_lock);
1827cafe5635SKent Overstreet 
1828cafe5635SKent Overstreet 	continue_at(cl, cache_set_flush, system_wq);
1829cafe5635SKent Overstreet }
1830cafe5635SKent Overstreet 
1831cafe5635SKent Overstreet void bch_cache_set_stop(struct cache_set *c)
1832cafe5635SKent Overstreet {
1833cafe5635SKent Overstreet 	if (!test_and_set_bit(CACHE_SET_STOPPING, &c->flags))
183463d63b51SColy Li 		/* closure_fn set to __cache_set_unregister() */
1835cafe5635SKent Overstreet 		closure_queue(&c->caching);
1836cafe5635SKent Overstreet }
1837cafe5635SKent Overstreet 
1838cafe5635SKent Overstreet void bch_cache_set_unregister(struct cache_set *c)
1839cafe5635SKent Overstreet {
1840cafe5635SKent Overstreet 	set_bit(CACHE_SET_UNREGISTERING, &c->flags);
1841cafe5635SKent Overstreet 	bch_cache_set_stop(c);
1842cafe5635SKent Overstreet }
1843cafe5635SKent Overstreet 
1844cafe5635SKent Overstreet #define alloc_bucket_pages(gfp, c)			\
18455fe48867SColy Li 	((void *) __get_free_pages(__GFP_ZERO|__GFP_COMP|gfp, ilog2(bucket_pages(c))))
1846cafe5635SKent Overstreet 
1847de1fafabSColy Li #define alloc_meta_bucket_pages(gfp, sb)		\
1848de1fafabSColy Li 	((void *) __get_free_pages(__GFP_ZERO|__GFP_COMP|gfp, ilog2(meta_bucket_pages(sb))))
1849cafe5635SKent Overstreet 
1850cafe5635SKent Overstreet struct cache_set *bch_cache_set_alloc(struct cache_sb *sb)
1851cafe5635SKent Overstreet {
1852cafe5635SKent Overstreet 	int iter_size;
1853cafe5635SKent Overstreet 	struct cache_set *c = kzalloc(sizeof(struct cache_set), GFP_KERNEL);
18541fae7cf0SColy Li 
1855cafe5635SKent Overstreet 	if (!c)
1856cafe5635SKent Overstreet 		return NULL;
1857cafe5635SKent Overstreet 
1858cafe5635SKent Overstreet 	__module_get(THIS_MODULE);
1859cafe5635SKent Overstreet 	closure_init(&c->cl, NULL);
1860cafe5635SKent Overstreet 	set_closure_fn(&c->cl, cache_set_free, system_wq);
1861cafe5635SKent Overstreet 
1862cafe5635SKent Overstreet 	closure_init(&c->caching, &c->cl);
1863cafe5635SKent Overstreet 	set_closure_fn(&c->caching, __cache_set_unregister, system_wq);
1864cafe5635SKent Overstreet 
1865cafe5635SKent Overstreet 	/* Maybe create continue_at_noreturn() and use it here? */
1866cafe5635SKent Overstreet 	closure_set_stopped(&c->cl);
1867cafe5635SKent Overstreet 	closure_put(&c->cl);
1868cafe5635SKent Overstreet 
1869cafe5635SKent Overstreet 	kobject_init(&c->kobj, &bch_cache_set_ktype);
1870cafe5635SKent Overstreet 	kobject_init(&c->internal, &bch_cache_set_internal_ktype);
1871cafe5635SKent Overstreet 
1872cafe5635SKent Overstreet 	bch_cache_accounting_init(&c->accounting, &c->cl);
1873cafe5635SKent Overstreet 
1874cafe5635SKent Overstreet 	memcpy(c->sb.set_uuid, sb->set_uuid, 16);
1875cafe5635SKent Overstreet 	c->sb.block_size	= sb->block_size;
1876cafe5635SKent Overstreet 	c->sb.bucket_size	= sb->bucket_size;
1877cafe5635SKent Overstreet 	c->sb.nr_in_set		= sb->nr_in_set;
1878cafe5635SKent Overstreet 	c->sb.last_mount	= sb->last_mount;
1879d721a43fSColy Li 	c->sb.version		= sb->version;
1880d721a43fSColy Li 	if (c->sb.version >= BCACHE_SB_VERSION_CDEV_WITH_FEATURES) {
1881d721a43fSColy Li 		c->sb.feature_compat = sb->feature_compat;
1882d721a43fSColy Li 		c->sb.feature_ro_compat = sb->feature_ro_compat;
1883d721a43fSColy Li 		c->sb.feature_incompat = sb->feature_incompat;
1884d721a43fSColy Li 	}
1885d721a43fSColy Li 
1886cafe5635SKent Overstreet 	c->bucket_bits		= ilog2(sb->bucket_size);
1887cafe5635SKent Overstreet 	c->block_bits		= ilog2(sb->block_size);
188821e478ddSColy Li 	c->nr_uuids		= meta_bucket_bytes(&c->sb) / sizeof(struct uuid_entry);
18892831231dSColy Li 	c->devices_max_used	= 0;
1890ea8c5356SColy Li 	atomic_set(&c->attached_dev_nr, 0);
1891f9c32a5aSColy Li 	c->btree_pages		= meta_bucket_pages(&c->sb);
1892cafe5635SKent Overstreet 	if (c->btree_pages > BTREE_MAX_PAGES)
1893cafe5635SKent Overstreet 		c->btree_pages = max_t(int, c->btree_pages / 4,
1894cafe5635SKent Overstreet 				       BTREE_MAX_PAGES);
1895cafe5635SKent Overstreet 
1896cb7a583eSKent Overstreet 	sema_init(&c->sb_write_mutex, 1);
1897e8e1d468SKent Overstreet 	mutex_init(&c->bucket_lock);
18980a63b66dSKent Overstreet 	init_waitqueue_head(&c->btree_cache_wait);
189934cf78bfSGuoju Fang 	spin_lock_init(&c->btree_cannibalize_lock);
190035fcd848SKent Overstreet 	init_waitqueue_head(&c->bucket_wait);
1901be628be0SKent Overstreet 	init_waitqueue_head(&c->gc_wait);
1902cb7a583eSKent Overstreet 	sema_init(&c->uuid_write_mutex, 1);
190365d22e91SKent Overstreet 
190465d22e91SKent Overstreet 	spin_lock_init(&c->btree_gc_time.lock);
190565d22e91SKent Overstreet 	spin_lock_init(&c->btree_split_time.lock);
190665d22e91SKent Overstreet 	spin_lock_init(&c->btree_read_time.lock);
1907e8e1d468SKent Overstreet 
1908cafe5635SKent Overstreet 	bch_moving_init_cache_set(c);
1909cafe5635SKent Overstreet 
1910cafe5635SKent Overstreet 	INIT_LIST_HEAD(&c->list);
1911cafe5635SKent Overstreet 	INIT_LIST_HEAD(&c->cached_devs);
1912cafe5635SKent Overstreet 	INIT_LIST_HEAD(&c->btree_cache);
1913cafe5635SKent Overstreet 	INIT_LIST_HEAD(&c->btree_cache_freeable);
1914cafe5635SKent Overstreet 	INIT_LIST_HEAD(&c->btree_cache_freed);
1915cafe5635SKent Overstreet 	INIT_LIST_HEAD(&c->data_buckets);
1916cafe5635SKent Overstreet 
19176907dc49SColy Li 	iter_size = ((meta_bucket_pages(sb) * PAGE_SECTORS) / sb->block_size + 1) *
1918cafe5635SKent Overstreet 		sizeof(struct btree_iter_set);
1919cafe5635SKent Overstreet 
1920a42d3c64SColy Li 	c->devices = kcalloc(c->nr_uuids, sizeof(void *), GFP_KERNEL);
1921a42d3c64SColy Li 	if (!c->devices)
1922a42d3c64SColy Li 		goto err;
1923a42d3c64SColy Li 
1924a42d3c64SColy Li 	if (mempool_init_slab_pool(&c->search, 32, bch_search_cache))
1925a42d3c64SColy Li 		goto err;
1926a42d3c64SColy Li 
1927a42d3c64SColy Li 	if (mempool_init_kmalloc_pool(&c->bio_meta, 2,
1928a42d3c64SColy Li 			sizeof(struct bbio) +
19294e4d4e09SColy Li 			sizeof(struct bio_vec) * meta_bucket_pages(&c->sb)))
1930a42d3c64SColy Li 		goto err;
1931a42d3c64SColy Li 
1932a42d3c64SColy Li 	if (mempool_init_kmalloc_pool(&c->fill_iter, 1, iter_size))
1933a42d3c64SColy Li 		goto err;
1934a42d3c64SColy Li 
1935a42d3c64SColy Li 	if (bioset_init(&c->bio_split, 4, offsetof(struct bbio, bio),
1936a42d3c64SColy Li 			BIOSET_NEED_BVECS|BIOSET_NEED_RESCUER))
1937a42d3c64SColy Li 		goto err;
1938a42d3c64SColy Li 
193921e478ddSColy Li 	c->uuids = alloc_meta_bucket_pages(GFP_KERNEL, &c->sb);
1940a42d3c64SColy Li 	if (!c->uuids)
1941a42d3c64SColy Li 		goto err;
1942a42d3c64SColy Li 
1943a42d3c64SColy Li 	c->moving_gc_wq = alloc_workqueue("bcache_gc", WQ_MEM_RECLAIM, 0);
1944a42d3c64SColy Li 	if (!c->moving_gc_wq)
1945a42d3c64SColy Li 		goto err;
1946a42d3c64SColy Li 
1947a42d3c64SColy Li 	if (bch_journal_alloc(c))
1948a42d3c64SColy Li 		goto err;
1949a42d3c64SColy Li 
1950a42d3c64SColy Li 	if (bch_btree_cache_alloc(c))
1951a42d3c64SColy Li 		goto err;
1952a42d3c64SColy Li 
1953a42d3c64SColy Li 	if (bch_open_buckets_alloc(c))
1954a42d3c64SColy Li 		goto err;
1955a42d3c64SColy Li 
1956a42d3c64SColy Li 	if (bch_bset_sort_state_init(&c->sort, ilog2(c->btree_pages)))
1957cafe5635SKent Overstreet 		goto err;
1958cafe5635SKent Overstreet 
1959cafe5635SKent Overstreet 	c->congested_read_threshold_us	= 2000;
1960cafe5635SKent Overstreet 	c->congested_write_threshold_us	= 20000;
19617ba0d830SColy Li 	c->error_limit	= DEFAULT_IO_ERROR_LIMIT;
1962c5fcdedcSColy Li 	c->idle_max_writeback_rate_enabled = 1;
1963771f393eSColy Li 	WARN_ON(test_and_clear_bit(CACHE_SET_IO_DISABLE, &c->flags));
1964cafe5635SKent Overstreet 
1965cafe5635SKent Overstreet 	return c;
1966cafe5635SKent Overstreet err:
1967cafe5635SKent Overstreet 	bch_cache_set_unregister(c);
1968cafe5635SKent Overstreet 	return NULL;
1969cafe5635SKent Overstreet }
1970cafe5635SKent Overstreet 
1971ce3e4cfbSColy Li static int run_cache_set(struct cache_set *c)
1972cafe5635SKent Overstreet {
1973cafe5635SKent Overstreet 	const char *err = "cannot allocate memory";
1974cafe5635SKent Overstreet 	struct cached_dev *dc, *t;
1975cafe5635SKent Overstreet 	struct cache *ca;
1976c18536a7SKent Overstreet 	struct closure cl;
19776f10f7d1SColy Li 	unsigned int i;
197895f18c9dSShenghui Wang 	LIST_HEAD(journal);
197995f18c9dSShenghui Wang 	struct journal_replay *l;
1980cafe5635SKent Overstreet 
1981c18536a7SKent Overstreet 	closure_init_stack(&cl);
1982cafe5635SKent Overstreet 
1983cafe5635SKent Overstreet 	for_each_cache(ca, c, i)
1984cafe5635SKent Overstreet 		c->nbuckets += ca->sb.nbuckets;
1985be628be0SKent Overstreet 	set_gc_sectors(c);
1986cafe5635SKent Overstreet 
1987cafe5635SKent Overstreet 	if (CACHE_SYNC(&c->sb)) {
1988cafe5635SKent Overstreet 		struct bkey *k;
1989cafe5635SKent Overstreet 		struct jset *j;
1990cafe5635SKent Overstreet 
1991cafe5635SKent Overstreet 		err = "cannot allocate memory for journal";
1992c18536a7SKent Overstreet 		if (bch_journal_read(c, &journal))
1993cafe5635SKent Overstreet 			goto err;
1994cafe5635SKent Overstreet 
199546f5aa88SJoe Perches 		pr_debug("btree_journal_read() done\n");
1996cafe5635SKent Overstreet 
1997cafe5635SKent Overstreet 		err = "no journal entries found";
1998cafe5635SKent Overstreet 		if (list_empty(&journal))
1999cafe5635SKent Overstreet 			goto err;
2000cafe5635SKent Overstreet 
2001cafe5635SKent Overstreet 		j = &list_entry(journal.prev, struct journal_replay, list)->j;
2002cafe5635SKent Overstreet 
2003cafe5635SKent Overstreet 		err = "IO error reading priorities";
200449d08d59SColy Li 		for_each_cache(ca, c, i) {
200549d08d59SColy Li 			if (prio_read(ca, j->prio_bucket[ca->sb.nr_this_dev]))
200649d08d59SColy Li 				goto err;
200749d08d59SColy Li 		}
2008cafe5635SKent Overstreet 
2009cafe5635SKent Overstreet 		/*
2010cafe5635SKent Overstreet 		 * If prio_read() fails it'll call cache_set_error and we'll
2011cafe5635SKent Overstreet 		 * tear everything down right away, but if we perhaps checked
2012cafe5635SKent Overstreet 		 * sooner we could avoid journal replay.
2013cafe5635SKent Overstreet 		 */
2014cafe5635SKent Overstreet 
2015cafe5635SKent Overstreet 		k = &j->btree_root;
2016cafe5635SKent Overstreet 
2017cafe5635SKent Overstreet 		err = "bad btree root";
201865d45231SKent Overstreet 		if (__bch_btree_ptr_invalid(c, k))
2019cafe5635SKent Overstreet 			goto err;
2020cafe5635SKent Overstreet 
2021cafe5635SKent Overstreet 		err = "error reading btree root";
2022b0d30981SColy Li 		c->root = bch_btree_node_get(c, NULL, k,
2023b0d30981SColy Li 					     j->btree_level,
2024b0d30981SColy Li 					     true, NULL);
2025cafe5635SKent Overstreet 		if (IS_ERR_OR_NULL(c->root))
2026cafe5635SKent Overstreet 			goto err;
2027cafe5635SKent Overstreet 
2028cafe5635SKent Overstreet 		list_del_init(&c->root->list);
2029cafe5635SKent Overstreet 		rw_unlock(true, c->root);
2030cafe5635SKent Overstreet 
2031c18536a7SKent Overstreet 		err = uuid_read(c, j, &cl);
2032cafe5635SKent Overstreet 		if (err)
2033cafe5635SKent Overstreet 			goto err;
2034cafe5635SKent Overstreet 
2035cafe5635SKent Overstreet 		err = "error in recovery";
2036c18536a7SKent Overstreet 		if (bch_btree_check(c))
2037cafe5635SKent Overstreet 			goto err;
2038cafe5635SKent Overstreet 
2039cafe5635SKent Overstreet 		bch_journal_mark(c, &journal);
20402531d9eeSKent Overstreet 		bch_initial_gc_finish(c);
204146f5aa88SJoe Perches 		pr_debug("btree_check() done\n");
2042cafe5635SKent Overstreet 
2043cafe5635SKent Overstreet 		/*
2044cafe5635SKent Overstreet 		 * bcache_journal_next() can't happen sooner, or
2045cafe5635SKent Overstreet 		 * btree_gc_finish() will give spurious errors about last_gc >
2046cafe5635SKent Overstreet 		 * gc_gen - this is a hack but oh well.
2047cafe5635SKent Overstreet 		 */
2048cafe5635SKent Overstreet 		bch_journal_next(&c->journal);
2049cafe5635SKent Overstreet 
2050119ba0f8SKent Overstreet 		err = "error starting allocator thread";
2051cafe5635SKent Overstreet 		for_each_cache(ca, c, i)
2052119ba0f8SKent Overstreet 			if (bch_cache_allocator_start(ca))
2053119ba0f8SKent Overstreet 				goto err;
2054cafe5635SKent Overstreet 
2055cafe5635SKent Overstreet 		/*
2056cafe5635SKent Overstreet 		 * First place it's safe to allocate: btree_check() and
2057cafe5635SKent Overstreet 		 * btree_gc_finish() have to run before we have buckets to
2058cafe5635SKent Overstreet 		 * allocate, and bch_bucket_alloc_set() might cause a journal
2059cafe5635SKent Overstreet 		 * entry to be written so bcache_journal_next() has to be called
2060cafe5635SKent Overstreet 		 * first.
2061cafe5635SKent Overstreet 		 *
2062cafe5635SKent Overstreet 		 * If the uuids were in the old format we have to rewrite them
2063cafe5635SKent Overstreet 		 * before the next journal entry is written:
2064cafe5635SKent Overstreet 		 */
2065cafe5635SKent Overstreet 		if (j->version < BCACHE_JSET_VERSION_UUID)
2066cafe5635SKent Overstreet 			__uuid_write(c);
2067cafe5635SKent Overstreet 
2068ce3e4cfbSColy Li 		err = "bcache: replay journal failed";
2069ce3e4cfbSColy Li 		if (bch_journal_replay(c, &journal))
2070ce3e4cfbSColy Li 			goto err;
2071cafe5635SKent Overstreet 	} else {
207246f5aa88SJoe Perches 		pr_notice("invalidating existing data\n");
2073cafe5635SKent Overstreet 
2074cafe5635SKent Overstreet 		for_each_cache(ca, c, i) {
20756f10f7d1SColy Li 			unsigned int j;
2076cafe5635SKent Overstreet 
2077cafe5635SKent Overstreet 			ca->sb.keys = clamp_t(int, ca->sb.nbuckets >> 7,
2078cafe5635SKent Overstreet 					      2, SB_JOURNAL_BUCKETS);
2079cafe5635SKent Overstreet 
2080cafe5635SKent Overstreet 			for (j = 0; j < ca->sb.keys; j++)
2081cafe5635SKent Overstreet 				ca->sb.d[j] = ca->sb.first_bucket + j;
2082cafe5635SKent Overstreet 		}
2083cafe5635SKent Overstreet 
20842531d9eeSKent Overstreet 		bch_initial_gc_finish(c);
2085cafe5635SKent Overstreet 
2086119ba0f8SKent Overstreet 		err = "error starting allocator thread";
2087cafe5635SKent Overstreet 		for_each_cache(ca, c, i)
2088119ba0f8SKent Overstreet 			if (bch_cache_allocator_start(ca))
2089119ba0f8SKent Overstreet 				goto err;
2090cafe5635SKent Overstreet 
2091cafe5635SKent Overstreet 		mutex_lock(&c->bucket_lock);
2092cafe5635SKent Overstreet 		for_each_cache(ca, c, i)
209384c529aeSAndrea Righi 			bch_prio_write(ca, true);
2094cafe5635SKent Overstreet 		mutex_unlock(&c->bucket_lock);
2095cafe5635SKent Overstreet 
2096cafe5635SKent Overstreet 		err = "cannot allocate new UUID bucket";
2097cafe5635SKent Overstreet 		if (__uuid_write(c))
209872a44517SKent Overstreet 			goto err;
2099cafe5635SKent Overstreet 
2100cafe5635SKent Overstreet 		err = "cannot allocate new btree root";
21012452cc89SSlava Pestov 		c->root = __bch_btree_node_alloc(c, NULL, 0, true, NULL);
2102cafe5635SKent Overstreet 		if (IS_ERR_OR_NULL(c->root))
210372a44517SKent Overstreet 			goto err;
2104cafe5635SKent Overstreet 
21052a285686SKent Overstreet 		mutex_lock(&c->root->write_lock);
2106cafe5635SKent Overstreet 		bkey_copy_key(&c->root->key, &MAX_KEY);
2107c18536a7SKent Overstreet 		bch_btree_node_write(c->root, &cl);
21082a285686SKent Overstreet 		mutex_unlock(&c->root->write_lock);
2109cafe5635SKent Overstreet 
2110cafe5635SKent Overstreet 		bch_btree_set_root(c->root);
2111cafe5635SKent Overstreet 		rw_unlock(true, c->root);
2112cafe5635SKent Overstreet 
2113cafe5635SKent Overstreet 		/*
2114cafe5635SKent Overstreet 		 * We don't want to write the first journal entry until
2115cafe5635SKent Overstreet 		 * everything is set up - fortunately journal entries won't be
2116cafe5635SKent Overstreet 		 * written until the SET_CACHE_SYNC() here:
2117cafe5635SKent Overstreet 		 */
2118cafe5635SKent Overstreet 		SET_CACHE_SYNC(&c->sb, true);
2119cafe5635SKent Overstreet 
2120cafe5635SKent Overstreet 		bch_journal_next(&c->journal);
2121c18536a7SKent Overstreet 		bch_journal_meta(c, &cl);
2122cafe5635SKent Overstreet 	}
2123cafe5635SKent Overstreet 
212472a44517SKent Overstreet 	err = "error starting gc thread";
212572a44517SKent Overstreet 	if (bch_gc_thread_start(c))
212672a44517SKent Overstreet 		goto err;
212772a44517SKent Overstreet 
2128c18536a7SKent Overstreet 	closure_sync(&cl);
212975cbb3f1SArnd Bergmann 	c->sb.last_mount = (u32)ktime_get_real_seconds();
2130cafe5635SKent Overstreet 	bcache_write_super(c);
2131cafe5635SKent Overstreet 
2132cafe5635SKent Overstreet 	list_for_each_entry_safe(dc, t, &uncached_devices, list)
213373ac105bSTang Junhui 		bch_cached_dev_attach(dc, c, NULL);
2134cafe5635SKent Overstreet 
2135cafe5635SKent Overstreet 	flash_devs_run(c);
2136cafe5635SKent Overstreet 
2137bf0c55c9SSlava Pestov 	set_bit(CACHE_SET_RUNNING, &c->flags);
2138ce3e4cfbSColy Li 	return 0;
2139cafe5635SKent Overstreet err:
214095f18c9dSShenghui Wang 	while (!list_empty(&journal)) {
214195f18c9dSShenghui Wang 		l = list_first_entry(&journal, struct journal_replay, list);
214295f18c9dSShenghui Wang 		list_del(&l->list);
214395f18c9dSShenghui Wang 		kfree(l);
214495f18c9dSShenghui Wang 	}
214595f18c9dSShenghui Wang 
2146c18536a7SKent Overstreet 	closure_sync(&cl);
214768a53c95SColy Li 
2148c8694948SKees Cook 	bch_cache_set_error(c, "%s", err);
2149ce3e4cfbSColy Li 
2150ce3e4cfbSColy Li 	return -EIO;
2151cafe5635SKent Overstreet }
2152cafe5635SKent Overstreet 
2153cafe5635SKent Overstreet static bool can_attach_cache(struct cache *ca, struct cache_set *c)
2154cafe5635SKent Overstreet {
2155cafe5635SKent Overstreet 	return ca->sb.block_size	== c->sb.block_size &&
21569eb8ebebSNicholas Swenson 		ca->sb.bucket_size	== c->sb.bucket_size &&
2157cafe5635SKent Overstreet 		ca->sb.nr_in_set	== c->sb.nr_in_set;
2158cafe5635SKent Overstreet }
2159cafe5635SKent Overstreet 
2160cafe5635SKent Overstreet static const char *register_cache_set(struct cache *ca)
2161cafe5635SKent Overstreet {
2162cafe5635SKent Overstreet 	char buf[12];
2163cafe5635SKent Overstreet 	const char *err = "cannot allocate memory";
2164cafe5635SKent Overstreet 	struct cache_set *c;
2165cafe5635SKent Overstreet 
2166cafe5635SKent Overstreet 	list_for_each_entry(c, &bch_cache_sets, list)
2167cafe5635SKent Overstreet 		if (!memcmp(c->sb.set_uuid, ca->sb.set_uuid, 16)) {
2168cafe5635SKent Overstreet 			if (c->cache[ca->sb.nr_this_dev])
2169cafe5635SKent Overstreet 				return "duplicate cache set member";
2170cafe5635SKent Overstreet 
2171cafe5635SKent Overstreet 			if (!can_attach_cache(ca, c))
2172cafe5635SKent Overstreet 				return "cache sb does not match set";
2173cafe5635SKent Overstreet 
2174cafe5635SKent Overstreet 			if (!CACHE_SYNC(&ca->sb))
2175cafe5635SKent Overstreet 				SET_CACHE_SYNC(&c->sb, false);
2176cafe5635SKent Overstreet 
2177cafe5635SKent Overstreet 			goto found;
2178cafe5635SKent Overstreet 		}
2179cafe5635SKent Overstreet 
2180cafe5635SKent Overstreet 	c = bch_cache_set_alloc(&ca->sb);
2181cafe5635SKent Overstreet 	if (!c)
2182cafe5635SKent Overstreet 		return err;
2183cafe5635SKent Overstreet 
2184cafe5635SKent Overstreet 	err = "error creating kobject";
2185cafe5635SKent Overstreet 	if (kobject_add(&c->kobj, bcache_kobj, "%pU", c->sb.set_uuid) ||
2186cafe5635SKent Overstreet 	    kobject_add(&c->internal, &c->kobj, "internal"))
2187cafe5635SKent Overstreet 		goto err;
2188cafe5635SKent Overstreet 
2189cafe5635SKent Overstreet 	if (bch_cache_accounting_add_kobjs(&c->accounting, &c->kobj))
2190cafe5635SKent Overstreet 		goto err;
2191cafe5635SKent Overstreet 
2192cafe5635SKent Overstreet 	bch_debug_init_cache_set(c);
2193cafe5635SKent Overstreet 
2194cafe5635SKent Overstreet 	list_add(&c->list, &bch_cache_sets);
2195cafe5635SKent Overstreet found:
2196cafe5635SKent Overstreet 	sprintf(buf, "cache%i", ca->sb.nr_this_dev);
2197cafe5635SKent Overstreet 	if (sysfs_create_link(&ca->kobj, &c->kobj, "set") ||
2198cafe5635SKent Overstreet 	    sysfs_create_link(&c->kobj, &ca->kobj, buf))
2199cafe5635SKent Overstreet 		goto err;
2200cafe5635SKent Overstreet 
2201117f636eSColy Li 	/*
2202117f636eSColy Li 	 * A special case is both ca->sb.seq and c->sb.seq are 0,
2203117f636eSColy Li 	 * such condition happens on a new created cache device whose
2204117f636eSColy Li 	 * super block is never flushed yet. In this case c->sb.version
2205117f636eSColy Li 	 * and other members should be updated too, otherwise we will
2206117f636eSColy Li 	 * have a mistaken super block version in cache set.
2207117f636eSColy Li 	 */
2208117f636eSColy Li 	if (ca->sb.seq > c->sb.seq || c->sb.seq == 0) {
2209cafe5635SKent Overstreet 		c->sb.version		= ca->sb.version;
2210cafe5635SKent Overstreet 		memcpy(c->sb.set_uuid, ca->sb.set_uuid, 16);
2211cafe5635SKent Overstreet 		c->sb.flags             = ca->sb.flags;
2212cafe5635SKent Overstreet 		c->sb.seq		= ca->sb.seq;
221346f5aa88SJoe Perches 		pr_debug("set version = %llu\n", c->sb.version);
2214cafe5635SKent Overstreet 	}
2215cafe5635SKent Overstreet 
2216d83353b3SKent Overstreet 	kobject_get(&ca->kobj);
2217cafe5635SKent Overstreet 	ca->set = c;
2218cafe5635SKent Overstreet 	ca->set->cache[ca->sb.nr_this_dev] = ca;
2219cafe5635SKent Overstreet 	c->cache_by_alloc[c->caches_loaded++] = ca;
2220cafe5635SKent Overstreet 
2221ce3e4cfbSColy Li 	if (c->caches_loaded == c->sb.nr_in_set) {
2222ce3e4cfbSColy Li 		err = "failed to run cache set";
2223ce3e4cfbSColy Li 		if (run_cache_set(c) < 0)
2224ce3e4cfbSColy Li 			goto err;
2225ce3e4cfbSColy Li 	}
2226cafe5635SKent Overstreet 
2227cafe5635SKent Overstreet 	return NULL;
2228cafe5635SKent Overstreet err:
2229cafe5635SKent Overstreet 	bch_cache_set_unregister(c);
2230cafe5635SKent Overstreet 	return err;
2231cafe5635SKent Overstreet }
2232cafe5635SKent Overstreet 
2233cafe5635SKent Overstreet /* Cache device */
2234cafe5635SKent Overstreet 
22352d17456eSColy Li /* When ca->kobj released */
2236cafe5635SKent Overstreet void bch_cache_release(struct kobject *kobj)
2237cafe5635SKent Overstreet {
2238cafe5635SKent Overstreet 	struct cache *ca = container_of(kobj, struct cache, kobj);
22396f10f7d1SColy Li 	unsigned int i;
2240cafe5635SKent Overstreet 
2241c9a78332SSlava Pestov 	if (ca->set) {
2242c9a78332SSlava Pestov 		BUG_ON(ca->set->cache[ca->sb.nr_this_dev] != ca);
2243cafe5635SKent Overstreet 		ca->set->cache[ca->sb.nr_this_dev] = NULL;
2244c9a78332SSlava Pestov 	}
2245cafe5635SKent Overstreet 
2246c954ac8dSColy Li 	free_pages((unsigned long) ca->disk_buckets, ilog2(meta_bucket_pages(&ca->sb)));
2247cafe5635SKent Overstreet 	kfree(ca->prio_buckets);
2248cafe5635SKent Overstreet 	vfree(ca->buckets);
2249cafe5635SKent Overstreet 
2250cafe5635SKent Overstreet 	free_heap(&ca->heap);
2251cafe5635SKent Overstreet 	free_fifo(&ca->free_inc);
225278365411SKent Overstreet 
225378365411SKent Overstreet 	for (i = 0; i < RESERVE_NR; i++)
225478365411SKent Overstreet 		free_fifo(&ca->free[i]);
2255cafe5635SKent Overstreet 
2256475389aeSChristoph Hellwig 	if (ca->sb_disk)
2257475389aeSChristoph Hellwig 		put_page(virt_to_page(ca->sb_disk));
2258cafe5635SKent Overstreet 
22590781c874SKent Overstreet 	if (!IS_ERR_OR_NULL(ca->bdev))
2260cafe5635SKent Overstreet 		blkdev_put(ca->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
2261cafe5635SKent Overstreet 
2262cafe5635SKent Overstreet 	kfree(ca);
2263cafe5635SKent Overstreet 	module_put(THIS_MODULE);
2264cafe5635SKent Overstreet }
2265cafe5635SKent Overstreet 
2266c50d4d5dSYijing Wang static int cache_alloc(struct cache *ca)
2267cafe5635SKent Overstreet {
2268cafe5635SKent Overstreet 	size_t free;
2269682811b3STang Junhui 	size_t btree_buckets;
2270cafe5635SKent Overstreet 	struct bucket *b;
2271f6027bcaSDongbo Cao 	int ret = -ENOMEM;
2272f6027bcaSDongbo Cao 	const char *err = NULL;
2273cafe5635SKent Overstreet 
2274cafe5635SKent Overstreet 	__module_get(THIS_MODULE);
2275cafe5635SKent Overstreet 	kobject_init(&ca->kobj, &bch_cache_ktype);
2276cafe5635SKent Overstreet 
22773a83f467SMing Lei 	bio_init(&ca->journal.bio, ca->journal.bio.bi_inline_vecs, 8);
2278cafe5635SKent Overstreet 
2279682811b3STang Junhui 	/*
2280682811b3STang Junhui 	 * when ca->sb.njournal_buckets is not zero, journal exists,
2281682811b3STang Junhui 	 * and in bch_journal_replay(), tree node may split,
2282682811b3STang Junhui 	 * so bucket of RESERVE_BTREE type is needed,
2283682811b3STang Junhui 	 * the worst situation is all journal buckets are valid journal,
2284682811b3STang Junhui 	 * and all the keys need to replay,
2285682811b3STang Junhui 	 * so the number of  RESERVE_BTREE type buckets should be as much
2286682811b3STang Junhui 	 * as journal buckets
2287682811b3STang Junhui 	 */
2288682811b3STang Junhui 	btree_buckets = ca->sb.njournal_buckets ?: 8;
228978365411SKent Overstreet 	free = roundup_pow_of_two(ca->sb.nbuckets) >> 10;
22903a646fd7SDongbo Cao 	if (!free) {
22913a646fd7SDongbo Cao 		ret = -EPERM;
22923a646fd7SDongbo Cao 		err = "ca->sb.nbuckets is too small";
22933a646fd7SDongbo Cao 		goto err_free;
22943a646fd7SDongbo Cao 	}
2295cafe5635SKent Overstreet 
2296f6027bcaSDongbo Cao 	if (!init_fifo(&ca->free[RESERVE_BTREE], btree_buckets,
2297f6027bcaSDongbo Cao 						GFP_KERNEL)) {
2298f6027bcaSDongbo Cao 		err = "ca->free[RESERVE_BTREE] alloc failed";
2299f6027bcaSDongbo Cao 		goto err_btree_alloc;
2300f6027bcaSDongbo Cao 	}
2301f6027bcaSDongbo Cao 
2302f6027bcaSDongbo Cao 	if (!init_fifo_exact(&ca->free[RESERVE_PRIO], prio_buckets(ca),
2303f6027bcaSDongbo Cao 							GFP_KERNEL)) {
2304f6027bcaSDongbo Cao 		err = "ca->free[RESERVE_PRIO] alloc failed";
2305f6027bcaSDongbo Cao 		goto err_prio_alloc;
2306f6027bcaSDongbo Cao 	}
2307f6027bcaSDongbo Cao 
2308f6027bcaSDongbo Cao 	if (!init_fifo(&ca->free[RESERVE_MOVINGGC], free, GFP_KERNEL)) {
2309f6027bcaSDongbo Cao 		err = "ca->free[RESERVE_MOVINGGC] alloc failed";
2310f6027bcaSDongbo Cao 		goto err_movinggc_alloc;
2311f6027bcaSDongbo Cao 	}
2312f6027bcaSDongbo Cao 
2313f6027bcaSDongbo Cao 	if (!init_fifo(&ca->free[RESERVE_NONE], free, GFP_KERNEL)) {
2314f6027bcaSDongbo Cao 		err = "ca->free[RESERVE_NONE] alloc failed";
2315f6027bcaSDongbo Cao 		goto err_none_alloc;
2316f6027bcaSDongbo Cao 	}
2317f6027bcaSDongbo Cao 
2318f6027bcaSDongbo Cao 	if (!init_fifo(&ca->free_inc, free << 2, GFP_KERNEL)) {
2319f6027bcaSDongbo Cao 		err = "ca->free_inc alloc failed";
2320f6027bcaSDongbo Cao 		goto err_free_inc_alloc;
2321f6027bcaSDongbo Cao 	}
2322f6027bcaSDongbo Cao 
2323f6027bcaSDongbo Cao 	if (!init_heap(&ca->heap, free << 3, GFP_KERNEL)) {
2324f6027bcaSDongbo Cao 		err = "ca->heap alloc failed";
2325f6027bcaSDongbo Cao 		goto err_heap_alloc;
2326f6027bcaSDongbo Cao 	}
2327f6027bcaSDongbo Cao 
2328f6027bcaSDongbo Cao 	ca->buckets = vzalloc(array_size(sizeof(struct bucket),
2329f6027bcaSDongbo Cao 			      ca->sb.nbuckets));
2330f6027bcaSDongbo Cao 	if (!ca->buckets) {
2331f6027bcaSDongbo Cao 		err = "ca->buckets alloc failed";
2332f6027bcaSDongbo Cao 		goto err_buckets_alloc;
2333f6027bcaSDongbo Cao 	}
2334f6027bcaSDongbo Cao 
2335f6027bcaSDongbo Cao 	ca->prio_buckets = kzalloc(array3_size(sizeof(uint64_t),
23366396bb22SKees Cook 				   prio_buckets(ca), 2),
2337f6027bcaSDongbo Cao 				   GFP_KERNEL);
2338f6027bcaSDongbo Cao 	if (!ca->prio_buckets) {
2339f6027bcaSDongbo Cao 		err = "ca->prio_buckets alloc failed";
2340f6027bcaSDongbo Cao 		goto err_prio_buckets_alloc;
2341f6027bcaSDongbo Cao 	}
2342f6027bcaSDongbo Cao 
2343c954ac8dSColy Li 	ca->disk_buckets = alloc_meta_bucket_pages(GFP_KERNEL, &ca->sb);
2344f6027bcaSDongbo Cao 	if (!ca->disk_buckets) {
2345f6027bcaSDongbo Cao 		err = "ca->disk_buckets alloc failed";
2346f6027bcaSDongbo Cao 		goto err_disk_buckets_alloc;
2347f6027bcaSDongbo Cao 	}
2348cafe5635SKent Overstreet 
2349cafe5635SKent Overstreet 	ca->prio_last_buckets = ca->prio_buckets + prio_buckets(ca);
2350cafe5635SKent Overstreet 
2351cafe5635SKent Overstreet 	for_each_bucket(b, ca)
2352cafe5635SKent Overstreet 		atomic_set(&b->pin, 0);
2353cafe5635SKent Overstreet 	return 0;
2354f6027bcaSDongbo Cao 
2355f6027bcaSDongbo Cao err_disk_buckets_alloc:
2356f6027bcaSDongbo Cao 	kfree(ca->prio_buckets);
2357f6027bcaSDongbo Cao err_prio_buckets_alloc:
2358f6027bcaSDongbo Cao 	vfree(ca->buckets);
2359f6027bcaSDongbo Cao err_buckets_alloc:
2360f6027bcaSDongbo Cao 	free_heap(&ca->heap);
2361f6027bcaSDongbo Cao err_heap_alloc:
2362f6027bcaSDongbo Cao 	free_fifo(&ca->free_inc);
2363f6027bcaSDongbo Cao err_free_inc_alloc:
2364f6027bcaSDongbo Cao 	free_fifo(&ca->free[RESERVE_NONE]);
2365f6027bcaSDongbo Cao err_none_alloc:
2366f6027bcaSDongbo Cao 	free_fifo(&ca->free[RESERVE_MOVINGGC]);
2367f6027bcaSDongbo Cao err_movinggc_alloc:
2368f6027bcaSDongbo Cao 	free_fifo(&ca->free[RESERVE_PRIO]);
2369f6027bcaSDongbo Cao err_prio_alloc:
2370f6027bcaSDongbo Cao 	free_fifo(&ca->free[RESERVE_BTREE]);
2371f6027bcaSDongbo Cao err_btree_alloc:
23723a646fd7SDongbo Cao err_free:
2373f6027bcaSDongbo Cao 	module_put(THIS_MODULE);
2374f6027bcaSDongbo Cao 	if (err)
237546f5aa88SJoe Perches 		pr_notice("error %s: %s\n", ca->cache_dev_name, err);
2376f6027bcaSDongbo Cao 	return ret;
2377cafe5635SKent Overstreet }
2378cafe5635SKent Overstreet 
2379cfa0c56dSChristoph Hellwig static int register_cache(struct cache_sb *sb, struct cache_sb_disk *sb_disk,
2380cafe5635SKent Overstreet 				struct block_device *bdev, struct cache *ca)
2381cafe5635SKent Overstreet {
2382d9dc1702SEric Wheeler 	const char *err = NULL; /* must be set for any error case */
23839b299728SEric Wheeler 	int ret = 0;
2384cafe5635SKent Overstreet 
23856e916a7eSColy Li 	bdevname(bdev, ca->cache_dev_name);
2386f59fce84SKent Overstreet 	memcpy(&ca->sb, sb, sizeof(struct cache_sb));
2387cafe5635SKent Overstreet 	ca->bdev = bdev;
2388cafe5635SKent Overstreet 	ca->bdev->bd_holder = ca;
2389475389aeSChristoph Hellwig 	ca->sb_disk = sb_disk;
2390f59fce84SKent Overstreet 
2391cc40daf9STang Junhui 	if (blk_queue_discard(bdev_get_queue(bdev)))
2392cafe5635SKent Overstreet 		ca->discard = CACHE_DISCARD(&ca->sb);
2393cafe5635SKent Overstreet 
2394c50d4d5dSYijing Wang 	ret = cache_alloc(ca);
2395d9dc1702SEric Wheeler 	if (ret != 0) {
2396bb6d355cSColy Li 		/*
2397bb6d355cSColy Li 		 * If we failed here, it means ca->kobj is not initialized yet,
2398bb6d355cSColy Li 		 * kobject_put() won't be called and there is no chance to
2399bb6d355cSColy Li 		 * call blkdev_put() to bdev in bch_cache_release(). So we
2400bb6d355cSColy Li 		 * explicitly call blkdev_put() here.
2401bb6d355cSColy Li 		 */
2402cc40daf9STang Junhui 		blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
2403d9dc1702SEric Wheeler 		if (ret == -ENOMEM)
2404d9dc1702SEric Wheeler 			err = "cache_alloc(): -ENOMEM";
24053a646fd7SDongbo Cao 		else if (ret == -EPERM)
24063a646fd7SDongbo Cao 			err = "cache_alloc(): cache device is too small";
2407d9dc1702SEric Wheeler 		else
2408d9dc1702SEric Wheeler 			err = "cache_alloc(): unknown error";
2409f59fce84SKent Overstreet 		goto err;
2410d9dc1702SEric Wheeler 	}
2411f59fce84SKent Overstreet 
2412b0d30981SColy Li 	if (kobject_add(&ca->kobj,
2413b0d30981SColy Li 			&part_to_dev(bdev->bd_part)->kobj,
2414b0d30981SColy Li 			"bcache")) {
24159b299728SEric Wheeler 		err = "error calling kobject_add";
24169b299728SEric Wheeler 		ret = -ENOMEM;
24179b299728SEric Wheeler 		goto out;
24189b299728SEric Wheeler 	}
2419cafe5635SKent Overstreet 
24204fa03402SKent Overstreet 	mutex_lock(&bch_register_lock);
2421cafe5635SKent Overstreet 	err = register_cache_set(ca);
24224fa03402SKent Overstreet 	mutex_unlock(&bch_register_lock);
24234fa03402SKent Overstreet 
24249b299728SEric Wheeler 	if (err) {
24259b299728SEric Wheeler 		ret = -ENODEV;
24269b299728SEric Wheeler 		goto out;
24279b299728SEric Wheeler 	}
2428cafe5635SKent Overstreet 
242946f5aa88SJoe Perches 	pr_info("registered cache device %s\n", ca->cache_dev_name);
24309b299728SEric Wheeler 
2431d83353b3SKent Overstreet out:
2432d83353b3SKent Overstreet 	kobject_put(&ca->kobj);
24339b299728SEric Wheeler 
2434cafe5635SKent Overstreet err:
24359b299728SEric Wheeler 	if (err)
243646f5aa88SJoe Perches 		pr_notice("error %s: %s\n", ca->cache_dev_name, err);
24379b299728SEric Wheeler 
24389b299728SEric Wheeler 	return ret;
2439cafe5635SKent Overstreet }
2440cafe5635SKent Overstreet 
2441cafe5635SKent Overstreet /* Global interfaces/init */
2442cafe5635SKent Overstreet 
2443fc2d5988SColy Li static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
2444fc2d5988SColy Li 			       const char *buffer, size_t size);
24450c277e21SColy Li static ssize_t bch_pending_bdevs_cleanup(struct kobject *k,
24460c277e21SColy Li 					 struct kobj_attribute *attr,
24470c277e21SColy Li 					 const char *buffer, size_t size);
2448cafe5635SKent Overstreet 
2449cafe5635SKent Overstreet kobj_attribute_write(register,		register_bcache);
2450cafe5635SKent Overstreet kobj_attribute_write(register_quiet,	register_bcache);
24510c277e21SColy Li kobj_attribute_write(pendings_cleanup,	bch_pending_bdevs_cleanup);
2452cafe5635SKent Overstreet 
2453b3cf37bfSColy Li static bool bch_is_open_backing(struct block_device *bdev)
2454b3cf37bfSColy Li {
2455a9dd53adSGabriel de Perthuis 	struct cache_set *c, *tc;
2456a9dd53adSGabriel de Perthuis 	struct cached_dev *dc, *t;
2457a9dd53adSGabriel de Perthuis 
2458a9dd53adSGabriel de Perthuis 	list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
2459a9dd53adSGabriel de Perthuis 		list_for_each_entry_safe(dc, t, &c->cached_devs, list)
2460a9dd53adSGabriel de Perthuis 			if (dc->bdev == bdev)
2461a9dd53adSGabriel de Perthuis 				return true;
2462a9dd53adSGabriel de Perthuis 	list_for_each_entry_safe(dc, t, &uncached_devices, list)
2463a9dd53adSGabriel de Perthuis 		if (dc->bdev == bdev)
2464a9dd53adSGabriel de Perthuis 			return true;
2465a9dd53adSGabriel de Perthuis 	return false;
2466a9dd53adSGabriel de Perthuis }
2467a9dd53adSGabriel de Perthuis 
2468b3cf37bfSColy Li static bool bch_is_open_cache(struct block_device *bdev)
2469b3cf37bfSColy Li {
2470a9dd53adSGabriel de Perthuis 	struct cache_set *c, *tc;
2471a9dd53adSGabriel de Perthuis 	struct cache *ca;
24726f10f7d1SColy Li 	unsigned int i;
2473a9dd53adSGabriel de Perthuis 
2474a9dd53adSGabriel de Perthuis 	list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
2475a9dd53adSGabriel de Perthuis 		for_each_cache(ca, c, i)
2476a9dd53adSGabriel de Perthuis 			if (ca->bdev == bdev)
2477a9dd53adSGabriel de Perthuis 				return true;
2478a9dd53adSGabriel de Perthuis 	return false;
2479a9dd53adSGabriel de Perthuis }
2480a9dd53adSGabriel de Perthuis 
2481b3cf37bfSColy Li static bool bch_is_open(struct block_device *bdev)
2482b3cf37bfSColy Li {
2483a9dd53adSGabriel de Perthuis 	return bch_is_open_cache(bdev) || bch_is_open_backing(bdev);
2484a9dd53adSGabriel de Perthuis }
2485a9dd53adSGabriel de Perthuis 
24869e23ccf8SColy Li struct async_reg_args {
2487ee4a36f4SColy Li 	struct delayed_work reg_work;
24889e23ccf8SColy Li 	char *path;
24899e23ccf8SColy Li 	struct cache_sb *sb;
24909e23ccf8SColy Li 	struct cache_sb_disk *sb_disk;
24919e23ccf8SColy Li 	struct block_device *bdev;
24929e23ccf8SColy Li };
24939e23ccf8SColy Li 
24949e23ccf8SColy Li static void register_bdev_worker(struct work_struct *work)
24959e23ccf8SColy Li {
24969e23ccf8SColy Li 	int fail = false;
24979e23ccf8SColy Li 	struct async_reg_args *args =
2498ee4a36f4SColy Li 		container_of(work, struct async_reg_args, reg_work.work);
24999e23ccf8SColy Li 	struct cached_dev *dc;
25009e23ccf8SColy Li 
25019e23ccf8SColy Li 	dc = kzalloc(sizeof(*dc), GFP_KERNEL);
25029e23ccf8SColy Li 	if (!dc) {
25039e23ccf8SColy Li 		fail = true;
25049e23ccf8SColy Li 		put_page(virt_to_page(args->sb_disk));
25059e23ccf8SColy Li 		blkdev_put(args->bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
25069e23ccf8SColy Li 		goto out;
25079e23ccf8SColy Li 	}
25089e23ccf8SColy Li 
25099e23ccf8SColy Li 	mutex_lock(&bch_register_lock);
25109e23ccf8SColy Li 	if (register_bdev(args->sb, args->sb_disk, args->bdev, dc) < 0)
25119e23ccf8SColy Li 		fail = true;
25129e23ccf8SColy Li 	mutex_unlock(&bch_register_lock);
25139e23ccf8SColy Li 
25149e23ccf8SColy Li out:
25159e23ccf8SColy Li 	if (fail)
25169e23ccf8SColy Li 		pr_info("error %s: fail to register backing device\n",
25179e23ccf8SColy Li 			args->path);
25189e23ccf8SColy Li 	kfree(args->sb);
25199e23ccf8SColy Li 	kfree(args->path);
25209e23ccf8SColy Li 	kfree(args);
25219e23ccf8SColy Li 	module_put(THIS_MODULE);
25229e23ccf8SColy Li }
25239e23ccf8SColy Li 
25249e23ccf8SColy Li static void register_cache_worker(struct work_struct *work)
25259e23ccf8SColy Li {
25269e23ccf8SColy Li 	int fail = false;
25279e23ccf8SColy Li 	struct async_reg_args *args =
2528ee4a36f4SColy Li 		container_of(work, struct async_reg_args, reg_work.work);
25299e23ccf8SColy Li 	struct cache *ca;
25309e23ccf8SColy Li 
25319e23ccf8SColy Li 	ca = kzalloc(sizeof(*ca), GFP_KERNEL);
25329e23ccf8SColy Li 	if (!ca) {
25339e23ccf8SColy Li 		fail = true;
25349e23ccf8SColy Li 		put_page(virt_to_page(args->sb_disk));
25359e23ccf8SColy Li 		blkdev_put(args->bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
25369e23ccf8SColy Li 		goto out;
25379e23ccf8SColy Li 	}
25389e23ccf8SColy Li 
25399e23ccf8SColy Li 	/* blkdev_put() will be called in bch_cache_release() */
25409e23ccf8SColy Li 	if (register_cache(args->sb, args->sb_disk, args->bdev, ca) != 0)
25419e23ccf8SColy Li 		fail = true;
25429e23ccf8SColy Li 
25439e23ccf8SColy Li out:
25449e23ccf8SColy Li 	if (fail)
25459e23ccf8SColy Li 		pr_info("error %s: fail to register cache device\n",
25469e23ccf8SColy Li 			args->path);
25479e23ccf8SColy Li 	kfree(args->sb);
25489e23ccf8SColy Li 	kfree(args->path);
25499e23ccf8SColy Li 	kfree(args);
25509e23ccf8SColy Li 	module_put(THIS_MODULE);
25519e23ccf8SColy Li }
25529e23ccf8SColy Li 
25539e23ccf8SColy Li static void register_device_aync(struct async_reg_args *args)
25549e23ccf8SColy Li {
25559e23ccf8SColy Li 	if (SB_IS_BDEV(args->sb))
2556ee4a36f4SColy Li 		INIT_DELAYED_WORK(&args->reg_work, register_bdev_worker);
25579e23ccf8SColy Li 	else
2558ee4a36f4SColy Li 		INIT_DELAYED_WORK(&args->reg_work, register_cache_worker);
25599e23ccf8SColy Li 
2560ee4a36f4SColy Li 	/* 10 jiffies is enough for a delay */
2561ee4a36f4SColy Li 	queue_delayed_work(system_wq, &args->reg_work, 10);
25629e23ccf8SColy Li }
25639e23ccf8SColy Li 
2564cafe5635SKent Overstreet static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
2565cafe5635SKent Overstreet 			       const char *buffer, size_t size)
2566cafe5635SKent Overstreet {
256750246693SChristoph Hellwig 	const char *err;
256829cda393SColy Li 	char *path = NULL;
256950246693SChristoph Hellwig 	struct cache_sb *sb;
2570cfa0c56dSChristoph Hellwig 	struct cache_sb_disk *sb_disk;
2571fc8f19ccSChristoph Hellwig 	struct block_device *bdev;
257250246693SChristoph Hellwig 	ssize_t ret;
2573a58e88bfSColy Li 	bool async_registration = false;
2574a58e88bfSColy Li 
2575a58e88bfSColy Li #ifdef CONFIG_BCACHE_ASYNC_REGISTRATION
2576a58e88bfSColy Li 	async_registration = true;
2577a58e88bfSColy Li #endif
2578cafe5635SKent Overstreet 
257950246693SChristoph Hellwig 	ret = -EBUSY;
258029cda393SColy Li 	err = "failed to reference bcache module";
2581cafe5635SKent Overstreet 	if (!try_module_get(THIS_MODULE))
258250246693SChristoph Hellwig 		goto out;
2583cafe5635SKent Overstreet 
2584a59ff6ccSColy Li 	/* For latest state of bcache_is_reboot */
2585a59ff6ccSColy Li 	smp_mb();
258629cda393SColy Li 	err = "bcache is in reboot";
2587a59ff6ccSColy Li 	if (bcache_is_reboot)
258850246693SChristoph Hellwig 		goto out_module_put;
2589a59ff6ccSColy Li 
259050246693SChristoph Hellwig 	ret = -ENOMEM;
259150246693SChristoph Hellwig 	err = "cannot allocate memory";
2592a56489d4SFlorian Schmaus 	path = kstrndup(buffer, size, GFP_KERNEL);
2593a56489d4SFlorian Schmaus 	if (!path)
259450246693SChristoph Hellwig 		goto out_module_put;
2595a56489d4SFlorian Schmaus 
2596a56489d4SFlorian Schmaus 	sb = kmalloc(sizeof(struct cache_sb), GFP_KERNEL);
2597a56489d4SFlorian Schmaus 	if (!sb)
259850246693SChristoph Hellwig 		goto out_free_path;
2599cafe5635SKent Overstreet 
260050246693SChristoph Hellwig 	ret = -EINVAL;
2601cafe5635SKent Overstreet 	err = "failed to open device";
2602cafe5635SKent Overstreet 	bdev = blkdev_get_by_path(strim(path),
2603cafe5635SKent Overstreet 				  FMODE_READ|FMODE_WRITE|FMODE_EXCL,
2604cafe5635SKent Overstreet 				  sb);
2605f59fce84SKent Overstreet 	if (IS_ERR(bdev)) {
2606a9dd53adSGabriel de Perthuis 		if (bdev == ERR_PTR(-EBUSY)) {
2607a9dd53adSGabriel de Perthuis 			bdev = lookup_bdev(strim(path));
2608789d21dbSJianjian Huo 			mutex_lock(&bch_register_lock);
2609a9dd53adSGabriel de Perthuis 			if (!IS_ERR(bdev) && bch_is_open(bdev))
2610a9dd53adSGabriel de Perthuis 				err = "device already registered";
2611a9dd53adSGabriel de Perthuis 			else
2612cafe5635SKent Overstreet 				err = "device busy";
2613789d21dbSJianjian Huo 			mutex_unlock(&bch_register_lock);
26144b758df2SJan Kara 			if (!IS_ERR(bdev))
26154b758df2SJan Kara 				bdput(bdev);
2616d7076f21SGabriel de Perthuis 			if (attr == &ksysfs_register_quiet)
261750246693SChristoph Hellwig 				goto done;
2618a9dd53adSGabriel de Perthuis 		}
261950246693SChristoph Hellwig 		goto out_free_sb;
2620f59fce84SKent Overstreet 	}
2621f59fce84SKent Overstreet 
2622f59fce84SKent Overstreet 	err = "failed to set blocksize";
2623f59fce84SKent Overstreet 	if (set_blocksize(bdev, 4096))
262450246693SChristoph Hellwig 		goto out_blkdev_put;
2625cafe5635SKent Overstreet 
2626cfa0c56dSChristoph Hellwig 	err = read_super(sb, bdev, &sb_disk);
2627cafe5635SKent Overstreet 	if (err)
262850246693SChristoph Hellwig 		goto out_blkdev_put;
2629cafe5635SKent Overstreet 
2630cc40daf9STang Junhui 	err = "failed to register device";
2631a58e88bfSColy Li 
2632a58e88bfSColy Li 	if (async_registration) {
26339e23ccf8SColy Li 		/* register in asynchronous way */
26349e23ccf8SColy Li 		struct async_reg_args *args =
26359e23ccf8SColy Li 			kzalloc(sizeof(struct async_reg_args), GFP_KERNEL);
26369e23ccf8SColy Li 
26379e23ccf8SColy Li 		if (!args) {
26389e23ccf8SColy Li 			ret = -ENOMEM;
26399e23ccf8SColy Li 			err = "cannot allocate memory";
26409e23ccf8SColy Li 			goto out_put_sb_page;
26419e23ccf8SColy Li 		}
26429e23ccf8SColy Li 
26439e23ccf8SColy Li 		args->path	= path;
26449e23ccf8SColy Li 		args->sb	= sb;
26459e23ccf8SColy Li 		args->sb_disk	= sb_disk;
26469e23ccf8SColy Li 		args->bdev	= bdev;
26479e23ccf8SColy Li 		register_device_aync(args);
26489e23ccf8SColy Li 		/* No wait and returns to user space */
26499e23ccf8SColy Li 		goto async_done;
26509e23ccf8SColy Li 	}
26519e23ccf8SColy Li 
26522903381fSKent Overstreet 	if (SB_IS_BDEV(sb)) {
2653cafe5635SKent Overstreet 		struct cached_dev *dc = kzalloc(sizeof(*dc), GFP_KERNEL);
26541fae7cf0SColy Li 
2655f59fce84SKent Overstreet 		if (!dc)
265650246693SChristoph Hellwig 			goto out_put_sb_page;
2657cafe5635SKent Overstreet 
26584fa03402SKent Overstreet 		mutex_lock(&bch_register_lock);
2659cfa0c56dSChristoph Hellwig 		ret = register_bdev(sb, sb_disk, bdev, dc);
26604fa03402SKent Overstreet 		mutex_unlock(&bch_register_lock);
2661bb6d355cSColy Li 		/* blkdev_put() will be called in cached_dev_free() */
2662fc8f19ccSChristoph Hellwig 		if (ret < 0)
2663fc8f19ccSChristoph Hellwig 			goto out_free_sb;
2664cafe5635SKent Overstreet 	} else {
2665cafe5635SKent Overstreet 		struct cache *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
26661fae7cf0SColy Li 
2667f59fce84SKent Overstreet 		if (!ca)
266850246693SChristoph Hellwig 			goto out_put_sb_page;
2669cafe5635SKent Overstreet 
2670bb6d355cSColy Li 		/* blkdev_put() will be called in bch_cache_release() */
2671cfa0c56dSChristoph Hellwig 		if (register_cache(sb, sb_disk, bdev, ca) != 0)
2672fc8f19ccSChristoph Hellwig 			goto out_free_sb;
267350246693SChristoph Hellwig 	}
267450246693SChristoph Hellwig 
267550246693SChristoph Hellwig done:
2676f59fce84SKent Overstreet 	kfree(sb);
2677f59fce84SKent Overstreet 	kfree(path);
2678f59fce84SKent Overstreet 	module_put(THIS_MODULE);
26799e23ccf8SColy Li async_done:
268050246693SChristoph Hellwig 	return size;
2681f59fce84SKent Overstreet 
268250246693SChristoph Hellwig out_put_sb_page:
2683cfa0c56dSChristoph Hellwig 	put_page(virt_to_page(sb_disk));
268450246693SChristoph Hellwig out_blkdev_put:
2685cafe5635SKent Overstreet 	blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
268650246693SChristoph Hellwig out_free_sb:
268750246693SChristoph Hellwig 	kfree(sb);
268850246693SChristoph Hellwig out_free_path:
268950246693SChristoph Hellwig 	kfree(path);
2690ae3cd299SColy Li 	path = NULL;
269150246693SChristoph Hellwig out_module_put:
269250246693SChristoph Hellwig 	module_put(THIS_MODULE);
269350246693SChristoph Hellwig out:
269446f5aa88SJoe Perches 	pr_info("error %s: %s\n", path?path:"", err);
269550246693SChristoph Hellwig 	return ret;
2696cafe5635SKent Overstreet }
2697cafe5635SKent Overstreet 
26980c277e21SColy Li 
26990c277e21SColy Li struct pdev {
27000c277e21SColy Li 	struct list_head list;
27010c277e21SColy Li 	struct cached_dev *dc;
27020c277e21SColy Li };
27030c277e21SColy Li 
27040c277e21SColy Li static ssize_t bch_pending_bdevs_cleanup(struct kobject *k,
27050c277e21SColy Li 					 struct kobj_attribute *attr,
27060c277e21SColy Li 					 const char *buffer,
27070c277e21SColy Li 					 size_t size)
27080c277e21SColy Li {
27090c277e21SColy Li 	LIST_HEAD(pending_devs);
27100c277e21SColy Li 	ssize_t ret = size;
27110c277e21SColy Li 	struct cached_dev *dc, *tdc;
27120c277e21SColy Li 	struct pdev *pdev, *tpdev;
27130c277e21SColy Li 	struct cache_set *c, *tc;
27140c277e21SColy Li 
27150c277e21SColy Li 	mutex_lock(&bch_register_lock);
27160c277e21SColy Li 	list_for_each_entry_safe(dc, tdc, &uncached_devices, list) {
27170c277e21SColy Li 		pdev = kmalloc(sizeof(struct pdev), GFP_KERNEL);
27180c277e21SColy Li 		if (!pdev)
27190c277e21SColy Li 			break;
27200c277e21SColy Li 		pdev->dc = dc;
27210c277e21SColy Li 		list_add(&pdev->list, &pending_devs);
27220c277e21SColy Li 	}
27230c277e21SColy Li 
27240c277e21SColy Li 	list_for_each_entry_safe(pdev, tpdev, &pending_devs, list) {
27250c277e21SColy Li 		list_for_each_entry_safe(c, tc, &bch_cache_sets, list) {
27260c277e21SColy Li 			char *pdev_set_uuid = pdev->dc->sb.set_uuid;
27270c277e21SColy Li 			char *set_uuid = c->sb.uuid;
27280c277e21SColy Li 
27290c277e21SColy Li 			if (!memcmp(pdev_set_uuid, set_uuid, 16)) {
27300c277e21SColy Li 				list_del(&pdev->list);
27310c277e21SColy Li 				kfree(pdev);
27320c277e21SColy Li 				break;
27330c277e21SColy Li 			}
27340c277e21SColy Li 		}
27350c277e21SColy Li 	}
27360c277e21SColy Li 	mutex_unlock(&bch_register_lock);
27370c277e21SColy Li 
27380c277e21SColy Li 	list_for_each_entry_safe(pdev, tpdev, &pending_devs, list) {
273946f5aa88SJoe Perches 		pr_info("delete pdev %p\n", pdev);
27400c277e21SColy Li 		list_del(&pdev->list);
27410c277e21SColy Li 		bcache_device_stop(&pdev->dc->disk);
27420c277e21SColy Li 		kfree(pdev);
27430c277e21SColy Li 	}
27440c277e21SColy Li 
27450c277e21SColy Li 	return ret;
27460c277e21SColy Li }
27470c277e21SColy Li 
2748cafe5635SKent Overstreet static int bcache_reboot(struct notifier_block *n, unsigned long code, void *x)
2749cafe5635SKent Overstreet {
2750a59ff6ccSColy Li 	if (bcache_is_reboot)
2751a59ff6ccSColy Li 		return NOTIFY_DONE;
2752a59ff6ccSColy Li 
2753cafe5635SKent Overstreet 	if (code == SYS_DOWN ||
2754cafe5635SKent Overstreet 	    code == SYS_HALT ||
2755cafe5635SKent Overstreet 	    code == SYS_POWER_OFF) {
2756cafe5635SKent Overstreet 		DEFINE_WAIT(wait);
2757cafe5635SKent Overstreet 		unsigned long start = jiffies;
2758cafe5635SKent Overstreet 		bool stopped = false;
2759cafe5635SKent Overstreet 
2760cafe5635SKent Overstreet 		struct cache_set *c, *tc;
2761cafe5635SKent Overstreet 		struct cached_dev *dc, *tdc;
2762cafe5635SKent Overstreet 
2763cafe5635SKent Overstreet 		mutex_lock(&bch_register_lock);
2764cafe5635SKent Overstreet 
2765a59ff6ccSColy Li 		if (bcache_is_reboot)
2766a59ff6ccSColy Li 			goto out;
2767a59ff6ccSColy Li 
2768a59ff6ccSColy Li 		/* New registration is rejected since now */
2769a59ff6ccSColy Li 		bcache_is_reboot = true;
2770a59ff6ccSColy Li 		/*
2771a59ff6ccSColy Li 		 * Make registering caller (if there is) on other CPU
2772a59ff6ccSColy Li 		 * core know bcache_is_reboot set to true earlier
2773a59ff6ccSColy Li 		 */
2774a59ff6ccSColy Li 		smp_mb();
2775a59ff6ccSColy Li 
2776cafe5635SKent Overstreet 		if (list_empty(&bch_cache_sets) &&
2777cafe5635SKent Overstreet 		    list_empty(&uncached_devices))
2778cafe5635SKent Overstreet 			goto out;
2779cafe5635SKent Overstreet 
2780a59ff6ccSColy Li 		mutex_unlock(&bch_register_lock);
2781a59ff6ccSColy Li 
278246f5aa88SJoe Perches 		pr_info("Stopping all devices:\n");
2783cafe5635SKent Overstreet 
2784a59ff6ccSColy Li 		/*
2785a59ff6ccSColy Li 		 * The reason bch_register_lock is not held to call
2786a59ff6ccSColy Li 		 * bch_cache_set_stop() and bcache_device_stop() is to
2787a59ff6ccSColy Li 		 * avoid potential deadlock during reboot, because cache
2788a59ff6ccSColy Li 		 * set or bcache device stopping process will acqurie
2789a59ff6ccSColy Li 		 * bch_register_lock too.
2790a59ff6ccSColy Li 		 *
2791a59ff6ccSColy Li 		 * We are safe here because bcache_is_reboot sets to
2792a59ff6ccSColy Li 		 * true already, register_bcache() will reject new
2793a59ff6ccSColy Li 		 * registration now. bcache_is_reboot also makes sure
2794a59ff6ccSColy Li 		 * bcache_reboot() won't be re-entered on by other thread,
2795a59ff6ccSColy Li 		 * so there is no race in following list iteration by
2796a59ff6ccSColy Li 		 * list_for_each_entry_safe().
2797a59ff6ccSColy Li 		 */
2798cafe5635SKent Overstreet 		list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
2799cafe5635SKent Overstreet 			bch_cache_set_stop(c);
2800cafe5635SKent Overstreet 
2801cafe5635SKent Overstreet 		list_for_each_entry_safe(dc, tdc, &uncached_devices, list)
2802cafe5635SKent Overstreet 			bcache_device_stop(&dc->disk);
2803cafe5635SKent Overstreet 
2804eb8cbb6dSColy Li 
2805eb8cbb6dSColy Li 		/*
2806eb8cbb6dSColy Li 		 * Give an early chance for other kthreads and
2807eb8cbb6dSColy Li 		 * kworkers to stop themselves
2808eb8cbb6dSColy Li 		 */
2809eb8cbb6dSColy Li 		schedule();
2810eb8cbb6dSColy Li 
2811cafe5635SKent Overstreet 		/* What's a condition variable? */
2812cafe5635SKent Overstreet 		while (1) {
2813eb8cbb6dSColy Li 			long timeout = start + 10 * HZ - jiffies;
2814cafe5635SKent Overstreet 
2815eb8cbb6dSColy Li 			mutex_lock(&bch_register_lock);
2816cafe5635SKent Overstreet 			stopped = list_empty(&bch_cache_sets) &&
2817cafe5635SKent Overstreet 				list_empty(&uncached_devices);
2818cafe5635SKent Overstreet 
2819cafe5635SKent Overstreet 			if (timeout < 0 || stopped)
2820cafe5635SKent Overstreet 				break;
2821cafe5635SKent Overstreet 
2822cafe5635SKent Overstreet 			prepare_to_wait(&unregister_wait, &wait,
2823cafe5635SKent Overstreet 					TASK_UNINTERRUPTIBLE);
2824cafe5635SKent Overstreet 
2825cafe5635SKent Overstreet 			mutex_unlock(&bch_register_lock);
2826cafe5635SKent Overstreet 			schedule_timeout(timeout);
2827cafe5635SKent Overstreet 		}
2828cafe5635SKent Overstreet 
2829cafe5635SKent Overstreet 		finish_wait(&unregister_wait, &wait);
2830cafe5635SKent Overstreet 
2831cafe5635SKent Overstreet 		if (stopped)
283246f5aa88SJoe Perches 			pr_info("All devices stopped\n");
2833cafe5635SKent Overstreet 		else
283446f5aa88SJoe Perches 			pr_notice("Timeout waiting for devices to be closed\n");
2835cafe5635SKent Overstreet out:
2836cafe5635SKent Overstreet 		mutex_unlock(&bch_register_lock);
2837cafe5635SKent Overstreet 	}
2838cafe5635SKent Overstreet 
2839cafe5635SKent Overstreet 	return NOTIFY_DONE;
2840cafe5635SKent Overstreet }
2841cafe5635SKent Overstreet 
2842cafe5635SKent Overstreet static struct notifier_block reboot = {
2843cafe5635SKent Overstreet 	.notifier_call	= bcache_reboot,
2844cafe5635SKent Overstreet 	.priority	= INT_MAX, /* before any real devices */
2845cafe5635SKent Overstreet };
2846cafe5635SKent Overstreet 
2847cafe5635SKent Overstreet static void bcache_exit(void)
2848cafe5635SKent Overstreet {
2849cafe5635SKent Overstreet 	bch_debug_exit();
2850cafe5635SKent Overstreet 	bch_request_exit();
2851cafe5635SKent Overstreet 	if (bcache_kobj)
2852cafe5635SKent Overstreet 		kobject_put(bcache_kobj);
2853cafe5635SKent Overstreet 	if (bcache_wq)
2854cafe5635SKent Overstreet 		destroy_workqueue(bcache_wq);
28550f843e65SGuoju Fang 	if (bch_journal_wq)
28560f843e65SGuoju Fang 		destroy_workqueue(bch_journal_wq);
28570f843e65SGuoju Fang 
28585c41c8a7SKent Overstreet 	if (bcache_major)
2859cafe5635SKent Overstreet 		unregister_blkdev(bcache_major, "bcache");
2860cafe5635SKent Overstreet 	unregister_reboot_notifier(&reboot);
2861330a4db8SLiang Chen 	mutex_destroy(&bch_register_lock);
2862cafe5635SKent Overstreet }
2863cafe5635SKent Overstreet 
28649aaf5165SColy Li /* Check and fixup module parameters */
28659aaf5165SColy Li static void check_module_parameters(void)
28669aaf5165SColy Li {
28679aaf5165SColy Li 	if (bch_cutoff_writeback_sync == 0)
28689aaf5165SColy Li 		bch_cutoff_writeback_sync = CUTOFF_WRITEBACK_SYNC;
28699aaf5165SColy Li 	else if (bch_cutoff_writeback_sync > CUTOFF_WRITEBACK_SYNC_MAX) {
287046f5aa88SJoe Perches 		pr_warn("set bch_cutoff_writeback_sync (%u) to max value %u\n",
28719aaf5165SColy Li 			bch_cutoff_writeback_sync, CUTOFF_WRITEBACK_SYNC_MAX);
28729aaf5165SColy Li 		bch_cutoff_writeback_sync = CUTOFF_WRITEBACK_SYNC_MAX;
28739aaf5165SColy Li 	}
28749aaf5165SColy Li 
28759aaf5165SColy Li 	if (bch_cutoff_writeback == 0)
28769aaf5165SColy Li 		bch_cutoff_writeback = CUTOFF_WRITEBACK;
28779aaf5165SColy Li 	else if (bch_cutoff_writeback > CUTOFF_WRITEBACK_MAX) {
287846f5aa88SJoe Perches 		pr_warn("set bch_cutoff_writeback (%u) to max value %u\n",
28799aaf5165SColy Li 			bch_cutoff_writeback, CUTOFF_WRITEBACK_MAX);
28809aaf5165SColy Li 		bch_cutoff_writeback = CUTOFF_WRITEBACK_MAX;
28819aaf5165SColy Li 	}
28829aaf5165SColy Li 
28839aaf5165SColy Li 	if (bch_cutoff_writeback > bch_cutoff_writeback_sync) {
288446f5aa88SJoe Perches 		pr_warn("set bch_cutoff_writeback (%u) to %u\n",
28859aaf5165SColy Li 			bch_cutoff_writeback, bch_cutoff_writeback_sync);
28869aaf5165SColy Li 		bch_cutoff_writeback = bch_cutoff_writeback_sync;
28879aaf5165SColy Li 	}
28889aaf5165SColy Li }
28899aaf5165SColy Li 
2890cafe5635SKent Overstreet static int __init bcache_init(void)
2891cafe5635SKent Overstreet {
2892cafe5635SKent Overstreet 	static const struct attribute *files[] = {
2893cafe5635SKent Overstreet 		&ksysfs_register.attr,
2894cafe5635SKent Overstreet 		&ksysfs_register_quiet.attr,
28950c277e21SColy Li 		&ksysfs_pendings_cleanup.attr,
2896cafe5635SKent Overstreet 		NULL
2897cafe5635SKent Overstreet 	};
2898cafe5635SKent Overstreet 
28999aaf5165SColy Li 	check_module_parameters();
29009aaf5165SColy Li 
2901cafe5635SKent Overstreet 	mutex_init(&bch_register_lock);
2902cafe5635SKent Overstreet 	init_waitqueue_head(&unregister_wait);
2903cafe5635SKent Overstreet 	register_reboot_notifier(&reboot);
2904cafe5635SKent Overstreet 
2905cafe5635SKent Overstreet 	bcache_major = register_blkdev(0, "bcache");
29062ecf0cdbSZheng Liu 	if (bcache_major < 0) {
29072ecf0cdbSZheng Liu 		unregister_reboot_notifier(&reboot);
2908330a4db8SLiang Chen 		mutex_destroy(&bch_register_lock);
2909cafe5635SKent Overstreet 		return bcache_major;
29102ecf0cdbSZheng Liu 	}
2911cafe5635SKent Overstreet 
291216c1fdf4SFlorian Schmaus 	bcache_wq = alloc_workqueue("bcache", WQ_MEM_RECLAIM, 0);
291316c1fdf4SFlorian Schmaus 	if (!bcache_wq)
291416c1fdf4SFlorian Schmaus 		goto err;
291516c1fdf4SFlorian Schmaus 
29160f843e65SGuoju Fang 	bch_journal_wq = alloc_workqueue("bch_journal", WQ_MEM_RECLAIM, 0);
29170f843e65SGuoju Fang 	if (!bch_journal_wq)
29180f843e65SGuoju Fang 		goto err;
29190f843e65SGuoju Fang 
292016c1fdf4SFlorian Schmaus 	bcache_kobj = kobject_create_and_add("bcache", fs_kobj);
292116c1fdf4SFlorian Schmaus 	if (!bcache_kobj)
292216c1fdf4SFlorian Schmaus 		goto err;
292316c1fdf4SFlorian Schmaus 
292416c1fdf4SFlorian Schmaus 	if (bch_request_init() ||
2925330a4db8SLiang Chen 	    sysfs_create_files(bcache_kobj, files))
2926cafe5635SKent Overstreet 		goto err;
2927cafe5635SKent Overstreet 
292891bafdf0SDongbo Cao 	bch_debug_init();
292978ac2107SColy Li 	closure_debug_init();
293078ac2107SColy Li 
2931a59ff6ccSColy Li 	bcache_is_reboot = false;
2932a59ff6ccSColy Li 
2933cafe5635SKent Overstreet 	return 0;
2934cafe5635SKent Overstreet err:
2935cafe5635SKent Overstreet 	bcache_exit();
2936cafe5635SKent Overstreet 	return -ENOMEM;
2937cafe5635SKent Overstreet }
2938cafe5635SKent Overstreet 
29399aaf5165SColy Li /*
29409aaf5165SColy Li  * Module hooks
29419aaf5165SColy Li  */
2942cafe5635SKent Overstreet module_exit(bcache_exit);
2943cafe5635SKent Overstreet module_init(bcache_init);
2944009673d0SColy Li 
29459aaf5165SColy Li module_param(bch_cutoff_writeback, uint, 0);
29469aaf5165SColy Li MODULE_PARM_DESC(bch_cutoff_writeback, "threshold to cutoff writeback");
29479aaf5165SColy Li 
29489aaf5165SColy Li module_param(bch_cutoff_writeback_sync, uint, 0);
29499aaf5165SColy Li MODULE_PARM_DESC(bch_cutoff_writeback_sync, "hard threshold to cutoff writeback");
29509aaf5165SColy Li 
2951009673d0SColy Li MODULE_DESCRIPTION("Bcache: a Linux block layer cache");
2952009673d0SColy Li MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>");
2953009673d0SColy Li MODULE_LICENSE("GPL");
2954