Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dip_divert.c89 #define DIVHASHSIZE (1 << 3) /* 8 entries, one cache line. */ macro
90 #define DIVHASH(port) (port % DIVHASHSIZE)
91 #define DCBHASH(dcb) ((dcb)->dcb_port % DIVHASHSIZE)
152 VNET_DEFINE_STATIC(struct divhashhead, divhash[DIVHASHSIZE]) = {};
670 for (int i = 0; i < DIVHASHSIZE; i++) in div_pcblist()