alloc.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Primary bucket allocation code
  4. *
  5. * Copyright 2012 Google, Inc.
  6. *
  7. * Allocation in bcache is done in terms of buckets:
  8. *
  9. * Each bucket has associated an 8 bit gen; this gen corresponds to the gen in
  10. * btree pointers - they must match for the pointer to be considered valid.
  11. *
  12. * Thus (assuming a bucket has no dirty data or metadata in it) we can reuse a
  13. * bucket simply by incrementing its gen.
  14. *
  15. * The gens (along with the priorities; it's really the gens are important but
  16. * the code is named as if it's the priorities) are written in an arbitrary list
  17. * of buckets on disk, with a pointer to them in the journal header.
  18. *
  19. * When we invalidate a bucket, we have to write its new gen to disk and wait
  20. * for that write to complete before we use it - otherwise after a crash we
  21. * could have pointers that appeared to be good but pointed to data that had
  22. * been overwritten.
  23. *
  24. * Since the gens and priorities are all stored contiguously on disk, we can
  25. * batch this up: We fill up the free_inc list with freshly invalidated buckets,
  26. * call prio_write(), and when prio_write() finishes we pull buckets off the
  27. * free_inc list and optionally discard them.
  28. *
  29. * free_inc isn't the only freelist - if it was, we'd often to sleep while
  30. * priorities and gens were being written before we could allocate. c->free is a
  31. * smaller freelist, and buckets on that list are always ready to be used.
  32. *
  33. * If we've got discards enabled, that happens when a bucket moves from the
  34. * free_inc list to the free list.
  35. *
  36. * There is another freelist, because sometimes we have buckets that we know
  37. * have nothing pointing into them - these we can reuse without waiting for
  38. * priorities to be rewritten. These come from freed btree nodes and buckets
  39. * that garbage collection discovered no longer had valid keys pointing into
  40. * them (because they were overwritten). That's the unused list - buckets on the
  41. * unused list move to the free list, optionally being discarded in the process.
  42. *
  43. * It's also important to ensure that gens don't wrap around - with respect to
  44. * either the oldest gen in the btree or the gen on disk. This is quite
  45. * difficult to do in practice, but we explicitly guard against it anyways - if
  46. * a bucket is in danger of wrapping around we simply skip invalidating it that
  47. * time around, and we garbage collect or rewrite the priorities sooner than we
  48. * would have otherwise.
  49. *
  50. * bch_bucket_alloc() allocates a single bucket from a specific cache.
  51. *
  52. * bch_bucket_alloc_set() allocates one or more buckets from different caches
  53. * out of a cache set.
  54. *
  55. * free_some_buckets() drives all the processes described above. It's called
  56. * from bch_bucket_alloc() and a few other places that need to make sure free
  57. * buckets are ready.
  58. *
  59. * invalidate_buckets_(lru|fifo)() find buckets that are available to be
  60. * invalidated, and then invalidate them and stick them on the free_inc list -
  61. * in either lru or fifo order.
  62. */
  63. #include "bcache.h"
  64. #include "btree.h"
  65. #include <linux/blkdev.h>
  66. #include <linux/kthread.h>
  67. #include <linux/random.h>
  68. #include <trace/events/bcache.h>
  69. #define MAX_OPEN_BUCKETS 128
  70. /* Bucket heap / gen */
  71. uint8_t bch_inc_gen(struct cache *ca, struct bucket *b)
  72. {
  73. uint8_t ret = ++b->gen;
  74. ca->set->need_gc = max(ca->set->need_gc, bucket_gc_gen(b));
  75. WARN_ON_ONCE(ca->set->need_gc > BUCKET_GC_GEN_MAX);
  76. return ret;
  77. }
  78. void bch_rescale_priorities(struct cache_set *c, int sectors)
  79. {
  80. struct cache *ca;
  81. struct bucket *b;
  82. unsigned int next = c->nbuckets * c->sb.bucket_size / 1024;
  83. unsigned int i;
  84. int r;
  85. atomic_sub(sectors, &c->rescale);
  86. do {
  87. r = atomic_read(&c->rescale);
  88. if (r >= 0)
  89. return;
  90. } while (atomic_cmpxchg(&c->rescale, r, r + next) != r);
  91. mutex_lock(&c->bucket_lock);
  92. c->min_prio = USHRT_MAX;
  93. for_each_cache(ca, c, i)
  94. for_each_bucket(b, ca)
  95. if (b->prio &&
  96. b->prio != BTREE_PRIO &&
  97. !atomic_read(&b->pin)) {
  98. b->prio--;
  99. c->min_prio = min(c->min_prio, b->prio);
  100. }
  101. mutex_unlock(&c->bucket_lock);
  102. }
  103. /*
  104. * Background allocation thread: scans for buckets to be invalidated,
  105. * invalidates them, rewrites prios/gens (marking them as invalidated on disk),
  106. * then optionally issues discard commands to the newly free buckets, then puts
  107. * them on the various freelists.
  108. */
  109. static inline bool can_inc_bucket_gen(struct bucket *b)
  110. {
  111. return bucket_gc_gen(b) < BUCKET_GC_GEN_MAX;
  112. }
  113. bool bch_can_invalidate_bucket(struct cache *ca, struct bucket *b)
  114. {
  115. BUG_ON(!ca->set->gc_mark_valid);
  116. return (!GC_MARK(b) ||
  117. GC_MARK(b) == GC_MARK_RECLAIMABLE) &&
  118. !atomic_read(&b->pin) &&
  119. can_inc_bucket_gen(b);
  120. }
  121. void __bch_invalidate_one_bucket(struct cache *ca, struct bucket *b)
  122. {
  123. lockdep_assert_held(&ca->set->bucket_lock);
  124. BUG_ON(GC_MARK(b) && GC_MARK(b) != GC_MARK_RECLAIMABLE);
  125. if (GC_SECTORS_USED(b))
  126. trace_bcache_invalidate(ca, b - ca->buckets);
  127. bch_inc_gen(ca, b);
  128. b->prio = INITIAL_PRIO;
  129. atomic_inc(&b->pin);
  130. }
  131. static void bch_invalidate_one_bucket(struct cache *ca, struct bucket *b)
  132. {
  133. __bch_invalidate_one_bucket(ca, b);
  134. fifo_push(&ca->free_inc, b - ca->buckets);
  135. }
  136. /*
  137. * Determines what order we're going to reuse buckets, smallest bucket_prio()
  138. * first: we also take into account the number of sectors of live data in that
  139. * bucket, and in order for that multiply to make sense we have to scale bucket
  140. *
  141. * Thus, we scale the bucket priorities so that the bucket with the smallest
  142. * prio is worth 1/8th of what INITIAL_PRIO is worth.
  143. */
  144. #define bucket_prio(b) \
  145. ({ \
  146. unsigned int min_prio = (INITIAL_PRIO - ca->set->min_prio) / 8; \
  147. \
  148. (b->prio - ca->set->min_prio + min_prio) * GC_SECTORS_USED(b); \
  149. })
  150. #define bucket_max_cmp(l, r) (bucket_prio(l) < bucket_prio(r))
  151. #define bucket_min_cmp(l, r) (bucket_prio(l) > bucket_prio(r))
  152. static void invalidate_buckets_lru(struct cache *ca)
  153. {
  154. struct bucket *b;
  155. ssize_t i;
  156. ca->heap.used = 0;
  157. for_each_bucket(b, ca) {
  158. if (!bch_can_invalidate_bucket(ca, b))
  159. continue;
  160. if (!heap_full(&ca->heap))
  161. heap_add(&ca->heap, b, bucket_max_cmp);
  162. else if (bucket_max_cmp(b, heap_peek(&ca->heap))) {
  163. ca->heap.data[0] = b;
  164. heap_sift(&ca->heap, 0, bucket_max_cmp);
  165. }
  166. }
  167. for (i = ca->heap.used / 2 - 1; i >= 0; --i)
  168. heap_sift(&ca->heap, i, bucket_min_cmp);
  169. while (!fifo_full(&ca->free_inc)) {
  170. if (!heap_pop(&ca->heap, b, bucket_min_cmp)) {
  171. /*
  172. * We don't want to be calling invalidate_buckets()
  173. * multiple times when it can't do anything
  174. */
  175. ca->invalidate_needs_gc = 1;
  176. wake_up_gc(ca->set);
  177. return;
  178. }
  179. bch_invalidate_one_bucket(ca, b);
  180. }
  181. }
  182. static void invalidate_buckets_fifo(struct cache *ca)
  183. {
  184. struct bucket *b;
  185. size_t checked = 0;
  186. while (!fifo_full(&ca->free_inc)) {
  187. if (ca->fifo_last_bucket < ca->sb.first_bucket ||
  188. ca->fifo_last_bucket >= ca->sb.nbuckets)
  189. ca->fifo_last_bucket = ca->sb.first_bucket;
  190. b = ca->buckets + ca->fifo_last_bucket++;
  191. if (bch_can_invalidate_bucket(ca, b))
  192. bch_invalidate_one_bucket(ca, b);
  193. if (++checked >= ca->sb.nbuckets) {
  194. ca->invalidate_needs_gc = 1;
  195. wake_up_gc(ca->set);
  196. return;
  197. }
  198. }
  199. }
  200. static void invalidate_buckets_random(struct cache *ca)
  201. {
  202. struct bucket *b;
  203. size_t checked = 0;
  204. while (!fifo_full(&ca->free_inc)) {
  205. size_t n;
  206. get_random_bytes(&n, sizeof(n));
  207. n %= (size_t) (ca->sb.nbuckets - ca->sb.first_bucket);
  208. n += ca->sb.first_bucket;
  209. b = ca->buckets + n;
  210. if (bch_can_invalidate_bucket(ca, b))
  211. bch_invalidate_one_bucket(ca, b);
  212. if (++checked >= ca->sb.nbuckets / 2) {
  213. ca->invalidate_needs_gc = 1;
  214. wake_up_gc(ca->set);
  215. return;
  216. }
  217. }
  218. }
  219. static void invalidate_buckets(struct cache *ca)
  220. {
  221. BUG_ON(ca->invalidate_needs_gc);
  222. switch (CACHE_REPLACEMENT(&ca->sb)) {
  223. case CACHE_REPLACEMENT_LRU:
  224. invalidate_buckets_lru(ca);
  225. break;
  226. case CACHE_REPLACEMENT_FIFO:
  227. invalidate_buckets_fifo(ca);
  228. break;
  229. case CACHE_REPLACEMENT_RANDOM:
  230. invalidate_buckets_random(ca);
  231. break;
  232. }
  233. }
  234. #define allocator_wait(ca, cond) \
  235. do { \
  236. while (1) { \
  237. set_current_state(TASK_INTERRUPTIBLE); \
  238. if (cond) \
  239. break; \
  240. \
  241. mutex_unlock(&(ca)->set->bucket_lock); \
  242. if (kthread_should_stop() || \
  243. test_bit(CACHE_SET_IO_DISABLE, &ca->set->flags)) { \
  244. set_current_state(TASK_RUNNING); \
  245. goto out; \
  246. } \
  247. \
  248. schedule(); \
  249. mutex_lock(&(ca)->set->bucket_lock); \
  250. } \
  251. __set_current_state(TASK_RUNNING); \
  252. } while (0)
  253. static int bch_allocator_push(struct cache *ca, long bucket)
  254. {
  255. unsigned int i;
  256. /* Prios/gens are actually the most important reserve */
  257. if (fifo_push(&ca->free[RESERVE_PRIO], bucket))
  258. return true;
  259. for (i = 0; i < RESERVE_NR; i++)
  260. if (fifo_push(&ca->free[i], bucket))
  261. return true;
  262. return false;
  263. }
  264. static int bch_allocator_thread(void *arg)
  265. {
  266. struct cache *ca = arg;
  267. mutex_lock(&ca->set->bucket_lock);
  268. while (1) {
  269. /*
  270. * First, we pull buckets off of the unused and free_inc lists,
  271. * possibly issue discards to them, then we add the bucket to
  272. * the free list:
  273. */
  274. while (1) {
  275. long bucket;
  276. if (!fifo_pop(&ca->free_inc, bucket))
  277. break;
  278. if (ca->discard) {
  279. mutex_unlock(&ca->set->bucket_lock);
  280. blkdev_issue_discard(ca->bdev,
  281. bucket_to_sector(ca->set, bucket),
  282. ca->sb.bucket_size, GFP_KERNEL, 0);
  283. mutex_lock(&ca->set->bucket_lock);
  284. }
  285. allocator_wait(ca, bch_allocator_push(ca, bucket));
  286. wake_up(&ca->set->btree_cache_wait);
  287. wake_up(&ca->set->bucket_wait);
  288. }
  289. /*
  290. * We've run out of free buckets, we need to find some buckets
  291. * we can invalidate. First, invalidate them in memory and add
  292. * them to the free_inc list:
  293. */
  294. retry_invalidate:
  295. allocator_wait(ca, ca->set->gc_mark_valid &&
  296. !ca->invalidate_needs_gc);
  297. invalidate_buckets(ca);
  298. /*
  299. * Now, we write their new gens to disk so we can start writing
  300. * new stuff to them:
  301. */
  302. allocator_wait(ca, !atomic_read(&ca->set->prio_blocked));
  303. if (CACHE_SYNC(&ca->set->sb)) {
  304. /*
  305. * This could deadlock if an allocation with a btree
  306. * node locked ever blocked - having the btree node
  307. * locked would block garbage collection, but here we're
  308. * waiting on garbage collection before we invalidate
  309. * and free anything.
  310. *
  311. * But this should be safe since the btree code always
  312. * uses btree_check_reserve() before allocating now, and
  313. * if it fails it blocks without btree nodes locked.
  314. */
  315. if (!fifo_full(&ca->free_inc))
  316. goto retry_invalidate;
  317. if (bch_prio_write(ca, false) < 0) {
  318. ca->invalidate_needs_gc = 1;
  319. wake_up_gc(ca->set);
  320. }
  321. }
  322. }
  323. out:
  324. wait_for_kthread_stop();
  325. return 0;
  326. }
  327. /* Allocation */
  328. long bch_bucket_alloc(struct cache *ca, unsigned int reserve, bool wait)
  329. {
  330. DEFINE_WAIT(w);
  331. struct bucket *b;
  332. long r;
  333. /* No allocation if CACHE_SET_IO_DISABLE bit is set */
  334. if (unlikely(test_bit(CACHE_SET_IO_DISABLE, &ca->set->flags)))
  335. return -1;
  336. /* fastpath */
  337. if (fifo_pop(&ca->free[RESERVE_NONE], r) ||
  338. fifo_pop(&ca->free[reserve], r))
  339. goto out;
  340. if (!wait) {
  341. trace_bcache_alloc_fail(ca, reserve);
  342. return -1;
  343. }
  344. do {
  345. prepare_to_wait(&ca->set->bucket_wait, &w,
  346. TASK_UNINTERRUPTIBLE);
  347. mutex_unlock(&ca->set->bucket_lock);
  348. schedule();
  349. mutex_lock(&ca->set->bucket_lock);
  350. } while (!fifo_pop(&ca->free[RESERVE_NONE], r) &&
  351. !fifo_pop(&ca->free[reserve], r));
  352. finish_wait(&ca->set->bucket_wait, &w);
  353. out:
  354. if (ca->alloc_thread)
  355. wake_up_process(ca->alloc_thread);
  356. trace_bcache_alloc(ca, reserve);
  357. if (expensive_debug_checks(ca->set)) {
  358. size_t iter;
  359. long i;
  360. unsigned int j;
  361. for (iter = 0; iter < prio_buckets(ca) * 2; iter++)
  362. BUG_ON(ca->prio_buckets[iter] == (uint64_t) r);
  363. for (j = 0; j < RESERVE_NR; j++)
  364. fifo_for_each(i, &ca->free[j], iter)
  365. BUG_ON(i == r);
  366. fifo_for_each(i, &ca->free_inc, iter)
  367. BUG_ON(i == r);
  368. }
  369. b = ca->buckets + r;
  370. BUG_ON(atomic_read(&b->pin) != 1);
  371. SET_GC_SECTORS_USED(b, ca->sb.bucket_size);
  372. if (reserve <= RESERVE_PRIO) {
  373. SET_GC_MARK(b, GC_MARK_METADATA);
  374. SET_GC_MOVE(b, 0);
  375. b->prio = BTREE_PRIO;
  376. } else {
  377. SET_GC_MARK(b, GC_MARK_RECLAIMABLE);
  378. SET_GC_MOVE(b, 0);
  379. b->prio = INITIAL_PRIO;
  380. }
  381. if (ca->set->avail_nbuckets > 0) {
  382. ca->set->avail_nbuckets--;
  383. bch_update_bucket_in_use(ca->set, &ca->set->gc_stats);
  384. }
  385. return r;
  386. }
  387. void __bch_bucket_free(struct cache *ca, struct bucket *b)
  388. {
  389. SET_GC_MARK(b, 0);
  390. SET_GC_SECTORS_USED(b, 0);
  391. if (ca->set->avail_nbuckets < ca->set->nbuckets) {
  392. ca->set->avail_nbuckets++;
  393. bch_update_bucket_in_use(ca->set, &ca->set->gc_stats);
  394. }
  395. }
  396. void bch_bucket_free(struct cache_set *c, struct bkey *k)
  397. {
  398. unsigned int i;
  399. for (i = 0; i < KEY_PTRS(k); i++)
  400. __bch_bucket_free(PTR_CACHE(c, k, i),
  401. PTR_BUCKET(c, k, i));
  402. }
  403. int __bch_bucket_alloc_set(struct cache_set *c, unsigned int reserve,
  404. struct bkey *k, int n, bool wait)
  405. {
  406. int i;
  407. /* No allocation if CACHE_SET_IO_DISABLE bit is set */
  408. if (unlikely(test_bit(CACHE_SET_IO_DISABLE, &c->flags)))
  409. return -1;
  410. lockdep_assert_held(&c->bucket_lock);
  411. BUG_ON(!n || n > c->caches_loaded || n > MAX_CACHES_PER_SET);
  412. bkey_init(k);
  413. /* sort by free space/prio of oldest data in caches */
  414. for (i = 0; i < n; i++) {
  415. struct cache *ca = c->cache_by_alloc[i];
  416. long b = bch_bucket_alloc(ca, reserve, wait);
  417. if (b == -1)
  418. goto err;
  419. k->ptr[i] = MAKE_PTR(ca->buckets[b].gen,
  420. bucket_to_sector(c, b),
  421. ca->sb.nr_this_dev);
  422. SET_KEY_PTRS(k, i + 1);
  423. }
  424. return 0;
  425. err:
  426. bch_bucket_free(c, k);
  427. bkey_put(c, k);
  428. return -1;
  429. }
  430. int bch_bucket_alloc_set(struct cache_set *c, unsigned int reserve,
  431. struct bkey *k, int n, bool wait)
  432. {
  433. int ret;
  434. mutex_lock(&c->bucket_lock);
  435. ret = __bch_bucket_alloc_set(c, reserve, k, n, wait);
  436. mutex_unlock(&c->bucket_lock);
  437. return ret;
  438. }
  439. /* Sector allocator */
  440. struct open_bucket {
  441. struct list_head list;
  442. unsigned int last_write_point;
  443. unsigned int sectors_free;
  444. BKEY_PADDED(key);
  445. };
  446. /*
  447. * We keep multiple buckets open for writes, and try to segregate different
  448. * write streams for better cache utilization: first we try to segregate flash
  449. * only volume write streams from cached devices, secondly we look for a bucket
  450. * where the last write to it was sequential with the current write, and
  451. * failing that we look for a bucket that was last used by the same task.
  452. *
  453. * The ideas is if you've got multiple tasks pulling data into the cache at the
  454. * same time, you'll get better cache utilization if you try to segregate their
  455. * data and preserve locality.
  456. *
  457. * For example, dirty sectors of flash only volume is not reclaimable, if their
  458. * dirty sectors mixed with dirty sectors of cached device, such buckets will
  459. * be marked as dirty and won't be reclaimed, though the dirty data of cached
  460. * device have been written back to backend device.
  461. *
  462. * And say you've starting Firefox at the same time you're copying a
  463. * bunch of files. Firefox will likely end up being fairly hot and stay in the
  464. * cache awhile, but the data you copied might not be; if you wrote all that
  465. * data to the same buckets it'd get invalidated at the same time.
  466. *
  467. * Both of those tasks will be doing fairly random IO so we can't rely on
  468. * detecting sequential IO to segregate their data, but going off of the task
  469. * should be a sane heuristic.
  470. */
  471. static struct open_bucket *pick_data_bucket(struct cache_set *c,
  472. const struct bkey *search,
  473. unsigned int write_point,
  474. struct bkey *alloc)
  475. {
  476. struct open_bucket *ret, *ret_task = NULL;
  477. list_for_each_entry_reverse(ret, &c->data_buckets, list)
  478. if (UUID_FLASH_ONLY(&c->uuids[KEY_INODE(&ret->key)]) !=
  479. UUID_FLASH_ONLY(&c->uuids[KEY_INODE(search)]))
  480. continue;
  481. else if (!bkey_cmp(&ret->key, search))
  482. goto found;
  483. else if (ret->last_write_point == write_point)
  484. ret_task = ret;
  485. ret = ret_task ?: list_first_entry(&c->data_buckets,
  486. struct open_bucket, list);
  487. found:
  488. if (!ret->sectors_free && KEY_PTRS(alloc)) {
  489. ret->sectors_free = c->sb.bucket_size;
  490. bkey_copy(&ret->key, alloc);
  491. bkey_init(alloc);
  492. }
  493. if (!ret->sectors_free)
  494. ret = NULL;
  495. return ret;
  496. }
  497. /*
  498. * Allocates some space in the cache to write to, and k to point to the newly
  499. * allocated space, and updates KEY_SIZE(k) and KEY_OFFSET(k) (to point to the
  500. * end of the newly allocated space).
  501. *
  502. * May allocate fewer sectors than @sectors, KEY_SIZE(k) indicates how many
  503. * sectors were actually allocated.
  504. *
  505. * If s->writeback is true, will not fail.
  506. */
  507. bool bch_alloc_sectors(struct cache_set *c,
  508. struct bkey *k,
  509. unsigned int sectors,
  510. unsigned int write_point,
  511. unsigned int write_prio,
  512. bool wait)
  513. {
  514. struct open_bucket *b;
  515. BKEY_PADDED(key) alloc;
  516. unsigned int i;
  517. /*
  518. * We might have to allocate a new bucket, which we can't do with a
  519. * spinlock held. So if we have to allocate, we drop the lock, allocate
  520. * and then retry. KEY_PTRS() indicates whether alloc points to
  521. * allocated bucket(s).
  522. */
  523. bkey_init(&alloc.key);
  524. spin_lock(&c->data_bucket_lock);
  525. while (!(b = pick_data_bucket(c, k, write_point, &alloc.key))) {
  526. unsigned int watermark = write_prio
  527. ? RESERVE_MOVINGGC
  528. : RESERVE_NONE;
  529. spin_unlock(&c->data_bucket_lock);
  530. if (bch_bucket_alloc_set(c, watermark, &alloc.key, 1, wait))
  531. return false;
  532. spin_lock(&c->data_bucket_lock);
  533. }
  534. /*
  535. * If we had to allocate, we might race and not need to allocate the
  536. * second time we call pick_data_bucket(). If we allocated a bucket but
  537. * didn't use it, drop the refcount bch_bucket_alloc_set() took:
  538. */
  539. if (KEY_PTRS(&alloc.key))
  540. bkey_put(c, &alloc.key);
  541. for (i = 0; i < KEY_PTRS(&b->key); i++)
  542. EBUG_ON(ptr_stale(c, &b->key, i));
  543. /* Set up the pointer to the space we're allocating: */
  544. for (i = 0; i < KEY_PTRS(&b->key); i++)
  545. k->ptr[i] = b->key.ptr[i];
  546. sectors = min(sectors, b->sectors_free);
  547. SET_KEY_OFFSET(k, KEY_OFFSET(k) + sectors);
  548. SET_KEY_SIZE(k, sectors);
  549. SET_KEY_PTRS(k, KEY_PTRS(&b->key));
  550. /*
  551. * Move b to the end of the lru, and keep track of what this bucket was
  552. * last used for:
  553. */
  554. list_move_tail(&b->list, &c->data_buckets);
  555. bkey_copy_key(&b->key, k);
  556. b->last_write_point = write_point;
  557. b->sectors_free -= sectors;
  558. for (i = 0; i < KEY_PTRS(&b->key); i++) {
  559. SET_PTR_OFFSET(&b->key, i, PTR_OFFSET(&b->key, i) + sectors);
  560. atomic_long_add(sectors,
  561. &PTR_CACHE(c, &b->key, i)->sectors_written);
  562. }
  563. if (b->sectors_free < c->sb.block_size)
  564. b->sectors_free = 0;
  565. /*
  566. * k takes refcounts on the buckets it points to until it's inserted
  567. * into the btree, but if we're done with this bucket we just transfer
  568. * get_data_bucket()'s refcount.
  569. */
  570. if (b->sectors_free)
  571. for (i = 0; i < KEY_PTRS(&b->key); i++)
  572. atomic_inc(&PTR_BUCKET(c, &b->key, i)->pin);
  573. spin_unlock(&c->data_bucket_lock);
  574. return true;
  575. }
  576. /* Init */
  577. void bch_open_buckets_free(struct cache_set *c)
  578. {
  579. struct open_bucket *b;
  580. while (!list_empty(&c->data_buckets)) {
  581. b = list_first_entry(&c->data_buckets,
  582. struct open_bucket, list);
  583. list_del(&b->list);
  584. kfree(b);
  585. }
  586. }
  587. int bch_open_buckets_alloc(struct cache_set *c)
  588. {
  589. int i;
  590. spin_lock_init(&c->data_bucket_lock);
  591. for (i = 0; i < MAX_OPEN_BUCKETS; i++) {
  592. struct open_bucket *b = kzalloc(sizeof(*b), GFP_KERNEL);
  593. if (!b)
  594. return -ENOMEM;
  595. list_add(&b->list, &c->data_buckets);
  596. }
  597. return 0;
  598. }
  599. int bch_cache_allocator_start(struct cache *ca)
  600. {
  601. struct task_struct *k = kthread_run(bch_allocator_thread,
  602. ca, "bcache_allocator");
  603. if (IS_ERR(k))
  604. return PTR_ERR(k);
  605. ca->alloc_thread = k;
  606. return 0;
  607. }