Skip to content

Commit

Permalink
PM core: Use new async_schedule_dev command
Browse files Browse the repository at this point in the history
Use the device specific version of the async_schedule commands to defer
various tasks related to power management. By doing this we should see a
slight improvement in performance as any device that is sensitive to
latency/locality in the setup will now be initializing on the node closest
to the device.

Reviewed-by: Dan Williams <dan.j.williams@intel.com>
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Alexander Duyck <alexander.h.duyck@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Alexander Duyck authored and Greg Kroah-Hartman committed Jan 31, 2019
1 parent c37e20e commit 8b9ec6b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/base/power/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ void dpm_noirq_resume_devices(pm_message_t state)
reinit_completion(&dev->power.completion);
if (is_async(dev)) {
get_device(dev);
async_schedule(async_resume_noirq, dev);
async_schedule_dev(async_resume_noirq, dev);
}
}

Expand Down Expand Up @@ -884,7 +884,7 @@ void dpm_resume_early(pm_message_t state)
reinit_completion(&dev->power.completion);
if (is_async(dev)) {
get_device(dev);
async_schedule(async_resume_early, dev);
async_schedule_dev(async_resume_early, dev);
}
}

Expand Down Expand Up @@ -1048,7 +1048,7 @@ void dpm_resume(pm_message_t state)
reinit_completion(&dev->power.completion);
if (is_async(dev)) {
get_device(dev);
async_schedule(async_resume, dev);
async_schedule_dev(async_resume, dev);
}
}

Expand Down Expand Up @@ -1368,7 +1368,7 @@ static int device_suspend_noirq(struct device *dev)

if (is_async(dev)) {
get_device(dev);
async_schedule(async_suspend_noirq, dev);
async_schedule_dev(async_suspend_noirq, dev);
return 0;
}
return __device_suspend_noirq(dev, pm_transition, false);
Expand Down Expand Up @@ -1571,7 +1571,7 @@ static int device_suspend_late(struct device *dev)

if (is_async(dev)) {
get_device(dev);
async_schedule(async_suspend_late, dev);
async_schedule_dev(async_suspend_late, dev);
return 0;
}

Expand Down Expand Up @@ -1835,7 +1835,7 @@ static int device_suspend(struct device *dev)

if (is_async(dev)) {
get_device(dev);
async_schedule(async_suspend, dev);
async_schedule_dev(async_suspend, dev);
return 0;
}

Expand Down

0 comments on commit 8b9ec6b

Please sign in to comment.