Searched refs:pReorderEntry (Results 1 – 4 of 4) sorted by relevance
/linux-5.19.10/drivers/staging/rtl8192e/ |
D | rtl819x_TSProc.c | 26 struct rx_reorder_entry *pReorderEntry = NULL; in RxPktPendingTimeout() local 35 pReorderEntry = (struct rx_reorder_entry *) in RxPktPendingTimeout() 39 pRxTs->rx_indicate_seq = pReorderEntry->SeqNum; in RxPktPendingTimeout() 41 if (SN_LESS(pReorderEntry->SeqNum, in RxPktPendingTimeout() 43 SN_EQUAL(pReorderEntry->SeqNum, in RxPktPendingTimeout() 45 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout() 47 if (SN_EQUAL(pReorderEntry->SeqNum, in RxPktPendingTimeout() 54 __func__, pReorderEntry->SeqNum); in RxPktPendingTimeout() 56 pReorderEntry->prxb; in RxPktPendingTimeout() 59 list_add_tail(&pReorderEntry->List, in RxPktPendingTimeout()
|
D | rtllib_rx.c | 450 struct rx_reorder_entry *pReorderEntry) in AddReorderEntry() argument 455 if (SN_LESS(pReorderEntry->SeqNum, ((struct rx_reorder_entry *) in AddReorderEntry() 459 else if (SN_EQUAL(pReorderEntry->SeqNum, in AddReorderEntry() 466 pReorderEntry->List.next = pList->next; in AddReorderEntry() 467 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry() 468 pReorderEntry->List.prev = pList; in AddReorderEntry() 469 pList->next = &pReorderEntry->List; in AddReorderEntry() 571 struct rx_reorder_entry *pReorderEntry = NULL; in RxReorderIndicatePacket() local 645 pReorderEntry = (struct rx_reorder_entry *) in RxReorderIndicatePacket() 648 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket() [all …]
|
/linux-5.19.10/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 …]
|