Lines Matching refs:mout

11111 	struct mbuf *mout;  in sctp_send_resp_msg()  local
11171 mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA); in sctp_send_resp_msg()
11172 if (mout == NULL) { in sctp_send_resp_msg()
11178 SCTP_BUF_RESV_UF(mout, max_linkhdr); in sctp_send_resp_msg()
11179 SCTP_BUF_LEN(mout) = len; in sctp_send_resp_msg()
11180 SCTP_BUF_NEXT(mout) = cause; in sctp_send_resp_msg()
11181 M_SETFIB(mout, fibnum); in sctp_send_resp_msg()
11182 mout->m_pkthdr.flowid = mflowid; in sctp_send_resp_msg()
11183 M_HASHTYPE_SET(mout, mflowtype); in sctp_send_resp_msg()
11195 ip = mtod(mout, struct ip *); in sctp_send_resp_msg()
11218 ip6 = mtod(mout, struct ip6_hdr *); in sctp_send_resp_msg()
11237 shout = mtod(mout, struct sctphdr *); in sctp_send_resp_msg()
11243 sctp_m_freem(mout); in sctp_send_resp_msg()
11281 sctp_m_freem(mout); in sctp_send_resp_msg()
11284 SCTP_ATTACH_CHAIN(o_pak, mout, len); in sctp_send_resp_msg()
11297 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr)); in sctp_send_resp_msg()
11303 mout->m_pkthdr.csum_flags = CSUM_SCTP; in sctp_send_resp_msg()
11304 mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); in sctp_send_resp_msg()
11320 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); in sctp_send_resp_msg()
11326 mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; in sctp_send_resp_msg()
11327 mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); in sctp_send_resp_msg()
11342 sctp_m_freem(mout); in sctp_send_resp_msg()
11343 SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); in sctp_send_resp_msg()