Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/netpfil/pf/
HDpf.c447 #define V_pf_hashsize VNET(pf_hashsize) macro
1024 if (V_pf_hashsize == 0 || !powerof2(V_pf_hashsize)) in pf_initialize()
1025 V_pf_hashsize = PF_HASHSIZ; in pf_initialize()
1042 V_pf_keyhash = mallocarray(V_pf_hashsize, sizeof(struct pf_keyhash), in pf_initialize()
1044 V_pf_idhash = mallocarray(V_pf_hashsize, sizeof(struct pf_idhash), in pf_initialize()
1048 "state_hashsize %lu.\n", V_pf_hashsize); in pf_initialize()
1053 V_pf_hashsize = PF_HASHSIZ; in pf_initialize()
1054 V_pf_keyhash = mallocarray(V_pf_hashsize, in pf_initialize()
1056 V_pf_idhash = mallocarray(V_pf_hashsize, in pf_initialize()
1060 V_pf_hashmask = V_pf_hashsize - 1; in pf_initialize()