diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-05-06 17:51:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 15:13:00 -0400 |
commit | f34d9d2dcb7f17b64124841345b23adc0843e7a5 (patch) | |
tree | 0bb200273bcc37da8dd32945ae25c213c9efe2c2 /arch/um/drivers/daemon_user.c | |
parent | b16895b63c504698b0c3ab26ca3c41a4fa162a42 (diff) |
uml: network interface hotplug error handling
This fixes a number of problems associated with network interface hotplug.
The userspace initialization function can fail in some cases, but the
failure was never passed back to eth_configure, which proceeded with the
configuration. This results in a zombie device that is present, but can't
work. This is fixed by allowing the initialization routines to return an
error, which is checked, and the configuration aborted on failure.
eth_configure failed to check for many failures. Even when it did check,
it didn't undo whatever initializations has already happened, so a present,
but partially initialized and non-working device could result. It now
checks everything that can fail, and bails out, undoing whatever had been
done.
The return value of eth_configure was always ignored, so it is now just
void.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/drivers/daemon_user.c')
-rw-r--r-- | arch/um/drivers/daemon_user.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/um/drivers/daemon_user.c b/arch/um/drivers/daemon_user.c index 09d1de90297c..d0b656a517d3 100644 --- a/arch/um/drivers/daemon_user.c +++ b/arch/um/drivers/daemon_user.c | |||
@@ -123,7 +123,7 @@ static int connect_to_switch(struct daemon_data *pri) | |||
123 | return err; | 123 | return err; |
124 | } | 124 | } |
125 | 125 | ||
126 | static void daemon_user_init(void *data, void *dev) | 126 | static int daemon_user_init(void *data, void *dev) |
127 | { | 127 | { |
128 | struct daemon_data *pri = data; | 128 | struct daemon_data *pri = data; |
129 | struct timeval tv; | 129 | struct timeval tv; |
@@ -146,7 +146,10 @@ static void daemon_user_init(void *data, void *dev) | |||
146 | if(pri->fd < 0){ | 146 | if(pri->fd < 0){ |
147 | kfree(pri->local_addr); | 147 | kfree(pri->local_addr); |
148 | pri->local_addr = NULL; | 148 | pri->local_addr = NULL; |
149 | return pri->fd; | ||
149 | } | 150 | } |
151 | |||
152 | return 0; | ||
150 | } | 153 | } |
151 | 154 | ||
152 | static int daemon_open(void *data) | 155 | static int daemon_open(void *data) |