mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 18:23:53 +08:00
[SCSI] be2iscsi: Fix for proper setting of FW
There was a bug in setting up type and dmsg for FW Signed-off-by: Jayamohan Kallickal <jayamohan.kallickal@emulex.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
0b1d3cbf51
commit
1390b01b26
@ -4020,12 +4020,17 @@ static int beiscsi_mtask(struct iscsi_task *task)
|
||||
hwi_write_buffer(pwrb, task);
|
||||
break;
|
||||
case ISCSI_OP_NOOP_OUT:
|
||||
AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
|
||||
INI_RD_CMD);
|
||||
if (task->hdr->ttt == ISCSI_RESERVED_TAG)
|
||||
if (task->hdr->ttt != ISCSI_RESERVED_TAG) {
|
||||
AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
|
||||
TGT_DM_CMD);
|
||||
AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt,
|
||||
pwrb, 0);
|
||||
AMAP_SET_BITS(struct amap_iscsi_wrb, dmsg, pwrb, 0);
|
||||
else
|
||||
} else {
|
||||
AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
|
||||
INI_RD_CMD);
|
||||
AMAP_SET_BITS(struct amap_iscsi_wrb, dmsg, pwrb, 1);
|
||||
}
|
||||
hwi_write_buffer(pwrb, task);
|
||||
break;
|
||||
case ISCSI_OP_TEXT:
|
||||
|
Loading…
Reference in New Issue
Block a user