There were two copy and paste type of errors where I swapped 'complete'
with 'submit' names. Use the correct variables and definitions.
This problem was found by Dmitry Bogdanov and this patch builds on top of
his patch to fix a second instance that was found.
Fixes: 06933066d88a ("scsi: target: Add support for completing commands from backend context")
Signed-off-by: Dmitry Bogdanov <d.bogdanov@yadro.com>
[mnc: Fixed second instance]
Signed-off-by: Mike Christie <michael.christie@oracle.com>
Link: https://patch.msgid.link/20260307220630.131008-1-michael.christie@oracle.com
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
DA_UNMAP_ZEROES_DATA_DEFAULT;
dev->dev_attrib.max_write_same_len = DA_MAX_WRITE_SAME_LEN;
dev->dev_attrib.submit_type = TARGET_FABRIC_DEFAULT_SUBMIT;
- dev->dev_attrib.submit_type = TARGET_FABRIC_DEFAULT_COMPL;
+ dev->dev_attrib.complete_type = TARGET_FABRIC_DEFAULT_COMPL;
/* Skip allocating lun_stats since we can't export them. */
xcopy_lun = &dev->xcopy_lun;
da = &cmd->se_dev->dev_attrib;
if (da->complete_type == TARGET_FABRIC_DEFAULT_COMPL)
compl_type = wwn->wwn_tf->tf_ops->default_compl_type;
- else if (da->complete_type == TARGET_DIRECT_SUBMIT &&
+ else if (da->complete_type == TARGET_DIRECT_COMPL &&
wwn->wwn_tf->tf_ops->direct_compl_supp)
compl_type = TARGET_DIRECT_COMPL;
else