File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,16 @@ class Dmesg(Tool):
20
20
re .compile ("BUG: soft lockup" ),
21
21
re .compile ("Hibernate inconsistent memory map detected" ),
22
22
re .compile ("check_flush_dependency" ),
23
+ # Error messages related to memory corruption from fault.c for x86_64
23
24
# https://github.com/torvalds/linux/blob/0de63bb7d91975e73338300a57c54b93d3cc151c/arch/x86/mm/fault.c#L543
24
25
re .compile ("BUG: kernel NULL pointer dereference" ),
25
26
re .compile ("kernel tried to execute NX-protected page" ),
26
27
re .compile ("unable to execute userspace code" ),
27
28
re .compile ("BUG: unable to handle page fault for address:" ),
29
+ # ex: PF: supervisor read access in kernel mode
28
30
re .compile (
29
- r"PF: (supervisor|user) (instruction fetch|read access|write access) "
31
+ r"PF: (supervisor|user) "
32
+ r"(instruction fetch|read access|write access) "
30
33
r"in (user|kernel) mode"
31
34
),
32
35
]
You can’t perform that action at this time.
0 commit comments