ctree.h 85 KB

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