From 91bc44bd073020c27487b22ccf53a37d593d331e Mon Sep 17 00:00:00 2001 From: Anand Jain Date: Mon, 16 Dec 2013 20:33:58 +0800 Subject: btrfs-progs: use stripe_len define here Signed-off-by: Anand Jain Signed-off-by: David Sterba Signed-off-by: Chris Mason --- btrfs-convert.c | 2 +- btrfs-image.c | 2 +- volumes.c | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/btrfs-convert.c b/btrfs-convert.c index 010de8ae..1b66de78 100644 --- a/btrfs-convert.c +++ b/btrfs-convert.c @@ -1713,7 +1713,7 @@ static int prepare_system_chunk_sb(struct btrfs_super_block *super) btrfs_set_stack_chunk_length(chunk, btrfs_super_total_bytes(super)); btrfs_set_stack_chunk_owner(chunk, BTRFS_EXTENT_TREE_OBJECTID); - btrfs_set_stack_chunk_stripe_len(chunk, 64 * 1024); + btrfs_set_stack_chunk_stripe_len(chunk, BTRFS_STRIPE_LEN); btrfs_set_stack_chunk_type(chunk, BTRFS_BLOCK_GROUP_SYSTEM); btrfs_set_stack_chunk_io_align(chunk, sectorsize); btrfs_set_stack_chunk_io_width(chunk, sectorsize); diff --git a/btrfs-image.c b/btrfs-image.c index 7bcfc069..1b2831a9 100644 --- a/btrfs-image.c +++ b/btrfs-image.c @@ -1350,7 +1350,7 @@ static void update_super_old(u8 *buffer) btrfs_set_stack_chunk_length(chunk, (u64)-1); btrfs_set_stack_chunk_owner(chunk, BTRFS_EXTENT_TREE_OBJECTID); - btrfs_set_stack_chunk_stripe_len(chunk, 64 * 1024); + btrfs_set_stack_chunk_stripe_len(chunk, BTRFS_STRIPE_LEN); btrfs_set_stack_chunk_type(chunk, BTRFS_BLOCK_GROUP_SYSTEM); btrfs_set_stack_chunk_io_align(chunk, sectorsize); btrfs_set_stack_chunk_io_width(chunk, sectorsize); diff --git a/volumes.c b/volumes.c index e25b4c08..65be5f07 100644 --- a/volumes.c +++ b/volumes.c @@ -655,7 +655,7 @@ static u64 chunk_bytes_by_type(u64 type, u64 calc_size, int num_stripes, static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target) { /* TODO, add a way to store the preferred stripe size */ - return 64 * 1024; + return BTRFS_STRIPE_LEN; } /* @@ -773,7 +773,7 @@ int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, int looped = 0; int ret; int index; - int stripe_len = 64 * 1024; + int stripe_len = BTRFS_STRIPE_LEN; struct btrfs_key key; u64 offset; @@ -1010,7 +1010,7 @@ int btrfs_alloc_data_chunk(struct btrfs_trans_handle *trans, int sub_stripes = 0; int ret; int index; - int stripe_len = 64 * 1024; + int stripe_len = BTRFS_STRIPE_LEN; struct btrfs_key key; key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; -- cgit v1.2.3