ctree.h 114 KB

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