Module Name: src
Committed By: martin
Date: Thu Apr 5 14:42:36 UTC 2018
Modified Files:
src/doc [netbsd-8]: CHANGES-8.0
Log Message:
Tickets #694, #695, and #697
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.163 -r1.1.2.164 src/doc/CHANGES-8.0
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/doc/CHANGES-8.0
diff -u src/doc/CHANGES-8.0:1.1.2.163 src/doc/CHANGES-8.0:1.1.2.164
--- src/doc/CHANGES-8.0:1.1.2.163 Wed Apr 4 16:42:03 2018
+++ src/doc/CHANGES-8.0 Thu Apr 5 14:42:36 2018
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-8.0,v 1.1.2.163 2018/04/04 16:42:03 martin Exp $
+# $NetBSD: CHANGES-8.0,v 1.1.2.164 2018/04/05 14:42:36 martin Exp $
A complete list of changes from the initial NetBSD 8.0 branch on 2017-06-04
until the 8.0 release:
@@ -10889,3 +10889,26 @@ sys/net/npf/npf.h 1.55
to bypass a certain number of filtering rules.
[maxv, ticket #693]
+sys/net/if_etherip.c 1.41,1.42
+sys/netinet/ip_etherip.c 1.21
+sys/netinet6/ip6_etherip.c 1.22
+
+ Don't call if_attach, do if_initialize+if_register instead.
+ Style, and do not add M_PKTHDR again, instead assert that it
+ is already there.
+ Add a missing NULL check after m_pullup.
+ [maxv, ticket #694]
+
+sys/kern/uipc_mbuf.c 1.182
+sys/netinet/ip_reass.c 1.14
+sys/netinet6/frag6.c 1.67
+sys/sys/mbuf.h 1.179
+
+ Remove M_PKTHDR from secondary mbufs when reassembling packets.
+ [maxv, ticket #695]
+
+sys/net/route.c 1.208
+
+ Kill remaining rt->rt_refcnt++
+ [ozaki-r, ticket #697]
+