A kernel problem occurred, but your kernel has been tainted (flags:GBDL). Explanation:
B - Bad page referenced or some unexpected page flags.
D - Kernel has oopsed before.
L - A soft lockup has previously occurred.
Kernel maintainers are unable to diagnose tainted reports.
However, the undermentioned commands appear to demonstrate otherwise: [1]
#!/usr/bin/env sh
cat /proc/sys/kernel/tainted
0
#!/usr/bin/env sh
sudo dmesg | grep -i taint
$Null
#!/usr/bin/env sh
for i in $(seq 18); do echo $(($i-1)) $(($(cat /proc/sys/kernel/tainted)>>($i-1)&1)); done
@computersavvy, certainly the report is due to the cited problem, but do you mean that the taint message is also caused by the lockup?
If so, doesn’t that render Abrt fairly useless for kernel reports, if it gets confused about whether the kernel is tainted when it crashes merely because it’s… crashed?