[SCSI] hptiop: fix sense_buffer access bug
&cmnd->sense_buffer now zeroes the wrong thing. 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:
parent
de15c2017c
commit
c372f4a82f
|
@ -573,7 +573,7 @@ static void hptiop_finish_scsi_req(struct hptiop_hba *hba, u32 tag,
|
||||||
scsi_set_resid(scp,
|
scsi_set_resid(scp,
|
||||||
scsi_bufflen(scp) - le32_to_cpu(req->dataxfer_length));
|
scsi_bufflen(scp) - le32_to_cpu(req->dataxfer_length));
|
||||||
scp->result = SAM_STAT_CHECK_CONDITION;
|
scp->result = SAM_STAT_CHECK_CONDITION;
|
||||||
memcpy(&scp->sense_buffer, &req->sg_list,
|
memcpy(scp->sense_buffer, &req->sg_list,
|
||||||
min_t(size_t, SCSI_SENSE_BUFFERSIZE,
|
min_t(size_t, SCSI_SENSE_BUFFERSIZE,
|
||||||
le32_to_cpu(req->dataxfer_length)));
|
le32_to_cpu(req->dataxfer_length)));
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue