ctree.h 135 KB

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