summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Plugins/KerneloopsSysLog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Plugins/KerneloopsSysLog.cpp b/lib/Plugins/KerneloopsSysLog.cpp
index 646ea521..e6de84aa 100644
--- a/lib/Plugins/KerneloopsSysLog.cpp
+++ b/lib/Plugins/KerneloopsSysLog.cpp
@@ -314,10 +314,10 @@ next_line:
/* single oopses are of the same loglevel */
else if (lines_info[i].level != prevlevel)
oopsend = i-1;
- else if (strstr(curline, "Instruction dump::")) /* why "::"? is it a typo? */
+ else if (strstr(curline, "Instruction dump:"))
oopsend = i;
/* if a new oops starts, this one has ended */
- else if (strstr(curline, "WARNING:") && oopsstart != i)
+ else if (strstr(curline, "WARNING: at ") && oopsstart != i) /* WARN_ON() generated messages */
oopsend = i-1;
else if (strstr(curline, "Unable to handle") && oopsstart != i)
oopsend = i-1;