diff options
author | Vinayak Holikatti <[email protected]> | 2013-02-26 18:04:46 +0530 |
---|---|---|
committer | James Bottomley <[email protected]> | 2013-05-02 16:16:50 -0700 |
commit | 98b8e179edb768c57b8b18e4d61d4b02d1b82b37 (patch) | |
tree | c0881c97bd6b0350cfef3bb1cff5b3a1e94d9ae8 | |
parent | 03b1781aa978aab345b5a85d8596f8615281ba89 (diff) |
[SCSI] ufs: Correct the expected data transfersize
This patch corrects the expected data transfer size of the
command UPIU. The current implementation of cmd->transfersize
is wrong as it probably equal to sector size. With this
implementation the transfer size is updated correctly
Reported-by: KOBAYASHI Yoshitake <[email protected]>
Reviewed-by: Arnd Bergmann <[email protected]>
Reviewed-by: Namjae Jeon <[email protected]>
Reviewed-by: Subhash Jadavani <[email protected]>
Tested-by: Maya Erez <[email protected]>
Signed-off-by: Santosh Yaraganavi <[email protected]>
Signed-off-by: Vinayak Holikatti <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
-rw-r--r-- | drivers/scsi/ufs/ufshcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c index 60fd40c4e4c2..c32a478df81b 100644 --- a/drivers/scsi/ufs/ufshcd.c +++ b/drivers/scsi/ufs/ufshcd.c @@ -478,7 +478,7 @@ static void ufshcd_compose_upiu(struct ufshcd_lrb *lrbp) ucd_cmd_ptr->header.dword_2 = 0; ucd_cmd_ptr->exp_data_transfer_len = - cpu_to_be32(lrbp->cmd->transfersize); + cpu_to_be32(lrbp->cmd->sdb.length); memcpy(ucd_cmd_ptr->cdb, lrbp->cmd->cmnd, |