Btrfs: variable block size support
[safe/jmp/linux-2.6] / fs / btrfs / 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_root *root, struct btrfs_buffer *buf);
19 int dirty_tree_block(struct btrfs_root *root, struct btrfs_buffer *buf);
20 int clean_tree_block(struct btrfs_root *root, struct btrfs_buffer *buf);
21 int btrfs_commit_transaction(struct btrfs_root *root,
22                              struct btrfs_super_block *s);
23 struct btrfs_root *open_ctree(char *filename, struct btrfs_super_block *s);
24 int close_ctree(struct btrfs_root *root, struct btrfs_super_block *s);
25 void btrfs_block_release(struct btrfs_root *root, struct btrfs_buffer *buf);
26 int write_ctree_super(struct btrfs_root *root, struct btrfs_super_block *s);
27 int mkfs(int fd, u64 num_blocks, u32 blocksize);
28
29 #define BTRFS_SUPER_INFO_OFFSET (16 * 1024)
30
31 #endif