Searched refs:mprot (Results 1 - 6 of 6) sorted by relevance

/freebsd-11.0-release/sys/dev/ral/
H A Drt2560.c1603 struct mbuf *mprot; local
1626 mprot = ieee80211_alloc_rts(ic, wh->i_addr1, wh->i_addr2, dur);
1628 mprot = ieee80211_alloc_cts(ic, ni->ni_vap->iv_myaddr, dur);
1630 if (mprot == NULL) {
1639 mprot, segs, &nsegs, 0);
1643 m_freem(mprot);
1647 data->m = mprot;
1652 rt2560_setup_tx_desc(sc, desc, flags, mprot->m_pkthdr.len, protrate, 1,
H A Drt2661.c1370 struct mbuf *mprot; local
1393 mprot = ieee80211_alloc_rts(ic, wh->i_addr1, wh->i_addr2, dur);
1395 mprot = ieee80211_alloc_cts(ic, ni->ni_vap->iv_myaddr, dur);
1397 if (mprot == NULL) {
1405 error = bus_dmamap_load_mbuf_sg(txq->data_dmat, data->map, mprot, segs,
1410 m_freem(mprot);
1414 data->m = mprot;
1419 rt2661_setup_tx_desc(sc, desc, flags, 0, mprot->m_pkthdr.len,
/freebsd-11.0-release/sys/dev/usb/wlan/
H A Dif_ural.c1138 struct mbuf *mprot; local
1159 mprot = ieee80211_alloc_rts(ic, wh->i_addr1, wh->i_addr2, dur);
1161 mprot = ieee80211_alloc_cts(ic, ni->ni_vap->iv_myaddr, dur);
1163 if (mprot == NULL) {
1171 data->m = mprot;
1174 ural_setup_tx_desc(sc, &data->desc, flags, mprot->m_pkthdr.len, protrate);
H A Dif_rum.c1375 struct mbuf *mprot; local
1396 mprot = ieee80211_alloc_rts(ic, wh->i_addr1, wh->i_addr2, dur);
1398 mprot = ieee80211_alloc_cts(ic, ni->ni_vap->iv_myaddr, dur);
1400 if (mprot == NULL) {
1408 data->m = mprot;
1412 mprot->m_pkthdr.len, protrate);
H A Dif_run.c3481 struct mbuf *mprot; local
3518 mprot = ieee80211_alloc_rts(ic, wh->i_addr1, wh->i_addr2, dur);
3520 mprot = ieee80211_alloc_cts(ic, ni->ni_vap->iv_myaddr, dur);
3522 if (mprot == NULL) {
3540 data->m = mprot;
/freebsd-11.0-release/sys/dev/bwn/
H A Dif_bwn.c6202 struct mbuf *mprot; local
6355 mprot = ieee80211_alloc_cts(ic, ni->ni_vap->iv_myaddr,
6357 KASSERT(mprot != NULL, ("failed to alloc mbuf\n"));
6358 bcopy(mtod(mprot, uint8_t *), (uint8_t *)cts,
6359 mprot->m_pkthdr.len);
6360 m_freem(mprot);
6382 mprot = ieee80211_alloc_rts(ic, wh->i_addr1,
6384 KASSERT(mprot != NULL, ("failed to alloc mbuf\n"));
6385 bcopy(mtod(mprot, uint8_t *), (uint8_t *)rts,
6386 mprot
[all...]

Completed in 93 milliseconds