Home
last modified time | relevance | path

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

/openbmc/linux/drivers/staging/rtl8192e/
H A Drtl819x_TSProc.c18 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()
H A Drtllib_rx.c455 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()
637 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket()
642 pReorderEntry->SeqNum = SeqNum; in RxReorderIndicatePacket()
643 pReorderEntry->prxb = prxb; in RxReorderIndicatePacket()
652 list_add_tail(&pReorderEntry->List, in RxReorderIndicatePacket()
704 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket()
712 __func__, pReorderEntry->SeqNum); in RxReorderIndicatePacket()
[all …]
/openbmc/linux/drivers/staging/rtl8192u/ieee80211/
H A Drtl819x_TSProc.c31 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()
H A Dieee80211_rx.c515 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
664 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket()
667 pReorderEntry->SeqNum = SeqNum; in RxReorderIndicatePacket()
668 pReorderEntry->prxb = prxb; in RxReorderIndicatePacket()
671 if (!AddReorderEntry(pTS, pReorderEntry)) { in RxReorderIndicatePacket()
718 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket()
[all …]