Wed Mar 18 05:59:45 2009 UTC ()
Tickets 569-572, 575, 577, 578, 583, and 584.


(snj)
diff -r1.1.2.111 -r1.1.2.112 src/doc/CHANGES-5.0

cvs diff -r1.1.2.111 -r1.1.2.112 src/doc/Attic/CHANGES-5.0 (expand / switch to unified diff)

--- src/doc/Attic/CHANGES-5.0 2009/03/16 01:24:09 1.1.2.111
+++ src/doc/Attic/CHANGES-5.0 2009/03/18 05:59:45 1.1.2.112
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: CHANGES-5.0,v 1.1.2.111 2009/03/16 01:24:09 snj Exp $ 1# $NetBSD: CHANGES-5.0,v 1.1.2.112 2009/03/18 05:59:45 snj Exp $
2 2
3A complete list of changes from the initial NetBSD 5.0 branch on October 2008 3A complete list of changes from the initial NetBSD 5.0 branch on October 2008
4until the 5.0 release: 4until the 5.0 release:
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_BETA! 9 Welcome to 5.0_BETA!
10 10
11sys/arch/arm/gemini/obio_wdt.c 1.2 11sys/arch/arm/gemini/obio_wdt.c 1.2
12distrib/evbarm/instkernel/instkernel/Makefile 1.14 12distrib/evbarm/instkernel/instkernel/Makefile 1.14
13distrib/evbarm/gzboot/gzimg/Makefile 1.20 13distrib/evbarm/gzboot/gzimg/Makefile 1.20
14 14
@@ -5093,13 +5093,90 @@ sys/dev/video.c 1.20 @@ -5093,13 +5093,90 @@ sys/dev/video.c 1.20
5093 5093
5094 video_set_format() requires hw->set_format to be set, not 5094 video_set_format() requires hw->set_format to be set, not
5095 get_format. Fixes PR kern/41008. 5095 get_format. Fixes PR kern/41008.
5096 [jmcneill, ticket #576] 5096 [jmcneill, ticket #576]
5097 5097
5098sys/compat/linux/common/linux_futex.c 1.24 via patch 5098sys/compat/linux/common/linux_futex.c 1.24 via patch
5099sys/netiso/tp_param.h 1.19 via patch 5099sys/netiso/tp_param.h 1.19 via patch
5100 5100
5101 linux_futex: Fix robust_list pointer mess. 5101 linux_futex: Fix robust_list pointer mess.
5102 tp_param: Negative lengths should not be allowed. Make it 5102 tp_param: Negative lengths should not be allowed. Make it
5103 unsigned. 5103 unsigned.
5104 [adrianp, ticket #582] 5104 [adrianp, ticket #582]
5105 5105
 5106sys/fs/udf/udf_strat_direct.c patch
 5107sys/fs/udf/udf_strat_sequential.c patch
 5108sys/fs/udf/udf_vnops.c patch
 5109
 5110 Sequential writing goes before normal write. It's not likely
 5111 to ever go wrong but there could be a race otherwise.
 5112 --
 5113 Remove dead code and double check if it's allowed to write out
 5114 non-sequential there.
 5115 --
 5116 Add simplistic UBC async flushing as other FS's seem to do. It's
 5117 a clutch and needs to be addressed in UBC properly.
 5118 Improve write throttling by doing it on page-size basis. The
 5119 "standard" solution would cut up files unnessisary during
 5120 allocation.
 5121 [reinoud, ticket #569]
 5122
 5123usr.sbin/btpand/tap.c 1.2
 5124
 5125 Use the generic SIOCALIFADDR to add an active link layer address
 5126 instead of the (soon to be) deprecated SIOCSIFPHYADDR
 5127 [plunky, ticket #570]
 5128
 5129share/man/man4/tap.4 1.9, 1.10
 5130
 5131 ifreqalias (non existent) -> ifaliasreq (the real deal).
 5132 Note the new method of changing link layer addresses using a
 5133 PF_LINK socket ioctl.
 5134 [plunky, ticket #571]
 5135
 5136sys/net/if_tap.c 1.53 via patch
 5137
 5138 Repair the SIOCSIFPHYADDR ioctl handler to be compatible with
 5139 previous versions which used a "struct sockaddr"
 5140 [plunky, ticket #572]
 5141
 5142sys/net/if_tap.c 1.54
 5143
 5144 Deprecate the SIOCSIFPHYADDR ioctl and the sysctl node in favour
 5145 of the generic SIOCALIFADDR.
 5146 [plunky, ticket #575]
 5147
 5148sys/kern/kern_descrip.c 1.188
 5149sys/kern/uipc_usrreq.c 1.121
 5150sys/sys/fcntl.h 1.35
 5151sys/sys/file.h 1.66
 5152sys/sys/param.h patch
 5153sys/sys/un.h 1.45
 5154
 5155 Completely rework the way that orphaned sockets that are
 5156 being fdpassed via SCM_RIGHTS messages are dealt with.
 5157 [mrg, ticket #577]
 5158
 5159build.sh 1.204, 1.205
 5160share/mk/bsd.own.mk 1.558, 1.559
 5161
 5162 In build.sh and bsd.own.mk, if uname -p fails, or prints
 5163 "unknown", or prints something that does not look like an
 5164 identifier, then use uname -m instead. (Cygwin prints
 5165 "unknown", and OpenBSD prints a long string containing
 5166 several spaces; this code should handle both.)
 5167 [apb, ticket #578]
 5168
 5169sys/dev/pci/if_wm.c 1.166
 5170
 5171 Fix the multicast hash bug on ICH9's wm.
 5172 Now we can catch ff02::9 on ICH9's wm. Fixes PR#37976.
 5173 [msaitoh, ticket #583]
 5174
 5175xsrc/external/mit/xorg-server/dist/Xext/sync.c 1.2
 5176
 5177 xsync: Fix wakeup storm in idletime counter
 5178
 5179 Wakeup scheduling only considered the threshold values, and
 5180 not whether the trigger was edge or level.
 5181 [jmcneill, ticket #584]
 5182