mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
[SCSI] fusion - mptctl -sense width fix
Bug fix for correctly setting sense width for the MPTCOMMAND ioctl. Signed-off-by: Eric Moore <Eric.Moore@lsil.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
5b5ef4f617
commit
5f07e2499d
1 changed files with 6 additions and 2 deletions
|
@ -1839,7 +1839,9 @@ mptctl_do_mpt_command (struct mpt_ioctl_command karg, void __user *mfPtr)
|
||||||
goto done_free_mem;
|
goto done_free_mem;
|
||||||
}
|
}
|
||||||
|
|
||||||
pScsiReq->MsgFlags = mpt_msg_flags();
|
pScsiReq->MsgFlags &= ~MPI_SCSIIO_MSGFLGS_SENSE_WIDTH;
|
||||||
|
pScsiReq->MsgFlags |= mpt_msg_flags();
|
||||||
|
|
||||||
|
|
||||||
/* verify that app has not requested
|
/* verify that app has not requested
|
||||||
* more sense data than driver
|
* more sense data than driver
|
||||||
|
@ -1921,7 +1923,9 @@ mptctl_do_mpt_command (struct mpt_ioctl_command karg, void __user *mfPtr)
|
||||||
int scsidir = MPI_SCSIIO_CONTROL_READ;
|
int scsidir = MPI_SCSIIO_CONTROL_READ;
|
||||||
int dataSize;
|
int dataSize;
|
||||||
|
|
||||||
pScsiReq->MsgFlags = mpt_msg_flags();
|
pScsiReq->MsgFlags &= ~MPI_SCSIIO_MSGFLGS_SENSE_WIDTH;
|
||||||
|
pScsiReq->MsgFlags |= mpt_msg_flags();
|
||||||
|
|
||||||
|
|
||||||
/* verify that app has not requested
|
/* verify that app has not requested
|
||||||
* more sense data than driver
|
* more sense data than driver
|
||||||
|
|
Loading…
Reference in a new issue