Lines Matching refs:fp
165 static int fc_frame_drop(struct fc_lport *lport, struct fc_frame *fp) in fc_frame_drop() argument
167 fc_frame_free(fp); in fc_frame_drop()
410 static void fc_lport_recv_rlir_req(struct fc_lport *lport, struct fc_frame *fp) in fc_lport_recv_rlir_req() argument
415 lport->tt.seq_els_rsp_send(fp, ELS_LS_ACC, NULL); in fc_lport_recv_rlir_req()
416 fc_frame_free(fp); in fc_lport_recv_rlir_req()
430 struct fc_frame *fp; in fc_lport_recv_echo_req() local
444 fp = fc_frame_alloc(lport, len); in fc_lport_recv_echo_req()
445 if (fp) { in fc_lport_recv_echo_req()
446 dp = fc_frame_payload_get(fp, len); in fc_lport_recv_echo_req()
449 fc_fill_reply_hdr(fp, in_fp, FC_RCTL_ELS_REP, 0); in fc_lport_recv_echo_req()
450 lport->tt.frame_send(lport, fp); in fc_lport_recv_echo_req()
466 struct fc_frame *fp; in fc_lport_recv_rnid_req() local
493 fp = fc_frame_alloc(lport, len); in fc_lport_recv_rnid_req()
494 if (fp) { in fc_lport_recv_rnid_req()
495 rp = fc_frame_payload_get(fp, len); in fc_lport_recv_rnid_req()
507 fc_fill_reply_hdr(fp, in_fp, FC_RCTL_ELS_REP, 0); in fc_lport_recv_rnid_req()
508 lport->tt.frame_send(lport, fp); in fc_lport_recv_rnid_req()
522 static void fc_lport_recv_logo_req(struct fc_lport *lport, struct fc_frame *fp) in fc_lport_recv_logo_req() argument
524 lport->tt.seq_els_rsp_send(fp, ELS_LS_ACC, NULL); in fc_lport_recv_logo_req()
526 fc_frame_free(fp); in fc_lport_recv_logo_req()
753 struct fc_frame *fp) in fc_lport_set_port_id() argument
765 lport->tt.lport_set_port_id(lport, port_id, fp); in fc_lport_set_port_id()
811 struct fc_frame *fp; in fc_lport_recv_flogi_req() local
851 fp = fc_frame_alloc(lport, sizeof(*flp)); in fc_lport_recv_flogi_req()
852 if (fp) { in fc_lport_recv_flogi_req()
853 new_flp = fc_frame_payload_get(fp, sizeof(*flp)); in fc_lport_recv_flogi_req()
861 fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0); in fc_lport_recv_flogi_req()
862 fh = fc_frame_header_get(fp); in fc_lport_recv_flogi_req()
865 lport->tt.frame_send(lport, fp); in fc_lport_recv_flogi_req()
868 fc_lport_error(lport, fp); in fc_lport_recv_flogi_req()
888 struct fc_frame *fp) in fc_lport_recv_els_req() argument
900 fc_frame_free(fp); in fc_lport_recv_els_req()
906 switch (fc_frame_payload_op(fp)) { in fc_lport_recv_els_req()
912 if (fc_frame_sid(fp) == FC_FID_FLOGI) in fc_lport_recv_els_req()
929 recv(lport, fp); in fc_lport_recv_els_req()
955 struct fc_frame *fp) in fc_lport_recv_req() argument
957 struct fc_frame_header *fh = fc_frame_header_get(fp); in fc_lport_recv_req()
958 struct fc_seq *sp = fr_seq(fp); in fc_lport_recv_req()
976 prov->recv(lport, fp); in fc_lport_recv_req()
982 fc_frame_free(fp); in fc_lport_recv_req()
1087 static void fc_lport_error(struct fc_lport *lport, struct fc_frame *fp) in fc_lport_error() argument
1091 PTR_ERR(fp), fc_lport_state(lport), in fc_lport_error()
1094 if (PTR_ERR(fp) == -FC_EX_CLOSED) in fc_lport_error()
1104 if (!fp) in fc_lport_error()
1125 static void fc_lport_ns_resp(struct fc_seq *sp, struct fc_frame *fp, in fc_lport_ns_resp() argument
1132 FC_LPORT_DBG(lport, "Received a ns %s\n", fc_els_resp_type(fp)); in fc_lport_ns_resp()
1134 if (fp == ERR_PTR(-FC_EX_CLOSED)) in fc_lport_ns_resp()
1142 if (IS_ERR(fp)) in fc_lport_ns_resp()
1147 if (IS_ERR(fp)) { in fc_lport_ns_resp()
1148 fc_lport_error(lport, fp); in fc_lport_ns_resp()
1152 fh = fc_frame_header_get(fp); in fc_lport_ns_resp()
1153 ct = fc_frame_payload_get(fp, sizeof(*ct)); in fc_lport_ns_resp()
1183 fc_lport_error(lport, fp); in fc_lport_ns_resp()
1185 fc_frame_free(fp); in fc_lport_ns_resp()
1201 static void fc_lport_ms_resp(struct fc_seq *sp, struct fc_frame *fp, in fc_lport_ms_resp() argument
1208 FC_LPORT_DBG(lport, "Received a ms %s\n", fc_els_resp_type(fp)); in fc_lport_ms_resp()
1210 if (fp == ERR_PTR(-FC_EX_CLOSED)) in fc_lport_ms_resp()
1218 if (IS_ERR(fp)) in fc_lport_ms_resp()
1223 if (IS_ERR(fp)) { in fc_lport_ms_resp()
1224 fc_lport_error(lport, fp); in fc_lport_ms_resp()
1228 fh = fc_frame_header_get(fp); in fc_lport_ms_resp()
1229 ct = fc_frame_payload_get(fp, sizeof(*ct)); in fc_lport_ms_resp()
1261 fc_lport_error(lport, fp); in fc_lport_ms_resp()
1264 fc_frame_free(fp); in fc_lport_ms_resp()
1279 static void fc_lport_scr_resp(struct fc_seq *sp, struct fc_frame *fp, in fc_lport_scr_resp() argument
1285 FC_LPORT_DBG(lport, "Received a SCR %s\n", fc_els_resp_type(fp)); in fc_lport_scr_resp()
1287 if (fp == ERR_PTR(-FC_EX_CLOSED)) in fc_lport_scr_resp()
1295 if (IS_ERR(fp)) in fc_lport_scr_resp()
1300 if (IS_ERR(fp)) { in fc_lport_scr_resp()
1301 fc_lport_error(lport, fp); in fc_lport_scr_resp()
1305 op = fc_frame_payload_op(fp); in fc_lport_scr_resp()
1309 fc_lport_error(lport, fp); in fc_lport_scr_resp()
1312 fc_frame_free(fp); in fc_lport_scr_resp()
1326 struct fc_frame *fp; in fc_lport_enter_scr() local
1333 fp = fc_frame_alloc(lport, sizeof(struct fc_els_scr)); in fc_lport_enter_scr()
1334 if (!fp) { in fc_lport_enter_scr()
1335 fc_lport_error(lport, fp); in fc_lport_enter_scr()
1339 if (!lport->tt.elsct_send(lport, FC_FID_FCTRL, fp, ELS_SCR, in fc_lport_enter_scr()
1354 struct fc_frame *fp; in fc_lport_enter_ns() local
1399 fp = fc_frame_alloc(lport, size); in fc_lport_enter_ns()
1400 if (!fp) { in fc_lport_enter_ns()
1401 fc_lport_error(lport, fp); in fc_lport_enter_ns()
1405 if (!lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, cmd, in fc_lport_enter_ns()
1408 fc_lport_error(lport, fp); in fc_lport_enter_ns()
1454 struct fc_frame *fp; in fc_lport_enter_ms() local
1520 fp = fc_frame_alloc(lport, size); in fc_lport_enter_ms()
1521 if (!fp) { in fc_lport_enter_ms()
1522 fc_lport_error(lport, fp); in fc_lport_enter_ms()
1526 if (!lport->tt.elsct_send(lport, FC_FID_MGMT_SERV, fp, cmd, in fc_lport_enter_ms()
1529 fc_lport_error(lport, fp); in fc_lport_enter_ms()
1625 void fc_lport_logo_resp(struct fc_seq *sp, struct fc_frame *fp, in fc_lport_logo_resp() argument
1631 FC_LPORT_DBG(lport, "Received a LOGO %s\n", fc_els_resp_type(fp)); in fc_lport_logo_resp()
1633 if (fp == ERR_PTR(-FC_EX_CLOSED)) in fc_lport_logo_resp()
1641 if (IS_ERR(fp)) in fc_lport_logo_resp()
1646 if (IS_ERR(fp)) { in fc_lport_logo_resp()
1647 fc_lport_error(lport, fp); in fc_lport_logo_resp()
1651 op = fc_frame_payload_op(fp); in fc_lport_logo_resp()
1655 fc_lport_error(lport, fp); in fc_lport_logo_resp()
1658 fc_frame_free(fp); in fc_lport_logo_resp()
1673 struct fc_frame *fp; in fc_lport_enter_logo() local
1682 fp = fc_frame_alloc(lport, sizeof(*logo)); in fc_lport_enter_logo()
1683 if (!fp) { in fc_lport_enter_logo()
1684 fc_lport_error(lport, fp); in fc_lport_enter_logo()
1688 if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp, ELS_LOGO, in fc_lport_enter_logo()
1704 void fc_lport_flogi_resp(struct fc_seq *sp, struct fc_frame *fp, in fc_lport_flogi_resp() argument
1716 FC_LPORT_DBG(lport, "Received a FLOGI %s\n", fc_els_resp_type(fp)); in fc_lport_flogi_resp()
1718 if (fp == ERR_PTR(-FC_EX_CLOSED)) in fc_lport_flogi_resp()
1726 if (IS_ERR(fp)) in fc_lport_flogi_resp()
1731 if (IS_ERR(fp)) { in fc_lport_flogi_resp()
1732 fc_lport_error(lport, fp); in fc_lport_flogi_resp()
1736 fh = fc_frame_header_get(fp); in fc_lport_flogi_resp()
1737 did = fc_frame_did(fp); in fc_lport_flogi_resp()
1739 fc_frame_payload_op(fp) != ELS_LS_ACC) { in fc_lport_flogi_resp()
1741 fc_lport_error(lport, fp); in fc_lport_flogi_resp()
1745 flp = fc_frame_payload_get(fp, sizeof(*flp)); in fc_lport_flogi_resp()
1748 fc_lport_error(lport, fp); in fc_lport_flogi_resp()
1758 fc_lport_error(lport, fp); in fc_lport_flogi_resp()
1779 fc_lport_set_port_id(lport, did, fp); in fc_lport_flogi_resp()
1784 fc_lport_ptp_setup(lport, fc_frame_sid(fp), in fc_lport_flogi_resp()
1794 fc_lport_set_port_id(lport, did, fp); in fc_lport_flogi_resp()
1799 fc_frame_free(fp); in fc_lport_flogi_resp()
1814 struct fc_frame *fp; in fc_lport_enter_flogi() local
1827 fp = fc_frame_alloc(lport, sizeof(struct fc_els_flogi)); in fc_lport_enter_flogi()
1828 if (!fp) in fc_lport_enter_flogi()
1829 return fc_lport_error(lport, fp); in fc_lport_enter_flogi()
1831 if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp, in fc_lport_enter_flogi()
1902 static void fc_lport_bsg_resp(struct fc_seq *sp, struct fc_frame *fp, in fc_lport_bsg_resp() argument
1912 if (IS_ERR(fp)) { in fc_lport_bsg_resp()
1913 job->reply->result = (PTR_ERR(fp) == -FC_EX_CLOSED) ? in fc_lport_bsg_resp()
1923 fh = fc_frame_header_get(fp); in fc_lport_bsg_resp()
1924 len = fr_len(fp) - sizeof(*fh); in fc_lport_bsg_resp()
1925 buf = fc_frame_payload_get(fp, 0); in fc_lport_bsg_resp()
1927 if (fr_sof(fp) == FC_SOF_I3 && !ntohs(fh->fh_seq_cnt)) { in fc_lport_bsg_resp()
1931 (unsigned short)fc_frame_payload_op(fp); in fc_lport_bsg_resp()
1943 if (fr_eof(fp) == FC_EOF_T && in fc_lport_bsg_resp()
1955 fc_frame_free(fp); in fc_lport_bsg_resp()
1973 struct fc_frame *fp; in fc_lport_els_request() local
1978 fp = fc_frame_alloc(lport, job->request_payload.payload_len); in fc_lport_els_request()
1979 if (!fp) in fc_lport_els_request()
1983 pp = fc_frame_payload_get(fp, len); in fc_lport_els_request()
1989 fh = fc_frame_header_get(fp); in fc_lport_els_request()
2001 fc_frame_free(fp); in fc_lport_els_request()
2011 if (!lport->tt.exch_seq_send(lport, fp, fc_lport_bsg_resp, in fc_lport_els_request()
2033 struct fc_frame *fp; in fc_lport_ct_request() local
2038 fp = fc_frame_alloc(lport, sizeof(struct fc_ct_hdr) + in fc_lport_ct_request()
2040 if (!fp) in fc_lport_ct_request()
2044 ct = fc_frame_payload_get(fp, len); in fc_lport_ct_request()
2050 fh = fc_frame_header_get(fp); in fc_lport_ct_request()
2062 fc_frame_free(fp); in fc_lport_ct_request()
2072 if (!lport->tt.exch_seq_send(lport, fp, fc_lport_bsg_resp, in fc_lport_ct_request()