Searched refs:pRxTs (Results 1 – 4 of 4) sorted by relevance
/linux-4.1.27/drivers/staging/rtl8192u/ieee80211/ |
D | rtl819x_TSProc.c | 27 PRX_TS_RECORD pRxTs = (PRX_TS_RECORD)data; in RxPktPendingTimeout() local 28 …struct ieee80211_device *ieee = container_of(pRxTs, struct ieee80211_device, RxTsRecord[pRxTs->num… in RxPktPendingTimeout() 42 if(pRxTs->RxTimeoutIndicateSeq != 0xffff) in RxPktPendingTimeout() 45 while(!list_empty(&pRxTs->RxPendingPktList)) in RxPktPendingTimeout() 47 … pReorderEntry = (PRX_REORDER_ENTRY)list_entry(pRxTs->RxPendingPktList.prev,RX_REORDER_ENTRY,List); in RxPktPendingTimeout() 49 pRxTs->RxIndicateSeq = pReorderEntry->SeqNum; in RxPktPendingTimeout() 51 if( SN_LESS(pReorderEntry->SeqNum, pRxTs->RxIndicateSeq) || in RxPktPendingTimeout() 52 SN_EQUAL(pReorderEntry->SeqNum, pRxTs->RxIndicateSeq) ) in RxPktPendingTimeout() 56 if(SN_EQUAL(pReorderEntry->SeqNum, pRxTs->RxIndicateSeq)) in RxPktPendingTimeout() 57 pRxTs->RxIndicateSeq = (pRxTs->RxIndicateSeq + 1) % 4096; in RxPktPendingTimeout() [all …]
|
D | rtl819x_BAProc.c | 72 static u8 RxTsDeleteBA(struct ieee80211_device *ieee, PRX_TS_RECORD pRxTs) in RxTsDeleteBA() argument 74 PBA_RECORD pBa = &pRxTs->RxAdmittedBARecord; in RxTsDeleteBA() 601 PRX_TS_RECORD pRxTs; in ieee80211_rx_DELBA() local 605 (PTS_COMMON_INFO *)&pRxTs, in ieee80211_rx_DELBA() 615 RxTsDeleteBA(ieee, pRxTs); in ieee80211_rx_DELBA() 694 PRX_TS_RECORD pRxTs = (PRX_TS_RECORD)pTsCommonInfo; in TsInitDelBA() local 695 if(RxTsDeleteBA(ieee, pRxTs)) in TsInitDelBA() 699 &pRxTs->RxAdmittedBARecord, in TsInitDelBA() 734 PRX_TS_RECORD pRxTs = (PRX_TS_RECORD)data; in RxBaInactTimeout() local 735 …struct ieee80211_device *ieee = container_of(pRxTs, struct ieee80211_device, RxTsRecord[pRxTs->num… in RxBaInactTimeout() [all …]
|
/linux-4.1.27/drivers/staging/rtl8192e/ |
D | rtl819x_TSProc.c | 33 struct rx_ts_record *pRxTs = (struct rx_ts_record *)data; in RxPktPendingTimeout() local 34 struct rtllib_device *ieee = container_of(pRxTs, struct rtllib_device, in RxPktPendingTimeout() 35 RxTsRecord[pRxTs->num]); in RxPktPendingTimeout() 44 if (pRxTs->RxTimeoutIndicateSeq != 0xffff) { in RxPktPendingTimeout() 45 while (!list_empty(&pRxTs->RxPendingPktList)) { in RxPktPendingTimeout() 47 list_entry(pRxTs->RxPendingPktList.prev, in RxPktPendingTimeout() 50 pRxTs->RxIndicateSeq = pReorderEntry->SeqNum; in RxPktPendingTimeout() 52 if (SN_LESS(pReorderEntry->SeqNum, pRxTs->RxIndicateSeq) || in RxPktPendingTimeout() 53 SN_EQUAL(pReorderEntry->SeqNum, pRxTs->RxIndicateSeq)) { in RxPktPendingTimeout() 57 pRxTs->RxIndicateSeq)) in RxPktPendingTimeout() [all …]
|
D | rtl819x_BAProc.c | 56 static u8 RxTsDeleteBA(struct rtllib_device *ieee, struct rx_ts_record *pRxTs) in RxTsDeleteBA() argument 58 struct ba_record *pBa = &pRxTs->RxAdmittedBARecord; in RxTsDeleteBA() 461 struct rx_ts_record *pRxTs; in rtllib_rx_DELBA() local 463 if (!GetTs(ieee, (struct ts_common_info **)&pRxTs, dst, in rtllib_rx_DELBA() 472 RxTsDeleteBA(ieee, pRxTs); in rtllib_rx_DELBA() 532 struct rx_ts_record *pRxTs = in TsInitDelBA() local 534 if (RxTsDeleteBA(ieee, pRxTs)) in TsInitDelBA() 536 &pRxTs->RxAdmittedBARecord, in TsInitDelBA() 563 struct rx_ts_record *pRxTs = (struct rx_ts_record *)data; in RxBaInactTimeout() local 564 struct rtllib_device *ieee = container_of(pRxTs, struct rtllib_device, in RxBaInactTimeout() [all …]
|