btrfs-progs/disk-io.h

39 lines
1.4 KiB
C
Raw Normal View History

2007-02-02 14:18:22 +00:00
#ifndef __DISKIO__
#define __DISKIO__
2007-03-01 23:59:40 +00:00
#include "list.h"
2007-02-02 14:18:22 +00:00
2007-03-13 14:46:10 +00:00
struct btrfs_buffer {
2007-02-02 14:18:22 +00:00
u64 blocknr;
u64 dev_blocknr;
2007-02-02 14:18:22 +00:00
int count;
int fd;
2007-03-14 18:14:43 +00:00
struct list_head dirty;
struct list_head cache;
2007-02-02 14:18:22 +00:00
union {
2007-03-13 14:46:10 +00:00
struct btrfs_node node;
struct btrfs_leaf leaf;
2007-02-02 14:18:22 +00:00
};
};
2007-03-13 14:46:10 +00:00
struct btrfs_buffer *read_tree_block(struct btrfs_root *root, u64 blocknr);
struct btrfs_buffer *find_tree_block(struct btrfs_root *root, u64 blocknr);
2007-03-16 20:20:31 +00:00
int write_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
struct btrfs_buffer *buf);
int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
struct btrfs_buffer *buf);
int clean_tree_block(struct btrfs_trans_handle *trans,
struct btrfs_root *root, struct btrfs_buffer *buf);
int btrfs_commit_transaction(struct btrfs_trans_handle *trans, struct btrfs_root
*root, struct btrfs_super_block *s);
2007-03-13 14:46:10 +00:00
struct btrfs_root *open_ctree(char *filename, struct btrfs_super_block *s);
2007-03-21 15:13:29 +00:00
struct btrfs_root *open_ctree_fd(int fp, struct btrfs_super_block *super);
2007-03-13 14:46:10 +00:00
int close_ctree(struct btrfs_root *root, struct btrfs_super_block *s);
void btrfs_block_release(struct btrfs_root *root, struct btrfs_buffer *buf);
2007-03-16 20:20:31 +00:00
int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root *root,
struct btrfs_super_block *s);
2007-04-23 19:56:27 +00:00
int btrfs_map_bh_to_logical(struct btrfs_root *root, struct btrfs_buffer *bh,
u64 logical);
2007-03-14 18:14:43 +00:00
#define BTRFS_SUPER_INFO_OFFSET (16 * 1024)
2007-02-02 14:18:22 +00:00
#endif