Lines Matching refs:lps
28 BFA_MODULE(lps);
138 static void bfa_lps_free(struct bfa_lps_s *lps);
139 static void bfa_lps_send_login(struct bfa_lps_s *lps);
140 static void bfa_lps_send_logout(struct bfa_lps_s *lps);
141 static void bfa_lps_send_set_n2n_pid(struct bfa_lps_s *lps);
142 static void bfa_lps_login_comp(struct bfa_lps_s *lps);
143 static void bfa_lps_logout_comp(struct bfa_lps_s *lps);
144 static void bfa_lps_cvl_event(struct bfa_lps_s *lps);
149 static void bfa_lps_sm_init(struct bfa_lps_s *lps, enum bfa_lps_event event);
150 static void bfa_lps_sm_login(struct bfa_lps_s *lps, enum bfa_lps_event event);
151 static void bfa_lps_sm_loginwait(struct bfa_lps_s *lps, enum bfa_lps_event
153 static void bfa_lps_sm_online(struct bfa_lps_s *lps, enum bfa_lps_event event);
154 static void bfa_lps_sm_online_n2n_pid_wait(struct bfa_lps_s *lps,
156 static void bfa_lps_sm_logout(struct bfa_lps_s *lps, enum bfa_lps_event event);
157 static void bfa_lps_sm_logowait(struct bfa_lps_s *lps, enum bfa_lps_event
1219 bfa_lps_sm_init(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_init() argument
1221 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_init()
1222 bfa_trc(lps->bfa, event); in bfa_lps_sm_init()
1226 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_init()
1227 bfa_sm_set_state(lps, bfa_lps_sm_loginwait); in bfa_lps_sm_init()
1228 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_init()
1230 bfa_sm_set_state(lps, bfa_lps_sm_login); in bfa_lps_sm_init()
1231 bfa_lps_send_login(lps); in bfa_lps_sm_init()
1234 if (lps->fdisc) in bfa_lps_sm_init()
1235 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_init()
1238 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_init()
1243 bfa_lps_logout_comp(lps); in bfa_lps_sm_init()
1247 bfa_lps_free(lps); in bfa_lps_sm_init()
1269 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_init()
1277 bfa_lps_sm_login(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_login() argument
1279 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_login()
1280 bfa_trc(lps->bfa, event); in bfa_lps_sm_login()
1284 if (lps->status == BFA_STATUS_OK) { in bfa_lps_sm_login()
1285 bfa_sm_set_state(lps, bfa_lps_sm_online); in bfa_lps_sm_login()
1286 if (lps->fdisc) in bfa_lps_sm_login()
1287 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1290 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1293 bfa_trc(lps->bfa, lps->fport); in bfa_lps_sm_login()
1294 bfa_trc(lps->bfa, lps->lp_pid); in bfa_lps_sm_login()
1296 if (!lps->fport && lps->lp_pid) in bfa_lps_sm_login()
1297 bfa_sm_send_event(lps, BFA_LPS_SM_SET_N2N_PID); in bfa_lps_sm_login()
1299 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_login()
1300 if (lps->fdisc) in bfa_lps_sm_login()
1301 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1305 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_login()
1309 bfa_lps_login_comp(lps); in bfa_lps_sm_login()
1314 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_login()
1318 bfa_trc(lps->bfa, lps->fport); in bfa_lps_sm_login()
1319 bfa_trc(lps->bfa, lps->lp_pid); in bfa_lps_sm_login()
1323 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_login()
1331 bfa_lps_sm_loginwait(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_loginwait() argument
1333 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_loginwait()
1334 bfa_trc(lps->bfa, event); in bfa_lps_sm_loginwait()
1338 bfa_sm_set_state(lps, bfa_lps_sm_login); in bfa_lps_sm_loginwait()
1339 bfa_lps_send_login(lps); in bfa_lps_sm_loginwait()
1344 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_loginwait()
1345 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_loginwait()
1357 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_loginwait()
1365 bfa_lps_sm_online(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_online() argument
1367 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_online()
1368 bfa_trc(lps->bfa, event); in bfa_lps_sm_online()
1372 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_online()
1373 bfa_sm_set_state(lps, bfa_lps_sm_logowait); in bfa_lps_sm_online()
1374 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_online()
1376 bfa_sm_set_state(lps, bfa_lps_sm_logout); in bfa_lps_sm_online()
1377 bfa_lps_send_logout(lps); in bfa_lps_sm_online()
1379 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online()
1384 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online()
1387 bfa_lps_cvl_event(lps); in bfa_lps_sm_online()
1388 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online()
1393 if (bfa_reqq_full(lps->bfa, lps->reqq)) { in bfa_lps_sm_online()
1394 bfa_sm_set_state(lps, bfa_lps_sm_online_n2n_pid_wait); in bfa_lps_sm_online()
1395 bfa_reqq_wait(lps->bfa, lps->reqq, &lps->wqe); in bfa_lps_sm_online()
1397 bfa_lps_send_set_n2n_pid(lps); in bfa_lps_sm_online()
1402 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online()
1406 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_online()
1414 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
1416 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_online_n2n_pid_wait()
1417 bfa_trc(lps->bfa, event); in bfa_lps_sm_online_n2n_pid_wait()
1421 bfa_sm_set_state(lps, bfa_lps_sm_online); in bfa_lps_sm_online_n2n_pid_wait()
1422 bfa_lps_send_set_n2n_pid(lps); in bfa_lps_sm_online_n2n_pid_wait()
1426 bfa_sm_set_state(lps, bfa_lps_sm_logowait); in bfa_lps_sm_online_n2n_pid_wait()
1427 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online_n2n_pid_wait()
1432 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online_n2n_pid_wait()
1433 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_online_n2n_pid_wait()
1436 bfa_lps_cvl_event(lps); in bfa_lps_sm_online_n2n_pid_wait()
1437 bfa_plog_str(lps->bfa->plog, BFA_PL_MID_LPS, in bfa_lps_sm_online_n2n_pid_wait()
1443 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_online_n2n_pid_wait()
1444 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_online_n2n_pid_wait()
1448 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_online_n2n_pid_wait()
1456 bfa_lps_sm_logout(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_logout() argument
1458 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_logout()
1459 bfa_trc(lps->bfa, event); in bfa_lps_sm_logout()
1464 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logout()
1465 bfa_lps_logout_comp(lps); in bfa_lps_sm_logout()
1469 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logout()
1473 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_logout()
1481 bfa_lps_sm_logowait(struct bfa_lps_s *lps, enum bfa_lps_event event) in bfa_lps_sm_logowait() argument
1483 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_sm_logowait()
1484 bfa_trc(lps->bfa, event); in bfa_lps_sm_logowait()
1488 bfa_sm_set_state(lps, bfa_lps_sm_logout); in bfa_lps_sm_logowait()
1489 bfa_lps_send_logout(lps); in bfa_lps_sm_logowait()
1494 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_sm_logowait()
1495 bfa_reqq_wcancel(&lps->wqe); in bfa_lps_sm_logowait()
1499 bfa_sm_fault(lps->bfa, event); in bfa_lps_sm_logowait()
1534 struct bfa_lps_s *lps; in bfa_lps_attach() local
1542 mod->lps_arr = lps = (struct bfa_lps_s *) bfa_mem_kva_curp(mod); in bfa_lps_attach()
1550 for (i = 0; i < mod->num_lps; i++, lps++) { in bfa_lps_attach()
1551 lps->bfa = bfa; in bfa_lps_attach()
1552 lps->bfa_tag = (u8) i; in bfa_lps_attach()
1553 lps->reqq = BFA_REQQ_LPS; in bfa_lps_attach()
1554 bfa_reqq_winit(&lps->wqe, bfa_lps_reqq_resume, lps); in bfa_lps_attach()
1555 list_add_tail(&lps->qe, &mod->lps_free_q); in bfa_lps_attach()
1581 struct bfa_lps_s *lps; in bfa_lps_iocdisable() local
1585 lps = (struct bfa_lps_s *) qe; in bfa_lps_iocdisable()
1586 bfa_sm_send_event(lps, BFA_LPS_SM_OFFLINE); in bfa_lps_iocdisable()
1589 lps = (struct bfa_lps_s *) qe; in bfa_lps_iocdisable()
1590 bfa_sm_send_event(lps, BFA_LPS_SM_OFFLINE); in bfa_lps_iocdisable()
1602 struct bfa_lps_s *lps; in bfa_lps_login_rsp() local
1605 lps = BFA_LPS_FROM_TAG(mod, rsp->bfa_tag); in bfa_lps_login_rsp()
1607 lps->status = rsp->status; in bfa_lps_login_rsp()
1610 lps->fw_tag = rsp->fw_tag; in bfa_lps_login_rsp()
1611 lps->fport = rsp->f_port; in bfa_lps_login_rsp()
1612 if (lps->fport) in bfa_lps_login_rsp()
1613 lps->lp_pid = rsp->lp_pid; in bfa_lps_login_rsp()
1614 lps->npiv_en = rsp->npiv_en; in bfa_lps_login_rsp()
1615 lps->pr_bbcred = be16_to_cpu(rsp->bb_credit); in bfa_lps_login_rsp()
1616 lps->pr_pwwn = rsp->port_name; in bfa_lps_login_rsp()
1617 lps->pr_nwwn = rsp->node_name; in bfa_lps_login_rsp()
1618 lps->auth_req = rsp->auth_req; in bfa_lps_login_rsp()
1619 lps->lp_mac = rsp->lp_mac; in bfa_lps_login_rsp()
1620 lps->brcd_switch = rsp->brcd_switch; in bfa_lps_login_rsp()
1621 lps->fcf_mac = rsp->fcf_mac; in bfa_lps_login_rsp()
1626 lps->lsrjt_rsn = rsp->lsrjt_rsn; in bfa_lps_login_rsp()
1627 lps->lsrjt_expl = rsp->lsrjt_expl; in bfa_lps_login_rsp()
1632 lps->ext_status = rsp->ext_status; in bfa_lps_login_rsp()
1638 bfa_lps_no_res(lps, rsp->ext_status); in bfa_lps_login_rsp()
1646 list_del(&lps->qe); in bfa_lps_login_rsp()
1647 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_login_rsp()
1648 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_login_rsp()
1657 struct bfa_lps_s *lps; in bfa_lps_no_res() local
1665 lps = (struct bfa_lps_s *)qe; in bfa_lps_no_res()
1666 bfa_trc(bfa, lps->bfa_tag); in bfa_lps_no_res()
1667 lps->status = first_lps->status; in bfa_lps_no_res()
1668 list_del(&lps->qe); in bfa_lps_no_res()
1669 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_no_res()
1670 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_no_res()
1683 struct bfa_lps_s *lps; in bfa_lps_logout_rsp() local
1686 lps = BFA_LPS_FROM_TAG(mod, rsp->bfa_tag); in bfa_lps_logout_rsp()
1688 bfa_sm_send_event(lps, BFA_LPS_SM_FWRSP); in bfa_lps_logout_rsp()
1698 struct bfa_lps_s *lps; in bfa_lps_rx_cvl_event() local
1700 lps = BFA_LPS_FROM_TAG(mod, cvl->bfa_tag); in bfa_lps_rx_cvl_event()
1702 bfa_sm_send_event(lps, BFA_LPS_SM_RX_CVL); in bfa_lps_rx_cvl_event()
1711 struct bfa_lps_s *lps = lps_arg; in bfa_lps_reqq_resume() local
1713 bfa_sm_send_event(lps, BFA_LPS_SM_RESUME); in bfa_lps_reqq_resume()
1720 bfa_lps_free(struct bfa_lps_s *lps) in bfa_lps_free() argument
1722 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(lps->bfa); in bfa_lps_free()
1724 lps->lp_pid = 0; in bfa_lps_free()
1725 list_del(&lps->qe); in bfa_lps_free()
1726 list_add_tail(&lps->qe, &mod->lps_free_q); in bfa_lps_free()
1733 bfa_lps_send_login(struct bfa_lps_s *lps) in bfa_lps_send_login() argument
1735 struct bfa_lps_mod_s *mod = BFA_LPS_MOD(lps->bfa); in bfa_lps_send_login()
1738 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_login()
1742 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_login()
1744 m->bfa_tag = lps->bfa_tag; in bfa_lps_send_login()
1745 m->alpa = lps->alpa; in bfa_lps_send_login()
1746 m->pdu_size = cpu_to_be16(lps->pdusz); in bfa_lps_send_login()
1747 m->pwwn = lps->pwwn; in bfa_lps_send_login()
1748 m->nwwn = lps->nwwn; in bfa_lps_send_login()
1749 m->fdisc = lps->fdisc; in bfa_lps_send_login()
1750 m->auth_en = lps->auth_en; in bfa_lps_send_login()
1752 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_login()
1753 list_del(&lps->qe); in bfa_lps_send_login()
1754 list_add_tail(&lps->qe, &mod->lps_login_q); in bfa_lps_send_login()
1761 bfa_lps_send_logout(struct bfa_lps_s *lps) in bfa_lps_send_logout() argument
1765 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_logout()
1769 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_logout()
1771 m->fw_tag = lps->fw_tag; in bfa_lps_send_logout()
1772 m->port_name = lps->pwwn; in bfa_lps_send_logout()
1773 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_logout()
1780 bfa_lps_send_set_n2n_pid(struct bfa_lps_s *lps) in bfa_lps_send_set_n2n_pid() argument
1784 m = bfa_reqq_next(lps->bfa, lps->reqq); in bfa_lps_send_set_n2n_pid()
1788 bfa_fn_lpu(lps->bfa)); in bfa_lps_send_set_n2n_pid()
1790 m->fw_tag = lps->fw_tag; in bfa_lps_send_set_n2n_pid()
1791 m->lp_pid = lps->lp_pid; in bfa_lps_send_set_n2n_pid()
1792 bfa_reqq_produce(lps->bfa, lps->reqq, m->mh); in bfa_lps_send_set_n2n_pid()
1801 struct bfa_lps_s *lps = arg; in bfa_lps_login_comp_cb() local
1806 if (lps->fdisc) in bfa_lps_login_comp_cb()
1807 bfa_cb_lps_fdisc_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp_cb()
1809 bfa_cb_lps_flogi_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp_cb()
1816 bfa_lps_login_comp(struct bfa_lps_s *lps) in bfa_lps_login_comp() argument
1818 if (!lps->bfa->fcs) { in bfa_lps_login_comp()
1819 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_login_comp_cb, in bfa_lps_login_comp()
1820 lps); in bfa_lps_login_comp()
1824 if (lps->fdisc) in bfa_lps_login_comp()
1825 bfa_cb_lps_fdisc_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp()
1827 bfa_cb_lps_flogi_comp(lps->bfa->bfad, lps->uarg, lps->status); in bfa_lps_login_comp()
1836 struct bfa_lps_s *lps = arg; in bfa_lps_logout_comp_cb() local
1841 if (lps->fdisc) in bfa_lps_logout_comp_cb()
1842 bfa_cb_lps_fdisclogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp_cb()
1844 bfa_cb_lps_flogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp_cb()
1851 bfa_lps_logout_comp(struct bfa_lps_s *lps) in bfa_lps_logout_comp() argument
1853 if (!lps->bfa->fcs) { in bfa_lps_logout_comp()
1854 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_logout_comp_cb, in bfa_lps_logout_comp()
1855 lps); in bfa_lps_logout_comp()
1858 if (lps->fdisc) in bfa_lps_logout_comp()
1859 bfa_cb_lps_fdisclogo_comp(lps->bfa->bfad, lps->uarg); in bfa_lps_logout_comp()
1868 struct bfa_lps_s *lps = arg; in bfa_lps_cvl_event_cb() local
1874 if (lps->fdisc) in bfa_lps_cvl_event_cb()
1875 bfa_cb_lps_cvl_event(lps->bfa->bfad, lps->uarg); in bfa_lps_cvl_event_cb()
1883 bfa_lps_cvl_event(struct bfa_lps_s *lps) in bfa_lps_cvl_event() argument
1885 if (!lps->bfa->fcs) { in bfa_lps_cvl_event()
1886 bfa_cb_queue(lps->bfa, &lps->hcb_qe, bfa_lps_cvl_event_cb, in bfa_lps_cvl_event()
1887 lps); in bfa_lps_cvl_event()
1892 if (lps->fdisc) in bfa_lps_cvl_event()
1893 bfa_cb_lps_cvl_event(lps->bfa->bfad, lps->uarg); in bfa_lps_cvl_event()
1918 struct bfa_lps_s *lps = NULL; in bfa_lps_alloc() local
1920 bfa_q_deq(&mod->lps_free_q, &lps); in bfa_lps_alloc()
1922 if (lps == NULL) in bfa_lps_alloc()
1925 list_add_tail(&lps->qe, &mod->lps_active_q); in bfa_lps_alloc()
1927 bfa_sm_set_state(lps, bfa_lps_sm_init); in bfa_lps_alloc()
1928 return lps; in bfa_lps_alloc()
1936 bfa_lps_delete(struct bfa_lps_s *lps) in bfa_lps_delete() argument
1938 bfa_sm_send_event(lps, BFA_LPS_SM_DELETE); in bfa_lps_delete()
1945 bfa_lps_flogi(struct bfa_lps_s *lps, void *uarg, u8 alpa, u16 pdusz, in bfa_lps_flogi() argument
1948 lps->uarg = uarg; in bfa_lps_flogi()
1949 lps->alpa = alpa; in bfa_lps_flogi()
1950 lps->pdusz = pdusz; in bfa_lps_flogi()
1951 lps->pwwn = pwwn; in bfa_lps_flogi()
1952 lps->nwwn = nwwn; in bfa_lps_flogi()
1953 lps->fdisc = BFA_FALSE; in bfa_lps_flogi()
1954 lps->auth_en = auth_en; in bfa_lps_flogi()
1955 bfa_sm_send_event(lps, BFA_LPS_SM_LOGIN); in bfa_lps_flogi()
1962 bfa_lps_fdisc(struct bfa_lps_s *lps, void *uarg, u16 pdusz, wwn_t pwwn, in bfa_lps_fdisc() argument
1965 lps->uarg = uarg; in bfa_lps_fdisc()
1966 lps->alpa = 0; in bfa_lps_fdisc()
1967 lps->pdusz = pdusz; in bfa_lps_fdisc()
1968 lps->pwwn = pwwn; in bfa_lps_fdisc()
1969 lps->nwwn = nwwn; in bfa_lps_fdisc()
1970 lps->fdisc = BFA_TRUE; in bfa_lps_fdisc()
1971 lps->auth_en = BFA_FALSE; in bfa_lps_fdisc()
1972 bfa_sm_send_event(lps, BFA_LPS_SM_LOGIN); in bfa_lps_fdisc()
1980 bfa_lps_fdisclogo(struct bfa_lps_s *lps) in bfa_lps_fdisclogo() argument
1982 bfa_sm_send_event(lps, BFA_LPS_SM_LOGOUT); in bfa_lps_fdisclogo()
2000 struct bfa_lps_s *lps; in bfa_lps_get_tag_from_pid() local
2003 for (i = 0, lps = mod->lps_arr; i < mod->num_lps; i++, lps++) { in bfa_lps_get_tag_from_pid()
2004 if (lps->lp_pid == pid) in bfa_lps_get_tag_from_pid()
2005 return lps->bfa_tag; in bfa_lps_get_tag_from_pid()
2028 bfa_lps_set_n2n_pid(struct bfa_lps_s *lps, uint32_t n2n_pid) in bfa_lps_set_n2n_pid() argument
2030 bfa_trc(lps->bfa, lps->bfa_tag); in bfa_lps_set_n2n_pid()
2031 bfa_trc(lps->bfa, n2n_pid); in bfa_lps_set_n2n_pid()
2033 lps->lp_pid = n2n_pid; in bfa_lps_set_n2n_pid()
2034 bfa_sm_send_event(lps, BFA_LPS_SM_SET_N2N_PID); in bfa_lps_set_n2n_pid()