Searched defs:pRxTs (Results 1 - 4 of 4) sorted by relevance

/drivers/staging/rtl8192e/
H A Drtl819x_BAProc.c54 static u8 RxTsDeleteBA(struct rtllib_device *ieee, struct rx_ts_record *pRxTs) argument
56 struct ba_record *pBa = &pRxTs->RxAdmittedBARecord;
458 struct rx_ts_record *pRxTs; local
460 if (!GetTs(ieee, (struct ts_common_info **)&pRxTs, dst,
468 RxTsDeleteBA(ieee, pRxTs);
527 struct rx_ts_record *pRxTs = local
529 if (RxTsDeleteBA(ieee, pRxTs))
531 &pRxTs->RxAdmittedBARecord,
558 struct rx_ts_record *pRxTs = (struct rx_ts_record *)data; local
559 struct rtllib_device *ieee = container_of(pRxTs, struc
[all...]
H A Drtl819x_TSProc.c33 struct rx_ts_record *pRxTs = (struct rx_ts_record *)data; local
34 struct rtllib_device *ieee = container_of(pRxTs, struct rtllib_device,
35 RxTsRecord[pRxTs->num]);
44 if (pRxTs->RxTimeoutIndicateSeq != 0xffff) {
45 while (!list_empty(&pRxTs->RxPendingPktList)) {
47 list_entry(pRxTs->RxPendingPktList.prev,
50 pRxTs->RxIndicateSeq = pReorderEntry->SeqNum;
52 if (SN_LESS(pReorderEntry->SeqNum, pRxTs->RxIndicateSeq) ||
53 SN_EQUAL(pReorderEntry->SeqNum, pRxTs->RxIndicateSeq)) {
57 pRxTs
[all...]
/drivers/staging/rtl8192u/ieee80211/
H A Drtl819x_BAProc.c66 * PRX_TS_RECORD pRxTs //Rx Ts which is to deactivate BA entry.
70 static u8 RxTsDeleteBA(struct ieee80211_device *ieee, PRX_TS_RECORD pRxTs) argument
72 PBA_RECORD pBa = &pRxTs->RxAdmittedBARecord;
605 PRX_TS_RECORD pRxTs; local
609 (PTS_COMMON_INFO *)&pRxTs,
619 RxTsDeleteBA(ieee, pRxTs);
698 PRX_TS_RECORD pRxTs = (PRX_TS_RECORD)pTsCommonInfo; local
699 if(RxTsDeleteBA(ieee, pRxTs))
703 &pRxTs->RxAdmittedBARecord,
738 PRX_TS_RECORD pRxTs local
[all...]
H A Drtl819x_TSProc.c27 PRX_TS_RECORD pRxTs = (PRX_TS_RECORD)data; local
28 struct ieee80211_device *ieee = container_of(pRxTs, struct ieee80211_device, RxTsRecord[pRxTs->num]);
42 if(pRxTs->RxTimeoutIndicateSeq != 0xffff)
45 while(!list_empty(&pRxTs->RxPendingPktList))
47 pReorderEntry = (PRX_REORDER_ENTRY)list_entry(pRxTs->RxPendingPktList.prev,RX_REORDER_ENTRY,List);
49 pRxTs->RxIndicateSeq = pReorderEntry->SeqNum;
51 if( SN_LESS(pReorderEntry->SeqNum, pRxTs->RxIndicateSeq) ||
52 SN_EQUAL(pReorderEntry->SeqNum, pRxTs->RxIndicateSeq) )
56 if(SN_EQUAL(pReorderEntry->SeqNum, pRxTs
[all...]

Completed in 2247 milliseconds