ctree.h 127 KB

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