Lines Matching defs:rqe
539 static void wilc_wlan_rxq_add(struct wilc *wilc, struct rxq_entry_t *rqe)
545 list_add_tail(&rqe->list, &wilc->rxq_head.list);
551 struct rxq_entry_t *rqe = NULL;
555 rqe = list_first_entry(&wilc->rxq_head.list, struct rxq_entry_t,
557 list_del(&rqe->list);
560 return rqe;
1001 struct rxq_entry_t *rqe;
1004 rqe = wilc_wlan_rxq_remove(wilc);
1005 if (!rqe)
1008 buffer = rqe->buffer;
1009 size = rqe->buffer_size;
1012 kfree(rqe);
1030 struct rxq_entry_t *rqe;
1055 rqe = kmalloc(sizeof(*rqe), GFP_KERNEL);
1056 if (!rqe)
1059 rqe->buffer = buffer;
1060 rqe->buffer_size = size;
1061 wilc_wlan_rxq_add(wilc, rqe);
1238 struct rxq_entry_t *rqe;
1252 while ((rqe = wilc_wlan_rxq_remove(wilc)))
1253 kfree(rqe);