btrfs-progs: balance filter: add limit of processed chunks
[platform/upstream/btrfs-progs.git] / volumes.h
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
19 #ifndef __BTRFS_VOLUMES_
20 #define __BTRFS_VOLUMES_
21
22 #define BTRFS_STRIPE_LEN        (64 * 1024)
23
24 struct btrfs_device {
25         struct list_head dev_list;
26         struct btrfs_root *dev_root;
27         struct btrfs_fs_devices *fs_devices;
28
29         u64 total_ios;
30
31         int fd;
32
33         int writeable;
34
35         char *name;
36
37         /* these are read off the super block, only in the progs */
38         char *label;
39         u64 total_devs;
40         u64 super_bytes_used;
41
42         /* the internal btrfs device id */
43         u64 devid;
44
45         /* size of the device */
46         u64 total_bytes;
47
48         /* bytes used */
49         u64 bytes_used;
50
51         /* optimal io alignment for this device */
52         u32 io_align;
53
54         /* optimal io width for this device */
55         u32 io_width;
56
57         /* minimal io size for this device */
58         u32 sector_size;
59
60         /* type and info about this device */
61         u64 type;
62
63         /* physical drive uuid (or lvm uuid) */
64         u8 uuid[BTRFS_UUID_SIZE];
65 };
66
67 struct btrfs_fs_devices {
68         u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
69
70         /* the device with this id has the most recent copy of the super */
71         u64 latest_devid;
72         u64 latest_trans;
73         u64 lowest_devid;
74         int latest_bdev;
75         int lowest_bdev;
76         struct list_head devices;
77         struct list_head list;
78
79         int seeding;
80         struct btrfs_fs_devices *seed;
81 };
82
83 struct btrfs_bio_stripe {
84         struct btrfs_device *dev;
85         u64 physical;
86 };
87
88 struct btrfs_multi_bio {
89         int error;
90         int num_stripes;
91         struct btrfs_bio_stripe stripes[];
92 };
93
94 struct map_lookup {
95         struct cache_extent ce;
96         u64 type;
97         int io_align;
98         int io_width;
99         int stripe_len;
100         int sector_size;
101         int num_stripes;
102         int sub_stripes;
103         struct btrfs_bio_stripe stripes[];
104 };
105
106 #define btrfs_multi_bio_size(n) (sizeof(struct btrfs_multi_bio) + \
107                             (sizeof(struct btrfs_bio_stripe) * (n)))
108 #define btrfs_map_lookup_size(n) (sizeof(struct map_lookup) + \
109                                  (sizeof(struct btrfs_bio_stripe) * (n)))
110
111 /*
112  * Restriper's general type filter
113  */
114 #define BTRFS_BALANCE_DATA              (1ULL << 0)
115 #define BTRFS_BALANCE_SYSTEM            (1ULL << 1)
116 #define BTRFS_BALANCE_METADATA          (1ULL << 2)
117
118 #define BTRFS_BALANCE_TYPE_MASK         (BTRFS_BALANCE_DATA |       \
119                                          BTRFS_BALANCE_SYSTEM |     \
120                                          BTRFS_BALANCE_METADATA)
121
122 #define BTRFS_BALANCE_FORCE             (1ULL << 3)
123 #define BTRFS_BALANCE_RESUME            (1ULL << 4)
124
125 /*
126  * Balance filters
127  */
128 #define BTRFS_BALANCE_ARGS_PROFILES     (1ULL << 0)
129 #define BTRFS_BALANCE_ARGS_USAGE        (1ULL << 1)
130 #define BTRFS_BALANCE_ARGS_DEVID        (1ULL << 2)
131 #define BTRFS_BALANCE_ARGS_DRANGE       (1ULL << 3)
132 #define BTRFS_BALANCE_ARGS_VRANGE       (1ULL << 4)
133 #define BTRFS_BALANCE_ARGS_LIMIT        (1ULL << 5)
134
135 /*
136  * Profile changing flags.  When SOFT is set we won't relocate chunk if
137  * it already has the target profile (even though it may be
138  * half-filled).
139  */
140 #define BTRFS_BALANCE_ARGS_CONVERT      (1ULL << 8)
141 #define BTRFS_BALANCE_ARGS_SOFT         (1ULL << 9)
142
143 #define BTRFS_RAID5_P_STRIPE ((u64)-2)
144 #define BTRFS_RAID6_Q_STRIPE ((u64)-1)
145
146
147 int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
148                       u64 logical, u64 *length, u64 *type,
149                       struct btrfs_multi_bio **multi_ret, int mirror_num,
150                       u64 **raid_map);
151 int btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
152                     u64 logical, u64 *length,
153                     struct btrfs_multi_bio **multi_ret, int mirror_num,
154                     u64 **raid_map_ret);
155 int btrfs_next_metadata(struct btrfs_mapping_tree *map_tree, u64 *logical,
156                         u64 *size);
157 int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
158                      u64 chunk_start, u64 physical, u64 devid,
159                      u64 **logical, int *naddrs, int *stripe_len);
160 int btrfs_read_sys_array(struct btrfs_root *root);
161 int btrfs_read_chunk_tree(struct btrfs_root *root);
162 int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
163                       struct btrfs_root *extent_root, u64 *start,
164                       u64 *num_bytes, u64 type);
165 int btrfs_alloc_data_chunk(struct btrfs_trans_handle *trans,
166                            struct btrfs_root *extent_root, u64 *start,
167                            u64 num_bytes, u64 type);
168 int btrfs_read_super_device(struct btrfs_root *root, struct extent_buffer *buf);
169 int btrfs_add_device(struct btrfs_trans_handle *trans,
170                      struct btrfs_root *root,
171                      struct btrfs_device *device);
172 int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
173                        int flags);
174 int btrfs_close_devices(struct btrfs_fs_devices *fs_devices);
175 int btrfs_add_device(struct btrfs_trans_handle *trans,
176                      struct btrfs_root *root,
177                      struct btrfs_device *device);
178 int btrfs_update_device(struct btrfs_trans_handle *trans,
179                         struct btrfs_device *device);
180 int btrfs_scan_one_device(int fd, const char *path,
181                           struct btrfs_fs_devices **fs_devices_ret,
182                           u64 *total_devs, u64 super_offset);
183 int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len);
184 struct list_head *btrfs_scanned_uuids(void);
185 int btrfs_add_system_chunk(struct btrfs_trans_handle *trans,
186                            struct btrfs_root *root, struct btrfs_key *key,
187                            struct btrfs_chunk *chunk, int item_size);
188 int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset);
189 struct btrfs_device *
190 btrfs_find_device_by_devid(struct btrfs_fs_devices *fs_devices,
191                            u64 devid, int instance);
192 struct btrfs_device *btrfs_find_device(struct btrfs_root *root, u64 devid,
193                                        u8 *uuid, u8 *fsid);
194 int write_raid56_with_parity(struct btrfs_fs_info *info,
195                              struct extent_buffer *eb,
196                              struct btrfs_multi_bio *multi,
197                              u64 stripe_len, u64 *raid_map);
198 #endif