Home
last modified time | relevance | path

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

/freebsd-10-stable/sys/dev/random/
Drandom_harvestq.c77 static struct entropyfifo harvestfifo; variable
173 STAILQ_CONCAT(&local_queue, &harvestfifo.head); in random_kthread()
174 local_count += harvestfifo.count; in random_kthread()
175 harvestfifo.count = 0; in random_kthread()
238 STAILQ_INIT(&harvestfifo.head); in random_harvestq_init()
239 harvestfifo.count = 0; in random_harvestq_init()
276 while (!STAILQ_EMPTY(&harvestfifo.head)) { in random_harvestq_deinit()
277 np = STAILQ_FIRST(&harvestfifo.head); in random_harvestq_deinit()
278 STAILQ_REMOVE_HEAD(&harvestfifo.head, next); in random_harvestq_deinit()
281 harvestfifo.count = 0; in random_harvestq_deinit()
[all …]