diff options
author | Tejun Heo <htejun@gmail.com> | 2006-07-03 03:07:26 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-07-05 22:16:27 -0400 |
commit | 28324304350e23db24d679c55de3f06a5b1e40aa (patch) | |
tree | d1100fbbc939a5f214a3d2917f5ef9cce5159a0e /drivers/scsi/libata-scsi.c | |
parent | e30349d27e093f32ef517b5416d9dce1998d4676 (diff) |
[PATCH] libata: implement ATA_EHI_RESUME_LINK
Implement ATA_EHI_RESUME_LINK, which indicates that the link needs to
be resumed. This used to be implied by ATA_EHI_HOTPLUGGED. However,
hotplug isn't the only event which requires link resume and separating
this out allows other places to request link resume. This
differentiation also allows better debounce timing selection.
This patch converts user scan to use ATA_EHI_RESUME_LINK.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/scsi/libata-scsi.c')
-rw-r--r-- | drivers/scsi/libata-scsi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c index 153452e77264..ba3e515f2b9d 100644 --- a/drivers/scsi/libata-scsi.c +++ b/drivers/scsi/libata-scsi.c | |||
@@ -3011,6 +3011,7 @@ static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel, | |||
3011 | if (dev) { | 3011 | if (dev) { |
3012 | ap->eh_info.probe_mask |= 1 << dev->devno; | 3012 | ap->eh_info.probe_mask |= 1 << dev->devno; |
3013 | ap->eh_info.action |= ATA_EH_SOFTRESET; | 3013 | ap->eh_info.action |= ATA_EH_SOFTRESET; |
3014 | ap->eh_info.flags |= ATA_EHI_RESUME_LINK; | ||
3014 | } else | 3015 | } else |
3015 | rc = -EINVAL; | 3016 | rc = -EINVAL; |
3016 | } | 3017 | } |