Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1602368 > unrolled thread
| Started by | John Garry <john.garry@huawei.com> |
|---|---|
| First post | 2017-03-16 15:40 +0100 |
| Last post | 2017-03-20 15:30 +0100 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] scsi: libsas: fix ata xfer length John Garry <john.garry@huawei.com> - 2017-03-16 15:40 +0100
Re: [PATCH] scsi: libsas: fix ata xfer length "Martin K. Petersen" <martin.petersen@oracle.com> - 2017-03-19 18:30 +0100
Re: [PATCH] scsi: libsas: fix ata xfer length John Garry <john.garry@huawei.com> - 2017-03-20 10:10 +0100
Re: [PATCH] scsi: libsas: fix ata xfer length "Martin K. Petersen" <martin.petersen@oracle.com> - 2017-03-20 15:30 +0100
| From | John Garry <john.garry@huawei.com> |
|---|---|
| Date | 2017-03-16 15:40 +0100 |
| Subject | [PATCH] scsi: libsas: fix ata xfer length |
| Message-ID | <tlEJm-84L-95@gated-at.bofh.it> |
The total ata xfer length may not be calculated properly,
in that we do not use the proper method to get an sg element
dma length.
According to the code comment, sg_dma_len() should be used
after dma_map_sg() is called.
This issue was found by turning on the SMMUv3 in front of
the hisi_sas controller in hip07. Multiple sg elements
were being combined into a single element, but the original
first element length was being use as the total xfer length.
Signed-off-by: John Garry <john.garry@huawei.com>
diff --git a/drivers/scsi/libsas/sas_ata.c b/drivers/scsi/libsas/sas_ata.c
index 763f012..87f5e694 100644
--- a/drivers/scsi/libsas/sas_ata.c
+++ b/drivers/scsi/libsas/sas_ata.c
@@ -221,7 +221,7 @@ static unsigned int sas_ata_qc_issue(struct ata_queued_cmd *qc)
task->num_scatter = qc->n_elem;
} else {
for_each_sg(qc->sg, sg, qc->n_elem, si)
- xfer += sg->length;
+ xfer += sg_dma_len(sg);
task->total_xfer_len = xfer;
task->num_scatter = si;
--
1.9.1
[toc] | [next] | [standalone]
| From | "Martin K. Petersen" <martin.petersen@oracle.com> |
|---|---|
| Date | 2017-03-19 18:30 +0100 |
| Message-ID | <tmMOt-wC-1@gated-at.bofh.it> |
| In reply to | #1602368 |
John Garry <john.garry@huawei.com> writes: John, > The total ata xfer length may not be calculated properly, > in that we do not use the proper method to get an sg element > dma length. > > According to the code comment, sg_dma_len() should be used > after dma_map_sg() is called. > > This issue was found by turning on the SMMUv3 in front of > the hisi_sas controller in hip07. Multiple sg elements > were being combined into a single element, but the original > first element length was being use as the total xfer length. Applied to 4.11/scsi-fixes. -- Martin K. Petersen Oracle Linux Engineering
[toc] | [prev] | [next] | [standalone]
| From | John Garry <john.garry@huawei.com> |
|---|---|
| Date | 2017-03-20 10:10 +0100 |
| Message-ID | <tn1ua-2xg-29@gated-at.bofh.it> |
| In reply to | #1604055 |
On 19/03/2017 17:21, Martin K. Petersen wrote:
> John Garry <john.garry@huawei.com> writes:
>
> John,
>
>> The total ata xfer length may not be calculated properly,
>> in that we do not use the proper method to get an sg element
>> dma length.
>>
>> According to the code comment, sg_dma_len() should be used
>> after dma_map_sg() is called.
>>
>> This issue was found by turning on the SMMUv3 in front of
>> the hisi_sas controller in hip07. Multiple sg elements
>> were being combined into a single element, but the original
>> first element length was being use as the total xfer length.
>
I should have added this originally to the changelog:
Fixes: ff2aeb1eb64c8a4770a6 ("libata: convert to chained sg")
BTW, I am surprised this issue has not been seen in almost 10 years, but
we cannot attach a SATA disk when SMMU enabled without it.
Cheers,
John
> Applied to 4.11/scsi-fixes.
>
[toc] | [prev] | [next] | [standalone]
| From | "Martin K. Petersen" <martin.petersen@oracle.com> |
|---|---|
| Date | 2017-03-20 15:30 +0100 |
| Message-ID | <tn6tQ-5Wi-31@gated-at.bofh.it> |
| In reply to | #1604263 |
John Garry <john.garry@huawei.com> writes:
> I should have added this originally to the changelog:
> Fixes: ff2aeb1eb64c8a4770a6 ("libata: convert to chained sg")
Added.
--
Martin K. Petersen Oracle Linux Engineering
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web