alistair23-linux/arch/um/os-Linux
Jeff Dike 5d33e4d7fd uml: random driver fixes
The random driver would essentially hang if the host's /dev/random returned
-EAGAIN.  There was a test of need_resched followed by a schedule inside the
loop, but that didn't help and it's the wrong way to work anyway.

The right way is to ask for an interrupt when there is input available from
the host and handle it then rather than polling.

Now, when the host's /dev/random returns -EAGAIN, the driver asks for a wakeup
when there's randomness available again and sleeps.  The interrupt routine
just wakes up whatever processes are sleeping on host_read_wait.

There is an atomic_t, host_sleep_count, which counts the number of processes
waiting for randomness.  When this reaches zero, the interrupt is disabled.

An added complication is that async I/O notification was only recently added
to /dev/random (by me), so essentially all hosts will lack it.  So, we use the
sigio workaround here, which is to have a separate thread poll on the
descriptor and send an interrupt when there is input on it.  This mechanism is
activated when a process gets -EAGAIN (activating this multiple times is
harmless, if a bit wasteful) and deactivated by the last process still
waiting.

The module name was changed from "random" to "hw_random" in order for udev to
recognize it.

The sigio workaround needed some changes.  sigio_broken was added for cases
when we know that async notification doesn't work.  This is now called from
maybe_sigio_broken, which deals with pts devices.

Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-05-13 08:02:22 -07:00
..
drivers uml: fix build when SLOB is enabled 2008-05-13 08:02:22 -07:00
include uml: style fixes in arch/um/os-Linux 2008-02-08 09:22:42 -08:00
skas uml: style fixes 2008-05-13 08:02:21 -07:00
sys-i386 uml: tidy ptrace interface 2008-05-13 08:02:21 -07:00
sys-x86_64 uml: fix FP register corruption 2008-02-23 17:12:15 -08:00
aio.c uml: style fixes in arch/um/os-Linux 2008-02-08 09:22:42 -08:00
elf_aux.c [PATCH] uml: host VDSO fix 2007-03-01 14:53:38 -08:00
execvp.c [PATCH] uml: make execvp safe for our usage 2006-11-25 13:28:34 -08:00
file.c uml: implement O_APPEND 2008-02-05 09:44:30 -08:00
helper.c uml: fix build when SLOB is enabled 2008-05-13 08:02:22 -07:00
irq.c uml: remove init_irq_signals 2008-02-05 09:44:30 -08:00
main.c uml: fix build when SLOB is enabled 2008-05-13 08:02:22 -07:00
Makefile uml: tidy kern_util.h 2008-02-05 09:44:26 -08:00
mem.c uml: improved error handling while locating temp dir 2008-02-08 09:22:43 -08:00
process.c uml: style fixes in arch/um/os-Linux 2008-02-08 09:22:42 -08:00
registers.c uml: kill processes instead of panicing kernel 2008-02-05 09:44:28 -08:00
sigio.c uml: random driver fixes 2008-05-13 08:02:22 -07:00
signal.c uml: style fixes in arch/um/os-Linux 2008-02-08 09:22:42 -08:00
start_up.c uml: redo host capability detection and disabling 2008-05-13 08:02:21 -07:00
time.c uml: after_sleep_interval should return something 2007-12-03 08:13:17 -08:00
tls.c uml: style fixes pass 1 2007-10-16 09:43:05 -07:00
tty.c uml: tidy kern_util.h 2008-02-05 09:44:26 -08:00
tty_log.c uml: tidy kern_util.h 2008-02-05 09:44:26 -08:00
uaccess.c uml: style fixes in arch/um/os-Linux 2008-02-08 09:22:42 -08:00
umid.c uml: style fixes pass 3 2007-10-16 09:43:05 -07:00
user_syms.c uml: style fixes in arch/um/os-Linux 2008-02-08 09:22:42 -08:00
util.c uml: style fixes in arch/um/os-Linux 2008-02-08 09:22:42 -08:00