diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2008-02-01 16:31:10 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2008-02-02 07:48:16 -0500 |
commit | 5fcf500058d5f06720302c5ce138c7bca93f7655 (patch) | |
tree | f2b6a642ade1c241ba32cb30cdedc7e89abaebce /drivers/ieee1394/sbp2.c | |
parent | 384170da9384b7bb3650c0c9b9d17ba0f7bde4ff (diff) |
ieee1394: sbp2: fix bogus s/g access change
sg_dma_len(sg) is invalid before the s/g list is DMA-mapped.
This fixes a post 2.6.24 regression which prevents access to SBP-2
devices on several architectures, introduced by "ieee1394: sbp2: s/g
list access cosmetics", commit 825f1df545ab0289185373b0eaf06fb0b3487422.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/sbp2.c')
-rw-r--r-- | drivers/ieee1394/sbp2.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/ieee1394/sbp2.c b/drivers/ieee1394/sbp2.c index 2b889d91e673..28e155a9e2a5 100644 --- a/drivers/ieee1394/sbp2.c +++ b/drivers/ieee1394/sbp2.c | |||
@@ -1465,10 +1465,9 @@ static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb, | |||
1465 | orb->misc |= ORB_SET_DIRECTION(orb_direction); | 1465 | orb->misc |= ORB_SET_DIRECTION(orb_direction); |
1466 | 1466 | ||
1467 | /* special case if only one element (and less than 64KB in size) */ | 1467 | /* special case if only one element (and less than 64KB in size) */ |
1468 | if ((scsi_use_sg == 1) && | 1468 | if (scsi_use_sg == 1 && sg->length <= SBP2_MAX_SG_ELEMENT_LENGTH) { |
1469 | (sg_dma_len(sg) <= SBP2_MAX_SG_ELEMENT_LENGTH)) { | ||
1470 | 1469 | ||
1471 | cmd->dma_size = sg_dma_len(sg); | 1470 | cmd->dma_size = sg->length; |
1472 | cmd->dma_type = CMD_DMA_PAGE; | 1471 | cmd->dma_type = CMD_DMA_PAGE; |
1473 | cmd->cmd_dma = dma_map_page(hi->host->device.parent, | 1472 | cmd->cmd_dma = dma_map_page(hi->host->device.parent, |
1474 | sg_page(sg), sg->offset, | 1473 | sg_page(sg), sg->offset, |