ctree.h 80 KB

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