Lines Matching refs:lps

115 static void bfa_lps_free(struct bfa_lps_s *lps);
116 static void bfa_lps_send_login(struct bfa_lps_s *lps);
117 static void bfa_lps_send_logout(struct bfa_lps_s *lps);
118 static void bfa_lps_send_set_n2n_pid(struct bfa_lps_s *lps);
119 static void bfa_lps_login_comp(struct bfa_lps_s *lps);
120 static void bfa_lps_logout_comp(struct bfa_lps_s *lps);
121 static void bfa_lps_cvl_event(struct bfa_lps_s *lps);
126 static void bfa_lps_sm_init(struct bfa_lps_s *lps, enum bfa_lps_event event);
127 static void bfa_lps_sm_login(struct bfa_lps_s *lps, enum bfa_lps_event event);
128 static void bfa_lps_sm_loginwait(struct bfa_lps_s *lps, enum bfa_lps_event
130 static void bfa_lps_sm_online(struct bfa_lps_s *lps, enum bfa_lps_event event);
131 static void bfa_lps_sm_online_n2n_pid_wait(struct bfa_lps_s *lps,
133 static void bfa_lps_sm_logout(struct bfa_lps_s *lps, enum bfa_lps_event event);
134 static void bfa_lps_sm_logowait(struct bfa_lps_s *lps, enum bfa_lps_event
1163 bfa_lps_sm_init(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_init() argument
1165 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_init()
1166 bfa_trc(lps->bfa, event); in bfa_lps_sm_init()
1170 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_init()
1171 bfa_sm_set_state(lps, bfa_lps_sm_loginwait); in bfa_lps_sm_init()
1172 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_init()
1174 bfa_sm_set_state(lps, bfa_lps_sm_login); in bfa_lps_sm_init()
1175 bfa_lps_send_login(lps); in bfa_lps_sm_init()
1178 if (lps->fdisc) in bfa_lps_sm_init()
1179 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_init()
1182 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_init()
1187 bfa_lps_logout_comp(lps); in bfa_lps_sm_init()
1191 bfa_lps_free(lps); in bfa_lps_sm_init()
1213 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_init()
1221 bfa_lps_sm_login(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_login() argument
1223 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_login()
1224 bfa_trc(lps->bfa, event); in bfa_lps_sm_login()
1228 if (lps->status == BFA_STATUS_OK) { in bfa_lps_sm_login()
1229 bfa_sm_set_state(lps, bfa_lps_sm_online); in bfa_lps_sm_login()
1230 if (lps->fdisc) in bfa_lps_sm_login()
1231 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1234 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1237 bfa_trc(lps->bfa, lps->fport); in bfa_lps_sm_login()
1238 bfa_trc(lps->bfa, lps->lp_pid); in bfa_lps_sm_login()
1240 if (!lps->fport && lps->lp_pid) in bfa_lps_sm_login()
1241 bfa_sm_send_event(lps, BFA_LPS_SM_SET_N2N_PID); in bfa_lps_sm_login()
1243 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_login()
1244 if (lps->fdisc) in bfa_lps_sm_login()
1245 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1249 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1253 bfa_lps_login_comp(lps); in bfa_lps_sm_login()
1258 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_login()
1262 bfa_trc(lps->bfa, lps->fport); in bfa_lps_sm_login()
1263 bfa_trc(lps->bfa, lps->lp_pid); in bfa_lps_sm_login()
1267 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_login()
1275 bfa_lps_sm_loginwait(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_loginwait() argument
1277 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_loginwait()
1278 bfa_trc(lps->bfa, event); in bfa_lps_sm_loginwait()
1282 bfa_sm_set_state(lps, bfa_lps_sm_login); in bfa_lps_sm_loginwait()
1283 bfa_lps_send_login(lps); in bfa_lps_sm_loginwait()
1288 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_loginwait()
1289 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_loginwait()
1301 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_loginwait()
1309 bfa_lps_sm_online(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_online() argument
1311 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_online()
1312 bfa_trc(lps->bfa, event); in bfa_lps_sm_online()
1316 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_online()
1317 bfa_sm_set_state(lps, bfa_lps_sm_logowait); in bfa_lps_sm_online()
1318 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_online()
1320 bfa_sm_set_state(lps, bfa_lps_sm_logout); in bfa_lps_sm_online()
1321 bfa_lps_send_logout(lps); in bfa_lps_sm_online()
1323 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online()
1328 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online()
1331 bfa_lps_cvl_event(lps); in bfa_lps_sm_online()
1332 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online()
1337 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_online()
1338 bfa_sm_set_state(lps, bfa_lps_sm_online_n2n_pid_wait); in bfa_lps_sm_online()
1339 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_online()
1341 bfa_lps_send_set_n2n_pid(lps); in bfa_lps_sm_online()
1346 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online()
1350 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_online()
1358 bfa_lps_sm_online_n2n_pid_wait(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_online_n2n_pid_wait() argument
1360 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_online_n2n_pid_wait()
1361 bfa_trc(lps->bfa, event); in bfa_lps_sm_online_n2n_pid_wait()
1365 bfa_sm_set_state(lps, bfa_lps_sm_online); in bfa_lps_sm_online_n2n_pid_wait()
1366 bfa_lps_send_set_n2n_pid(lps); in bfa_lps_sm_online_n2n_pid_wait()
1370 bfa_sm_set_state(lps, bfa_lps_sm_logowait); in bfa_lps_sm_online_n2n_pid_wait()
1371 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online_n2n_pid_wait()
1376 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online_n2n_pid_wait()
1377 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_online_n2n_pid_wait()
1380 bfa_lps_cvl_event(lps); in bfa_lps_sm_online_n2n_pid_wait()
1381 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online_n2n_pid_wait()
1387 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online_n2n_pid_wait()
1388 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_online_n2n_pid_wait()
1392 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_online_n2n_pid_wait()
1400 bfa_lps_sm_logout(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_logout() argument
1402 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_logout()
1403 bfa_trc(lps->bfa, event); in bfa_lps_sm_logout()
1408 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logout()
1409 bfa_lps_logout_comp(lps); in bfa_lps_sm_logout()
1413 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logout()
1417 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_logout()
1425 bfa_lps_sm_logowait(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_logowait() argument
1427 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_logowait()
1428 bfa_trc(lps->bfa, event); in bfa_lps_sm_logowait()
1432 bfa_sm_set_state(lps, bfa_lps_sm_logout); in bfa_lps_sm_logowait()
1433 bfa_lps_send_logout(lps); in bfa_lps_sm_logowait()
1438 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logowait()
1439 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_logowait()
1443 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_logowait()
1478 struct bfa_lps_s *lps; in bfa_lps_attach() local
1486 mod->lps_arr = lps = (struct bfa_lps_s *) bfa_mem_kva_curp(mod); in bfa_lps_attach()
1494 for (i = 0; i < mod->num_lps; i++, lps++) { in bfa_lps_attach()
1495 lps->bfa = bfa; in bfa_lps_attach()
1496 lps->bfa_tag = (u8) i; in bfa_lps_attach()
1497 lps->reqq = BFA_REQQ_LPS; in bfa_lps_attach()
1498 bfa_reqq_winit(&lps->wqe, bfa_lps_reqq_resume, lps); in bfa_lps_attach()
1499 list_add_tail(&lps->qe, &mod->lps_free_q); in bfa_lps_attach()
1510 struct bfa_lps_s *lps; in bfa_lps_iocdisable() local
1514 lps = (struct bfa_lps_s *) qe; in bfa_lps_iocdisable()
1515 bfa_sm_send_event(lps, BFA_LPS_SM_OFFLINE); in bfa_lps_iocdisable()
1518 lps = (struct bfa_lps_s *) qe; in bfa_lps_iocdisable()
1519 bfa_sm_send_event(lps, BFA_LPS_SM_OFFLINE); in bfa_lps_iocdisable()
1531 struct bfa_lps_s *lps; in bfa_lps_login_rsp() local
1534 lps = BFA_LPS_FROM_TAG(mod, rsp->bfa_tag); in bfa_lps_login_rsp()
1536 lps->status = rsp->status; in bfa_lps_login_rsp()
1539 lps->fw_tag = rsp->fw_tag; in bfa_lps_login_rsp()
1540 lps->fport = rsp->f_port; in bfa_lps_login_rsp()
1541 if (lps->fport) in bfa_lps_login_rsp()
1542 lps->lp_pid = rsp->lp_pid; in bfa_lps_login_rsp()
1543 lps->npiv_en = rsp->npiv_en; in bfa_lps_login_rsp()
1544 lps->pr_bbcred = be16_to_cpu(rsp->bb_credit); in bfa_lps_login_rsp()
1545 lps->pr_pwwn = rsp->port_name; in bfa_lps_login_rsp()
1546 lps->pr_nwwn = rsp->node_name; in bfa_lps_login_rsp()
1547 lps->auth_req = rsp->auth_req; in bfa_lps_login_rsp()
1548 lps->lp_mac = rsp->lp_mac; in bfa_lps_login_rsp()
1549 lps->brcd_switch = rsp->brcd_switch; in bfa_lps_login_rsp()
1550 lps->fcf_mac = rsp->fcf_mac; in bfa_lps_login_rsp()
1555 lps->lsrjt_rsn = rsp->lsrjt_rsn; in bfa_lps_login_rsp()
1556 lps->lsrjt_expl = rsp->lsrjt_expl; in bfa_lps_login_rsp()
1561 lps->ext_status = rsp->ext_status; in bfa_lps_login_rsp()
1567 bfa_lps_no_res(lps, rsp->ext_status); in bfa_lps_login_rsp()
1575 list_del(&lps->qe); in bfa_lps_login_rsp()
1576 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_login_rsp()
1577 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_login_rsp()
1586 struct bfa_lps_s *lps; in bfa_lps_no_res() local
1594 lps = (struct bfa_lps_s *)qe; in bfa_lps_no_res()
1595 bfa_trc(bfa, lps->bfa_tag); in bfa_lps_no_res()
1596 lps->status = first_lps->status; in bfa_lps_no_res()
1597 list_del(&lps->qe); in bfa_lps_no_res()
1598 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_no_res()
1599 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_no_res()
1612 struct bfa_lps_s *lps; in bfa_lps_logout_rsp() local
1615 lps = BFA_LPS_FROM_TAG(mod, rsp->bfa_tag); in bfa_lps_logout_rsp()
1617 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_logout_rsp()
1627 struct bfa_lps_s *lps; in bfa_lps_rx_cvl_event() local
1629 lps = BFA_LPS_FROM_TAG(mod, cvl->bfa_tag); in bfa_lps_rx_cvl_event()
1631 bfa_sm_send_event(lps, BFA_LPS_SM_RX_CVL); in bfa_lps_rx_cvl_event()
1640 struct bfa_lps_s *lps = lps_arg; in bfa_lps_reqq_resume() local
1642 bfa_sm_send_event(lps, BFA_LPS_SM_RESUME); in bfa_lps_reqq_resume()
1649 bfa_lps_free(struct bfa_lps_s *lps) in bfa_lps_free() argument
1651 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(lps->bfa); in bfa_lps_free()
1653 lps->lp_pid = 0; in bfa_lps_free()
1654 list_del(&lps->qe); in bfa_lps_free()
1655 list_add_tail(&lps->qe, &mod->lps_free_q); in bfa_lps_free()
1662 bfa_lps_send_login(struct bfa_lps_s *lps) in bfa_lps_send_login() argument
1664 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(lps->bfa); in bfa_lps_send_login()
1667 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_login()
1671 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_login()
1673 m->bfa_tag = lps->bfa_tag; in bfa_lps_send_login()
1674 m->alpa = lps->alpa; in bfa_lps_send_login()
1675 m->pdu_size = cpu_to_be16(lps->pdusz); in bfa_lps_send_login()
1676 m->pwwn = lps->pwwn; in bfa_lps_send_login()
1677 m->nwwn = lps->nwwn; in bfa_lps_send_login()
1678 m->fdisc = lps->fdisc; in bfa_lps_send_login()
1679 m->auth_en = lps->auth_en; in bfa_lps_send_login()
1681 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_login()
1682 list_del(&lps->qe); in bfa_lps_send_login()
1683 list_add_tail(&lps->qe, &mod->lps_login_q); in bfa_lps_send_login()
1690 bfa_lps_send_logout(struct bfa_lps_s *lps) in bfa_lps_send_logout() argument
1694 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_logout()
1698 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_logout()
1700 m->fw_tag = lps->fw_tag; in bfa_lps_send_logout()
1701 m->port_name = lps->pwwn; in bfa_lps_send_logout()
1702 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_logout()
1709 bfa_lps_send_set_n2n_pid(struct bfa_lps_s *lps) in bfa_lps_send_set_n2n_pid() argument
1713 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_set_n2n_pid()
1717 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_set_n2n_pid()
1719 m->fw_tag = lps->fw_tag; in bfa_lps_send_set_n2n_pid()
1720 m->lp_pid = lps->lp_pid; in bfa_lps_send_set_n2n_pid()
1721 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_set_n2n_pid()
1730 struct bfa_lps_s *lps = arg; in bfa_lps_login_comp_cb() local
1735 if (lps->fdisc) in bfa_lps_login_comp_cb()
1736 bfa_cb_lps_fdisc_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp_cb()
1738 bfa_cb_lps_flogi_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp_cb()
1745 bfa_lps_login_comp(struct bfa_lps_s *lps) in bfa_lps_login_comp() argument
1747 if (!lps->bfa->fcs) { in bfa_lps_login_comp()
1748 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_login_comp_cb, in bfa_lps_login_comp()
1749 lps); in bfa_lps_login_comp()
1753 if (lps->fdisc) in bfa_lps_login_comp()
1754 bfa_cb_lps_fdisc_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp()
1756 bfa_cb_lps_flogi_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp()
1765 struct bfa_lps_s *lps = arg; in bfa_lps_logout_comp_cb() local
1770 if (lps->fdisc) in bfa_lps_logout_comp_cb()
1771 bfa_cb_lps_fdisclogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp_cb()
1773 bfa_cb_lps_flogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp_cb()
1780 bfa_lps_logout_comp(struct bfa_lps_s *lps) in bfa_lps_logout_comp() argument
1782 if (!lps->bfa->fcs) { in bfa_lps_logout_comp()
1783 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_logout_comp_cb, in bfa_lps_logout_comp()
1784 lps); in bfa_lps_logout_comp()
1787 if (lps->fdisc) in bfa_lps_logout_comp()
1788 bfa_cb_lps_fdisclogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp()
1797 struct bfa_lps_s *lps = arg; in bfa_lps_cvl_event_cb() local
1803 if (lps->fdisc) in bfa_lps_cvl_event_cb()
1804 bfa_cb_lps_cvl_event(lps->bfa->bfad, lps->uarg); in bfa_lps_cvl_event_cb()
1812 bfa_lps_cvl_event(struct bfa_lps_s *lps) in bfa_lps_cvl_event() argument
1814 if (!lps->bfa->fcs) { in bfa_lps_cvl_event()
1815 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_cvl_event_cb, in bfa_lps_cvl_event()
1816 lps); in bfa_lps_cvl_event()
1821 if (lps->fdisc) in bfa_lps_cvl_event()
1822 bfa_cb_lps_cvl_event(lps->bfa->bfad, lps->uarg); in bfa_lps_cvl_event()
1847 struct bfa_lps_s *lps = NULL; in bfa_lps_alloc() local
1849 bfa_q_deq(&mod->lps_free_q, &lps); in bfa_lps_alloc()
1851 if (lps == NULL) in bfa_lps_alloc()
1854 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_alloc()
1856 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_alloc()
1857 return lps; in bfa_lps_alloc()
1865 bfa_lps_delete(struct bfa_lps_s *lps) in bfa_lps_delete() argument
1867 bfa_sm_send_event(lps, BFA_LPS_SM_DELETE); in bfa_lps_delete()
1874 bfa_lps_flogi(struct bfa_lps_s *lps, void *uarg, u8 alpa, u16 pdusz, in bfa_lps_flogi() argument
1877 lps->uarg = uarg; in bfa_lps_flogi()
1878 lps->alpa = alpa; in bfa_lps_flogi()
1879 lps->pdusz = pdusz; in bfa_lps_flogi()
1880 lps->pwwn = pwwn; in bfa_lps_flogi()
1881 lps->nwwn = nwwn; in bfa_lps_flogi()
1882 lps->fdisc = BFA_FALSE; in bfa_lps_flogi()
1883 lps->auth_en = auth_en; in bfa_lps_flogi()
1884 bfa_sm_send_event(lps, BFA_LPS_SM_LOGIN); in bfa_lps_flogi()
1891 bfa_lps_fdisc(struct bfa_lps_s *lps, void *uarg, u16 pdusz, wwn_t pwwn, in bfa_lps_fdisc() argument
1894 lps->uarg = uarg; in bfa_lps_fdisc()
1895 lps->alpa = 0; in bfa_lps_fdisc()
1896 lps->pdusz = pdusz; in bfa_lps_fdisc()
1897 lps->pwwn = pwwn; in bfa_lps_fdisc()
1898 lps->nwwn = nwwn; in bfa_lps_fdisc()
1899 lps->fdisc = BFA_TRUE; in bfa_lps_fdisc()
1900 lps->auth_en = BFA_FALSE; in bfa_lps_fdisc()
1901 bfa_sm_send_event(lps, BFA_LPS_SM_LOGIN); in bfa_lps_fdisc()
1909 bfa_lps_fdisclogo(struct bfa_lps_s *lps) in bfa_lps_fdisclogo() argument
1911 bfa_sm_send_event(lps, BFA_LPS_SM_LOGOUT); in bfa_lps_fdisclogo()
1929 struct bfa_lps_s *lps; in bfa_lps_get_tag_from_pid() local
1932 for (i = 0, lps = mod->lps_arr; i < mod->num_lps; i++, lps++) { in bfa_lps_get_tag_from_pid()
1933 if (lps->lp_pid == pid) in bfa_lps_get_tag_from_pid()
1934 return lps->bfa_tag; in bfa_lps_get_tag_from_pid()
1957 bfa_lps_set_n2n_pid(struct bfa_lps_s *lps, uint32_t n2n_pid) in bfa_lps_set_n2n_pid() argument
1959 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_set_n2n_pid()
1960 bfa_trc(lps->bfa, n2n_pid); in bfa_lps_set_n2n_pid()
1962 lps->lp_pid = n2n_pid; in bfa_lps_set_n2n_pid()
1963 bfa_sm_send_event(lps, BFA_LPS_SM_SET_N2N_PID); in bfa_lps_set_n2n_pid()