diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2007-05-26 01:08:20 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2007-05-29 19:32:12 -0400 |
commit | 5f7186c841a13abff0bf81ee93754b4f46e19141 (patch) | |
tree | 381d9c0564edd1319513e40d3886b53da6057ea8 /drivers/scsi/qla4xxx/ql4_os.c | |
parent | 1928d73fac9a38be901dd5c9eb8b18b56ce9e18d (diff) |
[SCSI] qla4xxx: convert to use the data buffer accessors
- remove the unnecessary map_single path.
- convert to use the new accessors for the sg lists and the
parameters.
Jens Axboe <jens.axboe@oracle.com> did the for_each_sg cleanup.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Acked-by: David C Somayajulu <david.somayajulu@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/qla4xxx/ql4_os.c')
-rw-r--r-- | drivers/scsi/qla4xxx/ql4_os.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c index 0e4688c9e0a2..e09fc4241970 100644 --- a/drivers/scsi/qla4xxx/ql4_os.c +++ b/drivers/scsi/qla4xxx/ql4_os.c | |||
@@ -373,14 +373,7 @@ static void qla4xxx_srb_free_dma(struct scsi_qla_host *ha, struct srb *srb) | |||
373 | struct scsi_cmnd *cmd = srb->cmd; | 373 | struct scsi_cmnd *cmd = srb->cmd; |
374 | 374 | ||
375 | if (srb->flags & SRB_DMA_VALID) { | 375 | if (srb->flags & SRB_DMA_VALID) { |
376 | if (cmd->use_sg) { | 376 | scsi_dma_unmap(cmd); |
377 | pci_unmap_sg(ha->pdev, cmd->request_buffer, | ||
378 | cmd->use_sg, cmd->sc_data_direction); | ||
379 | } else if (cmd->request_bufflen) { | ||
380 | pci_unmap_single(ha->pdev, srb->dma_handle, | ||
381 | cmd->request_bufflen, | ||
382 | cmd->sc_data_direction); | ||
383 | } | ||
384 | srb->flags &= ~SRB_DMA_VALID; | 377 | srb->flags &= ~SRB_DMA_VALID; |
385 | } | 378 | } |
386 | cmd->SCp.ptr = NULL; | 379 | cmd->SCp.ptr = NULL; |