Searched refs:pReorderEntry (Results 1 – 4 of 4) sorted by relevance
/linux-4.4.14/drivers/staging/rtl8192e/ |
D | rtl819x_TSProc.c | 33 struct rx_reorder_entry *pReorderEntry = NULL; in RxPktPendingTimeout() local 42 pReorderEntry = (struct rx_reorder_entry *) in RxPktPendingTimeout() 46 pRxTs->RxIndicateSeq = pReorderEntry->SeqNum; in RxPktPendingTimeout() 48 if (SN_LESS(pReorderEntry->SeqNum, in RxPktPendingTimeout() 50 SN_EQUAL(pReorderEntry->SeqNum, in RxPktPendingTimeout() 52 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout() 54 if (SN_EQUAL(pReorderEntry->SeqNum, in RxPktPendingTimeout() 61 __func__, pReorderEntry->SeqNum); in RxPktPendingTimeout() 63 pReorderEntry->prxb; in RxPktPendingTimeout() 66 list_add_tail(&pReorderEntry->List, in RxPktPendingTimeout()
|
D | rtllib_rx.c | 458 struct rx_reorder_entry *pReorderEntry) in AddReorderEntry() argument 463 if (SN_LESS(pReorderEntry->SeqNum, ((struct rx_reorder_entry *) in AddReorderEntry() 467 else if (SN_EQUAL(pReorderEntry->SeqNum, in AddReorderEntry() 474 pReorderEntry->List.next = pList->next; in AddReorderEntry() 475 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry() 476 pReorderEntry->List.prev = pList; in AddReorderEntry() 477 pList->next = &pReorderEntry->List; in AddReorderEntry() 579 struct rx_reorder_entry *pReorderEntry = NULL; in RxReorderIndicatePacket() local 653 pReorderEntry = (struct rx_reorder_entry *) in RxReorderIndicatePacket() 656 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket() [all …]
|
/linux-4.4.14/drivers/staging/rtl8192u/ieee80211/ |
D | rtl819x_TSProc.c | 30 PRX_REORDER_ENTRY pReorderEntry = NULL; in RxPktPendingTimeout() local 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() 54 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout() 56 if(SN_EQUAL(pReorderEntry->SeqNum, pRxTs->RxIndicateSeq)) in RxPktPendingTimeout() 59 …IEEE80211_DEBUG(IEEE80211_DL_REORDER,"RxPktPendingTimeout(): IndicateSeq: %d\n", pReorderEntry->Se… in RxPktPendingTimeout() 60 stats_IndicateArray[index] = pReorderEntry->prxb; in RxPktPendingTimeout() 63 list_add_tail(&pReorderEntry->List, &ieee->RxReorder_Unused_List); in RxPktPendingTimeout()
|
D | ieee80211_rx.c | 513 static bool AddReorderEntry(PRX_TS_RECORD pTS, PRX_REORDER_ENTRY pReorderEntry) in AddReorderEntry() argument 518 …if( SN_LESS(pReorderEntry->SeqNum, ((PRX_REORDER_ENTRY)list_entry(pList->next,RX_REORDER_ENTRY,Lis… in AddReorderEntry() 522 …else if( SN_EQUAL(pReorderEntry->SeqNum, ((PRX_REORDER_ENTRY)list_entry(pList->next,RX_REORDER_ENT… in AddReorderEntry() 531 pReorderEntry->List.next = pList->next; in AddReorderEntry() 532 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry() 533 pReorderEntry->List.prev = pList; in AddReorderEntry() 534 pList->next = &pReorderEntry->List; in AddReorderEntry() 596 PRX_REORDER_ENTRY pReorderEntry = NULL; in RxReorderIndicatePacket() local 661 …pReorderEntry = (PRX_REORDER_ENTRY)list_entry(ieee->RxReorder_Unused_List.next,RX_REORDER_ENTRY,Li… in RxReorderIndicatePacket() 662 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket() [all …]
|