Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 313366 Details for
Bug 435653
ACPI Exception (processor_core-0819): AE_NOT_FOUND, Processor Device is not present [20070126]
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Propoced patch from ykzhao
failure_REG.patch (text/plain), 2.10 KB, created by
Joshua Covington
on 2008-08-04 15:22:08 UTC
(
hide
)
Description:
Propoced patch from ykzhao
Filename:
MIME Type:
Creator:
Joshua Covington
Created:
2008-08-04 15:22:08 UTC
Size:
2.10 KB
patch
obsolete
>Subject:ACPI: Ignore AE_NOT_FOUND error of EC _REG method and continue to initialize EC >From: Zhao Yakui <yakui.zhao@intel.com> > >On some broken BIOS the ACPI object in EC _REG method can't be found in >ACPI namespace, which causes that the AE_NOT_FOUND status code is returned by >the EC _REG object. In such case the EC device can't be initialized correctly, >which causes that battery/AC adapter can't work normally. As the EC address >space handler is not removed and the memory pointed by its input argument is >already free, sometimes the kernel will also be panic when EC internal register >is still accessed. But the windows can work well on such broken BIOS. > >Maybe it will be reasonable that OS ignores the AE_NOT_FOUND error >returned by the EC _REG object and continues to initialize EC device >for some broken BIOS. Of course the warning message will be printed. >For example: the ACPI object in EC _REG method can't be found and status error >code is AE_NOT_FOUND. > >http://bugzilla.kernel.org/show_bug.cgi?id=8953 >http://bugzilla.kernel.org/show_bug.cgi?id=10237 > >Signed-off-by: Zhao Yakui <yakui.zhao@intel.com> >Signed-off-by: Lin Ming <ming.m.lin@intel.com> > >--- > drivers/acpi/ec.c | 15 +++++++++++++-- > 1 file changed, 13 insertions(+), 2 deletions(-) > >Index: linux-2.6/drivers/acpi/ec.c >=================================================================== >--- linux-2.6.orig/drivers/acpi/ec.c >+++ linux-2.6/drivers/acpi/ec.c >@@ -835,8 +835,19 @@ static int ec_install_handlers(struct ac > &acpi_ec_space_handler, > NULL, ec); > if (ACPI_FAILURE(status)) { >- acpi_remove_gpe_handler(NULL, ec->gpe, &acpi_ec_gpe_handler); >- return -ENODEV; >+ if (status == AE_NOT_FOUND) { >+ /* >+ * Maybe OS fails in evaluating the _REG object. >+ * The AE_NOT_FOUND error will be ignored and OS >+ * continue to initialize EC. >+ */ >+ printk(KERN_ERR "Fail in evaluating _REG object." >+ " It is broken BIOS.\n"); >+ } else { >+ acpi_remove_gpe_handler(NULL, ec->gpe, >+ &acpi_ec_gpe_handler); >+ return -ENODEV; >+ } > } > > ec->handlers_installed = 1; > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 435653
:
296536
|
296537
|
296538
|
297540
|
297541
|
297542
|
297543
|
297544
|
297545
|
297546
|
298152
|
298179
|
298195
|
298196
|
306038
| 313366