diff options
Diffstat (limited to 'drivers/scsi/libata-scsi.c')
| -rw-r--r-- | drivers/scsi/libata-scsi.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c index da9689b70826..3dc6188af0e8 100644 --- a/drivers/scsi/libata-scsi.c +++ b/drivers/scsi/libata-scsi.c | |||
| @@ -2762,3 +2762,27 @@ void ata_scsi_scan_host(struct ata_port *ap) | |||
| 2762 | } | 2762 | } |
| 2763 | } | 2763 | } |
| 2764 | } | 2764 | } |
| 2765 | |||
| 2766 | /** | ||
| 2767 | * ata_scsi_offline_dev - offline attached SCSI device | ||
| 2768 | * @dev: ATA device to offline attached SCSI device for | ||
| 2769 | * | ||
| 2770 | * This function is called from ata_eh_hotplug() and responsible | ||
| 2771 | * for taking the SCSI device attached to @dev offline. This | ||
| 2772 | * function is called with host_set lock which protects dev->sdev | ||
| 2773 | * against clearing. | ||
| 2774 | * | ||
| 2775 | * LOCKING: | ||
| 2776 | * spin_lock_irqsave(host_set lock) | ||
| 2777 | * | ||
| 2778 | * RETURNS: | ||
| 2779 | * 1 if attached SCSI device exists, 0 otherwise. | ||
| 2780 | */ | ||
| 2781 | int ata_scsi_offline_dev(struct ata_device *dev) | ||
| 2782 | { | ||
| 2783 | if (dev->sdev) { | ||
| 2784 | scsi_device_set_state(dev->sdev, SDEV_OFFLINE); | ||
| 2785 | return 1; | ||
| 2786 | } | ||
| 2787 | return 0; | ||
| 2788 | } | ||
