Home
last modified time | relevance | path

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

/external/usrsctp/usrsctplib/netinet/
Dsctp_bsd_addr.c809 int mbuf_threshold; local
823 mbuf_threshold = SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count);
825 mbuf_threshold = 1;
828 if (space_needed > (unsigned int)(((mbuf_threshold - 1) * MLEN) + MHLEN)) {
/external/usrsctp/usrsctplib/
Duser_mbuf.c293 int size = 0, mbuf_threshold, space_needed = len; in m_getm2() local
306 mbuf_threshold = SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count); in m_getm2()
308 mbuf_threshold = 1; in m_getm2()
312 if ((!allonebuf && len >= MCLBYTES) || (len > (int)(((mbuf_threshold - 1) * MLEN) + MHLEN))) { in m_getm2()