- To: James Bottomley <James.Bottomley@xxxxxxxxxxxxxxxxxxxxx>, Alan Stern <stern@xxxxxxxxxxxxxxxxxxx>
- Subject: [PATCH v3 2/7] scsi: pm: use autosuspend if device supports it
- From: Aaron Lu <aaron.lu@xxxxxxx>
- Date: Thu, 26 Jul 2012 18:05:24 +0800
- Cc: Jeff Garzik <jgarzik@xxxxxxxxx>, Lin Ming <minggr@xxxxxxxxx>, Jeff Wu <jeff.wu@xxxxxxx>, <linux-kernel@xxxxxxxxxxxxxxx>, <linux-pm@xxxxxxxxxxxxxxx>, <linux-scsi@xxxxxxxxxxxxxxx>, <linux-ide@xxxxxxxxxxxxxxx>, Aaron Lu <aaron.lwe@xxxxxxxxx>, Aaron Lu <aaron.lu@xxxxxxx>
- In-reply-to: <1343297129-28174-1-git-send-email-aaron.lu@amd.com>
- List-id: <linux-ide.vger.kernel.org>
If the device is using autosuspend, when scsi_autopm_put_device is
called for it, use autosuspend runtime pm calls instead of the sync
call.
Signed-off-by: Aaron Lu <aaron.lu@xxxxxxx>
---
drivers/scsi/scsi_pm.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/drivers/scsi/scsi_pm.c b/drivers/scsi/scsi_pm.c
index dc0ad85..7c93723 100644
--- a/drivers/scsi/scsi_pm.c
+++ b/drivers/scsi/scsi_pm.c
@@ -197,7 +197,13 @@ EXPORT_SYMBOL_GPL(scsi_autopm_get_device);
void scsi_autopm_put_device(struct scsi_device *sdev)
{
- pm_runtime_put_sync(&sdev->sdev_gendev);
+ if (sdev->sdev_gendev.power.use_autosuspend) {
+ pm_runtime_mark_last_busy(&sdev->sdev_gendev);
+ pm_runtime_put_autosuspend(&sdev->sdev_gendev);
+ } else {
+ pm_runtime_put_sync(&sdev->sdev_gendev);
+ }
+
}
EXPORT_SYMBOL_GPL(scsi_autopm_put_device);
--
1.7.11.3
--
To unsubscribe from this list: send the line "unsubscribe linux-ide" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
[Linux Filesystems]
[Linux SCSI]
[Linux RAID]
[Git]
[Kernel Newbies]
[Linux Newbie]
[Share Photos]
[Security]
[Netfilter]
[Bugtraq]
[Photo]
[Yosemite]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Samba]
[Video 4 Linux]
[Device Mapper]
[Linux Resources]