Searched refs:m_asconf (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/sys/netinet/
H A Dsctp_asconf.c2560 struct mbuf *m_asconf, *m_asconf_chk; local
2590 m_asconf = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
2591 if (m_asconf == NULL) {
2599 SCTP_BUF_LEN(m_asconf) = 0;
2604 ptr = mtod(m_asconf, caddr_t); /* beginning of cluster */
2619 if ((SCTP_BUF_LEN(m_asconf) + p_length > stcb->asoc.smallest_mtu) ||
2620 (SCTP_BUF_LEN(m_asconf) + p_length > MCLBYTES)) {
2669 SCTP_BUF_LEN(m_asconf) += SCTP_SIZE32(p_length);
2739 SCTP_BUF_NEXT(m_asconf_chk) = m_asconf;
2740 *retlen = SCTP_BUF_LEN(m_asconf_chk) + SCTP_BUF_LEN(m_asconf);
[all...]
H A Dsctp_output.c9099 struct mbuf *m_asconf; local
9110 m_asconf = sctp_compose_asconf(stcb, &len, addr_locked);
9111 if (m_asconf == NULL) {
9117 sctp_m_freem(m_asconf);
9121 chk->data = m_asconf;

Completed in 91 milliseconds