Module Name: src Committed By: msaitoh Date: Mon Nov 3 16:33:01 UTC 2014
Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: Ticket 1116-1118, 1121 and 1139. To generate a diff of this commit: cvs rdiff -u -r1.1.2.143 -r1.1.2.144 src/doc/CHANGES-6.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-6.2 diff -u src/doc/CHANGES-6.2:1.1.2.143 src/doc/CHANGES-6.2:1.1.2.144 --- src/doc/CHANGES-6.2:1.1.2.143 Mon Nov 3 13:01:25 2014 +++ src/doc/CHANGES-6.2 Mon Nov 3 16:33:01 2014 @@ -1,4 +1,4 @@ -# $NetBSD: CHANGES-6.2,v 1.1.2.143 2014/11/03 13:01:25 msaitoh Exp $ +# $NetBSD: CHANGES-6.2,v 1.1.2.144 2014/11/03 16:33:01 msaitoh Exp $ A complete list of changes from the 6.1 release until the 6.2 release: @@ -3995,3 +3995,40 @@ usr.bin/ftp/version.h 1.85 Change the version that ftp announces to 20141026. It can be a useful method to determine if CVE-2014-8517 is fixed. [lukem, ticket #1180] + +external/mit/libdrm/dist/xf86atomic.h 1.4 + + Fix libdrm's atomic_dec_and_test on NetBSD (and Solaris, while here). + _nv means new value, not old value! This may help to fix various + instability in userland graphics, now that we aren't freeing stuff + with a reference count of 1 any more. + [riastradh, ticket #1116] + +sys/altq/altq_jobs.c 1.7 +sys/dev/ic/oosiop.c 1.14 +sys/dev/qbus/if_qe.c 1.73 +sys/dev/rasops/rasops.c 1.72 +sys/dev/vme/if_ie_vme.c 1.31 +sys/net/if_gre.c 1.160 + + Fix resource leask in miscellaneous error branches noted by maxv@. + [riastradh, ticket #1117] + +sys/kern/kern_rndpool.c 1.7 +sys/kern/kern_rndq.c 1.27 + + "buf" and "done" is not guaranteed to be aligned; don't *(uint32_t *) + it. + [riastradh, ticket #1118] + +lib/libc/stdlib/jemalloc.c 1.33 + + Hold arenas_mtx across (still unused) _malloc_pre/postfork (PR#47428). + [riastradh, ticket #1121] + +sys/arch/sparc/dev/fd.c 1.155 +sys/arch/sparc64/dev/fdc.c 1.42 +sys/arch/sun3/dev/fd.c 1.78 + + Fix unexpected memory corruption on opening fd(4). + [tsutsui, ticket #1139]