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 686239 Details for
Bug 903360
ACPI device nodes lookup for the PCI bus type bug
[?]
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]
fixes bug in drivers/acpi/glue.c
linux-3.7-acpigetchilddevicefix.patch (text/plain), 905 bytes, created by
Gary Gatling
on 2013-01-23 19:46:32 UTC
(
hide
)
Description:
fixes bug in drivers/acpi/glue.c
Filename:
MIME Type:
Creator:
Gary Gatling
Created:
2013-01-23 19:46:32 UTC
Size:
905 bytes
patch
obsolete
>diff -up linux-3.7/drivers/acpi/glue.c.acpigetchilddevicefix linux-3.7/drivers/acpi/glue.c >--- linux-3.7/drivers/acpi/glue.c.acpigetchilddevicefix 2013-01-22 13:56:11.924841923 -0500 >+++ linux-3.7/drivers/acpi/glue.c 2013-01-22 13:59:32.968961666 -0500 >@@ -99,18 +99,20 @@ struct acpi_find_child { > static acpi_status > do_acpi_find_child(acpi_handle handle, u32 lvl, void *context, void **rv) > { >- acpi_status status; >+ acpi_status status, ret = AE_OK; > struct acpi_device_info *info; > struct acpi_find_child *find = context; > > status = acpi_get_object_info(handle, &info); > if (ACPI_SUCCESS(status)) { > if ((info->address == find->address) >- && (info->valid & ACPI_VALID_ADR)) >+ && (info->valid & ACPI_VALID_ADR)) { > find->handle = handle; >+ ret = AE_CTRL_TERMINATE; >+ } > kfree(info); > } >- return AE_OK; >+ return ret; > } > > acpi_handle acpi_get_child(acpi_handle parent, u64 address)
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 903360
: 686239 |
707591
|
710781