Regression due to commit f9d03f96b988002027d4b28ea1b7a24729a4c9b5 block: improve handling of the magic discard payload <megaraid_sas> and <mpt3sas> HBA FW encounter FW fault in DMA operation while creating File system on SSDs. Below CDB cause FW fault. CDB: Write same(16) 93 08 00 00 00 00 00 00 00 00 00 00 80 00 00 00 Root cause is SCSI buffer length and DMA buffer length miss match for WRITE SAME command. Fix - return valid data buffer length in scsi_bufflen() API using RQF_SPECIAL_PAYLOAD Signed-off-by: Kashyap Desai <kashyap.desai@xxxxxxxxxxxx> --- diff --git a/include/scsi/scsi_cmnd.h b/include/scsi/scsi_cmnd.h index 9fc1aec..1f796fc 100644 --- a/include/scsi/scsi_cmnd.h +++ b/include/scsi/scsi_cmnd.h @@ -180,7 +180,8 @@ static inline struct scatterlist *scsi_sglist(struct scsi_cmnd *cmd) static inline unsigned scsi_bufflen(struct scsi_cmnd *cmd) { - return cmd->sdb.length; + return (cmd->request->rq_flags & RQF_SPECIAL_PAYLOAD) ? + cmd->request->special_vec.bv_len : cmd->sdb.length; } static inline void scsi_set_resid(struct scsi_cmnd *cmd, int resid)