Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/staging/rtl8192u/ieee80211/
Drtl819x_TSProc.c31 PRX_REORDER_ENTRY pReorderEntry = NULL; in RxPktPendingTimeout() local
43pReorderEntry = (PRX_REORDER_ENTRY)list_entry(pRxTs->rx_pending_pkt_list.prev,RX_REORDER_ENTRY,Lis… in RxPktPendingTimeout()
45 pRxTs->rx_indicate_seq = pReorderEntry->SeqNum; in RxPktPendingTimeout()
47 if( SN_LESS(pReorderEntry->SeqNum, pRxTs->rx_indicate_seq) || in RxPktPendingTimeout()
48 SN_EQUAL(pReorderEntry->SeqNum, pRxTs->rx_indicate_seq) ) { in RxPktPendingTimeout()
49 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout()
51 if(SN_EQUAL(pReorderEntry->SeqNum, pRxTs->rx_indicate_seq)) in RxPktPendingTimeout()
54 …IEEE80211_DEBUG(IEEE80211_DL_REORDER,"RxPktPendingTimeout(): IndicateSeq: %d\n", pReorderEntry->Se… in RxPktPendingTimeout()
55 ieee->stats_IndicateArray[index] = pReorderEntry->prxb; in RxPktPendingTimeout()
58 list_add_tail(&pReorderEntry->List, &ieee->RxReorder_Unused_List); in RxPktPendingTimeout()
Dieee80211_rx.c511 static bool AddReorderEntry(struct rx_ts_record *pTS, PRX_REORDER_ENTRY pReorderEntry) in AddReorderEntry() argument
516 …if( SN_LESS(pReorderEntry->SeqNum, ((PRX_REORDER_ENTRY)list_entry(pList->next,RX_REORDER_ENTRY,Lis… in AddReorderEntry()
520 …else if( SN_EQUAL(pReorderEntry->SeqNum, ((PRX_REORDER_ENTRY)list_entry(pList->next,RX_REORDER_ENT… in AddReorderEntry()
529 pReorderEntry->List.next = pList->next; in AddReorderEntry()
530 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry()
531 pReorderEntry->List.prev = pList; in AddReorderEntry()
532 pList->next = &pReorderEntry->List; in AddReorderEntry()
592 PRX_REORDER_ENTRY pReorderEntry = NULL; in RxReorderIndicatePacket() local
666pReorderEntry = (PRX_REORDER_ENTRY)list_entry(ieee->RxReorder_Unused_List.next,RX_REORDER_ENTRY,Li… in RxReorderIndicatePacket()
667 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket()
[all …]
/Linux-v4.19/drivers/staging/rtl8192e/
Drtl819x_TSProc.c34 struct rx_reorder_entry *pReorderEntry = NULL; in RxPktPendingTimeout() local
43 pReorderEntry = (struct rx_reorder_entry *) in RxPktPendingTimeout()
47 pRxTs->RxIndicateSeq = pReorderEntry->SeqNum; in RxPktPendingTimeout()
49 if (SN_LESS(pReorderEntry->SeqNum, in RxPktPendingTimeout()
51 SN_EQUAL(pReorderEntry->SeqNum, in RxPktPendingTimeout()
53 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout()
55 if (SN_EQUAL(pReorderEntry->SeqNum, in RxPktPendingTimeout()
62 __func__, pReorderEntry->SeqNum); in RxPktPendingTimeout()
64 pReorderEntry->prxb; in RxPktPendingTimeout()
67 list_add_tail(&pReorderEntry->List, in RxPktPendingTimeout()
Drtllib_rx.c458 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 …]