From c4b716ec6b19a5dd89902c5408015047ce3e9bba Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Sat, 4 Feb 2012 10:51:06 +0200 Subject: [PATCH] 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 Signed-off-by: Pekka Enberg --- builtin-run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin-run.c b/builtin-run.c index a3fa444..95d35a5 100644 --- a/builtin-run.c +++ b/builtin-run.c @@ -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();