ctree.h 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  1. /*
  2. * Copyright (C) 2007 Oracle. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public
  6. * License v2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public
  14. * License along with this program; if not, write to the
  15. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16. * Boston, MA 021110-1307, USA.
  17. */
  18. #ifndef __BTRFS_CTREE__
  19. #define __BTRFS_CTREE__
  20. #include <linux/version.h>
  21. #include <linux/mm.h>
  22. #include <linux/highmem.h>
  23. #include <linux/fs.h>
  24. #include <linux/completion.h>
  25. #include <linux/backing-dev.h>
  26. #include <linux/wait.h>
  27. #include <asm/kmap_types.h>
  28. #include "extent_io.h"
  29. #include "extent_map.h"
  30. #include "async-thread.h"
  31. struct btrfs_trans_handle;
  32. struct btrfs_transaction;
  33. extern struct kmem_cache *btrfs_trans_handle_cachep;
  34. extern struct kmem_cache *btrfs_transaction_cachep;
  35. extern struct kmem_cache *btrfs_bit_radix_cachep;
  36. extern struct kmem_cache *btrfs_path_cachep;
  37. struct btrfs_ordered_sum;
  38. #define BTRFS_MAGIC "_BDRfS_M"
  39. #define BTRFS_ACL_NOT_CACHED ((void *)-1)
  40. #ifdef CONFIG_LOCKDEP
  41. # define BTRFS_MAX_LEVEL 7
  42. #else
  43. # define BTRFS_MAX_LEVEL 8
  44. #endif
  45. /* holds pointers to all of the tree roots */
  46. #define BTRFS_ROOT_TREE_OBJECTID 1ULL
  47. /* stores information about which extents are in use, and reference counts */
  48. #define BTRFS_EXTENT_TREE_OBJECTID 2ULL
  49. /*
  50. * chunk tree stores translations from logical -> physical block numbering
  51. * the super block points to the chunk tree
  52. */
  53. #define BTRFS_CHUNK_TREE_OBJECTID 3ULL
  54. /*
  55. * stores information about which areas of a given device are in use.
  56. * one per device. The tree of tree roots points to the device tree
  57. */
  58. #define BTRFS_DEV_TREE_OBJECTID 4ULL
  59. /* one per subvolume, storing files and directories */
  60. #define BTRFS_FS_TREE_OBJECTID 5ULL
  61. /* directory objectid inside the root tree */
  62. #define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
  63. /* orhpan objectid for tracking unlinked/truncated files */
  64. #define BTRFS_ORPHAN_OBJECTID -5ULL
  65. /* does write ahead logging to speed up fsyncs */
  66. #define BTRFS_TREE_LOG_OBJECTID -6ULL
  67. #define BTRFS_TREE_LOG_FIXUP_OBJECTID -7ULL
  68. /* for space balancing */
  69. #define BTRFS_TREE_RELOC_OBJECTID -8ULL
  70. #define BTRFS_DATA_RELOC_TREE_OBJECTID -9ULL
  71. /* dummy objectid represents multiple objectids */
  72. #define BTRFS_MULTIPLE_OBJECTIDS -255ULL
  73. /*
  74. * All files have objectids in this range.
  75. */
  76. #define BTRFS_FIRST_FREE_OBJECTID 256ULL
  77. #define BTRFS_LAST_FREE_OBJECTID -256ULL
  78. #define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
  79. /*
  80. * the device items go into the chunk tree. The key is in the form
  81. * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
  82. */
  83. #define BTRFS_DEV_ITEMS_OBJECTID 1ULL
  84. /*
  85. * we can actually store much bigger names, but lets not confuse the rest
  86. * of linux
  87. */
  88. #define BTRFS_NAME_LEN 255
  89. /* 32 bytes in various csum fields */
  90. #define BTRFS_CSUM_SIZE 32
  91. /* four bytes for CRC32 */
  92. #define BTRFS_CRC32_SIZE 4
  93. #define BTRFS_EMPTY_DIR_SIZE 0
  94. #define BTRFS_FT_UNKNOWN 0
  95. #define BTRFS_FT_REG_FILE 1
  96. #define BTRFS_FT_DIR 2
  97. #define BTRFS_FT_CHRDEV 3
  98. #define BTRFS_FT_BLKDEV 4
  99. #define BTRFS_FT_FIFO 5
  100. #define BTRFS_FT_SOCK 6
  101. #define BTRFS_FT_SYMLINK 7
  102. #define BTRFS_FT_XATTR 8
  103. #define BTRFS_FT_MAX 9
  104. /*
  105. * the key defines the order in the tree, and so it also defines (optimal)
  106. * block layout. objectid corresonds to the inode number. The flags
  107. * tells us things about the object, and is a kind of stream selector.
  108. * so for a given inode, keys with flags of 1 might refer to the inode
  109. * data, flags of 2 may point to file data in the btree and flags == 3
  110. * may point to extents.
  111. *
  112. * offset is the starting byte offset for this key in the stream.
  113. *
  114. * btrfs_disk_key is in disk byte order. struct btrfs_key is always
  115. * in cpu native order. Otherwise they are identical and their sizes
  116. * should be the same (ie both packed)
  117. */
  118. struct btrfs_disk_key {
  119. __le64 objectid;
  120. u8 type;
  121. __le64 offset;
  122. } __attribute__ ((__packed__));
  123. struct btrfs_key {
  124. u64 objectid;
  125. u8 type;
  126. u64 offset;
  127. } __attribute__ ((__packed__));
  128. struct btrfs_mapping_tree {
  129. struct extent_map_tree map_tree;
  130. };
  131. #define BTRFS_UUID_SIZE 16
  132. struct btrfs_dev_item {
  133. /* the internal btrfs device id */
  134. __le64 devid;
  135. /* size of the device */
  136. __le64 total_bytes;
  137. /* bytes used */
  138. __le64 bytes_used;
  139. /* optimal io alignment for this device */
  140. __le32 io_align;
  141. /* optimal io width for this device */
  142. __le32 io_width;
  143. /* minimal io size for this device */
  144. __le32 sector_size;
  145. /* type and info about this device */
  146. __le64 type;
  147. /* grouping information for allocation decisions */
  148. __le32 dev_group;
  149. /* seek speed 0-100 where 100 is fastest */
  150. u8 seek_speed;
  151. /* bandwidth 0-100 where 100 is fastest */
  152. u8 bandwidth;
  153. /* btrfs generated uuid for this device */
  154. u8 uuid[BTRFS_UUID_SIZE];
  155. } __attribute__ ((__packed__));
  156. struct btrfs_stripe {
  157. __le64 devid;
  158. __le64 offset;
  159. u8 dev_uuid[BTRFS_UUID_SIZE];
  160. } __attribute__ ((__packed__));
  161. struct btrfs_chunk {
  162. /* size of this chunk in bytes */
  163. __le64 length;
  164. /* objectid of the root referencing this chunk */
  165. __le64 owner;
  166. __le64 stripe_len;
  167. __le64 type;
  168. /* optimal io alignment for this chunk */
  169. __le32 io_align;
  170. /* optimal io width for this chunk */
  171. __le32 io_width;
  172. /* minimal io size for this chunk */
  173. __le32 sector_size;
  174. /* 2^16 stripes is quite a lot, a second limit is the size of a single
  175. * item in the btree
  176. */
  177. __le16 num_stripes;
  178. /* sub stripes only matter for raid10 */
  179. __le16 sub_stripes;
  180. struct btrfs_stripe stripe;
  181. /* additional stripes go here */
  182. } __attribute__ ((__packed__));
  183. static inline unsigned long btrfs_chunk_item_size(int num_stripes)
  184. {
  185. BUG_ON(num_stripes == 0);
  186. return sizeof(struct btrfs_chunk) +
  187. sizeof(struct btrfs_stripe) * (num_stripes - 1);
  188. }
  189. #define BTRFS_FSID_SIZE 16
  190. #define BTRFS_HEADER_FLAG_WRITTEN (1 << 0)
  191. /*
  192. * every tree block (leaf or node) starts with this header.
  193. */
  194. struct btrfs_header {
  195. /* these first four must match the super block */
  196. u8 csum[BTRFS_CSUM_SIZE];
  197. u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
  198. __le64 bytenr; /* which block this node is supposed to live in */
  199. __le64 flags;
  200. /* allowed to be different from the super from here on down */
  201. u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
  202. __le64 generation;
  203. __le64 owner;
  204. __le32 nritems;
  205. u8 level;
  206. } __attribute__ ((__packed__));
  207. #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
  208. sizeof(struct btrfs_header)) / \
  209. sizeof(struct btrfs_key_ptr))
  210. #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
  211. #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
  212. #define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
  213. sizeof(struct btrfs_item) - \
  214. sizeof(struct btrfs_file_extent_item))
  215. /*
  216. * this is a very generous portion of the super block, giving us
  217. * room to translate 14 chunks with 3 stripes each.
  218. */
  219. #define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
  220. #define BTRFS_LABEL_SIZE 256
  221. /*
  222. * the super block basically lists the main trees of the FS
  223. * it currently lacks any block count etc etc
  224. */
  225. struct btrfs_super_block {
  226. u8 csum[BTRFS_CSUM_SIZE];
  227. /* the first 4 fields must match struct btrfs_header */
  228. u8 fsid[16]; /* FS specific uuid */
  229. __le64 bytenr; /* this block number */
  230. __le64 flags;
  231. /* allowed to be different from the btrfs_header from here own down */
  232. __le64 magic;
  233. __le64 generation;
  234. __le64 root;
  235. __le64 chunk_root;
  236. __le64 log_root;
  237. __le64 total_bytes;
  238. __le64 bytes_used;
  239. __le64 root_dir_objectid;
  240. __le64 num_devices;
  241. __le32 sectorsize;
  242. __le32 nodesize;
  243. __le32 leafsize;
  244. __le32 stripesize;
  245. __le32 sys_chunk_array_size;
  246. __le64 chunk_root_generation;
  247. u8 root_level;
  248. u8 chunk_root_level;
  249. u8 log_root_level;
  250. struct btrfs_dev_item dev_item;
  251. char label[BTRFS_LABEL_SIZE];
  252. u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
  253. } __attribute__ ((__packed__));
  254. /*
  255. * A leaf is full of items. offset and size tell us where to find
  256. * the item in the leaf (relative to the start of the data area)
  257. */
  258. struct btrfs_item {
  259. struct btrfs_disk_key key;
  260. __le32 offset;
  261. __le32 size;
  262. } __attribute__ ((__packed__));
  263. /*
  264. * leaves have an item area and a data area:
  265. * [item0, item1....itemN] [free space] [dataN...data1, data0]
  266. *
  267. * The data is separate from the items to get the keys closer together
  268. * during searches.
  269. */
  270. struct btrfs_leaf {
  271. struct btrfs_header header;
  272. struct btrfs_item items[];
  273. } __attribute__ ((__packed__));
  274. /*
  275. * all non-leaf blocks are nodes, they hold only keys and pointers to
  276. * other blocks
  277. */
  278. struct btrfs_key_ptr {
  279. struct btrfs_disk_key key;
  280. __le64 blockptr;
  281. __le64 generation;
  282. } __attribute__ ((__packed__));
  283. struct btrfs_node {
  284. struct btrfs_header header;
  285. struct btrfs_key_ptr ptrs[];
  286. } __attribute__ ((__packed__));
  287. /*
  288. * btrfs_paths remember the path taken from the root down to the leaf.
  289. * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
  290. * to any other levels that are present.
  291. *
  292. * The slots array records the index of the item or block pointer
  293. * used while walking the tree.
  294. */
  295. struct btrfs_path {
  296. struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
  297. int slots[BTRFS_MAX_LEVEL];
  298. /* if there is real range locking, this locks field will change */
  299. int locks[BTRFS_MAX_LEVEL];
  300. int reada;
  301. /* keep some upper locks as we walk down */
  302. int keep_locks;
  303. int skip_locking;
  304. int lowest_level;
  305. };
  306. /*
  307. * items in the extent btree are used to record the objectid of the
  308. * owner of the block and the number of references
  309. */
  310. struct btrfs_extent_item {
  311. __le32 refs;
  312. } __attribute__ ((__packed__));
  313. struct btrfs_extent_ref {
  314. __le64 root;
  315. __le64 generation;
  316. __le64 objectid;
  317. __le32 num_refs;
  318. } __attribute__ ((__packed__));
  319. /* dev extents record free space on individual devices. The owner
  320. * field points back to the chunk allocation mapping tree that allocated
  321. * the extent. The chunk tree uuid field is a way to double check the owner
  322. */
  323. struct btrfs_dev_extent {
  324. __le64 chunk_tree;
  325. __le64 chunk_objectid;
  326. __le64 chunk_offset;
  327. __le64 length;
  328. u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
  329. } __attribute__ ((__packed__));
  330. struct btrfs_inode_ref {
  331. __le64 index;
  332. __le16 name_len;
  333. /* name goes here */
  334. } __attribute__ ((__packed__));
  335. struct btrfs_timespec {
  336. __le64 sec;
  337. __le32 nsec;
  338. } __attribute__ ((__packed__));
  339. typedef enum {
  340. BTRFS_COMPRESS_NONE = 0,
  341. BTRFS_COMPRESS_ZLIB = 1,
  342. BTRFS_COMPRESS_LAST = 2,
  343. } btrfs_compression_type;
  344. /* we don't understand any encryption methods right now */
  345. typedef enum {
  346. BTRFS_ENCRYPTION_NONE = 0,
  347. BTRFS_ENCRYPTION_LAST = 1,
  348. } btrfs_encryption_type;
  349. struct btrfs_inode_item {
  350. /* nfs style generation number */
  351. __le64 generation;
  352. /* transid that last touched this inode */
  353. __le64 transid;
  354. __le64 size;
  355. __le64 nbytes;
  356. __le64 block_group;
  357. __le32 nlink;
  358. __le32 uid;
  359. __le32 gid;
  360. __le32 mode;
  361. __le64 rdev;
  362. __le16 flags;
  363. __le16 compat_flags;
  364. struct btrfs_timespec atime;
  365. struct btrfs_timespec ctime;
  366. struct btrfs_timespec mtime;
  367. struct btrfs_timespec otime;
  368. } __attribute__ ((__packed__));
  369. struct btrfs_dir_log_item {
  370. __le64 end;
  371. } __attribute__ ((__packed__));
  372. struct btrfs_dir_item {
  373. struct btrfs_disk_key location;
  374. __le64 transid;
  375. __le16 data_len;
  376. __le16 name_len;
  377. u8 type;
  378. } __attribute__ ((__packed__));
  379. struct btrfs_root_item {
  380. struct btrfs_inode_item inode;
  381. __le64 generation;
  382. __le64 root_dirid;
  383. __le64 bytenr;
  384. __le64 byte_limit;
  385. __le64 bytes_used;
  386. __le64 last_snapshot;
  387. __le32 flags;
  388. __le32 refs;
  389. struct btrfs_disk_key drop_progress;
  390. u8 drop_level;
  391. u8 level;
  392. } __attribute__ ((__packed__));
  393. #define BTRFS_FILE_EXTENT_INLINE 0
  394. #define BTRFS_FILE_EXTENT_REG 1
  395. #define BTRFS_FILE_EXTENT_PREALLOC 2
  396. struct btrfs_file_extent_item {
  397. /*
  398. * transaction id that created this extent
  399. */
  400. __le64 generation;
  401. /*
  402. * max number of bytes to hold this extent in ram
  403. * when we split a compressed extent we can't know how big
  404. * each of the resulting pieces will be. So, this is
  405. * an upper limit on the size of the extent in ram instead of
  406. * an exact limit.
  407. */
  408. __le64 ram_bytes;
  409. /*
  410. * 32 bits for the various ways we might encode the data,
  411. * including compression and encryption. If any of these
  412. * are set to something a given disk format doesn't understand
  413. * it is treated like an incompat flag for reading and writing,
  414. * but not for stat.
  415. */
  416. u8 compression;
  417. u8 encryption;
  418. __le16 other_encoding; /* spare for later use */
  419. /* are we inline data or a real extent? */
  420. u8 type;
  421. /*
  422. * disk space consumed by the extent, checksum blocks are included
  423. * in these numbers
  424. */
  425. __le64 disk_bytenr;
  426. __le64 disk_num_bytes;
  427. /*
  428. * the logical offset in file blocks (no csums)
  429. * this extent record is for. This allows a file extent to point
  430. * into the middle of an existing extent on disk, sharing it
  431. * between two snapshots (useful if some bytes in the middle of the
  432. * extent have changed
  433. */
  434. __le64 offset;
  435. /*
  436. * the logical number of file blocks (no csums included). This
  437. * always reflects the size uncompressed and without encoding.
  438. */
  439. __le64 num_bytes;
  440. } __attribute__ ((__packed__));
  441. struct btrfs_csum_item {
  442. u8 csum;
  443. } __attribute__ ((__packed__));
  444. /* different types of block groups (and chunks) */
  445. #define BTRFS_BLOCK_GROUP_DATA (1 << 0)
  446. #define BTRFS_BLOCK_GROUP_SYSTEM (1 << 1)
  447. #define BTRFS_BLOCK_GROUP_METADATA (1 << 2)
  448. #define BTRFS_BLOCK_GROUP_RAID0 (1 << 3)
  449. #define BTRFS_BLOCK_GROUP_RAID1 (1 << 4)
  450. #define BTRFS_BLOCK_GROUP_DUP (1 << 5)
  451. #define BTRFS_BLOCK_GROUP_RAID10 (1 << 6)
  452. struct btrfs_block_group_item {
  453. __le64 used;
  454. __le64 chunk_objectid;
  455. __le64 flags;
  456. } __attribute__ ((__packed__));
  457. struct btrfs_space_info {
  458. u64 flags;
  459. u64 total_bytes;
  460. u64 bytes_used;
  461. u64 bytes_pinned;
  462. u64 bytes_reserved;
  463. int full;
  464. int force_alloc;
  465. struct list_head list;
  466. /* for block groups in our same type */
  467. struct list_head block_groups;
  468. spinlock_t lock;
  469. struct rw_semaphore groups_sem;
  470. };
  471. struct btrfs_free_space {
  472. struct rb_node bytes_index;
  473. struct rb_node offset_index;
  474. u64 offset;
  475. u64 bytes;
  476. };
  477. struct btrfs_block_group_cache {
  478. struct btrfs_key key;
  479. struct btrfs_block_group_item item;
  480. spinlock_t lock;
  481. struct mutex alloc_mutex;
  482. u64 pinned;
  483. u64 reserved;
  484. u64 flags;
  485. int cached;
  486. int ro;
  487. int dirty;
  488. struct btrfs_space_info *space_info;
  489. /* free space cache stuff */
  490. struct rb_root free_space_bytes;
  491. struct rb_root free_space_offset;
  492. /* block group cache stuff */
  493. struct rb_node cache_node;
  494. /* for block groups in the same raid type */
  495. struct list_head list;
  496. };
  497. struct btrfs_leaf_ref_tree {
  498. struct rb_root root;
  499. struct list_head list;
  500. spinlock_t lock;
  501. };
  502. struct btrfs_device;
  503. struct btrfs_fs_devices;
  504. struct btrfs_fs_info {
  505. u8 fsid[BTRFS_FSID_SIZE];
  506. u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
  507. struct btrfs_root *extent_root;
  508. struct btrfs_root *tree_root;
  509. struct btrfs_root *chunk_root;
  510. struct btrfs_root *dev_root;
  511. /* the log root tree is a directory of all the other log roots */
  512. struct btrfs_root *log_root_tree;
  513. struct radix_tree_root fs_roots_radix;
  514. /* block group cache stuff */
  515. spinlock_t block_group_cache_lock;
  516. struct rb_root block_group_cache_tree;
  517. struct extent_io_tree pinned_extents;
  518. struct extent_io_tree pending_del;
  519. struct extent_io_tree extent_ins;
  520. /* logical->physical extent mapping */
  521. struct btrfs_mapping_tree mapping_tree;
  522. u64 generation;
  523. u64 last_trans_committed;
  524. u64 last_trans_new_blockgroup;
  525. u64 open_ioctl_trans;
  526. unsigned long mount_opt;
  527. u64 max_extent;
  528. u64 max_inline;
  529. u64 alloc_start;
  530. struct btrfs_transaction *running_transaction;
  531. wait_queue_head_t transaction_throttle;
  532. wait_queue_head_t transaction_wait;
  533. wait_queue_head_t async_submit_wait;
  534. wait_queue_head_t tree_log_wait;
  535. struct btrfs_super_block super_copy;
  536. struct btrfs_super_block super_for_commit;
  537. struct block_device *__bdev;
  538. struct super_block *sb;
  539. struct inode *btree_inode;
  540. struct backing_dev_info bdi;
  541. spinlock_t hash_lock;
  542. struct mutex trans_mutex;
  543. struct mutex tree_log_mutex;
  544. struct mutex transaction_kthread_mutex;
  545. struct mutex cleaner_mutex;
  546. struct mutex extent_ins_mutex;
  547. struct mutex pinned_mutex;
  548. struct mutex chunk_mutex;
  549. struct mutex drop_mutex;
  550. struct mutex volume_mutex;
  551. struct mutex tree_reloc_mutex;
  552. struct list_head trans_list;
  553. struct list_head hashers;
  554. struct list_head dead_roots;
  555. atomic_t nr_async_submits;
  556. atomic_t async_submit_draining;
  557. atomic_t nr_async_bios;
  558. atomic_t async_delalloc_pages;
  559. atomic_t tree_log_writers;
  560. atomic_t tree_log_commit;
  561. unsigned long tree_log_batch;
  562. u64 tree_log_transid;
  563. /*
  564. * this is used by the balancing code to wait for all the pending
  565. * ordered extents
  566. */
  567. spinlock_t ordered_extent_lock;
  568. struct list_head ordered_extents;
  569. struct list_head delalloc_inodes;
  570. /*
  571. * there is a pool of worker threads for checksumming during writes
  572. * and a pool for checksumming after reads. This is because readers
  573. * can run with FS locks held, and the writers may be waiting for
  574. * those locks. We don't want ordering in the pending list to cause
  575. * deadlocks, and so the two are serviced separately.
  576. *
  577. * A third pool does submit_bio to avoid deadlocking with the other
  578. * two
  579. */
  580. struct btrfs_workers workers;
  581. struct btrfs_workers delalloc_workers;
  582. struct btrfs_workers endio_workers;
  583. struct btrfs_workers endio_write_workers;
  584. struct btrfs_workers submit_workers;
  585. /*
  586. * fixup workers take dirty pages that didn't properly go through
  587. * the cow mechanism and make them safe to write. It happens
  588. * for the sys_munmap function call path
  589. */
  590. struct btrfs_workers fixup_workers;
  591. struct task_struct *transaction_kthread;
  592. struct task_struct *cleaner_kthread;
  593. int thread_pool_size;
  594. /* tree relocation relocated fields */
  595. struct list_head dead_reloc_roots;
  596. struct btrfs_leaf_ref_tree reloc_ref_tree;
  597. struct btrfs_leaf_ref_tree shared_ref_tree;
  598. struct kobject super_kobj;
  599. struct completion kobj_unregister;
  600. int do_barriers;
  601. int closing;
  602. int log_root_recovering;
  603. atomic_t throttles;
  604. atomic_t throttle_gen;
  605. u64 total_pinned;
  606. struct list_head dirty_cowonly_roots;
  607. struct btrfs_fs_devices *fs_devices;
  608. struct list_head space_info;
  609. spinlock_t delalloc_lock;
  610. spinlock_t new_trans_lock;
  611. u64 delalloc_bytes;
  612. u64 last_alloc;
  613. u64 last_data_alloc;
  614. spinlock_t ref_cache_lock;
  615. u64 total_ref_cache_size;
  616. u64 avail_data_alloc_bits;
  617. u64 avail_metadata_alloc_bits;
  618. u64 avail_system_alloc_bits;
  619. u64 data_alloc_profile;
  620. u64 metadata_alloc_profile;
  621. u64 system_alloc_profile;
  622. void *bdev_holder;
  623. };
  624. /*
  625. * in ram representation of the tree. extent_root is used for all allocations
  626. * and for the extent tree extent_root root.
  627. */
  628. struct btrfs_dirty_root;
  629. struct btrfs_root {
  630. struct extent_buffer *node;
  631. /* the node lock is held while changing the node pointer */
  632. spinlock_t node_lock;
  633. struct extent_buffer *commit_root;
  634. struct btrfs_leaf_ref_tree *ref_tree;
  635. struct btrfs_leaf_ref_tree ref_tree_struct;
  636. struct btrfs_dirty_root *dirty_root;
  637. struct btrfs_root *log_root;
  638. struct btrfs_root *reloc_root;
  639. struct btrfs_root_item root_item;
  640. struct btrfs_key root_key;
  641. struct btrfs_fs_info *fs_info;
  642. struct inode *inode;
  643. struct extent_io_tree dirty_log_pages;
  644. struct kobject root_kobj;
  645. struct completion kobj_unregister;
  646. struct mutex objectid_mutex;
  647. struct mutex log_mutex;
  648. u64 objectid;
  649. u64 last_trans;
  650. /* data allocations are done in sectorsize units */
  651. u32 sectorsize;
  652. /* node allocations are done in nodesize units */
  653. u32 nodesize;
  654. /* leaf allocations are done in leafsize units */
  655. u32 leafsize;
  656. u32 stripesize;
  657. u32 type;
  658. u64 highest_inode;
  659. u64 last_inode_alloc;
  660. int ref_cows;
  661. int track_dirty;
  662. u64 defrag_trans_start;
  663. struct btrfs_key defrag_progress;
  664. struct btrfs_key defrag_max;
  665. int defrag_running;
  666. int defrag_level;
  667. char *name;
  668. int in_sysfs;
  669. /* the dirty list is only used by non-reference counted roots */
  670. struct list_head dirty_list;
  671. spinlock_t list_lock;
  672. struct list_head dead_list;
  673. struct list_head orphan_list;
  674. };
  675. /*
  676. * inode items have the data typically returned from stat and store other
  677. * info about object characteristics. There is one for every file and dir in
  678. * the FS
  679. */
  680. #define BTRFS_INODE_ITEM_KEY 1
  681. #define BTRFS_INODE_REF_KEY 2
  682. #define BTRFS_XATTR_ITEM_KEY 8
  683. #define BTRFS_ORPHAN_ITEM_KEY 9
  684. /* reserve 2-15 close to the inode for later flexibility */
  685. /*
  686. * dir items are the name -> inode pointers in a directory. There is one
  687. * for every name in a directory.
  688. */
  689. #define BTRFS_DIR_LOG_ITEM_KEY 14
  690. #define BTRFS_DIR_LOG_INDEX_KEY 15
  691. #define BTRFS_DIR_ITEM_KEY 16
  692. #define BTRFS_DIR_INDEX_KEY 17
  693. /*
  694. * extent data is for file data
  695. */
  696. #define BTRFS_EXTENT_DATA_KEY 18
  697. /*
  698. * csum items have the checksums for data in the extents
  699. */
  700. #define BTRFS_CSUM_ITEM_KEY 19
  701. /* reserve 21-31 for other file/dir stuff */
  702. /*
  703. * root items point to tree roots. There are typically in the root
  704. * tree used by the super block to find all the other trees
  705. */
  706. #define BTRFS_ROOT_ITEM_KEY 32
  707. /*
  708. * extent items are in the extent map tree. These record which blocks
  709. * are used, and how many references there are to each block
  710. */
  711. #define BTRFS_EXTENT_ITEM_KEY 33
  712. #define BTRFS_EXTENT_REF_KEY 34
  713. /*
  714. * block groups give us hints into the extent allocation trees. Which
  715. * blocks are free etc etc
  716. */
  717. #define BTRFS_BLOCK_GROUP_ITEM_KEY 50
  718. #define BTRFS_DEV_EXTENT_KEY 75
  719. #define BTRFS_DEV_ITEM_KEY 76
  720. #define BTRFS_CHUNK_ITEM_KEY 77
  721. /*
  722. * string items are for debugging. They just store a short string of
  723. * data in the FS
  724. */
  725. #define BTRFS_STRING_ITEM_KEY 253
  726. #define BTRFS_MOUNT_NODATASUM (1 << 0)
  727. #define BTRFS_MOUNT_NODATACOW (1 << 1)
  728. #define BTRFS_MOUNT_NOBARRIER (1 << 2)
  729. #define BTRFS_MOUNT_SSD (1 << 3)
  730. #define BTRFS_MOUNT_DEGRADED (1 << 4)
  731. #define BTRFS_MOUNT_COMPRESS (1 << 5)
  732. #define btrfs_clear_opt(o, opt) ((o) &= ~BTRFS_MOUNT_##opt)
  733. #define btrfs_set_opt(o, opt) ((o) |= BTRFS_MOUNT_##opt)
  734. #define btrfs_test_opt(root, opt) ((root)->fs_info->mount_opt & \
  735. BTRFS_MOUNT_##opt)
  736. /*
  737. * Inode flags
  738. */
  739. #define BTRFS_INODE_NODATASUM (1 << 0)
  740. #define BTRFS_INODE_NODATACOW (1 << 1)
  741. #define BTRFS_INODE_READONLY (1 << 2)
  742. #define BTRFS_INODE_NOCOMPRESS (1 << 3)
  743. #define BTRFS_INODE_PREALLOC (1 << 4)
  744. #define btrfs_clear_flag(inode, flag) (BTRFS_I(inode)->flags &= \
  745. ~BTRFS_INODE_##flag)
  746. #define btrfs_set_flag(inode, flag) (BTRFS_I(inode)->flags |= \
  747. BTRFS_INODE_##flag)
  748. #define btrfs_test_flag(inode, flag) (BTRFS_I(inode)->flags & \
  749. BTRFS_INODE_##flag)
  750. /* some macros to generate set/get funcs for the struct fields. This
  751. * assumes there is a lefoo_to_cpu for every type, so lets make a simple
  752. * one for u8:
  753. */
  754. #define le8_to_cpu(v) (v)
  755. #define cpu_to_le8(v) (v)
  756. #define __le8 u8
  757. #define read_eb_member(eb, ptr, type, member, result) ( \
  758. read_extent_buffer(eb, (char *)(result), \
  759. ((unsigned long)(ptr)) + \
  760. offsetof(type, member), \
  761. sizeof(((type *)0)->member)))
  762. #define write_eb_member(eb, ptr, type, member, result) ( \
  763. write_extent_buffer(eb, (char *)(result), \
  764. ((unsigned long)(ptr)) + \
  765. offsetof(type, member), \
  766. sizeof(((type *)0)->member)))
  767. #ifndef BTRFS_SETGET_FUNCS
  768. #define BTRFS_SETGET_FUNCS(name, type, member, bits) \
  769. u##bits btrfs_##name(struct extent_buffer *eb, type *s); \
  770. void btrfs_set_##name(struct extent_buffer *eb, type *s, u##bits val);
  771. #endif
  772. #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \
  773. static inline u##bits btrfs_##name(struct extent_buffer *eb) \
  774. { \
  775. type *p = kmap_atomic(eb->first_page, KM_USER0); \
  776. u##bits res = le##bits##_to_cpu(p->member); \
  777. kunmap_atomic(p, KM_USER0); \
  778. return res; \
  779. } \
  780. static inline void btrfs_set_##name(struct extent_buffer *eb, \
  781. u##bits val) \
  782. { \
  783. type *p = kmap_atomic(eb->first_page, KM_USER0); \
  784. p->member = cpu_to_le##bits(val); \
  785. kunmap_atomic(p, KM_USER0); \
  786. }
  787. #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \
  788. static inline u##bits btrfs_##name(type *s) \
  789. { \
  790. return le##bits##_to_cpu(s->member); \
  791. } \
  792. static inline void btrfs_set_##name(type *s, u##bits val) \
  793. { \
  794. s->member = cpu_to_le##bits(val); \
  795. }
  796. BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
  797. BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
  798. BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
  799. BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
  800. BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
  801. BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
  802. BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
  803. BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
  804. BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
  805. BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
  806. BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
  807. BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
  808. total_bytes, 64);
  809. BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
  810. bytes_used, 64);
  811. BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
  812. io_align, 32);
  813. BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
  814. io_width, 32);
  815. BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
  816. sector_size, 32);
  817. BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
  818. BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
  819. dev_group, 32);
  820. BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
  821. seek_speed, 8);
  822. BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
  823. bandwidth, 8);
  824. static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
  825. {
  826. return (char *)d + offsetof(struct btrfs_dev_item, uuid);
  827. }
  828. BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
  829. BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
  830. BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
  831. BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
  832. BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
  833. BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
  834. BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
  835. BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
  836. BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
  837. BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
  838. BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
  839. static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
  840. {
  841. return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
  842. }
  843. BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
  844. BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
  845. BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
  846. stripe_len, 64);
  847. BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
  848. io_align, 32);
  849. BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
  850. io_width, 32);
  851. BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
  852. sector_size, 32);
  853. BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
  854. BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
  855. num_stripes, 16);
  856. BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
  857. sub_stripes, 16);
  858. BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
  859. BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
  860. static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
  861. int nr)
  862. {
  863. unsigned long offset = (unsigned long)c;
  864. offset += offsetof(struct btrfs_chunk, stripe);
  865. offset += nr * sizeof(struct btrfs_stripe);
  866. return (struct btrfs_stripe *)offset;
  867. }
  868. static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
  869. {
  870. return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
  871. }
  872. static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
  873. struct btrfs_chunk *c, int nr)
  874. {
  875. return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
  876. }
  877. static inline void btrfs_set_stripe_offset_nr(struct extent_buffer *eb,
  878. struct btrfs_chunk *c, int nr,
  879. u64 val)
  880. {
  881. btrfs_set_stripe_offset(eb, btrfs_stripe_nr(c, nr), val);
  882. }
  883. static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
  884. struct btrfs_chunk *c, int nr)
  885. {
  886. return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
  887. }
  888. static inline void btrfs_set_stripe_devid_nr(struct extent_buffer *eb,
  889. struct btrfs_chunk *c, int nr,
  890. u64 val)
  891. {
  892. btrfs_set_stripe_devid(eb, btrfs_stripe_nr(c, nr), val);
  893. }
  894. /* struct btrfs_block_group_item */
  895. BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
  896. used, 64);
  897. BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
  898. used, 64);
  899. BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
  900. struct btrfs_block_group_item, chunk_objectid, 64);
  901. BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
  902. struct btrfs_block_group_item, chunk_objectid, 64);
  903. BTRFS_SETGET_FUNCS(disk_block_group_flags,
  904. struct btrfs_block_group_item, flags, 64);
  905. BTRFS_SETGET_STACK_FUNCS(block_group_flags,
  906. struct btrfs_block_group_item, flags, 64);
  907. /* struct btrfs_inode_ref */
  908. BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
  909. BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
  910. /* struct btrfs_inode_item */
  911. BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
  912. BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
  913. BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
  914. BTRFS_SETGET_FUNCS(inode_nbytes, struct btrfs_inode_item, nbytes, 64);
  915. BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
  916. BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
  917. BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
  918. BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
  919. BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
  920. BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
  921. BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 16);
  922. BTRFS_SETGET_FUNCS(inode_compat_flags, struct btrfs_inode_item,
  923. compat_flags, 16);
  924. static inline struct btrfs_timespec *
  925. btrfs_inode_atime(struct btrfs_inode_item *inode_item)
  926. {
  927. unsigned long ptr = (unsigned long)inode_item;
  928. ptr += offsetof(struct btrfs_inode_item, atime);
  929. return (struct btrfs_timespec *)ptr;
  930. }
  931. static inline struct btrfs_timespec *
  932. btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
  933. {
  934. unsigned long ptr = (unsigned long)inode_item;
  935. ptr += offsetof(struct btrfs_inode_item, mtime);
  936. return (struct btrfs_timespec *)ptr;
  937. }
  938. static inline struct btrfs_timespec *
  939. btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
  940. {
  941. unsigned long ptr = (unsigned long)inode_item;
  942. ptr += offsetof(struct btrfs_inode_item, ctime);
  943. return (struct btrfs_timespec *)ptr;
  944. }
  945. static inline struct btrfs_timespec *
  946. btrfs_inode_otime(struct btrfs_inode_item *inode_item)
  947. {
  948. unsigned long ptr = (unsigned long)inode_item;
  949. ptr += offsetof(struct btrfs_inode_item, otime);
  950. return (struct btrfs_timespec *)ptr;
  951. }
  952. BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
  953. BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
  954. /* struct btrfs_dev_extent */
  955. BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
  956. chunk_tree, 64);
  957. BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
  958. chunk_objectid, 64);
  959. BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
  960. chunk_offset, 64);
  961. BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
  962. static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
  963. {
  964. unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
  965. return (u8 *)((unsigned long)dev + ptr);
  966. }
  967. /* struct btrfs_extent_ref */
  968. BTRFS_SETGET_FUNCS(ref_root, struct btrfs_extent_ref, root, 64);
  969. BTRFS_SETGET_FUNCS(ref_generation, struct btrfs_extent_ref, generation, 64);
  970. BTRFS_SETGET_FUNCS(ref_objectid, struct btrfs_extent_ref, objectid, 64);
  971. BTRFS_SETGET_FUNCS(ref_num_refs, struct btrfs_extent_ref, num_refs, 32);
  972. BTRFS_SETGET_STACK_FUNCS(stack_ref_root, struct btrfs_extent_ref, root, 64);
  973. BTRFS_SETGET_STACK_FUNCS(stack_ref_generation, struct btrfs_extent_ref,
  974. generation, 64);
  975. BTRFS_SETGET_STACK_FUNCS(stack_ref_objectid, struct btrfs_extent_ref,
  976. objectid, 64);
  977. BTRFS_SETGET_STACK_FUNCS(stack_ref_num_refs, struct btrfs_extent_ref,
  978. num_refs, 32);
  979. /* struct btrfs_extent_item */
  980. BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 32);
  981. BTRFS_SETGET_STACK_FUNCS(stack_extent_refs, struct btrfs_extent_item,
  982. refs, 32);
  983. /* struct btrfs_node */
  984. BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
  985. BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
  986. static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
  987. {
  988. unsigned long ptr;
  989. ptr = offsetof(struct btrfs_node, ptrs) +
  990. sizeof(struct btrfs_key_ptr) * nr;
  991. return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
  992. }
  993. static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
  994. int nr, u64 val)
  995. {
  996. unsigned long ptr;
  997. ptr = offsetof(struct btrfs_node, ptrs) +
  998. sizeof(struct btrfs_key_ptr) * nr;
  999. btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
  1000. }
  1001. static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
  1002. {
  1003. unsigned long ptr;
  1004. ptr = offsetof(struct btrfs_node, ptrs) +
  1005. sizeof(struct btrfs_key_ptr) * nr;
  1006. return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
  1007. }
  1008. static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
  1009. int nr, u64 val)
  1010. {
  1011. unsigned long ptr;
  1012. ptr = offsetof(struct btrfs_node, ptrs) +
  1013. sizeof(struct btrfs_key_ptr) * nr;
  1014. btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
  1015. }
  1016. static inline unsigned long btrfs_node_key_ptr_offset(int nr)
  1017. {
  1018. return offsetof(struct btrfs_node, ptrs) +
  1019. sizeof(struct btrfs_key_ptr) * nr;
  1020. }
  1021. void btrfs_node_key(struct extent_buffer *eb,
  1022. struct btrfs_disk_key *disk_key, int nr);
  1023. static inline void btrfs_set_node_key(struct extent_buffer *eb,
  1024. struct btrfs_disk_key *disk_key, int nr)
  1025. {
  1026. unsigned long ptr;
  1027. ptr = btrfs_node_key_ptr_offset(nr);
  1028. write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
  1029. struct btrfs_key_ptr, key, disk_key);
  1030. }
  1031. /* struct btrfs_item */
  1032. BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
  1033. BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
  1034. static inline unsigned long btrfs_item_nr_offset(int nr)
  1035. {
  1036. return offsetof(struct btrfs_leaf, items) +
  1037. sizeof(struct btrfs_item) * nr;
  1038. }
  1039. static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
  1040. int nr)
  1041. {
  1042. return (struct btrfs_item *)btrfs_item_nr_offset(nr);
  1043. }
  1044. static inline u32 btrfs_item_end(struct extent_buffer *eb,
  1045. struct btrfs_item *item)
  1046. {
  1047. return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
  1048. }
  1049. static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
  1050. {
  1051. return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
  1052. }
  1053. static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
  1054. {
  1055. return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
  1056. }
  1057. static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
  1058. {
  1059. return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
  1060. }
  1061. static inline void btrfs_item_key(struct extent_buffer *eb,
  1062. struct btrfs_disk_key *disk_key, int nr)
  1063. {
  1064. struct btrfs_item *item = btrfs_item_nr(eb, nr);
  1065. read_eb_member(eb, item, struct btrfs_item, key, disk_key);
  1066. }
  1067. static inline void btrfs_set_item_key(struct extent_buffer *eb,
  1068. struct btrfs_disk_key *disk_key, int nr)
  1069. {
  1070. struct btrfs_item *item = btrfs_item_nr(eb, nr);
  1071. write_eb_member(eb, item, struct btrfs_item, key, disk_key);
  1072. }
  1073. BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
  1074. /* struct btrfs_dir_item */
  1075. BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
  1076. BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
  1077. BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
  1078. BTRFS_SETGET_FUNCS(dir_transid, struct btrfs_dir_item, transid, 64);
  1079. static inline void btrfs_dir_item_key(struct extent_buffer *eb,
  1080. struct btrfs_dir_item *item,
  1081. struct btrfs_disk_key *key)
  1082. {
  1083. read_eb_member(eb, item, struct btrfs_dir_item, location, key);
  1084. }
  1085. static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
  1086. struct btrfs_dir_item *item,
  1087. struct btrfs_disk_key *key)
  1088. {
  1089. write_eb_member(eb, item, struct btrfs_dir_item, location, key);
  1090. }
  1091. /* struct btrfs_disk_key */
  1092. BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
  1093. objectid, 64);
  1094. BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
  1095. BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
  1096. static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
  1097. struct btrfs_disk_key *disk)
  1098. {
  1099. cpu->offset = le64_to_cpu(disk->offset);
  1100. cpu->type = disk->type;
  1101. cpu->objectid = le64_to_cpu(disk->objectid);
  1102. }
  1103. static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
  1104. struct btrfs_key *cpu)
  1105. {
  1106. disk->offset = cpu_to_le64(cpu->offset);
  1107. disk->type = cpu->type;
  1108. disk->objectid = cpu_to_le64(cpu->objectid);
  1109. }
  1110. static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
  1111. struct btrfs_key *key, int nr)
  1112. {
  1113. struct btrfs_disk_key disk_key;
  1114. btrfs_node_key(eb, &disk_key, nr);
  1115. btrfs_disk_key_to_cpu(key, &disk_key);
  1116. }
  1117. static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
  1118. struct btrfs_key *key, int nr)
  1119. {
  1120. struct btrfs_disk_key disk_key;
  1121. btrfs_item_key(eb, &disk_key, nr);
  1122. btrfs_disk_key_to_cpu(key, &disk_key);
  1123. }
  1124. static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
  1125. struct btrfs_dir_item *item,
  1126. struct btrfs_key *key)
  1127. {
  1128. struct btrfs_disk_key disk_key;
  1129. btrfs_dir_item_key(eb, item, &disk_key);
  1130. btrfs_disk_key_to_cpu(key, &disk_key);
  1131. }
  1132. static inline u8 btrfs_key_type(struct btrfs_key *key)
  1133. {
  1134. return key->type;
  1135. }
  1136. static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
  1137. {
  1138. key->type = val;
  1139. }
  1140. /* struct btrfs_header */
  1141. BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
  1142. BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
  1143. generation, 64);
  1144. BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
  1145. BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
  1146. BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
  1147. BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
  1148. static inline int btrfs_header_flag(struct extent_buffer *eb, u64 flag)
  1149. {
  1150. return (btrfs_header_flags(eb) & flag) == flag;
  1151. }
  1152. static inline int btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
  1153. {
  1154. u64 flags = btrfs_header_flags(eb);
  1155. btrfs_set_header_flags(eb, flags | flag);
  1156. return (flags & flag) == flag;
  1157. }
  1158. static inline int btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
  1159. {
  1160. u64 flags = btrfs_header_flags(eb);
  1161. btrfs_set_header_flags(eb, flags & ~flag);
  1162. return (flags & flag) == flag;
  1163. }
  1164. static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
  1165. {
  1166. unsigned long ptr = offsetof(struct btrfs_header, fsid);
  1167. return (u8 *)ptr;
  1168. }
  1169. static inline u8 *btrfs_header_chunk_tree_uuid(struct extent_buffer *eb)
  1170. {
  1171. unsigned long ptr = offsetof(struct btrfs_header, chunk_tree_uuid);
  1172. return (u8 *)ptr;
  1173. }
  1174. static inline u8 *btrfs_super_fsid(struct extent_buffer *eb)
  1175. {
  1176. unsigned long ptr = offsetof(struct btrfs_super_block, fsid);
  1177. return (u8 *)ptr;
  1178. }
  1179. static inline u8 *btrfs_header_csum(struct extent_buffer *eb)
  1180. {
  1181. unsigned long ptr = offsetof(struct btrfs_header, csum);
  1182. return (u8 *)ptr;
  1183. }
  1184. static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb)
  1185. {
  1186. return NULL;
  1187. }
  1188. static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb)
  1189. {
  1190. return NULL;
  1191. }
  1192. static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb)
  1193. {
  1194. return NULL;
  1195. }
  1196. static inline int btrfs_is_leaf(struct extent_buffer *eb)
  1197. {
  1198. return (btrfs_header_level(eb) == 0);
  1199. }
  1200. /* struct btrfs_root_item */
  1201. BTRFS_SETGET_FUNCS(disk_root_generation, struct btrfs_root_item,
  1202. generation, 64);
  1203. BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
  1204. BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
  1205. BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
  1206. BTRFS_SETGET_STACK_FUNCS(root_generation, struct btrfs_root_item,
  1207. generation, 64);
  1208. BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
  1209. BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
  1210. BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
  1211. BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
  1212. BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 32);
  1213. BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
  1214. BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
  1215. BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item,
  1216. last_snapshot, 64);
  1217. /* struct btrfs_super_block */
  1218. BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
  1219. BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
  1220. BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
  1221. generation, 64);
  1222. BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
  1223. BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
  1224. struct btrfs_super_block, sys_chunk_array_size, 32);
  1225. BTRFS_SETGET_STACK_FUNCS(super_chunk_root_generation,
  1226. struct btrfs_super_block, chunk_root_generation, 64);
  1227. BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
  1228. root_level, 8);
  1229. BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
  1230. chunk_root, 64);
  1231. BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
  1232. chunk_root_level, 8);
  1233. BTRFS_SETGET_STACK_FUNCS(super_log_root, struct btrfs_super_block,
  1234. log_root, 64);
  1235. BTRFS_SETGET_STACK_FUNCS(super_log_root_level, struct btrfs_super_block,
  1236. log_root_level, 8);
  1237. BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
  1238. total_bytes, 64);
  1239. BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
  1240. bytes_used, 64);
  1241. BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
  1242. sectorsize, 32);
  1243. BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
  1244. nodesize, 32);
  1245. BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
  1246. leafsize, 32);
  1247. BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
  1248. stripesize, 32);
  1249. BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
  1250. root_dir_objectid, 64);
  1251. BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
  1252. num_devices, 64);
  1253. static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
  1254. {
  1255. return offsetof(struct btrfs_leaf, items);
  1256. }
  1257. /* struct btrfs_file_extent_item */
  1258. BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
  1259. static inline unsigned long btrfs_file_extent_inline_start(struct
  1260. btrfs_file_extent_item *e)
  1261. {
  1262. unsigned long offset = (unsigned long)e;
  1263. offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
  1264. return offset;
  1265. }
  1266. static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
  1267. {
  1268. return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
  1269. }
  1270. BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
  1271. disk_bytenr, 64);
  1272. BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
  1273. generation, 64);
  1274. BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
  1275. disk_num_bytes, 64);
  1276. BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
  1277. offset, 64);
  1278. BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
  1279. num_bytes, 64);
  1280. BTRFS_SETGET_FUNCS(file_extent_ram_bytes, struct btrfs_file_extent_item,
  1281. ram_bytes, 64);
  1282. BTRFS_SETGET_FUNCS(file_extent_compression, struct btrfs_file_extent_item,
  1283. compression, 8);
  1284. BTRFS_SETGET_FUNCS(file_extent_encryption, struct btrfs_file_extent_item,
  1285. encryption, 8);
  1286. BTRFS_SETGET_FUNCS(file_extent_other_encoding, struct btrfs_file_extent_item,
  1287. other_encoding, 16);
  1288. /* this returns the number of file bytes represented by the inline item.
  1289. * If an item is compressed, this is the uncompressed size
  1290. */
  1291. static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
  1292. struct btrfs_file_extent_item *e)
  1293. {
  1294. return btrfs_file_extent_ram_bytes(eb, e);
  1295. }
  1296. /*
  1297. * this returns the number of bytes used by the item on disk, minus the
  1298. * size of any extent headers. If a file is compressed on disk, this is
  1299. * the compressed size
  1300. */
  1301. static inline u32 btrfs_file_extent_inline_item_len(struct extent_buffer *eb,
  1302. struct btrfs_item *e)
  1303. {
  1304. unsigned long offset;
  1305. offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
  1306. return btrfs_item_size(eb, e) - offset;
  1307. }
  1308. static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
  1309. {
  1310. return sb->s_fs_info;
  1311. }
  1312. static inline int btrfs_set_root_name(struct btrfs_root *root,
  1313. const char *name, int len)
  1314. {
  1315. /* if we already have a name just free it */
  1316. if (root->name)
  1317. kfree(root->name);
  1318. root->name = kmalloc(len+1, GFP_KERNEL);
  1319. if (!root->name)
  1320. return -ENOMEM;
  1321. memcpy(root->name, name, len);
  1322. root->name[len] ='\0';
  1323. return 0;
  1324. }
  1325. static inline u32 btrfs_level_size(struct btrfs_root *root, int level) {
  1326. if (level == 0)
  1327. return root->leafsize;
  1328. return root->nodesize;
  1329. }
  1330. /* helper function to cast into the data area of the leaf. */
  1331. #define btrfs_item_ptr(leaf, slot, type) \
  1332. ((type *)(btrfs_leaf_data(leaf) + \
  1333. btrfs_item_offset_nr(leaf, slot)))
  1334. #define btrfs_item_ptr_offset(leaf, slot) \
  1335. ((unsigned long)(btrfs_leaf_data(leaf) + \
  1336. btrfs_item_offset_nr(leaf, slot)))
  1337. static inline struct dentry *fdentry(struct file *file)
  1338. {
  1339. return file->f_path.dentry;
  1340. }
  1341. /* extent-tree.c */
  1342. int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len);
  1343. int btrfs_lookup_extent_ref(struct btrfs_trans_handle *trans,
  1344. struct btrfs_root *root, u64 bytenr,
  1345. u64 num_bytes, u32 *refs);
  1346. int btrfs_update_pinned_extents(struct btrfs_root *root,
  1347. u64 bytenr, u64 num, int pin);
  1348. int btrfs_drop_leaf_ref(struct btrfs_trans_handle *trans,
  1349. struct btrfs_root *root, struct extent_buffer *leaf);
  1350. int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
  1351. struct btrfs_root *root, u64 bytenr);
  1352. int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
  1353. struct btrfs_root *root);
  1354. int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy);
  1355. struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
  1356. btrfs_fs_info *info,
  1357. u64 bytenr);
  1358. struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
  1359. struct btrfs_block_group_cache
  1360. *hint, u64 search_start,
  1361. int data, int owner);
  1362. struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
  1363. struct btrfs_root *root,
  1364. u32 blocksize, u64 parent,
  1365. u64 root_objectid,
  1366. u64 ref_generation,
  1367. int level,
  1368. u64 hint,
  1369. u64 empty_size);
  1370. struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
  1371. struct btrfs_root *root,
  1372. u64 bytenr, u32 blocksize);
  1373. int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
  1374. struct btrfs_root *root,
  1375. u64 num_bytes, u64 parent, u64 min_bytes,
  1376. u64 root_objectid, u64 ref_generation,
  1377. u64 owner, u64 empty_size, u64 hint_byte,
  1378. u64 search_end, struct btrfs_key *ins, u64 data);
  1379. int btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
  1380. struct btrfs_root *root, u64 parent,
  1381. u64 root_objectid, u64 ref_generation,
  1382. u64 owner, struct btrfs_key *ins);
  1383. int btrfs_alloc_logged_extent(struct btrfs_trans_handle *trans,
  1384. struct btrfs_root *root, u64 parent,
  1385. u64 root_objectid, u64 ref_generation,
  1386. u64 owner, struct btrfs_key *ins);
  1387. int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
  1388. struct btrfs_root *root,
  1389. u64 num_bytes, u64 min_alloc_size,
  1390. u64 empty_size, u64 hint_byte,
  1391. u64 search_end, struct btrfs_key *ins,
  1392. u64 data);
  1393. int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
  1394. struct extent_buffer *orig_buf, struct extent_buffer *buf,
  1395. u32 *nr_extents);
  1396. int btrfs_cache_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
  1397. struct extent_buffer *buf, u32 nr_extents);
  1398. int btrfs_update_ref(struct btrfs_trans_handle *trans,
  1399. struct btrfs_root *root, struct extent_buffer *orig_buf,
  1400. struct extent_buffer *buf, int start_slot, int nr);
  1401. int btrfs_free_extent(struct btrfs_trans_handle *trans,
  1402. struct btrfs_root *root,
  1403. u64 bytenr, u64 num_bytes, u64 parent,
  1404. u64 root_objectid, u64 ref_generation,
  1405. u64 owner_objectid, int pin);
  1406. int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len);
  1407. int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
  1408. struct btrfs_root *root,
  1409. struct extent_io_tree *unpin);
  1410. int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
  1411. struct btrfs_root *root,
  1412. u64 bytenr, u64 num_bytes, u64 parent,
  1413. u64 root_objectid, u64 ref_generation,
  1414. u64 owner_objectid);
  1415. int btrfs_update_extent_ref(struct btrfs_trans_handle *trans,
  1416. struct btrfs_root *root, u64 bytenr,
  1417. u64 orig_parent, u64 parent,
  1418. u64 root_objectid, u64 ref_generation,
  1419. u64 owner_objectid);
  1420. int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
  1421. struct btrfs_root *root);
  1422. int btrfs_free_block_groups(struct btrfs_fs_info *info);
  1423. int btrfs_read_block_groups(struct btrfs_root *root);
  1424. int btrfs_make_block_group(struct btrfs_trans_handle *trans,
  1425. struct btrfs_root *root, u64 bytes_used,
  1426. u64 type, u64 chunk_objectid, u64 chunk_offset,
  1427. u64 size);
  1428. int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
  1429. struct btrfs_root *root, u64 group_start);
  1430. int btrfs_relocate_block_group(struct btrfs_root *root, u64 group_start);
  1431. int btrfs_free_reloc_root(struct btrfs_trans_handle *trans,
  1432. struct btrfs_root *root);
  1433. int btrfs_drop_dead_reloc_roots(struct btrfs_root *root);
  1434. int btrfs_reloc_tree_cache_ref(struct btrfs_trans_handle *trans,
  1435. struct btrfs_root *root,
  1436. struct extent_buffer *buf, u64 orig_start);
  1437. int btrfs_add_dead_reloc_root(struct btrfs_root *root);
  1438. int btrfs_cleanup_reloc_trees(struct btrfs_root *root);
  1439. /* ctree.c */
  1440. int btrfs_previous_item(struct btrfs_root *root,
  1441. struct btrfs_path *path, u64 min_objectid,
  1442. int type);
  1443. int btrfs_merge_path(struct btrfs_trans_handle *trans,
  1444. struct btrfs_root *root,
  1445. struct btrfs_key *node_keys,
  1446. u64 *nodes, int lowest_level);
  1447. int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
  1448. struct btrfs_root *root, struct btrfs_path *path,
  1449. struct btrfs_key *new_key);
  1450. struct extent_buffer *btrfs_root_node(struct btrfs_root *root);
  1451. struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root);
  1452. int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
  1453. struct btrfs_key *key, int lowest_level,
  1454. int cache_only, u64 min_trans);
  1455. int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
  1456. struct btrfs_key *max_key,
  1457. struct btrfs_path *path, int cache_only,
  1458. u64 min_trans);
  1459. int btrfs_cow_block(struct btrfs_trans_handle *trans,
  1460. struct btrfs_root *root, struct extent_buffer *buf,
  1461. struct extent_buffer *parent, int parent_slot,
  1462. struct extent_buffer **cow_ret, u64 prealloc_dest);
  1463. int btrfs_copy_root(struct btrfs_trans_handle *trans,
  1464. struct btrfs_root *root,
  1465. struct extent_buffer *buf,
  1466. struct extent_buffer **cow_ret, u64 new_root_objectid);
  1467. int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
  1468. *root, struct btrfs_path *path, u32 data_size);
  1469. int btrfs_truncate_item(struct btrfs_trans_handle *trans,
  1470. struct btrfs_root *root,
  1471. struct btrfs_path *path,
  1472. u32 new_size, int from_end);
  1473. int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
  1474. *root, struct btrfs_key *key, struct btrfs_path *p, int
  1475. ins_len, int cow);
  1476. int btrfs_realloc_node(struct btrfs_trans_handle *trans,
  1477. struct btrfs_root *root, struct extent_buffer *parent,
  1478. int start_slot, int cache_only, u64 *last_ret,
  1479. struct btrfs_key *progress);
  1480. void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
  1481. struct btrfs_path *btrfs_alloc_path(void);
  1482. void btrfs_free_path(struct btrfs_path *p);
  1483. void btrfs_init_path(struct btrfs_path *p);
  1484. int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
  1485. struct btrfs_path *path, int slot, int nr);
  1486. int btrfs_del_leaf(struct btrfs_trans_handle *trans,
  1487. struct btrfs_root *root,
  1488. struct btrfs_path *path, u64 bytenr);
  1489. static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
  1490. struct btrfs_root *root,
  1491. struct btrfs_path *path)
  1492. {
  1493. return btrfs_del_items(trans, root, path, path->slots[0], 1);
  1494. }
  1495. int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
  1496. *root, struct btrfs_key *key, void *data, u32 data_size);
  1497. int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
  1498. struct btrfs_root *root,
  1499. struct btrfs_path *path,
  1500. struct btrfs_key *cpu_key, u32 *data_size,
  1501. int nr);
  1502. int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
  1503. struct btrfs_root *root,
  1504. struct btrfs_path *path,
  1505. struct btrfs_key *cpu_key, u32 *data_size, int nr);
  1506. static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
  1507. struct btrfs_root *root,
  1508. struct btrfs_path *path,
  1509. struct btrfs_key *key,
  1510. u32 data_size)
  1511. {
  1512. return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
  1513. }
  1514. int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
  1515. int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
  1516. int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
  1517. int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
  1518. *root);
  1519. int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
  1520. struct btrfs_root *root,
  1521. struct extent_buffer *node,
  1522. struct extent_buffer *parent);
  1523. /* root-item.c */
  1524. int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
  1525. struct btrfs_key *key);
  1526. int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
  1527. *root, struct btrfs_key *key, struct btrfs_root_item
  1528. *item);
  1529. int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
  1530. *root, struct btrfs_key *key, struct btrfs_root_item
  1531. *item);
  1532. int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
  1533. btrfs_root_item *item, struct btrfs_key *key);
  1534. int btrfs_search_root(struct btrfs_root *root, u64 search_start,
  1535. u64 *found_objectid);
  1536. int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid,
  1537. struct btrfs_root *latest_root);
  1538. /* dir-item.c */
  1539. int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
  1540. *root, const char *name, int name_len, u64 dir,
  1541. struct btrfs_key *location, u8 type, u64 index);
  1542. struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
  1543. struct btrfs_root *root,
  1544. struct btrfs_path *path, u64 dir,
  1545. const char *name, int name_len,
  1546. int mod);
  1547. struct btrfs_dir_item *
  1548. btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
  1549. struct btrfs_root *root,
  1550. struct btrfs_path *path, u64 dir,
  1551. u64 objectid, const char *name, int name_len,
  1552. int mod);
  1553. struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
  1554. struct btrfs_path *path,
  1555. const char *name, int name_len);
  1556. int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
  1557. struct btrfs_root *root,
  1558. struct btrfs_path *path,
  1559. struct btrfs_dir_item *di);
  1560. int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
  1561. struct btrfs_root *root, const char *name,
  1562. u16 name_len, const void *data, u16 data_len,
  1563. u64 dir);
  1564. struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
  1565. struct btrfs_root *root,
  1566. struct btrfs_path *path, u64 dir,
  1567. const char *name, u16 name_len,
  1568. int mod);
  1569. /* orphan.c */
  1570. int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
  1571. struct btrfs_root *root, u64 offset);
  1572. int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
  1573. struct btrfs_root *root, u64 offset);
  1574. /* inode-map.c */
  1575. int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
  1576. struct btrfs_root *fs_root,
  1577. u64 dirid, u64 *objectid);
  1578. int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
  1579. /* inode-item.c */
  1580. int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
  1581. struct btrfs_root *root,
  1582. const char *name, int name_len,
  1583. u64 inode_objectid, u64 ref_objectid, u64 index);
  1584. int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
  1585. struct btrfs_root *root,
  1586. const char *name, int name_len,
  1587. u64 inode_objectid, u64 ref_objectid, u64 *index);
  1588. int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
  1589. struct btrfs_root *root,
  1590. struct btrfs_path *path, u64 objectid);
  1591. int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
  1592. *root, struct btrfs_path *path,
  1593. struct btrfs_key *location, int mod);
  1594. /* file-item.c */
  1595. int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
  1596. struct bio *bio);
  1597. int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
  1598. struct btrfs_root *root,
  1599. u64 objectid, u64 pos,
  1600. u64 disk_offset, u64 disk_num_bytes,
  1601. u64 num_bytes, u64 offset, u64 ram_bytes,
  1602. u8 compression, u8 encryption, u16 other_encoding);
  1603. int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
  1604. struct btrfs_root *root,
  1605. struct btrfs_path *path, u64 objectid,
  1606. u64 bytenr, int mod);
  1607. int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
  1608. struct btrfs_root *root, struct inode *inode,
  1609. struct btrfs_ordered_sum *sums);
  1610. int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
  1611. struct bio *bio);
  1612. int btrfs_csum_file_bytes(struct btrfs_root *root, struct inode *inode,
  1613. u64 start, unsigned long len);
  1614. struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
  1615. struct btrfs_root *root,
  1616. struct btrfs_path *path,
  1617. u64 objectid, u64 offset,
  1618. int cow);
  1619. int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
  1620. struct btrfs_root *root, struct btrfs_path *path,
  1621. u64 isize);
  1622. /* inode.c */
  1623. /* RHEL and EL kernels have a patch that renames PG_checked to FsMisc */
  1624. #if defined(ClearPageFsMisc) && !defined(ClearPageChecked)
  1625. #define ClearPageChecked ClearPageFsMisc
  1626. #define SetPageChecked SetPageFsMisc
  1627. #define PageChecked PageFsMisc
  1628. #endif
  1629. int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
  1630. struct btrfs_root *root,
  1631. struct inode *dir, struct inode *inode,
  1632. const char *name, int name_len);
  1633. int btrfs_add_link(struct btrfs_trans_handle *trans,
  1634. struct inode *parent_inode, struct inode *inode,
  1635. const char *name, int name_len, int add_backref, u64 index);
  1636. int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
  1637. struct btrfs_root *root,
  1638. struct inode *inode, u64 new_size,
  1639. u32 min_type);
  1640. int btrfs_start_delalloc_inodes(struct btrfs_root *root);
  1641. int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end);
  1642. int btrfs_writepages(struct address_space *mapping,
  1643. struct writeback_control *wbc);
  1644. int btrfs_create_subvol_root(struct btrfs_root *new_root, struct dentry *dentry,
  1645. struct btrfs_trans_handle *trans, u64 new_dirid,
  1646. struct btrfs_block_group_cache *block_group);
  1647. void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
  1648. int namelen);
  1649. int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
  1650. size_t size, struct bio *bio, unsigned long bio_flags);
  1651. unsigned long btrfs_force_ra(struct address_space *mapping,
  1652. struct file_ra_state *ra, struct file *file,
  1653. pgoff_t offset, pgoff_t last_index);
  1654. int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
  1655. int for_del);
  1656. int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page);
  1657. int btrfs_readpage(struct file *file, struct page *page);
  1658. void btrfs_delete_inode(struct inode *inode);
  1659. void btrfs_put_inode(struct inode *inode);
  1660. void btrfs_read_locked_inode(struct inode *inode);
  1661. int btrfs_write_inode(struct inode *inode, int wait);
  1662. void btrfs_dirty_inode(struct inode *inode);
  1663. struct inode *btrfs_alloc_inode(struct super_block *sb);
  1664. void btrfs_destroy_inode(struct inode *inode);
  1665. int btrfs_init_cachep(void);
  1666. void btrfs_destroy_cachep(void);
  1667. long btrfs_ioctl_trans_end(struct file *file);
  1668. struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
  1669. struct btrfs_root *root, int wait);
  1670. struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
  1671. struct btrfs_root *root);
  1672. struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
  1673. struct btrfs_root *root, int *is_new);
  1674. int btrfs_commit_write(struct file *file, struct page *page,
  1675. unsigned from, unsigned to);
  1676. struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
  1677. size_t page_offset, u64 start, u64 end,
  1678. int create);
  1679. int btrfs_update_inode(struct btrfs_trans_handle *trans,
  1680. struct btrfs_root *root,
  1681. struct inode *inode);
  1682. int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode);
  1683. int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode);
  1684. void btrfs_orphan_cleanup(struct btrfs_root *root);
  1685. int btrfs_cont_expand(struct inode *inode, loff_t size);
  1686. /* ioctl.c */
  1687. long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
  1688. /* file.c */
  1689. int btrfs_sync_file(struct file *file, struct dentry *dentry, int datasync);
  1690. int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
  1691. int skip_pinned);
  1692. int btrfs_check_file(struct btrfs_root *root, struct inode *inode);
  1693. extern struct file_operations btrfs_file_operations;
  1694. int btrfs_drop_extents(struct btrfs_trans_handle *trans,
  1695. struct btrfs_root *root, struct inode *inode,
  1696. u64 start, u64 end, u64 inline_limit, u64 *hint_block);
  1697. int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
  1698. struct btrfs_root *root,
  1699. struct inode *inode, u64 start, u64 end);
  1700. int btrfs_release_file(struct inode *inode, struct file *file);
  1701. /* tree-defrag.c */
  1702. int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
  1703. struct btrfs_root *root, int cache_only);
  1704. /* sysfs.c */
  1705. int btrfs_init_sysfs(void);
  1706. void btrfs_exit_sysfs(void);
  1707. int btrfs_sysfs_add_super(struct btrfs_fs_info *fs);
  1708. int btrfs_sysfs_add_root(struct btrfs_root *root);
  1709. void btrfs_sysfs_del_root(struct btrfs_root *root);
  1710. void btrfs_sysfs_del_super(struct btrfs_fs_info *root);
  1711. /* xattr.c */
  1712. ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
  1713. /* super.c */
  1714. u64 btrfs_parse_size(char *str);
  1715. int btrfs_parse_options(struct btrfs_root *root, char *options);
  1716. int btrfs_sync_fs(struct super_block *sb, int wait);
  1717. /* acl.c */
  1718. int btrfs_check_acl(struct inode *inode, int mask);
  1719. int btrfs_init_acl(struct inode *inode, struct inode *dir);
  1720. int btrfs_acl_chmod(struct inode *inode);
  1721. /* free-space-cache.c */
  1722. int btrfs_add_free_space(struct btrfs_block_group_cache *block_group,
  1723. u64 bytenr, u64 size);
  1724. int btrfs_add_free_space_lock(struct btrfs_block_group_cache *block_group,
  1725. u64 offset, u64 bytes);
  1726. int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
  1727. u64 bytenr, u64 size);
  1728. int btrfs_remove_free_space_lock(struct btrfs_block_group_cache *block_group,
  1729. u64 offset, u64 bytes);
  1730. void btrfs_remove_free_space_cache(struct btrfs_block_group_cache
  1731. *block_group);
  1732. struct btrfs_free_space *btrfs_find_free_space(struct btrfs_block_group_cache
  1733. *block_group, u64 offset,
  1734. u64 bytes);
  1735. void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
  1736. u64 bytes);
  1737. u64 btrfs_block_group_free_space(struct btrfs_block_group_cache *block_group);
  1738. #endif