mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-19 20:12:32 +00:00
scsi: ufs: core: Warn if the request tag is truncated
ufshcd_prepare_utp_scsi_cmd_upiu() only uses the lowest eight bits of lrbp->task_tag. Issue a runtime warning if this results in truncation. Signed-off-by: Bart Van Assche <bvanassche@acm.org> Link: https://lore.kernel.org/r/20231115193359.2262044-1-bvanassche@acm.org Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
10b53db2db
commit
db80df7702
@ -2720,6 +2720,8 @@ void ufshcd_prepare_utp_scsi_cmd_upiu(struct ufshcd_lrb *lrbp, u8 upiu_flags)
|
||||
.command_set_type = UPIU_COMMAND_SET_TYPE_SCSI,
|
||||
};
|
||||
|
||||
WARN_ON_ONCE(ucd_req_ptr->header.task_tag != lrbp->task_tag);
|
||||
|
||||
ucd_req_ptr->sc.exp_data_transfer_len = cpu_to_be32(cmd->sdb.length);
|
||||
|
||||
cdb_len = min_t(unsigned short, cmd->cmd_len, UFS_CDB_SIZE);
|
||||
|
Loading…
x
Reference in New Issue
Block a user