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@xxxxxxxxx> --- super-intel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/super-intel.c b/super-intel.c index 433bb6d..d5e9517 100644 --- a/super-intel.c +++ b/super-intel.c @@ -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); -- 2.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html