From: Len Brown <lenb@kernel.org>
To: Alexey Starikovskiy <aystarik@gmail.com>
Cc: "Meelis Roos" <mroos@linux.ee>,
"Ismail Dönmez" <ismail@pardus.org.tr>,
"Michal Piotrowski" <michal.k.k.piotrowski@gmail.com>,
"Linus Torvalds" <torvalds@linux-foundation.org>,
"Andrew Morton" <akpm@linux-foundation.org>,
LKML <linux-kernel@vger.kernel.org>,
linux-acpi@vger.kernel.org
Subject: Re: [2/3] 2.6.23-rc1: known regressions v3
Date: Fri, 3 Aug 2007 17:31:30 -0400 [thread overview]
Message-ID: <200708031731.30720.lenb@kernel.org> (raw)
In-Reply-To: <46AEB59B.7030909@gmail.com>
On Tuesday 31 July 2007 00:07, Alexey Starikovskiy wrote:
> Meelis Roos wrote:
> >>> Subject : New ACPI error/warning with Linus' latest GIT
> >>> References : http://lkml.org/lkml/2007/7/26/395
> >>> Last known good : ?
> >>> Submitter : Ismail Dönmez <ismail@pardus.org.tr>
> >>> Caused-By : ?
> >>> Handled-By : ?
> >>> Status : unknown
> >> This started to happen after the second ACPI merge which was for 2.6.23-rc2.
> >
> > It appeared after new Embedded Controller code was merged into ACPI. It
> > might as well be just a debug message or a remainder to add support for
> > new queries (whatever these are), but I do not know. The message itself
> > seems harmless.
> >
> This _is_ a debug message. EC asks us to perform query which was never defined in DSDT.
> Previously I thought it would be rare error report, but now it seems that every machine
> has at least one unregistered query... It is not a functional regression, as we just
> ignored errors from query execution before.
>
> Len already has a patch to remove this printk.
yes, this verbose message has been removed.
thanks,
-Len
commit f1cd1fe61b96e4312312d42c0a9784dfab12e007
Author: Alexey Starikovskiy <astarikovskiy@suse.de>
Date: Fri Aug 3 17:28:17 2007 -0400
ACPI: EC: Remove noisy debug printk fron EC driver.
ACPI: EC: Handler for query 0x57 is not found!
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Len Brown <len.brown@intel.com>
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index 469f3f5..dd384ec 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -471,7 +471,6 @@ static void acpi_ec_gpe_query(void *ec_cxt)
}
}
mutex_unlock(&ec->lock);
- printk(KERN_ERR PREFIX "Handler for query 0x%x is not found!\n", value);
}
static u32 acpi_ec_gpe_handler(void *data)
-
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: Len Brown <lenb@kernel.org>
To: Alexey Starikovskiy <aystarik@gmail.com>
Cc: "Meelis Roos" <mroos@linux.ee>,
"Ismail Dönmez" <ismail@pardus.org.tr>,
"Michal Piotrowski" <michal.k.k.piotrowski@gmail.com>,
"Linus Torvalds" <torvalds@linux-foundation.org>,
"Andrew Morton" <akpm@linux-foundation.org>,
LKML <linux-kernel@vger.kernel.org>,
linux-acpi@vger.kernel.org
Subject: Re: [2/3] 2.6.23-rc1: known regressions v3
Date: Fri, 3 Aug 2007 17:31:30 -0400 [thread overview]
Message-ID: <200708031731.30720.lenb@kernel.org> (raw)
In-Reply-To: <46AEB59B.7030909@gmail.com>
On Tuesday 31 July 2007 00:07, Alexey Starikovskiy wrote:
> Meelis Roos wrote:
> >>> Subject : New ACPI error/warning with Linus' latest GIT
> >>> References : http://lkml.org/lkml/2007/7/26/395
> >>> Last known good : ?
> >>> Submitter : Ismail Dönmez <ismail@pardus.org.tr>
> >>> Caused-By : ?
> >>> Handled-By : ?
> >>> Status : unknown
> >> This started to happen after the second ACPI merge which was for 2.6.23-rc2.
> >
> > It appeared after new Embedded Controller code was merged into ACPI. It
> > might as well be just a debug message or a remainder to add support for
> > new queries (whatever these are), but I do not know. The message itself
> > seems harmless.
> >
> This _is_ a debug message. EC asks us to perform query which was never defined in DSDT.
> Previously I thought it would be rare error report, but now it seems that every machine
> has at least one unregistered query... It is not a functional regression, as we just
> ignored errors from query execution before.
>
> Len already has a patch to remove this printk.
yes, this verbose message has been removed.
thanks,
-Len
commit f1cd1fe61b96e4312312d42c0a9784dfab12e007
Author: Alexey Starikovskiy <astarikovskiy@suse.de>
Date: Fri Aug 3 17:28:17 2007 -0400
ACPI: EC: Remove noisy debug printk fron EC driver.
ACPI: EC: Handler for query 0x57 is not found!
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Len Brown <len.brown@intel.com>
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index 469f3f5..dd384ec 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -471,7 +471,6 @@ static void acpi_ec_gpe_query(void *ec_cxt)
}
}
mutex_unlock(&ec->lock);
- printk(KERN_ERR PREFIX "Handler for query 0x%x is not found!\n", value);
}
static u32 acpi_ec_gpe_handler(void *data)
next prev parent reply other threads:[~2007-08-03 21:32 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <46AE0F5D.3000500@googlemail.com>
2007-07-30 16:33 ` [2/3] 2.6.23-rc1: known regressions v3 Michal Piotrowski
2007-07-30 16:33 ` Michal Piotrowski
2007-07-30 19:08 ` Ismail Dönmez
2007-07-30 20:03 ` Meelis Roos
2007-07-31 4:07 ` Alexey Starikovskiy
2007-07-31 4:07 ` Alexey Starikovskiy
2007-08-03 21:31 ` Len Brown [this message]
2007-08-03 21:31 ` Len Brown
2007-07-30 16:34 ` [3/3] " Michal Piotrowski
2007-07-30 16:34 ` Michal Piotrowski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200708031731.30720.lenb@kernel.org \
--to=lenb@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=aystarik@gmail.com \
--cc=ismail@pardus.org.tr \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michal.k.k.piotrowski@gmail.com \
--cc=mroos@linux.ee \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.