ctree.h 82 KB

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