Home
last modified time | relevance | path

Searched refs:m_rxpending (Results 1 – 4 of 4) sorted by relevance

/dragonfly/sys/dev/netif/ath/ath/
H A Dif_ath_rx.c747 if (re->m_rxpending != NULL) { in ath_rx_pkt()
748 m_freem(re->m_rxpending); in ath_rx_pkt()
749 re->m_rxpending = NULL; in ath_rx_pkt()
782 if (re->m_rxpending != NULL) { in ath_rx_pkt()
785 m_freem(re->m_rxpending); in ath_rx_pkt()
788 re->m_rxpending = m; in ath_rx_pkt()
791 } else if (re->m_rxpending != NULL) { in ath_rx_pkt()
797 re->m_rxpending->m_next = m; in ath_rx_pkt()
798 re->m_rxpending->m_pkthdr.len += len; in ath_rx_pkt()
799 m = re->m_rxpending; in ath_rx_pkt()
[all …]
H A Dif_ath_rx_edma.c188 if (sc->sc_rxedma[HAL_RX_QUEUE_HP].m_rxpending) { in ath_edma_stoprecv()
189 m_freem(sc->sc_rxedma[HAL_RX_QUEUE_HP].m_rxpending); in ath_edma_stoprecv()
190 sc->sc_rxedma[HAL_RX_QUEUE_HP].m_rxpending = NULL; in ath_edma_stoprecv()
193 if (sc->sc_rxedma[HAL_RX_QUEUE_LP].m_rxpending) { in ath_edma_stoprecv()
194 m_freem(sc->sc_rxedma[HAL_RX_QUEUE_LP].m_rxpending); in ath_edma_stoprecv()
195 sc->sc_rxedma[HAL_RX_QUEUE_LP].m_rxpending = NULL; in ath_edma_stoprecv()
884 if (re->m_rxpending != NULL) { in ath_edma_rxfifo_flush()
885 m_freem(re->m_rxpending); in ath_edma_rxfifo_flush()
886 re->m_rxpending = NULL; in ath_edma_rxfifo_flush()
930 re->m_rxpending = NULL; in ath_edma_setup_rxfifo()
H A Dif_ath_sysctl.c542 sc->sc_rxedma[i].m_rxpending, in ath_sysctl_txagg()
H A Dif_athvar.h544 struct mbuf *m_rxpending; member