Searched refs:max_protohdr (Results 1 – 3 of 3) sorted by relevance
| /freebsd/sys/kern/ |
| H A D | uipc_mbuf.c | 125 u_int max_protohdr = 40; variable 129 SYSCTL_INT(_kern_ipc, KIPC_MAX_PROTOHDR, max_protohdr, CTLFLAG_RD, 130 &max_protohdr, 40, "Size of largest protocol layer header"); 138 max_hdr = max_linkhdr + max_protohdr; in max_hdr_grow() 156 if (new > max_protohdr) { in max_protohdr_grow() 157 max_protohdr = new; in max_protohdr_grow() 962 count = min(min(max(len, max_protohdr), space), n->m_len); in m_pullup() 1008 count = min(min(max(len, max_protohdr), space), n->m_len); in m_copyup()
|
| /freebsd/sys/sys/ |
| H A D | mbuf.h | 1311 extern u_int max_protohdr; /* Largest protocol header */
|
| /freebsd/sys/net/ |
| H A D | if_bridge.c | 2978 int i = min(mc2->m_pkthdr.len, max_protohdr); in bridge_input() 3215 i = min(mc->m_pkthdr.len, max_protohdr); in bridge_broadcast()
|