ACPI/PCI: PM: Add missing wakeup.flags.valid checks
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 16 May 2019 10:42:20 +0000 (12:42 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 27 May 2019 08:51:06 +0000 (10:51 +0200)
Both acpi_pci_need_resume() and acpi_dev_needs_resume() check if the
current ACPI wakeup configuration of the device matches what is
expected as far as system wakeup from sleep states is concerned, as
reflected by the device_may_wakeup() return value for the device.

However, they only should do that if wakeup.flags.valid is set for
the device's ACPI companion, because otherwise the wakeup.prepare_count
value for it is meaningless.

Add the missing wakeup.flags.valid checks to these functions.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
drivers/acpi/device_pm.c
drivers/pci/pci-acpi.c

index b859d75eaf9f64a91a2e6ae38554ba9be91b47c4..1f9058b869088ac965ff623e97f2e2b697593ea4 100644 (file)
@@ -952,8 +952,8 @@ static bool acpi_dev_needs_resume(struct device *dev, struct acpi_device *adev)
        u32 sys_target = acpi_target_system_state();
        int ret, state;
 
-       if (!pm_runtime_suspended(dev) || !adev ||
-           device_may_wakeup(dev) != !!adev->wakeup.prepare_count)
+       if (!pm_runtime_suspended(dev) || !adev || (adev->wakeup.flags.valid &&
+           device_may_wakeup(dev) != !!adev->wakeup.prepare_count))
                return true;
 
        if (sys_target == ACPI_STATE_S0)
index c5e1a097d7e331c38e2aa83914349407e9812d05..1897847ceb0ca871b150867826603dcca95d9736 100644 (file)
@@ -733,7 +733,8 @@ static bool acpi_pci_need_resume(struct pci_dev *dev)
        if (!adev || !acpi_device_power_manageable(adev))
                return false;
 
-       if (device_may_wakeup(&dev->dev) != !!adev->wakeup.prepare_count)
+       if (adev->wakeup.flags.valid &&
+           device_may_wakeup(&dev->dev) != !!adev->wakeup.prepare_count)
                return true;
 
        if (acpi_target_system_state() == ACPI_STATE_S0)