diff options
Diffstat (limited to 'drivers/scsi/libata-eh.c')
-rw-r--r-- | drivers/scsi/libata-eh.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/drivers/scsi/libata-eh.c b/drivers/scsi/libata-eh.c index 8ecb8424d7ba..a049bffdf770 100644 --- a/drivers/scsi/libata-eh.c +++ b/drivers/scsi/libata-eh.c | |||
@@ -667,6 +667,34 @@ void ata_eh_qc_retry(struct ata_queued_cmd *qc) | |||
667 | } | 667 | } |
668 | 668 | ||
669 | /** | 669 | /** |
670 | * ata_eh_detach_dev - detach ATA device | ||
671 | * @dev: ATA device to detach | ||
672 | * | ||
673 | * Detach @dev. | ||
674 | * | ||
675 | * LOCKING: | ||
676 | * None. | ||
677 | */ | ||
678 | static void ata_eh_detach_dev(struct ata_device *dev) | ||
679 | { | ||
680 | struct ata_port *ap = dev->ap; | ||
681 | unsigned long flags; | ||
682 | |||
683 | ata_dev_disable(dev); | ||
684 | |||
685 | spin_lock_irqsave(&ap->host_set->lock, flags); | ||
686 | |||
687 | dev->flags &= ~ATA_DFLAG_DETACH; | ||
688 | |||
689 | if (ata_scsi_offline_dev(dev)) { | ||
690 | dev->flags |= ATA_DFLAG_DETACHED; | ||
691 | ap->flags |= ATA_FLAG_SCSI_HOTPLUG; | ||
692 | } | ||
693 | |||
694 | spin_unlock_irqrestore(&ap->host_set->lock, flags); | ||
695 | } | ||
696 | |||
697 | /** | ||
670 | * ata_eh_about_to_do - about to perform eh_action | 698 | * ata_eh_about_to_do - about to perform eh_action |
671 | * @ap: target ATA port | 699 | * @ap: target ATA port |
672 | * @action: action about to be performed | 700 | * @action: action about to be performed |