From: Damien Le Moal <damien.lemoal@opensource.wdc.com>
To: John Garry <john.g.garry@oracle.com>,
Xingui Yang <yangxingui@huawei.com>,
jejb@linux.ibm.com, martin.petersen@oracle.com,
niklas.cassel@wdc.com
Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org,
linuxarm@huawei.com, prime.zeng@hisilicon.com,
kangfenglong@huawei.com
Subject: Re: [PATCH] scsi: libsas: Grab the host lock in sas_ata_device_link_abort()
Date: Wed, 21 Dec 2022 09:36:03 +0900 [thread overview]
Message-ID: <c8387766-2ca0-51f3-e332-71492b13e5c1@opensource.wdc.com> (raw)
In-Reply-To: <4ec9dbed-1758-d6b4-dc1d-ac42e8c22731@oracle.com>
On 2022/12/20 23:59, John Garry wrote:
> On 20/12/2022 12:53, Xingui Yang wrote:
>> Grab the host lock in sas_ata_device_link_abort() before calling
>
> This is should be the ata port lock, right? I know that the ata comments
> say differently.
>
>> ata_link_abort(), as the comment in ata_link_abort() mentions.
>>
>
> Can you please add a fixes tag?
>
>> Signed-off-by: Xingui Yang <yangxingui@huawei.com>
>
> Reviewed-by: John Garry <john.g.garry@oracle.com>
>
>> ---
>> drivers/scsi/libsas/sas_ata.c | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/scsi/libsas/sas_ata.c b/drivers/scsi/libsas/sas_ata.c
>> index f7439bf9cdc6..4f2017b21e6d 100644
>> --- a/drivers/scsi/libsas/sas_ata.c
>> +++ b/drivers/scsi/libsas/sas_ata.c
>> @@ -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);
Really need to add lockdep annotations in libata to avoid/catch such bugs...
Will work on that.
>> + spin_unlock_irqrestore(ap->lock, flags);
>> }
>> EXPORT_SYMBOL_GPL(sas_ata_device_link_abort);
>>
>
--
Damien Le Moal
Western Digital Research
next prev parent reply other threads:[~2022-12-21 0:36 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-20 12:53 [PATCH] scsi: libsas: Grab the host lock in sas_ata_device_link_abort() Xingui Yang
2022-12-20 14:59 ` John Garry
2022-12-21 0:36 ` Damien Le Moal [this message]
2022-12-21 2:42 ` Jason Yan
2022-12-21 3:59 ` Damien Le Moal
2022-12-21 6:35 ` Jason Yan
2022-12-21 8:31 ` Damien Le Moal
2022-12-21 9:44 ` Niklas Cassel
2022-12-21 12:24 ` Damien Le Moal
2022-12-21 1:47 ` yangxingui
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c8387766-2ca0-51f3-e332-71492b13e5c1@opensource.wdc.com \
--to=damien.lemoal@opensource.wdc.com \
--cc=jejb@linux.ibm.com \
--cc=john.g.garry@oracle.com \
--cc=kangfenglong@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=martin.petersen@oracle.com \
--cc=niklas.cassel@wdc.com \
--cc=prime.zeng@hisilicon.com \
--cc=yangxingui@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox