imsm: FIX: Variables declaration cleanup

Variables declaration moved a little bit up,
to not mix declaration and code.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
Adam Kwolek 2011-03-08 17:18:44 +11:00 committed by NeilBrown
parent 4968025884
commit 04fa952309
1 changed files with 2 additions and 2 deletions

View File

@ -1830,13 +1830,13 @@ static void getinfo_super_imsm_volume(struct supertype *st, struct mdinfo *info,
case MIGR_GEN_MIGR: {
__u64 blocks_per_unit = blocks_per_migr_unit(dev);
__u64 units = __le32_to_cpu(dev->vol.curr_migr_unit);
unsigned long long array_blocks;
int used_disks;
info->reshape_progress = blocks_per_unit * units;
dprintf("IMSM: General Migration checkpoint : %llu "
"(%llu) -> read reshape progress : %llu\n",
units, blocks_per_unit, info->reshape_progress);
unsigned long long array_blocks;
int used_disks;
used_disks = imsm_num_data_members(dev, 1);
if (used_disks > 0) {