reindent/reformat some code.

Indenting was all wrong here, so fix it up.

Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
NeilBrown 2011-01-21 09:06:31 +11:00
parent 10af14c4d2
commit e7a71c6b77
1 changed files with 36 additions and 30 deletions

66
Grow.c
View File

@ -3020,44 +3020,50 @@ int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt
if (bsb.magic[15] == '1') {
if (bsb.length == 0)
continue;
if (info->delta_disks >= 0) {
/* reshape_progress is increasing */
if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
info->reshape_progress) {
nonew:
if (verbose)
fprintf(stderr, Name ": backup-metadata found on %s but is not needed\n", devname);
continue; /* No new data here */
if (info->delta_disks >= 0) {
/* reshape_progress is increasing */
if (__le64_to_cpu(bsb.arraystart)
+ __le64_to_cpu(bsb.length)
< info->reshape_progress) {
nonew:
if (verbose)
fprintf(stderr, Name
": backup-metadata found on %s but is not needed\n", devname);
continue; /* No new data here */
}
} else {
/* reshape_progress is decreasing */
if (__le64_to_cpu(bsb.arraystart) >=
info->reshape_progress)
goto nonew; /* No new data here */
}
} else {
/* reshape_progress is decreasing */
if (__le64_to_cpu(bsb.arraystart) >=
info->reshape_progress)
goto nonew; /* No new data here */
}
} else {
if (bsb.length == 0 && bsb.length2 == 0)
continue;
if (info->delta_disks >= 0) {
/* reshape_progress is increasing */
if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
info->reshape_progress &&
__le64_to_cpu(bsb.arraystart2) + __le64_to_cpu(bsb.length2) <
info->reshape_progress)
goto nonew; /* No new data here */
} else {
/* reshape_progress is decreasing */
if (__le64_to_cpu(bsb.arraystart) >=
info->reshape_progress &&
__le64_to_cpu(bsb.arraystart2) >=
info->reshape_progress)
goto nonew; /* No new data here */
}
if (info->delta_disks >= 0) {
/* reshape_progress is increasing */
if ((__le64_to_cpu(bsb.arraystart)
+ __le64_to_cpu(bsb.length)
< info->reshape_progress)
&&
(__le64_to_cpu(bsb.arraystart2)
+ __le64_to_cpu(bsb.length2)
< info->reshape_progress))
goto nonew; /* No new data here */
} else {
/* reshape_progress is decreasing */
if (__le64_to_cpu(bsb.arraystart) >=
info->reshape_progress &&
__le64_to_cpu(bsb.arraystart2) >=
info->reshape_progress)
goto nonew; /* No new data here */
}
}
if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
second_fail:
if (verbose)
fprintf(stderr, Name ": Failed to verify secondary backup-metadata block on %s\n",
fprintf(stderr, Name
": Failed to verify secondary backup-metadata block on %s\n",
devname);
continue; /* Cannot seek */
}