summaryrefslogtreecommitdiff
path: root/volumes.c
diff options
context:
space:
mode:
Diffstat (limited to 'volumes.c')
-rw-r--r--volumes.c6
1 files changed, 3 insertions, 3 deletions
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;