]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ACPI/PCI: another multiple _OSC memory leak fix
authorKenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Tue, 13 May 2008 07:48:50 +0000 (16:48 +0900)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Tue, 13 May 2008 16:51:54 +0000 (09:51 -0700)
The acpi_query_osc() function can be called for the ACPI object that
doesn't have _OSC method. In this case, acpi_get_osc_data() would
allocate a useless memory region. To avoid this, we need to check the
existence of _OSC before calling acpi_get_osc_data() in acpi_query_osc().

Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
drivers/pci/pci-acpi.c

index 38fc8b1ff8814456a09754f12668efd3ba2a0b62..9d6fc8e6285d0c557a5e1778e468f49066ff4da5 100644 (file)
@@ -60,9 +60,15 @@ acpi_query_osc (
        union acpi_object       *out_obj;
        u32                     osc_dw0;
        acpi_status *ret_status = (acpi_status *)retval;
-       struct acpi_osc_data *osc_data = acpi_get_osc_data(handle);
+       struct acpi_osc_data *osc_data;
        u32 flags = (unsigned long)context, temp;
+       acpi_handle tmp;
 
+       status = acpi_get_handle(handle, "_OSC", &tmp);
+       if (ACPI_FAILURE(status))
+               return status;
+
+       osc_data = acpi_get_osc_data(handle);
        if (!osc_data) {
                printk(KERN_ERR "acpi osc data array is full\n");
                return AE_ERROR;