Lines Matching refs:m_notify
1705 struct mbuf *m_notify; in sctp_notify_authentication() local
1717 m_notify = sctp_get_mbuf_for_msg(sizeof(struct sctp_authkey_event), in sctp_notify_authentication()
1719 if (m_notify == NULL) in sctp_notify_authentication()
1723 SCTP_BUF_LEN(m_notify) = 0; in sctp_notify_authentication()
1724 auth = mtod(m_notify, struct sctp_authkey_event *); in sctp_notify_authentication()
1739 SCTP_BUF_LEN(m_notify) = sizeof(*auth); in sctp_notify_authentication()
1740 SCTP_BUF_NEXT(m_notify) = NULL; in sctp_notify_authentication()
1744 0, 0, stcb->asoc.context, 0, 0, 0, m_notify); in sctp_notify_authentication()
1747 sctp_m_freem(m_notify); in sctp_notify_authentication()
1750 control->length = SCTP_BUF_LEN(m_notify); in sctp_notify_authentication()
1753 control->tail_mbuf = m_notify; in sctp_notify_authentication()