LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 2/2] UML - add back accidentally removed error
@ 2007-02-22 22:45 Jeff Dike
0 siblings, 0 replies; only message in thread
From: Jeff Dike @ 2007-02-22 22:45 UTC (permalink / raw)
To: Andrew Morton, Blaisorblade; +Cc: LKML, uml-devel
In the 2.6.20 hang patch, I accidentally threw out an error message.
This puts it back.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
--
arch/um/os-Linux/sigio.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
Index: linux-2.6.18-mm/arch/um/os-Linux/sigio.c
===================================================================
--- linux-2.6.18-mm.orig/arch/um/os-Linux/sigio.c 2007-02-20 16:12:28.000000000 -0500
+++ linux-2.6.18-mm/arch/um/os-Linux/sigio.c 2007-02-22 13:05:04.000000000 -0500
@@ -334,8 +334,11 @@ void maybe_sigio_broken(int fd, int read
sigio_lock();
err = need_poll(&all_sigio_fds, all_sigio_fds.used + 1);
- if(err)
+ if(err){
+ printk("maybe_sigio_broken - failed to add pollfd for "
+ "descriptor %d\n", fd);
goto out;
+ }
all_sigio_fds.poll[all_sigio_fds.used++] =
((struct pollfd) { .fd = fd,
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-02-22 22:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-22 22:45 [PATCH 2/2] UML - add back accidentally removed error Jeff Dike
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).