Searched refs:mnew (Results 1 - 10 of 10) sorted by relevance

/freebsd-9.3-release/sys/dev/ipw/
H A Dif_ipw.c1191 struct mbuf *mnew, *m; local
1210 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
1211 if (mnew == NULL) {
1219 error = bus_dmamap_load(sc->rxbuf_dmat, sbuf->map, mtod(mnew, void *),
1222 m_freem(mnew);
1242 sbuf->m = mnew;
1600 struct mbuf *mnew; local
1654 mnew = m_defrag(m0, M_NOWAIT);
1655 if (mnew == NULL) {
1661 m0 = mnew;
[all...]
/freebsd-9.3-release/sys/dev/ral/
H A Drt2661.c994 struct mbuf *mnew, *m; local
1033 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
1034 if (mnew == NULL) {
1044 mtod(mnew, void *), MCLBYTES, rt2661_dma_map_addr,
1047 m_freem(mnew);
1067 data->m = mnew;
1470 struct mbuf *mnew; local
1537 mnew = m_defrag(m0, M_NOWAIT);
1538 if (mnew == NULL) {
1544 m0 = mnew;
[all...]
H A Drt2560.c1126 struct mbuf *mnew, *m; local
1163 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
1164 if (mnew == NULL) {
1174 mtod(mnew, void *), MCLBYTES, rt2560_dma_map_addr,
1177 m_freem(mnew);
1197 data->m = mnew;
1786 struct mbuf *mnew; local
1847 mnew = m_defrag(m0, M_NOWAIT);
1848 if (mnew == NULL) {
1854 m0 = mnew;
[all...]
/freebsd-9.3-release/sys/vm/
H A Dvm_page.c2978 vm_page_t mnew; local
2994 mnew = vm_page_alloc(object, pindex, VM_ALLOC_NORMAL | VM_ALLOC_NOBUSY);
2995 if (mnew == NULL) {
3019 vm_page_lock(mnew);
3020 vm_page_free(mnew);
3021 vm_page_unlock(mnew);
3025 pmap_copy_page(m, mnew);
3026 mnew->valid = VM_PAGE_BITS_ALL;
3027 vm_page_dirty(mnew);
3028 mnew
[all...]
/freebsd-9.3-release/sys/dev/rt/
H A Dif_rt.c1598 struct mbuf *m, *mnew; local
1641 mnew = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR,
1643 if (mnew == NULL) {
1649 mnew->m_len = mnew->m_pkthdr.len = MJUMPAGESIZE;
1652 ring->spare_dma_map, mnew, segs, &nsegs, BUS_DMA_NOWAIT);
1659 m_freem(mnew);
1684 data->m = mnew;
/freebsd-9.3-release/sys/dev/iwi/
H A Dif_iwi.c1198 struct mbuf *mnew, *m; local
1231 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
1232 if (mnew == NULL) {
1240 mtod(mnew, void *), MCLBYTES, iwi_dma_map_addr, &data->physaddr,
1243 m_freem(mnew);
1263 data->m = mnew;
1784 struct mbuf *mnew; local
1879 mnew = m_defrag(m0, M_NOWAIT);
1880 if (mnew == NULL) {
1886 m0 = mnew;
[all...]
/freebsd-9.3-release/sys/dev/wpi/
H A Dif_wpi.c1453 struct mbuf *m, *mnew; local
1489 mnew = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR, MJUMPAGESIZE);
1490 if (mnew == NULL) {
1499 mtod(mnew, caddr_t), MJUMPAGESIZE,
1504 m_freem(mnew);
1516 data->m = mnew;
1870 struct mbuf *mnew; local
1971 mnew = m_defrag(m0, M_NOWAIT);
1972 if (mnew == NULL) {
1978 m0 = mnew;
[all...]
/freebsd-9.3-release/sys/dev/usb/wlan/
H A Dif_uath.c2548 struct mbuf *m = data->m, *mnew, *mp; local
2618 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
2619 if (mnew == NULL) {
2629 data->m = mnew;
2630 data->buf = mtod(mnew, uint8_t *);
H A Dif_urtw.c3988 struct mbuf *m, *mnew; local
4032 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
4033 if (mnew == NULL) {
4039 data->m = mnew;
4040 data->buf = mtod(mnew, uint8_t *);
/freebsd-9.3-release/sys/dev/malo/
H A Dif_malo.c2041 struct mbuf *m, *mnew; local
2132 mnew = malo_getrxmbuf(sc, bf);
2133 if (mnew == NULL) {
2142 bf->bf_m = mnew;

Completed in 279 milliseconds