Lines Matching refs:m_new
1084 struct mbuf *m, *m_new; in bwn_pio_tx_start() local
1114 m_new = m_defrag(*mp, M_NOWAIT); in bwn_pio_tx_start()
1115 if (m_new == NULL) { in bwn_pio_tx_start()
1121 *mp = m_new; in bwn_pio_tx_start()
1122 if (m_new->m_next != NULL) in bwn_pio_tx_start()
1125 tp->tp_m = m_new; in bwn_pio_tx_start()
1134 mtod(m_new, const void *), m_new->m_pkthdr.len); in bwn_pio_tx_start()
1231 struct mbuf *m_new; in bwn_dma_tx_start() local
1233 m_new = m_defrag(m, M_NOWAIT); in bwn_dma_tx_start()
1234 if (m_new == NULL) { in bwn_dma_tx_start()
1241 *mp = m = m_new; in bwn_dma_tx_start()