From 5c591816cbf3d7ca825501fe5ec1e1f2f289bc5f Mon Sep 17 00:00:00 2001 From: Erik van der Kouwe Date: Thu, 1 Jul 2010 06:14:38 +0000 Subject: [PATCH] Remove warning in inet; this situation is harmless and can be caused by a race --- servers/inet/mnx_eth.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/servers/inet/mnx_eth.c b/servers/inet/mnx_eth.c index a255887cc..fed315dbb 100644 --- a/servers/inet/mnx_eth.c +++ b/servers/inet/mnx_eth.c @@ -439,9 +439,11 @@ u32_t flags; if (eth_port->etp_osdep.etp_state != OEPS_IDLE) { +#if 0 printf( "eth_set_rec_conf: setting OEPF_NEED_CONF, state = %d\n", eth_port->etp_osdep.etp_state); +#endif eth_port->etp_osdep.etp_flags |= OEPF_NEED_CONF; return; }