ctree.h 130 KB

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