ddf: use correct loop variable in activate_spare

Using 'i' when you mean 'j' just shows how silly it is to use
variables named 'i' and 'j'.

Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
NeilBrown 2011-03-15 14:54:46 +11:00
parent 77632af906
commit e5cc7d469f
1 changed files with 5 additions and 4 deletions

View File

@ -3619,13 +3619,14 @@ static struct mdinfo *ddf_activate_spare(struct active_array *a,
esize = ex[j].start - pos;
if (esize >= a->info.component_size)
break;
pos = ex[i].start + ex[i].size;
i++;
} while (ex[i-1].size);
pos = ex[j].start + ex[j].size;
j++;
} while (ex[j-1].size);
free(ex);
if (esize < a->info.component_size) {
dprintf("%x:%x has no room: %llu %llu\n", dl->major, dl->minor,
dprintf("%x:%x has no room: %llu %llu\n",
dl->major, dl->minor,
esize, a->info.component_size);
/* No room */
continue;