ACK: [PATCH] utilities: kernelscan.c: Add scanning for ACPI_ERROR
Alex Hung
alex.hung at canonical.com
Wed Nov 21 05:53:15 UTC 2012
On 11/06/2012 08:26 PM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
>
> Also add scanning for ACPI_ERROR messages.
>
> 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 c2d60d9..8a57b82 100644
> --- a/src/utilities/kernelscan.c
> +++ b/src/utilities/kernelscan.c
> @@ -764,7 +764,8 @@ static int parse_kernel_message(parser *p, token *t)
>
> printk = (strcmp(t->token, "printk") == 0);
>
> - if (strcmp(t->token, "dev_err") == 0)
> + if ((strcmp(t->token, "dev_err") == 0) ||
> + (strcmp(t->token, "ACPI_ERROR") == 0))
> emit = true;
>
> line = strdupcat(line, t->token);
> @@ -855,7 +856,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, "dev_err") == 0) ||
> + (strcmp(t.token, "ACPI_ERROR") == 0)) {
> parse_kernel_message(&p, &t);
> } else
> token_clear(&t);
>
Acked-by: Alex Hung <alex.hung at canonical.com>
More information about the fwts-devel
mailing list