diff options
Diffstat (limited to 'fs/btrfs/volumes.c')
-rw-r--r-- | fs/btrfs/volumes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 5eb7217738ed..e8b9a269fdde 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c | |||
@@ -2702,7 +2702,7 @@ int btrfs_grow_device(struct btrfs_trans_handle *trans, | |||
2702 | 2702 | ||
2703 | mutex_lock(&fs_info->chunk_mutex); | 2703 | mutex_lock(&fs_info->chunk_mutex); |
2704 | old_total = btrfs_super_total_bytes(super_copy); | 2704 | old_total = btrfs_super_total_bytes(super_copy); |
2705 | diff = new_size - device->total_bytes; | 2705 | diff = round_down(new_size - device->total_bytes, fs_info->sectorsize); |
2706 | 2706 | ||
2707 | if (new_size <= device->total_bytes || | 2707 | if (new_size <= device->total_bytes || |
2708 | device->is_tgtdev_for_dev_replace) { | 2708 | device->is_tgtdev_for_dev_replace) { |
@@ -4406,7 +4406,7 @@ int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) | |||
4406 | u64 diff; | 4406 | u64 diff; |
4407 | 4407 | ||
4408 | new_size = round_down(new_size, fs_info->sectorsize); | 4408 | new_size = round_down(new_size, fs_info->sectorsize); |
4409 | diff = old_size - new_size; | 4409 | diff = round_down(old_size - new_size, fs_info->sectorsize); |
4410 | 4410 | ||
4411 | if (device->is_tgtdev_for_dev_replace) | 4411 | if (device->is_tgtdev_for_dev_replace) |
4412 | return -EINVAL; | 4412 | return -EINVAL; |