ctree.h 77 KB

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