Searched refs:pReorderEntry (Results 1 – 4 of 4) sorted by relevance
/Linux-v6.6/drivers/staging/rtl8192e/ |
D | rtl819x_TSProc.c | 18 struct rx_reorder_entry *pReorderEntry = NULL; in RxPktPendingTimeout() local 27 pReorderEntry = (struct rx_reorder_entry *) in RxPktPendingTimeout() 31 pRxTs->rx_indicate_seq = pReorderEntry->SeqNum; in RxPktPendingTimeout() 33 if (SN_LESS(pReorderEntry->SeqNum, in RxPktPendingTimeout() 35 SN_EQUAL(pReorderEntry->SeqNum, in RxPktPendingTimeout() 37 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout() 39 if (SN_EQUAL(pReorderEntry->SeqNum, in RxPktPendingTimeout() 46 __func__, pReorderEntry->SeqNum); in RxPktPendingTimeout() 48 pReorderEntry->prxb; in RxPktPendingTimeout() 51 list_add_tail(&pReorderEntry->List, in RxPktPendingTimeout()
|
D | rtllib_rx.c | 439 struct rx_reorder_entry *pReorderEntry) in AddReorderEntry() argument 444 if (SN_LESS(pReorderEntry->SeqNum, ((struct rx_reorder_entry *) in AddReorderEntry() 448 else if (SN_EQUAL(pReorderEntry->SeqNum, in AddReorderEntry() 455 pReorderEntry->List.next = pList->next; in AddReorderEntry() 456 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry() 457 pReorderEntry->List.prev = pList; in AddReorderEntry() 458 pList->next = &pReorderEntry->List; in AddReorderEntry() 560 struct rx_reorder_entry *pReorderEntry = NULL; in RxReorderIndicatePacket() local 634 pReorderEntry = (struct rx_reorder_entry *) in RxReorderIndicatePacket() 637 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket() [all …]
|
/Linux-v6.6/drivers/staging/rtl8192u/ieee80211/ |
D | rtl819x_TSProc.c | 31 struct rx_reorder_entry *pReorderEntry = NULL; in RxPktPendingTimeout() local 43 pReorderEntry = list_entry(pRxTs->rx_pending_pkt_list.prev, struct rx_reorder_entry, List); 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, "%s: IndicateSeq: %d\n", __func__, pReorderEntry->SeqNum); in RxPktPendingTimeout() 55 ieee->stats_IndicateArray[index] = pReorderEntry->prxb; in RxPktPendingTimeout() 58 list_add_tail(&pReorderEntry->List, &ieee->RxReorder_Unused_List); in RxPktPendingTimeout()
|
D | ieee80211_rx.c | 504 static bool AddReorderEntry(struct rx_ts_record *pTS, struct rx_reorder_entry *pReorderEntry) in AddReorderEntry() argument 508 …if (SN_LESS(pReorderEntry->SeqNum, list_entry(pList->next, struct rx_reorder_entry, List)->SeqNum)) in AddReorderEntry() 510 …else if (SN_EQUAL(pReorderEntry->SeqNum, list_entry(pList->next, struct rx_reorder_entry, List)->S… in AddReorderEntry() 515 pReorderEntry->List.next = pList->next; in AddReorderEntry() 516 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry() 517 pReorderEntry->List.prev = pList; in AddReorderEntry() 518 pList->next = &pReorderEntry->List; in AddReorderEntry() 590 struct rx_reorder_entry *pReorderEntry = NULL; in RxReorderIndicatePacket() local 663 pReorderEntry = list_entry(ieee->RxReorder_Unused_List.next, struct rx_reorder_entry, List); in RxReorderIndicatePacket() 664 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket() [all …]
|