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
1169 bfa_lps_sm_init(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_init() argument
1171 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_init()
1172 bfa_trc(lps->bfa, event); in bfa_lps_sm_init()
1176 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_init()
1177 bfa_sm_set_state(lps, bfa_lps_sm_loginwait); in bfa_lps_sm_init()
1178 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_init()
1180 bfa_sm_set_state(lps, bfa_lps_sm_login); in bfa_lps_sm_init()
1181 bfa_lps_send_login(lps); in bfa_lps_sm_init()
1184 if (lps->fdisc) in bfa_lps_sm_init()
1185 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_init()
1188 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_init()
1193 bfa_lps_logout_comp(lps); in bfa_lps_sm_init()
1197 bfa_lps_free(lps); in bfa_lps_sm_init()
1219 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_init()
1227 bfa_lps_sm_login(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_login() argument
1229 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_login()
1230 bfa_trc(lps->bfa, event); in bfa_lps_sm_login()
1234 if (lps->status == BFA_STATUS_OK) { in bfa_lps_sm_login()
1235 bfa_sm_set_state(lps, bfa_lps_sm_online); in bfa_lps_sm_login()
1236 if (lps->fdisc) in bfa_lps_sm_login()
1237 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1240 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1243 bfa_trc(lps->bfa, lps->fport); in bfa_lps_sm_login()
1244 bfa_trc(lps->bfa, lps->lp_pid); in bfa_lps_sm_login()
1246 if (!lps->fport && lps->lp_pid) in bfa_lps_sm_login()
1247 bfa_sm_send_event(lps, BFA_LPS_SM_SET_N2N_PID); in bfa_lps_sm_login()
1249 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_login()
1250 if (lps->fdisc) in bfa_lps_sm_login()
1251 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1255 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1259 bfa_lps_login_comp(lps); in bfa_lps_sm_login()
1264 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_login()
1268 bfa_trc(lps->bfa, lps->fport); in bfa_lps_sm_login()
1269 bfa_trc(lps->bfa, lps->lp_pid); in bfa_lps_sm_login()
1273 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_login()
1281 bfa_lps_sm_loginwait(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_loginwait() argument
1283 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_loginwait()
1284 bfa_trc(lps->bfa, event); in bfa_lps_sm_loginwait()
1288 bfa_sm_set_state(lps, bfa_lps_sm_login); in bfa_lps_sm_loginwait()
1289 bfa_lps_send_login(lps); in bfa_lps_sm_loginwait()
1294 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_loginwait()
1295 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_loginwait()
1307 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_loginwait()
1315 bfa_lps_sm_online(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_online() argument
1317 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_online()
1318 bfa_trc(lps->bfa, event); in bfa_lps_sm_online()
1322 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_online()
1323 bfa_sm_set_state(lps, bfa_lps_sm_logowait); in bfa_lps_sm_online()
1324 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_online()
1326 bfa_sm_set_state(lps, bfa_lps_sm_logout); in bfa_lps_sm_online()
1327 bfa_lps_send_logout(lps); in bfa_lps_sm_online()
1329 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online()
1334 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online()
1337 bfa_lps_cvl_event(lps); in bfa_lps_sm_online()
1338 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online()
1343 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_online()
1344 bfa_sm_set_state(lps, bfa_lps_sm_online_n2n_pid_wait); in bfa_lps_sm_online()
1345 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_online()
1347 bfa_lps_send_set_n2n_pid(lps); in bfa_lps_sm_online()
1352 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online()
1356 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_online()
1364 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
1366 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_online_n2n_pid_wait()
1367 bfa_trc(lps->bfa, event); in bfa_lps_sm_online_n2n_pid_wait()
1371 bfa_sm_set_state(lps, bfa_lps_sm_online); in bfa_lps_sm_online_n2n_pid_wait()
1372 bfa_lps_send_set_n2n_pid(lps); in bfa_lps_sm_online_n2n_pid_wait()
1376 bfa_sm_set_state(lps, bfa_lps_sm_logowait); in bfa_lps_sm_online_n2n_pid_wait()
1377 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online_n2n_pid_wait()
1382 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online_n2n_pid_wait()
1383 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_online_n2n_pid_wait()
1386 bfa_lps_cvl_event(lps); in bfa_lps_sm_online_n2n_pid_wait()
1387 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online_n2n_pid_wait()
1393 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online_n2n_pid_wait()
1394 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_online_n2n_pid_wait()
1398 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_online_n2n_pid_wait()
1406 bfa_lps_sm_logout(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_logout() argument
1408 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_logout()
1409 bfa_trc(lps->bfa, event); in bfa_lps_sm_logout()
1414 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logout()
1415 bfa_lps_logout_comp(lps); in bfa_lps_sm_logout()
1419 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logout()
1423 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_logout()
1431 bfa_lps_sm_logowait(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_logowait() argument
1433 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_logowait()
1434 bfa_trc(lps->bfa, event); in bfa_lps_sm_logowait()
1438 bfa_sm_set_state(lps, bfa_lps_sm_logout); in bfa_lps_sm_logowait()
1439 bfa_lps_send_logout(lps); in bfa_lps_sm_logowait()
1444 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logowait()
1445 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_logowait()
1449 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_logowait()
1484 struct bfa_lps_s *lps; in bfa_lps_attach() local
1492 mod->lps_arr = lps = (struct bfa_lps_s *) bfa_mem_kva_curp(mod); in bfa_lps_attach()
1500 for (i = 0; i < mod->num_lps; i++, lps++) { in bfa_lps_attach()
1501 lps->bfa = bfa; in bfa_lps_attach()
1502 lps->bfa_tag = (u8) i; in bfa_lps_attach()
1503 lps->reqq = BFA_REQQ_LPS; in bfa_lps_attach()
1504 bfa_reqq_winit(&lps->wqe, bfa_lps_reqq_resume, lps); in bfa_lps_attach()
1505 list_add_tail(&lps->qe, &mod->lps_free_q); in bfa_lps_attach()
1516 struct bfa_lps_s *lps; in bfa_lps_iocdisable() local
1520 lps = (struct bfa_lps_s *) qe; in bfa_lps_iocdisable()
1521 bfa_sm_send_event(lps, BFA_LPS_SM_OFFLINE); in bfa_lps_iocdisable()
1524 lps = (struct bfa_lps_s *) qe; in bfa_lps_iocdisable()
1525 bfa_sm_send_event(lps, BFA_LPS_SM_OFFLINE); in bfa_lps_iocdisable()
1537 struct bfa_lps_s *lps; in bfa_lps_login_rsp() local
1540 lps = BFA_LPS_FROM_TAG(mod, rsp->bfa_tag); in bfa_lps_login_rsp()
1542 lps->status = rsp->status; in bfa_lps_login_rsp()
1545 lps->fw_tag = rsp->fw_tag; in bfa_lps_login_rsp()
1546 lps->fport = rsp->f_port; in bfa_lps_login_rsp()
1547 if (lps->fport) in bfa_lps_login_rsp()
1548 lps->lp_pid = rsp->lp_pid; in bfa_lps_login_rsp()
1549 lps->npiv_en = rsp->npiv_en; in bfa_lps_login_rsp()
1550 lps->pr_bbcred = be16_to_cpu(rsp->bb_credit); in bfa_lps_login_rsp()
1551 lps->pr_pwwn = rsp->port_name; in bfa_lps_login_rsp()
1552 lps->pr_nwwn = rsp->node_name; in bfa_lps_login_rsp()
1553 lps->auth_req = rsp->auth_req; in bfa_lps_login_rsp()
1554 lps->lp_mac = rsp->lp_mac; in bfa_lps_login_rsp()
1555 lps->brcd_switch = rsp->brcd_switch; in bfa_lps_login_rsp()
1556 lps->fcf_mac = rsp->fcf_mac; in bfa_lps_login_rsp()
1561 lps->lsrjt_rsn = rsp->lsrjt_rsn; in bfa_lps_login_rsp()
1562 lps->lsrjt_expl = rsp->lsrjt_expl; in bfa_lps_login_rsp()
1567 lps->ext_status = rsp->ext_status; in bfa_lps_login_rsp()
1573 bfa_lps_no_res(lps, rsp->ext_status); in bfa_lps_login_rsp()
1581 list_del(&lps->qe); in bfa_lps_login_rsp()
1582 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_login_rsp()
1583 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_login_rsp()
1592 struct bfa_lps_s *lps; in bfa_lps_no_res() local
1600 lps = (struct bfa_lps_s *)qe; in bfa_lps_no_res()
1601 bfa_trc(bfa, lps->bfa_tag); in bfa_lps_no_res()
1602 lps->status = first_lps->status; in bfa_lps_no_res()
1603 list_del(&lps->qe); in bfa_lps_no_res()
1604 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_no_res()
1605 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_no_res()
1618 struct bfa_lps_s *lps; in bfa_lps_logout_rsp() local
1621 lps = BFA_LPS_FROM_TAG(mod, rsp->bfa_tag); in bfa_lps_logout_rsp()
1623 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_logout_rsp()
1633 struct bfa_lps_s *lps; in bfa_lps_rx_cvl_event() local
1635 lps = BFA_LPS_FROM_TAG(mod, cvl->bfa_tag); in bfa_lps_rx_cvl_event()
1637 bfa_sm_send_event(lps, BFA_LPS_SM_RX_CVL); in bfa_lps_rx_cvl_event()
1646 struct bfa_lps_s *lps = lps_arg; in bfa_lps_reqq_resume() local
1648 bfa_sm_send_event(lps, BFA_LPS_SM_RESUME); in bfa_lps_reqq_resume()
1655 bfa_lps_free(struct bfa_lps_s *lps) in bfa_lps_free() argument
1657 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(lps->bfa); in bfa_lps_free()
1659 lps->lp_pid = 0; in bfa_lps_free()
1660 list_del(&lps->qe); in bfa_lps_free()
1661 list_add_tail(&lps->qe, &mod->lps_free_q); in bfa_lps_free()
1668 bfa_lps_send_login(struct bfa_lps_s *lps) in bfa_lps_send_login() argument
1670 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(lps->bfa); in bfa_lps_send_login()
1673 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_login()
1677 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_login()
1679 m->bfa_tag = lps->bfa_tag; in bfa_lps_send_login()
1680 m->alpa = lps->alpa; in bfa_lps_send_login()
1681 m->pdu_size = cpu_to_be16(lps->pdusz); in bfa_lps_send_login()
1682 m->pwwn = lps->pwwn; in bfa_lps_send_login()
1683 m->nwwn = lps->nwwn; in bfa_lps_send_login()
1684 m->fdisc = lps->fdisc; in bfa_lps_send_login()
1685 m->auth_en = lps->auth_en; in bfa_lps_send_login()
1687 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_login()
1688 list_del(&lps->qe); in bfa_lps_send_login()
1689 list_add_tail(&lps->qe, &mod->lps_login_q); in bfa_lps_send_login()
1696 bfa_lps_send_logout(struct bfa_lps_s *lps) in bfa_lps_send_logout() argument
1700 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_logout()
1704 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_logout()
1706 m->fw_tag = lps->fw_tag; in bfa_lps_send_logout()
1707 m->port_name = lps->pwwn; in bfa_lps_send_logout()
1708 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_logout()
1715 bfa_lps_send_set_n2n_pid(struct bfa_lps_s *lps) in bfa_lps_send_set_n2n_pid() argument
1719 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_set_n2n_pid()
1723 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_set_n2n_pid()
1725 m->fw_tag = lps->fw_tag; in bfa_lps_send_set_n2n_pid()
1726 m->lp_pid = lps->lp_pid; in bfa_lps_send_set_n2n_pid()
1727 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_set_n2n_pid()
1736 struct bfa_lps_s *lps = arg; in bfa_lps_login_comp_cb() local
1741 if (lps->fdisc) in bfa_lps_login_comp_cb()
1742 bfa_cb_lps_fdisc_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp_cb()
1744 bfa_cb_lps_flogi_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp_cb()
1751 bfa_lps_login_comp(struct bfa_lps_s *lps) in bfa_lps_login_comp() argument
1753 if (!lps->bfa->fcs) { in bfa_lps_login_comp()
1754 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_login_comp_cb, in bfa_lps_login_comp()
1755 lps); in bfa_lps_login_comp()
1759 if (lps->fdisc) in bfa_lps_login_comp()
1760 bfa_cb_lps_fdisc_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp()
1762 bfa_cb_lps_flogi_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp()
1771 struct bfa_lps_s *lps = arg; in bfa_lps_logout_comp_cb() local
1776 if (lps->fdisc) in bfa_lps_logout_comp_cb()
1777 bfa_cb_lps_fdisclogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp_cb()
1779 bfa_cb_lps_flogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp_cb()
1786 bfa_lps_logout_comp(struct bfa_lps_s *lps) in bfa_lps_logout_comp() argument
1788 if (!lps->bfa->fcs) { in bfa_lps_logout_comp()
1789 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_logout_comp_cb, in bfa_lps_logout_comp()
1790 lps); in bfa_lps_logout_comp()
1793 if (lps->fdisc) in bfa_lps_logout_comp()
1794 bfa_cb_lps_fdisclogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp()
1803 struct bfa_lps_s *lps = arg; in bfa_lps_cvl_event_cb() local
1809 if (lps->fdisc) in bfa_lps_cvl_event_cb()
1810 bfa_cb_lps_cvl_event(lps->bfa->bfad, lps->uarg); in bfa_lps_cvl_event_cb()
1818 bfa_lps_cvl_event(struct bfa_lps_s *lps) in bfa_lps_cvl_event() argument
1820 if (!lps->bfa->fcs) { in bfa_lps_cvl_event()
1821 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_cvl_event_cb, in bfa_lps_cvl_event()
1822 lps); in bfa_lps_cvl_event()
1827 if (lps->fdisc) in bfa_lps_cvl_event()
1828 bfa_cb_lps_cvl_event(lps->bfa->bfad, lps->uarg); in bfa_lps_cvl_event()
1853 struct bfa_lps_s *lps = NULL; in bfa_lps_alloc() local
1855 bfa_q_deq(&mod->lps_free_q, &lps); in bfa_lps_alloc()
1857 if (lps == NULL) in bfa_lps_alloc()
1860 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_alloc()
1862 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_alloc()
1863 return lps; in bfa_lps_alloc()
1871 bfa_lps_delete(struct bfa_lps_s *lps) in bfa_lps_delete() argument
1873 bfa_sm_send_event(lps, BFA_LPS_SM_DELETE); in bfa_lps_delete()
1880 bfa_lps_flogi(struct bfa_lps_s *lps, void *uarg, u8 alpa, u16 pdusz, in bfa_lps_flogi() argument
1883 lps->uarg = uarg; in bfa_lps_flogi()
1884 lps->alpa = alpa; in bfa_lps_flogi()
1885 lps->pdusz = pdusz; in bfa_lps_flogi()
1886 lps->pwwn = pwwn; in bfa_lps_flogi()
1887 lps->nwwn = nwwn; in bfa_lps_flogi()
1888 lps->fdisc = BFA_FALSE; in bfa_lps_flogi()
1889 lps->auth_en = auth_en; in bfa_lps_flogi()
1890 bfa_sm_send_event(lps, BFA_LPS_SM_LOGIN); in bfa_lps_flogi()
1897 bfa_lps_fdisc(struct bfa_lps_s *lps, void *uarg, u16 pdusz, wwn_t pwwn, in bfa_lps_fdisc() argument
1900 lps->uarg = uarg; in bfa_lps_fdisc()
1901 lps->alpa = 0; in bfa_lps_fdisc()
1902 lps->pdusz = pdusz; in bfa_lps_fdisc()
1903 lps->pwwn = pwwn; in bfa_lps_fdisc()
1904 lps->nwwn = nwwn; in bfa_lps_fdisc()
1905 lps->fdisc = BFA_TRUE; in bfa_lps_fdisc()
1906 lps->auth_en = BFA_FALSE; in bfa_lps_fdisc()
1907 bfa_sm_send_event(lps, BFA_LPS_SM_LOGIN); in bfa_lps_fdisc()
1915 bfa_lps_fdisclogo(struct bfa_lps_s *lps) in bfa_lps_fdisclogo() argument
1917 bfa_sm_send_event(lps, BFA_LPS_SM_LOGOUT); in bfa_lps_fdisclogo()
1935 struct bfa_lps_s *lps; in bfa_lps_get_tag_from_pid() local
1938 for (i = 0, lps = mod->lps_arr; i < mod->num_lps; i++, lps++) { in bfa_lps_get_tag_from_pid()
1939 if (lps->lp_pid == pid) in bfa_lps_get_tag_from_pid()
1940 return lps->bfa_tag; in bfa_lps_get_tag_from_pid()
1963 bfa_lps_set_n2n_pid(struct bfa_lps_s *lps, uint32_t n2n_pid) in bfa_lps_set_n2n_pid() argument
1965 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_set_n2n_pid()
1966 bfa_trc(lps->bfa, n2n_pid); in bfa_lps_set_n2n_pid()
1968 lps->lp_pid = n2n_pid; in bfa_lps_set_n2n_pid()
1969 bfa_sm_send_event(lps, BFA_LPS_SM_SET_N2N_PID); in bfa_lps_set_n2n_pid()