Skip to content

Commit 3d05d3d

Browse files
committed
Fix log message filters
When I converted the log message filters to using an ini file, I missed that the ini file parser passes quotes through literally. So none of our patterns were matching because the quotes are not present in the console log.
1 parent 9114f00 commit 3d05d3d

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

etc/filters.ini

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[patterns]
2-
v1='detected stall(s)? on CPU'
3-
v2='WARNING:.*\s(un)?lock(s|ing)?\s'
4-
v3='WARNING: CPU: \d+ PID: \d+ at '
2+
v1=detected stall(s)? on CPU
3+
v2=WARNING:.*\s(un)?lock(s|ing)?\s
4+
v3=WARNING: CPU: \d+ PID: \d+ at
55

66
[strings]
7-
v1='Unable to handle kernel paging request for'
8-
v2='Kernel BUG at'
9-
v3='Warning!'
10-
v4='BUG:'
11-
v5='WARNING: chain_key collision'
12-
v6='WARNING: bad contention detected!'
13-
v7='WARNING: suspicious RCU usage'
7+
v1=Unable to handle kernel paging request for
8+
v2=Kernel BUG at
9+
v3=Warning!
10+
v4=BUG:
11+
v5=WARNING: chain_key collision
12+
v6=WARNING: bad contention detected!
13+
v7=WARNING: suspicious RCU usage
1414

1515
[suppressions]
16-
v1='test_debug_virtual_init'
17-
v2='at drivers/misc/lkdtm/'
16+
v1=test_debug_virtual_init
17+
v2=at drivers/misc/lkdtm/

0 commit comments

Comments
 (0)