Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src-draft/trunk]: src/sys/net Do not count some unhandled protocols as error...
details: https://anonhg.NetBSD.org/src-all/rev/5a74cf628884
branches: trunk
changeset: 988544:5a74cf628884
user: Martin Husemann <martin%NetBSD.org@localhost>
date: Mon Dec 14 15:31:03 2020 +0100
description:
Do not count some unhandled protocols as error packets.
Temporary hack, proper solution is being discussed on tech-kern.
This commit should not be merged to mainline.
diffstat:
sys/net/if_ethersubr.c | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diffs (22 lines):
diff -r 520df4195d00 -r 5a74cf628884 sys/net/if_ethersubr.c
--- a/sys/net/if_ethersubr.c Mon Dec 14 15:25:56 2020 +0100
+++ b/sys/net/if_ethersubr.c Mon Dec 14 15:31:03 2020 +0100
@@ -947,6 +947,18 @@
break;
#endif
+ /*
+ * XXX - remove before merge!
+ *
+ * Do not count errors for 802.1x authentication frames
+ * or random "smart home" stuff
+ */
+ case ETHERTYPE_PAE:
+ case 0x8912: /* mediaxtream */
+ case 0x88e1: /* HomePlug Management (powerline) */
+ m_freem(m);
+ return;
+
default:
goto drop;
}
Home |
Main Index |
Thread Index |
Old Index