Lines Matching defs:mopt
894 struct mbuf *mopt;
907 MGET(mopt, M_DONTWAIT, MT_DATA);
908 if (mopt == NULL)
910 mopt->m_len = JUMBOOPTLEN;
911 optbuf = mtod(mopt, u_int8_t *);
913 exthdrs->ip6e_hbh = mopt;
917 mopt = exthdrs->ip6e_hbh;
918 if (m_trailingspace(mopt) < JUMBOOPTLEN) {
925 int oldoptlen = mopt->m_len;
950 memcpy(mtod(n, caddr_t), mtod(mopt, caddr_t),
953 m_freem(mopt);
954 mopt = exthdrs->ip6e_hbh = n;
956 optbuf = mtod(mopt, u_int8_t *) + mopt->m_len;
957 mopt->m_len += JUMBOOPTLEN;
966 hbh = mtod(mopt, struct ip6_hbh *);