Tue Aug 31 10:56:03 2010 UTC ()
Tickets 1439 & 1444


(bouyer)
diff -r1.1.2.238 -r1.1.2.239 src/doc/CHANGES-5.1

cvs diff -r1.1.2.238 -r1.1.2.239 src/doc/Attic/CHANGES-5.1 (expand / switch to unified diff)

--- src/doc/Attic/CHANGES-5.1 2010/08/25 04:22:21 1.1.2.238
+++ src/doc/Attic/CHANGES-5.1 2010/08/31 10:56:03 1.1.2.239
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: CHANGES-5.1,v 1.1.2.238 2010/08/25 04:22:21 snj Exp $ 1# $NetBSD: CHANGES-5.1,v 1.1.2.239 2010/08/31 10:56:03 bouyer Exp $
2 2
3A complete list of changes from the NetBSD 5.0 release to the NetBSD 5.1 3A complete list of changes from the NetBSD 5.0 release to the NetBSD 5.1
4release: 4release:
5 5
6gnu/usr.bin/groff/tmac/mdoc.local patched by hand 6gnu/usr.bin/groff/tmac/mdoc.local patched by hand
7sys/sys/param.h patched by hand 7sys/sys/param.h patched by hand
8 8
9 Welcome to 5.0_STABLE. 9 Welcome to 5.0_STABLE.
10 [snj] 10 [snj]
11 11
12sys/arch/i386/conf/ALL 1.187 12sys/arch/i386/conf/ALL 1.187
13sys/arch/i386/conf/GENERIC 1.922 13sys/arch/i386/conf/GENERIC 1.922
14sys/dev/pci/files.pci 1.309 14sys/dev/pci/files.pci 1.309
@@ -17415,13 +17415,31 @@ crypto/dist/ssh/sftp.c patch @@ -17415,13 +17415,31 @@ crypto/dist/ssh/sftp.c patch
17415lib/libc/gen/glob.3 1.37 via patch 17415lib/libc/gen/glob.3 1.37 via patch
17416lib/libc/gen/glob.c 1.25-1.26 17416lib/libc/gen/glob.c 1.25-1.26
17417 17417
17418 Fix globbing in libc and sftp. 17418 Fix globbing in libc and sftp.
17419 [christos, ticket #1430] 17419 [christos, ticket #1430]
17420 17420
17421sys/coda/coda.h 1.16 17421sys/coda/coda.h 1.16
17422sys/coda/coda_venus.c 1.28 17422sys/coda/coda_venus.c 1.28
17423sys/coda/coda_vnops.c 1.76 17423sys/coda/coda_vnops.c 1.76
17424 17424
17425 Correct incomplete size checks for the coda ioctls. 17425 Correct incomplete size checks for the coda ioctls.
17426 [christos, ticket #1431] 17426 [christos, ticket #1431]
17427 17427
 17428sys/arch/x86/x86/intel_busclock.c 1.11
 17429
 17430 Some core i7 CPUs report model 0c. In this case, check for the extended
 17431 model value.
 17432 Required to avoid faulting on rdmsr(MSR_FSB_FREQ) early during boot.
 17433 [jym, ticket #1439]
 17434
 17435sys/kern/exec_subr.c 1.65
 17436sys/kern/kern_pax.c 1.24
 17437
 17438 Fix issues with stack allocation and pax aslr:
 17439 - since the size is unsigned, don't check just that it is > 0,
 17440 but limit it to the MAXSSIZ
 17441 - if the stack size is reduced because of aslr, make sure we reduce
 17442 the actual allocation by the same size so that the size does not
 17443 wrap around.
 17444 [christos, ticket #1444]
 17445