Home
last modified time | relevance | path

Searched refs:mnew (Results 1 – 11 of 11) sorted by relevance

/freebsd/sys/dev/rtwn/pci/
H A Drtwn_pci_tx.c143 struct mbuf *mnew; in rtwn_pci_tx_start_frame() local
145 mnew = rtwn_mbuf_defrag(m, M_NOWAIT); in rtwn_pci_tx_start_frame()
146 if (mnew == NULL) { in rtwn_pci_tx_start_frame()
150 m = mnew; in rtwn_pci_tx_start_frame()
/freebsd/sys/dev/ipw/
H A Dif_ipw.c1160 struct mbuf *mnew, *m; in ipw_rx_data_intr() local
1179 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in ipw_rx_data_intr()
1180 if (mnew == NULL) { in ipw_rx_data_intr()
1188 error = bus_dmamap_load(sc->rxbuf_dmat, sbuf->map, mtod(mnew, void *), in ipw_rx_data_intr()
1191 m_freem(mnew); in ipw_rx_data_intr()
1211 sbuf->m = mnew; in ipw_rx_data_intr()
1553 struct mbuf *mnew; in ipw_tx_start() local
1607 mnew = m_defrag(m0, M_NOWAIT); in ipw_tx_start()
1608 if (mnew == NULL) { in ipw_tx_start()
1614 m0 = mnew; in ipw_tx_start()
/freebsd/sys/dev/ral/
H A Drt2661.c964 struct mbuf *mnew, *m; in rt2661_rx_intr() local
1003 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in rt2661_rx_intr()
1004 if (mnew == NULL) { in rt2661_rx_intr()
1014 mtod(mnew, void *), MCLBYTES, rt2661_dma_map_addr, in rt2661_rx_intr()
1017 m_freem(mnew); in rt2661_rx_intr()
1037 data->m = mnew; in rt2661_rx_intr()
1418 struct mbuf *mnew; in rt2661_tx_data() local
1482 mnew = m_defrag(m0, M_NOWAIT); in rt2661_tx_data()
1483 if (mnew == NULL) { in rt2661_tx_data()
1489 m0 = mnew; in rt2661_tx_data()
H A Drt2560.c1092 struct mbuf *mnew, *m; in rt2560_decryption_intr() local
1129 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in rt2560_decryption_intr()
1130 if (mnew == NULL) { in rt2560_decryption_intr()
1140 mtod(mnew, void *), MCLBYTES, rt2560_dma_map_addr, in rt2560_decryption_intr()
1143 m_freem(mnew); in rt2560_decryption_intr()
1163 data->m = mnew; in rt2560_decryption_intr()
1727 struct mbuf *mnew; in rt2560_tx_data() local
1787 mnew = m_defrag(m0, M_NOWAIT); in rt2560_tx_data()
1788 if (mnew == NULL) { in rt2560_tx_data()
1794 m0 = mnew; in rt2560_tx_data()
/freebsd/sys/vm/
H A Dvm_page.c2014 vm_page_replace_hold(vm_page_t mnew, vm_object_t object, vm_pindex_t pindex, in vm_page_replace_hold() argument
2022 KASSERT(mnew->object == NULL && (mnew->ref_count & VPRC_OBJREF) == 0, in vm_page_replace_hold()
2023 ("vm_page_replace: page %p already in object", mnew)); in vm_page_replace_hold()
2031 mnew->object = object; in vm_page_replace_hold()
2032 mnew->pindex = pindex; in vm_page_replace_hold()
2033 atomic_set_int(&mnew->ref_count, VPRC_OBJREF); in vm_page_replace_hold()
2034 mret = vm_radix_replace(&object->rtree, mnew); in vm_page_replace_hold()
2038 (mnew->oflags & VPO_UNMANAGED), in vm_page_replace_hold()
2042 TAILQ_INSERT_AFTER(&object->memq, mold, mnew, listq); in vm_page_replace_hold()
2051 if (pmap_page_is_write_mapped(mnew)) in vm_page_replace_hold()
[all …]
H A Dvm_page.h686 void vm_page_replace(vm_page_t mnew, vm_object_t object,
/freebsd/sys/dev/iwi/
H A Dif_iwi.c1181 struct mbuf *mnew, *m; in iwi_frame_intr() local
1214 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in iwi_frame_intr()
1215 if (mnew == NULL) { in iwi_frame_intr()
1223 mtod(mnew, void *), MCLBYTES, iwi_dma_map_addr, &data->physaddr, in iwi_frame_intr()
1226 m_freem(mnew); in iwi_frame_intr()
1246 data->m = mnew; in iwi_frame_intr()
1777 struct mbuf *mnew; in iwi_tx_start() local
1872 mnew = m_defrag(m0, M_NOWAIT); in iwi_tx_start()
1873 if (mnew == NULL) { in iwi_tx_start()
1879 m0 = mnew; in iwi_tx_start()
/freebsd/contrib/unbound/validator/
H A Dautotrust.c2063 time_t mold, mnew; in set_next_probe() local
2089 mnew = wait_probe_time(env->anchors); in set_next_probe()
2094 if(mold != mnew) { in set_next_probe()
2108 time_t mold, mnew; in autr_tp_remove() local
2134 mnew = wait_probe_time(env->anchors); in autr_tp_remove()
2149 if(mold != mnew) { in autr_tp_remove()
/freebsd/sys/dev/malo/
H A Dif_malo.c1929 struct mbuf *m, *mnew; in malo_rx_proc() local
2019 mnew = malo_getrxmbuf(sc, bf); in malo_rx_proc()
2020 if (mnew == NULL) { in malo_rx_proc()
2029 bf->bf_m = mnew; in malo_rx_proc()
/freebsd/sys/dev/usb/wlan/
H A Dif_uath.c2483 struct mbuf *m = data->m, *mnew, *mp; in uath_data_rxeof() local
2574 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in uath_data_rxeof()
2575 if (mnew == NULL) { in uath_data_rxeof()
2585 data->m = mnew; in uath_data_rxeof()
2586 data->buf = mtod(mnew, uint8_t *); in uath_data_rxeof()
H A Dif_urtw.c3950 struct mbuf *m, *mnew; in urtw_rxeof() local
4001 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in urtw_rxeof()
4002 if (mnew == NULL) in urtw_rxeof()
4006 data->m = mnew; in urtw_rxeof()
4007 data->buf = mtod(mnew, uint8_t *); in urtw_rxeof()