[SCSI] libfc: LOGO response code had extraeous enter_rtv
fc_rport_logo_resp() had a call to fc_rport_enter_rtv() if the LOGO was accepted. This must've been a copy/paste mistake, but it didn't matter since we don't stay in the LOGO state long enough to hit this code. Change fc_rport_logo_resp() to just enter the delete state no matter what. Signed-off-by: Joe Eykholt <jeykholt@cisco.com> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
feab4ae730
commit
68a1750b46
1 changed files with 4 additions and 6 deletions
|
@ -725,12 +725,10 @@ static void fc_rport_logo_resp(struct fc_seq *sp, struct fc_frame *fp,
|
||||||
}
|
}
|
||||||
|
|
||||||
op = fc_frame_payload_op(fp);
|
op = fc_frame_payload_op(fp);
|
||||||
if (op == ELS_LS_ACC) {
|
if (op != ELS_LS_ACC)
|
||||||
fc_rport_enter_rtv(rdata);
|
FC_RPORT_DBG(rdata, "Bad ELS response op %x for LOGO command\n",
|
||||||
} else {
|
op);
|
||||||
FC_RPORT_DBG(rdata, "Bad ELS response for LOGO command\n");
|
fc_rport_enter_delete(rdata, RPORT_EV_LOGO);
|
||||||
fc_rport_enter_delete(rdata, RPORT_EV_LOGO);
|
|
||||||
}
|
|
||||||
|
|
||||||
out:
|
out:
|
||||||
fc_frame_free(fp);
|
fc_frame_free(fp);
|
||||||
|
|
Loading…
Reference in a new issue