[patch] minor fix to kgdboe configuration logic
From: Matt Mackall
Date: Sat Mar 20 2004 - 19:47:49 EST
This seems to have gotten dropped. Without it, kgdboe can get into a
half-configured state.
kgdboe - fix configuration of MAC address
tiny-mpm/drivers/net/kgdb_eth.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff -puN drivers/net/kgdb_eth.c~kgdboe-mac-init drivers/net/kgdb_eth.c
--- tiny/drivers/net/kgdb_eth.c~kgdboe-mac-init 2004-03-16 12:03:11.000000000 -0600
+++ tiny-mpm/drivers/net/kgdb_eth.c 2004-03-16 12:03:11.000000000 -0600
@@ -46,6 +46,7 @@ static struct netpoll np = {
.remote_port = 6442,
.remote_mac = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
};
+static int configured;
int eth_getDebugChar(void)
{
@@ -101,9 +102,9 @@ static void rx_hook(struct netpoll *np,
}
}
-static int option_setup(char *opt)
+static void option_setup(char *opt)
{
- return netpoll_parse_options(&np, opt);
+ configured = !netpoll_parse_options(&np, opt);
}
__setup("kgdboe=", option_setup);
@@ -119,7 +120,7 @@ static int init_kgdboe(void)
set_debug_traps();
- if(!np.remote_ip || netpoll_setup(&np))
+ if(!configured || netpoll_setup(&np))
return 1;
kgdboe = 1;
_
--
Matt Mackall : http://www.selenic.com : Linux development and consulting
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/