disk-io.h 1.3 KB

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