Lines Matching defs:rqe
368 static void wilc_wlan_rxq_add(struct wilc *wilc, struct rxq_entry_t *rqe)
374 list_add_tail(&rqe->list, &wilc->rxq_head.list);
380 struct rxq_entry_t *rqe = NULL;
384 rqe = list_first_entry(&wilc->rxq_head.list, struct rxq_entry_t,
386 list_del(&rqe->list);
389 return rqe;
732 struct rxq_entry_t *rqe;
735 rqe = wilc_wlan_rxq_remove(wilc);
736 if (!rqe)
739 buffer = rqe->buffer;
740 size = rqe->buffer_size;
743 kfree(rqe);
761 struct rxq_entry_t *rqe;
786 rqe = kmalloc(sizeof(*rqe), GFP_KERNEL);
787 if (!rqe)
790 rqe->buffer = buffer;
791 rqe->buffer_size = size;
792 wilc_wlan_rxq_add(wilc, rqe);
958 struct rxq_entry_t *rqe;
969 while ((rqe = wilc_wlan_rxq_remove(wilc)))
970 kfree(rqe);