transaction handles everywhere
[platform/upstream/btrfs-progs.git] / disk-io.h
1 #ifndef __DISKIO__
2 #define __DISKIO__
3 #include "list.h"
4
5 struct btrfs_buffer {
6         u64 blocknr;
7         int count;
8         struct list_head dirty;
9         struct list_head cache;
10         union {
11                 struct btrfs_node node;
12                 struct btrfs_leaf leaf;
13         };
14 };
15
16 struct btrfs_buffer *read_tree_block(struct btrfs_root *root, u64 blocknr);
17 struct btrfs_buffer *find_tree_block(struct btrfs_root *root, u64 blocknr);
18 int write_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
19                      struct btrfs_buffer *buf);
20 int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
21                      struct btrfs_buffer *buf);
22 int clean_tree_block(struct btrfs_trans_handle *trans,
23                      struct btrfs_root *root, struct btrfs_buffer *buf);
24 int btrfs_commit_transaction(struct btrfs_trans_handle *trans, struct btrfs_root
25                              *root, struct btrfs_super_block *s);
26 struct btrfs_root *open_ctree(char *filename, struct btrfs_super_block *s);
27 int close_ctree(struct btrfs_root *root, struct btrfs_super_block *s);
28 void btrfs_block_release(struct btrfs_root *root, struct btrfs_buffer *buf);
29 int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root *root,
30                       struct btrfs_super_block *s);
31 int mkfs(int fd, u64 num_blocks, u32 blocksize);
32
33 #define BTRFS_SUPER_INFO_OFFSET (16 * 1024)
34
35 #endif