Home | History | Annotate | Download | only in netinet

Lines Matching defs:m_asconf

2230 	struct mbuf *m_asconf, *m_asconf_chk;
2260 m_asconf = NULL;
2261 MGETHDR(m_asconf, M_DONTWAIT, MT_HEADER);
2262 if (m_asconf == NULL) {
2271 MCLGET(m_asconf, M_DONTWAIT);
2272 if ((m_asconf->m_flags & M_EXT) != M_EXT) {
2279 sctp_m_freem(m_asconf);
2284 m_asconf->m_len = 0;
2289 ptr = mtod(m_asconf, vaddr_t); /* beginning of cluster */
2301 if (m_asconf->m_len + p_length > stcb->asoc.smallest_mtu) {
2350 m_asconf->m_len += SCTP_SIZE32(p_length);
2412 m_asconf_chk->m_next = m_asconf;
2413 m_asconf_chk->m_pkthdr.len = m_asconf_chk->m_len + m_asconf->m_len;