Skip to content

Commit

Permalink
kernel_dmesg_diff.py: Update the software IO TLB filter rule.
Browse files Browse the repository at this point in the history
The IO TLB filter message changed format and is no longer caught by the rule.
This change updates the rule to catch the new format.

Signed-off-by: Erick Shepherd <[email protected]>
  • Loading branch information
erickshepherdNI authored and chaitu236 committed Aug 12, 2024
1 parent 4cedbb7 commit e49ea77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def strip_timestamps(log):
[r'NODE_DATA\(0\) allocated \[mem .*\]', 'NODE_DATA(0) allocated [mem ]'],
[r'ACPI: SSDT 0x.*', 'ACPI: SSDT 0x'],
[r'tsc: Refined TSC clocksource calibration: \d+.\d+ MHz', 'tsc: Refined TSC clocksource calibration: MHz'],
[r'software IO TLB: mapped mem .*', 'software IO TLB: mapped mem'],
[r'software IO TLB: mapped .*', 'software IO TLB: mapped mem'],
[r'eth\d:', 'ethX:'],
[r'renamed from eth\d', 'renamed from ethX'],
[r'mounted filesystem [0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}', 'mounted filesystem xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'],
Expand Down

0 comments on commit e49ea77

Please sign in to comment.