Commit fea97f9a authored by FUJITA Tomonori's avatar FUJITA Tomonori Committed by James Bottomley

[SCSI] u14-34f: 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: default avatarFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent d1786713
...@@ -1111,7 +1111,7 @@ static int u14_34f_detect(struct scsi_host_template *tpnt) { ...@@ -1111,7 +1111,7 @@ static int u14_34f_detect(struct scsi_host_template *tpnt) {
static void map_dma(unsigned int i, unsigned int j) { static void map_dma(unsigned int i, unsigned int j) {
unsigned int data_len = 0; unsigned int data_len = 0;
unsigned int k, count, pci_dir; unsigned int k, count, pci_dir;
struct scatterlist *sgpnt; struct scatterlist *sg;
struct mscp *cpp; struct mscp *cpp;
struct scsi_cmnd *SCpnt; struct scsi_cmnd *SCpnt;
...@@ -1124,33 +1124,28 @@ static void map_dma(unsigned int i, unsigned int j) { ...@@ -1124,33 +1124,28 @@ static void map_dma(unsigned int i, unsigned int j) {
cpp->sense_len = sizeof SCpnt->sense_buffer; cpp->sense_len = sizeof SCpnt->sense_buffer;
if (!SCpnt->use_sg) { if (scsi_bufflen(SCpnt)) {
count = scsi_dma_map(SCpnt);
/* If we get here with PCI_DMA_NONE, pci_map_single triggers a BUG() */ BUG_ON(count < 0);
if (!SCpnt->request_bufflen) pci_dir = PCI_DMA_BIDIRECTIONAL;
scsi_for_each_sg(SCpnt, sg, count, k) {
if (SCpnt->request_buffer) cpp->sglist[k].address = H2DEV(sg_dma_address(sg));
cpp->data_address = H2DEV(pci_map_single(HD(j)->pdev, cpp->sglist[k].num_bytes = H2DEV(sg_dma_len(sg));
SCpnt->request_buffer, SCpnt->request_bufflen, pci_dir)); data_len += sg->length;
}
cpp->data_len = H2DEV(SCpnt->request_bufflen);
return; cpp->sg = TRUE;
} cpp->use_sg = scsi_sg_count(SCpnt);
cpp->data_address =
sgpnt = (struct scatterlist *) SCpnt->request_buffer; H2DEV(pci_map_single(HD(j)->pdev, cpp->sglist,
count = pci_map_sg(HD(j)->pdev, sgpnt, SCpnt->use_sg, pci_dir); cpp->use_sg * sizeof(struct sg_list),
pci_dir));
for (k = 0; k < count; k++) { cpp->data_len = H2DEV(data_len);
cpp->sglist[k].address = H2DEV(sg_dma_address(&sgpnt[k]));
cpp->sglist[k].num_bytes = H2DEV(sg_dma_len(&sgpnt[k])); } else {
data_len += sgpnt[k].length; pci_dir = PCI_DMA_BIDIRECTIONAL;
} cpp->data_len = H2DEV(scsi_bufflen(SCpnt));
}
cpp->sg = TRUE;
cpp->use_sg = SCpnt->use_sg;
cpp->data_address = H2DEV(pci_map_single(HD(j)->pdev, cpp->sglist,
SCpnt->use_sg * sizeof(struct sg_list), pci_dir));
cpp->data_len = H2DEV(data_len);
} }
static void unmap_dma(unsigned int i, unsigned int j) { static void unmap_dma(unsigned int i, unsigned int j) {
...@@ -1165,8 +1160,7 @@ static void unmap_dma(unsigned int i, unsigned int j) { ...@@ -1165,8 +1160,7 @@ static void unmap_dma(unsigned int i, unsigned int j) {
pci_unmap_single(HD(j)->pdev, DEV2H(cpp->sense_addr), pci_unmap_single(HD(j)->pdev, DEV2H(cpp->sense_addr),
DEV2H(cpp->sense_len), PCI_DMA_FROMDEVICE); DEV2H(cpp->sense_len), PCI_DMA_FROMDEVICE);
if (SCpnt->use_sg) scsi_dma_unmap(SCpnt);
pci_unmap_sg(HD(j)->pdev, SCpnt->request_buffer, SCpnt->use_sg, pci_dir);
if (!DEV2H(cpp->data_len)) pci_dir = PCI_DMA_BIDIRECTIONAL; if (!DEV2H(cpp->data_len)) pci_dir = PCI_DMA_BIDIRECTIONAL;
...@@ -1187,9 +1181,9 @@ static void sync_dma(unsigned int i, unsigned int j) { ...@@ -1187,9 +1181,9 @@ static void sync_dma(unsigned int i, unsigned int j) {
pci_dma_sync_single_for_cpu(HD(j)->pdev, DEV2H(cpp->sense_addr), pci_dma_sync_single_for_cpu(HD(j)->pdev, DEV2H(cpp->sense_addr),
DEV2H(cpp->sense_len), PCI_DMA_FROMDEVICE); DEV2H(cpp->sense_len), PCI_DMA_FROMDEVICE);
if (SCpnt->use_sg) if (scsi_sg_count(SCpnt))
pci_dma_sync_sg_for_cpu(HD(j)->pdev, SCpnt->request_buffer, pci_dma_sync_sg_for_cpu(HD(j)->pdev, scsi_sglist(SCpnt),
SCpnt->use_sg, pci_dir); scsi_sg_count(SCpnt), pci_dir);
if (!DEV2H(cpp->data_len)) pci_dir = PCI_DMA_BIDIRECTIONAL; if (!DEV2H(cpp->data_len)) pci_dir = PCI_DMA_BIDIRECTIONAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment