* [PATCH] Grow.c: change size to be unsigned and use '0' in case of 'no change'
@ 2012-08-10 14:06 Lukasz Dorau
2012-08-12 22:07 ` NeilBrown
0 siblings, 1 reply; 2+ messages in thread
From: Lukasz Dorau @ 2012-08-10 14:06 UTC (permalink / raw)
To: neilb; +Cc: linux-raid, maciej.patelczyk, ed.ciechanowski, Jacek.Danecki
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>
---
Grow.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Grow.c b/Grow.c
index d13b7f3..f1ce284 100644
--- a/Grow.c
+++ b/Grow.c
@@ -639,8 +639,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)
{
@@ -1987,7 +1987,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,
@@ -2672,10 +2672,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,
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Grow.c: change size to be unsigned and use '0' in case of 'no change'
2012-08-10 14:06 [PATCH] Grow.c: change size to be unsigned and use '0' in case of 'no change' Lukasz Dorau
@ 2012-08-12 22:07 ` NeilBrown
0 siblings, 0 replies; 2+ messages in thread
From: NeilBrown @ 2012-08-12 22:07 UTC (permalink / raw)
To: Lukasz Dorau; +Cc: linux-raid, maciej.patelczyk, ed.ciechanowski, Jacek.Danecki
[-- Attachment #1: Type: text/plain, Size: 1957 bytes --]
On Fri, 10 Aug 2012 16:06:34 +0200 Lukasz Dorau <lukasz.dorau@intel.com>
wrote:
> 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>
> ---
> Grow.c | 10 +++++-----
> 1 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/Grow.c b/Grow.c
> index d13b7f3..f1ce284 100644
> --- a/Grow.c
> +++ b/Grow.c
> @@ -639,8 +639,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)
> {
> @@ -1987,7 +1987,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,
> @@ -2672,10 +2672,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,
Applied - thanks (and sorry for the delay).
NeilBrown
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-08-12 22:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-10 14:06 [PATCH] Grow.c: change size to be unsigned and use '0' in case of 'no change' Lukasz Dorau
2012-08-12 22:07 ` NeilBrown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).