ctree.h 129 KB

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