mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-09-07 06:01:40 +00:00
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:
committed by
Will Deacon
parent
49777800ce
commit
c4b716ec6b
+1
-1
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user