ctree.h 98 KB

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