Searched refs:seqno (Results 1 - 11 of 11) sorted by relevance

/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/rtl8192c/
H A Dr92c_tx.c335 uint16_t seqno; local
338 seqno = ni->ni_txseqs[tid] % IEEE80211_SEQ_RANGE;
341 seqno = M_SEQNO_GET(m) % IEEE80211_SEQ_RANGE;
344 txd->txdseq = htole16(seqno);
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/rtl8812a/
H A Dr12a_tx.c336 uint16_t seqno; local
339 seqno = ni->ni_txseqs[tid];
342 seqno = M_SEQNO_GET(m) % IEEE80211_SEQ_RANGE;
345 txd->txdw9 |= htole32(SM(R12A_TXDW9_SEQ, seqno));
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_output.c898 ieee80211_seq seqno; local
971 * If the driver does seqno itself, then we can skip
986 * come out of a different seqno space.
989 seqno = ni->ni_txseqs[IEEE80211_NONQOS_TID]++;
991 seqno = ni->ni_txseqs[tid]++;
994 seqno = 0;
997 htole16(seqno << IEEE80211_SEQ_SEQ_SHIFT);
998 M_SEQNO_SET(m, seqno);
1482 ieee80211_seq seqno; local
1833 * a separate seqno spac
3716 ieee80211_seq seqno; local
[all...]
H A Dieee80211_haiku.h358 #define M_SEQNO_SET(m, seqno) \
359 ((m)->m_pkthdr.tso_segsz = (seqno))
H A Dieee80211_ht.c610 "seqno %u tid %u BA win <%u:%u> off=%d, qlen=%d, maxqlen=%d",
638 "seqno %u tid %u BA win <%u:%u>",
645 "seqno %d tid %u pktflags 0x%08x\n",
945 ieee80211_seq seqno; local
955 seqno = rap->rxa_start;
960 if (!IEEE80211_SEQ_BA_BEFORE(seqno, winstart))
964 seqno = IEEE80211_SEQ_INC(seqno);
970 seqno,
986 rap->rxa_start = seqno;
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath_tx.c576 "%s: bf=%p, nseg=%d, pktlen=%d, seqno=%d\n",
1577 * Otherwise the CCMP PN and seqno may appear out of order, causing
1897 * XXX what about locking? Or, push the seqno assign into the
1916 ieee80211_seq seqno; local
2048 seqno = ath_tx_tid_seqno_assign(sc, ni, bf, m0);
2067 /* Is ampdu pending? fetch the seqno and print it out */
2070 "%s: tid %d: ampdu pending, seqno %d\n",
2672 "%s: dobaw=0, seqno=%d, window %d:%d\n",
2679 "%s: re-added? tid=%d, seqno %d; window %d:%d; "
2692 "%s: bf=%p: outside of BAW?? tid=%d, seqno
2753 int seqno = SEQNO(old_bf->bf_state.bfs_seqno); local
2800 int seqno = SEQNO(bf->bf_state.bfs_seqno); local
2989 ieee80211_seq seqno; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/marvell88w8363/dev/mwl/
H A Dmwlhal.h242 uint32_t RxDuplicateFrames; /* rx discard for dup seqno */
516 int BarThrs, int WindowSize, uint16_t seqno);
H A Dmwlhal.c1468 const MWL_HAL_BASTREAM *s, int BarThrs, int WindowSize, uint16_t seqno)
1494 pCmd->BaInfo.CreateParams.StartSeqNo = htole16(seqno);
1467 mwl_hal_bastream_create(struct mwl_hal_vap *vap, const MWL_HAL_BASTREAM *s, int BarThrs, int WindowSize, uint16_t seqno) argument
/haiku/src/add-ons/kernel/drivers/network/ether/atheros81xx/dev/ale/
H A Dif_alereg.h665 uint32_t seqno; member in struct:rx_rs
H A Dif_ale.c2470 uint32_t length, prod, seqno, status, vtags; local
2493 seqno = ALE_RX_SEQNO(le32toh(rs->seqno));
2494 if (sc->ale_cdata.ale_rx_seqno != seqno) {
2510 "resetting!\n", seqno,
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi4965/dev/iwn/
H A Dif_iwn.c3788 * overflows 'seqno' field will be incremented:
3806 * Odd 'seqno' numbers are incremened by 2 every 2 overflows.
3807 * For even 'seqno' % 4 != 0 overflow is cyclic (0 -> +1 -> 0).
4677 uint16_t seqno = ni->ni_txseqs[tid]; local
4694 if ((seqno % 256) != ring->cur) {
4696 "%s: m=%p: seqno (%d) (%d) != ring index (%d) !\n",
4699 seqno,
4700 seqno % 256,
4706 seqno = ni->ni_txseqs[tid];
4710 htole16(seqno << IEEE80211_SEQ_SEQ_SHIF
[all...]

Completed in 130 milliseconds