mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-16 04:04:06 +00:00
scsi: libsas: Grab the ATA port lock in sas_ata_device_link_abort()
Grab the ATA port lock in sas_ata_device_link_abort() before calling
ata_link_abort() as outlined in this function's locking requirements.
Fixes: 4411292267
("scsi: libsas: Add sas_ata_device_link_abort()")
Signed-off-by: Xingui Yang <yangxingui@huawei.com>
Reviewed-by: John Garry <john.g.garry@oracle.com>
Reviewed-by: Jason Yan <yanaijie@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
ea44242bbf
commit
a67aad57d9
1 changed files with 3 additions and 0 deletions
|
@ -889,7 +889,9 @@ void sas_ata_device_link_abort(struct domain_device *device, bool force_reset)
|
|||
{
|
||||
struct ata_port *ap = device->sata_dev.ap;
|
||||
struct ata_link *link = &ap->link;
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(ap->lock, flags);
|
||||
device->sata_dev.fis[2] = ATA_ERR | ATA_DRDY; /* tf status */
|
||||
device->sata_dev.fis[3] = ATA_ABORTED; /* tf error */
|
||||
|
||||
|
@ -897,6 +899,7 @@ void sas_ata_device_link_abort(struct domain_device *device, bool force_reset)
|
|||
if (force_reset)
|
||||
link->eh_info.action |= ATA_EH_RESET;
|
||||
ata_link_abort(link);
|
||||
spin_unlock_irqrestore(ap->lock, flags);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(sas_ata_device_link_abort);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue