Lines Matching refs:lps
123 static void bfa_lps_free(struct bfa_lps_s *lps);
124 static void bfa_lps_send_login(struct bfa_lps_s *lps);
125 static void bfa_lps_send_logout(struct bfa_lps_s *lps);
126 static void bfa_lps_send_set_n2n_pid(struct bfa_lps_s *lps);
127 static void bfa_lps_login_comp(struct bfa_lps_s *lps);
128 static void bfa_lps_logout_comp(struct bfa_lps_s *lps);
129 static void bfa_lps_cvl_event(struct bfa_lps_s *lps);
134 static void bfa_lps_sm_init(struct bfa_lps_s *lps, enum bfa_lps_event event);
135 static void bfa_lps_sm_login(struct bfa_lps_s *lps, enum bfa_lps_event event);
136 static void bfa_lps_sm_loginwait(struct bfa_lps_s *lps, enum bfa_lps_event
138 static void bfa_lps_sm_online(struct bfa_lps_s *lps, enum bfa_lps_event event);
139 static void bfa_lps_sm_online_n2n_pid_wait(struct bfa_lps_s *lps,
141 static void bfa_lps_sm_logout(struct bfa_lps_s *lps, enum bfa_lps_event event);
142 static void bfa_lps_sm_logowait(struct bfa_lps_s *lps, enum bfa_lps_event
1189 bfa_lps_sm_init(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_init() argument
1191 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_init()
1192 bfa_trc(lps->bfa, event); in bfa_lps_sm_init()
1196 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_init()
1197 bfa_sm_set_state(lps, bfa_lps_sm_loginwait); in bfa_lps_sm_init()
1198 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_init()
1200 bfa_sm_set_state(lps, bfa_lps_sm_login); in bfa_lps_sm_init()
1201 bfa_lps_send_login(lps); in bfa_lps_sm_init()
1204 if (lps->fdisc) in bfa_lps_sm_init()
1205 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_init()
1208 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_init()
1213 bfa_lps_logout_comp(lps); in bfa_lps_sm_init()
1217 bfa_lps_free(lps); in bfa_lps_sm_init()
1239 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_init()
1247 bfa_lps_sm_login(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_login() argument
1249 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_login()
1250 bfa_trc(lps->bfa, event); in bfa_lps_sm_login()
1254 if (lps->status == BFA_STATUS_OK) { in bfa_lps_sm_login()
1255 bfa_sm_set_state(lps, bfa_lps_sm_online); in bfa_lps_sm_login()
1256 if (lps->fdisc) in bfa_lps_sm_login()
1257 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1260 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1263 bfa_trc(lps->bfa, lps->fport); in bfa_lps_sm_login()
1264 bfa_trc(lps->bfa, lps->lp_pid); in bfa_lps_sm_login()
1266 if (!lps->fport && lps->lp_pid) in bfa_lps_sm_login()
1267 bfa_sm_send_event(lps, BFA_LPS_SM_SET_N2N_PID); in bfa_lps_sm_login()
1269 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_login()
1270 if (lps->fdisc) in bfa_lps_sm_login()
1271 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1275 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1279 bfa_lps_login_comp(lps); in bfa_lps_sm_login()
1284 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_login()
1288 bfa_trc(lps->bfa, lps->fport); in bfa_lps_sm_login()
1289 bfa_trc(lps->bfa, lps->lp_pid); in bfa_lps_sm_login()
1293 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_login()
1301 bfa_lps_sm_loginwait(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_loginwait() argument
1303 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_loginwait()
1304 bfa_trc(lps->bfa, event); in bfa_lps_sm_loginwait()
1308 bfa_sm_set_state(lps, bfa_lps_sm_login); in bfa_lps_sm_loginwait()
1309 bfa_lps_send_login(lps); in bfa_lps_sm_loginwait()
1314 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_loginwait()
1315 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_loginwait()
1327 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_loginwait()
1335 bfa_lps_sm_online(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_online() argument
1337 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_online()
1338 bfa_trc(lps->bfa, event); in bfa_lps_sm_online()
1342 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_online()
1343 bfa_sm_set_state(lps, bfa_lps_sm_logowait); in bfa_lps_sm_online()
1344 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_online()
1346 bfa_sm_set_state(lps, bfa_lps_sm_logout); in bfa_lps_sm_online()
1347 bfa_lps_send_logout(lps); in bfa_lps_sm_online()
1349 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online()
1354 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online()
1357 bfa_lps_cvl_event(lps); in bfa_lps_sm_online()
1358 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online()
1363 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_online()
1364 bfa_sm_set_state(lps, bfa_lps_sm_online_n2n_pid_wait); in bfa_lps_sm_online()
1365 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_online()
1367 bfa_lps_send_set_n2n_pid(lps); in bfa_lps_sm_online()
1372 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online()
1376 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_online()
1384 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
1386 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_online_n2n_pid_wait()
1387 bfa_trc(lps->bfa, event); in bfa_lps_sm_online_n2n_pid_wait()
1391 bfa_sm_set_state(lps, bfa_lps_sm_online); in bfa_lps_sm_online_n2n_pid_wait()
1392 bfa_lps_send_set_n2n_pid(lps); in bfa_lps_sm_online_n2n_pid_wait()
1396 bfa_sm_set_state(lps, bfa_lps_sm_logowait); in bfa_lps_sm_online_n2n_pid_wait()
1397 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online_n2n_pid_wait()
1402 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online_n2n_pid_wait()
1403 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_online_n2n_pid_wait()
1406 bfa_lps_cvl_event(lps); in bfa_lps_sm_online_n2n_pid_wait()
1407 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online_n2n_pid_wait()
1413 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online_n2n_pid_wait()
1414 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_online_n2n_pid_wait()
1418 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_online_n2n_pid_wait()
1426 bfa_lps_sm_logout(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_logout() argument
1428 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_logout()
1429 bfa_trc(lps->bfa, event); in bfa_lps_sm_logout()
1434 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logout()
1435 bfa_lps_logout_comp(lps); in bfa_lps_sm_logout()
1439 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logout()
1443 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_logout()
1451 bfa_lps_sm_logowait(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_logowait() argument
1453 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_logowait()
1454 bfa_trc(lps->bfa, event); in bfa_lps_sm_logowait()
1458 bfa_sm_set_state(lps, bfa_lps_sm_logout); in bfa_lps_sm_logowait()
1459 bfa_lps_send_logout(lps); in bfa_lps_sm_logowait()
1464 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logowait()
1465 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_logowait()
1469 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_logowait()
1504 struct bfa_lps_s *lps; in bfa_lps_attach() local
1512 mod->lps_arr = lps = (struct bfa_lps_s *) bfa_mem_kva_curp(mod); in bfa_lps_attach()
1520 for (i = 0; i < mod->num_lps; i++, lps++) { in bfa_lps_attach()
1521 lps->bfa = bfa; in bfa_lps_attach()
1522 lps->bfa_tag = (u8) i; in bfa_lps_attach()
1523 lps->reqq = BFA_REQQ_LPS; in bfa_lps_attach()
1524 bfa_reqq_winit(&lps->wqe, bfa_lps_reqq_resume, lps); in bfa_lps_attach()
1525 list_add_tail(&lps->qe, &mod->lps_free_q); in bfa_lps_attach()
1536 struct bfa_lps_s *lps; in bfa_lps_iocdisable() local
1540 lps = (struct bfa_lps_s *) qe; in bfa_lps_iocdisable()
1541 bfa_sm_send_event(lps, BFA_LPS_SM_OFFLINE); in bfa_lps_iocdisable()
1544 lps = (struct bfa_lps_s *) qe; in bfa_lps_iocdisable()
1545 bfa_sm_send_event(lps, BFA_LPS_SM_OFFLINE); in bfa_lps_iocdisable()
1557 struct bfa_lps_s *lps; in bfa_lps_login_rsp() local
1560 lps = BFA_LPS_FROM_TAG(mod, rsp->bfa_tag); in bfa_lps_login_rsp()
1562 lps->status = rsp->status; in bfa_lps_login_rsp()
1565 lps->fw_tag = rsp->fw_tag; in bfa_lps_login_rsp()
1566 lps->fport = rsp->f_port; in bfa_lps_login_rsp()
1567 if (lps->fport) in bfa_lps_login_rsp()
1568 lps->lp_pid = rsp->lp_pid; in bfa_lps_login_rsp()
1569 lps->npiv_en = rsp->npiv_en; in bfa_lps_login_rsp()
1570 lps->pr_bbcred = be16_to_cpu(rsp->bb_credit); in bfa_lps_login_rsp()
1571 lps->pr_pwwn = rsp->port_name; in bfa_lps_login_rsp()
1572 lps->pr_nwwn = rsp->node_name; in bfa_lps_login_rsp()
1573 lps->auth_req = rsp->auth_req; in bfa_lps_login_rsp()
1574 lps->lp_mac = rsp->lp_mac; in bfa_lps_login_rsp()
1575 lps->brcd_switch = rsp->brcd_switch; in bfa_lps_login_rsp()
1576 lps->fcf_mac = rsp->fcf_mac; in bfa_lps_login_rsp()
1581 lps->lsrjt_rsn = rsp->lsrjt_rsn; in bfa_lps_login_rsp()
1582 lps->lsrjt_expl = rsp->lsrjt_expl; in bfa_lps_login_rsp()
1587 lps->ext_status = rsp->ext_status; in bfa_lps_login_rsp()
1593 bfa_lps_no_res(lps, rsp->ext_status); in bfa_lps_login_rsp()
1601 list_del(&lps->qe); in bfa_lps_login_rsp()
1602 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_login_rsp()
1603 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_login_rsp()
1612 struct bfa_lps_s *lps; in bfa_lps_no_res() local
1620 lps = (struct bfa_lps_s *)qe; in bfa_lps_no_res()
1621 bfa_trc(bfa, lps->bfa_tag); in bfa_lps_no_res()
1622 lps->status = first_lps->status; in bfa_lps_no_res()
1623 list_del(&lps->qe); in bfa_lps_no_res()
1624 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_no_res()
1625 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_no_res()
1638 struct bfa_lps_s *lps; in bfa_lps_logout_rsp() local
1641 lps = BFA_LPS_FROM_TAG(mod, rsp->bfa_tag); in bfa_lps_logout_rsp()
1643 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_logout_rsp()
1653 struct bfa_lps_s *lps; in bfa_lps_rx_cvl_event() local
1655 lps = BFA_LPS_FROM_TAG(mod, cvl->bfa_tag); in bfa_lps_rx_cvl_event()
1657 bfa_sm_send_event(lps, BFA_LPS_SM_RX_CVL); in bfa_lps_rx_cvl_event()
1666 struct bfa_lps_s *lps = lps_arg; in bfa_lps_reqq_resume() local
1668 bfa_sm_send_event(lps, BFA_LPS_SM_RESUME); in bfa_lps_reqq_resume()
1675 bfa_lps_free(struct bfa_lps_s *lps) in bfa_lps_free() argument
1677 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(lps->bfa); in bfa_lps_free()
1679 lps->lp_pid = 0; in bfa_lps_free()
1680 list_del(&lps->qe); in bfa_lps_free()
1681 list_add_tail(&lps->qe, &mod->lps_free_q); in bfa_lps_free()
1688 bfa_lps_send_login(struct bfa_lps_s *lps) in bfa_lps_send_login() argument
1690 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(lps->bfa); in bfa_lps_send_login()
1693 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_login()
1697 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_login()
1699 m->bfa_tag = lps->bfa_tag; in bfa_lps_send_login()
1700 m->alpa = lps->alpa; in bfa_lps_send_login()
1701 m->pdu_size = cpu_to_be16(lps->pdusz); in bfa_lps_send_login()
1702 m->pwwn = lps->pwwn; in bfa_lps_send_login()
1703 m->nwwn = lps->nwwn; in bfa_lps_send_login()
1704 m->fdisc = lps->fdisc; in bfa_lps_send_login()
1705 m->auth_en = lps->auth_en; in bfa_lps_send_login()
1707 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_login()
1708 list_del(&lps->qe); in bfa_lps_send_login()
1709 list_add_tail(&lps->qe, &mod->lps_login_q); in bfa_lps_send_login()
1716 bfa_lps_send_logout(struct bfa_lps_s *lps) in bfa_lps_send_logout() argument
1720 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_logout()
1724 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_logout()
1726 m->fw_tag = lps->fw_tag; in bfa_lps_send_logout()
1727 m->port_name = lps->pwwn; in bfa_lps_send_logout()
1728 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_logout()
1735 bfa_lps_send_set_n2n_pid(struct bfa_lps_s *lps) in bfa_lps_send_set_n2n_pid() argument
1739 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_set_n2n_pid()
1743 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_set_n2n_pid()
1745 m->fw_tag = lps->fw_tag; in bfa_lps_send_set_n2n_pid()
1746 m->lp_pid = lps->lp_pid; in bfa_lps_send_set_n2n_pid()
1747 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_set_n2n_pid()
1756 struct bfa_lps_s *lps = arg; in bfa_lps_login_comp_cb() local
1761 if (lps->fdisc) in bfa_lps_login_comp_cb()
1762 bfa_cb_lps_fdisc_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp_cb()
1764 bfa_cb_lps_flogi_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp_cb()
1771 bfa_lps_login_comp(struct bfa_lps_s *lps) in bfa_lps_login_comp() argument
1773 if (!lps->bfa->fcs) { in bfa_lps_login_comp()
1774 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_login_comp_cb, in bfa_lps_login_comp()
1775 lps); in bfa_lps_login_comp()
1779 if (lps->fdisc) in bfa_lps_login_comp()
1780 bfa_cb_lps_fdisc_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp()
1782 bfa_cb_lps_flogi_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp()
1791 struct bfa_lps_s *lps = arg; in bfa_lps_logout_comp_cb() local
1796 if (lps->fdisc) in bfa_lps_logout_comp_cb()
1797 bfa_cb_lps_fdisclogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp_cb()
1799 bfa_cb_lps_flogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp_cb()
1806 bfa_lps_logout_comp(struct bfa_lps_s *lps) in bfa_lps_logout_comp() argument
1808 if (!lps->bfa->fcs) { in bfa_lps_logout_comp()
1809 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_logout_comp_cb, in bfa_lps_logout_comp()
1810 lps); in bfa_lps_logout_comp()
1813 if (lps->fdisc) in bfa_lps_logout_comp()
1814 bfa_cb_lps_fdisclogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp()
1823 struct bfa_lps_s *lps = arg; in bfa_lps_cvl_event_cb() local
1829 if (lps->fdisc) in bfa_lps_cvl_event_cb()
1830 bfa_cb_lps_cvl_event(lps->bfa->bfad, lps->uarg); in bfa_lps_cvl_event_cb()
1838 bfa_lps_cvl_event(struct bfa_lps_s *lps) in bfa_lps_cvl_event() argument
1840 if (!lps->bfa->fcs) { in bfa_lps_cvl_event()
1841 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_cvl_event_cb, in bfa_lps_cvl_event()
1842 lps); in bfa_lps_cvl_event()
1847 if (lps->fdisc) in bfa_lps_cvl_event()
1848 bfa_cb_lps_cvl_event(lps->bfa->bfad, lps->uarg); in bfa_lps_cvl_event()
1873 struct bfa_lps_s *lps = NULL; in bfa_lps_alloc() local
1875 bfa_q_deq(&mod->lps_free_q, &lps); in bfa_lps_alloc()
1877 if (lps == NULL) in bfa_lps_alloc()
1880 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_alloc()
1882 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_alloc()
1883 return lps; in bfa_lps_alloc()
1891 bfa_lps_delete(struct bfa_lps_s *lps) in bfa_lps_delete() argument
1893 bfa_sm_send_event(lps, BFA_LPS_SM_DELETE); in bfa_lps_delete()
1900 bfa_lps_flogi(struct bfa_lps_s *lps, void *uarg, u8 alpa, u16 pdusz, in bfa_lps_flogi() argument
1903 lps->uarg = uarg; in bfa_lps_flogi()
1904 lps->alpa = alpa; in bfa_lps_flogi()
1905 lps->pdusz = pdusz; in bfa_lps_flogi()
1906 lps->pwwn = pwwn; in bfa_lps_flogi()
1907 lps->nwwn = nwwn; in bfa_lps_flogi()
1908 lps->fdisc = BFA_FALSE; in bfa_lps_flogi()
1909 lps->auth_en = auth_en; in bfa_lps_flogi()
1910 bfa_sm_send_event(lps, BFA_LPS_SM_LOGIN); in bfa_lps_flogi()
1917 bfa_lps_fdisc(struct bfa_lps_s *lps, void *uarg, u16 pdusz, wwn_t pwwn, in bfa_lps_fdisc() argument
1920 lps->uarg = uarg; in bfa_lps_fdisc()
1921 lps->alpa = 0; in bfa_lps_fdisc()
1922 lps->pdusz = pdusz; in bfa_lps_fdisc()
1923 lps->pwwn = pwwn; in bfa_lps_fdisc()
1924 lps->nwwn = nwwn; in bfa_lps_fdisc()
1925 lps->fdisc = BFA_TRUE; in bfa_lps_fdisc()
1926 lps->auth_en = BFA_FALSE; in bfa_lps_fdisc()
1927 bfa_sm_send_event(lps, BFA_LPS_SM_LOGIN); in bfa_lps_fdisc()
1935 bfa_lps_fdisclogo(struct bfa_lps_s *lps) in bfa_lps_fdisclogo() argument
1937 bfa_sm_send_event(lps, BFA_LPS_SM_LOGOUT); in bfa_lps_fdisclogo()
1955 struct bfa_lps_s *lps; in bfa_lps_get_tag_from_pid() local
1958 for (i = 0, lps = mod->lps_arr; i < mod->num_lps; i++, lps++) { in bfa_lps_get_tag_from_pid()
1959 if (lps->lp_pid == pid) in bfa_lps_get_tag_from_pid()
1960 return lps->bfa_tag; in bfa_lps_get_tag_from_pid()
1983 bfa_lps_set_n2n_pid(struct bfa_lps_s *lps, uint32_t n2n_pid) in bfa_lps_set_n2n_pid() argument
1985 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_set_n2n_pid()
1986 bfa_trc(lps->bfa, n2n_pid); in bfa_lps_set_n2n_pid()
1988 lps->lp_pid = n2n_pid; in bfa_lps_set_n2n_pid()
1989 bfa_sm_send_event(lps, BFA_LPS_SM_SET_N2N_PID); in bfa_lps_set_n2n_pid()