Home
last modified time | relevance | path

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

/freebsd/sys/dev/random/
H A Drandom_harvestq.c157 } hc_entropy_ring; member
191 while (harvest_context.hc_entropy_ring.out != harvest_context.hc_entropy_ring.in) { in random_kthread()
192 ring_out = (harvest_context.hc_entropy_ring.out + 1)%RANDOM_RING_MAX; in random_kthread()
193 random_harvestq_fast_process_event(harvest_context.hc_entropy_ring.ring + ring_out); in random_kthread()
194 harvest_context.hc_entropy_ring.out = ring_out; in random_kthread()
436 harvest_context.hc_entropy_ring.in = harvest_context.hc_entropy_ring.out = 0; in random_harvestq_init()
559 ring_in = (harvest_context.hc_entropy_ring.in + 1)%RANDOM_RING_MAX; in random_harvest_queue_()
560 if (ring_in != harvest_context.hc_entropy_ring.out) { in random_harvest_queue_()
562 event = harvest_context.hc_entropy_ring.ring + ring_in; in random_harvest_queue_()
575 harvest_context.hc_entropy_ring.in = ring_in; in random_harvest_queue_()