ctree.h 70 KB

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