The write operation to "link->flags" is protected by
the lock on line 898, but the read operation to
this data on line 892 is not protected by the lock.
Thus, there may exist a data race for "link->flags".
To fix this data race, the read operation to "link->flags"
should be also protected by the lock.
Signed-off-by: Jia-Ju Bai <[email protected]>
---
drivers/ata/libata-pmp.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/ata/libata-pmp.c b/drivers/ata/libata-pmp.c
index 85aa76116a30..42f61106ac70 100644
--- a/drivers/ata/libata-pmp.c
+++ b/drivers/ata/libata-pmp.c
@@ -889,15 +889,14 @@ static int sata_pmp_handle_link_fail(struct ata_link *link, int *link_tries)
return 1;
/* disable this link */
+ spin_lock_irqsave(ap->lock, flags);
if (!(link->flags & ATA_LFLAG_DISABLED)) {
ata_link_warn(link,
"failed to recover link after %d tries, disabling\n",
ATA_EH_PMP_LINK_TRIES);
-
- spin_lock_irqsave(ap->lock, flags);
link->flags |= ATA_LFLAG_DISABLED;
- spin_unlock_irqrestore(ap->lock, flags);
}
+ spin_unlock_irqrestore(ap->lock, flags);
ata_dev_disable(link->device);
link->eh_context.i.action = 0;
--
2.17.0
On Tue, May 08, 2018 at 04:21:40PM +0800, Jia-Ju Bai wrote:
> The write operation to "link->flags" is protected by
> the lock on line 898, but the read operation to
> this data on line 892 is not protected by the lock.
> Thus, there may exist a data race for "link->flags".
>
> To fix this data race, the read operation to "link->flags"
> should be also protected by the lock.
Same as the previous patch.
Thanks.
--
tejun