ctree.h 83 KB

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