Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 356951
b: refs/heads/master
c: 7e15e9b
h: refs/heads/master
i:
  356949: 7b81676
  356947: 13d94ec
  356943: 1bb12f3
v: v3
  • Loading branch information
Aaron Lu authored and Jeff Garzik committed Jan 21, 2013
1 parent 6ce89ee commit 06858ed
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a59b9aae230316134597775c6202cf28f6da0333
refs/heads/master: 7e15e9be37eb834aaaca69030064ac97eaf5df2f
19 changes: 19 additions & 0 deletions trunk/drivers/ata/libata-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -5413,8 +5413,27 @@ static int ata_port_resume(struct device *dev)
return rc;
}

/*
* For ODDs, the upper layer will poll for media change every few seconds,
* which will make it enter and leave suspend state every few seconds. And
* as each suspend will cause a hard/soft reset, the gain of runtime suspend
* is very little and the ODD may malfunction after constantly being reset.
* So the idle callback here will not proceed to suspend if a non-ZPODD capable
* ODD is attached to the port.
*/
static int ata_port_runtime_idle(struct device *dev)
{
struct ata_port *ap = to_ata_port(dev);
struct ata_link *link;
struct ata_device *adev;

ata_for_each_link(link, ap, HOST_FIRST) {
ata_for_each_dev(adev, link, ENABLED)
if (adev->class == ATA_DEV_ATAPI &&
!zpodd_dev_enabled(adev))
return -EBUSY;
}

return pm_runtime_suspend(dev);
}

Expand Down

0 comments on commit 06858ed

Please sign in to comment.