diff options
| author | Joe Hershberger <joe.hershberger@ni.com> | 2012-10-03 09:14:03 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2012-10-03 16:01:22 -0700 | 
| commit | 8cab08e8045e1ec3799d9d3ad875f5755818069c (patch) | |
| tree | 9ef47627b9b40b973f3236a1c5652c6796bf1735 | |
| parent | ecd72950044f9bcc68ff0ef5b3dbda79dff31fd3 (diff) | |
| download | olio-uboot-2014.01-8cab08e8045e1ec3799d9d3ad875f5755818069c.tar.xz olio-uboot-2014.01-8cab08e8045e1ec3799d9d3ad875f5755818069c.zip | |
net: fix netconsole filtering
Adjustment of Michael Walle's fix patch
Commit 8a0eccb1056b313b45ab62e3aac400f339aa71b4 breaks netconsole. src_ip
must not be converted to host byte order, because nc_ip is already stored
in network byte order (see string_to_ip(), called by getenv_IPaddr()).
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
| -rw-r--r-- | net/net.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -1161,7 +1161,7 @@ NetReceive(uchar *inpkt, int len)  #ifdef CONFIG_NETCONSOLE  		nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE, -					ntohl(ip->ip_src), +					src_ip,  					ntohs(ip->udp_dst),  					ntohs(ip->udp_src),  					ntohs(ip->udp_len) - UDP_HDR_SIZE); |