kvm tools: Use pr_debug() for symbol lookup init failure

There's absolutely no point in printing out an error message for symbol lookup
init failure because we run just fine without them.

Suggested-by: Sasha Levin <levinsasha928@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
Pekka Enberg
2015-06-01 16:39:51 +01:00
committed by Will Deacon
parent 49777800ce
commit c4b716ec6b
+1 -1
View File
@@ -1113,7 +1113,7 @@ static int kvm_cmd_run_init(int argc, const char **argv)
kvm->vmlinux = vmlinux_filename;
r = symbol_init(kvm);
if (r < 0)
pr_err("symbol_init() failed with error %d\n", r);
pr_debug("symbol_init() failed with error %d\n", r);
ioport__setup_arch();