ctree.h 76 KB

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