1cafe5635SKent Overstreet /* 2cafe5635SKent Overstreet * bcache setup/teardown code, and some metadata io - read a superblock and 3cafe5635SKent Overstreet * figure out what to do with it. 4cafe5635SKent Overstreet * 5cafe5635SKent Overstreet * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com> 6cafe5635SKent Overstreet * Copyright 2012 Google, Inc. 7cafe5635SKent Overstreet */ 8cafe5635SKent Overstreet 9cafe5635SKent Overstreet #include "bcache.h" 10cafe5635SKent Overstreet #include "btree.h" 11cafe5635SKent Overstreet #include "debug.h" 12cafe5635SKent Overstreet #include "request.h" 13279afbadSKent Overstreet #include "writeback.h" 14cafe5635SKent Overstreet 15c37511b8SKent Overstreet #include <linux/blkdev.h> 16cafe5635SKent Overstreet #include <linux/buffer_head.h> 17cafe5635SKent Overstreet #include <linux/debugfs.h> 18cafe5635SKent Overstreet #include <linux/genhd.h> 19cafe5635SKent Overstreet #include <linux/module.h> 20cafe5635SKent Overstreet #include <linux/random.h> 21cafe5635SKent Overstreet #include <linux/reboot.h> 22cafe5635SKent Overstreet #include <linux/sysfs.h> 23cafe5635SKent Overstreet 24cafe5635SKent Overstreet MODULE_LICENSE("GPL"); 25cafe5635SKent Overstreet MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>"); 26cafe5635SKent Overstreet 27cafe5635SKent Overstreet static const char bcache_magic[] = { 28cafe5635SKent Overstreet 0xc6, 0x85, 0x73, 0xf6, 0x4e, 0x1a, 0x45, 0xca, 29cafe5635SKent Overstreet 0x82, 0x65, 0xf5, 0x7f, 0x48, 0xba, 0x6d, 0x81 30cafe5635SKent Overstreet }; 31cafe5635SKent Overstreet 32cafe5635SKent Overstreet static const char invalid_uuid[] = { 33cafe5635SKent Overstreet 0xa0, 0x3e, 0xf8, 0xed, 0x3e, 0xe1, 0xb8, 0x78, 34cafe5635SKent Overstreet 0xc8, 0x50, 0xfc, 0x5e, 0xcb, 0x16, 0xcd, 0x99 35cafe5635SKent Overstreet }; 36cafe5635SKent Overstreet 37cafe5635SKent Overstreet /* Default is -1; we skip past it for struct cached_dev's cache mode */ 38cafe5635SKent Overstreet const char * const bch_cache_modes[] = { 39cafe5635SKent Overstreet "default", 40cafe5635SKent Overstreet "writethrough", 41cafe5635SKent Overstreet "writeback", 42cafe5635SKent Overstreet "writearound", 43cafe5635SKent Overstreet "none", 44cafe5635SKent Overstreet NULL 45cafe5635SKent Overstreet }; 46cafe5635SKent Overstreet 47cafe5635SKent Overstreet struct uuid_entry_v0 { 48cafe5635SKent Overstreet uint8_t uuid[16]; 49cafe5635SKent Overstreet uint8_t label[32]; 50cafe5635SKent Overstreet uint32_t first_reg; 51cafe5635SKent Overstreet uint32_t last_reg; 52cafe5635SKent Overstreet uint32_t invalidated; 53cafe5635SKent Overstreet uint32_t pad; 54cafe5635SKent Overstreet }; 55cafe5635SKent Overstreet 56cafe5635SKent Overstreet static struct kobject *bcache_kobj; 57cafe5635SKent Overstreet struct mutex bch_register_lock; 58cafe5635SKent Overstreet LIST_HEAD(bch_cache_sets); 59cafe5635SKent Overstreet static LIST_HEAD(uncached_devices); 60cafe5635SKent Overstreet 61cafe5635SKent Overstreet static int bcache_major, bcache_minor; 62cafe5635SKent Overstreet static wait_queue_head_t unregister_wait; 63cafe5635SKent Overstreet struct workqueue_struct *bcache_wq; 64cafe5635SKent Overstreet 65cafe5635SKent Overstreet #define BTREE_MAX_PAGES (256 * 1024 / PAGE_SIZE) 66cafe5635SKent Overstreet 67cafe5635SKent Overstreet static void bio_split_pool_free(struct bio_split_pool *p) 68cafe5635SKent Overstreet { 698ef74790SKent Overstreet if (p->bio_split_hook) 708ef74790SKent Overstreet mempool_destroy(p->bio_split_hook); 718ef74790SKent Overstreet 72cafe5635SKent Overstreet if (p->bio_split) 73cafe5635SKent Overstreet bioset_free(p->bio_split); 74cafe5635SKent Overstreet } 75cafe5635SKent Overstreet 76cafe5635SKent Overstreet static int bio_split_pool_init(struct bio_split_pool *p) 77cafe5635SKent Overstreet { 78cafe5635SKent Overstreet p->bio_split = bioset_create(4, 0); 79cafe5635SKent Overstreet if (!p->bio_split) 80cafe5635SKent Overstreet return -ENOMEM; 81cafe5635SKent Overstreet 82cafe5635SKent Overstreet p->bio_split_hook = mempool_create_kmalloc_pool(4, 83cafe5635SKent Overstreet sizeof(struct bio_split_hook)); 84cafe5635SKent Overstreet if (!p->bio_split_hook) 85cafe5635SKent Overstreet return -ENOMEM; 86cafe5635SKent Overstreet 87cafe5635SKent Overstreet return 0; 88cafe5635SKent Overstreet } 89cafe5635SKent Overstreet 90cafe5635SKent Overstreet /* Superblock */ 91cafe5635SKent Overstreet 92cafe5635SKent Overstreet static const char *read_super(struct cache_sb *sb, struct block_device *bdev, 93cafe5635SKent Overstreet struct page **res) 94cafe5635SKent Overstreet { 95cafe5635SKent Overstreet const char *err; 96cafe5635SKent Overstreet struct cache_sb *s; 97cafe5635SKent Overstreet struct buffer_head *bh = __bread(bdev, 1, SB_SIZE); 98cafe5635SKent Overstreet unsigned i; 99cafe5635SKent Overstreet 100cafe5635SKent Overstreet if (!bh) 101cafe5635SKent Overstreet return "IO error"; 102cafe5635SKent Overstreet 103cafe5635SKent Overstreet s = (struct cache_sb *) bh->b_data; 104cafe5635SKent Overstreet 105cafe5635SKent Overstreet sb->offset = le64_to_cpu(s->offset); 106cafe5635SKent Overstreet sb->version = le64_to_cpu(s->version); 107cafe5635SKent Overstreet 108cafe5635SKent Overstreet memcpy(sb->magic, s->magic, 16); 109cafe5635SKent Overstreet memcpy(sb->uuid, s->uuid, 16); 110cafe5635SKent Overstreet memcpy(sb->set_uuid, s->set_uuid, 16); 111cafe5635SKent Overstreet memcpy(sb->label, s->label, SB_LABEL_SIZE); 112cafe5635SKent Overstreet 113cafe5635SKent Overstreet sb->flags = le64_to_cpu(s->flags); 114cafe5635SKent Overstreet sb->seq = le64_to_cpu(s->seq); 115cafe5635SKent Overstreet sb->last_mount = le32_to_cpu(s->last_mount); 116cafe5635SKent Overstreet sb->first_bucket = le16_to_cpu(s->first_bucket); 117cafe5635SKent Overstreet sb->keys = le16_to_cpu(s->keys); 118cafe5635SKent Overstreet 119cafe5635SKent Overstreet for (i = 0; i < SB_JOURNAL_BUCKETS; i++) 120cafe5635SKent Overstreet sb->d[i] = le64_to_cpu(s->d[i]); 121cafe5635SKent Overstreet 122cafe5635SKent Overstreet pr_debug("read sb version %llu, flags %llu, seq %llu, journal size %u", 123cafe5635SKent Overstreet sb->version, sb->flags, sb->seq, sb->keys); 124cafe5635SKent Overstreet 125cafe5635SKent Overstreet err = "Not a bcache superblock"; 126cafe5635SKent Overstreet if (sb->offset != SB_SECTOR) 127cafe5635SKent Overstreet goto err; 128cafe5635SKent Overstreet 129cafe5635SKent Overstreet if (memcmp(sb->magic, bcache_magic, 16)) 130cafe5635SKent Overstreet goto err; 131cafe5635SKent Overstreet 132cafe5635SKent Overstreet err = "Too many journal buckets"; 133cafe5635SKent Overstreet if (sb->keys > SB_JOURNAL_BUCKETS) 134cafe5635SKent Overstreet goto err; 135cafe5635SKent Overstreet 136cafe5635SKent Overstreet err = "Bad checksum"; 137cafe5635SKent Overstreet if (s->csum != csum_set(s)) 138cafe5635SKent Overstreet goto err; 139cafe5635SKent Overstreet 140cafe5635SKent Overstreet err = "Bad UUID"; 141169ef1cfSKent Overstreet if (bch_is_zero(sb->uuid, 16)) 142cafe5635SKent Overstreet goto err; 143cafe5635SKent Overstreet 1448abb2a5dSKent Overstreet sb->block_size = le16_to_cpu(s->block_size); 1458abb2a5dSKent Overstreet 1468abb2a5dSKent Overstreet err = "Superblock block size smaller than device block size"; 1478abb2a5dSKent Overstreet if (sb->block_size << 9 < bdev_logical_block_size(bdev)) 1488abb2a5dSKent Overstreet goto err; 1498abb2a5dSKent Overstreet 1502903381fSKent Overstreet switch (sb->version) { 1512903381fSKent Overstreet case BCACHE_SB_VERSION_BDEV: 1522903381fSKent Overstreet sb->data_offset = BDEV_DATA_START_DEFAULT; 1532903381fSKent Overstreet break; 1542903381fSKent Overstreet case BCACHE_SB_VERSION_BDEV_WITH_OFFSET: 1552903381fSKent Overstreet sb->data_offset = le64_to_cpu(s->data_offset); 1562903381fSKent Overstreet 1572903381fSKent Overstreet err = "Bad data offset"; 1582903381fSKent Overstreet if (sb->data_offset < BDEV_DATA_START_DEFAULT) 159cafe5635SKent Overstreet goto err; 160cafe5635SKent Overstreet 1612903381fSKent Overstreet break; 1622903381fSKent Overstreet case BCACHE_SB_VERSION_CDEV: 1632903381fSKent Overstreet case BCACHE_SB_VERSION_CDEV_WITH_UUID: 1642903381fSKent Overstreet sb->nbuckets = le64_to_cpu(s->nbuckets); 1652903381fSKent Overstreet sb->block_size = le16_to_cpu(s->block_size); 1662903381fSKent Overstreet sb->bucket_size = le16_to_cpu(s->bucket_size); 1672903381fSKent Overstreet 1682903381fSKent Overstreet sb->nr_in_set = le16_to_cpu(s->nr_in_set); 1692903381fSKent Overstreet sb->nr_this_dev = le16_to_cpu(s->nr_this_dev); 170cafe5635SKent Overstreet 171cafe5635SKent Overstreet err = "Too many buckets"; 172cafe5635SKent Overstreet if (sb->nbuckets > LONG_MAX) 173cafe5635SKent Overstreet goto err; 174cafe5635SKent Overstreet 175cafe5635SKent Overstreet err = "Not enough buckets"; 176cafe5635SKent Overstreet if (sb->nbuckets < 1 << 7) 177cafe5635SKent Overstreet goto err; 178cafe5635SKent Overstreet 1792903381fSKent Overstreet err = "Bad block/bucket size"; 1802903381fSKent Overstreet if (!is_power_of_2(sb->block_size) || 1812903381fSKent Overstreet sb->block_size > PAGE_SECTORS || 1822903381fSKent Overstreet !is_power_of_2(sb->bucket_size) || 1832903381fSKent Overstreet sb->bucket_size < PAGE_SECTORS) 1842903381fSKent Overstreet goto err; 1852903381fSKent Overstreet 186cafe5635SKent Overstreet err = "Invalid superblock: device too small"; 187cafe5635SKent Overstreet if (get_capacity(bdev->bd_disk) < sb->bucket_size * sb->nbuckets) 188cafe5635SKent Overstreet goto err; 189cafe5635SKent Overstreet 190cafe5635SKent Overstreet err = "Bad UUID"; 191169ef1cfSKent Overstreet if (bch_is_zero(sb->set_uuid, 16)) 192cafe5635SKent Overstreet goto err; 193cafe5635SKent Overstreet 194cafe5635SKent Overstreet err = "Bad cache device number in set"; 195cafe5635SKent Overstreet if (!sb->nr_in_set || 196cafe5635SKent Overstreet sb->nr_in_set <= sb->nr_this_dev || 197cafe5635SKent Overstreet sb->nr_in_set > MAX_CACHES_PER_SET) 198cafe5635SKent Overstreet goto err; 199cafe5635SKent Overstreet 200cafe5635SKent Overstreet err = "Journal buckets not sequential"; 201cafe5635SKent Overstreet for (i = 0; i < sb->keys; i++) 202cafe5635SKent Overstreet if (sb->d[i] != sb->first_bucket + i) 203cafe5635SKent Overstreet goto err; 204cafe5635SKent Overstreet 205cafe5635SKent Overstreet err = "Too many journal buckets"; 206cafe5635SKent Overstreet if (sb->first_bucket + sb->keys > sb->nbuckets) 207cafe5635SKent Overstreet goto err; 208cafe5635SKent Overstreet 209cafe5635SKent Overstreet err = "Invalid superblock: first bucket comes before end of super"; 210cafe5635SKent Overstreet if (sb->first_bucket * sb->bucket_size < 16) 211cafe5635SKent Overstreet goto err; 2122903381fSKent Overstreet 2132903381fSKent Overstreet break; 2142903381fSKent Overstreet default: 2152903381fSKent Overstreet err = "Unsupported superblock version"; 2162903381fSKent Overstreet goto err; 2172903381fSKent Overstreet } 2182903381fSKent Overstreet 219cafe5635SKent Overstreet sb->last_mount = get_seconds(); 220cafe5635SKent Overstreet err = NULL; 221cafe5635SKent Overstreet 222cafe5635SKent Overstreet get_page(bh->b_page); 223cafe5635SKent Overstreet *res = bh->b_page; 224cafe5635SKent Overstreet err: 225cafe5635SKent Overstreet put_bh(bh); 226cafe5635SKent Overstreet return err; 227cafe5635SKent Overstreet } 228cafe5635SKent Overstreet 229cafe5635SKent Overstreet static void write_bdev_super_endio(struct bio *bio, int error) 230cafe5635SKent Overstreet { 231cafe5635SKent Overstreet struct cached_dev *dc = bio->bi_private; 232cafe5635SKent Overstreet /* XXX: error checking */ 233cafe5635SKent Overstreet 234cafe5635SKent Overstreet closure_put(&dc->sb_write.cl); 235cafe5635SKent Overstreet } 236cafe5635SKent Overstreet 237cafe5635SKent Overstreet static void __write_super(struct cache_sb *sb, struct bio *bio) 238cafe5635SKent Overstreet { 239cafe5635SKent Overstreet struct cache_sb *out = page_address(bio->bi_io_vec[0].bv_page); 240cafe5635SKent Overstreet unsigned i; 241cafe5635SKent Overstreet 242cafe5635SKent Overstreet bio->bi_sector = SB_SECTOR; 243cafe5635SKent Overstreet bio->bi_rw = REQ_SYNC|REQ_META; 244cafe5635SKent Overstreet bio->bi_size = SB_SIZE; 245169ef1cfSKent Overstreet bch_bio_map(bio, NULL); 246cafe5635SKent Overstreet 247cafe5635SKent Overstreet out->offset = cpu_to_le64(sb->offset); 248cafe5635SKent Overstreet out->version = cpu_to_le64(sb->version); 249cafe5635SKent Overstreet 250cafe5635SKent Overstreet memcpy(out->uuid, sb->uuid, 16); 251cafe5635SKent Overstreet memcpy(out->set_uuid, sb->set_uuid, 16); 252cafe5635SKent Overstreet memcpy(out->label, sb->label, SB_LABEL_SIZE); 253cafe5635SKent Overstreet 254cafe5635SKent Overstreet out->flags = cpu_to_le64(sb->flags); 255cafe5635SKent Overstreet out->seq = cpu_to_le64(sb->seq); 256cafe5635SKent Overstreet 257cafe5635SKent Overstreet out->last_mount = cpu_to_le32(sb->last_mount); 258cafe5635SKent Overstreet out->first_bucket = cpu_to_le16(sb->first_bucket); 259cafe5635SKent Overstreet out->keys = cpu_to_le16(sb->keys); 260cafe5635SKent Overstreet 261cafe5635SKent Overstreet for (i = 0; i < sb->keys; i++) 262cafe5635SKent Overstreet out->d[i] = cpu_to_le64(sb->d[i]); 263cafe5635SKent Overstreet 264cafe5635SKent Overstreet out->csum = csum_set(out); 265cafe5635SKent Overstreet 266cafe5635SKent Overstreet pr_debug("ver %llu, flags %llu, seq %llu", 267cafe5635SKent Overstreet sb->version, sb->flags, sb->seq); 268cafe5635SKent Overstreet 269cafe5635SKent Overstreet submit_bio(REQ_WRITE, bio); 270cafe5635SKent Overstreet } 271cafe5635SKent Overstreet 272cafe5635SKent Overstreet void bch_write_bdev_super(struct cached_dev *dc, struct closure *parent) 273cafe5635SKent Overstreet { 274cafe5635SKent Overstreet struct closure *cl = &dc->sb_write.cl; 275cafe5635SKent Overstreet struct bio *bio = &dc->sb_bio; 276cafe5635SKent Overstreet 277cafe5635SKent Overstreet closure_lock(&dc->sb_write, parent); 278cafe5635SKent Overstreet 279cafe5635SKent Overstreet bio_reset(bio); 280cafe5635SKent Overstreet bio->bi_bdev = dc->bdev; 281cafe5635SKent Overstreet bio->bi_end_io = write_bdev_super_endio; 282cafe5635SKent Overstreet bio->bi_private = dc; 283cafe5635SKent Overstreet 284cafe5635SKent Overstreet closure_get(cl); 285cafe5635SKent Overstreet __write_super(&dc->sb, bio); 286cafe5635SKent Overstreet 287cafe5635SKent Overstreet closure_return(cl); 288cafe5635SKent Overstreet } 289cafe5635SKent Overstreet 290cafe5635SKent Overstreet static void write_super_endio(struct bio *bio, int error) 291cafe5635SKent Overstreet { 292cafe5635SKent Overstreet struct cache *ca = bio->bi_private; 293cafe5635SKent Overstreet 294cafe5635SKent Overstreet bch_count_io_errors(ca, error, "writing superblock"); 295cafe5635SKent Overstreet closure_put(&ca->set->sb_write.cl); 296cafe5635SKent Overstreet } 297cafe5635SKent Overstreet 298cafe5635SKent Overstreet void bcache_write_super(struct cache_set *c) 299cafe5635SKent Overstreet { 300cafe5635SKent Overstreet struct closure *cl = &c->sb_write.cl; 301cafe5635SKent Overstreet struct cache *ca; 302cafe5635SKent Overstreet unsigned i; 303cafe5635SKent Overstreet 304cafe5635SKent Overstreet closure_lock(&c->sb_write, &c->cl); 305cafe5635SKent Overstreet 306cafe5635SKent Overstreet c->sb.seq++; 307cafe5635SKent Overstreet 308cafe5635SKent Overstreet for_each_cache(ca, c, i) { 309cafe5635SKent Overstreet struct bio *bio = &ca->sb_bio; 310cafe5635SKent Overstreet 3112903381fSKent Overstreet ca->sb.version = BCACHE_SB_VERSION_CDEV_WITH_UUID; 312cafe5635SKent Overstreet ca->sb.seq = c->sb.seq; 313cafe5635SKent Overstreet ca->sb.last_mount = c->sb.last_mount; 314cafe5635SKent Overstreet 315cafe5635SKent Overstreet SET_CACHE_SYNC(&ca->sb, CACHE_SYNC(&c->sb)); 316cafe5635SKent Overstreet 317cafe5635SKent Overstreet bio_reset(bio); 318cafe5635SKent Overstreet bio->bi_bdev = ca->bdev; 319cafe5635SKent Overstreet bio->bi_end_io = write_super_endio; 320cafe5635SKent Overstreet bio->bi_private = ca; 321cafe5635SKent Overstreet 322cafe5635SKent Overstreet closure_get(cl); 323cafe5635SKent Overstreet __write_super(&ca->sb, bio); 324cafe5635SKent Overstreet } 325cafe5635SKent Overstreet 326cafe5635SKent Overstreet closure_return(cl); 327cafe5635SKent Overstreet } 328cafe5635SKent Overstreet 329cafe5635SKent Overstreet /* UUID io */ 330cafe5635SKent Overstreet 331cafe5635SKent Overstreet static void uuid_endio(struct bio *bio, int error) 332cafe5635SKent Overstreet { 333cafe5635SKent Overstreet struct closure *cl = bio->bi_private; 334cafe5635SKent Overstreet struct cache_set *c = container_of(cl, struct cache_set, uuid_write.cl); 335cafe5635SKent Overstreet 336cafe5635SKent Overstreet cache_set_err_on(error, c, "accessing uuids"); 337cafe5635SKent Overstreet bch_bbio_free(bio, c); 338cafe5635SKent Overstreet closure_put(cl); 339cafe5635SKent Overstreet } 340cafe5635SKent Overstreet 341cafe5635SKent Overstreet static void uuid_io(struct cache_set *c, unsigned long rw, 342cafe5635SKent Overstreet struct bkey *k, struct closure *parent) 343cafe5635SKent Overstreet { 344cafe5635SKent Overstreet struct closure *cl = &c->uuid_write.cl; 345cafe5635SKent Overstreet struct uuid_entry *u; 346cafe5635SKent Overstreet unsigned i; 34785b1492eSKent Overstreet char buf[80]; 348cafe5635SKent Overstreet 349cafe5635SKent Overstreet BUG_ON(!parent); 350cafe5635SKent Overstreet closure_lock(&c->uuid_write, parent); 351cafe5635SKent Overstreet 352cafe5635SKent Overstreet for (i = 0; i < KEY_PTRS(k); i++) { 353cafe5635SKent Overstreet struct bio *bio = bch_bbio_alloc(c); 354cafe5635SKent Overstreet 355cafe5635SKent Overstreet bio->bi_rw = REQ_SYNC|REQ_META|rw; 356cafe5635SKent Overstreet bio->bi_size = KEY_SIZE(k) << 9; 357cafe5635SKent Overstreet 358cafe5635SKent Overstreet bio->bi_end_io = uuid_endio; 359cafe5635SKent Overstreet bio->bi_private = cl; 360169ef1cfSKent Overstreet bch_bio_map(bio, c->uuids); 361cafe5635SKent Overstreet 362cafe5635SKent Overstreet bch_submit_bbio(bio, c, k, i); 363cafe5635SKent Overstreet 364cafe5635SKent Overstreet if (!(rw & WRITE)) 365cafe5635SKent Overstreet break; 366cafe5635SKent Overstreet } 367cafe5635SKent Overstreet 36885b1492eSKent Overstreet bch_bkey_to_text(buf, sizeof(buf), k); 36985b1492eSKent Overstreet pr_debug("%s UUIDs at %s", rw & REQ_WRITE ? "wrote" : "read", buf); 370cafe5635SKent Overstreet 371cafe5635SKent Overstreet for (u = c->uuids; u < c->uuids + c->nr_uuids; u++) 372169ef1cfSKent Overstreet if (!bch_is_zero(u->uuid, 16)) 373cafe5635SKent Overstreet pr_debug("Slot %zi: %pU: %s: 1st: %u last: %u inv: %u", 374cafe5635SKent Overstreet u - c->uuids, u->uuid, u->label, 375cafe5635SKent Overstreet u->first_reg, u->last_reg, u->invalidated); 376cafe5635SKent Overstreet 377cafe5635SKent Overstreet closure_return(cl); 378cafe5635SKent Overstreet } 379cafe5635SKent Overstreet 380cafe5635SKent Overstreet static char *uuid_read(struct cache_set *c, struct jset *j, struct closure *cl) 381cafe5635SKent Overstreet { 382cafe5635SKent Overstreet struct bkey *k = &j->uuid_bucket; 383cafe5635SKent Overstreet 384cafe5635SKent Overstreet if (__bch_ptr_invalid(c, 1, k)) 385cafe5635SKent Overstreet return "bad uuid pointer"; 386cafe5635SKent Overstreet 387cafe5635SKent Overstreet bkey_copy(&c->uuid_bucket, k); 388cafe5635SKent Overstreet uuid_io(c, READ_SYNC, k, cl); 389cafe5635SKent Overstreet 390cafe5635SKent Overstreet if (j->version < BCACHE_JSET_VERSION_UUIDv1) { 391cafe5635SKent Overstreet struct uuid_entry_v0 *u0 = (void *) c->uuids; 392cafe5635SKent Overstreet struct uuid_entry *u1 = (void *) c->uuids; 393cafe5635SKent Overstreet int i; 394cafe5635SKent Overstreet 395cafe5635SKent Overstreet closure_sync(cl); 396cafe5635SKent Overstreet 397cafe5635SKent Overstreet /* 398cafe5635SKent Overstreet * Since the new uuid entry is bigger than the old, we have to 399cafe5635SKent Overstreet * convert starting at the highest memory address and work down 400cafe5635SKent Overstreet * in order to do it in place 401cafe5635SKent Overstreet */ 402cafe5635SKent Overstreet 403cafe5635SKent Overstreet for (i = c->nr_uuids - 1; 404cafe5635SKent Overstreet i >= 0; 405cafe5635SKent Overstreet --i) { 406cafe5635SKent Overstreet memcpy(u1[i].uuid, u0[i].uuid, 16); 407cafe5635SKent Overstreet memcpy(u1[i].label, u0[i].label, 32); 408cafe5635SKent Overstreet 409cafe5635SKent Overstreet u1[i].first_reg = u0[i].first_reg; 410cafe5635SKent Overstreet u1[i].last_reg = u0[i].last_reg; 411cafe5635SKent Overstreet u1[i].invalidated = u0[i].invalidated; 412cafe5635SKent Overstreet 413cafe5635SKent Overstreet u1[i].flags = 0; 414cafe5635SKent Overstreet u1[i].sectors = 0; 415cafe5635SKent Overstreet } 416cafe5635SKent Overstreet } 417cafe5635SKent Overstreet 418cafe5635SKent Overstreet return NULL; 419cafe5635SKent Overstreet } 420cafe5635SKent Overstreet 421cafe5635SKent Overstreet static int __uuid_write(struct cache_set *c) 422cafe5635SKent Overstreet { 423cafe5635SKent Overstreet BKEY_PADDED(key) k; 424cafe5635SKent Overstreet struct closure cl; 425cafe5635SKent Overstreet closure_init_stack(&cl); 426cafe5635SKent Overstreet 427cafe5635SKent Overstreet lockdep_assert_held(&bch_register_lock); 428cafe5635SKent Overstreet 429cafe5635SKent Overstreet if (bch_bucket_alloc_set(c, WATERMARK_METADATA, &k.key, 1, &cl)) 430cafe5635SKent Overstreet return 1; 431cafe5635SKent Overstreet 432cafe5635SKent Overstreet SET_KEY_SIZE(&k.key, c->sb.bucket_size); 433cafe5635SKent Overstreet uuid_io(c, REQ_WRITE, &k.key, &cl); 434cafe5635SKent Overstreet closure_sync(&cl); 435cafe5635SKent Overstreet 436cafe5635SKent Overstreet bkey_copy(&c->uuid_bucket, &k.key); 437cafe5635SKent Overstreet __bkey_put(c, &k.key); 438cafe5635SKent Overstreet return 0; 439cafe5635SKent Overstreet } 440cafe5635SKent Overstreet 441cafe5635SKent Overstreet int bch_uuid_write(struct cache_set *c) 442cafe5635SKent Overstreet { 443cafe5635SKent Overstreet int ret = __uuid_write(c); 444cafe5635SKent Overstreet 445cafe5635SKent Overstreet if (!ret) 446cafe5635SKent Overstreet bch_journal_meta(c, NULL); 447cafe5635SKent Overstreet 448cafe5635SKent Overstreet return ret; 449cafe5635SKent Overstreet } 450cafe5635SKent Overstreet 451cafe5635SKent Overstreet static struct uuid_entry *uuid_find(struct cache_set *c, const char *uuid) 452cafe5635SKent Overstreet { 453cafe5635SKent Overstreet struct uuid_entry *u; 454cafe5635SKent Overstreet 455cafe5635SKent Overstreet for (u = c->uuids; 456cafe5635SKent Overstreet u < c->uuids + c->nr_uuids; u++) 457cafe5635SKent Overstreet if (!memcmp(u->uuid, uuid, 16)) 458cafe5635SKent Overstreet return u; 459cafe5635SKent Overstreet 460cafe5635SKent Overstreet return NULL; 461cafe5635SKent Overstreet } 462cafe5635SKent Overstreet 463cafe5635SKent Overstreet static struct uuid_entry *uuid_find_empty(struct cache_set *c) 464cafe5635SKent Overstreet { 465cafe5635SKent Overstreet static const char zero_uuid[16] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"; 466cafe5635SKent Overstreet return uuid_find(c, zero_uuid); 467cafe5635SKent Overstreet } 468cafe5635SKent Overstreet 469cafe5635SKent Overstreet /* 470cafe5635SKent Overstreet * Bucket priorities/gens: 471cafe5635SKent Overstreet * 472cafe5635SKent Overstreet * For each bucket, we store on disk its 473cafe5635SKent Overstreet * 8 bit gen 474cafe5635SKent Overstreet * 16 bit priority 475cafe5635SKent Overstreet * 476cafe5635SKent Overstreet * See alloc.c for an explanation of the gen. The priority is used to implement 477cafe5635SKent Overstreet * lru (and in the future other) cache replacement policies; for most purposes 478cafe5635SKent Overstreet * it's just an opaque integer. 479cafe5635SKent Overstreet * 480cafe5635SKent Overstreet * The gens and the priorities don't have a whole lot to do with each other, and 481cafe5635SKent Overstreet * it's actually the gens that must be written out at specific times - it's no 482cafe5635SKent Overstreet * big deal if the priorities don't get written, if we lose them we just reuse 483cafe5635SKent Overstreet * buckets in suboptimal order. 484cafe5635SKent Overstreet * 485cafe5635SKent Overstreet * On disk they're stored in a packed array, and in as many buckets are required 486cafe5635SKent Overstreet * to fit them all. The buckets we use to store them form a list; the journal 487cafe5635SKent Overstreet * header points to the first bucket, the first bucket points to the second 488cafe5635SKent Overstreet * bucket, et cetera. 489cafe5635SKent Overstreet * 490cafe5635SKent Overstreet * This code is used by the allocation code; periodically (whenever it runs out 491cafe5635SKent Overstreet * of buckets to allocate from) the allocation code will invalidate some 492cafe5635SKent Overstreet * buckets, but it can't use those buckets until their new gens are safely on 493cafe5635SKent Overstreet * disk. 494cafe5635SKent Overstreet */ 495cafe5635SKent Overstreet 496cafe5635SKent Overstreet static void prio_endio(struct bio *bio, int error) 497cafe5635SKent Overstreet { 498cafe5635SKent Overstreet struct cache *ca = bio->bi_private; 499cafe5635SKent Overstreet 500cafe5635SKent Overstreet cache_set_err_on(error, ca->set, "accessing priorities"); 501cafe5635SKent Overstreet bch_bbio_free(bio, ca->set); 502cafe5635SKent Overstreet closure_put(&ca->prio); 503cafe5635SKent Overstreet } 504cafe5635SKent Overstreet 505cafe5635SKent Overstreet static void prio_io(struct cache *ca, uint64_t bucket, unsigned long rw) 506cafe5635SKent Overstreet { 507cafe5635SKent Overstreet struct closure *cl = &ca->prio; 508cafe5635SKent Overstreet struct bio *bio = bch_bbio_alloc(ca->set); 509cafe5635SKent Overstreet 510cafe5635SKent Overstreet closure_init_stack(cl); 511cafe5635SKent Overstreet 512cafe5635SKent Overstreet bio->bi_sector = bucket * ca->sb.bucket_size; 513cafe5635SKent Overstreet bio->bi_bdev = ca->bdev; 514cafe5635SKent Overstreet bio->bi_rw = REQ_SYNC|REQ_META|rw; 515cafe5635SKent Overstreet bio->bi_size = bucket_bytes(ca); 516cafe5635SKent Overstreet 517cafe5635SKent Overstreet bio->bi_end_io = prio_endio; 518cafe5635SKent Overstreet bio->bi_private = ca; 519169ef1cfSKent Overstreet bch_bio_map(bio, ca->disk_buckets); 520cafe5635SKent Overstreet 521cafe5635SKent Overstreet closure_bio_submit(bio, &ca->prio, ca); 522cafe5635SKent Overstreet closure_sync(cl); 523cafe5635SKent Overstreet } 524cafe5635SKent Overstreet 525cafe5635SKent Overstreet #define buckets_free(c) "free %zu, free_inc %zu, unused %zu", \ 526cafe5635SKent Overstreet fifo_used(&c->free), fifo_used(&c->free_inc), fifo_used(&c->unused) 527cafe5635SKent Overstreet 528cafe5635SKent Overstreet void bch_prio_write(struct cache *ca) 529cafe5635SKent Overstreet { 530cafe5635SKent Overstreet int i; 531cafe5635SKent Overstreet struct bucket *b; 532cafe5635SKent Overstreet struct closure cl; 533cafe5635SKent Overstreet 534cafe5635SKent Overstreet closure_init_stack(&cl); 535cafe5635SKent Overstreet 536cafe5635SKent Overstreet lockdep_assert_held(&ca->set->bucket_lock); 537cafe5635SKent Overstreet 538cafe5635SKent Overstreet for (b = ca->buckets; 539cafe5635SKent Overstreet b < ca->buckets + ca->sb.nbuckets; b++) 540cafe5635SKent Overstreet b->disk_gen = b->gen; 541cafe5635SKent Overstreet 542cafe5635SKent Overstreet ca->disk_buckets->seq++; 543cafe5635SKent Overstreet 544cafe5635SKent Overstreet atomic_long_add(ca->sb.bucket_size * prio_buckets(ca), 545cafe5635SKent Overstreet &ca->meta_sectors_written); 546cafe5635SKent Overstreet 547cafe5635SKent Overstreet pr_debug("free %zu, free_inc %zu, unused %zu", fifo_used(&ca->free), 548cafe5635SKent Overstreet fifo_used(&ca->free_inc), fifo_used(&ca->unused)); 549cafe5635SKent Overstreet 550cafe5635SKent Overstreet for (i = prio_buckets(ca) - 1; i >= 0; --i) { 551cafe5635SKent Overstreet long bucket; 552cafe5635SKent Overstreet struct prio_set *p = ca->disk_buckets; 553b1a67b0fSKent Overstreet struct bucket_disk *d = p->data; 554b1a67b0fSKent Overstreet struct bucket_disk *end = d + prios_per_bucket(ca); 555cafe5635SKent Overstreet 556cafe5635SKent Overstreet for (b = ca->buckets + i * prios_per_bucket(ca); 557cafe5635SKent Overstreet b < ca->buckets + ca->sb.nbuckets && d < end; 558cafe5635SKent Overstreet b++, d++) { 559cafe5635SKent Overstreet d->prio = cpu_to_le16(b->prio); 560cafe5635SKent Overstreet d->gen = b->gen; 561cafe5635SKent Overstreet } 562cafe5635SKent Overstreet 563cafe5635SKent Overstreet p->next_bucket = ca->prio_buckets[i + 1]; 564cafe5635SKent Overstreet p->magic = pset_magic(ca); 565169ef1cfSKent Overstreet p->csum = bch_crc64(&p->magic, bucket_bytes(ca) - 8); 566cafe5635SKent Overstreet 567cafe5635SKent Overstreet bucket = bch_bucket_alloc(ca, WATERMARK_PRIO, &cl); 568cafe5635SKent Overstreet BUG_ON(bucket == -1); 569cafe5635SKent Overstreet 570cafe5635SKent Overstreet mutex_unlock(&ca->set->bucket_lock); 571cafe5635SKent Overstreet prio_io(ca, bucket, REQ_WRITE); 572cafe5635SKent Overstreet mutex_lock(&ca->set->bucket_lock); 573cafe5635SKent Overstreet 574cafe5635SKent Overstreet ca->prio_buckets[i] = bucket; 575cafe5635SKent Overstreet atomic_dec_bug(&ca->buckets[bucket].pin); 576cafe5635SKent Overstreet } 577cafe5635SKent Overstreet 578cafe5635SKent Overstreet mutex_unlock(&ca->set->bucket_lock); 579cafe5635SKent Overstreet 580cafe5635SKent Overstreet bch_journal_meta(ca->set, &cl); 581cafe5635SKent Overstreet closure_sync(&cl); 582cafe5635SKent Overstreet 583cafe5635SKent Overstreet mutex_lock(&ca->set->bucket_lock); 584cafe5635SKent Overstreet 585cafe5635SKent Overstreet ca->need_save_prio = 0; 586cafe5635SKent Overstreet 587cafe5635SKent Overstreet /* 588cafe5635SKent Overstreet * Don't want the old priorities to get garbage collected until after we 589cafe5635SKent Overstreet * finish writing the new ones, and they're journalled 590cafe5635SKent Overstreet */ 591cafe5635SKent Overstreet for (i = 0; i < prio_buckets(ca); i++) 592cafe5635SKent Overstreet ca->prio_last_buckets[i] = ca->prio_buckets[i]; 593cafe5635SKent Overstreet } 594cafe5635SKent Overstreet 595cafe5635SKent Overstreet static void prio_read(struct cache *ca, uint64_t bucket) 596cafe5635SKent Overstreet { 597cafe5635SKent Overstreet struct prio_set *p = ca->disk_buckets; 598cafe5635SKent Overstreet struct bucket_disk *d = p->data + prios_per_bucket(ca), *end = d; 599cafe5635SKent Overstreet struct bucket *b; 600cafe5635SKent Overstreet unsigned bucket_nr = 0; 601cafe5635SKent Overstreet 602cafe5635SKent Overstreet for (b = ca->buckets; 603cafe5635SKent Overstreet b < ca->buckets + ca->sb.nbuckets; 604cafe5635SKent Overstreet b++, d++) { 605cafe5635SKent Overstreet if (d == end) { 606cafe5635SKent Overstreet ca->prio_buckets[bucket_nr] = bucket; 607cafe5635SKent Overstreet ca->prio_last_buckets[bucket_nr] = bucket; 608cafe5635SKent Overstreet bucket_nr++; 609cafe5635SKent Overstreet 610cafe5635SKent Overstreet prio_io(ca, bucket, READ_SYNC); 611cafe5635SKent Overstreet 612169ef1cfSKent Overstreet if (p->csum != bch_crc64(&p->magic, bucket_bytes(ca) - 8)) 613cafe5635SKent Overstreet pr_warn("bad csum reading priorities"); 614cafe5635SKent Overstreet 615cafe5635SKent Overstreet if (p->magic != pset_magic(ca)) 616cafe5635SKent Overstreet pr_warn("bad magic reading priorities"); 617cafe5635SKent Overstreet 618cafe5635SKent Overstreet bucket = p->next_bucket; 619cafe5635SKent Overstreet d = p->data; 620cafe5635SKent Overstreet } 621cafe5635SKent Overstreet 622cafe5635SKent Overstreet b->prio = le16_to_cpu(d->prio); 623cafe5635SKent Overstreet b->gen = b->disk_gen = b->last_gc = b->gc_gen = d->gen; 624cafe5635SKent Overstreet } 625cafe5635SKent Overstreet } 626cafe5635SKent Overstreet 627cafe5635SKent Overstreet /* Bcache device */ 628cafe5635SKent Overstreet 629cafe5635SKent Overstreet static int open_dev(struct block_device *b, fmode_t mode) 630cafe5635SKent Overstreet { 631cafe5635SKent Overstreet struct bcache_device *d = b->bd_disk->private_data; 632cafe5635SKent Overstreet if (atomic_read(&d->closing)) 633cafe5635SKent Overstreet return -ENXIO; 634cafe5635SKent Overstreet 635cafe5635SKent Overstreet closure_get(&d->cl); 636cafe5635SKent Overstreet return 0; 637cafe5635SKent Overstreet } 638cafe5635SKent Overstreet 639867e1162SEmil Goode static void release_dev(struct gendisk *b, fmode_t mode) 640cafe5635SKent Overstreet { 641cafe5635SKent Overstreet struct bcache_device *d = b->private_data; 642cafe5635SKent Overstreet closure_put(&d->cl); 643cafe5635SKent Overstreet } 644cafe5635SKent Overstreet 645cafe5635SKent Overstreet static int ioctl_dev(struct block_device *b, fmode_t mode, 646cafe5635SKent Overstreet unsigned int cmd, unsigned long arg) 647cafe5635SKent Overstreet { 648cafe5635SKent Overstreet struct bcache_device *d = b->bd_disk->private_data; 649cafe5635SKent Overstreet return d->ioctl(d, mode, cmd, arg); 650cafe5635SKent Overstreet } 651cafe5635SKent Overstreet 652cafe5635SKent Overstreet static const struct block_device_operations bcache_ops = { 653cafe5635SKent Overstreet .open = open_dev, 654cafe5635SKent Overstreet .release = release_dev, 655cafe5635SKent Overstreet .ioctl = ioctl_dev, 656cafe5635SKent Overstreet .owner = THIS_MODULE, 657cafe5635SKent Overstreet }; 658cafe5635SKent Overstreet 659cafe5635SKent Overstreet void bcache_device_stop(struct bcache_device *d) 660cafe5635SKent Overstreet { 661cafe5635SKent Overstreet if (!atomic_xchg(&d->closing, 1)) 662cafe5635SKent Overstreet closure_queue(&d->cl); 663cafe5635SKent Overstreet } 664cafe5635SKent Overstreet 665ee668506SKent Overstreet static void bcache_device_unlink(struct bcache_device *d) 666ee668506SKent Overstreet { 667ee668506SKent Overstreet unsigned i; 668ee668506SKent Overstreet struct cache *ca; 669ee668506SKent Overstreet 670ee668506SKent Overstreet sysfs_remove_link(&d->c->kobj, d->name); 671ee668506SKent Overstreet sysfs_remove_link(&d->kobj, "cache"); 672ee668506SKent Overstreet 673ee668506SKent Overstreet for_each_cache(ca, d->c, i) 674ee668506SKent Overstreet bd_unlink_disk_holder(ca->bdev, d->disk); 675ee668506SKent Overstreet } 676ee668506SKent Overstreet 677ee668506SKent Overstreet static void bcache_device_link(struct bcache_device *d, struct cache_set *c, 678ee668506SKent Overstreet const char *name) 679ee668506SKent Overstreet { 680ee668506SKent Overstreet unsigned i; 681ee668506SKent Overstreet struct cache *ca; 682ee668506SKent Overstreet 683ee668506SKent Overstreet for_each_cache(ca, d->c, i) 684ee668506SKent Overstreet bd_link_disk_holder(ca->bdev, d->disk); 685ee668506SKent Overstreet 686ee668506SKent Overstreet snprintf(d->name, BCACHEDEVNAME_SIZE, 687ee668506SKent Overstreet "%s%u", name, d->id); 688ee668506SKent Overstreet 689ee668506SKent Overstreet WARN(sysfs_create_link(&d->kobj, &c->kobj, "cache") || 690ee668506SKent Overstreet sysfs_create_link(&c->kobj, &d->kobj, d->name), 691ee668506SKent Overstreet "Couldn't create device <-> cache set symlinks"); 692ee668506SKent Overstreet } 693ee668506SKent Overstreet 694cafe5635SKent Overstreet static void bcache_device_detach(struct bcache_device *d) 695cafe5635SKent Overstreet { 696cafe5635SKent Overstreet lockdep_assert_held(&bch_register_lock); 697cafe5635SKent Overstreet 698cafe5635SKent Overstreet if (atomic_read(&d->detaching)) { 699cafe5635SKent Overstreet struct uuid_entry *u = d->c->uuids + d->id; 700cafe5635SKent Overstreet 701cafe5635SKent Overstreet SET_UUID_FLASH_ONLY(u, 0); 702cafe5635SKent Overstreet memcpy(u->uuid, invalid_uuid, 16); 703cafe5635SKent Overstreet u->invalidated = cpu_to_le32(get_seconds()); 704cafe5635SKent Overstreet bch_uuid_write(d->c); 705cafe5635SKent Overstreet 706cafe5635SKent Overstreet atomic_set(&d->detaching, 0); 707cafe5635SKent Overstreet } 708cafe5635SKent Overstreet 709ee668506SKent Overstreet bcache_device_unlink(d); 710ee668506SKent Overstreet 711cafe5635SKent Overstreet d->c->devices[d->id] = NULL; 712cafe5635SKent Overstreet closure_put(&d->c->caching); 713cafe5635SKent Overstreet d->c = NULL; 714cafe5635SKent Overstreet } 715cafe5635SKent Overstreet 716cafe5635SKent Overstreet static void bcache_device_attach(struct bcache_device *d, struct cache_set *c, 717cafe5635SKent Overstreet unsigned id) 718cafe5635SKent Overstreet { 719cafe5635SKent Overstreet BUG_ON(test_bit(CACHE_SET_STOPPING, &c->flags)); 720cafe5635SKent Overstreet 721cafe5635SKent Overstreet d->id = id; 722cafe5635SKent Overstreet d->c = c; 723cafe5635SKent Overstreet c->devices[id] = d; 724cafe5635SKent Overstreet 725cafe5635SKent Overstreet closure_get(&c->caching); 726cafe5635SKent Overstreet } 727cafe5635SKent Overstreet 728cafe5635SKent Overstreet static void bcache_device_free(struct bcache_device *d) 729cafe5635SKent Overstreet { 730cafe5635SKent Overstreet lockdep_assert_held(&bch_register_lock); 731cafe5635SKent Overstreet 732cafe5635SKent Overstreet pr_info("%s stopped", d->disk->disk_name); 733cafe5635SKent Overstreet 734cafe5635SKent Overstreet if (d->c) 735cafe5635SKent Overstreet bcache_device_detach(d); 736f59fce84SKent Overstreet if (d->disk && d->disk->flags & GENHD_FL_UP) 737cafe5635SKent Overstreet del_gendisk(d->disk); 738cafe5635SKent Overstreet if (d->disk && d->disk->queue) 739cafe5635SKent Overstreet blk_cleanup_queue(d->disk->queue); 740cafe5635SKent Overstreet if (d->disk) 741cafe5635SKent Overstreet put_disk(d->disk); 742cafe5635SKent Overstreet 743cafe5635SKent Overstreet bio_split_pool_free(&d->bio_split_hook); 744cafe5635SKent Overstreet if (d->unaligned_bvec) 745cafe5635SKent Overstreet mempool_destroy(d->unaligned_bvec); 746cafe5635SKent Overstreet if (d->bio_split) 747cafe5635SKent Overstreet bioset_free(d->bio_split); 748279afbadSKent Overstreet if (is_vmalloc_addr(d->stripe_sectors_dirty)) 749279afbadSKent Overstreet vfree(d->stripe_sectors_dirty); 750279afbadSKent Overstreet else 751279afbadSKent Overstreet kfree(d->stripe_sectors_dirty); 752cafe5635SKent Overstreet 753cafe5635SKent Overstreet closure_debug_destroy(&d->cl); 754cafe5635SKent Overstreet } 755cafe5635SKent Overstreet 756279afbadSKent Overstreet static int bcache_device_init(struct bcache_device *d, unsigned block_size, 757279afbadSKent Overstreet sector_t sectors) 758cafe5635SKent Overstreet { 759cafe5635SKent Overstreet struct request_queue *q; 760279afbadSKent Overstreet size_t n; 761279afbadSKent Overstreet 762279afbadSKent Overstreet if (!d->stripe_size_bits) 763279afbadSKent Overstreet d->stripe_size_bits = 31; 764279afbadSKent Overstreet 765279afbadSKent Overstreet d->nr_stripes = round_up(sectors, 1 << d->stripe_size_bits) >> 766279afbadSKent Overstreet d->stripe_size_bits; 767279afbadSKent Overstreet 768279afbadSKent Overstreet if (!d->nr_stripes || d->nr_stripes > SIZE_MAX / sizeof(atomic_t)) 769279afbadSKent Overstreet return -ENOMEM; 770279afbadSKent Overstreet 771279afbadSKent Overstreet n = d->nr_stripes * sizeof(atomic_t); 772279afbadSKent Overstreet d->stripe_sectors_dirty = n < PAGE_SIZE << 6 773279afbadSKent Overstreet ? kzalloc(n, GFP_KERNEL) 774279afbadSKent Overstreet : vzalloc(n); 775279afbadSKent Overstreet if (!d->stripe_sectors_dirty) 776279afbadSKent Overstreet return -ENOMEM; 777cafe5635SKent Overstreet 778cafe5635SKent Overstreet if (!(d->bio_split = bioset_create(4, offsetof(struct bbio, bio))) || 779cafe5635SKent Overstreet !(d->unaligned_bvec = mempool_create_kmalloc_pool(1, 780cafe5635SKent Overstreet sizeof(struct bio_vec) * BIO_MAX_PAGES)) || 781f59fce84SKent Overstreet bio_split_pool_init(&d->bio_split_hook) || 782f59fce84SKent Overstreet !(d->disk = alloc_disk(1)) || 783f59fce84SKent Overstreet !(q = blk_alloc_queue(GFP_KERNEL))) 784cafe5635SKent Overstreet return -ENOMEM; 785cafe5635SKent Overstreet 786279afbadSKent Overstreet set_capacity(d->disk, sectors); 787cafe5635SKent Overstreet snprintf(d->disk->disk_name, DISK_NAME_LEN, "bcache%i", bcache_minor); 788cafe5635SKent Overstreet 789cafe5635SKent Overstreet d->disk->major = bcache_major; 790cafe5635SKent Overstreet d->disk->first_minor = bcache_minor++; 791cafe5635SKent Overstreet d->disk->fops = &bcache_ops; 792cafe5635SKent Overstreet d->disk->private_data = d; 793cafe5635SKent Overstreet 794cafe5635SKent Overstreet blk_queue_make_request(q, NULL); 795cafe5635SKent Overstreet d->disk->queue = q; 796cafe5635SKent Overstreet q->queuedata = d; 797cafe5635SKent Overstreet q->backing_dev_info.congested_data = d; 798cafe5635SKent Overstreet q->limits.max_hw_sectors = UINT_MAX; 799cafe5635SKent Overstreet q->limits.max_sectors = UINT_MAX; 800cafe5635SKent Overstreet q->limits.max_segment_size = UINT_MAX; 801cafe5635SKent Overstreet q->limits.max_segments = BIO_MAX_PAGES; 802cafe5635SKent Overstreet q->limits.max_discard_sectors = UINT_MAX; 803cafe5635SKent Overstreet q->limits.io_min = block_size; 804cafe5635SKent Overstreet q->limits.logical_block_size = block_size; 805cafe5635SKent Overstreet q->limits.physical_block_size = block_size; 806cafe5635SKent Overstreet set_bit(QUEUE_FLAG_NONROT, &d->disk->queue->queue_flags); 807cafe5635SKent Overstreet set_bit(QUEUE_FLAG_DISCARD, &d->disk->queue->queue_flags); 808cafe5635SKent Overstreet 809cafe5635SKent Overstreet return 0; 810cafe5635SKent Overstreet } 811cafe5635SKent Overstreet 812cafe5635SKent Overstreet /* Cached device */ 813cafe5635SKent Overstreet 814cafe5635SKent Overstreet static void calc_cached_dev_sectors(struct cache_set *c) 815cafe5635SKent Overstreet { 816cafe5635SKent Overstreet uint64_t sectors = 0; 817cafe5635SKent Overstreet struct cached_dev *dc; 818cafe5635SKent Overstreet 819cafe5635SKent Overstreet list_for_each_entry(dc, &c->cached_devs, list) 820cafe5635SKent Overstreet sectors += bdev_sectors(dc->bdev); 821cafe5635SKent Overstreet 822cafe5635SKent Overstreet c->cached_dev_sectors = sectors; 823cafe5635SKent Overstreet } 824cafe5635SKent Overstreet 825cafe5635SKent Overstreet void bch_cached_dev_run(struct cached_dev *dc) 826cafe5635SKent Overstreet { 827cafe5635SKent Overstreet struct bcache_device *d = &dc->disk; 828*a25c32beSGabriel de Perthuis char *env[] = { 829*a25c32beSGabriel de Perthuis "DRIVER=bcache", 830*a25c32beSGabriel de Perthuis kasprintf(GFP_KERNEL, "CACHED_UUID=%pU", dc->sb.uuid), 831*a25c32beSGabriel de Perthuis NULL 832*a25c32beSGabriel de Perthuis }; 833cafe5635SKent Overstreet 834cafe5635SKent Overstreet if (atomic_xchg(&dc->running, 1)) 835cafe5635SKent Overstreet return; 836cafe5635SKent Overstreet 837cafe5635SKent Overstreet if (!d->c && 838cafe5635SKent Overstreet BDEV_STATE(&dc->sb) != BDEV_STATE_NONE) { 839cafe5635SKent Overstreet struct closure cl; 840cafe5635SKent Overstreet closure_init_stack(&cl); 841cafe5635SKent Overstreet 842cafe5635SKent Overstreet SET_BDEV_STATE(&dc->sb, BDEV_STATE_STALE); 843cafe5635SKent Overstreet bch_write_bdev_super(dc, &cl); 844cafe5635SKent Overstreet closure_sync(&cl); 845cafe5635SKent Overstreet } 846cafe5635SKent Overstreet 847cafe5635SKent Overstreet add_disk(d->disk); 848ee668506SKent Overstreet bd_link_disk_holder(dc->bdev, dc->disk.disk); 849*a25c32beSGabriel de Perthuis /* won't show up in the uevent file, use udevadm monitor -e instead 850*a25c32beSGabriel de Perthuis * only class / kset properties are persistent */ 851cafe5635SKent Overstreet kobject_uevent_env(&disk_to_dev(d->disk)->kobj, KOBJ_CHANGE, env); 852*a25c32beSGabriel de Perthuis kfree(env[1]); 853*a25c32beSGabriel de Perthuis 854cafe5635SKent Overstreet if (sysfs_create_link(&d->kobj, &disk_to_dev(d->disk)->kobj, "dev") || 855cafe5635SKent Overstreet sysfs_create_link(&disk_to_dev(d->disk)->kobj, &d->kobj, "bcache")) 856cafe5635SKent Overstreet pr_debug("error creating sysfs link"); 857cafe5635SKent Overstreet } 858cafe5635SKent Overstreet 859cafe5635SKent Overstreet static void cached_dev_detach_finish(struct work_struct *w) 860cafe5635SKent Overstreet { 861cafe5635SKent Overstreet struct cached_dev *dc = container_of(w, struct cached_dev, detach); 862cafe5635SKent Overstreet char buf[BDEVNAME_SIZE]; 863cafe5635SKent Overstreet struct closure cl; 864cafe5635SKent Overstreet closure_init_stack(&cl); 865cafe5635SKent Overstreet 866cafe5635SKent Overstreet BUG_ON(!atomic_read(&dc->disk.detaching)); 867cafe5635SKent Overstreet BUG_ON(atomic_read(&dc->count)); 868cafe5635SKent Overstreet 869cafe5635SKent Overstreet mutex_lock(&bch_register_lock); 870cafe5635SKent Overstreet 871cafe5635SKent Overstreet memset(&dc->sb.set_uuid, 0, 16); 872cafe5635SKent Overstreet SET_BDEV_STATE(&dc->sb, BDEV_STATE_NONE); 873cafe5635SKent Overstreet 874cafe5635SKent Overstreet bch_write_bdev_super(dc, &cl); 875cafe5635SKent Overstreet closure_sync(&cl); 876cafe5635SKent Overstreet 877cafe5635SKent Overstreet bcache_device_detach(&dc->disk); 878cafe5635SKent Overstreet list_move(&dc->list, &uncached_devices); 879cafe5635SKent Overstreet 880cafe5635SKent Overstreet mutex_unlock(&bch_register_lock); 881cafe5635SKent Overstreet 882cafe5635SKent Overstreet pr_info("Caching disabled for %s", bdevname(dc->bdev, buf)); 883cafe5635SKent Overstreet 884cafe5635SKent Overstreet /* Drop ref we took in cached_dev_detach() */ 885cafe5635SKent Overstreet closure_put(&dc->disk.cl); 886cafe5635SKent Overstreet } 887cafe5635SKent Overstreet 888cafe5635SKent Overstreet void bch_cached_dev_detach(struct cached_dev *dc) 889cafe5635SKent Overstreet { 890cafe5635SKent Overstreet lockdep_assert_held(&bch_register_lock); 891cafe5635SKent Overstreet 892cafe5635SKent Overstreet if (atomic_read(&dc->disk.closing)) 893cafe5635SKent Overstreet return; 894cafe5635SKent Overstreet 895cafe5635SKent Overstreet if (atomic_xchg(&dc->disk.detaching, 1)) 896cafe5635SKent Overstreet return; 897cafe5635SKent Overstreet 898cafe5635SKent Overstreet /* 899cafe5635SKent Overstreet * Block the device from being closed and freed until we're finished 900cafe5635SKent Overstreet * detaching 901cafe5635SKent Overstreet */ 902cafe5635SKent Overstreet closure_get(&dc->disk.cl); 903cafe5635SKent Overstreet 904cafe5635SKent Overstreet bch_writeback_queue(dc); 905cafe5635SKent Overstreet cached_dev_put(dc); 906cafe5635SKent Overstreet } 907cafe5635SKent Overstreet 908cafe5635SKent Overstreet int bch_cached_dev_attach(struct cached_dev *dc, struct cache_set *c) 909cafe5635SKent Overstreet { 910cafe5635SKent Overstreet uint32_t rtime = cpu_to_le32(get_seconds()); 911cafe5635SKent Overstreet struct uuid_entry *u; 912cafe5635SKent Overstreet char buf[BDEVNAME_SIZE]; 913cafe5635SKent Overstreet 914cafe5635SKent Overstreet bdevname(dc->bdev, buf); 915cafe5635SKent Overstreet 916cafe5635SKent Overstreet if (memcmp(dc->sb.set_uuid, c->sb.set_uuid, 16)) 917cafe5635SKent Overstreet return -ENOENT; 918cafe5635SKent Overstreet 919cafe5635SKent Overstreet if (dc->disk.c) { 920cafe5635SKent Overstreet pr_err("Can't attach %s: already attached", buf); 921cafe5635SKent Overstreet return -EINVAL; 922cafe5635SKent Overstreet } 923cafe5635SKent Overstreet 924cafe5635SKent Overstreet if (test_bit(CACHE_SET_STOPPING, &c->flags)) { 925cafe5635SKent Overstreet pr_err("Can't attach %s: shutting down", buf); 926cafe5635SKent Overstreet return -EINVAL; 927cafe5635SKent Overstreet } 928cafe5635SKent Overstreet 929cafe5635SKent Overstreet if (dc->sb.block_size < c->sb.block_size) { 930cafe5635SKent Overstreet /* Will die */ 931b1a67b0fSKent Overstreet pr_err("Couldn't attach %s: block size less than set's block size", 932b1a67b0fSKent Overstreet buf); 933cafe5635SKent Overstreet return -EINVAL; 934cafe5635SKent Overstreet } 935cafe5635SKent Overstreet 936cafe5635SKent Overstreet u = uuid_find(c, dc->sb.uuid); 937cafe5635SKent Overstreet 938cafe5635SKent Overstreet if (u && 939cafe5635SKent Overstreet (BDEV_STATE(&dc->sb) == BDEV_STATE_STALE || 940cafe5635SKent Overstreet BDEV_STATE(&dc->sb) == BDEV_STATE_NONE)) { 941cafe5635SKent Overstreet memcpy(u->uuid, invalid_uuid, 16); 942cafe5635SKent Overstreet u->invalidated = cpu_to_le32(get_seconds()); 943cafe5635SKent Overstreet u = NULL; 944cafe5635SKent Overstreet } 945cafe5635SKent Overstreet 946cafe5635SKent Overstreet if (!u) { 947cafe5635SKent Overstreet if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) { 948cafe5635SKent Overstreet pr_err("Couldn't find uuid for %s in set", buf); 949cafe5635SKent Overstreet return -ENOENT; 950cafe5635SKent Overstreet } 951cafe5635SKent Overstreet 952cafe5635SKent Overstreet u = uuid_find_empty(c); 953cafe5635SKent Overstreet if (!u) { 954cafe5635SKent Overstreet pr_err("Not caching %s, no room for UUID", buf); 955cafe5635SKent Overstreet return -EINVAL; 956cafe5635SKent Overstreet } 957cafe5635SKent Overstreet } 958cafe5635SKent Overstreet 959cafe5635SKent Overstreet /* Deadlocks since we're called via sysfs... 960cafe5635SKent Overstreet sysfs_remove_file(&dc->kobj, &sysfs_attach); 961cafe5635SKent Overstreet */ 962cafe5635SKent Overstreet 963169ef1cfSKent Overstreet if (bch_is_zero(u->uuid, 16)) { 964cafe5635SKent Overstreet struct closure cl; 965cafe5635SKent Overstreet closure_init_stack(&cl); 966cafe5635SKent Overstreet 967cafe5635SKent Overstreet memcpy(u->uuid, dc->sb.uuid, 16); 968cafe5635SKent Overstreet memcpy(u->label, dc->sb.label, SB_LABEL_SIZE); 969cafe5635SKent Overstreet u->first_reg = u->last_reg = rtime; 970cafe5635SKent Overstreet bch_uuid_write(c); 971cafe5635SKent Overstreet 972cafe5635SKent Overstreet memcpy(dc->sb.set_uuid, c->sb.set_uuid, 16); 973cafe5635SKent Overstreet SET_BDEV_STATE(&dc->sb, BDEV_STATE_CLEAN); 974cafe5635SKent Overstreet 975cafe5635SKent Overstreet bch_write_bdev_super(dc, &cl); 976cafe5635SKent Overstreet closure_sync(&cl); 977cafe5635SKent Overstreet } else { 978cafe5635SKent Overstreet u->last_reg = rtime; 979cafe5635SKent Overstreet bch_uuid_write(c); 980cafe5635SKent Overstreet } 981cafe5635SKent Overstreet 982cafe5635SKent Overstreet bcache_device_attach(&dc->disk, c, u - c->uuids); 983cafe5635SKent Overstreet list_move(&dc->list, &c->cached_devs); 984cafe5635SKent Overstreet calc_cached_dev_sectors(c); 985cafe5635SKent Overstreet 986cafe5635SKent Overstreet smp_wmb(); 987cafe5635SKent Overstreet /* 988cafe5635SKent Overstreet * dc->c must be set before dc->count != 0 - paired with the mb in 989cafe5635SKent Overstreet * cached_dev_get() 990cafe5635SKent Overstreet */ 991cafe5635SKent Overstreet atomic_set(&dc->count, 1); 992cafe5635SKent Overstreet 993cafe5635SKent Overstreet if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) { 994444fc0b6SKent Overstreet bch_sectors_dirty_init(dc); 995cafe5635SKent Overstreet atomic_set(&dc->has_dirty, 1); 996cafe5635SKent Overstreet atomic_inc(&dc->count); 997cafe5635SKent Overstreet bch_writeback_queue(dc); 998cafe5635SKent Overstreet } 999cafe5635SKent Overstreet 1000cafe5635SKent Overstreet bch_cached_dev_run(dc); 1001ee668506SKent Overstreet bcache_device_link(&dc->disk, c, "bdev"); 1002cafe5635SKent Overstreet 1003cafe5635SKent Overstreet pr_info("Caching %s as %s on set %pU", 1004cafe5635SKent Overstreet bdevname(dc->bdev, buf), dc->disk.disk->disk_name, 1005cafe5635SKent Overstreet dc->disk.c->sb.set_uuid); 1006cafe5635SKent Overstreet return 0; 1007cafe5635SKent Overstreet } 1008cafe5635SKent Overstreet 1009cafe5635SKent Overstreet void bch_cached_dev_release(struct kobject *kobj) 1010cafe5635SKent Overstreet { 1011cafe5635SKent Overstreet struct cached_dev *dc = container_of(kobj, struct cached_dev, 1012cafe5635SKent Overstreet disk.kobj); 1013cafe5635SKent Overstreet kfree(dc); 1014cafe5635SKent Overstreet module_put(THIS_MODULE); 1015cafe5635SKent Overstreet } 1016cafe5635SKent Overstreet 1017cafe5635SKent Overstreet static void cached_dev_free(struct closure *cl) 1018cafe5635SKent Overstreet { 1019cafe5635SKent Overstreet struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl); 1020cafe5635SKent Overstreet 1021cafe5635SKent Overstreet cancel_delayed_work_sync(&dc->writeback_rate_update); 1022cafe5635SKent Overstreet 1023cafe5635SKent Overstreet mutex_lock(&bch_register_lock); 1024cafe5635SKent Overstreet 1025f59fce84SKent Overstreet if (atomic_read(&dc->running)) 1026ee668506SKent Overstreet bd_unlink_disk_holder(dc->bdev, dc->disk.disk); 1027cafe5635SKent Overstreet bcache_device_free(&dc->disk); 1028cafe5635SKent Overstreet list_del(&dc->list); 1029cafe5635SKent Overstreet 1030cafe5635SKent Overstreet mutex_unlock(&bch_register_lock); 1031cafe5635SKent Overstreet 1032cafe5635SKent Overstreet if (!IS_ERR_OR_NULL(dc->bdev)) { 1033f59fce84SKent Overstreet if (dc->bdev->bd_disk) 1034cafe5635SKent Overstreet blk_sync_queue(bdev_get_queue(dc->bdev)); 1035f59fce84SKent Overstreet 1036cafe5635SKent Overstreet blkdev_put(dc->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL); 1037cafe5635SKent Overstreet } 1038cafe5635SKent Overstreet 1039cafe5635SKent Overstreet wake_up(&unregister_wait); 1040cafe5635SKent Overstreet 1041cafe5635SKent Overstreet kobject_put(&dc->disk.kobj); 1042cafe5635SKent Overstreet } 1043cafe5635SKent Overstreet 1044cafe5635SKent Overstreet static void cached_dev_flush(struct closure *cl) 1045cafe5635SKent Overstreet { 1046cafe5635SKent Overstreet struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl); 1047cafe5635SKent Overstreet struct bcache_device *d = &dc->disk; 1048cafe5635SKent Overstreet 1049cafe5635SKent Overstreet bch_cache_accounting_destroy(&dc->accounting); 1050cafe5635SKent Overstreet kobject_del(&d->kobj); 1051cafe5635SKent Overstreet 1052cafe5635SKent Overstreet continue_at(cl, cached_dev_free, system_wq); 1053cafe5635SKent Overstreet } 1054cafe5635SKent Overstreet 1055cafe5635SKent Overstreet static int cached_dev_init(struct cached_dev *dc, unsigned block_size) 1056cafe5635SKent Overstreet { 1057f59fce84SKent Overstreet int ret; 1058cafe5635SKent Overstreet struct io *io; 1059f59fce84SKent Overstreet struct request_queue *q = bdev_get_queue(dc->bdev); 1060cafe5635SKent Overstreet 1061cafe5635SKent Overstreet __module_get(THIS_MODULE); 1062cafe5635SKent Overstreet INIT_LIST_HEAD(&dc->list); 1063f59fce84SKent Overstreet closure_init(&dc->disk.cl, NULL); 1064f59fce84SKent Overstreet set_closure_fn(&dc->disk.cl, cached_dev_flush, system_wq); 1065cafe5635SKent Overstreet kobject_init(&dc->disk.kobj, &bch_cached_dev_ktype); 1066cafe5635SKent Overstreet INIT_WORK(&dc->detach, cached_dev_detach_finish); 1067f59fce84SKent Overstreet closure_init_unlocked(&dc->sb_write); 1068f59fce84SKent Overstreet INIT_LIST_HEAD(&dc->io_lru); 1069f59fce84SKent Overstreet spin_lock_init(&dc->io_lock); 1070f59fce84SKent Overstreet bch_cache_accounting_init(&dc->accounting, &dc->disk.cl); 1071cafe5635SKent Overstreet 1072cafe5635SKent Overstreet dc->sequential_merge = true; 1073cafe5635SKent Overstreet dc->sequential_cutoff = 4 << 20; 1074cafe5635SKent Overstreet 1075cafe5635SKent Overstreet for (io = dc->io; io < dc->io + RECENT_IO; io++) { 1076cafe5635SKent Overstreet list_add(&io->lru, &dc->io_lru); 1077cafe5635SKent Overstreet hlist_add_head(&io->hash, dc->io_hash + RECENT_IO); 1078cafe5635SKent Overstreet } 1079cafe5635SKent Overstreet 1080279afbadSKent Overstreet ret = bcache_device_init(&dc->disk, block_size, 1081279afbadSKent Overstreet dc->bdev->bd_part->nr_sects - dc->sb.data_offset); 1082f59fce84SKent Overstreet if (ret) 1083f59fce84SKent Overstreet return ret; 1084f59fce84SKent Overstreet 1085f59fce84SKent Overstreet set_capacity(dc->disk.disk, 1086f59fce84SKent Overstreet dc->bdev->bd_part->nr_sects - dc->sb.data_offset); 1087f59fce84SKent Overstreet 1088f59fce84SKent Overstreet dc->disk.disk->queue->backing_dev_info.ra_pages = 1089f59fce84SKent Overstreet max(dc->disk.disk->queue->backing_dev_info.ra_pages, 1090f59fce84SKent Overstreet q->backing_dev_info.ra_pages); 1091f59fce84SKent Overstreet 1092f59fce84SKent Overstreet bch_cached_dev_request_init(dc); 1093f59fce84SKent Overstreet bch_cached_dev_writeback_init(dc); 1094cafe5635SKent Overstreet return 0; 1095cafe5635SKent Overstreet } 1096cafe5635SKent Overstreet 1097cafe5635SKent Overstreet /* Cached device - bcache superblock */ 1098cafe5635SKent Overstreet 1099f59fce84SKent Overstreet static void register_bdev(struct cache_sb *sb, struct page *sb_page, 1100cafe5635SKent Overstreet struct block_device *bdev, 1101cafe5635SKent Overstreet struct cached_dev *dc) 1102cafe5635SKent Overstreet { 1103cafe5635SKent Overstreet char name[BDEVNAME_SIZE]; 1104cafe5635SKent Overstreet const char *err = "cannot allocate memory"; 1105cafe5635SKent Overstreet struct cache_set *c; 1106cafe5635SKent Overstreet 1107cafe5635SKent Overstreet memcpy(&dc->sb, sb, sizeof(struct cache_sb)); 1108cafe5635SKent Overstreet dc->bdev = bdev; 1109cafe5635SKent Overstreet dc->bdev->bd_holder = dc; 1110cafe5635SKent Overstreet 1111f59fce84SKent Overstreet bio_init(&dc->sb_bio); 1112f59fce84SKent Overstreet dc->sb_bio.bi_max_vecs = 1; 1113f59fce84SKent Overstreet dc->sb_bio.bi_io_vec = dc->sb_bio.bi_inline_vecs; 1114f59fce84SKent Overstreet dc->sb_bio.bi_io_vec[0].bv_page = sb_page; 1115f59fce84SKent Overstreet get_page(sb_page); 1116cafe5635SKent Overstreet 1117f59fce84SKent Overstreet if (cached_dev_init(dc, sb->block_size << 9)) 1118f59fce84SKent Overstreet goto err; 1119cafe5635SKent Overstreet 1120cafe5635SKent Overstreet err = "error creating kobject"; 1121cafe5635SKent Overstreet if (kobject_add(&dc->disk.kobj, &part_to_dev(bdev->bd_part)->kobj, 1122cafe5635SKent Overstreet "bcache")) 1123cafe5635SKent Overstreet goto err; 1124cafe5635SKent Overstreet if (bch_cache_accounting_add_kobjs(&dc->accounting, &dc->disk.kobj)) 1125cafe5635SKent Overstreet goto err; 1126cafe5635SKent Overstreet 1127f59fce84SKent Overstreet pr_info("registered backing device %s", bdevname(bdev, name)); 1128f59fce84SKent Overstreet 1129cafe5635SKent Overstreet list_add(&dc->list, &uncached_devices); 1130cafe5635SKent Overstreet list_for_each_entry(c, &bch_cache_sets, list) 1131cafe5635SKent Overstreet bch_cached_dev_attach(dc, c); 1132cafe5635SKent Overstreet 1133cafe5635SKent Overstreet if (BDEV_STATE(&dc->sb) == BDEV_STATE_NONE || 1134cafe5635SKent Overstreet BDEV_STATE(&dc->sb) == BDEV_STATE_STALE) 1135cafe5635SKent Overstreet bch_cached_dev_run(dc); 1136cafe5635SKent Overstreet 1137f59fce84SKent Overstreet return; 1138cafe5635SKent Overstreet err: 1139cafe5635SKent Overstreet pr_notice("error opening %s: %s", bdevname(bdev, name), err); 1140f59fce84SKent Overstreet bcache_device_stop(&dc->disk); 1141cafe5635SKent Overstreet } 1142cafe5635SKent Overstreet 1143cafe5635SKent Overstreet /* Flash only volumes */ 1144cafe5635SKent Overstreet 1145cafe5635SKent Overstreet void bch_flash_dev_release(struct kobject *kobj) 1146cafe5635SKent Overstreet { 1147cafe5635SKent Overstreet struct bcache_device *d = container_of(kobj, struct bcache_device, 1148cafe5635SKent Overstreet kobj); 1149cafe5635SKent Overstreet kfree(d); 1150cafe5635SKent Overstreet } 1151cafe5635SKent Overstreet 1152cafe5635SKent Overstreet static void flash_dev_free(struct closure *cl) 1153cafe5635SKent Overstreet { 1154cafe5635SKent Overstreet struct bcache_device *d = container_of(cl, struct bcache_device, cl); 1155cafe5635SKent Overstreet bcache_device_free(d); 1156cafe5635SKent Overstreet kobject_put(&d->kobj); 1157cafe5635SKent Overstreet } 1158cafe5635SKent Overstreet 1159cafe5635SKent Overstreet static void flash_dev_flush(struct closure *cl) 1160cafe5635SKent Overstreet { 1161cafe5635SKent Overstreet struct bcache_device *d = container_of(cl, struct bcache_device, cl); 1162cafe5635SKent Overstreet 1163ee668506SKent Overstreet bcache_device_unlink(d); 1164cafe5635SKent Overstreet kobject_del(&d->kobj); 1165cafe5635SKent Overstreet continue_at(cl, flash_dev_free, system_wq); 1166cafe5635SKent Overstreet } 1167cafe5635SKent Overstreet 1168cafe5635SKent Overstreet static int flash_dev_run(struct cache_set *c, struct uuid_entry *u) 1169cafe5635SKent Overstreet { 1170cafe5635SKent Overstreet struct bcache_device *d = kzalloc(sizeof(struct bcache_device), 1171cafe5635SKent Overstreet GFP_KERNEL); 1172cafe5635SKent Overstreet if (!d) 1173cafe5635SKent Overstreet return -ENOMEM; 1174cafe5635SKent Overstreet 1175cafe5635SKent Overstreet closure_init(&d->cl, NULL); 1176cafe5635SKent Overstreet set_closure_fn(&d->cl, flash_dev_flush, system_wq); 1177cafe5635SKent Overstreet 1178cafe5635SKent Overstreet kobject_init(&d->kobj, &bch_flash_dev_ktype); 1179cafe5635SKent Overstreet 1180279afbadSKent Overstreet if (bcache_device_init(d, block_bytes(c), u->sectors)) 1181cafe5635SKent Overstreet goto err; 1182cafe5635SKent Overstreet 1183cafe5635SKent Overstreet bcache_device_attach(d, c, u - c->uuids); 1184cafe5635SKent Overstreet bch_flash_dev_request_init(d); 1185cafe5635SKent Overstreet add_disk(d->disk); 1186cafe5635SKent Overstreet 1187cafe5635SKent Overstreet if (kobject_add(&d->kobj, &disk_to_dev(d->disk)->kobj, "bcache")) 1188cafe5635SKent Overstreet goto err; 1189cafe5635SKent Overstreet 1190cafe5635SKent Overstreet bcache_device_link(d, c, "volume"); 1191cafe5635SKent Overstreet 1192cafe5635SKent Overstreet return 0; 1193cafe5635SKent Overstreet err: 1194cafe5635SKent Overstreet kobject_put(&d->kobj); 1195cafe5635SKent Overstreet return -ENOMEM; 1196cafe5635SKent Overstreet } 1197cafe5635SKent Overstreet 1198cafe5635SKent Overstreet static int flash_devs_run(struct cache_set *c) 1199cafe5635SKent Overstreet { 1200cafe5635SKent Overstreet int ret = 0; 1201cafe5635SKent Overstreet struct uuid_entry *u; 1202cafe5635SKent Overstreet 1203cafe5635SKent Overstreet for (u = c->uuids; 1204cafe5635SKent Overstreet u < c->uuids + c->nr_uuids && !ret; 1205cafe5635SKent Overstreet u++) 1206cafe5635SKent Overstreet if (UUID_FLASH_ONLY(u)) 1207cafe5635SKent Overstreet ret = flash_dev_run(c, u); 1208cafe5635SKent Overstreet 1209cafe5635SKent Overstreet return ret; 1210cafe5635SKent Overstreet } 1211cafe5635SKent Overstreet 1212cafe5635SKent Overstreet int bch_flash_dev_create(struct cache_set *c, uint64_t size) 1213cafe5635SKent Overstreet { 1214cafe5635SKent Overstreet struct uuid_entry *u; 1215cafe5635SKent Overstreet 1216cafe5635SKent Overstreet if (test_bit(CACHE_SET_STOPPING, &c->flags)) 1217cafe5635SKent Overstreet return -EINTR; 1218cafe5635SKent Overstreet 1219cafe5635SKent Overstreet u = uuid_find_empty(c); 1220cafe5635SKent Overstreet if (!u) { 1221cafe5635SKent Overstreet pr_err("Can't create volume, no room for UUID"); 1222cafe5635SKent Overstreet return -EINVAL; 1223cafe5635SKent Overstreet } 1224cafe5635SKent Overstreet 1225cafe5635SKent Overstreet get_random_bytes(u->uuid, 16); 1226cafe5635SKent Overstreet memset(u->label, 0, 32); 1227cafe5635SKent Overstreet u->first_reg = u->last_reg = cpu_to_le32(get_seconds()); 1228cafe5635SKent Overstreet 1229cafe5635SKent Overstreet SET_UUID_FLASH_ONLY(u, 1); 1230cafe5635SKent Overstreet u->sectors = size >> 9; 1231cafe5635SKent Overstreet 1232cafe5635SKent Overstreet bch_uuid_write(c); 1233cafe5635SKent Overstreet 1234cafe5635SKent Overstreet return flash_dev_run(c, u); 1235cafe5635SKent Overstreet } 1236cafe5635SKent Overstreet 1237cafe5635SKent Overstreet /* Cache set */ 1238cafe5635SKent Overstreet 1239cafe5635SKent Overstreet __printf(2, 3) 1240cafe5635SKent Overstreet bool bch_cache_set_error(struct cache_set *c, const char *fmt, ...) 1241cafe5635SKent Overstreet { 1242cafe5635SKent Overstreet va_list args; 1243cafe5635SKent Overstreet 1244cafe5635SKent Overstreet if (test_bit(CACHE_SET_STOPPING, &c->flags)) 1245cafe5635SKent Overstreet return false; 1246cafe5635SKent Overstreet 1247cafe5635SKent Overstreet /* XXX: we can be called from atomic context 1248cafe5635SKent Overstreet acquire_console_sem(); 1249cafe5635SKent Overstreet */ 1250cafe5635SKent Overstreet 1251cafe5635SKent Overstreet printk(KERN_ERR "bcache: error on %pU: ", c->sb.set_uuid); 1252cafe5635SKent Overstreet 1253cafe5635SKent Overstreet va_start(args, fmt); 1254cafe5635SKent Overstreet vprintk(fmt, args); 1255cafe5635SKent Overstreet va_end(args); 1256cafe5635SKent Overstreet 1257cafe5635SKent Overstreet printk(", disabling caching\n"); 1258cafe5635SKent Overstreet 1259cafe5635SKent Overstreet bch_cache_set_unregister(c); 1260cafe5635SKent Overstreet return true; 1261cafe5635SKent Overstreet } 1262cafe5635SKent Overstreet 1263cafe5635SKent Overstreet void bch_cache_set_release(struct kobject *kobj) 1264cafe5635SKent Overstreet { 1265cafe5635SKent Overstreet struct cache_set *c = container_of(kobj, struct cache_set, kobj); 1266cafe5635SKent Overstreet kfree(c); 1267cafe5635SKent Overstreet module_put(THIS_MODULE); 1268cafe5635SKent Overstreet } 1269cafe5635SKent Overstreet 1270cafe5635SKent Overstreet static void cache_set_free(struct closure *cl) 1271cafe5635SKent Overstreet { 1272cafe5635SKent Overstreet struct cache_set *c = container_of(cl, struct cache_set, cl); 1273cafe5635SKent Overstreet struct cache *ca; 1274cafe5635SKent Overstreet unsigned i; 1275cafe5635SKent Overstreet 1276cafe5635SKent Overstreet if (!IS_ERR_OR_NULL(c->debug)) 1277cafe5635SKent Overstreet debugfs_remove(c->debug); 1278cafe5635SKent Overstreet 1279cafe5635SKent Overstreet bch_open_buckets_free(c); 1280cafe5635SKent Overstreet bch_btree_cache_free(c); 1281cafe5635SKent Overstreet bch_journal_free(c); 1282cafe5635SKent Overstreet 1283cafe5635SKent Overstreet for_each_cache(ca, c, i) 1284cafe5635SKent Overstreet if (ca) 1285cafe5635SKent Overstreet kobject_put(&ca->kobj); 1286cafe5635SKent Overstreet 1287cafe5635SKent Overstreet free_pages((unsigned long) c->uuids, ilog2(bucket_pages(c))); 1288cafe5635SKent Overstreet free_pages((unsigned long) c->sort, ilog2(bucket_pages(c))); 1289cafe5635SKent Overstreet 1290cafe5635SKent Overstreet if (c->bio_split) 1291cafe5635SKent Overstreet bioset_free(c->bio_split); 129257943511SKent Overstreet if (c->fill_iter) 129357943511SKent Overstreet mempool_destroy(c->fill_iter); 1294cafe5635SKent Overstreet if (c->bio_meta) 1295cafe5635SKent Overstreet mempool_destroy(c->bio_meta); 1296cafe5635SKent Overstreet if (c->search) 1297cafe5635SKent Overstreet mempool_destroy(c->search); 1298cafe5635SKent Overstreet kfree(c->devices); 1299cafe5635SKent Overstreet 1300cafe5635SKent Overstreet mutex_lock(&bch_register_lock); 1301cafe5635SKent Overstreet list_del(&c->list); 1302cafe5635SKent Overstreet mutex_unlock(&bch_register_lock); 1303cafe5635SKent Overstreet 1304cafe5635SKent Overstreet pr_info("Cache set %pU unregistered", c->sb.set_uuid); 1305cafe5635SKent Overstreet wake_up(&unregister_wait); 1306cafe5635SKent Overstreet 1307cafe5635SKent Overstreet closure_debug_destroy(&c->cl); 1308cafe5635SKent Overstreet kobject_put(&c->kobj); 1309cafe5635SKent Overstreet } 1310cafe5635SKent Overstreet 1311cafe5635SKent Overstreet static void cache_set_flush(struct closure *cl) 1312cafe5635SKent Overstreet { 1313cafe5635SKent Overstreet struct cache_set *c = container_of(cl, struct cache_set, caching); 1314cafe5635SKent Overstreet struct btree *b; 1315cafe5635SKent Overstreet 1316cafe5635SKent Overstreet /* Shut down allocator threads */ 1317cafe5635SKent Overstreet set_bit(CACHE_SET_STOPPING_2, &c->flags); 1318119ba0f8SKent Overstreet wake_up_allocators(c); 1319cafe5635SKent Overstreet 1320cafe5635SKent Overstreet bch_cache_accounting_destroy(&c->accounting); 1321cafe5635SKent Overstreet 1322cafe5635SKent Overstreet kobject_put(&c->internal); 1323cafe5635SKent Overstreet kobject_del(&c->kobj); 1324cafe5635SKent Overstreet 1325cafe5635SKent Overstreet if (!IS_ERR_OR_NULL(c->root)) 1326cafe5635SKent Overstreet list_add(&c->root->list, &c->btree_cache); 1327cafe5635SKent Overstreet 1328cafe5635SKent Overstreet /* Should skip this if we're unregistering because of an error */ 1329cafe5635SKent Overstreet list_for_each_entry(b, &c->btree_cache, list) 1330cafe5635SKent Overstreet if (btree_node_dirty(b)) 133157943511SKent Overstreet bch_btree_node_write(b, NULL); 1332cafe5635SKent Overstreet 1333cafe5635SKent Overstreet closure_return(cl); 1334cafe5635SKent Overstreet } 1335cafe5635SKent Overstreet 1336cafe5635SKent Overstreet static void __cache_set_unregister(struct closure *cl) 1337cafe5635SKent Overstreet { 1338cafe5635SKent Overstreet struct cache_set *c = container_of(cl, struct cache_set, caching); 1339cafe5635SKent Overstreet struct cached_dev *dc, *t; 1340cafe5635SKent Overstreet size_t i; 1341cafe5635SKent Overstreet 1342cafe5635SKent Overstreet mutex_lock(&bch_register_lock); 1343cafe5635SKent Overstreet 1344cafe5635SKent Overstreet if (test_bit(CACHE_SET_UNREGISTERING, &c->flags)) 1345cafe5635SKent Overstreet list_for_each_entry_safe(dc, t, &c->cached_devs, list) 1346cafe5635SKent Overstreet bch_cached_dev_detach(dc); 1347cafe5635SKent Overstreet 1348cafe5635SKent Overstreet for (i = 0; i < c->nr_uuids; i++) 1349cafe5635SKent Overstreet if (c->devices[i] && UUID_FLASH_ONLY(&c->uuids[i])) 1350cafe5635SKent Overstreet bcache_device_stop(c->devices[i]); 1351cafe5635SKent Overstreet 1352cafe5635SKent Overstreet mutex_unlock(&bch_register_lock); 1353cafe5635SKent Overstreet 1354cafe5635SKent Overstreet continue_at(cl, cache_set_flush, system_wq); 1355cafe5635SKent Overstreet } 1356cafe5635SKent Overstreet 1357cafe5635SKent Overstreet void bch_cache_set_stop(struct cache_set *c) 1358cafe5635SKent Overstreet { 1359cafe5635SKent Overstreet if (!test_and_set_bit(CACHE_SET_STOPPING, &c->flags)) 1360cafe5635SKent Overstreet closure_queue(&c->caching); 1361cafe5635SKent Overstreet } 1362cafe5635SKent Overstreet 1363cafe5635SKent Overstreet void bch_cache_set_unregister(struct cache_set *c) 1364cafe5635SKent Overstreet { 1365cafe5635SKent Overstreet set_bit(CACHE_SET_UNREGISTERING, &c->flags); 1366cafe5635SKent Overstreet bch_cache_set_stop(c); 1367cafe5635SKent Overstreet } 1368cafe5635SKent Overstreet 1369cafe5635SKent Overstreet #define alloc_bucket_pages(gfp, c) \ 1370cafe5635SKent Overstreet ((void *) __get_free_pages(__GFP_ZERO|gfp, ilog2(bucket_pages(c)))) 1371cafe5635SKent Overstreet 1372cafe5635SKent Overstreet struct cache_set *bch_cache_set_alloc(struct cache_sb *sb) 1373cafe5635SKent Overstreet { 1374cafe5635SKent Overstreet int iter_size; 1375cafe5635SKent Overstreet struct cache_set *c = kzalloc(sizeof(struct cache_set), GFP_KERNEL); 1376cafe5635SKent Overstreet if (!c) 1377cafe5635SKent Overstreet return NULL; 1378cafe5635SKent Overstreet 1379cafe5635SKent Overstreet __module_get(THIS_MODULE); 1380cafe5635SKent Overstreet closure_init(&c->cl, NULL); 1381cafe5635SKent Overstreet set_closure_fn(&c->cl, cache_set_free, system_wq); 1382cafe5635SKent Overstreet 1383cafe5635SKent Overstreet closure_init(&c->caching, &c->cl); 1384cafe5635SKent Overstreet set_closure_fn(&c->caching, __cache_set_unregister, system_wq); 1385cafe5635SKent Overstreet 1386cafe5635SKent Overstreet /* Maybe create continue_at_noreturn() and use it here? */ 1387cafe5635SKent Overstreet closure_set_stopped(&c->cl); 1388cafe5635SKent Overstreet closure_put(&c->cl); 1389cafe5635SKent Overstreet 1390cafe5635SKent Overstreet kobject_init(&c->kobj, &bch_cache_set_ktype); 1391cafe5635SKent Overstreet kobject_init(&c->internal, &bch_cache_set_internal_ktype); 1392cafe5635SKent Overstreet 1393cafe5635SKent Overstreet bch_cache_accounting_init(&c->accounting, &c->cl); 1394cafe5635SKent Overstreet 1395cafe5635SKent Overstreet memcpy(c->sb.set_uuid, sb->set_uuid, 16); 1396cafe5635SKent Overstreet c->sb.block_size = sb->block_size; 1397cafe5635SKent Overstreet c->sb.bucket_size = sb->bucket_size; 1398cafe5635SKent Overstreet c->sb.nr_in_set = sb->nr_in_set; 1399cafe5635SKent Overstreet c->sb.last_mount = sb->last_mount; 1400cafe5635SKent Overstreet c->bucket_bits = ilog2(sb->bucket_size); 1401cafe5635SKent Overstreet c->block_bits = ilog2(sb->block_size); 1402cafe5635SKent Overstreet c->nr_uuids = bucket_bytes(c) / sizeof(struct uuid_entry); 1403cafe5635SKent Overstreet 1404cafe5635SKent Overstreet c->btree_pages = c->sb.bucket_size / PAGE_SECTORS; 1405cafe5635SKent Overstreet if (c->btree_pages > BTREE_MAX_PAGES) 1406cafe5635SKent Overstreet c->btree_pages = max_t(int, c->btree_pages / 4, 1407cafe5635SKent Overstreet BTREE_MAX_PAGES); 1408cafe5635SKent Overstreet 14096ded34d1SKent Overstreet c->sort_crit_factor = int_sqrt(c->btree_pages); 14106ded34d1SKent Overstreet 1411cafe5635SKent Overstreet mutex_init(&c->bucket_lock); 1412cafe5635SKent Overstreet mutex_init(&c->sort_lock); 1413cafe5635SKent Overstreet spin_lock_init(&c->sort_time_lock); 1414cafe5635SKent Overstreet closure_init_unlocked(&c->sb_write); 1415cafe5635SKent Overstreet closure_init_unlocked(&c->uuid_write); 1416cafe5635SKent Overstreet spin_lock_init(&c->btree_read_time_lock); 1417cafe5635SKent Overstreet bch_moving_init_cache_set(c); 1418cafe5635SKent Overstreet 1419cafe5635SKent Overstreet INIT_LIST_HEAD(&c->list); 1420cafe5635SKent Overstreet INIT_LIST_HEAD(&c->cached_devs); 1421cafe5635SKent Overstreet INIT_LIST_HEAD(&c->btree_cache); 1422cafe5635SKent Overstreet INIT_LIST_HEAD(&c->btree_cache_freeable); 1423cafe5635SKent Overstreet INIT_LIST_HEAD(&c->btree_cache_freed); 1424cafe5635SKent Overstreet INIT_LIST_HEAD(&c->data_buckets); 1425cafe5635SKent Overstreet 1426cafe5635SKent Overstreet c->search = mempool_create_slab_pool(32, bch_search_cache); 1427cafe5635SKent Overstreet if (!c->search) 1428cafe5635SKent Overstreet goto err; 1429cafe5635SKent Overstreet 1430cafe5635SKent Overstreet iter_size = (sb->bucket_size / sb->block_size + 1) * 1431cafe5635SKent Overstreet sizeof(struct btree_iter_set); 1432cafe5635SKent Overstreet 1433cafe5635SKent Overstreet if (!(c->devices = kzalloc(c->nr_uuids * sizeof(void *), GFP_KERNEL)) || 1434cafe5635SKent Overstreet !(c->bio_meta = mempool_create_kmalloc_pool(2, 1435cafe5635SKent Overstreet sizeof(struct bbio) + sizeof(struct bio_vec) * 1436cafe5635SKent Overstreet bucket_pages(c))) || 143757943511SKent Overstreet !(c->fill_iter = mempool_create_kmalloc_pool(1, iter_size)) || 1438cafe5635SKent Overstreet !(c->bio_split = bioset_create(4, offsetof(struct bbio, bio))) || 1439cafe5635SKent Overstreet !(c->sort = alloc_bucket_pages(GFP_KERNEL, c)) || 1440cafe5635SKent Overstreet !(c->uuids = alloc_bucket_pages(GFP_KERNEL, c)) || 1441cafe5635SKent Overstreet bch_journal_alloc(c) || 1442cafe5635SKent Overstreet bch_btree_cache_alloc(c) || 1443cafe5635SKent Overstreet bch_open_buckets_alloc(c)) 1444cafe5635SKent Overstreet goto err; 1445cafe5635SKent Overstreet 1446cafe5635SKent Overstreet c->congested_read_threshold_us = 2000; 1447cafe5635SKent Overstreet c->congested_write_threshold_us = 20000; 1448cafe5635SKent Overstreet c->error_limit = 8 << IO_ERROR_SHIFT; 1449cafe5635SKent Overstreet 1450cafe5635SKent Overstreet return c; 1451cafe5635SKent Overstreet err: 1452cafe5635SKent Overstreet bch_cache_set_unregister(c); 1453cafe5635SKent Overstreet return NULL; 1454cafe5635SKent Overstreet } 1455cafe5635SKent Overstreet 1456cafe5635SKent Overstreet static void run_cache_set(struct cache_set *c) 1457cafe5635SKent Overstreet { 1458cafe5635SKent Overstreet const char *err = "cannot allocate memory"; 1459cafe5635SKent Overstreet struct cached_dev *dc, *t; 1460cafe5635SKent Overstreet struct cache *ca; 1461cafe5635SKent Overstreet unsigned i; 1462cafe5635SKent Overstreet 1463cafe5635SKent Overstreet struct btree_op op; 1464cafe5635SKent Overstreet bch_btree_op_init_stack(&op); 1465cafe5635SKent Overstreet op.lock = SHRT_MAX; 1466cafe5635SKent Overstreet 1467cafe5635SKent Overstreet for_each_cache(ca, c, i) 1468cafe5635SKent Overstreet c->nbuckets += ca->sb.nbuckets; 1469cafe5635SKent Overstreet 1470cafe5635SKent Overstreet if (CACHE_SYNC(&c->sb)) { 1471cafe5635SKent Overstreet LIST_HEAD(journal); 1472cafe5635SKent Overstreet struct bkey *k; 1473cafe5635SKent Overstreet struct jset *j; 1474cafe5635SKent Overstreet 1475cafe5635SKent Overstreet err = "cannot allocate memory for journal"; 1476cafe5635SKent Overstreet if (bch_journal_read(c, &journal, &op)) 1477cafe5635SKent Overstreet goto err; 1478cafe5635SKent Overstreet 1479cafe5635SKent Overstreet pr_debug("btree_journal_read() done"); 1480cafe5635SKent Overstreet 1481cafe5635SKent Overstreet err = "no journal entries found"; 1482cafe5635SKent Overstreet if (list_empty(&journal)) 1483cafe5635SKent Overstreet goto err; 1484cafe5635SKent Overstreet 1485cafe5635SKent Overstreet j = &list_entry(journal.prev, struct journal_replay, list)->j; 1486cafe5635SKent Overstreet 1487cafe5635SKent Overstreet err = "IO error reading priorities"; 1488cafe5635SKent Overstreet for_each_cache(ca, c, i) 1489cafe5635SKent Overstreet prio_read(ca, j->prio_bucket[ca->sb.nr_this_dev]); 1490cafe5635SKent Overstreet 1491cafe5635SKent Overstreet /* 1492cafe5635SKent Overstreet * If prio_read() fails it'll call cache_set_error and we'll 1493cafe5635SKent Overstreet * tear everything down right away, but if we perhaps checked 1494cafe5635SKent Overstreet * sooner we could avoid journal replay. 1495cafe5635SKent Overstreet */ 1496cafe5635SKent Overstreet 1497cafe5635SKent Overstreet k = &j->btree_root; 1498cafe5635SKent Overstreet 1499cafe5635SKent Overstreet err = "bad btree root"; 1500cafe5635SKent Overstreet if (__bch_ptr_invalid(c, j->btree_level + 1, k)) 1501cafe5635SKent Overstreet goto err; 1502cafe5635SKent Overstreet 1503cafe5635SKent Overstreet err = "error reading btree root"; 1504cafe5635SKent Overstreet c->root = bch_btree_node_get(c, k, j->btree_level, &op); 1505cafe5635SKent Overstreet if (IS_ERR_OR_NULL(c->root)) 1506cafe5635SKent Overstreet goto err; 1507cafe5635SKent Overstreet 1508cafe5635SKent Overstreet list_del_init(&c->root->list); 1509cafe5635SKent Overstreet rw_unlock(true, c->root); 1510cafe5635SKent Overstreet 1511cafe5635SKent Overstreet err = uuid_read(c, j, &op.cl); 1512cafe5635SKent Overstreet if (err) 1513cafe5635SKent Overstreet goto err; 1514cafe5635SKent Overstreet 1515cafe5635SKent Overstreet err = "error in recovery"; 1516cafe5635SKent Overstreet if (bch_btree_check(c, &op)) 1517cafe5635SKent Overstreet goto err; 1518cafe5635SKent Overstreet 1519cafe5635SKent Overstreet bch_journal_mark(c, &journal); 1520cafe5635SKent Overstreet bch_btree_gc_finish(c); 1521cafe5635SKent Overstreet pr_debug("btree_check() done"); 1522cafe5635SKent Overstreet 1523cafe5635SKent Overstreet /* 1524cafe5635SKent Overstreet * bcache_journal_next() can't happen sooner, or 1525cafe5635SKent Overstreet * btree_gc_finish() will give spurious errors about last_gc > 1526cafe5635SKent Overstreet * gc_gen - this is a hack but oh well. 1527cafe5635SKent Overstreet */ 1528cafe5635SKent Overstreet bch_journal_next(&c->journal); 1529cafe5635SKent Overstreet 1530119ba0f8SKent Overstreet err = "error starting allocator thread"; 1531cafe5635SKent Overstreet for_each_cache(ca, c, i) 1532119ba0f8SKent Overstreet if (bch_cache_allocator_start(ca)) 1533119ba0f8SKent Overstreet goto err; 1534cafe5635SKent Overstreet 1535cafe5635SKent Overstreet /* 1536cafe5635SKent Overstreet * First place it's safe to allocate: btree_check() and 1537cafe5635SKent Overstreet * btree_gc_finish() have to run before we have buckets to 1538cafe5635SKent Overstreet * allocate, and bch_bucket_alloc_set() might cause a journal 1539cafe5635SKent Overstreet * entry to be written so bcache_journal_next() has to be called 1540cafe5635SKent Overstreet * first. 1541cafe5635SKent Overstreet * 1542cafe5635SKent Overstreet * If the uuids were in the old format we have to rewrite them 1543cafe5635SKent Overstreet * before the next journal entry is written: 1544cafe5635SKent Overstreet */ 1545cafe5635SKent Overstreet if (j->version < BCACHE_JSET_VERSION_UUID) 1546cafe5635SKent Overstreet __uuid_write(c); 1547cafe5635SKent Overstreet 1548cafe5635SKent Overstreet bch_journal_replay(c, &journal, &op); 1549cafe5635SKent Overstreet } else { 1550cafe5635SKent Overstreet pr_notice("invalidating existing data"); 1551cafe5635SKent Overstreet /* Don't want invalidate_buckets() to queue a gc yet */ 1552cafe5635SKent Overstreet closure_lock(&c->gc, NULL); 1553cafe5635SKent Overstreet 1554cafe5635SKent Overstreet for_each_cache(ca, c, i) { 1555cafe5635SKent Overstreet unsigned j; 1556cafe5635SKent Overstreet 1557cafe5635SKent Overstreet ca->sb.keys = clamp_t(int, ca->sb.nbuckets >> 7, 1558cafe5635SKent Overstreet 2, SB_JOURNAL_BUCKETS); 1559cafe5635SKent Overstreet 1560cafe5635SKent Overstreet for (j = 0; j < ca->sb.keys; j++) 1561cafe5635SKent Overstreet ca->sb.d[j] = ca->sb.first_bucket + j; 1562cafe5635SKent Overstreet } 1563cafe5635SKent Overstreet 1564cafe5635SKent Overstreet bch_btree_gc_finish(c); 1565cafe5635SKent Overstreet 1566119ba0f8SKent Overstreet err = "error starting allocator thread"; 1567cafe5635SKent Overstreet for_each_cache(ca, c, i) 1568119ba0f8SKent Overstreet if (bch_cache_allocator_start(ca)) 1569119ba0f8SKent Overstreet goto err; 1570cafe5635SKent Overstreet 1571cafe5635SKent Overstreet mutex_lock(&c->bucket_lock); 1572cafe5635SKent Overstreet for_each_cache(ca, c, i) 1573cafe5635SKent Overstreet bch_prio_write(ca); 1574cafe5635SKent Overstreet mutex_unlock(&c->bucket_lock); 1575cafe5635SKent Overstreet 1576cafe5635SKent Overstreet err = "cannot allocate new UUID bucket"; 1577cafe5635SKent Overstreet if (__uuid_write(c)) 1578cafe5635SKent Overstreet goto err_unlock_gc; 1579cafe5635SKent Overstreet 1580cafe5635SKent Overstreet err = "cannot allocate new btree root"; 1581cafe5635SKent Overstreet c->root = bch_btree_node_alloc(c, 0, &op.cl); 1582cafe5635SKent Overstreet if (IS_ERR_OR_NULL(c->root)) 1583cafe5635SKent Overstreet goto err_unlock_gc; 1584cafe5635SKent Overstreet 1585cafe5635SKent Overstreet bkey_copy_key(&c->root->key, &MAX_KEY); 158657943511SKent Overstreet bch_btree_node_write(c->root, &op.cl); 1587cafe5635SKent Overstreet 1588cafe5635SKent Overstreet bch_btree_set_root(c->root); 1589cafe5635SKent Overstreet rw_unlock(true, c->root); 1590cafe5635SKent Overstreet 1591cafe5635SKent Overstreet /* 1592cafe5635SKent Overstreet * We don't want to write the first journal entry until 1593cafe5635SKent Overstreet * everything is set up - fortunately journal entries won't be 1594cafe5635SKent Overstreet * written until the SET_CACHE_SYNC() here: 1595cafe5635SKent Overstreet */ 1596cafe5635SKent Overstreet SET_CACHE_SYNC(&c->sb, true); 1597cafe5635SKent Overstreet 1598cafe5635SKent Overstreet bch_journal_next(&c->journal); 1599cafe5635SKent Overstreet bch_journal_meta(c, &op.cl); 1600cafe5635SKent Overstreet 1601cafe5635SKent Overstreet /* Unlock */ 1602cafe5635SKent Overstreet closure_set_stopped(&c->gc.cl); 1603cafe5635SKent Overstreet closure_put(&c->gc.cl); 1604cafe5635SKent Overstreet } 1605cafe5635SKent Overstreet 1606cafe5635SKent Overstreet closure_sync(&op.cl); 1607cafe5635SKent Overstreet c->sb.last_mount = get_seconds(); 1608cafe5635SKent Overstreet bcache_write_super(c); 1609cafe5635SKent Overstreet 1610cafe5635SKent Overstreet list_for_each_entry_safe(dc, t, &uncached_devices, list) 1611cafe5635SKent Overstreet bch_cached_dev_attach(dc, c); 1612cafe5635SKent Overstreet 1613cafe5635SKent Overstreet flash_devs_run(c); 1614cafe5635SKent Overstreet 1615cafe5635SKent Overstreet return; 1616cafe5635SKent Overstreet err_unlock_gc: 1617cafe5635SKent Overstreet closure_set_stopped(&c->gc.cl); 1618cafe5635SKent Overstreet closure_put(&c->gc.cl); 1619cafe5635SKent Overstreet err: 1620cafe5635SKent Overstreet closure_sync(&op.cl); 1621cafe5635SKent Overstreet /* XXX: test this, it's broken */ 1622cafe5635SKent Overstreet bch_cache_set_error(c, err); 1623cafe5635SKent Overstreet } 1624cafe5635SKent Overstreet 1625cafe5635SKent Overstreet static bool can_attach_cache(struct cache *ca, struct cache_set *c) 1626cafe5635SKent Overstreet { 1627cafe5635SKent Overstreet return ca->sb.block_size == c->sb.block_size && 1628cafe5635SKent Overstreet ca->sb.bucket_size == c->sb.block_size && 1629cafe5635SKent Overstreet ca->sb.nr_in_set == c->sb.nr_in_set; 1630cafe5635SKent Overstreet } 1631cafe5635SKent Overstreet 1632cafe5635SKent Overstreet static const char *register_cache_set(struct cache *ca) 1633cafe5635SKent Overstreet { 1634cafe5635SKent Overstreet char buf[12]; 1635cafe5635SKent Overstreet const char *err = "cannot allocate memory"; 1636cafe5635SKent Overstreet struct cache_set *c; 1637cafe5635SKent Overstreet 1638cafe5635SKent Overstreet list_for_each_entry(c, &bch_cache_sets, list) 1639cafe5635SKent Overstreet if (!memcmp(c->sb.set_uuid, ca->sb.set_uuid, 16)) { 1640cafe5635SKent Overstreet if (c->cache[ca->sb.nr_this_dev]) 1641cafe5635SKent Overstreet return "duplicate cache set member"; 1642cafe5635SKent Overstreet 1643cafe5635SKent Overstreet if (!can_attach_cache(ca, c)) 1644cafe5635SKent Overstreet return "cache sb does not match set"; 1645cafe5635SKent Overstreet 1646cafe5635SKent Overstreet if (!CACHE_SYNC(&ca->sb)) 1647cafe5635SKent Overstreet SET_CACHE_SYNC(&c->sb, false); 1648cafe5635SKent Overstreet 1649cafe5635SKent Overstreet goto found; 1650cafe5635SKent Overstreet } 1651cafe5635SKent Overstreet 1652cafe5635SKent Overstreet c = bch_cache_set_alloc(&ca->sb); 1653cafe5635SKent Overstreet if (!c) 1654cafe5635SKent Overstreet return err; 1655cafe5635SKent Overstreet 1656cafe5635SKent Overstreet err = "error creating kobject"; 1657cafe5635SKent Overstreet if (kobject_add(&c->kobj, bcache_kobj, "%pU", c->sb.set_uuid) || 1658cafe5635SKent Overstreet kobject_add(&c->internal, &c->kobj, "internal")) 1659cafe5635SKent Overstreet goto err; 1660cafe5635SKent Overstreet 1661cafe5635SKent Overstreet if (bch_cache_accounting_add_kobjs(&c->accounting, &c->kobj)) 1662cafe5635SKent Overstreet goto err; 1663cafe5635SKent Overstreet 1664cafe5635SKent Overstreet bch_debug_init_cache_set(c); 1665cafe5635SKent Overstreet 1666cafe5635SKent Overstreet list_add(&c->list, &bch_cache_sets); 1667cafe5635SKent Overstreet found: 1668cafe5635SKent Overstreet sprintf(buf, "cache%i", ca->sb.nr_this_dev); 1669cafe5635SKent Overstreet if (sysfs_create_link(&ca->kobj, &c->kobj, "set") || 1670cafe5635SKent Overstreet sysfs_create_link(&c->kobj, &ca->kobj, buf)) 1671cafe5635SKent Overstreet goto err; 1672cafe5635SKent Overstreet 1673cafe5635SKent Overstreet if (ca->sb.seq > c->sb.seq) { 1674cafe5635SKent Overstreet c->sb.version = ca->sb.version; 1675cafe5635SKent Overstreet memcpy(c->sb.set_uuid, ca->sb.set_uuid, 16); 1676cafe5635SKent Overstreet c->sb.flags = ca->sb.flags; 1677cafe5635SKent Overstreet c->sb.seq = ca->sb.seq; 1678cafe5635SKent Overstreet pr_debug("set version = %llu", c->sb.version); 1679cafe5635SKent Overstreet } 1680cafe5635SKent Overstreet 1681cafe5635SKent Overstreet ca->set = c; 1682cafe5635SKent Overstreet ca->set->cache[ca->sb.nr_this_dev] = ca; 1683cafe5635SKent Overstreet c->cache_by_alloc[c->caches_loaded++] = ca; 1684cafe5635SKent Overstreet 1685cafe5635SKent Overstreet if (c->caches_loaded == c->sb.nr_in_set) 1686cafe5635SKent Overstreet run_cache_set(c); 1687cafe5635SKent Overstreet 1688cafe5635SKent Overstreet return NULL; 1689cafe5635SKent Overstreet err: 1690cafe5635SKent Overstreet bch_cache_set_unregister(c); 1691cafe5635SKent Overstreet return err; 1692cafe5635SKent Overstreet } 1693cafe5635SKent Overstreet 1694cafe5635SKent Overstreet /* Cache device */ 1695cafe5635SKent Overstreet 1696cafe5635SKent Overstreet void bch_cache_release(struct kobject *kobj) 1697cafe5635SKent Overstreet { 1698cafe5635SKent Overstreet struct cache *ca = container_of(kobj, struct cache, kobj); 1699cafe5635SKent Overstreet 1700cafe5635SKent Overstreet if (ca->set) 1701cafe5635SKent Overstreet ca->set->cache[ca->sb.nr_this_dev] = NULL; 1702cafe5635SKent Overstreet 1703cafe5635SKent Overstreet bch_cache_allocator_exit(ca); 1704cafe5635SKent Overstreet 1705cafe5635SKent Overstreet bio_split_pool_free(&ca->bio_split_hook); 1706cafe5635SKent Overstreet 1707cafe5635SKent Overstreet free_pages((unsigned long) ca->disk_buckets, ilog2(bucket_pages(ca))); 1708cafe5635SKent Overstreet kfree(ca->prio_buckets); 1709cafe5635SKent Overstreet vfree(ca->buckets); 1710cafe5635SKent Overstreet 1711cafe5635SKent Overstreet free_heap(&ca->heap); 1712cafe5635SKent Overstreet free_fifo(&ca->unused); 1713cafe5635SKent Overstreet free_fifo(&ca->free_inc); 1714cafe5635SKent Overstreet free_fifo(&ca->free); 1715cafe5635SKent Overstreet 1716cafe5635SKent Overstreet if (ca->sb_bio.bi_inline_vecs[0].bv_page) 1717cafe5635SKent Overstreet put_page(ca->sb_bio.bi_io_vec[0].bv_page); 1718cafe5635SKent Overstreet 1719cafe5635SKent Overstreet if (!IS_ERR_OR_NULL(ca->bdev)) { 1720cafe5635SKent Overstreet blk_sync_queue(bdev_get_queue(ca->bdev)); 1721cafe5635SKent Overstreet blkdev_put(ca->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL); 1722cafe5635SKent Overstreet } 1723cafe5635SKent Overstreet 1724cafe5635SKent Overstreet kfree(ca); 1725cafe5635SKent Overstreet module_put(THIS_MODULE); 1726cafe5635SKent Overstreet } 1727cafe5635SKent Overstreet 1728cafe5635SKent Overstreet static int cache_alloc(struct cache_sb *sb, struct cache *ca) 1729cafe5635SKent Overstreet { 1730cafe5635SKent Overstreet size_t free; 1731cafe5635SKent Overstreet struct bucket *b; 1732cafe5635SKent Overstreet 1733cafe5635SKent Overstreet __module_get(THIS_MODULE); 1734cafe5635SKent Overstreet kobject_init(&ca->kobj, &bch_cache_ktype); 1735cafe5635SKent Overstreet 1736cafe5635SKent Overstreet INIT_LIST_HEAD(&ca->discards); 1737cafe5635SKent Overstreet 1738cafe5635SKent Overstreet bio_init(&ca->journal.bio); 1739cafe5635SKent Overstreet ca->journal.bio.bi_max_vecs = 8; 1740cafe5635SKent Overstreet ca->journal.bio.bi_io_vec = ca->journal.bio.bi_inline_vecs; 1741cafe5635SKent Overstreet 1742cafe5635SKent Overstreet free = roundup_pow_of_two(ca->sb.nbuckets) >> 9; 1743cafe5635SKent Overstreet free = max_t(size_t, free, (prio_buckets(ca) + 8) * 2); 1744cafe5635SKent Overstreet 1745cafe5635SKent Overstreet if (!init_fifo(&ca->free, free, GFP_KERNEL) || 1746cafe5635SKent Overstreet !init_fifo(&ca->free_inc, free << 2, GFP_KERNEL) || 1747cafe5635SKent Overstreet !init_fifo(&ca->unused, free << 2, GFP_KERNEL) || 1748cafe5635SKent Overstreet !init_heap(&ca->heap, free << 3, GFP_KERNEL) || 1749f59fce84SKent Overstreet !(ca->buckets = vzalloc(sizeof(struct bucket) * 1750cafe5635SKent Overstreet ca->sb.nbuckets)) || 1751cafe5635SKent Overstreet !(ca->prio_buckets = kzalloc(sizeof(uint64_t) * prio_buckets(ca) * 1752cafe5635SKent Overstreet 2, GFP_KERNEL)) || 1753cafe5635SKent Overstreet !(ca->disk_buckets = alloc_bucket_pages(GFP_KERNEL, ca)) || 1754cafe5635SKent Overstreet bio_split_pool_init(&ca->bio_split_hook)) 1755f59fce84SKent Overstreet return -ENOMEM; 1756cafe5635SKent Overstreet 1757cafe5635SKent Overstreet ca->prio_last_buckets = ca->prio_buckets + prio_buckets(ca); 1758cafe5635SKent Overstreet 1759cafe5635SKent Overstreet for_each_bucket(b, ca) 1760cafe5635SKent Overstreet atomic_set(&b->pin, 0); 1761cafe5635SKent Overstreet 1762cafe5635SKent Overstreet if (bch_cache_allocator_init(ca)) 1763cafe5635SKent Overstreet goto err; 1764cafe5635SKent Overstreet 1765cafe5635SKent Overstreet return 0; 1766cafe5635SKent Overstreet err: 1767cafe5635SKent Overstreet kobject_put(&ca->kobj); 1768cafe5635SKent Overstreet return -ENOMEM; 1769cafe5635SKent Overstreet } 1770cafe5635SKent Overstreet 1771f59fce84SKent Overstreet static void register_cache(struct cache_sb *sb, struct page *sb_page, 1772cafe5635SKent Overstreet struct block_device *bdev, struct cache *ca) 1773cafe5635SKent Overstreet { 1774cafe5635SKent Overstreet char name[BDEVNAME_SIZE]; 1775cafe5635SKent Overstreet const char *err = "cannot allocate memory"; 1776cafe5635SKent Overstreet 1777f59fce84SKent Overstreet memcpy(&ca->sb, sb, sizeof(struct cache_sb)); 1778cafe5635SKent Overstreet ca->bdev = bdev; 1779cafe5635SKent Overstreet ca->bdev->bd_holder = ca; 1780cafe5635SKent Overstreet 1781f59fce84SKent Overstreet bio_init(&ca->sb_bio); 1782f59fce84SKent Overstreet ca->sb_bio.bi_max_vecs = 1; 1783f59fce84SKent Overstreet ca->sb_bio.bi_io_vec = ca->sb_bio.bi_inline_vecs; 1784f59fce84SKent Overstreet ca->sb_bio.bi_io_vec[0].bv_page = sb_page; 1785f59fce84SKent Overstreet get_page(sb_page); 1786f59fce84SKent Overstreet 1787cafe5635SKent Overstreet if (blk_queue_discard(bdev_get_queue(ca->bdev))) 1788cafe5635SKent Overstreet ca->discard = CACHE_DISCARD(&ca->sb); 1789cafe5635SKent Overstreet 1790f59fce84SKent Overstreet if (cache_alloc(sb, ca) != 0) 1791f59fce84SKent Overstreet goto err; 1792f59fce84SKent Overstreet 1793cafe5635SKent Overstreet err = "error creating kobject"; 1794cafe5635SKent Overstreet if (kobject_add(&ca->kobj, &part_to_dev(bdev->bd_part)->kobj, "bcache")) 1795cafe5635SKent Overstreet goto err; 1796cafe5635SKent Overstreet 1797cafe5635SKent Overstreet err = register_cache_set(ca); 1798cafe5635SKent Overstreet if (err) 1799cafe5635SKent Overstreet goto err; 1800cafe5635SKent Overstreet 1801cafe5635SKent Overstreet pr_info("registered cache device %s", bdevname(bdev, name)); 1802f59fce84SKent Overstreet return; 1803cafe5635SKent Overstreet err: 1804f59fce84SKent Overstreet pr_notice("error opening %s: %s", bdevname(bdev, name), err); 1805cafe5635SKent Overstreet kobject_put(&ca->kobj); 1806cafe5635SKent Overstreet } 1807cafe5635SKent Overstreet 1808cafe5635SKent Overstreet /* Global interfaces/init */ 1809cafe5635SKent Overstreet 1810cafe5635SKent Overstreet static ssize_t register_bcache(struct kobject *, struct kobj_attribute *, 1811cafe5635SKent Overstreet const char *, size_t); 1812cafe5635SKent Overstreet 1813cafe5635SKent Overstreet kobj_attribute_write(register, register_bcache); 1814cafe5635SKent Overstreet kobj_attribute_write(register_quiet, register_bcache); 1815cafe5635SKent Overstreet 1816a9dd53adSGabriel de Perthuis static bool bch_is_open_backing(struct block_device *bdev) { 1817a9dd53adSGabriel de Perthuis struct cache_set *c, *tc; 1818a9dd53adSGabriel de Perthuis struct cached_dev *dc, *t; 1819a9dd53adSGabriel de Perthuis 1820a9dd53adSGabriel de Perthuis list_for_each_entry_safe(c, tc, &bch_cache_sets, list) 1821a9dd53adSGabriel de Perthuis list_for_each_entry_safe(dc, t, &c->cached_devs, list) 1822a9dd53adSGabriel de Perthuis if (dc->bdev == bdev) 1823a9dd53adSGabriel de Perthuis return true; 1824a9dd53adSGabriel de Perthuis list_for_each_entry_safe(dc, t, &uncached_devices, list) 1825a9dd53adSGabriel de Perthuis if (dc->bdev == bdev) 1826a9dd53adSGabriel de Perthuis return true; 1827a9dd53adSGabriel de Perthuis return false; 1828a9dd53adSGabriel de Perthuis } 1829a9dd53adSGabriel de Perthuis 1830a9dd53adSGabriel de Perthuis static bool bch_is_open_cache(struct block_device *bdev) { 1831a9dd53adSGabriel de Perthuis struct cache_set *c, *tc; 1832a9dd53adSGabriel de Perthuis struct cache *ca; 1833a9dd53adSGabriel de Perthuis unsigned i; 1834a9dd53adSGabriel de Perthuis 1835a9dd53adSGabriel de Perthuis list_for_each_entry_safe(c, tc, &bch_cache_sets, list) 1836a9dd53adSGabriel de Perthuis for_each_cache(ca, c, i) 1837a9dd53adSGabriel de Perthuis if (ca->bdev == bdev) 1838a9dd53adSGabriel de Perthuis return true; 1839a9dd53adSGabriel de Perthuis return false; 1840a9dd53adSGabriel de Perthuis } 1841a9dd53adSGabriel de Perthuis 1842a9dd53adSGabriel de Perthuis static bool bch_is_open(struct block_device *bdev) { 1843a9dd53adSGabriel de Perthuis return bch_is_open_cache(bdev) || bch_is_open_backing(bdev); 1844a9dd53adSGabriel de Perthuis } 1845a9dd53adSGabriel de Perthuis 1846cafe5635SKent Overstreet static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr, 1847cafe5635SKent Overstreet const char *buffer, size_t size) 1848cafe5635SKent Overstreet { 1849cafe5635SKent Overstreet ssize_t ret = size; 1850cafe5635SKent Overstreet const char *err = "cannot allocate memory"; 1851cafe5635SKent Overstreet char *path = NULL; 1852cafe5635SKent Overstreet struct cache_sb *sb = NULL; 1853cafe5635SKent Overstreet struct block_device *bdev = NULL; 1854cafe5635SKent Overstreet struct page *sb_page = NULL; 1855cafe5635SKent Overstreet 1856cafe5635SKent Overstreet if (!try_module_get(THIS_MODULE)) 1857cafe5635SKent Overstreet return -EBUSY; 1858cafe5635SKent Overstreet 1859cafe5635SKent Overstreet mutex_lock(&bch_register_lock); 1860cafe5635SKent Overstreet 1861cafe5635SKent Overstreet if (!(path = kstrndup(buffer, size, GFP_KERNEL)) || 1862cafe5635SKent Overstreet !(sb = kmalloc(sizeof(struct cache_sb), GFP_KERNEL))) 1863cafe5635SKent Overstreet goto err; 1864cafe5635SKent Overstreet 1865cafe5635SKent Overstreet err = "failed to open device"; 1866cafe5635SKent Overstreet bdev = blkdev_get_by_path(strim(path), 1867cafe5635SKent Overstreet FMODE_READ|FMODE_WRITE|FMODE_EXCL, 1868cafe5635SKent Overstreet sb); 1869f59fce84SKent Overstreet if (IS_ERR(bdev)) { 1870a9dd53adSGabriel de Perthuis if (bdev == ERR_PTR(-EBUSY)) { 1871a9dd53adSGabriel de Perthuis bdev = lookup_bdev(strim(path)); 1872a9dd53adSGabriel de Perthuis if (!IS_ERR(bdev) && bch_is_open(bdev)) 1873a9dd53adSGabriel de Perthuis err = "device already registered"; 1874a9dd53adSGabriel de Perthuis else 1875cafe5635SKent Overstreet err = "device busy"; 1876a9dd53adSGabriel de Perthuis } 1877cafe5635SKent Overstreet goto err; 1878f59fce84SKent Overstreet } 1879f59fce84SKent Overstreet 1880f59fce84SKent Overstreet err = "failed to set blocksize"; 1881f59fce84SKent Overstreet if (set_blocksize(bdev, 4096)) 1882f59fce84SKent Overstreet goto err_close; 1883cafe5635SKent Overstreet 1884cafe5635SKent Overstreet err = read_super(sb, bdev, &sb_page); 1885cafe5635SKent Overstreet if (err) 1886cafe5635SKent Overstreet goto err_close; 1887cafe5635SKent Overstreet 18882903381fSKent Overstreet if (SB_IS_BDEV(sb)) { 1889cafe5635SKent Overstreet struct cached_dev *dc = kzalloc(sizeof(*dc), GFP_KERNEL); 1890f59fce84SKent Overstreet if (!dc) 1891f59fce84SKent Overstreet goto err_close; 1892cafe5635SKent Overstreet 1893f59fce84SKent Overstreet register_bdev(sb, sb_page, bdev, dc); 1894cafe5635SKent Overstreet } else { 1895cafe5635SKent Overstreet struct cache *ca = kzalloc(sizeof(*ca), GFP_KERNEL); 1896f59fce84SKent Overstreet if (!ca) 1897f59fce84SKent Overstreet goto err_close; 1898cafe5635SKent Overstreet 1899f59fce84SKent Overstreet register_cache(sb, sb_page, bdev, ca); 1900cafe5635SKent Overstreet } 1901f59fce84SKent Overstreet out: 1902f59fce84SKent Overstreet if (sb_page) 1903cafe5635SKent Overstreet put_page(sb_page); 1904f59fce84SKent Overstreet kfree(sb); 1905f59fce84SKent Overstreet kfree(path); 1906f59fce84SKent Overstreet mutex_unlock(&bch_register_lock); 1907f59fce84SKent Overstreet module_put(THIS_MODULE); 1908f59fce84SKent Overstreet return ret; 1909f59fce84SKent Overstreet 1910cafe5635SKent Overstreet err_close: 1911cafe5635SKent Overstreet blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL); 1912cafe5635SKent Overstreet err: 1913cafe5635SKent Overstreet if (attr != &ksysfs_register_quiet) 1914cafe5635SKent Overstreet pr_info("error opening %s: %s", path, err); 1915cafe5635SKent Overstreet ret = -EINVAL; 1916f59fce84SKent Overstreet goto out; 1917cafe5635SKent Overstreet } 1918cafe5635SKent Overstreet 1919cafe5635SKent Overstreet static int bcache_reboot(struct notifier_block *n, unsigned long code, void *x) 1920cafe5635SKent Overstreet { 1921cafe5635SKent Overstreet if (code == SYS_DOWN || 1922cafe5635SKent Overstreet code == SYS_HALT || 1923cafe5635SKent Overstreet code == SYS_POWER_OFF) { 1924cafe5635SKent Overstreet DEFINE_WAIT(wait); 1925cafe5635SKent Overstreet unsigned long start = jiffies; 1926cafe5635SKent Overstreet bool stopped = false; 1927cafe5635SKent Overstreet 1928cafe5635SKent Overstreet struct cache_set *c, *tc; 1929cafe5635SKent Overstreet struct cached_dev *dc, *tdc; 1930cafe5635SKent Overstreet 1931cafe5635SKent Overstreet mutex_lock(&bch_register_lock); 1932cafe5635SKent Overstreet 1933cafe5635SKent Overstreet if (list_empty(&bch_cache_sets) && 1934cafe5635SKent Overstreet list_empty(&uncached_devices)) 1935cafe5635SKent Overstreet goto out; 1936cafe5635SKent Overstreet 1937cafe5635SKent Overstreet pr_info("Stopping all devices:"); 1938cafe5635SKent Overstreet 1939cafe5635SKent Overstreet list_for_each_entry_safe(c, tc, &bch_cache_sets, list) 1940cafe5635SKent Overstreet bch_cache_set_stop(c); 1941cafe5635SKent Overstreet 1942cafe5635SKent Overstreet list_for_each_entry_safe(dc, tdc, &uncached_devices, list) 1943cafe5635SKent Overstreet bcache_device_stop(&dc->disk); 1944cafe5635SKent Overstreet 1945cafe5635SKent Overstreet /* What's a condition variable? */ 1946cafe5635SKent Overstreet while (1) { 1947cafe5635SKent Overstreet long timeout = start + 2 * HZ - jiffies; 1948cafe5635SKent Overstreet 1949cafe5635SKent Overstreet stopped = list_empty(&bch_cache_sets) && 1950cafe5635SKent Overstreet list_empty(&uncached_devices); 1951cafe5635SKent Overstreet 1952cafe5635SKent Overstreet if (timeout < 0 || stopped) 1953cafe5635SKent Overstreet break; 1954cafe5635SKent Overstreet 1955cafe5635SKent Overstreet prepare_to_wait(&unregister_wait, &wait, 1956cafe5635SKent Overstreet TASK_UNINTERRUPTIBLE); 1957cafe5635SKent Overstreet 1958cafe5635SKent Overstreet mutex_unlock(&bch_register_lock); 1959cafe5635SKent Overstreet schedule_timeout(timeout); 1960cafe5635SKent Overstreet mutex_lock(&bch_register_lock); 1961cafe5635SKent Overstreet } 1962cafe5635SKent Overstreet 1963cafe5635SKent Overstreet finish_wait(&unregister_wait, &wait); 1964cafe5635SKent Overstreet 1965cafe5635SKent Overstreet if (stopped) 1966cafe5635SKent Overstreet pr_info("All devices stopped"); 1967cafe5635SKent Overstreet else 1968cafe5635SKent Overstreet pr_notice("Timeout waiting for devices to be closed"); 1969cafe5635SKent Overstreet out: 1970cafe5635SKent Overstreet mutex_unlock(&bch_register_lock); 1971cafe5635SKent Overstreet } 1972cafe5635SKent Overstreet 1973cafe5635SKent Overstreet return NOTIFY_DONE; 1974cafe5635SKent Overstreet } 1975cafe5635SKent Overstreet 1976cafe5635SKent Overstreet static struct notifier_block reboot = { 1977cafe5635SKent Overstreet .notifier_call = bcache_reboot, 1978cafe5635SKent Overstreet .priority = INT_MAX, /* before any real devices */ 1979cafe5635SKent Overstreet }; 1980cafe5635SKent Overstreet 1981cafe5635SKent Overstreet static void bcache_exit(void) 1982cafe5635SKent Overstreet { 1983cafe5635SKent Overstreet bch_debug_exit(); 1984cafe5635SKent Overstreet bch_writeback_exit(); 1985cafe5635SKent Overstreet bch_request_exit(); 1986cafe5635SKent Overstreet bch_btree_exit(); 1987cafe5635SKent Overstreet if (bcache_kobj) 1988cafe5635SKent Overstreet kobject_put(bcache_kobj); 1989cafe5635SKent Overstreet if (bcache_wq) 1990cafe5635SKent Overstreet destroy_workqueue(bcache_wq); 1991cafe5635SKent Overstreet unregister_blkdev(bcache_major, "bcache"); 1992cafe5635SKent Overstreet unregister_reboot_notifier(&reboot); 1993cafe5635SKent Overstreet } 1994cafe5635SKent Overstreet 1995cafe5635SKent Overstreet static int __init bcache_init(void) 1996cafe5635SKent Overstreet { 1997cafe5635SKent Overstreet static const struct attribute *files[] = { 1998cafe5635SKent Overstreet &ksysfs_register.attr, 1999cafe5635SKent Overstreet &ksysfs_register_quiet.attr, 2000cafe5635SKent Overstreet NULL 2001cafe5635SKent Overstreet }; 2002cafe5635SKent Overstreet 2003cafe5635SKent Overstreet mutex_init(&bch_register_lock); 2004cafe5635SKent Overstreet init_waitqueue_head(&unregister_wait); 2005cafe5635SKent Overstreet register_reboot_notifier(&reboot); 200607e86ccbSKent Overstreet closure_debug_init(); 2007cafe5635SKent Overstreet 2008cafe5635SKent Overstreet bcache_major = register_blkdev(0, "bcache"); 2009cafe5635SKent Overstreet if (bcache_major < 0) 2010cafe5635SKent Overstreet return bcache_major; 2011cafe5635SKent Overstreet 2012cafe5635SKent Overstreet if (!(bcache_wq = create_workqueue("bcache")) || 2013cafe5635SKent Overstreet !(bcache_kobj = kobject_create_and_add("bcache", fs_kobj)) || 2014cafe5635SKent Overstreet sysfs_create_files(bcache_kobj, files) || 2015cafe5635SKent Overstreet bch_btree_init() || 2016cafe5635SKent Overstreet bch_request_init() || 2017cafe5635SKent Overstreet bch_writeback_init() || 2018cafe5635SKent Overstreet bch_debug_init(bcache_kobj)) 2019cafe5635SKent Overstreet goto err; 2020cafe5635SKent Overstreet 2021cafe5635SKent Overstreet return 0; 2022cafe5635SKent Overstreet err: 2023cafe5635SKent Overstreet bcache_exit(); 2024cafe5635SKent Overstreet return -ENOMEM; 2025cafe5635SKent Overstreet } 2026cafe5635SKent Overstreet 2027cafe5635SKent Overstreet module_exit(bcache_exit); 2028cafe5635SKent Overstreet module_init(bcache_init); 2029