Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F168402721
D31327.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
906 B
Referenced Files
None
Subscribers
None
D31327.diff
View Options
diff --git a/sys/net/debugnet_inet.c b/sys/net/debugnet_inet.c
--- a/sys/net/debugnet_inet.c
+++ b/sys/net/debugnet_inet.c
@@ -86,6 +86,9 @@
struct mbuf *m;
unsigned short hlen;
+ if (pcb->dp_state < DN_STATE_HAVE_GW_MAC)
+ return;
+
/* IP processing. */
m = *mb;
if (m->m_pkthdr.len < sizeof(struct ip)) {
@@ -347,13 +350,19 @@
" server or gateway)\n", buf);
return;
}
+ if (pcb->dp_state >= DN_STATE_HAVE_GW_MAC) {
+ inet_ntoa_r(isaddr, buf);
+ DNETDEBUG("ignoring server ARP reply from %s (already"
+ " have gateway address)\n", buf);
+ return;
+ }
+ MPASS(pcb->dp_state == DN_STATE_INIT);
memcpy(pcb->dp_gw_mac.octet, ar_sha(ah),
min(ah->ar_hln, ETHER_ADDR_LEN));
DNETDEBUG("got server MAC address %6D\n",
pcb->dp_gw_mac.octet, ":");
- MPASS(pcb->dp_state == DN_STATE_INIT);
pcb->dp_state = DN_STATE_HAVE_GW_MAC;
return;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Aug 29, 1:52 AM (13 h, 21 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
37491401
Default Alt Text
D31327.diff (906 B)
Attached To
Mode
D31327: debugnet_handle_arp(): Fix false-positive assertion for dp_state
Attached
Detach File
Event Timeline
Log In to Comment