Home
last modified time | relevance | path

Searched refs:V_pf_srchash (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/netpfil/pf/
H A Dpf.c689 sh = &V_pf_srchash[pf_hashsrc(src, af)]; in pf_find_src_node()
731 struct pf_srchash *sh = &V_pf_srchash[pf_hashsrc(src, af)]; in pf_insert_src_node()
878 V_pf_srchash = mallocarray(pf_srchashsize, in pf_initialize()
880 if (V_pf_srchash == NULL) { in pf_initialize()
885 V_pf_srchash = mallocarray(pf_srchashsize, in pf_initialize()
890 for (i = 0, sh = V_pf_srchash; i <= pf_srchashmask; i++, sh++) in pf_initialize()
946 free(V_pf_srchash, M_PFHASH); in pf_cleanup()
1658 sh = &V_pf_srchash[pf_hashsrc(&sn->addr, sn->af)]; in pf_src_tree_remove_state()
1668 sh = &V_pf_srchash[pf_hashsrc(&sn->addr, sn->af)]; in pf_src_tree_remove_state()
3934 sh = &V_pf_srchash[pf_hashsrc(&sn->addr, sn->af)]; in pf_create_state()
[all …]
H A Dpf_ioctl.c4074 for (i = 0, sh = V_pf_srchash; i <= pf_srchashmask; in pfioctl()
4093 for (i = 0, sh = V_pf_srchash; i <= pf_srchashmask; in pfioctl()
4348 for (i = 0, sh = V_pf_srchash; i <= pf_srchashmask; in pf_clear_srcnodes()
4371 struct pf_srchash *sh = &V_pf_srchash[i]; in pf_kill_srcnodes()
/f-stack/freebsd/net/
H A Dpfvar.h1385 #define V_pf_srchash VNET(pf_srchash) macro