ctree.h 142 KB

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