From: Niklas Cassel Date: Fri, 7 Oct 2022 13:23:39 +0000 (+0200) Subject: scsi: libsas: make use of ata_port_is_frozen() helper X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7834589e81bcf5fe4e7ab60430670c9245183de0;p=linux.git scsi: libsas: make use of ata_port_is_frozen() helper Clean up the code by making use of the newly introduced ata_port_is_frozen() helper function. Signed-off-by: Niklas Cassel Reviewed-by: John Garry Acked-by: Martin K. Petersen Signed-off-by: Damien Le Moal --- diff --git a/drivers/scsi/libsas/sas_ata.c b/drivers/scsi/libsas/sas_ata.c index d35c9296f7388..5692577f82e33 100644 --- a/drivers/scsi/libsas/sas_ata.c +++ b/drivers/scsi/libsas/sas_ata.c @@ -101,7 +101,7 @@ static void sas_ata_task_done(struct sas_task *task) spin_lock_irqsave(ap->lock, flags); /* check if we lost the race with libata/sas_ata_post_internal() */ - if (unlikely(ap->pflags & ATA_PFLAG_FROZEN)) { + if (unlikely(ata_port_is_frozen(ap))) { spin_unlock_irqrestore(ap->lock, flags); if (qc->scsicmd) goto qc_already_gone;