net/arp: account for ARP delay, avoid duplicate packets on timeout
eth_rx() in the main reception loop may trigger sending a packet which is already timed out (or will immediately) upon reception of an ARP reply. As long as the ARP reply is pending, the timeout handler of a packet should be postponed. Happens on TFTP with bad network (e.g. WLAN). Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
943231119f
commit
45b47734a0
@ -96,12 +96,12 @@ void arp_request(void)
|
|||||||
arp_raw_request(net_ip, net_null_ethaddr, net_arp_wait_reply_ip);
|
arp_raw_request(net_ip, net_null_ethaddr, net_arp_wait_reply_ip);
|
||||||
}
|
}
|
||||||
|
|
||||||
void arp_timeout_check(void)
|
int arp_timeout_check(void)
|
||||||
{
|
{
|
||||||
ulong t;
|
ulong t;
|
||||||
|
|
||||||
if (!net_arp_wait_packet_ip.s_addr)
|
if (!net_arp_wait_packet_ip.s_addr)
|
||||||
return;
|
return 0;
|
||||||
|
|
||||||
t = get_timer(0);
|
t = get_timer(0);
|
||||||
|
|
||||||
@ -118,6 +118,7 @@ void arp_timeout_check(void)
|
|||||||
arp_request();
|
arp_request();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void arp_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)
|
void arp_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)
|
||||||
|
@ -25,7 +25,7 @@ void arp_init(void);
|
|||||||
void arp_request(void);
|
void arp_request(void);
|
||||||
void arp_raw_request(struct in_addr source_ip, const uchar *targetEther,
|
void arp_raw_request(struct in_addr source_ip, const uchar *targetEther,
|
||||||
struct in_addr target_ip);
|
struct in_addr target_ip);
|
||||||
void arp_timeout_check(void);
|
int arp_timeout_check(void);
|
||||||
void arp_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len);
|
void arp_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len);
|
||||||
|
|
||||||
#endif /* __ARP_H__ */
|
#endif /* __ARP_H__ */
|
||||||
|
Loading…
Reference in New Issue
Block a user