ctree.h 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651
  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 <asm/kmap_types.h>
  27. #include "bit-radix.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. #define BTRFS_MAGIC "_B5RfS_M"
  38. #define BTRFS_MAX_LEVEL 8
  39. /* holds pointers to all of the tree roots */
  40. #define BTRFS_ROOT_TREE_OBJECTID 1ULL
  41. /* stores information about which extents are in use, and reference counts */
  42. #define BTRFS_EXTENT_TREE_OBJECTID 2ULL
  43. /*
  44. * chunk tree stores translations from logical -> physical block numbering
  45. * the super block points to the chunk tree
  46. */
  47. #define BTRFS_CHUNK_TREE_OBJECTID 3ULL
  48. /*
  49. * stores information about which areas of a given device are in use.
  50. * one per device. The tree of tree roots points to the device tree
  51. */
  52. #define BTRFS_DEV_TREE_OBJECTID 4ULL
  53. /* one per subvolume, storing files and directories */
  54. #define BTRFS_FS_TREE_OBJECTID 5ULL
  55. /* directory objectid inside the root tree */
  56. #define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
  57. /*
  58. * All files have objectids higher than this.
  59. */
  60. #define BTRFS_FIRST_FREE_OBJECTID 256ULL
  61. #define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
  62. /*
  63. * the device items go into the chunk tree. The key is in the form
  64. * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
  65. */
  66. #define BTRFS_DEV_ITEMS_OBJECTID 1ULL
  67. /*
  68. * we can actually store much bigger names, but lets not confuse the rest
  69. * of linux
  70. */
  71. #define BTRFS_NAME_LEN 255
  72. /* 32 bytes in various csum fields */
  73. #define BTRFS_CSUM_SIZE 32
  74. /* four bytes for CRC32 */
  75. #define BTRFS_CRC32_SIZE 4
  76. #define BTRFS_EMPTY_DIR_SIZE 0
  77. #define BTRFS_FT_UNKNOWN 0
  78. #define BTRFS_FT_REG_FILE 1
  79. #define BTRFS_FT_DIR 2
  80. #define BTRFS_FT_CHRDEV 3
  81. #define BTRFS_FT_BLKDEV 4
  82. #define BTRFS_FT_FIFO 5
  83. #define BTRFS_FT_SOCK 6
  84. #define BTRFS_FT_SYMLINK 7
  85. #define BTRFS_FT_XATTR 8
  86. #define BTRFS_FT_MAX 9
  87. /*
  88. * the key defines the order in the tree, and so it also defines (optimal)
  89. * block layout. objectid corresonds to the inode number. The flags
  90. * tells us things about the object, and is a kind of stream selector.
  91. * so for a given inode, keys with flags of 1 might refer to the inode
  92. * data, flags of 2 may point to file data in the btree and flags == 3
  93. * may point to extents.
  94. *
  95. * offset is the starting byte offset for this key in the stream.
  96. *
  97. * btrfs_disk_key is in disk byte order. struct btrfs_key is always
  98. * in cpu native order. Otherwise they are identical and their sizes
  99. * should be the same (ie both packed)
  100. */
  101. struct btrfs_disk_key {
  102. __le64 objectid;
  103. u8 type;
  104. __le64 offset;
  105. } __attribute__ ((__packed__));
  106. struct btrfs_key {
  107. u64 objectid;
  108. u8 type;
  109. u64 offset;
  110. } __attribute__ ((__packed__));
  111. struct btrfs_mapping_tree {
  112. struct extent_map_tree map_tree;
  113. };
  114. #define BTRFS_UUID_SIZE 16
  115. struct btrfs_dev_item {
  116. /* the internal btrfs device id */
  117. __le64 devid;
  118. /* size of the device */
  119. __le64 total_bytes;
  120. /* bytes used */
  121. __le64 bytes_used;
  122. /* optimal io alignment for this device */
  123. __le32 io_align;
  124. /* optimal io width for this device */
  125. __le32 io_width;
  126. /* minimal io size for this device */
  127. __le32 sector_size;
  128. /* type and info about this device */
  129. __le64 type;
  130. /* grouping information for allocation decisions */
  131. __le32 dev_group;
  132. /* seek speed 0-100 where 100 is fastest */
  133. u8 seek_speed;
  134. /* bandwidth 0-100 where 100 is fastest */
  135. u8 bandwidth;
  136. /* btrfs generated uuid for this device */
  137. u8 uuid[BTRFS_UUID_SIZE];
  138. } __attribute__ ((__packed__));
  139. struct btrfs_stripe {
  140. __le64 devid;
  141. __le64 offset;
  142. u8 dev_uuid[BTRFS_UUID_SIZE];
  143. } __attribute__ ((__packed__));
  144. struct btrfs_chunk {
  145. /* size of this chunk in bytes */
  146. __le64 length;
  147. /* objectid of the root referencing this chunk */
  148. __le64 owner;
  149. __le64 stripe_len;
  150. __le64 type;
  151. /* optimal io alignment for this chunk */
  152. __le32 io_align;
  153. /* optimal io width for this chunk */
  154. __le32 io_width;
  155. /* minimal io size for this chunk */
  156. __le32 sector_size;
  157. /* 2^16 stripes is quite a lot, a second limit is the size of a single
  158. * item in the btree
  159. */
  160. __le16 num_stripes;
  161. /* sub stripes only matter for raid10 */
  162. __le16 sub_stripes;
  163. struct btrfs_stripe stripe;
  164. /* additional stripes go here */
  165. } __attribute__ ((__packed__));
  166. static inline unsigned long btrfs_chunk_item_size(int num_stripes)
  167. {
  168. BUG_ON(num_stripes == 0);
  169. return sizeof(struct btrfs_chunk) +
  170. sizeof(struct btrfs_stripe) * (num_stripes - 1);
  171. }
  172. #define BTRFS_FSID_SIZE 16
  173. #define BTRFS_HEADER_FLAG_WRITTEN (1 << 0)
  174. /*
  175. * every tree block (leaf or node) starts with this header.
  176. */
  177. struct btrfs_header {
  178. /* these first four must match the super block */
  179. u8 csum[BTRFS_CSUM_SIZE];
  180. u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
  181. __le64 bytenr; /* which block this node is supposed to live in */
  182. __le64 flags;
  183. /* allowed to be different from the super from here on down */
  184. u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
  185. __le64 generation;
  186. __le64 owner;
  187. __le32 nritems;
  188. u8 level;
  189. } __attribute__ ((__packed__));
  190. #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
  191. sizeof(struct btrfs_header)) / \
  192. sizeof(struct btrfs_key_ptr))
  193. #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
  194. #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
  195. #define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
  196. sizeof(struct btrfs_item) - \
  197. sizeof(struct btrfs_file_extent_item))
  198. /*
  199. * this is a very generous portion of the super block, giving us
  200. * room to translate 14 chunks with 3 stripes each.
  201. */
  202. #define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
  203. #define BTRFS_LABEL_SIZE 256
  204. /*
  205. * the super block basically lists the main trees of the FS
  206. * it currently lacks any block count etc etc
  207. */
  208. struct btrfs_super_block {
  209. u8 csum[BTRFS_CSUM_SIZE];
  210. /* the first 4 fields must match struct btrfs_header */
  211. u8 fsid[16]; /* FS specific uuid */
  212. __le64 bytenr; /* this block number */
  213. __le64 flags;
  214. /* allowed to be different from the btrfs_header from here own down */
  215. __le64 magic;
  216. __le64 generation;
  217. __le64 root;
  218. __le64 chunk_root;
  219. __le64 total_bytes;
  220. __le64 bytes_used;
  221. __le64 root_dir_objectid;
  222. __le64 num_devices;
  223. __le32 sectorsize;
  224. __le32 nodesize;
  225. __le32 leafsize;
  226. __le32 stripesize;
  227. __le32 sys_chunk_array_size;
  228. u8 root_level;
  229. u8 chunk_root_level;
  230. struct btrfs_dev_item dev_item;
  231. char label[BTRFS_LABEL_SIZE];
  232. u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
  233. } __attribute__ ((__packed__));
  234. /*
  235. * A leaf is full of items. offset and size tell us where to find
  236. * the item in the leaf (relative to the start of the data area)
  237. */
  238. struct btrfs_item {
  239. struct btrfs_disk_key key;
  240. __le32 offset;
  241. __le32 size;
  242. } __attribute__ ((__packed__));
  243. /*
  244. * leaves have an item area and a data area:
  245. * [item0, item1....itemN] [free space] [dataN...data1, data0]
  246. *
  247. * The data is separate from the items to get the keys closer together
  248. * during searches.
  249. */
  250. struct btrfs_leaf {
  251. struct btrfs_header header;
  252. struct btrfs_item items[];
  253. } __attribute__ ((__packed__));
  254. /*
  255. * all non-leaf blocks are nodes, they hold only keys and pointers to
  256. * other blocks
  257. */
  258. struct btrfs_key_ptr {
  259. struct btrfs_disk_key key;
  260. __le64 blockptr;
  261. __le64 generation;
  262. } __attribute__ ((__packed__));
  263. struct btrfs_node {
  264. struct btrfs_header header;
  265. struct btrfs_key_ptr ptrs[];
  266. } __attribute__ ((__packed__));
  267. /*
  268. * btrfs_paths remember the path taken from the root down to the leaf.
  269. * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
  270. * to any other levels that are present.
  271. *
  272. * The slots array records the index of the item or block pointer
  273. * used while walking the tree.
  274. */
  275. struct btrfs_path {
  276. struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
  277. int slots[BTRFS_MAX_LEVEL];
  278. /* if there is real range locking, this locks field will change */
  279. int locks[BTRFS_MAX_LEVEL];
  280. int reada;
  281. /* keep some upper locks as we walk down */
  282. int keep_locks;
  283. int skip_locking;
  284. int lowest_level;
  285. };
  286. /*
  287. * items in the extent btree are used to record the objectid of the
  288. * owner of the block and the number of references
  289. */
  290. struct btrfs_extent_item {
  291. __le32 refs;
  292. } __attribute__ ((__packed__));
  293. struct btrfs_extent_ref {
  294. __le64 root;
  295. __le64 generation;
  296. __le64 objectid;
  297. __le64 offset;
  298. } __attribute__ ((__packed__));
  299. /* dev extents record free space on individual devices. The owner
  300. * field points back to the chunk allocation mapping tree that allocated
  301. * the extent. The chunk tree uuid field is a way to double check the owner
  302. */
  303. struct btrfs_dev_extent {
  304. __le64 chunk_tree;
  305. __le64 chunk_objectid;
  306. __le64 chunk_offset;
  307. __le64 length;
  308. u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
  309. } __attribute__ ((__packed__));
  310. struct btrfs_inode_ref {
  311. __le16 name_len;
  312. /* name goes here */
  313. } __attribute__ ((__packed__));
  314. struct btrfs_timespec {
  315. __le64 sec;
  316. __le32 nsec;
  317. } __attribute__ ((__packed__));
  318. /*
  319. * there is no padding here on purpose. If you want to extent the inode,
  320. * make a new item type
  321. */
  322. struct btrfs_inode_item {
  323. __le64 generation;
  324. __le64 size;
  325. __le64 nblocks;
  326. __le64 block_group;
  327. __le32 nlink;
  328. __le32 uid;
  329. __le32 gid;
  330. __le32 mode;
  331. __le64 rdev;
  332. __le16 flags;
  333. __le16 compat_flags;
  334. struct btrfs_timespec atime;
  335. struct btrfs_timespec ctime;
  336. struct btrfs_timespec mtime;
  337. struct btrfs_timespec otime;
  338. } __attribute__ ((__packed__));
  339. struct btrfs_dir_item {
  340. struct btrfs_disk_key location;
  341. __le16 data_len;
  342. __le16 name_len;
  343. u8 type;
  344. } __attribute__ ((__packed__));
  345. struct btrfs_root_item {
  346. struct btrfs_inode_item inode;
  347. __le64 root_dirid;
  348. __le64 bytenr;
  349. __le64 byte_limit;
  350. __le64 bytes_used;
  351. __le32 flags;
  352. __le32 refs;
  353. struct btrfs_disk_key drop_progress;
  354. u8 drop_level;
  355. u8 level;
  356. } __attribute__ ((__packed__));
  357. #define BTRFS_FILE_EXTENT_REG 0
  358. #define BTRFS_FILE_EXTENT_INLINE 1
  359. struct btrfs_file_extent_item {
  360. __le64 generation;
  361. u8 type;
  362. /*
  363. * disk space consumed by the extent, checksum blocks are included
  364. * in these numbers
  365. */
  366. __le64 disk_bytenr;
  367. __le64 disk_num_bytes;
  368. /*
  369. * the logical offset in file blocks (no csums)
  370. * this extent record is for. This allows a file extent to point
  371. * into the middle of an existing extent on disk, sharing it
  372. * between two snapshots (useful if some bytes in the middle of the
  373. * extent have changed
  374. */
  375. __le64 offset;
  376. /*
  377. * the logical number of file blocks (no csums included)
  378. */
  379. __le64 num_bytes;
  380. } __attribute__ ((__packed__));
  381. struct btrfs_csum_item {
  382. u8 csum;
  383. } __attribute__ ((__packed__));
  384. /* different types of block groups (and chunks) */
  385. #define BTRFS_BLOCK_GROUP_DATA (1 << 0)
  386. #define BTRFS_BLOCK_GROUP_SYSTEM (1 << 1)
  387. #define BTRFS_BLOCK_GROUP_METADATA (1 << 2)
  388. #define BTRFS_BLOCK_GROUP_RAID0 (1 << 3)
  389. #define BTRFS_BLOCK_GROUP_RAID1 (1 << 4)
  390. #define BTRFS_BLOCK_GROUP_DUP (1 << 5)
  391. #define BTRFS_BLOCK_GROUP_RAID10 (1 << 6)
  392. struct btrfs_block_group_item {
  393. __le64 used;
  394. __le64 chunk_objectid;
  395. __le64 flags;
  396. } __attribute__ ((__packed__));
  397. struct btrfs_space_info {
  398. u64 flags;
  399. u64 total_bytes;
  400. u64 bytes_used;
  401. u64 bytes_pinned;
  402. int full;
  403. int force_alloc;
  404. struct list_head list;
  405. };
  406. struct btrfs_block_group_cache {
  407. struct btrfs_key key;
  408. struct btrfs_block_group_item item;
  409. struct btrfs_space_info *space_info;
  410. u64 pinned;
  411. u64 flags;
  412. int cached;
  413. int ro;
  414. };
  415. struct btrfs_device;
  416. struct btrfs_fs_devices;
  417. struct btrfs_fs_info {
  418. u8 fsid[BTRFS_FSID_SIZE];
  419. u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
  420. struct btrfs_root *extent_root;
  421. struct btrfs_root *tree_root;
  422. struct btrfs_root *chunk_root;
  423. struct btrfs_root *dev_root;
  424. struct radix_tree_root fs_roots_radix;
  425. struct extent_io_tree free_space_cache;
  426. struct extent_io_tree block_group_cache;
  427. struct extent_io_tree pinned_extents;
  428. struct extent_io_tree pending_del;
  429. struct extent_io_tree extent_ins;
  430. /* logical->physical extent mapping */
  431. struct btrfs_mapping_tree mapping_tree;
  432. u64 generation;
  433. u64 last_trans_committed;
  434. unsigned long mount_opt;
  435. u64 max_extent;
  436. u64 max_inline;
  437. u64 alloc_start;
  438. struct btrfs_transaction *running_transaction;
  439. struct btrfs_super_block super_copy;
  440. struct btrfs_super_block super_for_commit;
  441. struct block_device *__bdev;
  442. struct super_block *sb;
  443. struct inode *btree_inode;
  444. struct backing_dev_info bdi;
  445. spinlock_t hash_lock;
  446. struct mutex trans_mutex;
  447. struct mutex transaction_kthread_mutex;
  448. struct mutex cleaner_mutex;
  449. struct mutex alloc_mutex;
  450. struct mutex chunk_mutex;
  451. struct mutex drop_mutex;
  452. struct list_head trans_list;
  453. struct list_head hashers;
  454. struct list_head dead_roots;
  455. atomic_t nr_async_submits;
  456. /*
  457. * there is a pool of worker threads for checksumming during writes
  458. * and a pool for checksumming after reads. This is because readers
  459. * can run with FS locks held, and the writers may be waiting for
  460. * those locks. We don't want ordering in the pending list to cause
  461. * deadlocks, and so the two are serviced separately.
  462. *
  463. * A third pool does submit_bio to avoid deadlocking with the other
  464. * two
  465. */
  466. struct btrfs_workers workers;
  467. struct btrfs_workers endio_workers;
  468. struct btrfs_workers submit_workers;
  469. struct task_struct *transaction_kthread;
  470. struct task_struct *cleaner_kthread;
  471. int thread_pool_size;
  472. struct kobject super_kobj;
  473. struct completion kobj_unregister;
  474. int do_barriers;
  475. int closing;
  476. atomic_t throttles;
  477. u64 total_pinned;
  478. struct list_head dirty_cowonly_roots;
  479. struct btrfs_fs_devices *fs_devices;
  480. struct list_head space_info;
  481. spinlock_t delalloc_lock;
  482. spinlock_t new_trans_lock;
  483. u64 delalloc_bytes;
  484. u64 last_alloc;
  485. u64 last_data_alloc;
  486. u64 avail_data_alloc_bits;
  487. u64 avail_metadata_alloc_bits;
  488. u64 avail_system_alloc_bits;
  489. u64 data_alloc_profile;
  490. u64 metadata_alloc_profile;
  491. u64 system_alloc_profile;
  492. void *bdev_holder;
  493. };
  494. /*
  495. * in ram representation of the tree. extent_root is used for all allocations
  496. * and for the extent tree extent_root root.
  497. */
  498. struct btrfs_root {
  499. struct extent_buffer *node;
  500. /* the node lock is held while changing the node pointer */
  501. spinlock_t node_lock;
  502. struct extent_buffer *commit_root;
  503. struct btrfs_root_item root_item;
  504. struct btrfs_key root_key;
  505. struct btrfs_fs_info *fs_info;
  506. struct inode *inode;
  507. struct kobject root_kobj;
  508. struct completion kobj_unregister;
  509. struct mutex objectid_mutex;
  510. u64 objectid;
  511. u64 last_trans;
  512. /* data allocations are done in sectorsize units */
  513. u32 sectorsize;
  514. /* node allocations are done in nodesize units */
  515. u32 nodesize;
  516. /* leaf allocations are done in leafsize units */
  517. u32 leafsize;
  518. u32 stripesize;
  519. u32 type;
  520. u64 highest_inode;
  521. u64 last_inode_alloc;
  522. int ref_cows;
  523. int track_dirty;
  524. u64 defrag_trans_start;
  525. struct btrfs_key defrag_progress;
  526. struct btrfs_key defrag_max;
  527. int defrag_running;
  528. int defrag_level;
  529. char *name;
  530. int in_sysfs;
  531. /* the dirty list is only used by non-reference counted roots */
  532. struct list_head dirty_list;
  533. };
  534. /*
  535. * inode items have the data typically returned from stat and store other
  536. * info about object characteristics. There is one for every file and dir in
  537. * the FS
  538. */
  539. #define BTRFS_INODE_ITEM_KEY 1
  540. #define BTRFS_INODE_REF_KEY 2
  541. #define BTRFS_XATTR_ITEM_KEY 8
  542. /* reserve 2-15 close to the inode for later flexibility */
  543. /*
  544. * dir items are the name -> inode pointers in a directory. There is one
  545. * for every name in a directory.
  546. */
  547. #define BTRFS_DIR_ITEM_KEY 16
  548. #define BTRFS_DIR_INDEX_KEY 17
  549. /*
  550. * extent data is for file data
  551. */
  552. #define BTRFS_EXTENT_DATA_KEY 18
  553. /*
  554. * csum items have the checksums for data in the extents
  555. */
  556. #define BTRFS_CSUM_ITEM_KEY 19
  557. /* reserve 20-31 for other file stuff */
  558. /*
  559. * root items point to tree roots. There are typically in the root
  560. * tree used by the super block to find all the other trees
  561. */
  562. #define BTRFS_ROOT_ITEM_KEY 32
  563. /*
  564. * extent items are in the extent map tree. These record which blocks
  565. * are used, and how many references there are to each block
  566. */
  567. #define BTRFS_EXTENT_ITEM_KEY 33
  568. #define BTRFS_EXTENT_REF_KEY 34
  569. /*
  570. * block groups give us hints into the extent allocation trees. Which
  571. * blocks are free etc etc
  572. */
  573. #define BTRFS_BLOCK_GROUP_ITEM_KEY 50
  574. #define BTRFS_DEV_EXTENT_KEY 75
  575. #define BTRFS_DEV_ITEM_KEY 76
  576. #define BTRFS_CHUNK_ITEM_KEY 77
  577. /*
  578. * string items are for debugging. They just store a short string of
  579. * data in the FS
  580. */
  581. #define BTRFS_STRING_ITEM_KEY 253
  582. #define BTRFS_MOUNT_NODATASUM (1 << 0)
  583. #define BTRFS_MOUNT_NODATACOW (1 << 1)
  584. #define BTRFS_MOUNT_NOBARRIER (1 << 2)
  585. #define BTRFS_MOUNT_SSD (1 << 3)
  586. #define BTRFS_MOUNT_DEGRADED (1 << 4)
  587. #define btrfs_clear_opt(o, opt) ((o) &= ~BTRFS_MOUNT_##opt)
  588. #define btrfs_set_opt(o, opt) ((o) |= BTRFS_MOUNT_##opt)
  589. #define btrfs_test_opt(root, opt) ((root)->fs_info->mount_opt & \
  590. BTRFS_MOUNT_##opt)
  591. /*
  592. * Inode flags
  593. */
  594. #define BTRFS_INODE_NODATASUM (1 << 0)
  595. #define BTRFS_INODE_NODATACOW (1 << 1)
  596. #define BTRFS_INODE_READONLY (1 << 2)
  597. #define btrfs_clear_flag(inode, flag) (BTRFS_I(inode)->flags &= \
  598. ~BTRFS_INODE_##flag)
  599. #define btrfs_set_flag(inode, flag) (BTRFS_I(inode)->flags |= \
  600. BTRFS_INODE_##flag)
  601. #define btrfs_test_flag(inode, flag) (BTRFS_I(inode)->flags & \
  602. BTRFS_INODE_##flag)
  603. /* some macros to generate set/get funcs for the struct fields. This
  604. * assumes there is a lefoo_to_cpu for every type, so lets make a simple
  605. * one for u8:
  606. */
  607. #define le8_to_cpu(v) (v)
  608. #define cpu_to_le8(v) (v)
  609. #define __le8 u8
  610. #define read_eb_member(eb, ptr, type, member, result) ( \
  611. read_extent_buffer(eb, (char *)(result), \
  612. ((unsigned long)(ptr)) + \
  613. offsetof(type, member), \
  614. sizeof(((type *)0)->member)))
  615. #define write_eb_member(eb, ptr, type, member, result) ( \
  616. write_extent_buffer(eb, (char *)(result), \
  617. ((unsigned long)(ptr)) + \
  618. offsetof(type, member), \
  619. sizeof(((type *)0)->member)))
  620. #ifndef BTRFS_SETGET_FUNCS
  621. #define BTRFS_SETGET_FUNCS(name, type, member, bits) \
  622. u##bits btrfs_##name(struct extent_buffer *eb, type *s); \
  623. void btrfs_set_##name(struct extent_buffer *eb, type *s, u##bits val);
  624. #endif
  625. #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \
  626. static inline u##bits btrfs_##name(struct extent_buffer *eb) \
  627. { \
  628. type *p = kmap_atomic(eb->first_page, KM_USER0); \
  629. u##bits res = le##bits##_to_cpu(p->member); \
  630. kunmap_atomic(p, KM_USER0); \
  631. return res; \
  632. } \
  633. static inline void btrfs_set_##name(struct extent_buffer *eb, \
  634. u##bits val) \
  635. { \
  636. type *p = kmap_atomic(eb->first_page, KM_USER0); \
  637. p->member = cpu_to_le##bits(val); \
  638. kunmap_atomic(p, KM_USER0); \
  639. }
  640. #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \
  641. static inline u##bits btrfs_##name(type *s) \
  642. { \
  643. return le##bits##_to_cpu(s->member); \
  644. } \
  645. static inline void btrfs_set_##name(type *s, u##bits val) \
  646. { \
  647. s->member = cpu_to_le##bits(val); \
  648. }
  649. BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
  650. BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
  651. BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
  652. BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
  653. BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
  654. BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
  655. BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
  656. BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
  657. BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
  658. BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
  659. BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
  660. BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
  661. total_bytes, 64);
  662. BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
  663. bytes_used, 64);
  664. BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
  665. io_align, 32);
  666. BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
  667. io_width, 32);
  668. BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
  669. sector_size, 32);
  670. BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
  671. BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
  672. dev_group, 32);
  673. BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
  674. seek_speed, 8);
  675. BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
  676. bandwidth, 8);
  677. static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
  678. {
  679. return (char *)d + offsetof(struct btrfs_dev_item, uuid);
  680. }
  681. BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
  682. BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
  683. BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
  684. BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
  685. BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
  686. BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
  687. BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
  688. BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
  689. BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
  690. BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
  691. BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
  692. static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
  693. {
  694. return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
  695. }
  696. BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
  697. BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
  698. BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
  699. stripe_len, 64);
  700. BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
  701. io_align, 32);
  702. BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
  703. io_width, 32);
  704. BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
  705. sector_size, 32);
  706. BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
  707. BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
  708. num_stripes, 16);
  709. BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
  710. sub_stripes, 16);
  711. BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
  712. BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
  713. static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
  714. int nr)
  715. {
  716. unsigned long offset = (unsigned long)c;
  717. offset += offsetof(struct btrfs_chunk, stripe);
  718. offset += nr * sizeof(struct btrfs_stripe);
  719. return (struct btrfs_stripe *)offset;
  720. }
  721. static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
  722. {
  723. return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
  724. }
  725. static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
  726. struct btrfs_chunk *c, int nr)
  727. {
  728. return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
  729. }
  730. static inline void btrfs_set_stripe_offset_nr(struct extent_buffer *eb,
  731. struct btrfs_chunk *c, int nr,
  732. u64 val)
  733. {
  734. btrfs_set_stripe_offset(eb, btrfs_stripe_nr(c, nr), val);
  735. }
  736. static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
  737. struct btrfs_chunk *c, int nr)
  738. {
  739. return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
  740. }
  741. static inline void btrfs_set_stripe_devid_nr(struct extent_buffer *eb,
  742. struct btrfs_chunk *c, int nr,
  743. u64 val)
  744. {
  745. btrfs_set_stripe_devid(eb, btrfs_stripe_nr(c, nr), val);
  746. }
  747. /* struct btrfs_block_group_item */
  748. BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
  749. used, 64);
  750. BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
  751. used, 64);
  752. BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
  753. struct btrfs_block_group_item, chunk_objectid, 64);
  754. BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
  755. struct btrfs_block_group_item, chunk_objectid, 64);
  756. BTRFS_SETGET_FUNCS(disk_block_group_flags,
  757. struct btrfs_block_group_item, flags, 64);
  758. BTRFS_SETGET_STACK_FUNCS(block_group_flags,
  759. struct btrfs_block_group_item, flags, 64);
  760. /* struct btrfs_inode_ref */
  761. BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
  762. /* struct btrfs_inode_item */
  763. BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
  764. BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
  765. BTRFS_SETGET_FUNCS(inode_nblocks, struct btrfs_inode_item, nblocks, 64);
  766. BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
  767. BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
  768. BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
  769. BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
  770. BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
  771. BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
  772. BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 16);
  773. BTRFS_SETGET_FUNCS(inode_compat_flags, struct btrfs_inode_item,
  774. compat_flags, 16);
  775. static inline struct btrfs_timespec *
  776. btrfs_inode_atime(struct btrfs_inode_item *inode_item)
  777. {
  778. unsigned long ptr = (unsigned long)inode_item;
  779. ptr += offsetof(struct btrfs_inode_item, atime);
  780. return (struct btrfs_timespec *)ptr;
  781. }
  782. static inline struct btrfs_timespec *
  783. btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
  784. {
  785. unsigned long ptr = (unsigned long)inode_item;
  786. ptr += offsetof(struct btrfs_inode_item, mtime);
  787. return (struct btrfs_timespec *)ptr;
  788. }
  789. static inline struct btrfs_timespec *
  790. btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
  791. {
  792. unsigned long ptr = (unsigned long)inode_item;
  793. ptr += offsetof(struct btrfs_inode_item, ctime);
  794. return (struct btrfs_timespec *)ptr;
  795. }
  796. static inline struct btrfs_timespec *
  797. btrfs_inode_otime(struct btrfs_inode_item *inode_item)
  798. {
  799. unsigned long ptr = (unsigned long)inode_item;
  800. ptr += offsetof(struct btrfs_inode_item, otime);
  801. return (struct btrfs_timespec *)ptr;
  802. }
  803. BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
  804. BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
  805. /* struct btrfs_extent_item */
  806. BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 32);
  807. /* struct btrfs_dev_extent */
  808. BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
  809. chunk_tree, 64);
  810. BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
  811. chunk_objectid, 64);
  812. BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
  813. chunk_offset, 64);
  814. BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
  815. static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
  816. {
  817. unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
  818. return (u8 *)((unsigned long)dev + ptr);
  819. }
  820. /* struct btrfs_extent_ref */
  821. BTRFS_SETGET_FUNCS(ref_root, struct btrfs_extent_ref, root, 64);
  822. BTRFS_SETGET_FUNCS(ref_generation, struct btrfs_extent_ref, generation, 64);
  823. BTRFS_SETGET_FUNCS(ref_objectid, struct btrfs_extent_ref, objectid, 64);
  824. BTRFS_SETGET_FUNCS(ref_offset, struct btrfs_extent_ref, offset, 64);
  825. BTRFS_SETGET_STACK_FUNCS(stack_ref_root, struct btrfs_extent_ref, root, 64);
  826. BTRFS_SETGET_STACK_FUNCS(stack_ref_generation, struct btrfs_extent_ref,
  827. generation, 64);
  828. BTRFS_SETGET_STACK_FUNCS(stack_ref_objectid, struct btrfs_extent_ref,
  829. objectid, 64);
  830. BTRFS_SETGET_STACK_FUNCS(stack_ref_offset, struct btrfs_extent_ref, offset, 64);
  831. BTRFS_SETGET_STACK_FUNCS(stack_extent_refs, struct btrfs_extent_item,
  832. refs, 32);
  833. /* struct btrfs_node */
  834. BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
  835. BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
  836. static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
  837. {
  838. unsigned long ptr;
  839. ptr = offsetof(struct btrfs_node, ptrs) +
  840. sizeof(struct btrfs_key_ptr) * nr;
  841. return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
  842. }
  843. static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
  844. int nr, u64 val)
  845. {
  846. unsigned long ptr;
  847. ptr = offsetof(struct btrfs_node, ptrs) +
  848. sizeof(struct btrfs_key_ptr) * nr;
  849. btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
  850. }
  851. static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
  852. {
  853. unsigned long ptr;
  854. ptr = offsetof(struct btrfs_node, ptrs) +
  855. sizeof(struct btrfs_key_ptr) * nr;
  856. return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
  857. }
  858. static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
  859. int nr, u64 val)
  860. {
  861. unsigned long ptr;
  862. ptr = offsetof(struct btrfs_node, ptrs) +
  863. sizeof(struct btrfs_key_ptr) * nr;
  864. btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
  865. }
  866. static inline unsigned long btrfs_node_key_ptr_offset(int nr)
  867. {
  868. return offsetof(struct btrfs_node, ptrs) +
  869. sizeof(struct btrfs_key_ptr) * nr;
  870. }
  871. void btrfs_node_key(struct extent_buffer *eb,
  872. struct btrfs_disk_key *disk_key, int nr);
  873. static inline void btrfs_set_node_key(struct extent_buffer *eb,
  874. struct btrfs_disk_key *disk_key, int nr)
  875. {
  876. unsigned long ptr;
  877. ptr = btrfs_node_key_ptr_offset(nr);
  878. write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
  879. struct btrfs_key_ptr, key, disk_key);
  880. }
  881. /* struct btrfs_item */
  882. BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
  883. BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
  884. static inline unsigned long btrfs_item_nr_offset(int nr)
  885. {
  886. return offsetof(struct btrfs_leaf, items) +
  887. sizeof(struct btrfs_item) * nr;
  888. }
  889. static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
  890. int nr)
  891. {
  892. return (struct btrfs_item *)btrfs_item_nr_offset(nr);
  893. }
  894. static inline u32 btrfs_item_end(struct extent_buffer *eb,
  895. struct btrfs_item *item)
  896. {
  897. return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
  898. }
  899. static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
  900. {
  901. return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
  902. }
  903. static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
  904. {
  905. return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
  906. }
  907. static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
  908. {
  909. return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
  910. }
  911. static inline void btrfs_item_key(struct extent_buffer *eb,
  912. struct btrfs_disk_key *disk_key, int nr)
  913. {
  914. struct btrfs_item *item = btrfs_item_nr(eb, nr);
  915. read_eb_member(eb, item, struct btrfs_item, key, disk_key);
  916. }
  917. static inline void btrfs_set_item_key(struct extent_buffer *eb,
  918. struct btrfs_disk_key *disk_key, int nr)
  919. {
  920. struct btrfs_item *item = btrfs_item_nr(eb, nr);
  921. write_eb_member(eb, item, struct btrfs_item, key, disk_key);
  922. }
  923. /* struct btrfs_dir_item */
  924. BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
  925. BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
  926. BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
  927. static inline void btrfs_dir_item_key(struct extent_buffer *eb,
  928. struct btrfs_dir_item *item,
  929. struct btrfs_disk_key *key)
  930. {
  931. read_eb_member(eb, item, struct btrfs_dir_item, location, key);
  932. }
  933. static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
  934. struct btrfs_dir_item *item,
  935. struct btrfs_disk_key *key)
  936. {
  937. write_eb_member(eb, item, struct btrfs_dir_item, location, key);
  938. }
  939. /* struct btrfs_disk_key */
  940. BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
  941. objectid, 64);
  942. BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
  943. BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
  944. static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
  945. struct btrfs_disk_key *disk)
  946. {
  947. cpu->offset = le64_to_cpu(disk->offset);
  948. cpu->type = disk->type;
  949. cpu->objectid = le64_to_cpu(disk->objectid);
  950. }
  951. static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
  952. struct btrfs_key *cpu)
  953. {
  954. disk->offset = cpu_to_le64(cpu->offset);
  955. disk->type = cpu->type;
  956. disk->objectid = cpu_to_le64(cpu->objectid);
  957. }
  958. static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
  959. struct btrfs_key *key, int nr)
  960. {
  961. struct btrfs_disk_key disk_key;
  962. btrfs_node_key(eb, &disk_key, nr);
  963. btrfs_disk_key_to_cpu(key, &disk_key);
  964. }
  965. static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
  966. struct btrfs_key *key, int nr)
  967. {
  968. struct btrfs_disk_key disk_key;
  969. btrfs_item_key(eb, &disk_key, nr);
  970. btrfs_disk_key_to_cpu(key, &disk_key);
  971. }
  972. static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
  973. struct btrfs_dir_item *item,
  974. struct btrfs_key *key)
  975. {
  976. struct btrfs_disk_key disk_key;
  977. btrfs_dir_item_key(eb, item, &disk_key);
  978. btrfs_disk_key_to_cpu(key, &disk_key);
  979. }
  980. static inline u8 btrfs_key_type(struct btrfs_key *key)
  981. {
  982. return key->type;
  983. }
  984. static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
  985. {
  986. key->type = val;
  987. }
  988. /* struct btrfs_header */
  989. BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
  990. BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
  991. generation, 64);
  992. BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
  993. BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
  994. BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
  995. BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
  996. static inline int btrfs_header_flag(struct extent_buffer *eb, u64 flag)
  997. {
  998. return (btrfs_header_flags(eb) & flag) == flag;
  999. }
  1000. static inline int btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
  1001. {
  1002. u64 flags = btrfs_header_flags(eb);
  1003. btrfs_set_header_flags(eb, flags | flag);
  1004. return (flags & flag) == flag;
  1005. }
  1006. static inline int btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
  1007. {
  1008. u64 flags = btrfs_header_flags(eb);
  1009. btrfs_set_header_flags(eb, flags & ~flag);
  1010. return (flags & flag) == flag;
  1011. }
  1012. static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
  1013. {
  1014. unsigned long ptr = offsetof(struct btrfs_header, fsid);
  1015. return (u8 *)ptr;
  1016. }
  1017. static inline u8 *btrfs_header_chunk_tree_uuid(struct extent_buffer *eb)
  1018. {
  1019. unsigned long ptr = offsetof(struct btrfs_header, chunk_tree_uuid);
  1020. return (u8 *)ptr;
  1021. }
  1022. static inline u8 *btrfs_super_fsid(struct extent_buffer *eb)
  1023. {
  1024. unsigned long ptr = offsetof(struct btrfs_super_block, fsid);
  1025. return (u8 *)ptr;
  1026. }
  1027. static inline u8 *btrfs_header_csum(struct extent_buffer *eb)
  1028. {
  1029. unsigned long ptr = offsetof(struct btrfs_header, csum);
  1030. return (u8 *)ptr;
  1031. }
  1032. static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb)
  1033. {
  1034. return NULL;
  1035. }
  1036. static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb)
  1037. {
  1038. return NULL;
  1039. }
  1040. static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb)
  1041. {
  1042. return NULL;
  1043. }
  1044. static inline int btrfs_is_leaf(struct extent_buffer *eb)
  1045. {
  1046. return (btrfs_header_level(eb) == 0);
  1047. }
  1048. /* struct btrfs_root_item */
  1049. BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
  1050. BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
  1051. BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
  1052. BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
  1053. BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
  1054. BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
  1055. BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
  1056. BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 32);
  1057. BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
  1058. BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
  1059. /* struct btrfs_super_block */
  1060. BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
  1061. BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
  1062. BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
  1063. generation, 64);
  1064. BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
  1065. BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
  1066. struct btrfs_super_block, sys_chunk_array_size, 32);
  1067. BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
  1068. root_level, 8);
  1069. BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
  1070. chunk_root, 64);
  1071. BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
  1072. chunk_root_level, 64);
  1073. BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
  1074. total_bytes, 64);
  1075. BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
  1076. bytes_used, 64);
  1077. BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
  1078. sectorsize, 32);
  1079. BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
  1080. nodesize, 32);
  1081. BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
  1082. leafsize, 32);
  1083. BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
  1084. stripesize, 32);
  1085. BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
  1086. root_dir_objectid, 64);
  1087. BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
  1088. num_devices, 64);
  1089. static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
  1090. {
  1091. return offsetof(struct btrfs_leaf, items);
  1092. }
  1093. /* struct btrfs_file_extent_item */
  1094. BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
  1095. static inline unsigned long btrfs_file_extent_inline_start(struct
  1096. btrfs_file_extent_item *e)
  1097. {
  1098. unsigned long offset = (unsigned long)e;
  1099. offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
  1100. return offset;
  1101. }
  1102. static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
  1103. {
  1104. return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
  1105. }
  1106. static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
  1107. struct btrfs_item *e)
  1108. {
  1109. unsigned long offset;
  1110. offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
  1111. return btrfs_item_size(eb, e) - offset;
  1112. }
  1113. BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
  1114. disk_bytenr, 64);
  1115. BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
  1116. generation, 64);
  1117. BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
  1118. disk_num_bytes, 64);
  1119. BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
  1120. offset, 64);
  1121. BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
  1122. num_bytes, 64);
  1123. static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
  1124. {
  1125. return sb->s_fs_info;
  1126. }
  1127. static inline int btrfs_set_root_name(struct btrfs_root *root,
  1128. const char *name, int len)
  1129. {
  1130. /* if we already have a name just free it */
  1131. if (root->name)
  1132. kfree(root->name);
  1133. root->name = kmalloc(len+1, GFP_KERNEL);
  1134. if (!root->name)
  1135. return -ENOMEM;
  1136. memcpy(root->name, name, len);
  1137. root->name[len] ='\0';
  1138. return 0;
  1139. }
  1140. static inline u32 btrfs_level_size(struct btrfs_root *root, int level) {
  1141. if (level == 0)
  1142. return root->leafsize;
  1143. return root->nodesize;
  1144. }
  1145. /* helper function to cast into the data area of the leaf. */
  1146. #define btrfs_item_ptr(leaf, slot, type) \
  1147. ((type *)(btrfs_leaf_data(leaf) + \
  1148. btrfs_item_offset_nr(leaf, slot)))
  1149. #define btrfs_item_ptr_offset(leaf, slot) \
  1150. ((unsigned long)(btrfs_leaf_data(leaf) + \
  1151. btrfs_item_offset_nr(leaf, slot)))
  1152. static inline struct dentry *fdentry(struct file *file) {
  1153. #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
  1154. return file->f_dentry;
  1155. #else
  1156. return file->f_path.dentry;
  1157. #endif
  1158. }
  1159. /* extent-tree.c */
  1160. u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
  1161. struct btrfs_path *count_path,
  1162. u64 expected_owner, u64 first_extent);
  1163. int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
  1164. struct btrfs_root *root);
  1165. int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy);
  1166. struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
  1167. btrfs_fs_info *info,
  1168. u64 bytenr);
  1169. struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
  1170. struct btrfs_block_group_cache
  1171. *hint, u64 search_start,
  1172. int data, int owner);
  1173. struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
  1174. struct btrfs_root *root,
  1175. u32 blocksize,
  1176. u64 root_objectid,
  1177. u64 ref_generation,
  1178. u64 first_objectid,
  1179. int level,
  1180. u64 hint,
  1181. u64 empty_size);
  1182. int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size);
  1183. int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
  1184. struct btrfs_root *root,
  1185. struct btrfs_path *path, u64 bytenr,
  1186. u64 root_objectid, u64 ref_generation,
  1187. u64 owner, u64 owner_offset);
  1188. int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
  1189. struct btrfs_root *root,
  1190. u64 num_bytes, u64 min_bytes,
  1191. u64 root_objectid, u64 ref_generation,
  1192. u64 owner, u64 owner_offset,
  1193. u64 empty_size, u64 hint_byte,
  1194. u64 search_end, struct btrfs_key *ins, u64 data);
  1195. int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
  1196. struct extent_buffer *buf);
  1197. int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
  1198. *root, u64 bytenr, u64 num_bytes,
  1199. u64 root_objectid, u64 ref_generation,
  1200. u64 owner_objectid, u64 owner_offset, int pin);
  1201. int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
  1202. struct btrfs_root *root,
  1203. struct extent_io_tree *unpin);
  1204. int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
  1205. struct btrfs_root *root,
  1206. u64 bytenr, u64 num_bytes,
  1207. u64 root_objectid, u64 ref_generation,
  1208. u64 owner, u64 owner_offset);
  1209. int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
  1210. struct btrfs_root *root);
  1211. int btrfs_free_block_groups(struct btrfs_fs_info *info);
  1212. int btrfs_read_block_groups(struct btrfs_root *root);
  1213. int btrfs_make_block_group(struct btrfs_trans_handle *trans,
  1214. struct btrfs_root *root, u64 bytes_used,
  1215. u64 type, u64 chunk_objectid, u64 chunk_offset,
  1216. u64 size);
  1217. /* ctree.c */
  1218. int btrfs_previous_item(struct btrfs_root *root,
  1219. struct btrfs_path *path, u64 min_objectid,
  1220. int type);
  1221. struct extent_buffer *btrfs_root_node(struct btrfs_root *root);
  1222. struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root);
  1223. int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
  1224. struct btrfs_key *key, int lowest_level,
  1225. int cache_only, u64 min_trans);
  1226. int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
  1227. struct btrfs_path *path, int cache_only,
  1228. u64 min_trans);
  1229. int btrfs_cow_block(struct btrfs_trans_handle *trans,
  1230. struct btrfs_root *root, struct extent_buffer *buf,
  1231. struct extent_buffer *parent, int parent_slot,
  1232. struct extent_buffer **cow_ret);
  1233. int btrfs_copy_root(struct btrfs_trans_handle *trans,
  1234. struct btrfs_root *root,
  1235. struct extent_buffer *buf,
  1236. struct extent_buffer **cow_ret, u64 new_root_objectid);
  1237. int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
  1238. *root, struct btrfs_path *path, u32 data_size);
  1239. int btrfs_truncate_item(struct btrfs_trans_handle *trans,
  1240. struct btrfs_root *root,
  1241. struct btrfs_path *path,
  1242. u32 new_size, int from_end);
  1243. int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
  1244. *root, struct btrfs_key *key, struct btrfs_path *p, int
  1245. ins_len, int cow);
  1246. int btrfs_realloc_node(struct btrfs_trans_handle *trans,
  1247. struct btrfs_root *root, struct extent_buffer *parent,
  1248. int start_slot, int cache_only, u64 *last_ret,
  1249. struct btrfs_key *progress);
  1250. void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
  1251. struct btrfs_path *btrfs_alloc_path(void);
  1252. void btrfs_free_path(struct btrfs_path *p);
  1253. void btrfs_init_path(struct btrfs_path *p);
  1254. int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
  1255. struct btrfs_path *path, int slot, int nr);
  1256. static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
  1257. struct btrfs_root *root,
  1258. struct btrfs_path *path)
  1259. {
  1260. return btrfs_del_items(trans, root, path, path->slots[0], 1);
  1261. }
  1262. int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
  1263. *root, struct btrfs_key *key, void *data, u32 data_size);
  1264. int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
  1265. struct btrfs_root *root,
  1266. struct btrfs_path *path,
  1267. struct btrfs_key *cpu_key, u32 *data_size, int nr);
  1268. static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
  1269. struct btrfs_root *root,
  1270. struct btrfs_path *path,
  1271. struct btrfs_key *key,
  1272. u32 data_size)
  1273. {
  1274. return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
  1275. }
  1276. int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
  1277. int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
  1278. int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
  1279. int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
  1280. *root);
  1281. /* root-item.c */
  1282. int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
  1283. struct btrfs_key *key);
  1284. int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
  1285. *root, struct btrfs_key *key, struct btrfs_root_item
  1286. *item);
  1287. int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
  1288. *root, struct btrfs_key *key, struct btrfs_root_item
  1289. *item);
  1290. int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
  1291. btrfs_root_item *item, struct btrfs_key *key);
  1292. int btrfs_search_root(struct btrfs_root *root, u64 search_start,
  1293. u64 *found_objectid);
  1294. int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid,
  1295. struct btrfs_root *latest_root);
  1296. /* dir-item.c */
  1297. int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
  1298. *root, const char *name, int name_len, u64 dir,
  1299. struct btrfs_key *location, u8 type);
  1300. struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
  1301. struct btrfs_root *root,
  1302. struct btrfs_path *path, u64 dir,
  1303. const char *name, int name_len,
  1304. int mod);
  1305. struct btrfs_dir_item *
  1306. btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
  1307. struct btrfs_root *root,
  1308. struct btrfs_path *path, u64 dir,
  1309. u64 objectid, const char *name, int name_len,
  1310. int mod);
  1311. struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
  1312. struct btrfs_path *path,
  1313. const char *name, int name_len);
  1314. int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
  1315. struct btrfs_root *root,
  1316. struct btrfs_path *path,
  1317. struct btrfs_dir_item *di);
  1318. int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
  1319. struct btrfs_root *root, const char *name,
  1320. u16 name_len, const void *data, u16 data_len,
  1321. u64 dir);
  1322. struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
  1323. struct btrfs_root *root,
  1324. struct btrfs_path *path, u64 dir,
  1325. const char *name, u16 name_len,
  1326. int mod);
  1327. /* inode-map.c */
  1328. int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
  1329. struct btrfs_root *fs_root,
  1330. u64 dirid, u64 *objectid);
  1331. int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
  1332. /* inode-item.c */
  1333. int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
  1334. struct btrfs_root *root,
  1335. const char *name, int name_len,
  1336. u64 inode_objectid, u64 ref_objectid);
  1337. int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
  1338. struct btrfs_root *root,
  1339. const char *name, int name_len,
  1340. u64 inode_objectid, u64 ref_objectid);
  1341. int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
  1342. struct btrfs_root *root,
  1343. struct btrfs_path *path, u64 objectid);
  1344. int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
  1345. *root, struct btrfs_path *path,
  1346. struct btrfs_key *location, int mod);
  1347. /* file-item.c */
  1348. int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
  1349. struct btrfs_root *root,
  1350. u64 objectid, u64 pos, u64 disk_offset,
  1351. u64 disk_num_bytes,
  1352. u64 num_bytes, u64 offset);
  1353. int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
  1354. struct btrfs_root *root,
  1355. struct btrfs_path *path, u64 objectid,
  1356. u64 bytenr, int mod);
  1357. int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
  1358. struct btrfs_root *root, struct inode *inode,
  1359. struct bio *bio, char *sums);
  1360. int btrfs_csum_one_bio(struct btrfs_root *root,
  1361. struct bio *bio, char **sums_ret);
  1362. struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
  1363. struct btrfs_root *root,
  1364. struct btrfs_path *path,
  1365. u64 objectid, u64 offset,
  1366. int cow);
  1367. int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
  1368. struct btrfs_root *root, struct btrfs_path *path,
  1369. u64 isize);
  1370. /* inode.c */
  1371. int btrfs_create_subvol_root(struct btrfs_root *new_root,
  1372. struct btrfs_trans_handle *trans, u64 new_dirid,
  1373. struct btrfs_block_group_cache *block_group);
  1374. void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
  1375. int namelen);
  1376. int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
  1377. size_t size, struct bio *bio);
  1378. static inline void dec_i_blocks(struct inode *inode, u64 dec)
  1379. {
  1380. dec = dec >> 9;
  1381. if (dec <= inode->i_blocks)
  1382. inode->i_blocks -= dec;
  1383. else
  1384. inode->i_blocks = 0;
  1385. }
  1386. unsigned long btrfs_force_ra(struct address_space *mapping,
  1387. struct file_ra_state *ra, struct file *file,
  1388. pgoff_t offset, pgoff_t last_index);
  1389. int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
  1390. int for_del);
  1391. int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page);
  1392. int btrfs_readpage(struct file *file, struct page *page);
  1393. void btrfs_delete_inode(struct inode *inode);
  1394. void btrfs_put_inode(struct inode *inode);
  1395. void btrfs_read_locked_inode(struct inode *inode);
  1396. int btrfs_write_inode(struct inode *inode, int wait);
  1397. void btrfs_dirty_inode(struct inode *inode);
  1398. struct inode *btrfs_alloc_inode(struct super_block *sb);
  1399. void btrfs_destroy_inode(struct inode *inode);
  1400. int btrfs_init_cachep(void);
  1401. void btrfs_destroy_cachep(void);
  1402. long btrfs_ioctl_trans_end(struct file *file);
  1403. struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
  1404. struct btrfs_root *root);
  1405. struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
  1406. u64 root_objectid);
  1407. int btrfs_commit_write(struct file *file, struct page *page,
  1408. unsigned from, unsigned to);
  1409. struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
  1410. size_t page_offset, u64 start, u64 end,
  1411. int create);
  1412. int btrfs_update_inode(struct btrfs_trans_handle *trans,
  1413. struct btrfs_root *root,
  1414. struct inode *inode);
  1415. /* ioctl.c */
  1416. long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
  1417. /* file.c */
  1418. int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end);
  1419. int btrfs_check_file(struct btrfs_root *root, struct inode *inode);
  1420. extern struct file_operations btrfs_file_operations;
  1421. int btrfs_drop_extents(struct btrfs_trans_handle *trans,
  1422. struct btrfs_root *root, struct inode *inode,
  1423. u64 start, u64 end, u64 inline_limit, u64 *hint_block);
  1424. int btrfs_release_file(struct inode *inode, struct file *file);
  1425. /* tree-defrag.c */
  1426. int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
  1427. struct btrfs_root *root, int cache_only);
  1428. /* sysfs.c */
  1429. int btrfs_init_sysfs(void);
  1430. void btrfs_exit_sysfs(void);
  1431. int btrfs_sysfs_add_super(struct btrfs_fs_info *fs);
  1432. int btrfs_sysfs_add_root(struct btrfs_root *root);
  1433. void btrfs_sysfs_del_root(struct btrfs_root *root);
  1434. void btrfs_sysfs_del_super(struct btrfs_fs_info *root);
  1435. /* xattr.c */
  1436. ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
  1437. int btrfs_delete_xattrs(struct btrfs_trans_handle *trans,
  1438. struct btrfs_root *root, struct inode *inode);
  1439. /* super.c */
  1440. u64 btrfs_parse_size(char *str);
  1441. int btrfs_parse_options(struct btrfs_root *root, char *options);
  1442. int btrfs_sync_fs(struct super_block *sb, int wait);
  1443. #endif