journal.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. #ifndef _BCACHE_JOURNAL_H
  2. #define _BCACHE_JOURNAL_H
  3. /*
  4. * THE JOURNAL:
  5. *
  6. * The journal is treated as a circular buffer of buckets - a journal entry
  7. * never spans two buckets. This means (not implemented yet) we can resize the
  8. * journal at runtime, and will be needed for bcache on raw flash support.
  9. *
  10. * Journal entries contain a list of keys, ordered by the time they were
  11. * inserted; thus journal replay just has to reinsert the keys.
  12. *
  13. * We also keep some things in the journal header that are logically part of the
  14. * superblock - all the things that are frequently updated. This is for future
  15. * bcache on raw flash support; the superblock (which will become another
  16. * journal) can't be moved or wear leveled, so it contains just enough
  17. * information to find the main journal, and the superblock only has to be
  18. * rewritten when we want to move/wear level the main journal.
  19. *
  20. * Currently, we don't journal BTREE_REPLACE operations - this will hopefully be
  21. * fixed eventually. This isn't a bug - BTREE_REPLACE is used for insertions
  22. * from cache misses, which don't have to be journaled, and for writeback and
  23. * moving gc we work around it by flushing the btree to disk before updating the
  24. * gc information. But it is a potential issue with incremental garbage
  25. * collection, and it's fragile.
  26. *
  27. * OPEN JOURNAL ENTRIES:
  28. *
  29. * Each journal entry contains, in the header, the sequence number of the last
  30. * journal entry still open - i.e. that has keys that haven't been flushed to
  31. * disk in the btree.
  32. *
  33. * We track this by maintaining a refcount for every open journal entry, in a
  34. * fifo; each entry in the fifo corresponds to a particular journal
  35. * entry/sequence number. When the refcount at the tail of the fifo goes to
  36. * zero, we pop it off - thus, the size of the fifo tells us the number of open
  37. * journal entries
  38. *
  39. * We take a refcount on a journal entry when we add some keys to a journal
  40. * entry that we're going to insert (held by struct btree_op), and then when we
  41. * insert those keys into the btree the btree write we're setting up takes a
  42. * copy of that refcount (held by struct btree_write). That refcount is dropped
  43. * when the btree write completes.
  44. *
  45. * A struct btree_write can only hold a refcount on a single journal entry, but
  46. * might contain keys for many journal entries - we handle this by making sure
  47. * it always has a refcount on the _oldest_ journal entry of all the journal
  48. * entries it has keys for.
  49. *
  50. * JOURNAL RECLAIM:
  51. *
  52. * As mentioned previously, our fifo of refcounts tells us the number of open
  53. * journal entries; from that and the current journal sequence number we compute
  54. * last_seq - the oldest journal entry we still need. We write last_seq in each
  55. * journal entry, and we also have to keep track of where it exists on disk so
  56. * we don't overwrite it when we loop around the journal.
  57. *
  58. * To do that we track, for each journal bucket, the sequence number of the
  59. * newest journal entry it contains - if we don't need that journal entry we
  60. * don't need anything in that bucket anymore. From that we track the last
  61. * journal bucket we still need; all this is tracked in struct journal_device
  62. * and updated by journal_reclaim().
  63. *
  64. * JOURNAL FILLING UP:
  65. *
  66. * There are two ways the journal could fill up; either we could run out of
  67. * space to write to, or we could have too many open journal entries and run out
  68. * of room in the fifo of refcounts. Since those refcounts are decremented
  69. * without any locking we can't safely resize that fifo, so we handle it the
  70. * same way.
  71. *
  72. * If the journal fills up, we start flushing dirty btree nodes until we can
  73. * allocate space for a journal write again - preferentially flushing btree
  74. * nodes that are pinning the oldest journal entries first.
  75. */
  76. #define BCACHE_JSET_VERSION_UUIDv1 1
  77. /* Always latest UUID format */
  78. #define BCACHE_JSET_VERSION_UUID 1
  79. #define BCACHE_JSET_VERSION 1
  80. /*
  81. * On disk format for a journal entry:
  82. * seq is monotonically increasing; every journal entry has its own unique
  83. * sequence number.
  84. *
  85. * last_seq is the oldest journal entry that still has keys the btree hasn't
  86. * flushed to disk yet.
  87. *
  88. * version is for on disk format changes.
  89. */
  90. struct jset {
  91. uint64_t csum;
  92. uint64_t magic;
  93. uint64_t seq;
  94. uint32_t version;
  95. uint32_t keys;
  96. uint64_t last_seq;
  97. BKEY_PADDED(uuid_bucket);
  98. BKEY_PADDED(btree_root);
  99. uint16_t btree_level;
  100. uint16_t pad[3];
  101. uint64_t prio_bucket[MAX_CACHES_PER_SET];
  102. union {
  103. struct bkey start[0];
  104. uint64_t d[0];
  105. };
  106. };
  107. /*
  108. * Only used for holding the journal entries we read in btree_journal_read()
  109. * during cache_registration
  110. */
  111. struct journal_replay {
  112. struct list_head list;
  113. atomic_t *pin;
  114. struct jset j;
  115. };
  116. /*
  117. * We put two of these in struct journal; we used them for writes to the
  118. * journal that are being staged or in flight.
  119. */
  120. struct journal_write {
  121. struct jset *data;
  122. #define JSET_BITS 3
  123. struct cache_set *c;
  124. struct closure_waitlist wait;
  125. bool need_write;
  126. };
  127. /* Embedded in struct cache_set */
  128. struct journal {
  129. spinlock_t lock;
  130. /* used when waiting because the journal was full */
  131. struct closure_waitlist wait;
  132. struct closure_with_timer io;
  133. /* Number of blocks free in the bucket(s) we're currently writing to */
  134. unsigned blocks_free;
  135. uint64_t seq;
  136. DECLARE_FIFO(atomic_t, pin);
  137. BKEY_PADDED(key);
  138. struct journal_write w[2], *cur;
  139. };
  140. /*
  141. * Embedded in struct cache. First three fields refer to the array of journal
  142. * buckets, in cache_sb.
  143. */
  144. struct journal_device {
  145. /*
  146. * For each journal bucket, contains the max sequence number of the
  147. * journal writes it contains - so we know when a bucket can be reused.
  148. */
  149. uint64_t seq[SB_JOURNAL_BUCKETS];
  150. /* Journal bucket we're currently writing to */
  151. unsigned cur_idx;
  152. /* Last journal bucket that still contains an open journal entry */
  153. unsigned last_idx;
  154. /* Next journal bucket to be discarded */
  155. unsigned discard_idx;
  156. #define DISCARD_READY 0
  157. #define DISCARD_IN_FLIGHT 1
  158. #define DISCARD_DONE 2
  159. /* 1 - discard in flight, -1 - discard completed */
  160. atomic_t discard_in_flight;
  161. struct work_struct discard_work;
  162. struct bio discard_bio;
  163. struct bio_vec discard_bv;
  164. /* Bio for journal reads/writes to this device */
  165. struct bio bio;
  166. struct bio_vec bv[8];
  167. };
  168. #define journal_pin_cmp(c, l, r) \
  169. (fifo_idx(&(c)->journal.pin, (l)->journal) > \
  170. fifo_idx(&(c)->journal.pin, (r)->journal))
  171. #define JOURNAL_PIN 20000
  172. #define journal_full(j) \
  173. (!(j)->blocks_free || fifo_free(&(j)->pin) <= 1)
  174. struct closure;
  175. struct cache_set;
  176. struct btree_op;
  177. void bch_journal(struct closure *);
  178. void bch_journal_next(struct journal *);
  179. void bch_journal_mark(struct cache_set *, struct list_head *);
  180. void bch_journal_meta(struct cache_set *, struct closure *);
  181. int bch_journal_read(struct cache_set *, struct list_head *,
  182. struct btree_op *);
  183. int bch_journal_replay(struct cache_set *, struct list_head *,
  184. struct btree_op *);
  185. void bch_journal_free(struct cache_set *);
  186. int bch_journal_alloc(struct cache_set *);
  187. #endif /* _BCACHE_JOURNAL_H */