Module Name: src
Committed By: bouyer
Date: Tue Dec 17 20:58:38 UTC 2013
Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.2
Log Message:
ticket 1892
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/doc/CHANGES-5.2.2
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-5.2.2
diff -u src/doc/CHANGES-5.2.2:1.1.2.3 src/doc/CHANGES-5.2.2:1.1.2.4
--- src/doc/CHANGES-5.2.2:1.1.2.3 Fri Dec 13 08:53:11 2013
+++ src/doc/CHANGES-5.2.2 Tue Dec 17 20:58:38 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.2,v 1.1.2.3 2013/12/13 08:53:11 sborrill Exp $
+# $NetBSD: CHANGES-5.2.2,v 1.1.2.4 2013/12/17 20:58:38 bouyer Exp $
A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
release:
@@ -28,3 +28,15 @@ sys/arch/xen/xen/evtchn.c 1.70
but related to spin mutexes. Fixes port-xen/46313
[bouyer, ticket #1890]
+sys/netinet6/nd6.c 1.146
+usr.sbin/ndp/ndp.c 1.42
+
+ Instead of voodo casts use simple byte pointer arithmetic and memcpy to
+ create the "packed" binary format we pass out to userland when querying
+ the router/prefix list.
+ Simplify code to print the router/prefix list: use memcpy and local
+ structs properly aligned on the stack to decode the binary format
+ passed by the kernel - instead of (bogusly) assuming the format will
+ obey all local alignement requirements.
+ [martin, ticket #1892]
+