volumes.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright (C) 2007 Oracle. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public
  6. * License v2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public
  14. * License along with this program; if not, write to the
  15. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16. * Boston, MA 021110-1307, USA.
  17. */
  18. #ifndef __BTRFS_VOLUMES_
  19. #define __BTRFS_VOLUMES_
  20. struct btrfs_device {
  21. struct list_head dev_list;
  22. struct btrfs_root *dev_root;
  23. struct block_device *bdev;
  24. /* the internal btrfs device id */
  25. u64 devid;
  26. /* size of the device */
  27. u64 total_bytes;
  28. /* bytes used */
  29. u64 bytes_used;
  30. /* optimal io alignment for this device */
  31. u32 io_align;
  32. /* optimal io width for this device */
  33. u32 io_width;
  34. /* minimal io size for this device */
  35. u32 sector_size;
  36. /* type and info about this device */
  37. u64 type;
  38. /* physical drive uuid (or lvm uuid) */
  39. u8 uuid[BTRFS_DEV_UUID_SIZE];
  40. };
  41. int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
  42. struct btrfs_device *device,
  43. u64 owner, u64 num_bytes, u64 *start);
  44. int btrfs_map_block(struct btrfs_mapping_tree *map_tree,
  45. u64 logical, u64 *phys, u64 *length,
  46. struct btrfs_device **dev);
  47. int btrfs_read_sys_array(struct btrfs_root *root);
  48. int btrfs_read_chunk_tree(struct btrfs_root *root);
  49. int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
  50. struct btrfs_root *extent_root, u64 *start,
  51. u64 *num_bytes, u64 type);
  52. void btrfs_mapping_init(struct btrfs_mapping_tree *tree);
  53. void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree);
  54. int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio);
  55. int btrfs_read_super_device(struct btrfs_root *root, struct extent_buffer *buf);
  56. int btrfs_map_block(struct btrfs_mapping_tree *map_tree,
  57. u64 logical, u64 *phys, u64 *length,
  58. struct btrfs_device **dev);
  59. #endif