ctree.h 119 KB

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