blob: 0ef6e6f714af6a691f6f3a08c17df92500de2627 [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 Masone20d96d2007-03-22 12:13:20 -04008static inline struct btrfs_node *btrfs_buffer_node(struct buffer_head *bh)
9{
10 return (struct btrfs_node *)bh->b_data;
11}
12
13static inline struct btrfs_leaf *btrfs_buffer_leaf(struct buffer_head *bh)
14{
15 return (struct btrfs_leaf *)bh->b_data;
16}
17
18static inline struct btrfs_header *btrfs_buffer_header(struct buffer_head *bh)
19{
20 return &((struct btrfs_node *)bh->b_data)->header;
21}
22
23struct buffer_head *read_tree_block(struct btrfs_root *root, u64 blocknr);
Chris Masond98237b2007-03-28 13:57:48 -040024struct buffer_head *btrfs_find_create_tree_block(struct btrfs_root *root,
25 u64 blocknr);
Chris Masone20d96d2007-03-22 12:13:20 -040026int write_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
27 struct buffer_head *buf);
28int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
29 struct buffer_head *buf);
30int clean_tree_block(struct btrfs_trans_handle *trans,
31 struct btrfs_root *root, struct buffer_head *buf);
Chris Mason79154b12007-03-22 15:59:16 -040032int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
33 struct btrfs_root *root);
Chris Mason2c90e5d2007-04-02 10:50:19 -040034struct btrfs_root *open_ctree(struct super_block *sb);
Chris Masone20d96d2007-03-22 12:13:20 -040035int close_ctree(struct btrfs_root *root);
36void btrfs_block_release(struct btrfs_root *root, struct buffer_head *buf);
Chris Mason79154b12007-03-22 15:59:16 -040037int write_ctree_super(struct btrfs_trans_handle *trans,
38 struct btrfs_root *root);
Chris Masond98237b2007-03-28 13:57:48 -040039struct buffer_head *btrfs_find_tree_block(struct btrfs_root *root, u64 blocknr);
Chris Masonf254e522007-03-29 15:15:27 -040040int btrfs_csum_data(struct btrfs_root * root, char *data, size_t len,
41 char *result);
Chris Mason0f7d52f2007-04-09 10:42:37 -040042struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
43 struct btrfs_key *location);
Chris Masoneb60cea2007-02-02 09:18:22 -050044#endif