Lines Matching refs:pReorderEntry

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()
642 pReorderEntry->SeqNum = SeqNum; in RxReorderIndicatePacket()
643 pReorderEntry->prxb = prxb; in RxReorderIndicatePacket()
645 if (!AddReorderEntry(pTS, pReorderEntry)) { in RxReorderIndicatePacket()
652 list_add_tail(&pReorderEntry->List, in RxReorderIndicatePacket()
689 pReorderEntry = (struct rx_reorder_entry *) in RxReorderIndicatePacket()
693 if (SN_LESS(pReorderEntry->SeqNum, pTS->rx_indicate_seq) || in RxReorderIndicatePacket()
694 SN_EQUAL(pReorderEntry->SeqNum, pTS->rx_indicate_seq)) { in RxReorderIndicatePacket()
704 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket()
706 if (SN_EQUAL(pReorderEntry->SeqNum, pTS->rx_indicate_seq)) in RxReorderIndicatePacket()
710 ieee->prxbIndicateArray[index] = pReorderEntry->prxb; in RxReorderIndicatePacket()
712 __func__, pReorderEntry->SeqNum); in RxReorderIndicatePacket()
715 list_add_tail(&pReorderEntry->List, in RxReorderIndicatePacket()