ctree.h 96 KB

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