1
0
Fork 0

dm: remove duplicate module name from error msgs

Remove explicit module name from messages as the macro now includes it
automatically.

Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Alasdair G Kergon 2007-07-12 17:27:01 +01:00 committed by Linus Torvalds
parent ac818646d4
commit 0cd3312434
3 changed files with 6 additions and 9 deletions

View File

@ -1352,15 +1352,14 @@ static int __init dm_multipath_init(void)
r = dm_register_target(&multipath_target);
if (r < 0) {
DMERR("%s: register failed %d", multipath_target.name, r);
DMERR("register failed %d", r);
kmem_cache_destroy(_mpio_cache);
return -EINVAL;
}
kmultipathd = create_workqueue("kmpathd");
if (!kmultipathd) {
DMERR("%s: failed to create workqueue kmpathd",
multipath_target.name);
DMERR("failed to create workqueue kmpathd");
dm_unregister_target(&multipath_target);
kmem_cache_destroy(_mpio_cache);
return -ENOMEM;
@ -1381,8 +1380,7 @@ static void __exit dm_multipath_exit(void)
r = dm_unregister_target(&multipath_target);
if (r < 0)
DMERR("%s: target unregister failed %d",
multipath_target.name, r);
DMERR("target unregister failed %d", r);
kmem_cache_destroy(_mpio_cache);
}

View File

@ -1335,8 +1335,7 @@ static int __init dm_mirror_init(void)
r = dm_register_target(&mirror_target);
if (r < 0) {
DMERR("%s: Failed to register mirror target",
mirror_target.name);
DMERR("Failed to register mirror target");
dm_dirty_log_exit();
}
@ -1349,7 +1348,7 @@ static void __exit dm_mirror_exit(void)
r = dm_unregister_target(&mirror_target);
if (r < 0)
DMERR("%s: unregister failed %d", mirror_target.name, r);
DMERR("unregister failed %d", r);
dm_dirty_log_exit();
}

View File

@ -205,7 +205,7 @@ static void __exit dm_rr_exit(void)
int r = dm_unregister_path_selector(&rr_ps);
if (r < 0)
DMERR("round-robin: unregister failed %d", r);
DMERR("unregister failed %d", r);
}
module_init(dm_rr_init);