|
@@ -1217,7 +1217,7 @@ static void fc_lport_enter_scr(struct fc_lport *lport)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!lport->tt.elsct_send(lport, NULL, fp, ELS_SCR,
|
|
|
+ if (!lport->tt.elsct_send(lport, FC_FID_FCTRL, fp, ELS_SCR,
|
|
|
fc_lport_scr_resp, lport, lport->e_d_tov))
|
|
|
fc_lport_error(lport, fp);
|
|
|
}
|
|
@@ -1258,7 +1258,7 @@ static void fc_lport_enter_rft_id(struct fc_lport *lport)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!lport->tt.elsct_send(lport, NULL, fp, FC_NS_RFT_ID,
|
|
|
+ if (!lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, FC_NS_RFT_ID,
|
|
|
fc_lport_rft_id_resp,
|
|
|
lport, lport->e_d_tov))
|
|
|
fc_lport_error(lport, fp);
|
|
@@ -1287,7 +1287,7 @@ static void fc_lport_enter_rpn_id(struct fc_lport *lport)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!lport->tt.elsct_send(lport, NULL, fp, FC_NS_RPN_ID,
|
|
|
+ if (!lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, FC_NS_RPN_ID,
|
|
|
fc_lport_rpn_id_resp,
|
|
|
lport, lport->e_d_tov))
|
|
|
fc_lport_error(lport, fp);
|
|
@@ -1443,8 +1443,8 @@ static void fc_lport_enter_logo(struct fc_lport *lport)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!lport->tt.elsct_send(lport, NULL, fp, ELS_LOGO, fc_lport_logo_resp,
|
|
|
- lport, lport->e_d_tov))
|
|
|
+ if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp, ELS_LOGO,
|
|
|
+ fc_lport_logo_resp, lport, lport->e_d_tov))
|
|
|
fc_lport_error(lport, fp);
|
|
|
}
|
|
|
|
|
@@ -1567,7 +1567,7 @@ void fc_lport_enter_flogi(struct fc_lport *lport)
|
|
|
if (!fp)
|
|
|
return fc_lport_error(lport, fp);
|
|
|
|
|
|
- if (!lport->tt.elsct_send(lport, NULL, fp, ELS_FLOGI,
|
|
|
+ if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp, ELS_FLOGI,
|
|
|
fc_lport_flogi_resp, lport, lport->e_d_tov))
|
|
|
fc_lport_error(lport, fp);
|
|
|
}
|