diff options
author | Eduard-Gabriel Munteanu <maxdamage@aladin.ro> | 2007-07-16 02:38:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-16 12:05:38 -0400 |
commit | 89df6bfc04059716de2eb2fe529f05b3e124fafd (patch) | |
tree | 5f28a79bc65549f48e153f18b1692d9cf462c628 /arch/um/drivers/ubd_user.c | |
parent | e18eecb8b35703a5eea73ee2b45324262029e62c (diff) |
uml: DEBUG_SHIRQ fixes
DEBUG_SHIRQ generates spurious interrupts, triggering handlers such as
mconsole_interrupt() or line_interrupt(). They expect data to be available to
be read from their sockets/pipes, but in the case of spurious interrupts, the
host didn't actually send anything, so UML hangs in read() and friends.
Setting those fd's as O_NONBLOCK makes DEBUG_SHIRQ-enabled UML kernels boot
and run correctly.
Signed-off-by: Eduard-Gabriel Munteanu <maxdamage@aladin.ro>
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>
Diffstat (limited to 'arch/um/drivers/ubd_user.c')
-rw-r--r-- | arch/um/drivers/ubd_user.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/um/drivers/ubd_user.c b/arch/um/drivers/ubd_user.c index 4707b3f14c2f..41d254bd38df 100644 --- a/arch/um/drivers/ubd_user.c +++ b/arch/um/drivers/ubd_user.c | |||
@@ -43,6 +43,12 @@ int start_io_thread(unsigned long sp, int *fd_out) | |||
43 | kernel_fd = fds[0]; | 43 | kernel_fd = fds[0]; |
44 | *fd_out = fds[1]; | 44 | *fd_out = fds[1]; |
45 | 45 | ||
46 | err = os_set_fd_block(*fd_out, 0); | ||
47 | if (err) { | ||
48 | printk("start_io_thread - failed to set nonblocking I/O.\n"); | ||
49 | goto out_close; | ||
50 | } | ||
51 | |||
46 | pid = clone(io_thread, (void *) sp, CLONE_FILES | CLONE_VM | SIGCHLD, | 52 | pid = clone(io_thread, (void *) sp, CLONE_FILES | CLONE_VM | SIGCHLD, |
47 | NULL); | 53 | NULL); |
48 | if(pid < 0){ | 54 | if(pid < 0){ |