bcache.h 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259
  1. #ifndef _BCACHE_H
  2. #define _BCACHE_H
  3. /*
  4. * SOME HIGH LEVEL CODE DOCUMENTATION:
  5. *
  6. * Bcache mostly works with cache sets, cache devices, and backing devices.
  7. *
  8. * Support for multiple cache devices hasn't quite been finished off yet, but
  9. * it's about 95% plumbed through. A cache set and its cache devices is sort of
  10. * like a md raid array and its component devices. Most of the code doesn't care
  11. * about individual cache devices, the main abstraction is the cache set.
  12. *
  13. * Multiple cache devices is intended to give us the ability to mirror dirty
  14. * cached data and metadata, without mirroring clean cached data.
  15. *
  16. * Backing devices are different, in that they have a lifetime independent of a
  17. * cache set. When you register a newly formatted backing device it'll come up
  18. * in passthrough mode, and then you can attach and detach a backing device from
  19. * a cache set at runtime - while it's mounted and in use. Detaching implicitly
  20. * invalidates any cached data for that backing device.
  21. *
  22. * A cache set can have multiple (many) backing devices attached to it.
  23. *
  24. * There's also flash only volumes - this is the reason for the distinction
  25. * between struct cached_dev and struct bcache_device. A flash only volume
  26. * works much like a bcache device that has a backing device, except the
  27. * "cached" data is always dirty. The end result is that we get thin
  28. * provisioning with very little additional code.
  29. *
  30. * Flash only volumes work but they're not production ready because the moving
  31. * garbage collector needs more work. More on that later.
  32. *
  33. * BUCKETS/ALLOCATION:
  34. *
  35. * Bcache is primarily designed for caching, which means that in normal
  36. * operation all of our available space will be allocated. Thus, we need an
  37. * efficient way of deleting things from the cache so we can write new things to
  38. * it.
  39. *
  40. * To do this, we first divide the cache device up into buckets. A bucket is the
  41. * unit of allocation; they're typically around 1 mb - anywhere from 128k to 2M+
  42. * works efficiently.
  43. *
  44. * Each bucket has a 16 bit priority, and an 8 bit generation associated with
  45. * it. The gens and priorities for all the buckets are stored contiguously and
  46. * packed on disk (in a linked list of buckets - aside from the superblock, all
  47. * of bcache's metadata is stored in buckets).
  48. *
  49. * The priority is used to implement an LRU. We reset a bucket's priority when
  50. * we allocate it or on cache it, and every so often we decrement the priority
  51. * of each bucket. It could be used to implement something more sophisticated,
  52. * if anyone ever gets around to it.
  53. *
  54. * The generation is used for invalidating buckets. Each pointer also has an 8
  55. * bit generation embedded in it; for a pointer to be considered valid, its gen
  56. * must match the gen of the bucket it points into. Thus, to reuse a bucket all
  57. * we have to do is increment its gen (and write its new gen to disk; we batch
  58. * this up).
  59. *
  60. * Bcache is entirely COW - we never write twice to a bucket, even buckets that
  61. * contain metadata (including btree nodes).
  62. *
  63. * THE BTREE:
  64. *
  65. * Bcache is in large part design around the btree.
  66. *
  67. * At a high level, the btree is just an index of key -> ptr tuples.
  68. *
  69. * Keys represent extents, and thus have a size field. Keys also have a variable
  70. * number of pointers attached to them (potentially zero, which is handy for
  71. * invalidating the cache).
  72. *
  73. * The key itself is an inode:offset pair. The inode number corresponds to a
  74. * backing device or a flash only volume. The offset is the ending offset of the
  75. * extent within the inode - not the starting offset; this makes lookups
  76. * slightly more convenient.
  77. *
  78. * Pointers contain the cache device id, the offset on that device, and an 8 bit
  79. * generation number. More on the gen later.
  80. *
  81. * Index lookups are not fully abstracted - cache lookups in particular are
  82. * still somewhat mixed in with the btree code, but things are headed in that
  83. * direction.
  84. *
  85. * Updates are fairly well abstracted, though. There are two different ways of
  86. * updating the btree; insert and replace.
  87. *
  88. * BTREE_INSERT will just take a list of keys and insert them into the btree -
  89. * overwriting (possibly only partially) any extents they overlap with. This is
  90. * used to update the index after a write.
  91. *
  92. * BTREE_REPLACE is really cmpxchg(); it inserts a key into the btree iff it is
  93. * overwriting a key that matches another given key. This is used for inserting
  94. * data into the cache after a cache miss, and for background writeback, and for
  95. * the moving garbage collector.
  96. *
  97. * There is no "delete" operation; deleting things from the index is
  98. * accomplished by either by invalidating pointers (by incrementing a bucket's
  99. * gen) or by inserting a key with 0 pointers - which will overwrite anything
  100. * previously present at that location in the index.
  101. *
  102. * This means that there are always stale/invalid keys in the btree. They're
  103. * filtered out by the code that iterates through a btree node, and removed when
  104. * a btree node is rewritten.
  105. *
  106. * BTREE NODES:
  107. *
  108. * Our unit of allocation is a bucket, and we we can't arbitrarily allocate and
  109. * free smaller than a bucket - so, that's how big our btree nodes are.
  110. *
  111. * (If buckets are really big we'll only use part of the bucket for a btree node
  112. * - no less than 1/4th - but a bucket still contains no more than a single
  113. * btree node. I'd actually like to change this, but for now we rely on the
  114. * bucket's gen for deleting btree nodes when we rewrite/split a node.)
  115. *
  116. * Anyways, btree nodes are big - big enough to be inefficient with a textbook
  117. * btree implementation.
  118. *
  119. * The way this is solved is that btree nodes are internally log structured; we
  120. * can append new keys to an existing btree node without rewriting it. This
  121. * means each set of keys we write is sorted, but the node is not.
  122. *
  123. * We maintain this log structure in memory - keeping 1Mb of keys sorted would
  124. * be expensive, and we have to distinguish between the keys we have written and
  125. * the keys we haven't. So to do a lookup in a btree node, we have to search
  126. * each sorted set. But we do merge written sets together lazily, so the cost of
  127. * these extra searches is quite low (normally most of the keys in a btree node
  128. * will be in one big set, and then there'll be one or two sets that are much
  129. * smaller).
  130. *
  131. * This log structure makes bcache's btree more of a hybrid between a
  132. * conventional btree and a compacting data structure, with some of the
  133. * advantages of both.
  134. *
  135. * GARBAGE COLLECTION:
  136. *
  137. * We can't just invalidate any bucket - it might contain dirty data or
  138. * metadata. If it once contained dirty data, other writes might overwrite it
  139. * later, leaving no valid pointers into that bucket in the index.
  140. *
  141. * Thus, the primary purpose of garbage collection is to find buckets to reuse.
  142. * It also counts how much valid data it each bucket currently contains, so that
  143. * allocation can reuse buckets sooner when they've been mostly overwritten.
  144. *
  145. * It also does some things that are really internal to the btree
  146. * implementation. If a btree node contains pointers that are stale by more than
  147. * some threshold, it rewrites the btree node to avoid the bucket's generation
  148. * wrapping around. It also merges adjacent btree nodes if they're empty enough.
  149. *
  150. * THE JOURNAL:
  151. *
  152. * Bcache's journal is not necessary for consistency; we always strictly
  153. * order metadata writes so that the btree and everything else is consistent on
  154. * disk in the event of an unclean shutdown, and in fact bcache had writeback
  155. * caching (with recovery from unclean shutdown) before journalling was
  156. * implemented.
  157. *
  158. * Rather, the journal is purely a performance optimization; we can't complete a
  159. * write until we've updated the index on disk, otherwise the cache would be
  160. * inconsistent in the event of an unclean shutdown. This means that without the
  161. * journal, on random write workloads we constantly have to update all the leaf
  162. * nodes in the btree, and those writes will be mostly empty (appending at most
  163. * a few keys each) - highly inefficient in terms of amount of metadata writes,
  164. * and it puts more strain on the various btree resorting/compacting code.
  165. *
  166. * The journal is just a log of keys we've inserted; on startup we just reinsert
  167. * all the keys in the open journal entries. That means that when we're updating
  168. * a node in the btree, we can wait until a 4k block of keys fills up before
  169. * writing them out.
  170. *
  171. * For simplicity, we only journal updates to leaf nodes; updates to parent
  172. * nodes are rare enough (since our leaf nodes are huge) that it wasn't worth
  173. * the complexity to deal with journalling them (in particular, journal replay)
  174. * - updates to non leaf nodes just happen synchronously (see btree_split()).
  175. */
  176. #define pr_fmt(fmt) "bcache: %s() " fmt "\n", __func__
  177. #include <linux/bio.h>
  178. #include <linux/blktrace_api.h>
  179. #include <linux/kobject.h>
  180. #include <linux/list.h>
  181. #include <linux/mutex.h>
  182. #include <linux/rbtree.h>
  183. #include <linux/rwsem.h>
  184. #include <linux/types.h>
  185. #include <linux/workqueue.h>
  186. #include "util.h"
  187. #include "closure.h"
  188. struct bucket {
  189. atomic_t pin;
  190. uint16_t prio;
  191. uint8_t gen;
  192. uint8_t disk_gen;
  193. uint8_t last_gc; /* Most out of date gen in the btree */
  194. uint8_t gc_gen;
  195. uint16_t gc_mark;
  196. };
  197. /*
  198. * I'd use bitfields for these, but I don't trust the compiler not to screw me
  199. * as multiple threads touch struct bucket without locking
  200. */
  201. BITMASK(GC_MARK, struct bucket, gc_mark, 0, 2);
  202. #define GC_MARK_RECLAIMABLE 0
  203. #define GC_MARK_DIRTY 1
  204. #define GC_MARK_METADATA 2
  205. BITMASK(GC_SECTORS_USED, struct bucket, gc_mark, 2, 14);
  206. struct bkey {
  207. uint64_t high;
  208. uint64_t low;
  209. uint64_t ptr[];
  210. };
  211. /* Enough for a key with 6 pointers */
  212. #define BKEY_PAD 8
  213. #define BKEY_PADDED(key) \
  214. union { struct bkey key; uint64_t key ## _pad[BKEY_PAD]; }
  215. /* Version 0: Cache device
  216. * Version 1: Backing device
  217. * Version 2: Seed pointer into btree node checksum
  218. * Version 3: Cache device with new UUID format
  219. * Version 4: Backing device with data offset
  220. */
  221. #define BCACHE_SB_VERSION_CDEV 0
  222. #define BCACHE_SB_VERSION_BDEV 1
  223. #define BCACHE_SB_VERSION_CDEV_WITH_UUID 3
  224. #define BCACHE_SB_VERSION_BDEV_WITH_OFFSET 4
  225. #define BCACHE_SB_MAX_VERSION 4
  226. #define SB_SECTOR 8
  227. #define SB_SIZE 4096
  228. #define SB_LABEL_SIZE 32
  229. #define SB_JOURNAL_BUCKETS 256U
  230. /* SB_JOURNAL_BUCKETS must be divisible by BITS_PER_LONG */
  231. #define MAX_CACHES_PER_SET 8
  232. #define BDEV_DATA_START_DEFAULT 16 /* sectors */
  233. struct cache_sb {
  234. uint64_t csum;
  235. uint64_t offset; /* sector where this sb was written */
  236. uint64_t version;
  237. uint8_t magic[16];
  238. uint8_t uuid[16];
  239. union {
  240. uint8_t set_uuid[16];
  241. uint64_t set_magic;
  242. };
  243. uint8_t label[SB_LABEL_SIZE];
  244. uint64_t flags;
  245. uint64_t seq;
  246. uint64_t pad[8];
  247. union {
  248. struct {
  249. /* Cache devices */
  250. uint64_t nbuckets; /* device size */
  251. uint16_t block_size; /* sectors */
  252. uint16_t bucket_size; /* sectors */
  253. uint16_t nr_in_set;
  254. uint16_t nr_this_dev;
  255. };
  256. struct {
  257. /* Backing devices */
  258. uint64_t data_offset;
  259. /*
  260. * block_size from the cache device section is still used by
  261. * backing devices, so don't add anything here until we fix
  262. * things to not need it for backing devices anymore
  263. */
  264. };
  265. };
  266. uint32_t last_mount; /* time_t */
  267. uint16_t first_bucket;
  268. union {
  269. uint16_t njournal_buckets;
  270. uint16_t keys;
  271. };
  272. uint64_t d[SB_JOURNAL_BUCKETS]; /* journal buckets */
  273. };
  274. BITMASK(CACHE_SYNC, struct cache_sb, flags, 0, 1);
  275. BITMASK(CACHE_DISCARD, struct cache_sb, flags, 1, 1);
  276. BITMASK(CACHE_REPLACEMENT, struct cache_sb, flags, 2, 3);
  277. #define CACHE_REPLACEMENT_LRU 0U
  278. #define CACHE_REPLACEMENT_FIFO 1U
  279. #define CACHE_REPLACEMENT_RANDOM 2U
  280. BITMASK(BDEV_CACHE_MODE, struct cache_sb, flags, 0, 4);
  281. #define CACHE_MODE_WRITETHROUGH 0U
  282. #define CACHE_MODE_WRITEBACK 1U
  283. #define CACHE_MODE_WRITEAROUND 2U
  284. #define CACHE_MODE_NONE 3U
  285. BITMASK(BDEV_STATE, struct cache_sb, flags, 61, 2);
  286. #define BDEV_STATE_NONE 0U
  287. #define BDEV_STATE_CLEAN 1U
  288. #define BDEV_STATE_DIRTY 2U
  289. #define BDEV_STATE_STALE 3U
  290. /* Version 1: Seed pointer into btree node checksum
  291. */
  292. #define BCACHE_BSET_VERSION 1
  293. /*
  294. * This is the on disk format for btree nodes - a btree node on disk is a list
  295. * of these; within each set the keys are sorted
  296. */
  297. struct bset {
  298. uint64_t csum;
  299. uint64_t magic;
  300. uint64_t seq;
  301. uint32_t version;
  302. uint32_t keys;
  303. union {
  304. struct bkey start[0];
  305. uint64_t d[0];
  306. };
  307. };
  308. /*
  309. * On disk format for priorities and gens - see super.c near prio_write() for
  310. * more.
  311. */
  312. struct prio_set {
  313. uint64_t csum;
  314. uint64_t magic;
  315. uint64_t seq;
  316. uint32_t version;
  317. uint32_t pad;
  318. uint64_t next_bucket;
  319. struct bucket_disk {
  320. uint16_t prio;
  321. uint8_t gen;
  322. } __attribute((packed)) data[];
  323. };
  324. struct uuid_entry {
  325. union {
  326. struct {
  327. uint8_t uuid[16];
  328. uint8_t label[32];
  329. uint32_t first_reg;
  330. uint32_t last_reg;
  331. uint32_t invalidated;
  332. uint32_t flags;
  333. /* Size of flash only volumes */
  334. uint64_t sectors;
  335. };
  336. uint8_t pad[128];
  337. };
  338. };
  339. BITMASK(UUID_FLASH_ONLY, struct uuid_entry, flags, 0, 1);
  340. #include "journal.h"
  341. #include "stats.h"
  342. struct search;
  343. struct btree;
  344. struct keybuf;
  345. struct keybuf_key {
  346. struct rb_node node;
  347. BKEY_PADDED(key);
  348. void *private;
  349. };
  350. typedef bool (keybuf_pred_fn)(struct keybuf *, struct bkey *);
  351. struct keybuf {
  352. keybuf_pred_fn *key_predicate;
  353. struct bkey last_scanned;
  354. spinlock_t lock;
  355. /*
  356. * Beginning and end of range in rb tree - so that we can skip taking
  357. * lock and checking the rb tree when we need to check for overlapping
  358. * keys.
  359. */
  360. struct bkey start;
  361. struct bkey end;
  362. struct rb_root keys;
  363. #define KEYBUF_NR 100
  364. DECLARE_ARRAY_ALLOCATOR(struct keybuf_key, freelist, KEYBUF_NR);
  365. };
  366. struct bio_split_pool {
  367. struct bio_set *bio_split;
  368. mempool_t *bio_split_hook;
  369. };
  370. struct bio_split_hook {
  371. struct closure cl;
  372. struct bio_split_pool *p;
  373. struct bio *bio;
  374. bio_end_io_t *bi_end_io;
  375. void *bi_private;
  376. };
  377. struct bcache_device {
  378. struct closure cl;
  379. struct kobject kobj;
  380. struct cache_set *c;
  381. unsigned id;
  382. #define BCACHEDEVNAME_SIZE 12
  383. char name[BCACHEDEVNAME_SIZE];
  384. struct gendisk *disk;
  385. /* If nonzero, we're closing */
  386. atomic_t closing;
  387. /* If nonzero, we're detaching/unregistering from cache set */
  388. atomic_t detaching;
  389. atomic_long_t sectors_dirty;
  390. unsigned long sectors_dirty_gc;
  391. unsigned long sectors_dirty_last;
  392. long sectors_dirty_derivative;
  393. mempool_t *unaligned_bvec;
  394. struct bio_set *bio_split;
  395. unsigned data_csum:1;
  396. int (*cache_miss)(struct btree *, struct search *,
  397. struct bio *, unsigned);
  398. int (*ioctl) (struct bcache_device *, fmode_t, unsigned, unsigned long);
  399. struct bio_split_pool bio_split_hook;
  400. };
  401. struct io {
  402. /* Used to track sequential IO so it can be skipped */
  403. struct hlist_node hash;
  404. struct list_head lru;
  405. unsigned long jiffies;
  406. unsigned sequential;
  407. sector_t last;
  408. };
  409. struct cached_dev {
  410. struct list_head list;
  411. struct bcache_device disk;
  412. struct block_device *bdev;
  413. struct cache_sb sb;
  414. struct bio sb_bio;
  415. struct bio_vec sb_bv[1];
  416. struct closure_with_waitlist sb_write;
  417. /* Refcount on the cache set. Always nonzero when we're caching. */
  418. atomic_t count;
  419. struct work_struct detach;
  420. /*
  421. * Device might not be running if it's dirty and the cache set hasn't
  422. * showed up yet.
  423. */
  424. atomic_t running;
  425. /*
  426. * Writes take a shared lock from start to finish; scanning for dirty
  427. * data to refill the rb tree requires an exclusive lock.
  428. */
  429. struct rw_semaphore writeback_lock;
  430. /*
  431. * Nonzero, and writeback has a refcount (d->count), iff there is dirty
  432. * data in the cache. Protected by writeback_lock; must have an
  433. * shared lock to set and exclusive lock to clear.
  434. */
  435. atomic_t has_dirty;
  436. struct ratelimit writeback_rate;
  437. struct delayed_work writeback_rate_update;
  438. /*
  439. * Internal to the writeback code, so read_dirty() can keep track of
  440. * where it's at.
  441. */
  442. sector_t last_read;
  443. /* Number of writeback bios in flight */
  444. atomic_t in_flight;
  445. struct closure_with_timer writeback;
  446. struct closure_waitlist writeback_wait;
  447. struct keybuf writeback_keys;
  448. /* For tracking sequential IO */
  449. #define RECENT_IO_BITS 7
  450. #define RECENT_IO (1 << RECENT_IO_BITS)
  451. struct io io[RECENT_IO];
  452. struct hlist_head io_hash[RECENT_IO + 1];
  453. struct list_head io_lru;
  454. spinlock_t io_lock;
  455. struct cache_accounting accounting;
  456. /* The rest of this all shows up in sysfs */
  457. unsigned sequential_cutoff;
  458. unsigned readahead;
  459. unsigned sequential_merge:1;
  460. unsigned verify:1;
  461. unsigned writeback_metadata:1;
  462. unsigned writeback_running:1;
  463. unsigned char writeback_percent;
  464. unsigned writeback_delay;
  465. int writeback_rate_change;
  466. int64_t writeback_rate_derivative;
  467. uint64_t writeback_rate_target;
  468. unsigned writeback_rate_update_seconds;
  469. unsigned writeback_rate_d_term;
  470. unsigned writeback_rate_p_term_inverse;
  471. unsigned writeback_rate_d_smooth;
  472. };
  473. enum alloc_watermarks {
  474. WATERMARK_PRIO,
  475. WATERMARK_METADATA,
  476. WATERMARK_MOVINGGC,
  477. WATERMARK_NONE,
  478. WATERMARK_MAX
  479. };
  480. struct cache {
  481. struct cache_set *set;
  482. struct cache_sb sb;
  483. struct bio sb_bio;
  484. struct bio_vec sb_bv[1];
  485. struct kobject kobj;
  486. struct block_device *bdev;
  487. unsigned watermark[WATERMARK_MAX];
  488. struct closure alloc;
  489. struct workqueue_struct *alloc_workqueue;
  490. struct closure prio;
  491. struct prio_set *disk_buckets;
  492. /*
  493. * When allocating new buckets, prio_write() gets first dibs - since we
  494. * may not be allocate at all without writing priorities and gens.
  495. * prio_buckets[] contains the last buckets we wrote priorities to (so
  496. * gc can mark them as metadata), prio_next[] contains the buckets
  497. * allocated for the next prio write.
  498. */
  499. uint64_t *prio_buckets;
  500. uint64_t *prio_last_buckets;
  501. /*
  502. * free: Buckets that are ready to be used
  503. *
  504. * free_inc: Incoming buckets - these are buckets that currently have
  505. * cached data in them, and we can't reuse them until after we write
  506. * their new gen to disk. After prio_write() finishes writing the new
  507. * gens/prios, they'll be moved to the free list (and possibly discarded
  508. * in the process)
  509. *
  510. * unused: GC found nothing pointing into these buckets (possibly
  511. * because all the data they contained was overwritten), so we only
  512. * need to discard them before they can be moved to the free list.
  513. */
  514. DECLARE_FIFO(long, free);
  515. DECLARE_FIFO(long, free_inc);
  516. DECLARE_FIFO(long, unused);
  517. size_t fifo_last_bucket;
  518. /* Allocation stuff: */
  519. struct bucket *buckets;
  520. DECLARE_HEAP(struct bucket *, heap);
  521. /*
  522. * max(gen - disk_gen) for all buckets. When it gets too big we have to
  523. * call prio_write() to keep gens from wrapping.
  524. */
  525. uint8_t need_save_prio;
  526. unsigned gc_move_threshold;
  527. /*
  528. * If nonzero, we know we aren't going to find any buckets to invalidate
  529. * until a gc finishes - otherwise we could pointlessly burn a ton of
  530. * cpu
  531. */
  532. unsigned invalidate_needs_gc:1;
  533. bool discard; /* Get rid of? */
  534. /*
  535. * We preallocate structs for issuing discards to buckets, and keep them
  536. * on this list when they're not in use; do_discard() issues discards
  537. * whenever there's work to do and is called by free_some_buckets() and
  538. * when a discard finishes.
  539. */
  540. atomic_t discards_in_flight;
  541. struct list_head discards;
  542. struct journal_device journal;
  543. /* The rest of this all shows up in sysfs */
  544. #define IO_ERROR_SHIFT 20
  545. atomic_t io_errors;
  546. atomic_t io_count;
  547. atomic_long_t meta_sectors_written;
  548. atomic_long_t btree_sectors_written;
  549. atomic_long_t sectors_written;
  550. struct bio_split_pool bio_split_hook;
  551. };
  552. struct gc_stat {
  553. size_t nodes;
  554. size_t key_bytes;
  555. size_t nkeys;
  556. uint64_t data; /* sectors */
  557. uint64_t dirty; /* sectors */
  558. unsigned in_use; /* percent */
  559. };
  560. /*
  561. * Flag bits, for how the cache set is shutting down, and what phase it's at:
  562. *
  563. * CACHE_SET_UNREGISTERING means we're not just shutting down, we're detaching
  564. * all the backing devices first (their cached data gets invalidated, and they
  565. * won't automatically reattach).
  566. *
  567. * CACHE_SET_STOPPING always gets set first when we're closing down a cache set;
  568. * we'll continue to run normally for awhile with CACHE_SET_STOPPING set (i.e.
  569. * flushing dirty data).
  570. *
  571. * CACHE_SET_STOPPING_2 gets set at the last phase, when it's time to shut down
  572. * the allocation thread.
  573. */
  574. #define CACHE_SET_UNREGISTERING 0
  575. #define CACHE_SET_STOPPING 1
  576. #define CACHE_SET_STOPPING_2 2
  577. struct cache_set {
  578. struct closure cl;
  579. struct list_head list;
  580. struct kobject kobj;
  581. struct kobject internal;
  582. struct dentry *debug;
  583. struct cache_accounting accounting;
  584. unsigned long flags;
  585. struct cache_sb sb;
  586. struct cache *cache[MAX_CACHES_PER_SET];
  587. struct cache *cache_by_alloc[MAX_CACHES_PER_SET];
  588. int caches_loaded;
  589. struct bcache_device **devices;
  590. struct list_head cached_devs;
  591. uint64_t cached_dev_sectors;
  592. struct closure caching;
  593. struct closure_with_waitlist sb_write;
  594. mempool_t *search;
  595. mempool_t *bio_meta;
  596. struct bio_set *bio_split;
  597. /* For the btree cache */
  598. struct shrinker shrink;
  599. /* For the allocator itself */
  600. wait_queue_head_t alloc_wait;
  601. /* For the btree cache and anything allocation related */
  602. struct mutex bucket_lock;
  603. /* log2(bucket_size), in sectors */
  604. unsigned short bucket_bits;
  605. /* log2(block_size), in sectors */
  606. unsigned short block_bits;
  607. /*
  608. * Default number of pages for a new btree node - may be less than a
  609. * full bucket
  610. */
  611. unsigned btree_pages;
  612. /*
  613. * Lists of struct btrees; lru is the list for structs that have memory
  614. * allocated for actual btree node, freed is for structs that do not.
  615. *
  616. * We never free a struct btree, except on shutdown - we just put it on
  617. * the btree_cache_freed list and reuse it later. This simplifies the
  618. * code, and it doesn't cost us much memory as the memory usage is
  619. * dominated by buffers that hold the actual btree node data and those
  620. * can be freed - and the number of struct btrees allocated is
  621. * effectively bounded.
  622. *
  623. * btree_cache_freeable effectively is a small cache - we use it because
  624. * high order page allocations can be rather expensive, and it's quite
  625. * common to delete and allocate btree nodes in quick succession. It
  626. * should never grow past ~2-3 nodes in practice.
  627. */
  628. struct list_head btree_cache;
  629. struct list_head btree_cache_freeable;
  630. struct list_head btree_cache_freed;
  631. /* Number of elements in btree_cache + btree_cache_freeable lists */
  632. unsigned bucket_cache_used;
  633. /*
  634. * If we need to allocate memory for a new btree node and that
  635. * allocation fails, we can cannibalize another node in the btree cache
  636. * to satisfy the allocation. However, only one thread can be doing this
  637. * at a time, for obvious reasons - try_harder and try_wait are
  638. * basically a lock for this that we can wait on asynchronously. The
  639. * btree_root() macro releases the lock when it returns.
  640. */
  641. struct closure *try_harder;
  642. struct closure_waitlist try_wait;
  643. uint64_t try_harder_start;
  644. /*
  645. * When we free a btree node, we increment the gen of the bucket the
  646. * node is in - but we can't rewrite the prios and gens until we
  647. * finished whatever it is we were doing, otherwise after a crash the
  648. * btree node would be freed but for say a split, we might not have the
  649. * pointers to the new nodes inserted into the btree yet.
  650. *
  651. * This is a refcount that blocks prio_write() until the new keys are
  652. * written.
  653. */
  654. atomic_t prio_blocked;
  655. struct closure_waitlist bucket_wait;
  656. /*
  657. * For any bio we don't skip we subtract the number of sectors from
  658. * rescale; when it hits 0 we rescale all the bucket priorities.
  659. */
  660. atomic_t rescale;
  661. /*
  662. * When we invalidate buckets, we use both the priority and the amount
  663. * of good data to determine which buckets to reuse first - to weight
  664. * those together consistently we keep track of the smallest nonzero
  665. * priority of any bucket.
  666. */
  667. uint16_t min_prio;
  668. /*
  669. * max(gen - gc_gen) for all buckets. When it gets too big we have to gc
  670. * to keep gens from wrapping around.
  671. */
  672. uint8_t need_gc;
  673. struct gc_stat gc_stats;
  674. size_t nbuckets;
  675. struct closure_with_waitlist gc;
  676. /* Where in the btree gc currently is */
  677. struct bkey gc_done;
  678. /*
  679. * The allocation code needs gc_mark in struct bucket to be correct, but
  680. * it's not while a gc is in progress. Protected by bucket_lock.
  681. */
  682. int gc_mark_valid;
  683. /* Counts how many sectors bio_insert has added to the cache */
  684. atomic_t sectors_to_gc;
  685. struct closure moving_gc;
  686. struct closure_waitlist moving_gc_wait;
  687. struct keybuf moving_gc_keys;
  688. /* Number of moving GC bios in flight */
  689. atomic_t in_flight;
  690. struct btree *root;
  691. #ifdef CONFIG_BCACHE_DEBUG
  692. struct btree *verify_data;
  693. struct mutex verify_lock;
  694. #endif
  695. unsigned nr_uuids;
  696. struct uuid_entry *uuids;
  697. BKEY_PADDED(uuid_bucket);
  698. struct closure_with_waitlist uuid_write;
  699. /*
  700. * A btree node on disk could have too many bsets for an iterator to fit
  701. * on the stack - this is a single element mempool for btree_read_work()
  702. */
  703. struct mutex fill_lock;
  704. struct btree_iter *fill_iter;
  705. /*
  706. * btree_sort() is a merge sort and requires temporary space - single
  707. * element mempool
  708. */
  709. struct mutex sort_lock;
  710. struct bset *sort;
  711. /* List of buckets we're currently writing data to */
  712. struct list_head data_buckets;
  713. spinlock_t data_bucket_lock;
  714. struct journal journal;
  715. #define CONGESTED_MAX 1024
  716. unsigned congested_last_us;
  717. atomic_t congested;
  718. /* The rest of this all shows up in sysfs */
  719. unsigned congested_read_threshold_us;
  720. unsigned congested_write_threshold_us;
  721. spinlock_t sort_time_lock;
  722. struct time_stats sort_time;
  723. struct time_stats btree_gc_time;
  724. struct time_stats btree_split_time;
  725. spinlock_t btree_read_time_lock;
  726. struct time_stats btree_read_time;
  727. struct time_stats try_harder_time;
  728. atomic_long_t cache_read_races;
  729. atomic_long_t writeback_keys_done;
  730. atomic_long_t writeback_keys_failed;
  731. unsigned error_limit;
  732. unsigned error_decay;
  733. unsigned short journal_delay_ms;
  734. unsigned verify:1;
  735. unsigned key_merging_disabled:1;
  736. unsigned gc_always_rewrite:1;
  737. unsigned shrinker_disabled:1;
  738. unsigned copy_gc_enabled:1;
  739. #define BUCKET_HASH_BITS 12
  740. struct hlist_head bucket_hash[1 << BUCKET_HASH_BITS];
  741. };
  742. static inline bool key_merging_disabled(struct cache_set *c)
  743. {
  744. #ifdef CONFIG_BCACHE_DEBUG
  745. return c->key_merging_disabled;
  746. #else
  747. return 0;
  748. #endif
  749. }
  750. static inline bool SB_IS_BDEV(const struct cache_sb *sb)
  751. {
  752. return sb->version == BCACHE_SB_VERSION_BDEV
  753. || sb->version == BCACHE_SB_VERSION_BDEV_WITH_OFFSET;
  754. }
  755. struct bbio {
  756. unsigned submit_time_us;
  757. union {
  758. struct bkey key;
  759. uint64_t _pad[3];
  760. /*
  761. * We only need pad = 3 here because we only ever carry around a
  762. * single pointer - i.e. the pointer we're doing io to/from.
  763. */
  764. };
  765. struct bio bio;
  766. };
  767. static inline unsigned local_clock_us(void)
  768. {
  769. return local_clock() >> 10;
  770. }
  771. #define MAX_BSETS 4U
  772. #define BTREE_PRIO USHRT_MAX
  773. #define INITIAL_PRIO 32768
  774. #define btree_bytes(c) ((c)->btree_pages * PAGE_SIZE)
  775. #define btree_blocks(b) \
  776. ((unsigned) (KEY_SIZE(&b->key) >> (b)->c->block_bits))
  777. #define btree_default_blocks(c) \
  778. ((unsigned) ((PAGE_SECTORS * (c)->btree_pages) >> (c)->block_bits))
  779. #define bucket_pages(c) ((c)->sb.bucket_size / PAGE_SECTORS)
  780. #define bucket_bytes(c) ((c)->sb.bucket_size << 9)
  781. #define block_bytes(c) ((c)->sb.block_size << 9)
  782. #define __set_bytes(i, k) (sizeof(*(i)) + (k) * sizeof(uint64_t))
  783. #define set_bytes(i) __set_bytes(i, i->keys)
  784. #define __set_blocks(i, k, c) DIV_ROUND_UP(__set_bytes(i, k), block_bytes(c))
  785. #define set_blocks(i, c) __set_blocks(i, (i)->keys, c)
  786. #define node(i, j) ((struct bkey *) ((i)->d + (j)))
  787. #define end(i) node(i, (i)->keys)
  788. #define index(i, b) \
  789. ((size_t) (((void *) i - (void *) (b)->sets[0].data) / \
  790. block_bytes(b->c)))
  791. #define btree_data_space(b) (PAGE_SIZE << (b)->page_order)
  792. #define prios_per_bucket(c) \
  793. ((bucket_bytes(c) - sizeof(struct prio_set)) / \
  794. sizeof(struct bucket_disk))
  795. #define prio_buckets(c) \
  796. DIV_ROUND_UP((size_t) (c)->sb.nbuckets, prios_per_bucket(c))
  797. #define JSET_MAGIC 0x245235c1a3625032ULL
  798. #define PSET_MAGIC 0x6750e15f87337f91ULL
  799. #define BSET_MAGIC 0x90135c78b99e07f5ULL
  800. #define jset_magic(c) ((c)->sb.set_magic ^ JSET_MAGIC)
  801. #define pset_magic(c) ((c)->sb.set_magic ^ PSET_MAGIC)
  802. #define bset_magic(c) ((c)->sb.set_magic ^ BSET_MAGIC)
  803. /* Bkey fields: all units are in sectors */
  804. #define KEY_FIELD(name, field, offset, size) \
  805. BITMASK(name, struct bkey, field, offset, size)
  806. #define PTR_FIELD(name, offset, size) \
  807. static inline uint64_t name(const struct bkey *k, unsigned i) \
  808. { return (k->ptr[i] >> offset) & ~(((uint64_t) ~0) << size); } \
  809. \
  810. static inline void SET_##name(struct bkey *k, unsigned i, uint64_t v)\
  811. { \
  812. k->ptr[i] &= ~(~((uint64_t) ~0 << size) << offset); \
  813. k->ptr[i] |= v << offset; \
  814. }
  815. KEY_FIELD(KEY_PTRS, high, 60, 3)
  816. KEY_FIELD(HEADER_SIZE, high, 58, 2)
  817. KEY_FIELD(KEY_CSUM, high, 56, 2)
  818. KEY_FIELD(KEY_PINNED, high, 55, 1)
  819. KEY_FIELD(KEY_DIRTY, high, 36, 1)
  820. KEY_FIELD(KEY_SIZE, high, 20, 16)
  821. KEY_FIELD(KEY_INODE, high, 0, 20)
  822. /* Next time I change the on disk format, KEY_OFFSET() won't be 64 bits */
  823. static inline uint64_t KEY_OFFSET(const struct bkey *k)
  824. {
  825. return k->low;
  826. }
  827. static inline void SET_KEY_OFFSET(struct bkey *k, uint64_t v)
  828. {
  829. k->low = v;
  830. }
  831. PTR_FIELD(PTR_DEV, 51, 12)
  832. PTR_FIELD(PTR_OFFSET, 8, 43)
  833. PTR_FIELD(PTR_GEN, 0, 8)
  834. #define PTR_CHECK_DEV ((1 << 12) - 1)
  835. #define PTR(gen, offset, dev) \
  836. ((((uint64_t) dev) << 51) | ((uint64_t) offset) << 8 | gen)
  837. static inline size_t sector_to_bucket(struct cache_set *c, sector_t s)
  838. {
  839. return s >> c->bucket_bits;
  840. }
  841. static inline sector_t bucket_to_sector(struct cache_set *c, size_t b)
  842. {
  843. return ((sector_t) b) << c->bucket_bits;
  844. }
  845. static inline sector_t bucket_remainder(struct cache_set *c, sector_t s)
  846. {
  847. return s & (c->sb.bucket_size - 1);
  848. }
  849. static inline struct cache *PTR_CACHE(struct cache_set *c,
  850. const struct bkey *k,
  851. unsigned ptr)
  852. {
  853. return c->cache[PTR_DEV(k, ptr)];
  854. }
  855. static inline size_t PTR_BUCKET_NR(struct cache_set *c,
  856. const struct bkey *k,
  857. unsigned ptr)
  858. {
  859. return sector_to_bucket(c, PTR_OFFSET(k, ptr));
  860. }
  861. static inline struct bucket *PTR_BUCKET(struct cache_set *c,
  862. const struct bkey *k,
  863. unsigned ptr)
  864. {
  865. return PTR_CACHE(c, k, ptr)->buckets + PTR_BUCKET_NR(c, k, ptr);
  866. }
  867. /* Btree key macros */
  868. /*
  869. * The high bit being set is a relic from when we used it to do binary
  870. * searches - it told you where a key started. It's not used anymore,
  871. * and can probably be safely dropped.
  872. */
  873. #define KEY(dev, sector, len) \
  874. ((struct bkey) { \
  875. .high = (1ULL << 63) | ((uint64_t) (len) << 20) | (dev), \
  876. .low = (sector) \
  877. })
  878. static inline void bkey_init(struct bkey *k)
  879. {
  880. *k = KEY(0, 0, 0);
  881. }
  882. #define KEY_START(k) (KEY_OFFSET(k) - KEY_SIZE(k))
  883. #define START_KEY(k) KEY(KEY_INODE(k), KEY_START(k), 0)
  884. #define MAX_KEY KEY(~(~0 << 20), ((uint64_t) ~0) >> 1, 0)
  885. #define ZERO_KEY KEY(0, 0, 0)
  886. /*
  887. * This is used for various on disk data structures - cache_sb, prio_set, bset,
  888. * jset: The checksum is _always_ the first 8 bytes of these structs
  889. */
  890. #define csum_set(i) \
  891. bch_crc64(((void *) (i)) + sizeof(uint64_t), \
  892. ((void *) end(i)) - (((void *) (i)) + sizeof(uint64_t)))
  893. /* Error handling macros */
  894. #define btree_bug(b, ...) \
  895. do { \
  896. if (bch_cache_set_error((b)->c, __VA_ARGS__)) \
  897. dump_stack(); \
  898. } while (0)
  899. #define cache_bug(c, ...) \
  900. do { \
  901. if (bch_cache_set_error(c, __VA_ARGS__)) \
  902. dump_stack(); \
  903. } while (0)
  904. #define btree_bug_on(cond, b, ...) \
  905. do { \
  906. if (cond) \
  907. btree_bug(b, __VA_ARGS__); \
  908. } while (0)
  909. #define cache_bug_on(cond, c, ...) \
  910. do { \
  911. if (cond) \
  912. cache_bug(c, __VA_ARGS__); \
  913. } while (0)
  914. #define cache_set_err_on(cond, c, ...) \
  915. do { \
  916. if (cond) \
  917. bch_cache_set_error(c, __VA_ARGS__); \
  918. } while (0)
  919. /* Looping macros */
  920. #define for_each_cache(ca, cs, iter) \
  921. for (iter = 0; ca = cs->cache[iter], iter < (cs)->sb.nr_in_set; iter++)
  922. #define for_each_bucket(b, ca) \
  923. for (b = (ca)->buckets + (ca)->sb.first_bucket; \
  924. b < (ca)->buckets + (ca)->sb.nbuckets; b++)
  925. static inline void __bkey_put(struct cache_set *c, struct bkey *k)
  926. {
  927. unsigned i;
  928. for (i = 0; i < KEY_PTRS(k); i++)
  929. atomic_dec_bug(&PTR_BUCKET(c, k, i)->pin);
  930. }
  931. /* Blktrace macros */
  932. #define blktrace_msg(c, fmt, ...) \
  933. do { \
  934. struct request_queue *q = bdev_get_queue(c->bdev); \
  935. if (q) \
  936. blk_add_trace_msg(q, fmt, ##__VA_ARGS__); \
  937. } while (0)
  938. #define blktrace_msg_all(s, fmt, ...) \
  939. do { \
  940. struct cache *_c; \
  941. unsigned i; \
  942. for_each_cache(_c, (s), i) \
  943. blktrace_msg(_c, fmt, ##__VA_ARGS__); \
  944. } while (0)
  945. static inline void cached_dev_put(struct cached_dev *dc)
  946. {
  947. if (atomic_dec_and_test(&dc->count))
  948. schedule_work(&dc->detach);
  949. }
  950. static inline bool cached_dev_get(struct cached_dev *dc)
  951. {
  952. if (!atomic_inc_not_zero(&dc->count))
  953. return false;
  954. /* Paired with the mb in cached_dev_attach */
  955. smp_mb__after_atomic_inc();
  956. return true;
  957. }
  958. /*
  959. * bucket_gc_gen() returns the difference between the bucket's current gen and
  960. * the oldest gen of any pointer into that bucket in the btree (last_gc).
  961. *
  962. * bucket_disk_gen() returns the difference between the current gen and the gen
  963. * on disk; they're both used to make sure gens don't wrap around.
  964. */
  965. static inline uint8_t bucket_gc_gen(struct bucket *b)
  966. {
  967. return b->gen - b->last_gc;
  968. }
  969. static inline uint8_t bucket_disk_gen(struct bucket *b)
  970. {
  971. return b->gen - b->disk_gen;
  972. }
  973. #define BUCKET_GC_GEN_MAX 96U
  974. #define BUCKET_DISK_GEN_MAX 64U
  975. #define kobj_attribute_write(n, fn) \
  976. static struct kobj_attribute ksysfs_##n = __ATTR(n, S_IWUSR, NULL, fn)
  977. #define kobj_attribute_rw(n, show, store) \
  978. static struct kobj_attribute ksysfs_##n = \
  979. __ATTR(n, S_IWUSR|S_IRUSR, show, store)
  980. /* Forward declarations */
  981. void bch_writeback_queue(struct cached_dev *);
  982. void bch_writeback_add(struct cached_dev *, unsigned);
  983. void bch_count_io_errors(struct cache *, int, const char *);
  984. void bch_bbio_count_io_errors(struct cache_set *, struct bio *,
  985. int, const char *);
  986. void bch_bbio_endio(struct cache_set *, struct bio *, int, const char *);
  987. void bch_bbio_free(struct bio *, struct cache_set *);
  988. struct bio *bch_bbio_alloc(struct cache_set *);
  989. struct bio *bch_bio_split(struct bio *, int, gfp_t, struct bio_set *);
  990. void bch_generic_make_request(struct bio *, struct bio_split_pool *);
  991. void __bch_submit_bbio(struct bio *, struct cache_set *);
  992. void bch_submit_bbio(struct bio *, struct cache_set *, struct bkey *, unsigned);
  993. uint8_t bch_inc_gen(struct cache *, struct bucket *);
  994. void bch_rescale_priorities(struct cache_set *, int);
  995. bool bch_bucket_add_unused(struct cache *, struct bucket *);
  996. void bch_allocator_thread(struct closure *);
  997. long bch_bucket_alloc(struct cache *, unsigned, struct closure *);
  998. void bch_bucket_free(struct cache_set *, struct bkey *);
  999. int __bch_bucket_alloc_set(struct cache_set *, unsigned,
  1000. struct bkey *, int, struct closure *);
  1001. int bch_bucket_alloc_set(struct cache_set *, unsigned,
  1002. struct bkey *, int, struct closure *);
  1003. __printf(2, 3)
  1004. bool bch_cache_set_error(struct cache_set *, const char *, ...);
  1005. void bch_prio_write(struct cache *);
  1006. void bch_write_bdev_super(struct cached_dev *, struct closure *);
  1007. extern struct workqueue_struct *bcache_wq, *bch_gc_wq;
  1008. extern const char * const bch_cache_modes[];
  1009. extern struct mutex bch_register_lock;
  1010. extern struct list_head bch_cache_sets;
  1011. extern struct kobj_type bch_cached_dev_ktype;
  1012. extern struct kobj_type bch_flash_dev_ktype;
  1013. extern struct kobj_type bch_cache_set_ktype;
  1014. extern struct kobj_type bch_cache_set_internal_ktype;
  1015. extern struct kobj_type bch_cache_ktype;
  1016. void bch_cached_dev_release(struct kobject *);
  1017. void bch_flash_dev_release(struct kobject *);
  1018. void bch_cache_set_release(struct kobject *);
  1019. void bch_cache_release(struct kobject *);
  1020. int bch_uuid_write(struct cache_set *);
  1021. void bcache_write_super(struct cache_set *);
  1022. int bch_flash_dev_create(struct cache_set *c, uint64_t size);
  1023. int bch_cached_dev_attach(struct cached_dev *, struct cache_set *);
  1024. void bch_cached_dev_detach(struct cached_dev *);
  1025. void bch_cached_dev_run(struct cached_dev *);
  1026. void bcache_device_stop(struct bcache_device *);
  1027. void bch_cache_set_unregister(struct cache_set *);
  1028. void bch_cache_set_stop(struct cache_set *);
  1029. struct cache_set *bch_cache_set_alloc(struct cache_sb *);
  1030. void bch_btree_cache_free(struct cache_set *);
  1031. int bch_btree_cache_alloc(struct cache_set *);
  1032. void bch_writeback_init_cached_dev(struct cached_dev *);
  1033. void bch_moving_init_cache_set(struct cache_set *);
  1034. void bch_cache_allocator_exit(struct cache *ca);
  1035. int bch_cache_allocator_init(struct cache *ca);
  1036. void bch_debug_exit(void);
  1037. int bch_debug_init(struct kobject *);
  1038. void bch_writeback_exit(void);
  1039. int bch_writeback_init(void);
  1040. void bch_request_exit(void);
  1041. int bch_request_init(void);
  1042. void bch_btree_exit(void);
  1043. int bch_btree_init(void);
  1044. #endif /* _BCACHE_H */