You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[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
@@ -741,7 +741,7 @@ static int ultrastor_queuecommand(struct scsi_cmnd *SCpnt,
|
||||
}
|
||||
my_mscp->command_link = 0; /*???*/
|
||||
my_mscp->scsi_command_link_id = 0; /*???*/
|
||||
my_mscp->length_of_sense_byte = sizeof SCpnt->sense_buffer;
|
||||
my_mscp->length_of_sense_byte = SCSI_SENSE_BUFFERSIZE;
|
||||
my_mscp->length_of_scsi_cdbs = SCpnt->cmd_len;
|
||||
memcpy(my_mscp->scsi_cdbs, SCpnt->cmnd, my_mscp->length_of_scsi_cdbs);
|
||||
my_mscp->adapter_status = 0;
|
||||
|
||||
Reference in New Issue
Block a user