From 7773a93e3ebe9a18762b46495f9b87921b194999 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 21 Jun 2012 13:20:18 -0700 Subject: [PATCH] whitelist current lockdep warnings in syslog These are causing too much noise in the qa runs to leave, and #2617 is sufficiently non-trivial to do this in the interim. Putting a better mechanism in place will include removing these coarse whitelist items and replacing with something that specifically matches the failures we want to ignore. --- teuthology/task/internal.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 7142087d15a5c..35473dbcf90c1 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -389,6 +389,10 @@ kern.* -/tmp/cephtest/archive/syslog/kern.log;RSYSLOG_FileFormat run.Raw('|'), 'grep', '-v', 'CRON', # ignore cron noise run.Raw('|'), + 'grep', '-v', 'inconsistent lock state', # FIXME see #2523 + run.Raw('|'), + 'grep', '-v', 'INFO: possible irq lock inversion dependency detected', # FIXME see #2590 and #147 + run.Raw('|'), 'head', '-n', '1', ], stdout=StringIO(), -- 2.39.5