ctree.h 86 KB

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