imsm: fix missing error message during migration

If user tries to migrate from raid0 to raid5 and there is no spare
drive to perform it - mdadm will exit with errorcode, but
no error message is printed.

Print error instead of debug message when this condition occurs,
so user is informed why requested migration is not started.

Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: Jes Sorensen <Jes.Sorensen@gmail.com>
This commit is contained in:
Pawel Baldysiak 2017-01-24 14:29:33 +01:00 committed by Jes Sorensen
parent 53835cf500
commit 565cc99e34
1 changed files with 1 additions and 1 deletions

View File

@ -10718,7 +10718,7 @@ static int imsm_create_metadata_update_for_migration(
free(u);
sysfs_free(spares);
update_memory_size = 0;
dprintf("error: cannot get spare device for requested migration");
pr_err("cannot get spare device for requested migration\n");
return 0;
}
sysfs_free(spares);