Home
last modified time | relevance | path

Searched refs:tcpcbs (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/netinet/
H A Dtcp_hpts_test.c786 struct tcpcb **tcpcbs; in KTEST_FUNC() local
796 tcpcbs = malloc(num_tcpcbs * sizeof(struct tcpcb *), M_TCPHPTS, M_WAITOK | M_ZERO); in KTEST_FUNC()
797 KTEST_VERIFY_RET(tcpcbs != NULL, ENOMEM); in KTEST_FUNC()
802 tcpcbs[i] = test_hpts_create_tcpcb(ctx, pace); in KTEST_FUNC()
803 if (tcpcbs[i] == NULL) { in KTEST_FUNC()
812 INP_WLOCK(&tcpcbs[i]->t_inpcb); in KTEST_FUNC()
813 tcpcbs[i]->t_flags2 |= TF2_HPTS_CALLS; in KTEST_FUNC()
815 tcp_hpts_insert(pace, tcpcbs[i], 100 + (i % 1000), NULL); in KTEST_FUNC()
816 INP_WUNLOCK(&tcpcbs[i]->t_inpcb); in KTEST_FUNC()
831 INP_WLOCK(&tcpcbs[i]->t_inpcb); in KTEST_FUNC()
[all …]
H A Dtcp_usrreq.c2989 DB_SHOW_ALL_COMMAND(tcpcbs, db_show_all_tcpcbs) in DB_SHOW_ALL_COMMAND() argument