From: Suriyan Ramasami Date: Wed, 16 Oct 2013 16:54:24 +0000 (-0700) Subject: netconsole loses 2nd character of input X-Git-Tag: v2014.01-rc1~81 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=efd9bb9c0286dace970397e3336cf0399dc7b31d;p=kernel%2Fu-boot.git netconsole loses 2nd character of input Netconsole loses the second character when used as input by either setenv stdin nc or setenv stdin serial,nc if using CONSOLE_CONSOLE_MUX Before a nc_send_packet() to echo the input, a check is done to see if nc_ether is valid. If its not, it waits for an arp request and then sends the packet (which contains the first character of line to be displayed as output). As part of reaping the arp request, the second character is consumed. We protect this by making the call to NetLoop(NETCONS) between input_recursion. Signed-off-by: Suriyan Ramasami Acked-by: Joe Hershberger --- diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index df8ab07..65c747e 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c @@ -184,7 +184,9 @@ static void nc_send_packet(const char *buf, int len) return; /* inside net loop */ output_packet = buf; output_packet_len = len; + input_recursion = 1; NetLoop(NETCONS); /* wait for arp reply and send packet */ + input_recursion = 0; output_packet_len = 0; return; }