[PATCH] utilities: kernelscan.c: add scanning for ACPI_BIOS_ERROR messages
Colin King
colin.king at canonical.com
Fri Nov 16 08:28:45 UTC 2012
From: Colin Ian King <colin.king at canonical.com>
The ACPI driver has a handful of ACPI_BIOS_ERROR message calls, so
add scanning for these too.
Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
src/utilities/kernelscan.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/utilities/kernelscan.c b/src/utilities/kernelscan.c
index 8a57b82..7b12f83 100644
--- a/src/utilities/kernelscan.c
+++ b/src/utilities/kernelscan.c
@@ -765,7 +765,8 @@ static int parse_kernel_message(parser *p, token *t)
printk = (strcmp(t->token, "printk") == 0);
if ((strcmp(t->token, "dev_err") == 0) ||
- (strcmp(t->token, "ACPI_ERROR") == 0))
+ (strcmp(t->token, "ACPI_ERROR") == 0) ||
+ (strcmp(t->token, "ACPI_BIOS_ERROR") == 0))
emit = true;
line = strdupcat(line, t->token);
@@ -857,7 +858,8 @@ static void parse_kernel_messages(FILE *fp)
while ((get_token(&p, &t)) != EOF) {
if ((strcmp(t.token, "printk") == 0) ||
(strcmp(t.token, "dev_err") == 0) ||
- (strcmp(t.token, "ACPI_ERROR") == 0)) {
+ (strcmp(t.token, "ACPI_ERROR") == 0) ||
+ (strcmp(t.token, "ACPI_BIOS_ERROR") == 0)) {
parse_kernel_message(&p, &t);
} else
token_clear(&t);
--
1.7.10.4
More information about the fwts-devel
mailing list