From d2fadf9fe2480ac9aac0e20279c27d998fd262e2 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Tue, 10 Jan 2012 15:24:44 -0800 Subject: [PATCH] syslog: ignore lockdep non-static key warning It looks like this warning was made default in linux 3.2. This will keep happening until #1922 is done. --- teuthology/task/internal.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index adae7fd5988ed..60241f9f09774 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -368,6 +368,8 @@ kern.* -/tmp/cephtest/archive/syslog/kern.log;RSYSLOG_FileFormat run.Raw('|'), 'grep', '-v', 'lockdep is turned off', run.Raw('|'), + 'grep', '-v', 'trying to register non-static key', + run.Raw('|'), 'head', '-n', '1', ], stdout=StringIO(), -- 2.39.5