Module Name: src Committed By: tls Date: Sun Aug 25 21:12:56 UTC 2013
Modified Files: src/sys/dev: rnd_private.h src/sys/kern: init_main.c kern_rndq.c kern_rndsink.c Log Message: Attempt to resolve locking issues at kernel startup on platforms with hardware RNGs using the polling mode of operation: 1) Initialize the rng subsystem soft interrupts as early in kernel startup as seems safe (we have no MI guarantee that softints are working at all until configure2() returns, AFAICT). This should have the rnd subsystem able to process events via softint before the network subsystem (a notorious early user of entropy) starts. 2) Remove the shortcut calls to rnd_process_events() from rnd_schedule_process(), with the result that until the softint is installed rnd_process_events() is a NOP. 3) Directly call rnd_process_events() in rnd_extract_data(), rnd_maybe_extract(), and rnd_init_softint(). This should suck up any samples actually collected as early as possible. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/dev/rnd_private.h cvs rdiff -u -r1.450 -r1.451 src/sys/kern/init_main.c cvs rdiff -u -r1.14 -r1.15 src/sys/kern/kern_rndq.c cvs rdiff -u -r1.2 -r1.3 src/sys/kern/kern_rndsink.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.