Home
last modified time | relevance | path

Searched refs:pReorderEntry (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/drivers/staging/rtl8192u/ieee80211/
Drtl819x_TSProc.c30 PRX_REORDER_ENTRY pReorderEntry = NULL; in RxPktPendingTimeout() local
47pReorderEntry = (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()
Dieee80211_rx.c518 static bool AddReorderEntry(PRX_TS_RECORD pTS, PRX_REORDER_ENTRY pReorderEntry) in AddReorderEntry() argument
523 …if( SN_LESS(pReorderEntry->SeqNum, ((PRX_REORDER_ENTRY)list_entry(pList->next,RX_REORDER_ENTRY,Lis… in AddReorderEntry()
527 …else if( SN_EQUAL(pReorderEntry->SeqNum, ((PRX_REORDER_ENTRY)list_entry(pList->next,RX_REORDER_ENT… in AddReorderEntry()
536 pReorderEntry->List.next = pList->next; in AddReorderEntry()
537 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry()
538 pReorderEntry->List.prev = pList; in AddReorderEntry()
539 pList->next = &pReorderEntry->List; in AddReorderEntry()
603 PRX_REORDER_ENTRY pReorderEntry = NULL; in RxReorderIndicatePacket() local
668pReorderEntry = (PRX_REORDER_ENTRY)list_entry(ieee->RxReorder_Unused_List.next,RX_REORDER_ENTRY,Li… in RxReorderIndicatePacket()
669 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket()
[all …]
/linux-4.1.27/drivers/staging/rtl8192e/
Drtl819x_TSProc.c37 struct rx_reorder_entry *pReorderEntry = NULL; in RxPktPendingTimeout() local
46 pReorderEntry = (struct rx_reorder_entry *) 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()
54 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout()
56 if (SN_EQUAL(pReorderEntry->SeqNum, in RxPktPendingTimeout()
63 __func__, pReorderEntry->SeqNum); in RxPktPendingTimeout()
65 pReorderEntry->prxb; in RxPktPendingTimeout()
68 list_add_tail(&pReorderEntry->List, in RxPktPendingTimeout()
Drtllib_rx.c445 struct rx_reorder_entry *pReorderEntry) in AddReorderEntry() argument
450 if (SN_LESS(pReorderEntry->SeqNum, ((struct rx_reorder_entry *) in AddReorderEntry()
454 else if (SN_EQUAL(pReorderEntry->SeqNum, in AddReorderEntry()
461 pReorderEntry->List.next = pList->next; in AddReorderEntry()
462 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry()
463 pReorderEntry->List.prev = pList; in AddReorderEntry()
464 pList->next = &pReorderEntry->List; in AddReorderEntry()
555 struct rx_reorder_entry *pReorderEntry = NULL; in RxReorderIndicatePacket() local
623 pReorderEntry = (struct rx_reorder_entry *) in RxReorderIndicatePacket()
626 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket()
[all …]