summaryrefslogtreecommitdiff
path: root/Grow.c
diff options
context:
space:
mode:
authorLukasz Dorau <lukasz.dorau@intel.com>2012-08-10 16:06:34 +0200
committerNeilBrown <neilb@suse.de>2012-08-13 08:07:01 +1000
commit7ec0996cf65bbaffc4fa72560c12f118318d6367 (patch)
treea1ff4b3bc3e18cbe794e0f3e5b77b350f41f499a /Grow.c
parent5b7e273aae7594369a1b3942c7d168c96c4768c0 (diff)
Grow.c: change size to be unsigned and use '0' in case of 'no change'
The 'size' has been changed to be unsigned recently. Analogous changes should be made to reshape_super(). '0' should be used in case of 'no change' now. Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com> Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'Grow.c')
-rw-r--r--Grow.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Grow.c b/Grow.c
index 527d1c84..4c78020b 100644
--- a/Grow.c
+++ b/Grow.c
@@ -642,8 +642,8 @@ static void wait_reshape(struct mdinfo *sra)
close(fd);
}
-static int reshape_super(struct supertype *st, long long size, int level,
- int layout, int chunksize, int raid_disks,
+static int reshape_super(struct supertype *st, unsigned long long size,
+ int level, int layout, int chunksize, int raid_disks,
int delta_disks, char *backup_file, char *dev,
int direction, int verbose)
{
@@ -1999,7 +1999,7 @@ size_change_error:
/* Impose these changes on a single array. First
* check that the metadata is OK with the change. */
- if (reshape_super(st, -1, info.new_level,
+ if (reshape_super(st, 0, info.new_level,
info.new_layout, info.new_chunk,
info.array.raid_disks, info.delta_disks,
c->backup_file, devname, APPLY_METADATA_CHANGES,
@@ -2684,10 +2684,10 @@ int reshape_container(char *container, char *devname,
int last_devnum = -1;
/* component_size is not meaningful for a container,
- * so pass '-1' meaning 'no change'
+ * so pass '0' meaning 'no change'
*/
if (!restart &&
- reshape_super(st, -1, info->new_level,
+ reshape_super(st, 0, info->new_level,
info->new_layout, info->new_chunk,
info->array.raid_disks, info->delta_disks,
backup_file, devname, APPLY_METADATA_CHANGES,