Lines Matching refs:mc
5218 struct mbuf *mc;
5272 mc = m_dup(m, M_DONTWAIT);
5273 if (mc == NULL) {
5279 mc, CHECKSUM_OPERATION_COMPUTE);
5941 struct mbuf *mc, *mc2;
6134 mc = m_dup(m, M_DONTWAIT);
6135 if (mc == NULL) {
6149 mc->m_flags |= M_BCAST;
6150 eh = mtod(mc, struct ether_header *);
6154 bridge_forward(sc, bif, mc);
6358 struct mbuf *mc;
6433 mc = m;
6436 mc = m_dup(m, M_DONTWAIT);
6437 if (mc == NULL) {
6450 mc_in = m_dup(mc, M_DONTWAIT);
6459 bridge_mac_nat_translate(&mc, &mnr, IF_LLADDR(dst_if));
6467 int i = min(mc->m_pkthdr.len, max_protohdr);
6468 mc = m_copyup(mc, i, ETHER_ALIGN);
6469 if (mc == NULL) {
6479 if (bridge_pf(&mc, dst_if, sc_filter_flags, FALSE) != 0) {
6486 if (mc == NULL) {
6495 if (mc != NULL) {
6499 error = bridge_verify_checksum(&mc,
6502 if (mc != NULL) {
6503 m_freem(mc);
6505 mc = NULL;
6508 if (mc != NULL) {
6510 NULL, dst_if, mc, cksum_op);
6546 struct mbuf *mc;
6559 mc = m_copypacket(m, M_DONTWAIT);
6560 if (mc == NULL) {
6565 (void) bridge_enqueue(sc->sc_ifp, NULL, dst_if, mc,