[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
@@ -207,10 +207,9 @@ void sym_set_cam_result_error(struct sym_hcb *np, struct sym_ccb *cp, int resid)
|
||||
/*
|
||||
* Bounce back the sense data to user.
|
||||
*/
|
||||
memset(&cmd->sense_buffer, 0, sizeof(cmd->sense_buffer));
|
||||
memset(&cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
|
||||
memcpy(cmd->sense_buffer, cp->sns_bbuf,
|
||||
min(sizeof(cmd->sense_buffer),
|
||||
(size_t)SYM_SNS_BBUF_LEN));
|
||||
min(SCSI_SENSE_BUFFERSIZE, SYM_SNS_BBUF_LEN));
|
||||
#if 0
|
||||
/*
|
||||
* If the device reports a UNIT ATTENTION condition
|
||||
|
Reference in New Issue
Block a user