ctree.h 124 KB

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