Btrfs: add mkfs.c
[deliverable/linux.git] / fs / btrfs / disk-io.h
CommitLineData
eb60ceac
CM
1#ifndef __DISKIO__
2#define __DISKIO__
3
4struct tree_buffer {
5 u64 blocknr;
6 int count;
7 union {
8 struct node node;
9 struct leaf leaf;
10 };
11};
12
13struct tree_buffer *read_tree_block(struct ctree_root *root, u64 blocknr);
14int write_tree_block(struct ctree_root *root, struct tree_buffer *buf);
15struct ctree_root *open_ctree(char *filename);
16int close_ctree(struct ctree_root *root);
17void tree_block_release(struct ctree_root *root, struct tree_buffer *buf);
18struct tree_buffer *alloc_free_block(struct ctree_root *root);
19int update_root_block(struct ctree_root *root);
d97e63b6
CM
20int mkfs(int fd);
21
22#define CTREE_SUPER_INFO_OFFSET(bs) (16 * (bs))
eb60ceac
CM
23
24#endif
This page took 0.023587 seconds and 5 git commands to generate.