ctree.h 127 KB

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