[SCSI] replace sizeof sense_buffer with SCSI_SENSE_BUFFERSIZE
This replaces sizeof sense_buffer with SCSI_SENSE_BUFFERSIZE in several LLDs. It's a preparation for the future changes to remove sense_buffer array in scsi_cmnd structure. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
committed by
James Bottomley
parent
94aa5e5f62
commit
b80ca4f7ee
@ -2696,7 +2696,7 @@ aic7xxx_done(struct aic7xxx_host *p, struct aic7xxx_scb *scb)
|
||||
{
|
||||
pci_unmap_single(p->pdev,
|
||||
le32_to_cpu(scb->sg_list[0].address),
|
||||
sizeof(cmd->sense_buffer),
|
||||
SCSI_SENSE_BUFFERSIZE,
|
||||
PCI_DMA_FROMDEVICE);
|
||||
}
|
||||
if (scb->flags & SCB_RECOVERY_SCB)
|
||||
@ -4267,13 +4267,13 @@ aic7xxx_handle_seqint(struct aic7xxx_host *p, unsigned char intstat)
|
||||
sizeof(generic_sense));
|
||||
|
||||
scb->sense_cmd[1] = (cmd->device->lun << 5);
|
||||
scb->sense_cmd[4] = sizeof(cmd->sense_buffer);
|
||||
scb->sense_cmd[4] = SCSI_SENSE_BUFFERSIZE;
|
||||
|
||||
scb->sg_list[0].length =
|
||||
cpu_to_le32(sizeof(cmd->sense_buffer));
|
||||
cpu_to_le32(SCSI_SENSE_BUFFERSIZE);
|
||||
scb->sg_list[0].address =
|
||||
cpu_to_le32(pci_map_single(p->pdev, cmd->sense_buffer,
|
||||
sizeof(cmd->sense_buffer),
|
||||
SCSI_SENSE_BUFFERSIZE,
|
||||
PCI_DMA_FROMDEVICE));
|
||||
|
||||
/*
|
||||
@ -4296,7 +4296,7 @@ aic7xxx_handle_seqint(struct aic7xxx_host *p, unsigned char intstat)
|
||||
hscb->residual_data_count[2] = 0;
|
||||
|
||||
scb->sg_count = hscb->SG_segment_count = 1;
|
||||
scb->sg_length = sizeof(cmd->sense_buffer);
|
||||
scb->sg_length = SCSI_SENSE_BUFFERSIZE;
|
||||
scb->tag_action = 0;
|
||||
scb->flags |= SCB_SENSE;
|
||||
/*
|
||||
|
Reference in New Issue
Block a user