summaryrefslogtreecommitdiff
path: root/convert/main.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2017-02-01 15:06:04 +0100
committerDavid Sterba <dsterba@suse.com>2017-03-08 13:00:46 +0100
commit52319450e70828181d1dd92f9cca1bc38611038e (patch)
tree30be23d751e96af9d6061145dcc0ba586ca5c480 /convert/main.c
parentd1d99f50e346048ac1c151204b6800d729f48313 (diff)
btrfs-progs: convert: rename members that clash with other functions
Rename 'free' and also 'used' for consistency. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'convert/main.c')
-rw-r--r--convert/main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/convert/main.c b/convert/main.c
index 42b69df3..b115e24f 100644
--- a/convert/main.c
+++ b/convert/main.c
@@ -567,9 +567,9 @@ static int wipe_reserved_ranges(struct cache_tree *tree, u64 min_stripe_size,
static int calculate_available_space(struct btrfs_convert_context *cctx)
{
- struct cache_tree *used = &cctx->used;
+ struct cache_tree *used = &cctx->used_space;
struct cache_tree *data_chunks = &cctx->data_chunks;
- struct cache_tree *free = &cctx->free;
+ struct cache_tree *free = &cctx->free_space;
struct cache_extent *cache;
u64 cur_off = 0;
/*
@@ -727,7 +727,7 @@ static int create_image(struct btrfs_root *root,
* Create a new used space cache, which doesn't contain the reserved
* range
*/
- for (cache = first_cache_extent(&cctx->used); cache;
+ for (cache = first_cache_extent(&cctx->used_space); cache;
cache = next_cache_extent(cache)) {
ret = add_cache_extent(&used_tmp, cache->start, cache->size);
if (ret < 0)
@@ -753,8 +753,8 @@ static int create_image(struct btrfs_root *root,
cur += len;
}
/* Handle the reserved ranges */
- ret = migrate_reserved_ranges(trans, root, &cctx->used, &buf, fd, ino,
- cfg->num_bytes, convert_flags);
+ ret = migrate_reserved_ranges(trans, root, &cctx->used_space, &buf, fd,
+ ino, cfg->num_bytes, convert_flags);
key.objectid = ino;
key.type = BTRFS_INODE_ITEM_KEY;