mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-30 18:05:48 +01:00 
			
		
		
		
	net: fix netconsole filtering
Adjustment of Michael Walle's fix patch
Commit 8a0eccb105 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>
			
			
This commit is contained in:
		
				
					committed by
					
						 Tom Rini
						Tom Rini
					
				
			
			
				
	
			
			
			
						parent
						
							ecd7295004
						
					
				
				
					commit
					8cab08e804
				
			| @@ -1161,7 +1161,7 @@ NetReceive(uchar *inpkt, int len) | |||||||
|  |  | ||||||
| #ifdef CONFIG_NETCONSOLE | #ifdef CONFIG_NETCONSOLE | ||||||
| 		nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE, | 		nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE, | ||||||
| 					ntohl(ip->ip_src), | 					src_ip, | ||||||
| 					ntohs(ip->udp_dst), | 					ntohs(ip->udp_dst), | ||||||
| 					ntohs(ip->udp_src), | 					ntohs(ip->udp_src), | ||||||
| 					ntohs(ip->udp_len) - UDP_HDR_SIZE); | 					ntohs(ip->udp_len) - UDP_HDR_SIZE); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user