blob: 822ccb8aa4aea983038d9f95548e5c965c78a8a7 [file] [log] [blame]
Chris Masoneb60cea2007-02-02 09:18:22 -05001#ifndef __DISKIO__
2#define __DISKIO__
3
Chris Masone20d96d2007-03-22 12:13:20 -04004#include <linux/buffer_head.h>
Chris Mason3768f362007-03-13 16:47:54 -04005
Chris Mason123abc82007-03-14 14:14:43 -04006#define BTRFS_SUPER_INFO_OFFSET (16 * 1024)
Chris Masoneb60cea2007-02-02 09:18:22 -05007
Chris Mason090d1872007-05-01 08:53:32 -04008enum btrfs_bh_state_bits {
9 BH_Checked = BH_PrivateStart,
10};
11BUFFER_FNS(Checked, checked);
12
Chris Masone20d96d2007-03-22 12:13:20 -040013static inline struct btrfs_node *btrfs_buffer_node(struct buffer_head *bh)
14{
15 return (struct btrfs_node *)bh->b_data;
16}
17
18static inline struct btrfs_leaf *btrfs_buffer_leaf(struct buffer_head *bh)
19{
20 return (struct btrfs_leaf *)bh->b_data;
21}
22
23static inline struct btrfs_header *btrfs_buffer_header(struct buffer_head *bh)
24{
25 return &((struct btrfs_node *)bh->b_data)->header;
26}
27
28struct buffer_head *read_tree_block(struct btrfs_root *root, u64 blocknr);
Chris Mason090d1872007-05-01 08:53:32 -040029int readahead_tree_block(struct btrfs_root *root, u64 blocknr);
Chris Masond98237b2007-03-28 13:57:48 -040030struct buffer_head *btrfs_find_create_tree_block(struct btrfs_root *root,
31 u64 blocknr);
Chris Masone20d96d2007-03-22 12:13:20 -040032int write_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
33 struct buffer_head *buf);
34int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
35 struct buffer_head *buf);
36int clean_tree_block(struct btrfs_trans_handle *trans,
37 struct btrfs_root *root, struct buffer_head *buf);
Chris Mason79154b12007-03-22 15:59:16 -040038int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
39 struct btrfs_root *root);
Chris Mason2c90e5d2007-04-02 10:50:19 -040040struct btrfs_root *open_ctree(struct super_block *sb);
Chris Masone20d96d2007-03-22 12:13:20 -040041int close_ctree(struct btrfs_root *root);
42void btrfs_block_release(struct btrfs_root *root, struct buffer_head *buf);
Chris Mason79154b12007-03-22 15:59:16 -040043int write_ctree_super(struct btrfs_trans_handle *trans,
44 struct btrfs_root *root);
Chris Masond98237b2007-03-28 13:57:48 -040045struct buffer_head *btrfs_find_tree_block(struct btrfs_root *root, u64 blocknr);
Chris Masonf254e522007-03-29 15:15:27 -040046int btrfs_csum_data(struct btrfs_root * root, char *data, size_t len,
47 char *result);
Chris Mason0f7d52f2007-04-09 10:42:37 -040048struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
49 struct btrfs_key *location);
Chris Mason7eccb902007-04-11 15:53:25 -040050u64 bh_blocknr(struct buffer_head *bh);
Chris Mason8352d8a2007-04-12 10:43:05 -040051int btrfs_insert_dev_radix(struct btrfs_root *root,
52 struct block_device *bdev,
Chris Masonb4100d62007-04-12 12:14:00 -040053 u64 device_id,
Chris Mason8352d8a2007-04-12 10:43:05 -040054 u64 block_start,
55 u64 num_blocks);
56int btrfs_map_bh_to_logical(struct btrfs_root *root, struct buffer_head *bh,
57 u64 logical);
Chris Mason35b7e472007-05-02 15:53:43 -040058int btrfs_releasepage(struct page *page, gfp_t flags);
59void btrfs_btree_balance_dirty(struct btrfs_root *root);
Chris Masoneb60cea2007-02-02 09:18:22 -050060#endif