ctree.h 53 KB

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