linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] watchdog: Reduce message verbosity
@ 2018-07-30 19:09 Sinan Kaya
  2018-07-30 19:28 ` Don Zickus
  2018-08-02 12:18 ` Thomas Gleixner
  0 siblings, 2 replies; 6+ messages in thread
From: Sinan Kaya @ 2018-07-30 19:09 UTC (permalink / raw)
  To: linux-kernel
  Cc: Sinan Kaya, Thomas Gleixner, Don Zickus, Ingo Molnar,
	Philippe Ombredanne, Greg Kroah-Hartman, Colin Ian King,
	Peter Zijlstra

Reducing the verbosity level to debug for people that are interested in
debugging watchdog issues.

[    0.152492] NMI watchdog: Perf event create on CPU 0 failed with -2
[    0.156002] NMI watchdog: Perf NMI watchdog permanently disabled

Signed-off-by: Sinan Kaya <okaya@kernel.org>
---
 kernel/watchdog_hld.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/watchdog_hld.c b/kernel/watchdog_hld.c
index e449a23e9d59..1f7020d65d0a 100644
--- a/kernel/watchdog_hld.c
+++ b/kernel/watchdog_hld.c
@@ -175,8 +175,8 @@ static int hardlockup_detector_event_create(void)
 	evt = perf_event_create_kernel_counter(wd_attr, cpu, NULL,
 					       watchdog_overflow_callback, NULL);
 	if (IS_ERR(evt)) {
-		pr_info("Perf event create on CPU %d failed with %ld\n", cpu,
-			PTR_ERR(evt));
+		pr_debug("Perf event create on CPU %d failed with %ld\n", cpu,
+			 PTR_ERR(evt));
 		return PTR_ERR(evt);
 	}
 	this_cpu_write(watchdog_ev, evt);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-08-02 14:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-30 19:09 [PATCH] watchdog: Reduce message verbosity Sinan Kaya
2018-07-30 19:28 ` Don Zickus
2018-07-30 19:43   ` Sinan Kaya
2018-08-01 15:59     ` Don Zickus
2018-08-02 12:18 ` Thomas Gleixner
2018-08-02 14:44   ` Sinan Kaya

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).