From 07db94ef26e63440c8e33b64ef59521db74e9225 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Wed, 13 Nov 2013 15:26:37 -0800 Subject: [PATCH] syslog: ignore perf nmi handler timeout This seems to have started appearing in recent 3.12+ kernels with perf enabled. Signed-off-by: Josh Durgin --- teuthology/task/internal.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 61d8312509e4c..2455f6eadd6f7 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -470,6 +470,8 @@ kern.* -{adir}/syslog/kern.log;RSYSLOG_FileFormat run.Raw('|'), 'grep', '-v', 'INFO: possible irq lock inversion dependency detected', # FIXME see #2590 and #147 run.Raw('|'), + 'grep', '-v', 'INFO: NMI handler (perf_event_nmi_handler) took too long to run', + run.Raw('|'), 'head', '-n', '1', ], stdout=StringIO(), -- 2.39.5