Index: sys/kern/kern_rndq.c =================================================================== RCS file: /cvsroot/src/sys/kern/kern_rndq.c,v retrieving revision 1.80 diff -p -u -r1.80 kern_rndq.c --- sys/kern/kern_rndq.c 17 Feb 2016 01:23:32 -0000 1.80 +++ sys/kern/kern_rndq.c 17 Feb 2016 19:28:01 -0000 @@ -297,15 +297,15 @@ rnd_getmore(size_t byteswanted) mutex_spin_exit(&rnd_global.lock); /* - * Assume some callback is likely to have entered entropy - * synchronously. In that case, we may need to distribute - * entropy to waiters. Do that, if we can do it - * asynchronously. (Otherwise we may end up trying to - * distribute to the very rndsink that is trying to get more - * entropy in the first place, leading to lock recursion in - * that rndsink's callback.) + * Check whether we got entropy samples to process. In that + * case, we may need to distribute entropy to waiters. Do + * that, if we can do it asynchronously. + * + * - Conditionally because we don't want a softint loop. + * - Asynchronously because if we did it synchronously, we may + * end up with lock recursion on rndsinks_lock. */ - if (__predict_true(rnd_process)) + if (!SIMPLEQ_EMPTY(&rnd_samples.q) && rnd_process != NULL) rnd_schedule_process(); }