ctree.h 108 KB

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