volumes.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. spinlock_t io_lock;
  24. struct block_device *bdev;
  25. u64 total_ios;
  26. char *name;
  27. /* the internal btrfs device id */
  28. u64 devid;
  29. /* size of the device */
  30. u64 total_bytes;
  31. /* bytes used */
  32. u64 bytes_used;
  33. /* optimal io alignment for this device */
  34. u32 io_align;
  35. /* optimal io width for this device */
  36. u32 io_width;
  37. /* minimal io size for this device */
  38. u32 sector_size;
  39. /* type and info about this device */
  40. u64 type;
  41. /* physical drive uuid (or lvm uuid) */
  42. u8 uuid[BTRFS_DEV_UUID_SIZE];
  43. };
  44. struct btrfs_fs_devices {
  45. u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
  46. /* the device with this id has the most recent coyp of the super */
  47. u64 latest_devid;
  48. u64 latest_trans;
  49. u64 lowest_devid;
  50. u64 num_devices;
  51. struct block_device *latest_bdev;
  52. struct block_device *lowest_bdev;
  53. struct list_head devices;
  54. struct list_head list;
  55. };
  56. int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
  57. struct btrfs_device *device,
  58. u64 owner, u64 num_bytes, u64 *start);
  59. int btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw, int stripe_nr,
  60. u64 logical, u64 *phys, u64 *length,
  61. struct btrfs_device **dev, int *total_stripes);
  62. int btrfs_read_sys_array(struct btrfs_root *root);
  63. int btrfs_read_chunk_tree(struct btrfs_root *root);
  64. int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
  65. struct btrfs_root *extent_root, u64 *start,
  66. u64 *num_bytes, u64 type);
  67. void btrfs_mapping_init(struct btrfs_mapping_tree *tree);
  68. void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree);
  69. int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio);
  70. int btrfs_read_super_device(struct btrfs_root *root, struct extent_buffer *buf);
  71. int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
  72. int flags, void *holder);
  73. int btrfs_scan_one_device(const char *path, int flags, void *holder,
  74. struct btrfs_fs_devices **fs_devices_ret);
  75. int btrfs_close_devices(struct btrfs_fs_devices *fs_devices);
  76. int btrfs_add_device(struct btrfs_trans_handle *trans,
  77. struct btrfs_root *root,
  78. struct btrfs_device *device);
  79. int btrfs_cleanup_fs_uuids(void);
  80. #endif