xref: /freebsd/UPDATING (revision 46be218dce25ebb5739446f6bc9a453f3593186f)
157199806SWarner LoshUpdating Information for FreeBSD current users
253dfde79SWarner Losh
3456b5dd8SWarner LoshThis file is maintained and copyrighted by M. Warner Losh <imp@freebsd.org>.
4456b5dd8SWarner LoshSee end of file for further details.  For commonly done items, please see the
5456b5dd8SWarner LoshCOMMON ITEMS: section later in the file.  These instructions assume that you
6456b5dd8SWarner Loshbasically know what you are doing.  If not, then please consult the FreeBSD
7e0fb6dc3SRobert Watsonhandbook:
8e0fb6dc3SRobert Watson
9e0fb6dc3SRobert Watson    http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
10e72fd46aSWarner Losh
112c724730SWarner LoshItems affecting the ports and packages system can be found in
12456b5dd8SWarner Losh/usr/ports/UPDATING.  Please read that file before running portupgrade.
132c724730SWarner Losh
144f1def68SWarner LoshNOTE: FreeBSD has switched from gcc to clang. If you have trouble bootstrapping
156eeab389SWarner Loshfrom older versions of FreeBSD, try WITHOUT_CLANG to bootstrap to the tip of
16da0e842aSWarner Loshhead, and then rebuild without this option. The bootstrap process from
17da0e842aSWarner Losholder version of current is a bit fragile.
184f1def68SWarner Losh
198a3b6cc1SKen SmithNOTE TO PEOPLE WHO THINK THAT FreeBSD 10.x IS SLOW:
208a3b6cc1SKen Smith	FreeBSD 10.x has many debugging features turned on, in both the kernel
21456b5dd8SWarner Losh	and userland.  These features attempt to detect incorrect use of
22456b5dd8SWarner Losh	system primitives, and encourage loud failure through extra sanity
23456b5dd8SWarner Losh	checking and fail stop semantics.  They also substantially impact
24456b5dd8SWarner Losh	system performance.  If you want to do performance measurement,
25456b5dd8SWarner Losh	benchmarking, and optimization, you'll want to turn them off.  This
26456b5dd8SWarner Losh	includes various WITNESS- related kernel options, INVARIANTS, malloc
27456b5dd8SWarner Losh	debugging flags in userland, and various verbose features in the
28456b5dd8SWarner Losh	kernel.  Many developers choose to disable these features on build
2999e449f2SJason Evans	machines to maximize performance.  (To completely disable malloc
3099e449f2SJason Evans	debugging, define MALLOC_PRODUCTION in /etc/make.conf, or to merely
3199e449f2SJason Evans	disable the most expensive debugging functionality run
3299e449f2SJason Evans	"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
33efc06131SSam Leffler
34*46be218dSDavid E. O'Brien20130821:
35*46be218dSDavid E. O'Brien	The PADLOCK_RNG and RDRAND_RNG kernel options are now devices.
36*46be218dSDavid E. O'Brien	Thus "device padlock_rng" and "device rdrand_rng" should be
37*46be218dSDavid E. O'Brien	used instead of "options PADLOCK_RNG" & "options RDRAND_RNG".
38*46be218dSDavid E. O'Brien
390ff204bbSPeter Wemm20130813:
400ff204bbSPeter Wemm	WITH_ICONV has been split into two feature sets.  WITH_ICONV now
410ff204bbSPeter Wemm	enables just the iconv* functionality and is now on by default.
420ff204bbSPeter Wemm	WITH_LIBICONV_COMPAT enables the libiconv api and link time
430ff204bbSPeter Wemm	compatability.  Set WITHOUT_ICONV to build the old way.
440dc59c0fSPeter Wemm	If you have been using WITH_ICONV before, you will very likely
450dc59c0fSPeter Wemm	need to turn on WITH_LIBICONV_COMPAT.
460ff204bbSPeter Wemm
47ccc88f7bSHiroki Sato20130806:
48c319ea15SAndriy Gapon	INVARIANTS option now enables DEBUG for code with OpenSolaris and
49c319ea15SAndriy Gapon	Illumos origin, including ZFS.  If you have INVARIANTS in your
50c319ea15SAndriy Gapon	kernel configuration, then there is no need to set DEBUG or ZFS_DEBUG
51c319ea15SAndriy Gapon	explicitly.
52c319ea15SAndriy Gapon	DEBUG used to enable witness(9) tracking of OpenSolaris (mostly ZFS)
53c319ea15SAndriy Gapon	locks if WITNESS option was set.  Because that generated a lot of
54c319ea15SAndriy Gapon	witness(9) reports and all of them were believed to be false
55c319ea15SAndriy Gapon	positives, this is no longer done.  New option OPENSOLARIS_WITNESS
56c319ea15SAndriy Gapon	can be used to achieve the previous behavior.
57c319ea15SAndriy Gapon
58c319ea15SAndriy Gapon20130806:
59ccc88f7bSHiroki Sato	Timer values in IPv6 data structures now use time_uptime instead
60ccc88f7bSHiroki Sato	of time_second.  Although this is not a user-visible functional
61ccc88f7bSHiroki Sato	change, userland utilities which directly use them---ndp(8),
62ccc88f7bSHiroki Sato	rtadvd(8), and rtsold(8) in the base system---need to be updated
63ccc88f7bSHiroki Sato	to r253970 or later.
64ccc88f7bSHiroki Sato
659d6d5a71SJilles Tjoelker20130802:
669d6d5a71SJilles Tjoelker	find -delete can now delete the pathnames given as arguments,
679d6d5a71SJilles Tjoelker	instead of only files found below them or if the pathname did
689d6d5a71SJilles Tjoelker	not contain any slashes. Formerly, the following error message
699d6d5a71SJilles Tjoelker	would result:
709d6d5a71SJilles Tjoelker
719d6d5a71SJilles Tjoelker	find: -delete: <path>: relative path potentially not safe
729d6d5a71SJilles Tjoelker
739d6d5a71SJilles Tjoelker	Deleting the pathnames given as arguments can be prevented
749d6d5a71SJilles Tjoelker	without error messages using -mindepth 1 or by changing
759d6d5a71SJilles Tjoelker	directory and passing "." as argument to find. This works in the
769d6d5a71SJilles Tjoelker	old as well as the new version of find.
779d6d5a71SJilles Tjoelker
78663dea3dSAndriy Gapon20130726:
79663dea3dSAndriy Gapon	Behavior of devfs rules path matching has been changed.
80663dea3dSAndriy Gapon	Pattern is now always matched against fully qualified devfs
81663dea3dSAndriy Gapon	path and slash characters must be explicitly matched by
82663dea3dSAndriy Gapon	slashes in pattern (FNM_PATHNAME). Rulesets involving devfs
83663dea3dSAndriy Gapon	subdirectories must be reviewed.
84663dea3dSAndriy Gapon
8546e95f64SAndrew Turner20130716:
8646e95f64SAndrew Turner	The default ARM ABI has changed to the ARM EABI. The old ABI is
8746e95f64SAndrew Turner	incompatible with the ARM EABI and all programs and modules will
8846e95f64SAndrew Turner	need to be rebuilt to work with a new kernel.
8946e95f64SAndrew Turner
9046e95f64SAndrew Turner	To keep using the old ABI ensure the WITHOUT_ARM_EABI knob is set.
9146e95f64SAndrew Turner
9246e95f64SAndrew Turner	NOTE: Support for the old ABI will be removed in the future and
9346e95f64SAndrew Turner	users are advised to upgrade.
9446e95f64SAndrew Turner
95b40e2b6dSAndrey V. Elsukov20130709:
969b953f2cSBaptiste Daroussin	pkg_install has been disconnected from the build if you really need it
979b953f2cSBaptiste Daroussin	you should add WITH_PKGTOOLS in your src.conf(5).
989b953f2cSBaptiste Daroussin
999b953f2cSBaptiste Daroussin20130709:
100b40e2b6dSAndrey V. Elsukov	Most of network statistics structures were changed to be able
101b40e2b6dSAndrey V. Elsukov	keep 64-bits counters. Thus all tools, that work with networking
102aa011413SRui Paulo	statistics, must be rebuilt (netstat(1), bsnmpd(1), etc.)
103b40e2b6dSAndrey V. Elsukov
10403630b54SSimon J. Gerraty20130629:
10503630b54SSimon J. Gerraty	Fix targets that run multiple make's to use && rather than ;
10603630b54SSimon J. Gerraty	so that subsequent steps depend on success of previous.
10703630b54SSimon J. Gerraty
10803630b54SSimon J. Gerraty	NOTE: if building 'universe' with -j* on stable/8 or stable/9
10903630b54SSimon J. Gerraty	it would be better to start the build using bmake, to avoid
11003630b54SSimon J. Gerraty	overloading the machine.
11103630b54SSimon J. Gerraty
1125b3e0257SDag-Erling Smørgrav20130618:
1135b3e0257SDag-Erling Smørgrav	Fix a bug that allowed a tracing process (e.g. gdb) to write
1145b3e0257SDag-Erling Smørgrav	to a memory-mapped file in the traced process's address space
1155b3e0257SDag-Erling Smørgrav	even if neither the traced process nor the tracing process had
1165b3e0257SDag-Erling Smørgrav	write access to that file.
1175b3e0257SDag-Erling Smørgrav
1181cbff2a9SEitan Adler20130615:
1191cbff2a9SEitan Adler	CVS has been removed from the base system.  An exact copy
1201cbff2a9SEitan Adler	of the code is available from the devel/cvs port.
1211cbff2a9SEitan Adler
122ba10b444SSimon J. Gerraty20130613:
123ba10b444SSimon J. Gerraty	Some people report the following error after the switch to bmake:
124ba10b444SSimon J. Gerraty
125ba10b444SSimon J. Gerraty		make: illegal option -- J
126ba10b444SSimon J. Gerraty		usage: make [-BPSXeiknpqrstv] [-C directory] [-D variable]
127ba10b444SSimon J. Gerraty			...
128ba10b444SSimon J. Gerraty		*** [buildworld] Error code 2
129ba10b444SSimon J. Gerraty
130ba10b444SSimon J. Gerraty	this likely due to an old instance of make in
131ba10b444SSimon J. Gerraty	${MAKEPATH} (${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE})
132ba10b444SSimon J. Gerraty	which src/Makefile will use that blindly, if it exists, so if
133ba10b444SSimon J. Gerraty	you see the above error:
134ba10b444SSimon J. Gerraty
135ba10b444SSimon J. Gerraty		rm -rf `make -V MAKEPATH`
136ba10b444SSimon J. Gerraty
137ba10b444SSimon J. Gerraty	should resolve it.
138ba10b444SSimon J. Gerraty
139ff8d4375SSimon J. Gerraty20130516:
140ff8d4375SSimon J. Gerraty	Use bmake by default.
141ff8d4375SSimon J. Gerraty	Whereas before one could choose to build with bmake via
142ff8d4375SSimon J. Gerraty	-DWITH_BMAKE one must now use -DWITHOUT_BMAKE to use the old
143ff8d4375SSimon J. Gerraty	make. The goal is to remove these knobs for 10-RELEASE.
144ff8d4375SSimon J. Gerraty
145ff8d4375SSimon J. Gerraty	It is worth noting that bmake (like gmake) treats the command
146ff8d4375SSimon J. Gerraty	line as the unit of failure, rather than statements within the
147ff8d4375SSimon J. Gerraty	command line.  Thus '(cd some/where && dosomething)' is safer
148ff8d4375SSimon J. Gerraty	than 'cd some/where; dosomething'. The '()' allows consistent
149ff8d4375SSimon J. Gerraty	behavior in parallel build.
150ff8d4375SSimon J. Gerraty
15132164d53SDag-Erling Smørgrav20130429:
15232164d53SDag-Erling Smørgrav        Fix a bug that allows NFS clients to issue READDIR on files.
15332164d53SDag-Erling Smørgrav
154562a9d58SSteven Hartland20130426:
155850163e4SEitan Adler	The WITHOUT_IDEA option has been removed because
156850163e4SEitan Adler	the IDEA patent expired.
157850163e4SEitan Adler
158850163e4SEitan Adler20130426:
159562a9d58SSteven Hartland	The sysctl which controls TRIM support under ZFS has been renamed
160562a9d58SSteven Hartland	from vfs.zfs.trim_disable -> vfs.zfs.trim.enabled and has been
161562a9d58SSteven Hartland	enabled by default.
162562a9d58SSteven Hartland
16320e0cc0aSBrooks Davis20130425:
16420e0cc0aSBrooks Davis	The mergemaster command now uses the default MAKEOBJDIRPREFIX
16520e0cc0aSBrooks Davis	rather than creating it's own in the temporary directory in
16620e0cc0aSBrooks Davis	order allow access to bootstrapped versions of tools such as
16720e0cc0aSBrooks Davis	install and mtree.  When upgrading from version of FreeBSD where
16820e0cc0aSBrooks Davis	the install command does not support -l, you will need to
16920e0cc0aSBrooks Davis	install a new mergemaster command if mergemaster -p is required.
17020e0cc0aSBrooks Davis	This can be accomplished with the command (cd src/usr.sbin/mergemaster
17120e0cc0aSBrooks Davis	&& make install).
17220e0cc0aSBrooks Davis
1739a95a7caSAlexander Motin20130404:
1749a95a7caSAlexander Motin	Legacy ATA stack, disabled and replaced by new CAM-based one since
1759a95a7caSAlexander Motin	FreeBSD 9.0, completely removed from the sources.  Kernel modules
1769a95a7caSAlexander Motin	atadisk and atapi*, user-level tools atacontrol and burncd are
1779a95a7caSAlexander Motin	removed.  Kernel option `options ATA_CAM` is now permanently enabled
1789a95a7caSAlexander Motin	and removed.
1799a95a7caSAlexander Motin
1805ad7e649SJilles Tjoelker20130319:
1815ad7e649SJilles Tjoelker	SOCK_CLOEXEC and SOCK_NONBLOCK flags have been added to socket(2)
1825ad7e649SJilles Tjoelker	and socketpair(2). Software, in particular Kerberos, may
1835ad7e649SJilles Tjoelker	automatically detect and use these during building. The resulting
1845ad7e649SJilles Tjoelker	binaries will not work on older kernels.
1855ad7e649SJilles Tjoelker
186105421ffSMarius Strobl20130308:
187105421ffSMarius Strobl	CTL_DISABLE has also been added to the sparc64 GENERIC (for further
188105421ffSMarius Strobl	information, see the respective 20130304 entry).
189105421ffSMarius Strobl
1903a45b478SKenneth D. Merry20130304:
19123d44ab5SDavide Italiano	Recent commits to callout(9) changed the size of struct callout,
19223d44ab5SDavide Italiano	so the KBI is probably heavily disturbed. Also, some functions
19323d44ab5SDavide Italiano	in callout(9)/sleep(9)/sleepqueue(9)/condvar(9) KPIs were replaced
19423d44ab5SDavide Italiano	by macros. Every kernel module using it won't load, so rebuild
19523d44ab5SDavide Italiano	is requested.
19623d44ab5SDavide Italiano
1973a45b478SKenneth D. Merry	The ctl device has been re-enabled in GENERIC for i386 and amd64,
1983a45b478SKenneth D. Merry	but does not initialize by default (because of the new CTL_DISABLE
1993a45b478SKenneth D. Merry	option) to save memory.  To re-enable it, remove the CTL_DISABLE
2003a45b478SKenneth D. Merry	option from the kernel config file or set kern.cam.ctl.disable=0
2013a45b478SKenneth D. Merry	in /boot/loader.conf.
2023a45b478SKenneth D. Merry
203fe138cc2SAdrian Chadd20130301:
204fe138cc2SAdrian Chadd	The ctl device has been disabled in GENERIC for i386 and amd64.
205fe138cc2SAdrian Chadd	This was done due to the extra memory being allocated at system
206fe138cc2SAdrian Chadd	initialisation time by the ctl driver which was only used if
207fe138cc2SAdrian Chadd	a CAM target device was created.  This makes a FreeBSD system
208fe138cc2SAdrian Chadd	unusable on 128MB or less of RAM.
209fe138cc2SAdrian Chadd
21020a011d5SXin LI20130208:
21120a011d5SXin LI	A new compression method (lz4) has been merged to -HEAD.  Please
21220a011d5SXin LI	refer to zpool-features(7) for more information.
21320a011d5SXin LI
21420a011d5SXin LI	Please refer to the "ZFS notes" section of this file for information
21520a011d5SXin LI	on upgrading boot ZFS pools.
21620a011d5SXin LI
2172dd076b8SGabor Kovesdan20130129:
2182dd076b8SGabor Kovesdan	A BSD-licensed patch(1) variant has been added and is installed
2192dd076b8SGabor Kovesdan	as bsdpatch, being the GNU version the default patch.
2202dd076b8SGabor Kovesdan	To inverse the logic and use the BSD-licensed one as default,
2212dd076b8SGabor Kovesdan	while having the GNU version installed as gnupatch, rebuild
2222d329593SGabor Kovesdan	and install world with the WITH_BSD_PATCH knob set.
2232dd076b8SGabor Kovesdan
224fe06cae7SBrooks Davis20130121:
225fe06cae7SBrooks Davis	Due to the use of the new -l option to install(1) during build
226fe06cae7SBrooks Davis	and install, you must take care not to directly set the INSTALL
227fe06cae7SBrooks Davis	make variable in your /etc/make.conf, /etc/src.conf, or on the
2288c5836c3SEitan Adler	command line.  If you wish to use the -C flag for all installs
229fe06cae7SBrooks Davis	you may be able to add INSTALL+=-C to /etc/make.conf or
230fe06cae7SBrooks Davis	/etc/src.conf.
231fe06cae7SBrooks Davis
232f2b19f9eSBrooks Davis20130118:
233f2b19f9eSBrooks Davis	The install(1) option -M has changed meaning and now takes an
234f2b19f9eSBrooks Davis	argument that is a file or path to append logs to.  In the
235f2b19f9eSBrooks Davis	unlikely event that -M was the last option on the command line
236f2b19f9eSBrooks Davis	and the command line contained at least two files and a target
237f2b19f9eSBrooks Davis	directory the first file will have logs appended to it.  The -M
2384cf5de80SGlen Barber	option served little practical purpose in the last decade so its
2394cf5de80SGlen Barber	use is expected to be extremely rare.
240f2b19f9eSBrooks Davis
2413fea4e6bSAndriy Gapon20121223:
2423fea4e6bSAndriy Gapon	After switching to Clang as the default compiler some users of ZFS
2433fea4e6bSAndriy Gapon	on i386 systems started to experience stack overflow kernel panics.
2443fea4e6bSAndriy Gapon	Please consider using 'options KSTACK_PAGES=4' in such configurations.
2453fea4e6bSAndriy Gapon
246efec959cSJaakko Heinonen20121222:
247efec959cSJaakko Heinonen	GEOM_LABEL now mangles label names read from file system metadata.
248efec959cSJaakko Heinonen	Mangling affect labels containing spaces, non-printable characters,
249efec959cSJaakko Heinonen	'%' or '"'. Device names in /etc/fstab and other places may need to
250efec959cSJaakko Heinonen	be updated.
251efec959cSJaakko Heinonen
25211631ad0SPawel Jakub Dawidek20121217:
25311631ad0SPawel Jakub Dawidek	By default, only the 10 most recent kernel dumps will be saved.  To
25411631ad0SPawel Jakub Dawidek	restore the previous behaviour (no limit on the number of kernel dumps
25511631ad0SPawel Jakub Dawidek	stored in the dump directory) add the following line to /etc/rc.conf:
25611631ad0SPawel Jakub Dawidek
25711631ad0SPawel Jakub Dawidek		savecore_flags=""
25811631ad0SPawel Jakub Dawidek
259e0fb6dc3SRobert Watson20121201:
260e0fb6dc3SRobert Watson	With the addition of auditdistd(8), a new auditdistd user is now
261e0fb6dc3SRobert Watson	depended on during installworld.  "mergemaster -p" can be used to add
262e0fb6dc3SRobert Watson	the user prior to installworld, as documented in the handbook.
263e0fb6dc3SRobert Watson
264b91dc775SHiroki Sato20121117:
265b91dc775SHiroki Sato	The sin6_scope_id member variable in struct sockaddr_in6 is now
266b91dc775SHiroki Sato	filled by the kernel before passing the structure to the userland via
267b91dc775SHiroki Sato	sysctl or routing socket.  This means the KAME-specific embedded scope
268b91dc775SHiroki Sato	id in sin6_addr.s6_addr[2] is always cleared in userland application.
269b91dc775SHiroki Sato	This behavior can be controlled by net.inet6.ip6.deembed_scopeid.
270b91dc775SHiroki Sato	__FreeBSD_version is bumped to 1000025.
271b91dc775SHiroki Sato
2725b6478b0SBrooks Davis20121105:
2735b6478b0SBrooks Davis	On i386 and amd64 systems WITH_CLANG_IS_CC is now the default.
2745b6478b0SBrooks Davis	This means that the world and kernel will be compiled with clang
2755b6478b0SBrooks Davis	and that clang will be installed as /usr/bin/cc, /usr/bin/c++,
2765b6478b0SBrooks Davis	and /usr/bin/cpp.  To disable this behavior and revert to building
277da0e842aSWarner Losh	with gcc, compile with WITHOUT_CLANG_IS_CC. Really old versions
278da0e842aSWarner Losh	of current may need to bootstrap WITHOUT_CLANG first if the clang
279da0e842aSWarner Losh	build fails (its compatibility window doesn't extend to the 9 stable
280da0e842aSWarner Losh	branch point).
2815b6478b0SBrooks Davis
282ffdbf9daSAndrey V. Elsukov20121102:
283a971b547SAndrey V. Elsukov	The IPFIREWALL_FORWARD kernel option has been removed. Its
284ffdbf9daSAndrey V. Elsukov	functionality now turned on by default.
285a971b547SAndrey V. Elsukov
2868f134647SGleb Smirnoff20121023:
287cb69178dSAndre Oppermann	The ZERO_COPY_SOCKET kernel option has been removed and
288cb69178dSAndre Oppermann	split into SOCKET_SEND_COW and SOCKET_RECV_PFLIP.
289cb69178dSAndre Oppermann	NB: SOCKET_SEND_COW uses the VM page based copy-on-write
290cb69178dSAndre Oppermann	mechanism which is not safe and may result in kernel crashes.
291cb69178dSAndre Oppermann	NB: The SOCKET_RECV_PFLIP mechanism is useless as no current
292cb69178dSAndre Oppermann	driver supports disposeable external page sized mbuf storage.
293cb69178dSAndre Oppermann	Proper replacements for both zero-copy mechanisms are under
294cb69178dSAndre Oppermann	consideration and will eventually lead to complete removal
295cb69178dSAndre Oppermann	of the two kernel options.
296cb69178dSAndre Oppermann
297cb69178dSAndre Oppermann20121023:
2988f134647SGleb Smirnoff	The IPv4 network stack has been converted to network byte
2998f134647SGleb Smirnoff	order. The following modules need to be recompiled together
3008f134647SGleb Smirnoff	with kernel: carp(4), divert(4), gif(4), siftr(4), gre(4),
3018f134647SGleb Smirnoff	pf(4), ipfw(4), ng_ipfw(4), stf(4).
3028f134647SGleb Smirnoff
3038859ec84SKonstantin Belousov20121022:
3048859ec84SKonstantin Belousov	Support for non-MPSAFE filesystems was removed from VFS. The
3058859ec84SKonstantin Belousov	VFS_VERSION was bumped, all filesystem modules shall be
3068859ec84SKonstantin Belousov	recompiled.
3078859ec84SKonstantin Belousov
308e053ead0SAttilio Rao20121018:
309e053ead0SAttilio Rao	All the non-MPSAFE filesystems have been disconnected from
310e053ead0SAttilio Rao	the build. The full list includes: codafs, hpfs, ntfs, nwfs,
311e053ead0SAttilio Rao	portalfs, smbfs, xfs.
312e053ead0SAttilio Rao
31342a58907SGleb Smirnoff20121016:
31442a58907SGleb Smirnoff	The interface cloning API and ABI has changed. The following
31542a58907SGleb Smirnoff	modules need to be recompiled together with kernel:
31642a58907SGleb Smirnoff	ipfw(4), pfsync(4), pflog(4), usb(4), wlan(4), stf(4),
31742a58907SGleb Smirnoff	vlan(4), disc(4), edsc(4), if_bridge(4), gif(4), tap(4),
31842a58907SGleb Smirnoff	faith(4), epair(4), enc(4), tun(4), if_lagg(4), gre(4).
31942a58907SGleb Smirnoff
320d6b3aaf8SOleksandr Tymoshenko20121015:
321d6b3aaf8SOleksandr Tymoshenko	The sdhci driver was split in two parts: sdhci (generic SD Host
322d6b3aaf8SOleksandr Tymoshenko	Controller logic) and sdhci_pci (actual hardware driver).
323d6b3aaf8SOleksandr Tymoshenko	No kernel config modifications are required, but if you
324d6b3aaf8SOleksandr Tymoshenko	load sdhc as a module you must switch to sdhci_pci instead.
325d6b3aaf8SOleksandr Tymoshenko
3265fe58019SAttilio Rao20121014:
3275fe58019SAttilio Rao	Import the FUSE kernel and userland support into base system.
3285fe58019SAttilio Rao
329d38ae94bSGabor Kovesdan20121013:
330d38ae94bSGabor Kovesdan	The GNU sort(1) program has been removed since the BSD-licensed
331d38ae94bSGabor Kovesdan	sort(1) has been the default for quite some time and no serious
332d38ae94bSGabor Kovesdan	problems have been reported.  The corresponding WITH_GNU_SORT
33358b6d9a2SGabor Kovesdan	knob has also gone.
334d38ae94bSGabor Kovesdan
33521d172a3SGleb Smirnoff20121006:
33621d172a3SGleb Smirnoff	The pfil(9) API/ABI for AF_INET family has been changed. Packet
33721d172a3SGleb Smirnoff	filtering modules: pf(4), ipfw(4), ipfilter(4) need to be recompiled
33821d172a3SGleb Smirnoff	with new kernel.
33921d172a3SGleb Smirnoff
3407b81c83cSAdrian Chadd20121001:
3417b81c83cSAdrian Chadd	The net80211(4) ABI has been changed to allow for improved driver
3427b81c83cSAdrian Chadd	PS-POLL and power-save support.  All wireless drivers need to be
3437b81c83cSAdrian Chadd	recompiled to work with the new kernel.
3447b81c83cSAdrian Chadd
345d65043bcSKonstantin Belousov20120913:
346d65043bcSKonstantin Belousov	The random(4) support for the VIA hardware random number
347d65043bcSKonstantin Belousov	generator (`PADLOCK') is no longer enabled unconditionally.
348*46be218dSDavid E. O'Brien	Add the padlock_rng device in the custom kernel config if
349d65043bcSKonstantin Belousov	needed.  The GENERIC kernels on i386 and amd64 do include the
350*46be218dSDavid E. O'Brien	device, so the change only affects the custom kernel
351d65043bcSKonstantin Belousov	configurations.
352d65043bcSKonstantin Belousov
353d6d3f01eSGleb Smirnoff20120908:
354d6d3f01eSGleb Smirnoff	The pf(4) packet filter ABI has been changed. pfctl(8) and
355d6d3f01eSGleb Smirnoff	snmp_pf module need to be recompiled to work with new kernel.
356d6d3f01eSGleb Smirnoff
3576e767defSMartin Matuska20120828:
3586e767defSMartin Matuska	A new ZFS feature flag "com.delphix:empty_bpobj" has been merged
3596e767defSMartin Matuska	to -HEAD. Pools that have empty_bpobj in active state can not be
3606e767defSMartin Matuska	imported read-write with ZFS implementations that do not support
3616e767defSMartin Matuska	this feature. For more information read the zpool-features(5)
3626e767defSMartin Matuska	manual page.
3636e767defSMartin Matuska
364614e3098SMarius Strobl20120727:
365614e3098SMarius Strobl	The sparc64 ZFS loader has been changed to no longer try to auto-
366614e3098SMarius Strobl	detect ZFS providers based on diskN aliases but now requires these
367614e3098SMarius Strobl	to be explicitly listed in the OFW boot-device environment variable.
368614e3098SMarius Strobl
3697e003b0aSChristian Brueffer20120712:
3701f13597dSJung-uk Kim	The OpenSSL has been upgraded to 1.0.1c.  Any binaries requiring
3711f13597dSJung-uk Kim	libcrypto.so.6 or libssl.so.6 must be recompiled.  Also, there are
3721f13597dSJung-uk Kim	configuration changes.  Make sure to merge /etc/ssl/openssl.cnf.
3731f13597dSJung-uk Kim
3741f13597dSJung-uk Kim20120712:
3757e003b0aSChristian Brueffer	The following sysctls and tunables have been renamed for consistency
3767e003b0aSChristian Brueffer	with other variables:
3777e003b0aSChristian Brueffer	  kern.cam.da.da_send_ordered   -> kern.cam.da.send_ordered
3787e003b0aSChristian Brueffer	  kern.cam.ada.ada_send_ordered -> kern.cam.ada.send_ordered
3797e003b0aSChristian Brueffer
380d22c63acSGabor Kovesdan20120628:
381d22c63acSGabor Kovesdan	The sort utility has been replaced with BSD sort.  For now, GNU sort
382d22c63acSGabor Kovesdan	is also available as "gnusort" or the default can be set back to
383d22c63acSGabor Kovesdan	GNU sort by setting WITH_GNU_SORT.  In this case, BSD sort will be
384d22c63acSGabor Kovesdan	installed as "bsdsort".
385d22c63acSGabor Kovesdan
3862d9cf57eSMartin Matuska20120611:
3872d9cf57eSMartin Matuska	A new version of ZFS (pool version 5000) has been merged to -HEAD.
3882d9cf57eSMartin Matuska	Starting with this version the old system of ZFS pool versioning
3892d9cf57eSMartin Matuska	is superseded by "feature flags". This concept enables forward
3902d9cf57eSMartin Matuska	compatibility against certain future changes in functionality of ZFS
3912d9cf57eSMartin Matuska	pools. The first read-only compatible "feature flag" for ZFS pools
3922d9cf57eSMartin Matuska	is named "com.delphix:async_destroy". For more information
3932d9cf57eSMartin Matuska	read the new zpool-features(5) manual page.
3942d9cf57eSMartin Matuska	Please refer to the "ZFS notes" section of this file for information
3952d9cf57eSMartin Matuska	on upgrading boot ZFS pools.
3962d9cf57eSMartin Matuska
397d1675e38SJason Evans20120417:
398d1675e38SJason Evans	The malloc(3) implementation embedded in libc now uses sources imported
399d1675e38SJason Evans	as contrib/jemalloc.  The most disruptive API change is to
400d1675e38SJason Evans	/etc/malloc.conf.  If your system has an old-style /etc/malloc.conf,
401d1675e38SJason Evans	delete it prior to installworld, and optionally re-create it using the
402d1675e38SJason Evans	new format after rebooting.  See malloc.conf(5) for details
403d1675e38SJason Evans	(specifically the TUNING section and the "opt.*" entries in the MALLCTL
404d1675e38SJason Evans	NAMESPACE section).
405d1675e38SJason Evans
40684db023eSJuli Mallett20120328:
40784db023eSJuli Mallett	Big-endian MIPS TARGET_ARCH values no longer end in "eb".  mips64eb
40884db023eSJuli Mallett	is now spelled mips64.  mipsn32eb is now spelled mipsn32.  mipseb is
40984db023eSJuli Mallett	now spelled mips.  This is to aid compatibility with third-party
41084db023eSJuli Mallett	software that expects this naming scheme in uname(3).  Little-endian
411474dbfb7SWarner Losh	settings are unchanged. If you are updating a big-endian mips64 machine
412474dbfb7SWarner Losh	from before this change, you may need to set MACHINE_ARCH=mips64 in
413474dbfb7SWarner Losh	your environment before the new build system will recognize your machine.
41484db023eSJuli Mallett
4159c170fd1SAttilio Rao20120306:
4169c170fd1SAttilio Rao	Disable by default the option VFS_ALLOW_NONMPSAFE for all supported
4179c170fd1SAttilio Rao	platforms.
4189c170fd1SAttilio Rao
419c7e41c8bSMikolaj Golub20120229:
420c7e41c8bSMikolaj Golub	Now unix domain sockets behave "as expected" on	nullfs(5). Previously
421c7e41c8bSMikolaj Golub	nullfs(5) did not pass through all behaviours to the underlying layer,
422c7e41c8bSMikolaj Golub	as a result if we bound to a socket on the lower layer we could connect
423c7e41c8bSMikolaj Golub	only to the lower path; if we bound to the upper layer we could connect
424c7e41c8bSMikolaj Golub	only to	the upper path. The new behavior is one can connect to both the
425c7e41c8bSMikolaj Golub	lower and the upper paths regardless what layer path one binds to.
426c7e41c8bSMikolaj Golub
427ca1672daSBjoern A. Zeeb20120211:
428ca1672daSBjoern A. Zeeb	The getifaddrs upgrade path broken with 20111215 has been restored.
429ca1672daSBjoern A. Zeeb	If you have upgraded in between 20111215 and 20120209 you need to
430ca1672daSBjoern A. Zeeb	recompile libc again with your kernel.  You still need to recompile
431ca1672daSBjoern A. Zeeb	world to be able to configure CARP but this restriction already
432ca1672daSBjoern A. Zeeb	comes from 20111215.
433ca1672daSBjoern A. Zeeb
434e0e0f25bSDoug Barton20120114:
435e0e0f25bSDoug Barton	The set_rcvar() function has been removed from /etc/rc.subr.  All
436e0e0f25bSDoug Barton	base and ports rc.d scripts have been updated, so if you have a
437e0e0f25bSDoug Barton	port installed with a script in /usr/local/etc/rc.d you can either
438e0e0f25bSDoug Barton	hand-edit the rcvar= line, or reinstall the port.
439e0e0f25bSDoug Barton
4405d482324SDoug Barton	An easy way to handle the mass-update of /etc/rc.d:
4415d482324SDoug Barton	rm /etc/rc.d/* && mergemaster -i
4425d482324SDoug Barton
44390d82653SAndriy Gapon20120109:
44490d82653SAndriy Gapon	panic(9) now stops other CPUs in the SMP systems, disables interrupts
44590d82653SAndriy Gapon	on the current CPU and prevents other threads from running.
44690d82653SAndriy Gapon	This behavior can be reverted using the kern.stop_scheduler_on_panic
44790d82653SAndriy Gapon	tunable/sysctl.
44890d82653SAndriy Gapon	The new behavior can be incompatible with kern.sync_on_panic.
44990d82653SAndriy Gapon
45008b68b0eSGleb Smirnoff20111215:
45108b68b0eSGleb Smirnoff	The carp(4) facility has been changed significantly. Configuration
45208b68b0eSGleb Smirnoff	of the CARP protocol via ifconfig(8) has changed, as well as format
45308b68b0eSGleb Smirnoff	of CARP events submitted to devd(8) has changed. See manual pages
45408b68b0eSGleb Smirnoff	for more information. The arpbalance feature of carp(4) is currently
45508b68b0eSGleb Smirnoff	not supported anymore.
45608b68b0eSGleb Smirnoff
45708b68b0eSGleb Smirnoff	Size of struct in_aliasreq, struct in6_aliasreq has changed. User
45808b68b0eSGleb Smirnoff	utilities using SIOCAIFADDR, SIOCAIFADDR_IN6, e.g. ifconfig(8),
45908b68b0eSGleb Smirnoff	need to be recompiled.
46008b68b0eSGleb Smirnoff
461d5d131eeSJaakko Heinonen20111122:
462d5d131eeSJaakko Heinonen	The acpi_wmi(4) status device /dev/wmistat has been renamed to
463d5d131eeSJaakko Heinonen	/dev/wmistat0.
464d5d131eeSJaakko Heinonen
465ed1f6dc2SAttilio Rao20111108:
466ed1f6dc2SAttilio Rao	The option VFS_ALLOW_NONMPSAFE option has been added in order to
467ed1f6dc2SAttilio Rao	explicitely support non-MPSAFE filesystems.
468ed1f6dc2SAttilio Rao	It is on by default for all supported platform at this present
469ed1f6dc2SAttilio Rao	time.
470ed1f6dc2SAttilio Rao
471a9ab459bSMarius Strobl20111101:
472a9ab459bSMarius Strobl	The broken amd(4) driver has been replaced with esp(4) in the amd64,
473a9ab459bSMarius Strobl	i386 and pc98 GENERIC kernel configuration files.
474a9ab459bSMarius Strobl
475e59e2d8eSNathan Whitehorn20110930:
476e59e2d8eSNathan Whitehorn	sysinstall has been removed
477e59e2d8eSNathan Whitehorn
4788a3b6cc1SKen Smith20110923:
4798a3b6cc1SKen Smith	The stable/9 branch created in subversion.  This corresponds to the
4808a3b6cc1SKen Smith	RELENG_9 branch in CVS.
4818a3b6cc1SKen Smith
4824d30adc4SRick Macklem20110913:
4834d30adc4SRick Macklem	This commit modifies vfs_register() so that it uses a hash
4844d30adc4SRick Macklem	calculation to set vfc_typenum, which is enabled by default.
4854d30adc4SRick Macklem	The first time a system is booted after this change, the
4864d30adc4SRick Macklem	vfc_typenum values will change for all file systems. The
4874d30adc4SRick Macklem	main effect of this is a change to the NFS server file handles
4884d30adc4SRick Macklem	for file systems that use vfc_typenum in their fsid, such as ZFS.
4894d30adc4SRick Macklem	It will, however, prevent vfc_typenum from changing when file
4904d30adc4SRick Macklem	systems are loaded in a different order for subsequent reboots.
4914d30adc4SRick Macklem	To disable this, you can set vfs.typenumhash=0 in /boot/loader.conf
4924d30adc4SRick Macklem	until you are ready to remount all NFS clients after a reboot.
4934d30adc4SRick Macklem
4947596eb48SKonstantin Belousov20110828:
4957596eb48SKonstantin Belousov	Bump the shared library version numbers for libraries that
4967596eb48SKonstantin Belousov	do not use symbol versioning, have changed the ABI compared
4977596eb48SKonstantin Belousov	to stable/8 and which shared library version was not bumped.
4987596eb48SKonstantin Belousov	Done as part of 9.0-RELEASE cycle.
4997596eb48SKonstantin Belousov
50074d0c46dSRobert Watson20110815:
50174d0c46dSRobert Watson	During the merge of Capsicum features, the fget(9) KPI was modified.
50274d0c46dSRobert Watson	This may require the rebuilding of out-of-tree device drivers --
50374d0c46dSRobert Watson	issues have been reported specifically with the nVidia device driver.
50474d0c46dSRobert Watson	__FreeBSD_version is bumped to 900041.
50574d0c46dSRobert Watson
50674d0c46dSRobert Watson	Also, there is a period between 20110811 and 20110814 where the
50774d0c46dSRobert Watson	special devices /dev/{stdin,stdout,stderr} did not work correctly.
50874d0c46dSRobert Watson	Building world from a kernel during that window may not work.
50974d0c46dSRobert Watson
510e0bfbfceSBjoern A. Zeeb20110628:
511e0bfbfceSBjoern A. Zeeb	The packet filter (pf) code has been updated to OpenBSD 4.5.
512e0bfbfceSBjoern A. Zeeb	You need to update userland tools to be in sync with kernel.
51370d57756SBjoern A. Zeeb	This update breaks backward compatibility with earlier pfsync(4)
51470d57756SBjoern A. Zeeb	versions.  Care must be taken when updating redundant firewall setups.
515e0bfbfceSBjoern A. Zeeb
516234dab4aSAndriy Gapon20110608:
517234dab4aSAndriy Gapon	The following sysctls and tunables are retired on x86 platforms:
518234dab4aSAndriy Gapon		machdep.hlt_cpus
519234dab4aSAndriy Gapon		machdep.hlt_logical_cpus
520234dab4aSAndriy Gapon	The following sysctl is retired:
521234dab4aSAndriy Gapon		machdep.hyperthreading_allowed
522234dab4aSAndriy Gapon	The sysctls were supposed to provide a way to dynamically offline and
523234dab4aSAndriy Gapon	online selected CPUs on x86 platforms, but the implementation has not
524234dab4aSAndriy Gapon	been reliable especially with SCHED_ULE scheduler.
525234dab4aSAndriy Gapon	machdep.hyperthreading_allowed tunable is still available to ignore
526234dab4aSAndriy Gapon	hyperthreading CPUs at OS level.
527234dab4aSAndriy Gapon	Individual CPUs can be disabled using hint.lapic.X.disabled tunable,
528234dab4aSAndriy Gapon	where X is an APIC ID of a CPU.  Be advised, though, that disabling
529234dab4aSAndriy Gapon	CPUs in non-uniform fashion will result in non-uniform topology and
530234dab4aSAndriy Gapon	may lead to sub-optimal system performance with SCHED_ULE, which is
531234dab4aSAndriy Gapon	a default scheduler.
532234dab4aSAndriy Gapon
533f0fcb367SAttilio Rao20110607:
534f0fcb367SAttilio Rao	cpumask_t type is retired and cpuset_t is used in order to describe
535f0fcb367SAttilio Rao	a mask of CPUs.
536f0fcb367SAttilio Rao
537ec49fe39SBjoern A. Zeeb20110531:
538ec49fe39SBjoern A. Zeeb	Changes to ifconfig(8) for dynamic address family detection mandate
539ec49fe39SBjoern A. Zeeb	that you are running a kernel of 20110525 or later.  Make sure to
540ec49fe39SBjoern A. Zeeb	follow the update procedure to boot a new kernel before installing
541ec49fe39SBjoern A. Zeeb	world.
542ec49fe39SBjoern A. Zeeb
5434b547324SAttilio Rao20110513:
5444b547324SAttilio Rao	Support for sun4v architecture is officially dropped
5454b547324SAttilio Rao
5464a58ecccSMarius Strobl20110503:
5474a58ecccSMarius Strobl	Several KPI breaking changes have been committed to the mii(4) layer,
5484a58ecccSMarius Strobl	the PHY drivers and consequently some Ethernet drivers using mii(4).
5494a58ecccSMarius Strobl	This means that miibus.ko and the modules of the affected Ethernet
5504a58ecccSMarius Strobl	drivers need to be recompiled.
5514a58ecccSMarius Strobl
5524a58ecccSMarius Strobl	Note to kernel developers: Given that the OUI bit reversion problem
5534a58ecccSMarius Strobl	was fixed as part of these changes all mii(4) commits related to OUIs,
5544a58ecccSMarius Strobl	i.e. to sys/dev/mii/miidevs, PHY driver probing and vendor specific
5554a58ecccSMarius Strobl	handling, no longer can be merged verbatim to stable/8 and previous
5564a58ecccSMarius Strobl	branches.
5574a58ecccSMarius Strobl
558f9dfbfa1SAdrian Chadd20110430:
559f9dfbfa1SAdrian Chadd	Users of the Atheros AR71xx SoC code now need to add 'device ar71xx_pci'
560f9dfbfa1SAdrian Chadd	into their kernel configurations along with 'device pci'.
561f9dfbfa1SAdrian Chadd
5624309e17aSRick Macklem20110427:
5634309e17aSRick Macklem	The default NFS client is now the new NFS client, so fstype "newnfs"
5644309e17aSRick Macklem	is now "nfs" and the regular/old NFS client is now fstype "oldnfs".
5654309e17aSRick Macklem	Although mounts via fstype "nfs" will usually work without userland
5664309e17aSRick Macklem	changes, it is recommended that the mount(8) and mount_nfs(8)
5674309e17aSRick Macklem	commands be rebuilt from sources and that a link to mount_nfs called
5684309e17aSRick Macklem	mount_oldnfs be created. The new client is compiled into the
5694309e17aSRick Macklem	kernel with "options NFSCL" and this is needed for diskless root
5704309e17aSRick Macklem	file systems. The GENERIC kernel configs have been changed to use
5714309e17aSRick Macklem	NFSCL and NFSD (the new server) instead of NFSCLIENT and NFSSERVER.
5724309e17aSRick Macklem	To use the regular/old client, you can "mount -t oldnfs ...". For
5734309e17aSRick Macklem	a diskless root file system, you must also include a line like:
5744309e17aSRick Macklem
5754309e17aSRick Macklem	vfs.root.mountfrom="oldnfs:"
5764309e17aSRick Macklem
5774309e17aSRick Macklem	in the boot/loader.conf on the root fs on the NFS server to make
5784309e17aSRick Macklem	a diskless root fs use the old client.
5794309e17aSRick Macklem
58097b53e36SAlexander Motin20110424:
58197b53e36SAlexander Motin	The GENERIC kernels for all architectures now default to the new
58297b53e36SAlexander Motin	CAM-based ATA stack. It means that all legacy ATA drivers were
58397b53e36SAlexander Motin	removed and replaced by respective CAM drivers. If you are using
58497b53e36SAlexander Motin	ATA device names in /etc/fstab or other places, make sure to update
58597b53e36SAlexander Motin	them respectively (adX -> adaY, acdX -> cdY, afdX -> daY, astX -> saY,
586ddfddf12SAlexander Motin	where 'Y's are the sequential numbers starting from zero for each type
587ddfddf12SAlexander Motin	in order of detection, unless configured otherwise with tunables,
5880d307e09SAlexander Motin	see cam(4)). There will be symbolic links created in /dev/ to map
5890d307e09SAlexander Motin	old adX devices to the respective adaY. They should provide basic
5900d307e09SAlexander Motin	compatibility for file systems mounting in most cases, but they do
5910d307e09SAlexander Motin	not support old user-level APIs and do not have respective providers
5920d307e09SAlexander Motin	in GEOM. Consider using updated management tools with new device names.
5930d307e09SAlexander Motin
5940d307e09SAlexander Motin	It is possible to load devices ahci, ata, siis and mvs as modules,
5950d307e09SAlexander Motin	but option ATA_CAM should remain in kernel configuration to make ata
5960d307e09SAlexander Motin	module work as CAM driver supporting legacy ATA controllers. Device ata
5970d307e09SAlexander Motin	still can be used in modular fashion (atacore + ...). Modules atadisk
5980d307e09SAlexander Motin	and atapi* are not used and won't affect operation in ATA_CAM mode.
5995d4ac622SAlexander Motin	Note that to use CAM-based ATA kernel should include CAM devices
6005d4ac622SAlexander Motin	scbus, pass, da (or explicitly ada), cd and optionally others. All of
6015d4ac622SAlexander Motin	them are parts of the cam module.
60297b53e36SAlexander Motin
60397b53e36SAlexander Motin	ataraid(4) functionality is now supported by the RAID GEOM class.
60497b53e36SAlexander Motin	To use it you can load geom_raid kernel module and use graid(8) tool
60597b53e36SAlexander Motin	for management. Instead of /dev/arX device names, use /dev/raid/rX.
60697b53e36SAlexander Motin
60797b53e36SAlexander Motin	No kernel config options or code have been removed, so if a problem
60897b53e36SAlexander Motin	arises, please report it and optionally revert to the old ATA stack.
60997b53e36SAlexander Motin	In order to do it you can remove from the kernel config:
61097b53e36SAlexander Motin	    options        ATA_CAM
61197b53e36SAlexander Motin	    device         ahci
61297b53e36SAlexander Motin	    device         mvs
61397b53e36SAlexander Motin	    device         siis
61497b53e36SAlexander Motin	, and instead add back:
61597b53e36SAlexander Motin	    device         atadisk         # ATA disk drives
61697b53e36SAlexander Motin	    device         ataraid         # ATA RAID drives
61797b53e36SAlexander Motin	    device         atapicd         # ATAPI CDROM drives
61897b53e36SAlexander Motin	    device         atapifd         # ATAPI floppy drives
61997b53e36SAlexander Motin	    device         atapist         # ATAPI tape drives
62097b53e36SAlexander Motin
6212a85df8cSRick Macklem20110423:
6222a85df8cSRick Macklem	The default NFS server has been changed to the new server, which
6232a85df8cSRick Macklem	was referred to as the experimental server. If you need to switch
6242a85df8cSRick Macklem	back to the old NFS server, you must now put the "-o" option on
6252a85df8cSRick Macklem	both the mountd and nfsd commands. This can be done using the
6262a85df8cSRick Macklem	mountd_flags and nfs_server_flags rc.conf variables until an
6272a85df8cSRick Macklem	update to the rc scripts is committed, which is coming soon.
6282a85df8cSRick Macklem
62966f3a31fSDimitry Andric20110418:
63066f3a31fSDimitry Andric	The GNU Objective-C runtime library (libobjc), and other Objective-C
63166f3a31fSDimitry Andric	related components have been removed from the base system.  If you
63266f3a31fSDimitry Andric	require an Objective-C library, please use one of the available ports.
63366f3a31fSDimitry Andric
6341c62cc63SAdrian Chadd20110331:
6351c62cc63SAdrian Chadd	ath(4) has been split into bus- and device- modules. if_ath contains
6361c62cc63SAdrian Chadd	the HAL, the TX rate control and the network device code. if_ath_pci
6371c62cc63SAdrian Chadd	contains the PCI bus glue. For Atheros MIPS embedded systems, if_ath_ahb
6381c62cc63SAdrian Chadd	contains the AHB glue. Users need to load both if_ath_pci and if_ath
6391c62cc63SAdrian Chadd	in order to use ath on everything else.
6401c62cc63SAdrian Chadd
6411c62cc63SAdrian Chadd	TO REPEAT: if_ath_ahb is not needed for normal users. Normal users only
6421c62cc63SAdrian Chadd	need to load if_ath and if_ath_pci for ath(4) operation.
6431c62cc63SAdrian Chadd
6440a4b5285SNathan Whitehorn20110314:
6450a4b5285SNathan Whitehorn	As part of the replacement of sysinstall, the process of building
6460a4b5285SNathan Whitehorn	release media has changed significantly. For details, please re-read
6470a4b5285SNathan Whitehorn	release(7), which has been updated to reflect the new build process.
6480a4b5285SNathan Whitehorn
64976f9415bSVANHULLEBUS Yvan20110218:
650ce8fb931SDimitry Andric	GNU binutils 2.17.50 (as of 2007-07-03) has been merged to -HEAD.  This
651ce8fb931SDimitry Andric	is the last available version under GPLv2.  It brings a number of new
652ce8fb931SDimitry Andric	features, such as support for newer x86 CPU's (with SSE-3, SSSE-3, SSE
653ce8fb931SDimitry Andric	4.1 and SSE 4.2), better support for powerpc64, a number of new
654ce8fb931SDimitry Andric	directives, and lots of other small improvements.  See the ChangeLog
655ce8fb931SDimitry Andric	file in contrib/binutils for the full details.
656ce8fb931SDimitry Andric
657ce8fb931SDimitry Andric20110218:
65876f9415bSVANHULLEBUS Yvan	IPsec's HMAC_SHA256-512 support has been fixed to be RFC4868
65976f9415bSVANHULLEBUS Yvan	compliant, and will now use half of hash for authentication.
66076f9415bSVANHULLEBUS Yvan	This will break interoperability with all stacks (including all
66176f9415bSVANHULLEBUS Yvan	actual FreeBSD versions) who implement
66276f9415bSVANHULLEBUS Yvan	draft-ietf-ipsec-ciph-sha-256-00 (they use 96 bits of hash for
66376f9415bSVANHULLEBUS Yvan	authentication).
66476f9415bSVANHULLEBUS Yvan	The only workaround with such peers is to use another HMAC
66576f9415bSVANHULLEBUS Yvan	algorithm for IPsec ("phase 2") authentication.
66676f9415bSVANHULLEBUS Yvan
66713434232SMatthew D Fleming20110207:
66813434232SMatthew D Fleming	Remove the uio_yield prototype and symbol.  This function has
66913434232SMatthew D Fleming	been misnamed since it was introduced and should not be
67013434232SMatthew D Fleming	globally exposed with this name.  The equivalent functionality
67113434232SMatthew D Fleming	is now available using kern_yield(curthread->td_user_pri).
67213434232SMatthew D Fleming	The function remains undocumented.
67313434232SMatthew D Fleming
6744c8945a0SNathan Whitehorn20110112:
6751eae8811SMatthew D Fleming	A SYSCTL_[ADD_]UQUAD was added for unsigned uint64_t pointers,
6761eae8811SMatthew D Fleming	symmetric with the existing SYSCTL_[ADD_]QUAD.  Type checking
6771eae8811SMatthew D Fleming	for scalar sysctls is defined but disabled.  Code that needs
6781eae8811SMatthew D Fleming	UQUAD to pass the type checking that must compile on older
6791eae8811SMatthew D Fleming	systems where the define is not present can check against
6801eae8811SMatthew D Fleming	__FreeBSD_version >= 900030.
6811eae8811SMatthew D Fleming
6824c8945a0SNathan Whitehorn	The system dialog(1) has been replaced with a new version previously
6834c8945a0SNathan Whitehorn	in ports as devel/cdialog. dialog(1) is mostly command-line compatible
6844c8945a0SNathan Whitehorn	with the previous version, but the libdialog associated with it has
6854c8945a0SNathan Whitehorn	a largely incompatible API. As such, the original version of libdialog
6864c8945a0SNathan Whitehorn	will be kept temporarily as libodialog, until its base system consumers
6874c8945a0SNathan Whitehorn	are replaced or updated. Bump __FreeBSD_version to 900030.
6884c8945a0SNathan Whitehorn
689e4f64803SWarner Losh20110103:
690e4f64803SWarner Losh	If you are trying to run make universe on a -stable system, and you get
691e4f64803SWarner Losh	the following warning:
6927b57aa33SRebecca Cran	"Makefile", line 356: "Target architecture for i386/conf/GENERIC
6937b57aa33SRebecca Cran	unknown.  config(8) likely too old."
694e4f64803SWarner Losh	or something similar to it, then you must upgrade your -stable system
695e4f64803SWarner Losh	to 8.2-Release or newer (really, any time after r210146 7/15/2010 in
696e4f64803SWarner Losh	stable/8) or build the config from the latest stable/8 branch and
697e4f64803SWarner Losh	install it on your system.
698e4f64803SWarner Losh
699e4f64803SWarner Losh	Prior to this date, building a current universe on 8-stable system from
700e4f64803SWarner Losh	between 7/15/2010 and 1/2/2011 would result in a weird shell parsing
7017b57aa33SRebecca Cran	error in the first kernel build phase.  A new config on those old
7027b57aa33SRebecca Cran	systems will fix that problem for older versions of -current.
703e4f64803SWarner Losh
70439bc9de5SLawrence Stewart20101228:
70539bc9de5SLawrence Stewart	The TCP stack has been modified to allow Khelp modules to interact with
70639bc9de5SLawrence Stewart	it via helper hook points and store per-connection data in the TCP
70739bc9de5SLawrence Stewart	control block. Bump __FreeBSD_version to 900029. User space tools that
70839bc9de5SLawrence Stewart	rely on the size of struct tcpcb in tcp_var.h (e.g. sockstat) need to
70939bc9de5SLawrence Stewart	be recompiled.
71039bc9de5SLawrence Stewart
711efd4fc3fSMarius Strobl20101114:
712efd4fc3fSMarius Strobl	Generic IEEE 802.3 annex 31B full duplex flow control support has been
713efd4fc3fSMarius Strobl	added to mii(4) and bge(4), bce(4), msk(4), nfe(4) and stge(4) along
714efd4fc3fSMarius Strobl	with brgphy(4), e1000phy(4) as well as ip1000phy() have been converted
715efd4fc3fSMarius Strobl	to take advantage of it instead of using custom implementations.  This
716efd4fc3fSMarius Strobl	means that these drivers now no longer unconditionally advertise
717efd4fc3fSMarius Strobl	support for flow control but only do so if flow control is a selected
718efd4fc3fSMarius Strobl	media option.  This was implemented in the generic support that way in
719efd4fc3fSMarius Strobl	order to allow flow control to be switched on and off via ifconfig(8)
720efd4fc3fSMarius Strobl	with the PHY specific default to typically off in order to protect
721efd4fc3fSMarius Strobl	from unwanted effects.  Consequently, if you used flow control with
722efd4fc3fSMarius Strobl	one of the above mentioned drivers you now need to explicitly enable
723efd4fc3fSMarius Strobl	it, for example via:
724efd4fc3fSMarius Strobl		ifconfig bge0 media auto mediaopt flowcontrol
725efd4fc3fSMarius Strobl
726efd4fc3fSMarius Strobl	Along with the above mentioned changes generic support for setting
727efd4fc3fSMarius Strobl	1000baseT master mode also has been added and brgphy(4), ciphy(4),
728efd4fc3fSMarius Strobl	e1000phy(4) as well as ip1000phy(4) have been converted to take
729efd4fc3fSMarius Strobl	advantage of it.  This means that these drivers now no longer take the
730efd4fc3fSMarius Strobl	link0 parameter for selecting master mode but the master media option
731efd4fc3fSMarius Strobl	has to be used instead, for example like in the following:
732efd4fc3fSMarius Strobl		ifconfig bge0 media 1000baseT mediaopt full-duplex,master
733efd4fc3fSMarius Strobl
734efd4fc3fSMarius Strobl	Selection of master mode now is also available with all other PHY
735efd4fc3fSMarius Strobl	drivers supporting 1000baseT.
736efd4fc3fSMarius Strobl
737dbc42409SLawrence Stewart20101111:
738dbc42409SLawrence Stewart	The TCP stack has received a significant update to add support for
739dbc42409SLawrence Stewart	modularised congestion control and generally improve the clarity of
740dbc42409SLawrence Stewart	congestion control decisions. Bump __FreeBSD_version to 900025. User
741dbc42409SLawrence Stewart	space tools that rely on the size of struct tcpcb in tcp_var.h (e.g.
742dbc42409SLawrence Stewart	sockstat) need to be recompiled.
743dbc42409SLawrence Stewart
744fd77eab9SGordon Tetlow20101002:
745fd77eab9SGordon Tetlow	The man(1) utility has been replaced by a new version that no longer
746fd77eab9SGordon Tetlow	uses /etc/manpath.config. Please consult man.conf(5) for how to
747fd77eab9SGordon Tetlow	migrate local entries to the new format.
748fd77eab9SGordon Tetlow
749337299c6SEd Maste20100928:
750337299c6SEd Maste	The copyright strings printed by login(1) and sshd(8) at the time of a
751337299c6SEd Maste	new connection have been removed to follow other operating systems and
752337299c6SEd Maste	upstream sshd.
753337299c6SEd Maste
754f8fc818bSAndriy Gapon20100915:
755f8fc818bSAndriy Gapon	A workaround for a fixed ld bug has been removed in kernel code,
756f8fc818bSAndriy Gapon	so make sure that your system ld is built from sources after
757130a0815SAndriy Gapon	revision 210245 from 2010-07-19 (r211583 if building head kernel
758130a0815SAndriy Gapon	on stable/8, r211584 for stable/7; both from 2010-08-21).
759130a0815SAndriy Gapon	A symptom of incorrect ld version is different addresses for
760130a0815SAndriy Gapon	set_pcpu section and __start_set_pcpu symbol in kernel and/or modules.
761f8fc818bSAndriy Gapon
762d69eb520SRui Paulo20100913:
763d3a8a8b9SHiroki Sato	The $ipv6_prefer variable in rc.conf(5) has been split into
764d3a8a8b9SHiroki Sato	$ip6addrctl_policy and $ipv6_activate_all_interfaces.
765d3a8a8b9SHiroki Sato
766d3a8a8b9SHiroki Sato	The $ip6addrctl_policy is a variable to choose a pre-defined
767d3a8a8b9SHiroki Sato	address selection policy set by ip6addrctl(8).  A value
768d3a8a8b9SHiroki Sato	"ipv4_prefer", "ipv6_prefer" or "AUTO" can be specified.  The
769d3a8a8b9SHiroki Sato	default is "AUTO".
770d3a8a8b9SHiroki Sato
771d3a8a8b9SHiroki Sato	The $ipv6_activate_all_interfaces specifies whether IFDISABLED
772d3a8a8b9SHiroki Sato	flag (see an entry of 20090926) is set on an interface with no
773d3a8a8b9SHiroki Sato	corresponding $ifconfig_IF_ipv6 line.  The default is "NO" for
774d3a8a8b9SHiroki Sato	security reason.  If you want IPv6 link-local address on all
775d3a8a8b9SHiroki Sato	interfaces by default, set this to "YES".
776d3a8a8b9SHiroki Sato
777d3a8a8b9SHiroki Sato	The old ipv6_prefer="YES" is equivalent to
778d3a8a8b9SHiroki Sato	ipv6_activate_all_interfaces="YES" and
779d3a8a8b9SHiroki Sato	ip6addrctl_policy="ipv6_prefer".
780d3a8a8b9SHiroki Sato
781d3a8a8b9SHiroki Sato20100913:
782d69eb520SRui Paulo	DTrace has grown support for userland tracing. Due to this, DTrace is
783d69eb520SRui Paulo	now i386 and amd64 only.
784d69eb520SRui Paulo	dtruss(1) is now installed by default on those systems and a new
785d69eb520SRui Paulo	kernel module is needed for userland tracing: fasttrap.
786d69eb520SRui Paulo	No changes to your kernel config file are necessary to enable
787d69eb520SRui Paulo	userland tracing, but you might consider adding 'STRIP=' and
788d69eb520SRui Paulo	'CFLAGS+=-fno-omit-frame-pointer' to your make.conf if you want
789d69eb520SRui Paulo	to have informative userland stack traces in DTrace (ustack).
790d69eb520SRui Paulo
79140650455SRui Paulo20100725:
79240650455SRui Paulo	The acpi_aiboost(4) driver has been removed in favor of the new
79340650455SRui Paulo	aibs(4) driver. You should update your kernel configuration file.
79440650455SRui Paulo
7954dc88ebeSGabor Kovesdan20100722:
7964dc88ebeSGabor Kovesdan	BSD grep has been imported to the base system and it is built by
7974dc88ebeSGabor Kovesdan	default.  It is completely BSD licensed, highly GNU-compatible, uses
7984dc88ebeSGabor Kovesdan	less memory than its GNU counterpart and has a small codebase.
7994dc88ebeSGabor Kovesdan	However, it is slower than its GNU counterpart, which is mostly
8004dc88ebeSGabor Kovesdan	noticeable for larger searches, for smaller ones it is measurable
8014dc88ebeSGabor Kovesdan	but not significant.  The reason is complex, the most important factor
8024dc88ebeSGabor Kovesdan	is that we lack a modern and efficient regex library and GNU
8034dc88ebeSGabor Kovesdan	overcomes this by optimizing the searches internally.  Future work
8044dc88ebeSGabor Kovesdan	on improving the regex performance is planned, for the meantime,
8054dc88ebeSGabor Kovesdan	users that need better performance, can build GNU grep instead by
8064dc88ebeSGabor Kovesdan	setting the WITH_GNU_GREP knob.
8072965a453SKip Macy
8088fc25799SMartin Matuska20100713:
809c3e289e1SNathan Whitehorn	Due to the import of powerpc64 support, all existing powerpc kernel
810c3e289e1SNathan Whitehorn	configuration files must be updated with a machine directive like this:
811c3e289e1SNathan Whitehorn	    machine powerpc powerpc
812c3e289e1SNathan Whitehorn
813c3e289e1SNathan Whitehorn	In addition, an updated config(8) is required to build powerpc kernels
814c3e289e1SNathan Whitehorn	after this change.
815c3e289e1SNathan Whitehorn
816c3e289e1SNathan Whitehorn20100713:
8178fc25799SMartin Matuska	A new version of ZFS (version 15) has been merged to -HEAD.
8188fc25799SMartin Matuska	This version uses a python library for the following subcommands:
8198fc25799SMartin Matuska	zfs allow, zfs unallow, zfs groupspace, zfs userspace.
8208fc25799SMartin Matuska	For full functionality of these commands the following port must
8218fc25799SMartin Matuska	be installed: sysutils/py-zfs
8228fc25799SMartin Matuska
8232965a453SKip Macy20100429:
8242965a453SKip Macy	'vm_page's are now hashed by physical address to an array of mutexes.
8252965a453SKip Macy	Currently this is only used to serialize access to hold_count. Over
8262965a453SKip Macy	time the page queue mutex will be peeled away. This changes the size
8272965a453SKip Macy	of pmap on every architecture. And requires all callers of vm_page_hold
8282965a453SKip Macy	and vm_page_unhold to be updated.
8292965a453SKip Macy
83021edb039SAlexander Leidinger20100402:
83121edb039SAlexander Leidinger	WITH_CTF can now be specified in src.conf (not recommended, there
83221edb039SAlexander Leidinger	are some problems with static executables), make.conf (would also
83321edb039SAlexander Leidinger	affect ports which do not use GNU make and do not override the
83421edb039SAlexander Leidinger	compile targets) or in the kernel config (via "makeoptions
83521edb039SAlexander Leidinger	WITH_CTF=yes").
83621edb039SAlexander Leidinger	When WITH_CTF was specified there before this was silently ignored,
83721edb039SAlexander Leidinger	so make sure that WITH_CTF is not used in places which could lead
83821edb039SAlexander Leidinger	to unwanted behavior.
83921edb039SAlexander Leidinger
840841c0c7eSNathan Whitehorn20100311:
841841c0c7eSNathan Whitehorn	The kernel option COMPAT_IA32 has been replaced with COMPAT_FREEBSD32
842841c0c7eSNathan Whitehorn	to allow 32-bit compatibility on non-x86 platforms. All kernel
843841c0c7eSNathan Whitehorn	configurations on amd64 and ia64 platforms using these options must
844841c0c7eSNathan Whitehorn	be modified accordingly.
845841c0c7eSNathan Whitehorn
846279d8efeSEd Schouten20100113:
847279d8efeSEd Schouten	The utmp user accounting database has been replaced with utmpx,
848279d8efeSEd Schouten	the user accounting interface standardized by POSIX.
849279d8efeSEd Schouten	Unfortunately the semantics of utmp and utmpx don't match,
850279d8efeSEd Schouten	making it practically impossible to support both interfaces.
851279d8efeSEd Schouten	The user accounting database is used by tools like finger(1),
852279d8efeSEd Schouten	last(1), talk(1), w(1) and ac(8).
853279d8efeSEd Schouten
854279d8efeSEd Schouten	All applications in the base system use utmpx.  This means only
855279d8efeSEd Schouten	local binaries (e.g. from the ports tree) may still use these
856279d8efeSEd Schouten	utmp database files.  These applications must be rebuilt to make
857279d8efeSEd Schouten	use of utmpx.
858279d8efeSEd Schouten
859279d8efeSEd Schouten	After the system has been upgraded, it is safe to remove the old
860279d8efeSEd Schouten	log files (/var/run/utmp, /var/log/lastlog and /var/log/wtmp*),
8615ab7f1fcSEd Schouten	assuming their contents is of no importance anymore.  Old wtmp
8625ab7f1fcSEd Schouten	databases can only be used by last(1) and ac(8) after they have
8635ab7f1fcSEd Schouten	been converted to the new format using wtmpcvt(1).
864279d8efeSEd Schouten
865f7829d0dSAttilio Rao20100108:
866f7829d0dSAttilio Rao	Introduce the kernel thread "deadlock resolver" (which can be enabled
867f7829d0dSAttilio Rao	via the DEADLKRES option, see NOTES for more details) and the
868f7829d0dSAttilio Rao	sleepq_type() function for sleepqueues.
869f7829d0dSAttilio Rao
870f2cb5f03SHajimu UMEMOTO20091202:
871f2cb5f03SHajimu UMEMOTO	The rc.firewall and rc.firewall6 were unified, and
872f2cb5f03SHajimu UMEMOTO	rc.firewall6 and rc.d/ip6fw were removed.
873f2cb5f03SHajimu UMEMOTO	According to the removal of rc.d/ip6fw, ipv6_firewall_* rc
874f2cb5f03SHajimu UMEMOTO	variables are obsoleted.  Instead, the following new rc
875f2cb5f03SHajimu UMEMOTO	variables are added to rc.d/ipfw:
876f2cb5f03SHajimu UMEMOTO
877f2cb5f03SHajimu UMEMOTO		firewall_client_net_ipv6, firewall_simple_iif_ipv6,
878f2cb5f03SHajimu UMEMOTO		firewall_simple_inet_ipv6, firewall_simple_oif_ipv6,
879f2cb5f03SHajimu UMEMOTO		firewall_simple_onet_ipv6, firewall_trusted_ipv6
880f2cb5f03SHajimu UMEMOTO
881f2cb5f03SHajimu UMEMOTO	The meanings correspond to the relevant IPv4 variables.
882f2cb5f03SHajimu UMEMOTO
883e409c5c8SChristian Brueffer20091125:
884e409c5c8SChristian Brueffer	8.0-RELEASE.
885e409c5c8SChristian Brueffer
886e42fc368SEd Schouten20091113:
887e42fc368SEd Schouten	The default terminal emulation for syscons(4) has been changed
8884b2361f8SEd Schouten	from cons25 to xterm on all platforms except pc98.  This means
8894b2361f8SEd Schouten	that the /etc/ttys file needs to be updated to ensure correct
8904b2361f8SEd Schouten	operation of applications on the console.
891e42fc368SEd Schouten
892e42fc368SEd Schouten	The terminal emulation style can be toggled per window by using
8934b2361f8SEd Schouten	vidcontrol(1)'s -T flag.  The TEKEN_CONS25 kernel configuration
8944b2361f8SEd Schouten	options can be used to change the compile-time default back to
8954b2361f8SEd Schouten	cons25.
896e42fc368SEd Schouten
897e42fc368SEd Schouten	To prevent graphical artifacts, make sure the TERM environment
898e42fc368SEd Schouten	variable is set to match the terminal emulation that is being
899e42fc368SEd Schouten	performed by syscons(4).
900e42fc368SEd Schouten
90107ddebb5SRui Paulo20091109:
90207ddebb5SRui Paulo	The layout of the structure ieee80211req_scan_result has changed.
90307ddebb5SRui Paulo	Applications that require wireless scan results (e.g. ifconfig(8))
90407ddebb5SRui Paulo	from net80211 need to be recompiled.
90507ddebb5SRui Paulo
90696b4300cSDoug Barton	Applications such as wpa_supplicant(8) may require a full world
90796b4300cSDoug Barton	build without using NO_CLEAN in order to get synchronized with the
90896b4300cSDoug Barton	new structure.
90996b4300cSDoug Barton
91063b49c2bSRui Paulo20091025:
91163b49c2bSRui Paulo	The iwn(4) driver has been updated to support the 5000 and 5150 series.
91263b49c2bSRui Paulo	There's one kernel module for each firmware. Adding "device iwnfw"
91363b49c2bSRui Paulo	to the kernel configuration file means including all three firmware
91463b49c2bSRui Paulo	images inside the kernel. If you want to include just the one for
91536daf049SEitan Adler	your wireless card, use the devices iwn4965fw, iwn5000fw or
91663b49c2bSRui Paulo	iwn5150fw.
91763b49c2bSRui Paulo
9182e77c5abSHiroki Sato20090926:
9192e77c5abSHiroki Sato	The rc.d/network_ipv6, IPv6 configuration script has been integrated
9202e77c5abSHiroki Sato	into rc.d/netif.  The changes are the following:
9212e77c5abSHiroki Sato
9222e77c5abSHiroki Sato	1. To use IPv6, simply define $ifconfig_IF_ipv6 like $ifconfig_IF
9232e77c5abSHiroki Sato	   for IPv4.  For aliases, $ifconfig_IF_aliasN should be used.
9242e77c5abSHiroki Sato	   Note that both variables need the "inet6" keyword at the head.
9252e77c5abSHiroki Sato
9262e77c5abSHiroki Sato	   Do not set $ipv6_network_interfaces manually if you do not
9272e77c5abSHiroki Sato	   understand what you are doing.  It is not needed in most cases.
9282e77c5abSHiroki Sato
9292e77c5abSHiroki Sato	   $ipv6_ifconfig_IF and $ipv6_ifconfig_IF_aliasN still work, but
9302e77c5abSHiroki Sato	   they are obsolete.
9312e77c5abSHiroki Sato
9322e77c5abSHiroki Sato	2. $ipv6_enable is obsolete.  Use $ipv6_prefer and
9332e77c5abSHiroki Sato	   "inet6 accept_rtadv" keyword in ifconfig(8) instead.
9342e77c5abSHiroki Sato
9352e77c5abSHiroki Sato	   If you define $ipv6_enable=YES, it means $ipv6_prefer=YES and
9362e77c5abSHiroki Sato	   all configured interfaces have "inet6 accept_rtadv" in the
9372e77c5abSHiroki Sato	   $ifconfig_IF_ipv6.  These are for backward compatibility.
9382e77c5abSHiroki Sato
9392e77c5abSHiroki Sato	3. A new variable $ipv6_prefer has been added.  If NO, IPv6
9402e77c5abSHiroki Sato	   functionality of interfaces with no corresponding
9412e77c5abSHiroki Sato	   $ifconfig_IF_ipv6 is disabled by using "inet6 ifdisabled" flag,
9422e77c5abSHiroki Sato	   and the default address selection policy of ip6addrctl(8)
9432e77c5abSHiroki Sato	   is the IPv4-preferred one (see rc.d/ip6addrctl for more details).
9442e77c5abSHiroki Sato	   Note that if you want to configure IPv6 functionality on the
9452e77c5abSHiroki Sato	   disabled interfaces after boot, first you need to clear the flag by
9462e77c5abSHiroki Sato	   using ifconfig(8) like:
9472e77c5abSHiroki Sato
9482e77c5abSHiroki Sato		ifconfig em0 inet6 -ifdisabled
9492e77c5abSHiroki Sato
9502e77c5abSHiroki Sato	   If YES, the default address selection policy is set as
9512e77c5abSHiroki Sato	   IPv6-preferred.
9522e77c5abSHiroki Sato
9532e77c5abSHiroki Sato	   The default value of $ipv6_prefer is NO.
9542e77c5abSHiroki Sato
9552e77c5abSHiroki Sato	4. If your system need to receive Router Advertisement messages,
9562e77c5abSHiroki Sato	   define "inet6 accept_rtadv" in $ifconfig_IF_ipv6.  The rc(8)
9572e77c5abSHiroki Sato	   scripts automatically invoke rtsol(8) when the interface becomes
9582e77c5abSHiroki Sato	   UP.  The Router Advertisement messages are used for SLAAC
9592e77c5abSHiroki Sato	   (State-Less Address AutoConfiguration).
9602e77c5abSHiroki Sato
961350036a0SRui Paulo20090922:
962350036a0SRui Paulo	802.11s D3.03 support was committed. This is incompatible with the
963350036a0SRui Paulo	previous code, which was based on D3.0.
964350036a0SRui Paulo
9652e77c5abSHiroki Sato20090912:
9662e77c5abSHiroki Sato	A sysctl variable net.inet6.ip6.accept_rtadv now sets the default value
9672e77c5abSHiroki Sato	of a per-interface flag ND6_IFF_ACCEPT_RTADV, not a global knob to
9682e77c5abSHiroki Sato	control whether accepting Router Advertisement messages or not.
9692e77c5abSHiroki Sato	Also, a per-interface flag ND6_IFF_AUTO_LINKLOCAL has been added and
9702e77c5abSHiroki Sato	a sysctl variable net.inet6.ip6.auto_linklocal is its default value.
9712e77c5abSHiroki Sato	The ifconfig(8) utility now supports these flags.
9722e77c5abSHiroki Sato
97363e1d3dfSPawel Jakub Dawidek20090910:
97463e1d3dfSPawel Jakub Dawidek	ZFS snapshots are now mounted with MNT_IGNORE flag. Use -v option for
97563e1d3dfSPawel Jakub Dawidek	mount(8) and -a option for df(1) to see them.
97663e1d3dfSPawel Jakub Dawidek
977411c7658SWarner Losh20090825:
978411c7658SWarner Losh	The old tunable hw.bus.devctl_disable has been superseded by
979411c7658SWarner Losh	hw.bus.devctl_queue.  hw.bus.devctl_disable=1 in loader.conf should be
980411c7658SWarner Losh	replaced by hw.bus.devctl_queue=0.  The default for this new tunable
981411c7658SWarner Losh	is 1000.
982411c7658SWarner Losh
983dc6fbf65SAttilio Rao20090813:
984456b5dd8SWarner Losh	Remove the option STOP_NMI.  The default action is now to use NMI only
985456b5dd8SWarner Losh	for KDB via the newly introduced function stop_cpus_hard() and
986456b5dd8SWarner Losh	maintain stop_cpus() to just use a normal IPI_STOP on ia32 and amd64.
987456b5dd8SWarner Losh
988456b5dd8SWarner Losh20090803:
989f6a4f4b5SWarner Losh	The stable/8 branch created in subversion.  This corresponds to the
990f6a4f4b5SWarner Losh	RELENG_8 branch in CVS.
991dc6fbf65SAttilio Rao
9923ca3047aSKen Smith20090719:
993456b5dd8SWarner Losh	Bump the shared library version numbers for all libraries that do not
994456b5dd8SWarner Losh	use symbol versioning as part of the 8.0-RELEASE cycle.  Bump
995456b5dd8SWarner Losh	__FreeBSD_version to 800105.
9963ca3047aSKen Smith
997eddfbb76SRobert Watson20090714:
998456b5dd8SWarner Losh	Due to changes in the implementation of virtual network stack support,
999456b5dd8SWarner Losh	all network-related kernel modules must be recompiled.  As this change
1000456b5dd8SWarner Losh	breaks the ABI, bump __FreeBSD_version to 800104.
1001eddfbb76SRobert Watson
1002237fbe0aSLawrence Stewart20090713:
1003456b5dd8SWarner Losh	The TOE interface to the TCP syncache has been modified to remove
1004456b5dd8SWarner Losh	struct tcpopt (<netinet/tcp_var.h>) from the ABI of the network stack.
1005456b5dd8SWarner Losh	The cxgb driver is the only TOE consumer affected by this change, and
1006456b5dd8SWarner Losh	needs to be recompiled along with the kernel. As this change breaks
1007456b5dd8SWarner Losh	the ABI, bump __FreeBSD_version to 800103.
1008237fbe0aSLawrence Stewart
1009962ebef8SLawrence Stewart20090712:
1010962ebef8SLawrence Stewart	Padding has been added to struct tcpcb, sackhint and tcpstat in
1011962ebef8SLawrence Stewart	<netinet/tcp_var.h> to facilitate future MFCs and bug fixes whilst
10121733d35cSRuslan Ermilov	maintaining the ABI. However, this change breaks the ABI, so bump
1013962ebef8SLawrence Stewart	__FreeBSD_version to 800102. User space tools that rely on the size of
1014962ebef8SLawrence Stewart	any of these structs (e.g. sockstat) need to be recompiled.
1015962ebef8SLawrence Stewart
1016bab42aadSDoug Rabson20090630:
1017456b5dd8SWarner Losh	The NFS_LEGACYRPC option has been removed along with the old kernel
1018456b5dd8SWarner Losh	RPC implementation that this option selected. Kernel configurations
1019456b5dd8SWarner Losh	may need to be adjusted.
1020bab42aadSDoug Rabson
10216cb7f168SBrooks Davis20090629:
1022456b5dd8SWarner Losh	The network interface device nodes at /dev/net/<interface> have been
1023456b5dd8SWarner Losh	removed.  All ioctl operations can be performed the normal way using
1024456b5dd8SWarner Losh	routing sockets.  The kqueue functionality can generally be replaced
1025456b5dd8SWarner Losh	with routing sockets.
10266cb7f168SBrooks Davis
1027944bc81dSMarc Fonvieille20090628:
1028456b5dd8SWarner Losh	The documentation from the FreeBSD Documentation Project (Handbook,
1029456b5dd8SWarner Losh	FAQ, etc.) is now installed via packages by sysinstall(8) and under
1030456b5dd8SWarner Losh	the /usr/local/share/doc/freebsd directory instead of /usr/share/doc.
1031944bc81dSMarc Fonvieille
1032f5e4c105SJohn Baldwin20090624:
1033456b5dd8SWarner Losh	The ABI of various structures related to the SYSV IPC API have been
1034456b5dd8SWarner Losh	changed.  As a result, the COMPAT_FREEBSD[456] and COMPAT_43 kernel
1035456b5dd8SWarner Losh	options now all require COMPAT_FREEBSD7.  Bump __FreeBSD_version to
1036456b5dd8SWarner Losh	800100.
1037f5e4c105SJohn Baldwin
1038b58ea5f3SBjoern A. Zeeb20090622:
1039456b5dd8SWarner Losh	Layout of struct vnet has changed as routing related variables were
1040456b5dd8SWarner Losh	moved to their own Vimage module. Modules need to be recompiled.  Bump
1041456b5dd8SWarner Losh	__FreeBSD_version to 800099.
1042b58ea5f3SBjoern A. Zeeb
1043838d9858SBrooks Davis20090619:
1044456b5dd8SWarner Losh	NGROUPS_MAX and NGROUPS have been increased from 16 to 1023 and 1024
1045456b5dd8SWarner Losh	respectively.  As long as no more than 16 groups per process are used,
1046456b5dd8SWarner Losh	no changes should be visible.  When more than 16 groups are used, old
1047456b5dd8SWarner Losh	binaries may fail if they call getgroups() or getgrouplist() with
1048456b5dd8SWarner Losh	statically sized storage.  Recompiling will work around this, but
1049456b5dd8SWarner Losh	applications should be modified to use dynamically allocated storage
1050456b5dd8SWarner Losh	for group arrays as POSIX.1-2008 does not cap an implementation's
1051456b5dd8SWarner Losh	number of supported groups at NGROUPS_MAX+1 as previous versions did.
1052838d9858SBrooks Davis
1053456b5dd8SWarner Losh	NFS and portalfs mounts may also be affected as the list of groups is
1054456b5dd8SWarner Losh	truncated to 16.  Users of NFS who use more than 16 groups, should
1055456b5dd8SWarner Losh	take care that negative group permissions are not used on the exported
1056456b5dd8SWarner Losh	file systems as they will not be reliable unless a GSSAPI based
1057456b5dd8SWarner Losh	authentication method is used.
1058838d9858SBrooks Davis
1059651175c9SAttilio Rao20090616:
1060456b5dd8SWarner Losh	The compiling option ADAPTIVE_LOCKMGRS has been introduced.  This
1061456b5dd8SWarner Losh	option compiles in the support for adaptive spinning for lockmgrs
1062456b5dd8SWarner Losh	which want to enable it.  The lockinit() function now accepts the flag
1063456b5dd8SWarner Losh	LK_ADAPTIVE in order to make the lock object subject to adaptive
1064456b5dd8SWarner Losh	spinning when both held in write and read mode.
1065651175c9SAttilio Rao
10662c727cb9SSam Leffler20090613:
1067456b5dd8SWarner Losh	The layout of the structure returned by IEEE80211_IOC_STA_INFO has
1068456b5dd8SWarner Losh	changed.  User applications that use this ioctl need to be rebuilt.
10692c727cb9SSam Leffler
1070f089869fSMarko Zec20090611:
1071456b5dd8SWarner Losh	The layout of struct thread has changed.  Kernel and modules need to
1072456b5dd8SWarner Losh	be rebuilt.
1073f089869fSMarko Zec
1074bc29160dSMarko Zec20090608:
1075456b5dd8SWarner Losh	The layout of structs ifnet, domain, protosw and vnet_net has changed.
1076456b5dd8SWarner Losh	Kernel modules need to be rebuilt.  Bump __FreeBSD_version to 800097.
1077bc29160dSMarko Zec
107889f98d57SEd Schouten20090602:
107989f98d57SEd Schouten	window(1) has been removed from the base system. It can now be
108089f98d57SEd Schouten	installed from ports. The port is called misc/window.
108189f98d57SEd Schouten
1082c2c2a7c1SBjoern A. Zeeb20090601:
1083456b5dd8SWarner Losh	The way we are storing and accessing `routing table' entries has
1084456b5dd8SWarner Losh	changed. Programs reading the FIB, like netstat, need to be
1085456b5dd8SWarner Losh	re-compiled.
1086c2c2a7c1SBjoern A. Zeeb
1087529cb8e3SRobert Watson20090601:
1088529cb8e3SRobert Watson	A new netisr implementation has been added for FreeBSD 8.  Network
1089529cb8e3SRobert Watson	file system modules, such as igmp, ipdivert, and others, should be
1090529cb8e3SRobert Watson	rebuilt.
1091529cb8e3SRobert Watson	Bump __FreeBSD_version to 800096.
1092529cb8e3SRobert Watson
10932a61ba47SEdward Tomasz Napierala20090530:
1094456b5dd8SWarner Losh	Remove the tunable/sysctl debug.mpsafevfs as its initial purpose is no
1095456b5dd8SWarner Losh	more valid.
1096faef64ccSAttilio Rao
1097faef64ccSAttilio Rao20090530:
10982a61ba47SEdward Tomasz Napierala	Add VOP_ACCESSX(9).  File system modules need to be rebuilt.
10992a61ba47SEdward Tomasz Napierala	Bump __FreeBSD_version to 800094.
11002a61ba47SEdward Tomasz Napierala
1101b89fed67SEdward Tomasz Napierala20090529:
1102456b5dd8SWarner Losh	Add mnt_xflag field to 'struct mount'.  File system modules need to be
1103456b5dd8SWarner Losh	rebuilt.
1104b89fed67SEdward Tomasz Napierala	Bump __FreeBSD_version to 800093.
1105b89fed67SEdward Tomasz Napierala
11061ae1c2a3SAttilio Rao20090528:
11071ae1c2a3SAttilio Rao	The compiling option ADAPTIVE_SX has been retired while it has been
11081ae1c2a3SAttilio Rao	introduced the option NO_ADAPTIVE_SX which handles the reversed logic.
11091ae1c2a3SAttilio Rao	The KPI for sx_init_flags() changes as accepting flags:
1110456b5dd8SWarner Losh	SX_ADAPTIVESPIN flag has been retired while the SX_NOADAPTIVE flag has
1111456b5dd8SWarner Losh	been introduced in order to handle the reversed logic.
11121ae1c2a3SAttilio Rao	Bump __FreeBSD_version to 800092.
11131ae1c2a3SAttilio Rao
11140304c731SJamie Gritton20090527:
11150304c731SJamie Gritton	Add support for hierarchical jails.  Remove global securelevel.
11160304c731SJamie Gritton	Bump __FreeBSD_version to 800091.
11170304c731SJamie Gritton
1118dfc79e89SEdwin Groothuis20090523:
111937f17770SMarko Zec	The layout of struct vnet_net has changed, therefore modules
112037f17770SMarko Zec	need to be rebuilt.
112137f17770SMarko Zec	Bump __FreeBSD_version to 800090.
112237f17770SMarko Zec
112337f17770SMarko Zec20090523:
1124456b5dd8SWarner Losh	The newly imported zic(8) produces a new format in the output. Please
1125456b5dd8SWarner Losh	run tzsetup(8) to install the newly created data to /etc/localtime.
1126dfc79e89SEdwin Groothuis
112723790ac0SSam Leffler20090520:
11289360ae40SAndrew Thompson	The sysctl tree for the usb stack has renamed from hw.usb2.* to
11299360ae40SAndrew Thompson	hw.usb.* and is now consistent again with previous releases.
11309360ae40SAndrew Thompson
11319360ae40SAndrew Thompson20090520:
1132456b5dd8SWarner Losh	802.11 monitor mode support was revised and driver api's were changed.
1133456b5dd8SWarner Losh	Drivers dependent on net80211 now support DLT_IEEE802_11_RADIO instead
1134456b5dd8SWarner Losh	of DLT_IEEE802_11.  No user-visible data structures were changed but
1135456b5dd8SWarner Losh	applications that use DLT_IEEE802_11 may require changes.
113623790ac0SSam Leffler	Bump __FreeBSD_version to 800088.
113723790ac0SSam Leffler
1138f6dfe47aSMarko Zec20090430:
1139f6dfe47aSMarko Zec	The layout of the following structs has changed: sysctl_oid,
1140f6dfe47aSMarko Zec	socket, ifnet, inpcbinfo, tcpcb, syncache_head, vnet_inet,
1141f6dfe47aSMarko Zec	vnet_inet6 and vnet_ipfw.  Most modules need to be rebuild or
1142f6dfe47aSMarko Zec	panics may be experienced.  World rebuild is required for
1143f6dfe47aSMarko Zec	correctly checking networking state from userland.
1144f6dfe47aSMarko Zec	Bump __FreeBSD_version to 800085.
1145f6dfe47aSMarko Zec
114633cde130SBruce M Simpson20090429:
114733cde130SBruce M Simpson	MLDv2 and Source-Specific Multicast (SSM) have been merged
114833cde130SBruce M Simpson	to the IPv6 stack. VIMAGE hooks are in but not yet used.
114933cde130SBruce M Simpson	The implementation of SSM within FreeBSD's IPv6 stack closely
115033cde130SBruce M Simpson	follows the IPv4 implementation.
115133cde130SBruce M Simpson
115233cde130SBruce M Simpson	For kernel developers:
115333cde130SBruce M Simpson
115433cde130SBruce M Simpson	* The most important changes are that the ip6_output() and
115533cde130SBruce M Simpson	  ip6_input() paths no longer take the IN6_MULTI_LOCK,
115633cde130SBruce M Simpson	  and this lock has been downgraded to a non-recursive mutex.
115733cde130SBruce M Simpson
115833cde130SBruce M Simpson	* As with the changes to the IPv4 stack to support SSM, filtering
115933cde130SBruce M Simpson	  of inbound multicast traffic must now be performed by transport
116033cde130SBruce M Simpson	  protocols within the IPv6 stack. This does not apply to TCP and
116133cde130SBruce M Simpson	  SCTP, however, it does apply to UDP in IPv6 and raw IPv6.
116233cde130SBruce M Simpson
116333cde130SBruce M Simpson	* The KPIs used by IPv6 multicast are similar to those used by
116433cde130SBruce M Simpson	  the IPv4 stack, with the following differences:
116533cde130SBruce M Simpson	   * im6o_mc_filter() is analogous to imo_multicast_filter().
116633cde130SBruce M Simpson	   * The legacy KAME entry points in6_joingroup and in6_leavegroup()
116733cde130SBruce M Simpson	     are shimmed to in6_mc_join() and in6_mc_leave() respectively.
116833cde130SBruce M Simpson	   * IN6_LOOKUP_MULTI() has been deprecated and removed.
116933cde130SBruce M Simpson	   * IPv6 relies on MLD for the DAD mechanism. KAME's internal KPIs
117033cde130SBruce M Simpson	     for MLDv1 have an additional 'timer' argument which is used to
117133cde130SBruce M Simpson	     jitter the initial membership report for the solicited-node
117233cde130SBruce M Simpson	     multicast membership on-link.
117333cde130SBruce M Simpson	   * This is not strictly needed for MLDv2, which already jitters
117433cde130SBruce M Simpson	     its report transmissions.  However, the 'timer' argument is
117533cde130SBruce M Simpson	     preserved in case MLDv1 is active on the interface.
117633cde130SBruce M Simpson
117733cde130SBruce M Simpson	* The KAME linked-list based IPv6 membership implementation has
117833cde130SBruce M Simpson	  been refactored to use a vector similar to that used by the IPv4
117933cde130SBruce M Simpson	  stack.
118033cde130SBruce M Simpson	  Code which maintains a list of its own multicast memberships
118133cde130SBruce M Simpson	  internally, e.g. carp, has been updated to reflect the new
118233cde130SBruce M Simpson	  semantics.
118333cde130SBruce M Simpson
118433cde130SBruce M Simpson	* There is a known Lock Order Reversal (LOR) due to in6_setscope()
118533cde130SBruce M Simpson	  acquiring the IF_AFDATA_LOCK and being called within ip6_output().
118633cde130SBruce M Simpson	  Whilst MLDv2 tries to avoid this otherwise benign LOR, it is an
118733cde130SBruce M Simpson	  implementation constraint which needs to be addressed in HEAD.
118833cde130SBruce M Simpson
118933cde130SBruce M Simpson	For application developers:
119033cde130SBruce M Simpson
119133cde130SBruce M Simpson	* The changes are broadly similar to those made for the IPv4
119233cde130SBruce M Simpson	  stack.
119333cde130SBruce M Simpson
119433cde130SBruce M Simpson	* The use of IPv4 and IPv6 multicast socket options on the same
119533cde130SBruce M Simpson	  socket, using mapped addresses, HAS NOT been tested or supported.
119633cde130SBruce M Simpson
119733cde130SBruce M Simpson	* There are a number of issues with the implementation of various
119833cde130SBruce M Simpson	  IPv6 multicast APIs which need to be resolved in the API surface
119933cde130SBruce M Simpson	  before the implementation is fully compatible with KAME userland
120033cde130SBruce M Simpson	  use, and these are mostly to do with interface index treatment.
120133cde130SBruce M Simpson
120233cde130SBruce M Simpson	* The literature available discusses the use of either the delta / ASM
120333cde130SBruce M Simpson	  API with setsockopt(2)/getsockopt(2), or the full-state / ASM API
120433cde130SBruce M Simpson	  using setsourcefilter(3)/getsourcefilter(3). For more information
120533cde130SBruce M Simpson	  please refer to RFC 3768, 'Socket Interface Extensions for
120633cde130SBruce M Simpson	  Multicast Source Filters'.
120733cde130SBruce M Simpson
120833cde130SBruce M Simpson	* Applications which use the published RFC 3678 APIs should be fine.
120933cde130SBruce M Simpson
121033cde130SBruce M Simpson	For systems administrators:
121133cde130SBruce M Simpson
121233cde130SBruce M Simpson	* The mtest(8) utility has been refactored to support IPv6, in
121333cde130SBruce M Simpson	  addition to IPv4. Interface addresses are no longer accepted
121433cde130SBruce M Simpson	  as arguments, their names must be used instead. The utility
121533cde130SBruce M Simpson	  will map the interface name to its first IPv4 address as
121633cde130SBruce M Simpson	  returned by getifaddrs(3).
121733cde130SBruce M Simpson
121833cde130SBruce M Simpson	* The ifmcstat(8) utility has also been updated to print the MLDv2
121933cde130SBruce M Simpson	  endpoint state and source filter lists via sysctl(3).
122033cde130SBruce M Simpson
122133cde130SBruce M Simpson	* The net.inet6.ip6.mcast.loop sysctl may be tuned to 0 to disable
122233cde130SBruce M Simpson	  loopback of IPv6 multicast datagrams by default; it defaults to 1
122333cde130SBruce M Simpson	  to preserve the existing behaviour. Disabling multicast loopback is
122433cde130SBruce M Simpson	  recommended for optimal system performance.
122533cde130SBruce M Simpson
122633cde130SBruce M Simpson	* The IPv6 MROUTING code has been changed to examine this sysctl
122733cde130SBruce M Simpson	  instead of attempting to perform a group lookup before looping
122833cde130SBruce M Simpson	  back forwarded datagrams.
122933cde130SBruce M Simpson
123033cde130SBruce M Simpson	Bump __FreeBSD_version to 800084.
123133cde130SBruce M Simpson
12328b8bf775SRobert Watson20090422:
1233131cdffbSMaksim Yevmenkin	Implement low-level Bluetooth HCI API.
1234131cdffbSMaksim Yevmenkin	Bump __FreeBSD_version to 800083.
1235131cdffbSMaksim Yevmenkin
12368b8bf775SRobert Watson20090419:
12378b8bf775SRobert Watson	The layout of struct malloc_type, used by modules to register new
12388b8bf775SRobert Watson	memory allocation types, has changed.  Most modules will need to
12398b8bf775SRobert Watson	be rebuilt or panics may be experienced.
12408b8bf775SRobert Watson	Bump __FreeBSD_version to 800081.
12418b8bf775SRobert Watson
1242de4ab55eSKip Macy20090415:
1243773b573aSKip Macy	Anticipate overflowing inp_flags - add inp_flags2.
1244773b573aSKip Macy	This changes most offsets in inpcb, so checking v4 connection
1245773b573aSKip Macy	state will require a world rebuild.
1246773b573aSKip Macy	Bump __FreeBSD_version to 800080.
1247f146c211SXin LI
1248773b573aSKip Macy20090415:
1249de4ab55eSKip Macy	Add an llentry to struct route and struct route_in6. Modules
1250de4ab55eSKip Macy	embedding a struct route will need to be recompiled.
1251de4ab55eSKip Macy	Bump __FreeBSD_version to 800079.
1252de4ab55eSKip Macy
1253427ac07fSKip Macy20090414:
1254427ac07fSKip Macy	The size of rt_metrics_lite and by extension rtentry has changed.
1255427ac07fSKip Macy	Networking administration apps will need to be recompiled.
1256427ac07fSKip Macy	The route command now supports show as an alias for get, weighting
1257427ac07fSKip Macy	of routes, sticky and nostick flags to alter the behavior of stateful
1258427ac07fSKip Macy	load balancing.
1259427ac07fSKip Macy	Bump __FreeBSD_version to 800078.
12608713ec3dSRenato Botelho
126187437955SMaksim Yevmenkin20090408:
126287437955SMaksim Yevmenkin	Do not use Giant for kbdmux(4) locking. This is wrong and
126387437955SMaksim Yevmenkin	apparently causing more problems than it solves. This will
126487437955SMaksim Yevmenkin	re-open the issue where interrupt handlers may race with
126587437955SMaksim Yevmenkin	kbdmux(4) in polling mode. Typical symptoms include (but
126687437955SMaksim Yevmenkin	not limited to) duplicated and/or missing characters when
126787437955SMaksim Yevmenkin	low level console functions (such as gets) are used while
126887437955SMaksim Yevmenkin	interrupts are enabled (for example geli password prompt,
126987437955SMaksim Yevmenkin	mountroot prompt etc.). Disabling kbdmux(4) may help.
127087437955SMaksim Yevmenkin
12712f6a1858SMarko Zec20090407:
12722f6a1858SMarko Zec	The size of structs vnet_net, vnet_inet and vnet_ipfw has changed;
12732f6a1858SMarko Zec	kernel modules referencing any of the above need to be recompiled.
12742f6a1858SMarko Zec	Bump __FreeBSD_version to 800075.
12752f6a1858SMarko Zec
1276781d043cSIvan Voras20090320:
1277781d043cSIvan Voras	GEOM_PART has become the default partition slicer for storage devices,
1278781d043cSIvan Voras	replacing GEOM_MBR, GEOM_BSD, GEOM_PC98 and GEOM_GPT slicers. It
12799a07b548SIvan Voras	introduces some changes:
12809a07b548SIvan Voras
12819a07b548SIvan Voras	MSDOS/EBR: the devices created from MSDOS extended partition entries
12829a07b548SIvan Voras	(EBR) can be named differently than with GEOM_MBR and are now symlinks
12839a07b548SIvan Voras	to devices with offset-based names. fstabs may need to be modified.
12849a07b548SIvan Voras
12859a07b548SIvan Voras	BSD: the "geometry does not match label" warning is harmless in most
12869a07b548SIvan Voras	cases but it points to problems in file system misalignment with
12879a07b548SIvan Voras	disk geometry. The "c" partition is now implicit, covers the whole
12889a07b548SIvan Voras	top-level drive and cannot be (mis)used by users.
12899a07b548SIvan Voras
12909a07b548SIvan Voras	General: Kernel dumps are now not allowed to be written to devices
12919a07b548SIvan Voras	whose partition types indicate they are meant to be used for file
12929a07b548SIvan Voras	systems (or, in case of MSDOS partitions, as something else than
12939a07b548SIvan Voras	the "386BSD" type).
12949a07b548SIvan Voras
12959a07b548SIvan Voras	Most of these changes date approximately from 200812.
1296781d043cSIvan Voras
1297443fc317SBruce M Simpson20090319:
12982b78d306SAndrew Thompson	The uscanner(4) driver has been removed from the kernel. This follows
12992b78d306SAndrew Thompson	Linux removing theirs in 2.6 and making libusb the default interface
13002b78d306SAndrew Thompson	(supported by sane).
13012b78d306SAndrew Thompson
13022b78d306SAndrew Thompson20090319:
1303443fc317SBruce M Simpson	The multicast forwarding code has been cleaned up. netstat(1)
1304443fc317SBruce M Simpson	only relies on KVM now for printing bandwidth upcall meters.
1305443fc317SBruce M Simpson	The IPv4 and IPv6 modules are split into ip_mroute_mod and
1306443fc317SBruce M Simpson	ip6_mroute_mod respectively. The config(5) options for statically
1307443fc317SBruce M Simpson	compiling this code remain the same, i.e. 'options MROUTING'.
1308443fc317SBruce M Simpson
13091df14375SRobert Watson20090315:
13101df14375SRobert Watson	Support for the IFF_NEEDSGIANT network interface flag has been
13111df14375SRobert Watson	removed, which means that non-MPSAFE network device drivers are no
13121df14375SRobert Watson	longer supported.  In particular, if_ar, if_sr, and network device
13131df14375SRobert Watson	drivers from the old (legacy) USB stack can no longer be built or
13141df14375SRobert Watson	used.
13151df14375SRobert Watson
1316e667034dSRui Paulo20090313:
13177e06afcaSGabor Kovesdan	POSIX.1 Native Language Support (NLS) has been enabled in libc and
13187e06afcaSGabor Kovesdan	a bunch of new language catalog files have also been added.
13197e06afcaSGabor Kovesdan	This means that some common libc messages are now localized and
13207e06afcaSGabor Kovesdan	they depend on the LC_MESSAGES environmental variable.
13217e06afcaSGabor Kovesdan
13227e06afcaSGabor Kovesdan20090313:
1323e667034dSRui Paulo	The k8temp(4) driver has been renamed to amdtemp(4) since
13248fb1e038SDavid E. O'Brien	support for Family 10 and Family 11 CPU families was added.
1325e667034dSRui Paulo
1326a091d2a5SAndrew Thompson20090309:
1327d10910e6SBruce M Simpson	IGMPv3 and Source-Specific Multicast (SSM) have been merged
1328d10910e6SBruce M Simpson	to the IPv4 stack. VIMAGE hooks are in but not yet used.
1329d10910e6SBruce M Simpson
1330d10910e6SBruce M Simpson	For kernel developers, the most important changes are that the
1331d10910e6SBruce M Simpson	ip_output() and ip_input() paths no longer take the IN_MULTI_LOCK(),
1332d10910e6SBruce M Simpson	and this lock has been downgraded to a non-recursive mutex.
1333d10910e6SBruce M Simpson
1334d10910e6SBruce M Simpson	Transport protocols (UDP, Raw IP) are now responsible for filtering
1335d10910e6SBruce M Simpson	inbound multicast traffic according to group membership and source
1336d10910e6SBruce M Simpson	filters. The imo_multicast_filter() KPI exists for this purpose.
1337d10910e6SBruce M Simpson	Transports which do not use multicast (SCTP, TCP) already reject
1338d10910e6SBruce M Simpson	multicast by default. Forwarding and receive performance may improve
1339d10910e6SBruce M Simpson	as a mutex acquisition is no longer needed in the ip_input()
1340d10910e6SBruce M Simpson	low-level input path.  in_addmulti() and in_delmulti() are shimmed
1341d10910e6SBruce M Simpson	to new KPIs which exist to support SSM in-kernel.
1342d10910e6SBruce M Simpson
1343d10910e6SBruce M Simpson	For application developers, it is recommended that loopback of
1344d10910e6SBruce M Simpson	multicast datagrams be disabled for best performance, as this
1345d10910e6SBruce M Simpson	will still cause the lock to be taken for each looped-back
1346d10910e6SBruce M Simpson	datagram transmission. The net.inet.ip.mcast.loop sysctl may
1347d10910e6SBruce M Simpson	be tuned to 0 to disable loopback by default; it defaults to 1
1348d10910e6SBruce M Simpson	to preserve the existing behaviour.
1349d10910e6SBruce M Simpson
1350d10910e6SBruce M Simpson	For systems administrators, to obtain best performance with
1351d10910e6SBruce M Simpson	multicast reception and multiple groups, it is always recommended
1352d10910e6SBruce M Simpson	that a card with a suitably precise hash filter is used. Hash
1353d10910e6SBruce M Simpson	collisions will still result in the lock being taken within the
1354d10910e6SBruce M Simpson	transport protocol input path to check group membership.
1355d10910e6SBruce M Simpson
1356d10910e6SBruce M Simpson	If deploying FreeBSD in an environment with IGMP snooping switches,
1357d10910e6SBruce M Simpson	it is recommended that the net.inet.igmp.sendlocal sysctl remain
1358d10910e6SBruce M Simpson	enabled; this forces 224.0.0.0/24 group membership to be announced
1359d10910e6SBruce M Simpson	via IGMP.
1360d10910e6SBruce M Simpson
1361d10910e6SBruce M Simpson	The size of 'struct igmpstat' has changed; netstat needs to be
1362d10910e6SBruce M Simpson	recompiled to reflect this.
1363d10910e6SBruce M Simpson	Bump __FreeBSD_version to 800070.
1364d10910e6SBruce M Simpson
1365d10910e6SBruce M Simpson20090309:
1366a091d2a5SAndrew Thompson	libusb20.so.1 is now installed as libusb.so.1 and the ports system
1367a091d2a5SAndrew Thompson	updated to use it. This requires a buildworld/installworld in order to
1368a091d2a5SAndrew Thompson	update the library and dependencies (usbconfig, etc). Its advisable to
1369cb2fe9b1SStanislav Sedov	rebuild all ports which uses libusb. More specific directions are given
13700ee5826eSAndrew Thompson	in the ports collection UPDATING file. Any /etc/libmap.conf entries for
13713296f80dSAndrew Thompson	libusb are no longer required and can be removed.
1372a091d2a5SAndrew Thompson
137365067cc8SKonstantin Belousov20090302:
13749f960e98SKonstantin Belousov	A workaround is committed to allow the creation of System V shared
13759f960e98SKonstantin Belousov	memory segment of size > 2 GB on the 64-bit architectures.
13769f960e98SKonstantin Belousov	Due to a limitation of the existing ABI, the shm_segsz member
137765067cc8SKonstantin Belousov	of the struct shmid_ds, returned by shmctl(IPC_STAT) call is
1378813bb2c9SJoel Dahl	wrong for large segments. Note that limits must be explicitly
137965067cc8SKonstantin Belousov	raised to allow such segments to be created.
138065067cc8SKonstantin Belousov
1381176273eaSRobert Watson20090301:
1382176273eaSRobert Watson	The layout of struct ifnet has changed, requiring a rebuild of all
1383176273eaSRobert Watson	network device driver modules.
1384176273eaSRobert Watson
1385a13a5664SAndrew Thompson20090227:
1386a13a5664SAndrew Thompson	The /dev handling for the new USB stack has changed, a
1387a13a5664SAndrew Thompson	buildworld/installworld is required for libusb20.
1388a13a5664SAndrew Thompson
138971e9286cSAndrew Thompson20090223:
139071e9286cSAndrew Thompson	The new USB2 stack has now been permanently moved in and all kernel and
1391200dcf9aSAndrew Thompson	module names reverted to their previous values (eg, usb, ehci, ohci,
13929c1e15b5SAndrew Thompson	ums, ...).  The old usb stack can be compiled in by prefixing the name
139371e9286cSAndrew Thompson	with the letter 'o', the old usb modules have been removed.
1394a709c9a6SWarner Losh	Updating entry 20090216 for xorg and 20090215 for libmap may still
1395a709c9a6SWarner Losh	apply.
139671e9286cSAndrew Thompson
1397553bf6a4SMike Makonnen20090217:
1398553bf6a4SMike Makonnen	The rc.conf(5) option if_up_delay has been renamed to
1399553bf6a4SMike Makonnen	defaultroute_delay to better reflect its purpose. If you have
1400553bf6a4SMike Makonnen	customized this setting in /etc/rc.conf you need to update it to
1401553bf6a4SMike Makonnen	use the new name.
1402553bf6a4SMike Makonnen
1403bb71e4b6SAndrew Thompson20090216:
1404bb71e4b6SAndrew Thompson	xorg 7.4 wants to configure its input devices via hald which does not
1405bb71e4b6SAndrew Thompson	yet work with USB2. If the keyboard/mouse does not work in xorg then
1406bb71e4b6SAndrew Thompson	add
1407bb71e4b6SAndrew Thompson		Option "AllowEmptyInput" "off"
1408bb71e4b6SAndrew Thompson	to your ServerLayout section.  This will cause X to use the configured
1409cbb9c89eSMaxim Konovalov	kbd and mouse sections from your xorg.conf.
1410bb71e4b6SAndrew Thompson
1411e4edc14eSAndrew Thompson20090215:
1412e4edc14eSAndrew Thompson	The GENERIC kernels for all architectures now default to the new USB2
1413e4edc14eSAndrew Thompson	stack. No kernel config options or code have been removed so if a
1414e4edc14eSAndrew Thompson	problem arises please report it and optionally revert to the old USB
1415e4edc14eSAndrew Thompson	stack. If you are loading USB kernel modules or have a custom kernel
1416e4edc14eSAndrew Thompson	that includes GENERIC then ensure that usb names are also changed over,
1417cbb9c89eSMaxim Konovalov	eg uftdi -> usb2_serial_ftdi.
1418e4edc14eSAndrew Thompson
1419a709c9a6SWarner Losh	Older programs linked against the ports libusb 0.1 need to be
1420a709c9a6SWarner Losh	redirected to the new stack's libusb20.  /etc/libmap.conf can
1421a709c9a6SWarner Losh	be used for this:
1422a709c9a6SWarner Losh		# Map old usb library to new one for usb2 stack
1423a709c9a6SWarner Losh		libusb-0.1.so.8	libusb20.so.1
1424a709c9a6SWarner Losh
142521293e70SAndrew Thompson20090209:
142621293e70SAndrew Thompson	All USB ethernet devices now attach as interfaces under the name ueN
142721293e70SAndrew Thompson	(eg. ue0). This is to provide a predictable name as vendors often
142821293e70SAndrew Thompson	change usb chipsets in a product without notice.
142921293e70SAndrew Thompson
143014943437SJohn Baldwin20090203:
143114943437SJohn Baldwin	The ichsmb(4) driver has been changed to require SMBus slave
143214943437SJohn Baldwin	addresses be left-justified (xxxxxxx0b) rather than right-justified.
143314943437SJohn Baldwin	All of the other SMBus controller drivers require left-justified
143414943437SJohn Baldwin	slave addresses, so this change makes all the drivers provide the
143514943437SJohn Baldwin	same interface.
143614943437SJohn Baldwin
143709f8c3ffSBjoern A. Zeeb20090201:
143809f8c3ffSBjoern A. Zeeb	INET6 statistics (struct ip6stat) was updated.
143909f8c3ffSBjoern A. Zeeb	netstat(1) needs to be recompiled.
144009f8c3ffSBjoern A. Zeeb
144174f91fb9SMaxim Sobolev20090119:
144274f91fb9SMaxim Sobolev	NTFS has been removed from GENERIC kernel on amd64 to match
144374f91fb9SMaxim Sobolev	GENERIC on i386. Should not cause any issues since mount_ntfs(8)
144474f91fb9SMaxim Sobolev	will load ntfs.ko module automatically when NTFS support is
144574f91fb9SMaxim Sobolev	actually needed, unless ntfs.ko is not installed or security
144674f91fb9SMaxim Sobolev	level prohibits loading kernel modules. If either is the case,
144774f91fb9SMaxim Sobolev	"options NTFS" has to be added into kernel config.
144874f91fb9SMaxim Sobolev
144924cb0f22SLawrence Stewart20090115:
145024cb0f22SLawrence Stewart	TCP Appropriate Byte Counting (RFC 3465) support added to kernel.
145124cb0f22SLawrence Stewart	New field in struct tcpcb breaks ABI, so bump __FreeBSD_version to
145224cb0f22SLawrence Stewart	800061. User space tools that rely on the size of struct tcpcb in
145324cb0f22SLawrence Stewart	tcp_var.h (e.g. sockstat) need to be recompiled.
145424cb0f22SLawrence Stewart
14555d55747eSAlexander Motin20081225:
14565d55747eSAlexander Motin	ng_tty(4) module updated to match the new TTY subsystem.
14575d55747eSAlexander Motin	Due to API change, user-level applications must be updated.
14585d55747eSAlexander Motin	New API support added to mpd5 CVS and expected to be present
14595d55747eSAlexander Motin	in next mpd5.3 release.
14605d55747eSAlexander Motin
1461efc06131SSam Leffler20081219:
1462a1c64cafSSam Leffler	With __FreeBSD_version 800060 the makefs tool is part of
1463a1c64cafSSam Leffler	the base system (it was a port).
1464efc06131SSam Leffler
1465991f8615SKip Macy20081216:
1466991f8615SKip Macy	The afdata and ifnet locks have been changed from mutexes to
1467991f8615SKip Macy	rwlocks, network modules will need to be re-compiled.
14681d7e99caSJohn Baldwin
14696e6b3f7cSQing Li20081214:
14706e6b3f7cSQing Li	__FreeBSD_version 800059 incorporates the new arp-v2 rewrite.
14716e6b3f7cSQing Li	RTF_CLONING, RTF_LLINFO and RTF_WASCLONED flags are eliminated.
14726e6b3f7cSQing Li	The new code reduced struct rtentry{} by 16 bytes on 32-bit
14736e6b3f7cSQing Li	architecture and 40 bytes on 64-bit architecture. The userland
14746e6b3f7cSQing Li	applications "arp" and "ndp" have been updated accordingly.
14756e6b3f7cSQing Li	The output from "netstat -r" shows only routing entries and
14766e6b3f7cSQing Li	none of the L2 information.
14776e6b3f7cSQing Li
147833644623SSam Leffler20081130:
147933644623SSam Leffler	__FreeBSD_version 800057 marks the switchover from the
148033644623SSam Leffler	binary ath hal to source code. Users must add the line:
148133644623SSam Leffler
1482c60b227cSSam Leffler	options	AH_SUPPORT_AR5416
148333644623SSam Leffler
148433644623SSam Leffler	to their kernel config files when specifying:
148533644623SSam Leffler
148633644623SSam Leffler	device	ath_hal
148733644623SSam Leffler
148833644623SSam Leffler	The ath_hal module no longer exists; the code is now compiled
148933644623SSam Leffler	together with the driver in the ath module.  It is now
149033644623SSam Leffler	possible to tailor chip support (i.e. reduce the set of chips
149133644623SSam Leffler	and thereby the code size); consult ath_hal(4) for details.
149233644623SSam Leffler
1493db7f0b97SKip Macy20081121:
1494db7f0b97SKip Macy	__FreeBSD_version 800054 adds memory barriers to
1495db7f0b97SKip Macy	<machine/atomic.h>, new interfaces to ifnet to facilitate
1496db7f0b97SKip Macy	multiple hardware transmit queues for cards that support
1497db7f0b97SKip Macy	them, and a lock-less ring-buffer implementation to
1498db7f0b97SKip Macy	enable drivers to more efficiently manage queueing of
1499db7f0b97SKip Macy	packets.
1500db7f0b97SKip Macy
1501de2e1b35SXin LI20081117:
1502de2e1b35SXin LI	A new version of ZFS (version 13) has been merged to -HEAD.
1503de3a91a0SXin LI	This version has zpool attribute "listsnapshots" off by
1504de3a91a0SXin LI	default, which means "zfs list" does not show snapshots,
1505de2e1b35SXin LI	and is the same as Solaris behavior.
1506de2e1b35SXin LI
150702d09f79SOleg Bulyzhin20081028:
150802d09f79SOleg Bulyzhin	dummynet(4) ABI has changed. ipfw(8) needs to be recompiled.
150902d09f79SOleg Bulyzhin
1510e91c7c81SJoseph Koshy20081009:
1511d8135f4aSNick Hibma	The uhci, ohci, ehci and slhci USB Host controller drivers have
1512d8135f4aSNick Hibma	been put into separate modules. If you load the usb module
1513d8135f4aSNick Hibma	separately through loader.conf you will need to load the
1514d8135f4aSNick Hibma	appropriate *hci module as well. E.g. for a UHCI-based USB 2.0
1515d8135f4aSNick Hibma	controller add the following to loader.conf:
1516d8135f4aSNick Hibma
1517d8135f4aSNick Hibma		uhci_load="YES"
1518d8135f4aSNick Hibma		ehci_load="YES"
1519d8135f4aSNick Hibma
1520d8135f4aSNick Hibma20081009:
1521e91c7c81SJoseph Koshy	The ABI used by the PMC toolset has changed.  Please keep
1522e91c7c81SJoseph Koshy	userland (libpmc(3)) and the kernel module (hwpmc(4)) in
1523e91c7c81SJoseph Koshy	sync.
1524e91c7c81SJoseph Koshy
1525b868265dSAlexander Motin20081009:
1526b868265dSAlexander Motin	atapci kernel module now includes only generic PCI ATA
1527b868265dSAlexander Motin	driver. AHCI driver moved to ataahci kernel module.
1528b868265dSAlexander Motin	All vendor-specific code moved into separate kernel modules:
1529b868265dSAlexander Motin	ataacard, ataacerlabs, ataadaptec, ataamd, ataati, atacenatek,
1530b868265dSAlexander Motin	atacypress, atacyrix, atahighpoint, ataintel, ataite, atajmicron,
1531b868265dSAlexander Motin	atamarvell, atamicron, atanational, atanetcell, atanvidia,
1532b868265dSAlexander Motin	atapromise, ataserverworks, atasiliconimage, atasis, atavia
1533b868265dSAlexander Motin
1534bc093719SEd Schouten20080820:
1535bc093719SEd Schouten	The TTY subsystem of the kernel has been replaced by a new
1536bc093719SEd Schouten	implementation, which provides better scalability and an
1537bc093719SEd Schouten	improved driver model. Most common drivers have been migrated to
1538bc093719SEd Schouten	the new TTY subsystem, while others have not. The following
1539bc093719SEd Schouten	drivers have not yet been ported to the new TTY layer:
1540bc093719SEd Schouten
1541bc093719SEd Schouten	PCI/ISA:
154266e7dc38SEd Schouten		cy, digi, rc, rp, sio
1543bc093719SEd Schouten
1544bc093719SEd Schouten	USB:
154566e7dc38SEd Schouten		ubser, ucycom
1546bc093719SEd Schouten
1547bc093719SEd Schouten	Line disciplines:
1548bc093719SEd Schouten		ng_h4, ng_tty, ppp, sl, snp
1549bc093719SEd Schouten
1550bc093719SEd Schouten	Adding these drivers to your kernel configuration file shall
1551bc093719SEd Schouten	cause compilation to fail.
1552bc093719SEd Schouten
15539d965219SOllivier Robert20080818:
15549d965219SOllivier Robert	ntpd has been upgraded to 4.2.4p5.
15559d965219SOllivier Robert
1556eaeb50d4SDag-Erling Smørgrav20080801:
1557eaeb50d4SDag-Erling Smørgrav	OpenSSH has been upgraded to 5.1p1.
1558eaeb50d4SDag-Erling Smørgrav
1559eaeb50d4SDag-Erling Smørgrav	For many years, FreeBSD's version of OpenSSH preferred DSA
1560eaeb50d4SDag-Erling Smørgrav	over RSA for host and user authentication keys.  With this
1561eaeb50d4SDag-Erling Smørgrav	upgrade, we've switched to the vendor's default of RSA over
1562eaeb50d4SDag-Erling Smørgrav	DSA.  This may cause upgraded clients to warn about unknown
1563eaeb50d4SDag-Erling Smørgrav	host keys even for previously known hosts.  Users should
1564eaeb50d4SDag-Erling Smørgrav	follow the usual procedure for verifying host keys before
1565eaeb50d4SDag-Erling Smørgrav	accepting the RSA key.
1566eaeb50d4SDag-Erling Smørgrav
1567eaeb50d4SDag-Erling Smørgrav	This can be circumvented by setting the "HostKeyAlgorithms"
1568eaeb50d4SDag-Erling Smørgrav	option to "ssh-dss,ssh-rsa" in ~/.ssh/config or on the ssh
1569eaeb50d4SDag-Erling Smørgrav	command line.
1570eaeb50d4SDag-Erling Smørgrav
1571737d990aSXin LI	Please note that the sequence of keys offered for
1572737d990aSXin LI	authentication has been changed as well.  You may want to
1573737d990aSXin LI	specify IdentityFile in a different order to revert this
1574737d990aSXin LI	behavior.
1575737d990aSXin LI
1576f4d811f0SEd Schouten20080713:
1577f4d811f0SEd Schouten	The sio(4) driver has been removed from the i386 and amd64
1578f4d811f0SEd Schouten	kernel configuration files. This means uart(4) is now the
1579f4d811f0SEd Schouten	default serial port driver on those platforms as well.
1580f4d811f0SEd Schouten
1581f4d811f0SEd Schouten	To prevent collisions with the sio(4) driver, the uart(4) driver
1582f4d811f0SEd Schouten	uses different names for its device nodes. This means the
1583f4d811f0SEd Schouten	onboard serial port will now most likely be called "ttyu0"
1584f4d811f0SEd Schouten	instead of "ttyd0". You may need to reconfigure applications to
1585f4d811f0SEd Schouten	use the new device names.
1586f4d811f0SEd Schouten
1587db96ec0bSEd Schouten	When using the serial port as a boot console, be sure to update
1588db96ec0bSEd Schouten	/boot/device.hints and /etc/ttys before booting the new kernel.
1589db96ec0bSEd Schouten	If you forget to do so, you can still manually specify the hints
1590db96ec0bSEd Schouten	at the loader prompt:
1591db96ec0bSEd Schouten
1592db96ec0bSEd Schouten		set hint.uart.0.at="isa"
1593db96ec0bSEd Schouten		set hint.uart.0.port="0x3F8"
1594db96ec0bSEd Schouten		set hint.uart.0.flags="0x10"
1595db96ec0bSEd Schouten		set hint.uart.0.irq="4"
1596db96ec0bSEd Schouten		boot -s
1597db96ec0bSEd Schouten
1598bdc03b37SMarcel Moolenaar20080609:
1599bdc03b37SMarcel Moolenaar	The gpt(8) utility has been removed. Use gpart(8) to partition
1600bdc03b37SMarcel Moolenaar	disks instead.
1601bdc03b37SMarcel Moolenaar
160227f7c387SRoman Divacky20080603:
1603a47444d5SRoman Divacky	The version that Linuxulator emulates was changed from 2.4.2
1604a47444d5SRoman Divacky	to 2.6.16. If you experience any problems with Linux binaries
1605a47444d5SRoman Divacky	please try to set sysctl compat.linux.osrelease to 2.4.2 and
1606a47444d5SRoman Divacky	if it fixes the problem contact emulation mailing list.
1607a47444d5SRoman Divacky
16082e598474SBjoern A. Zeeb20080525:
16092e598474SBjoern A. Zeeb	ISDN4BSD (I4B) was removed from the src tree. You may need to
16102e598474SBjoern A. Zeeb	update a your kernel configuration and remove relevant entries.
16112e598474SBjoern A. Zeeb
16124dcedde3SJulian Elischer20080509:
16134dcedde3SJulian Elischer	I have checked in code to support multiple routing tables.
1614032e0bf8SMaxim Konovalov	See the man pages setfib(1) and setfib(2).
16154dcedde3SJulian Elischer	This is a hopefully backwards compatible version,
16164dcedde3SJulian Elischer	but to make use of it you need to compile your kernel
16174dcedde3SJulian Elischer	with options ROUTETABLES=2 (or more up to 16).
16184dcedde3SJulian Elischer
1619de570baaSSam Leffler20080420:
1620de570baaSSam Leffler	The 802.11 wireless support was redone to enable multi-bss
1621de570baaSSam Leffler	operation on devices that are capable.  The underlying device
1622de570baaSSam Leffler	is no longer used directly but instead wlanX devices are
1623de570baaSSam Leffler	cloned with ifconfig.  This requires changes to rc.conf files.
16245318f840SWarner Losh	For example, change:
16255318f840SWarner Losh		ifconfig_ath0="WPA DHCP"
16265318f840SWarner Losh	to
16275318f840SWarner Losh		wlans_ath0=wlan0
16285318f840SWarner Losh		ifconfig_wlan0="WPA DHCP"
16290f95e625SWarner Losh	see rc.conf(5) for more details.  In addition, mergemaster of
16300f95e625SWarner Losh	/etc/rc.d is highly recommended.  Simultaneous update of userland
16310f95e625SWarner Losh	and kernel wouldn't hurt either.
1632de570baaSSam Leffler
1633de570baaSSam Leffler	As part of the multi-bss changes the wlan_scan_ap and wlan_scan_sta
1634de570baaSSam Leffler	modules were merged into the base wlan module.  All references
1635de570baaSSam Leffler	to these modules (e.g. in kernel config files) must be removed.
1636de570baaSSam Leffler
1637ff0af72cSJung-uk Kim20080408:
1638ff0af72cSJung-uk Kim	psm(4) has gained write(2) support in native operation level.
1639ff0af72cSJung-uk Kim	Arbitrary commands can be written to /dev/psm%d and status can
1640ff0af72cSJung-uk Kim	be read back from it.  Therefore, an application is responsible
1641ff0af72cSJung-uk Kim	for status validation and error recovery.  It is a no-op in
1642ff0af72cSJung-uk Kim	other operation levels.
1643ff0af72cSJung-uk Kim
1644e4c67b94SJeff Roberson20080312:
1645e4c67b94SJeff Roberson	Support for KSE threading has been removed from the kernel.  To
1646e4c67b94SJeff Roberson	run legacy applications linked against KSE libmap.conf may
1647e4c67b94SJeff Roberson	be used.  The following libmap.conf may be used to ensure
1648e4c67b94SJeff Roberson	compatibility with any prior release:
1649e4c67b94SJeff Roberson
1650e4c67b94SJeff Roberson	libpthread.so.1 libthr.so.1
1651e4c67b94SJeff Roberson	libpthread.so.2 libthr.so.2
1652e4c67b94SJeff Roberson	libkse.so.3 libthr.so.3
1653e4c67b94SJeff Roberson
16548775db6fSMarcel Moolenaar20080301:
16558775db6fSMarcel Moolenaar	The layout of struct vmspace has changed. This affects libkvm
16568775db6fSMarcel Moolenaar	and any executables that link against libkvm and use the
16578775db6fSMarcel Moolenaar	kvm_getprocs() function. In particular, but not exclusively,
16588775db6fSMarcel Moolenaar	it affects ps(1), fstat(1), pkill(1), systat(1), top(1) and w(1).
16598775db6fSMarcel Moolenaar	The effects are minimal, but it's advisable to upgrade world
16608775db6fSMarcel Moolenaar	nonetheless.
16618775db6fSMarcel Moolenaar
1662df09ebc0SJack F Vogel20080229:
1663df09ebc0SJack F Vogel	The latest em driver no longer has support in it for the
1664df09ebc0SJack F Vogel	82575 adapter, this is now moved to the igb driver. The
1665df09ebc0SJack F Vogel	split was done to make new features that are incompatible
1666df09ebc0SJack F Vogel	with older hardware easier to do.
1667df09ebc0SJack F Vogel
16681669d8afSAndrew Thompson20080220:
16691669d8afSAndrew Thompson	The new geom_lvm(4) geom class has been renamed to geom_linux_lvm(4),
16701669d8afSAndrew Thompson	likewise the kernel option is now GEOM_LINUX_LVM.
16711669d8afSAndrew Thompson
16722427fa19SKris Kennaway20080211:
16732427fa19SKris Kennaway	The default NFS mount mode has changed from UDP to TCP for
16742427fa19SKris Kennaway	increased reliability.  If you rely on (insecurely) NFS
16752427fa19SKris Kennaway	mounting across a firewall you may need to update your
16762427fa19SKris Kennaway	firewall rules.
16772427fa19SKris Kennaway
16785e9f6b73SSam Leffler20080208:
16795e9f6b73SSam Leffler	Belatedly note the addition of m_collapse for compacting
16805e9f6b73SSam Leffler	mbuf chains.
16815e9f6b73SSam Leffler
168248aaad5fSYaroslav Tykhiy20080126:
168348aaad5fSYaroslav Tykhiy	The fts(3) structures have been changed to use adequate
168448aaad5fSYaroslav Tykhiy	integer types for their members and so to be able to cope
168548aaad5fSYaroslav Tykhiy	with huge file trees.  The old fts(3) ABI is preserved
168648aaad5fSYaroslav Tykhiy	through symbol versioning in libc, so third-party binaries
168748aaad5fSYaroslav Tykhiy	using fts(3) should still work, although they will not take
168848aaad5fSYaroslav Tykhiy	advantage of the extended types.  At the same time, some
168948aaad5fSYaroslav Tykhiy	third-party software might fail to build after this change
169048aaad5fSYaroslav Tykhiy	due to unportable assumptions made in its source code about
169148aaad5fSYaroslav Tykhiy	fts(3) structure members.  Such software should be fixed
169248aaad5fSYaroslav Tykhiy	by its vendor or, in the worst case, in the ports tree.
169348aaad5fSYaroslav Tykhiy	FreeBSD_version 800015 marks this change for the unlikely
169448aaad5fSYaroslav Tykhiy	case that a portable fix is impossible.
169548aaad5fSYaroslav Tykhiy
169651dc1e12SRuslan Ermilov20080123:
16978015f45cSWarner Losh	To upgrade to -current after this date, you must be running
169851dc1e12SRuslan Ermilov	FreeBSD not older than 6.0-RELEASE.  Upgrading to -current
16998015f45cSWarner Losh	from 5.x now requires a stop over at RELENG_6 or RELENG_7 systems.
17008015f45cSWarner Losh
1701ab4a2c41SMatteo Riondato20071128:
1702ab4a2c41SMatteo Riondato	The ADAPTIVE_GIANT kernel option has been retired because its
1703ab4a2c41SMatteo Riondato	functionality is the default now.
1704ab4a2c41SMatteo Riondato
1705e393af84SMarius Strobl20071118:
1706e393af84SMarius Strobl	The AT keyboard emulation of sunkbd(4) has been turned on
1707e393af84SMarius Strobl	by default. In order to make the special symbols of the Sun
1708e393af84SMarius Strobl	keyboards driven by sunkbd(4) work under X these now have
1709e393af84SMarius Strobl	to be configured the same way as Sun USB keyboards driven
1710e393af84SMarius Strobl	by ukbd(4) (which also does AT keyboard emulation), f.e.:
1711e393af84SMarius Strobl
1712e393af84SMarius Strobl	Option	"XkbLayout" "us"
1713e393af84SMarius Strobl	Option	"XkbRules" "xorg"
1714e393af84SMarius Strobl	Option	"XkbSymbols" "pc(pc105)+sun_vndr/usb(sun_usb)+us"
1715e393af84SMarius Strobl
171633d3fffaSMarius Strobl20071024:
171733d3fffaSMarius Strobl	It has been decided that it is desirable to provide ABI
171833d3fffaSMarius Strobl	backwards compatibility to the FreeBSD 4/5/6 versions of the
171933d3fffaSMarius Strobl	PCIOCGETCONF, PCIOCREAD and PCIOCWRITE IOCTLs, which was
172033d3fffaSMarius Strobl	broken with the introduction of PCI domain support (see the
172133d3fffaSMarius Strobl	20070930 entry). Unfortunately, this required the ABI of
172233d3fffaSMarius Strobl	PCIOCGETCONF to be broken again in order to be able to
172333d3fffaSMarius Strobl	provide backwards compatibility to the old version of that
172433d3fffaSMarius Strobl	IOCTL. Thus consumers of PCIOCGETCONF have to be recompiled
172533d3fffaSMarius Strobl	again. As for prominent ports this affects neither pciutils
172633d3fffaSMarius Strobl	nor xorg-server this time, the hal port needs to be rebuilt
172733d3fffaSMarius Strobl	however.
172833d3fffaSMarius Strobl
17293d461febSJulian Elischer20071020:
17303d461febSJulian Elischer	The misnamed kthread_create() and friends have been renamed
17313d461febSJulian Elischer	to kproc_create() etc. Many of the callers already
17323d461febSJulian Elischer	used kproc_start()..
17333d461febSJulian Elischer	I will return kthread_create() and friends in a while
17343d461febSJulian Elischer	with implementations that actually create threads, not procs.
17353d461febSJulian Elischer	Renaming corresponds with version 800002.
17363d461febSJulian Elischer
1737c15e0967SKen Smith20071010:
1738c15e0967SKen Smith	RELENG_7 branched.
1739c15e0967SKen Smith
1740dc0dbf5cSWarner LoshCOMMON ITEMS:
1741dc0dbf5cSWarner Losh
1742a24eff53SWarner Losh	General Notes
1743a24eff53SWarner Losh	-------------
1744456b5dd8SWarner Losh	Avoid using make -j when upgrading.  While generally safe, there are
1745456b5dd8SWarner Losh	sometimes problems using -j to upgrade.  If your upgrade fails with
17461733d35cSRuslan Ermilov	-j, please try again without -j.  From time to time in the past there
1747456b5dd8SWarner Losh	have been problems using -j with buildworld and/or installworld.  This
1748456b5dd8SWarner Losh	is especially true when upgrading between "distant" versions (eg one
1749456b5dd8SWarner Losh	that cross a major release boundary or several minor releases, or when
1750456b5dd8SWarner Losh	several months have passed on the -current branch).
1751a24eff53SWarner Losh
17525780f3baSWarner Losh	Sometimes, obscure build problems are the result of environment
17535780f3baSWarner Losh	poisoning.  This can happen because the make utility reads its
1754456b5dd8SWarner Losh	environment when searching for values for global variables.  To run
1755456b5dd8SWarner Losh	your build attempts in an "environmental clean room", prefix all make
1756456b5dd8SWarner Losh	commands with 'env -i '.  See the env(1) manual page for more details.
17575780f3baSWarner Losh
1758456b5dd8SWarner Losh	When upgrading from one major version to another it is generally best
1759456b5dd8SWarner Losh	to upgrade to the latest code in the currently installed branch first,
1760456b5dd8SWarner Losh	then do an upgrade to the new branch. This is the best-tested upgrade
1761456b5dd8SWarner Losh	path, and has the highest probability of being successful.  Please try
1762456b5dd8SWarner Losh	this approach before reporting problems with a major version upgrade.
1763081ff8acSDoug Barton
17646eeab389SWarner Losh	When upgrading a live system, having a root shell around before
1765da0e842aSWarner Losh	installing anything can help undo problems. Not having a root shell
1766da0e842aSWarner Losh	around can lead to problems if pam has changed too much from your
1767da0e842aSWarner Losh	starting point to allow continued authentication after the upgrade.
1768da0e842aSWarner Losh
17698fc25799SMartin Matuska	ZFS notes
17708fc25799SMartin Matuska	---------
17718fc25799SMartin Matuska	When upgrading the boot ZFS pool to a new version, always follow
17728fc25799SMartin Matuska	these two steps:
17738fc25799SMartin Matuska
17748fc25799SMartin Matuska	1.) recompile and reinstall the ZFS boot loader and boot block
17758fc25799SMartin Matuska	(this is part of "make buildworld" and "make installworld")
17768fc25799SMartin Matuska
17778fc25799SMartin Matuska	2.) update the ZFS boot block on your boot drive
17788fc25799SMartin Matuska
17798fc25799SMartin Matuska	The following example updates the ZFS boot block on the first
17808fc25799SMartin Matuska	partition (freebsd-boot) of a GPT partitioned drive ad0:
17818fc25799SMartin Matuska	"gpart bootcode -p /boot/gptzfsboot -i 1 ad0"
17828fc25799SMartin Matuska
17838fc25799SMartin Matuska	Non-boot pools do not need these updates.
17848fc25799SMartin Matuska
1785dc0dbf5cSWarner Losh	To build a kernel
1786dc0dbf5cSWarner Losh	-----------------
1787ba01eb20SWarner Losh	If you are updating from a prior version of FreeBSD (even one just
17881cf0ef11SDavid E. O'Brien	a few days old), you should follow this procedure.  It is the most
17891cf0ef11SDavid E. O'Brien	failsafe as it uses a /usr/obj tree with a fresh mini-buildworld,
17901cf0ef11SDavid E. O'Brien
17911cf0ef11SDavid E. O'Brien	make kernel-toolchain
1792282e0f01SRuslan Ermilov	make -DALWAYS_CHECK_MAKE buildkernel KERNCONF=YOUR_KERNEL_HERE
1793282e0f01SRuslan Ermilov	make -DALWAYS_CHECK_MAKE installkernel KERNCONF=YOUR_KERNEL_HERE
1794dc0dbf5cSWarner Losh
17952e937dd6SAlexander Leidinger	To test a kernel once
17962e937dd6SAlexander Leidinger	---------------------
17972e937dd6SAlexander Leidinger	If you just want to boot a kernel once (because you are not sure
17982e937dd6SAlexander Leidinger	if it works, or if you want to boot a known bad kernel to provide
17992e937dd6SAlexander Leidinger	debugging information) run
18002e937dd6SAlexander Leidinger	make installkernel KERNCONF=YOUR_KERNEL_HERE KODIR=/boot/testkernel
18012e937dd6SAlexander Leidinger	nextboot -k testkernel
18022e937dd6SAlexander Leidinger
1803ba01eb20SWarner Losh	To just build a kernel when you know that it won't mess you up
1804ba01eb20SWarner Losh	--------------------------------------------------------------
1805456b5dd8SWarner Losh	This assumes you are already running a CURRENT system.  Replace
18060fbd2da9SKen Smith	${arch} with the architecture of your machine (e.g. "i386",
1807456b5dd8SWarner Losh	"arm", "amd64", "ia64", "pc98", "sparc64", "powerpc", "mips", etc).
18080fbd2da9SKen Smith
18090fbd2da9SKen Smith	cd src/sys/${arch}/conf
181047d0d01fSWarner Losh	config KERNEL_NAME_HERE
18110fbd2da9SKen Smith	cd ../compile/KERNEL_NAME_HERE
1812ba01eb20SWarner Losh	make depend
1813ba01eb20SWarner Losh	make
1814ba01eb20SWarner Losh	make install
1815ba01eb20SWarner Losh
1816ba01eb20SWarner Losh	If this fails, go to the "To build a kernel" section.
1817ba01eb20SWarner Losh
1818ba01eb20SWarner Losh	To rebuild everything and install it on the current system.
1819ba01eb20SWarner Losh	-----------------------------------------------------------
182063cb445eSWarner Losh	# Note: sometimes if you are running current you gotta do more than
182163cb445eSWarner Losh	# is listed here if you are upgrading from a really old current.
182263cb445eSWarner Losh
1823f643de42SWarner Losh	<make sure you have good level 0 dumps>
182463cb445eSWarner Losh	make buildworld
18256586253aSWarner Losh	make kernel KERNCONF=YOUR_KERNEL_HERE
182663cb445eSWarner Losh							[1]
182763cb445eSWarner Losh	<reboot in single user>				[3]
182863cb445eSWarner Losh	mergemaster -p					[5]
182963cb445eSWarner Losh	make installworld
183050e8eca6SDoug Barton	mergemaster -i					[4]
183194877c06SAlexander Leidinger	make delete-old					[6]
183263cb445eSWarner Losh	<reboot>
183363cb445eSWarner Losh
1834f27b1fceSJoseph Koshy	To cross-install current onto a separate partition
1835f27b1fceSJoseph Koshy	--------------------------------------------------
1836f27b1fceSJoseph Koshy	# In this approach we use a separate partition to hold
1837f27b1fceSJoseph Koshy	# current's root, 'usr', and 'var' directories.   A partition
1838f27b1fceSJoseph Koshy	# holding "/", "/usr" and "/var" should be about 2GB in
1839f27b1fceSJoseph Koshy	# size.
1840f27b1fceSJoseph Koshy
1841f27b1fceSJoseph Koshy	<make sure you have good level 0 dumps>
1842f27b1fceSJoseph Koshy	<boot into -stable>
1843f27b1fceSJoseph Koshy	make buildworld
18443ecf3bddSRuslan Ermilov	make buildkernel KERNCONF=YOUR_KERNEL_HERE
1845f27b1fceSJoseph Koshy	<maybe newfs current's root partition>
1846f27b1fceSJoseph Koshy	<mount current's root partition on directory ${CURRENT_ROOT}>
1847f27b1fceSJoseph Koshy	make installworld DESTDIR=${CURRENT_ROOT}
18482d5cde04SRuslan Ermilov	make distribution DESTDIR=${CURRENT_ROOT} # if newfs'd
18493ecf3bddSRuslan Ermilov	make installkernel KERNCONF=YOUR_KERNEL_HERE DESTDIR=${CURRENT_ROOT}
1850f27b1fceSJoseph Koshy	cp /etc/fstab ${CURRENT_ROOT}/etc/fstab 		   # if newfs'd
1851f27b1fceSJoseph Koshy	<edit ${CURRENT_ROOT}/etc/fstab to mount "/" from the correct partition>
1852f27b1fceSJoseph Koshy	<reboot into current>
1853f27b1fceSJoseph Koshy	<do a "native" rebuild/install as described in the previous section>
1854737d990aSXin LI	<maybe install compatibility libraries from ports/misc/compat*>
1855f27b1fceSJoseph Koshy	<reboot>
1856f27b1fceSJoseph Koshy
1857f27b1fceSJoseph Koshy
185815974d55SGavin Atkinson	To upgrade in-place from stable to current
1859f27b1fceSJoseph Koshy	----------------------------------------------
1860f643de42SWarner Losh	<make sure you have good level 0 dumps>
186121c075eaSWarner Losh	make buildworld					[9]
1862e5dc5f61SWarner Losh	make kernel KERNCONF=YOUR_KERNEL_HERE		[8]
1863fc8c157fSWarner Losh							[1]
1864fc8c157fSWarner Losh	<reboot in single user>				[3]
1865835284beSWarner Losh	mergemaster -p					[5]
1866ba26da8eSWarner Losh	make installworld
1867802fc49dSBrian Feldman	mergemaster -i					[4]
186894877c06SAlexander Leidinger	make delete-old					[6]
1869ba26da8eSWarner Losh	<reboot>
1870ba26da8eSWarner Losh
1871fdb9f54dSWarner Losh	Make sure that you've read the UPDATING file to understand the
1872fdb9f54dSWarner Losh	tweaks to various things you need.  At this point in the life
1873fdb9f54dSWarner Losh	cycle of current, things change often and you are on your own
1874fdb9f54dSWarner Losh	to cope.  The defaults can also change, so please read ALL of
1875fdb9f54dSWarner Losh	the UPDATING entries.
1876ba26da8eSWarner Losh
18771dece4a9SWarner Losh	Also, if you are tracking -current, you must be subscribed to
18781dece4a9SWarner Losh	freebsd-current@freebsd.org.  Make sure that before you update
18791dece4a9SWarner Losh	your sources that you have read and understood all the recent
18801dece4a9SWarner Losh	messages there.  If in doubt, please track -stable which has
18811dece4a9SWarner Losh	much fewer pitfalls.
18821dece4a9SWarner Losh
1883134d2e86SWarner Losh	[1] If you have third party modules, such as vmware, you
1884134d2e86SWarner Losh	should disable them at this point so they don't crash your
1885134d2e86SWarner Losh	system on reboot.
1886134d2e86SWarner Losh
1887ee6e1fc3SWarner Losh	[3] From the bootblocks, boot -s, and then do
1888ee6e1fc3SWarner Losh		fsck -p
1889ee6e1fc3SWarner Losh		mount -u /
1890ee6e1fc3SWarner Losh		mount -a
18916586253aSWarner Losh		cd src
189247d0d01fSWarner Losh		adjkerntz -i		# if CMOS is wall time
1893f6a0ef01SWarner Losh	Also, when doing a major release upgrade, it is required that
1894f6a0ef01SWarner Losh	you boot into single user mode to do the installworld.
1895ee6e1fc3SWarner Losh
1896a6cd4f9dSWarner Losh	[4] Note: This step is non-optional.  Failure to do this step
1897a6cd4f9dSWarner Losh	can result in a significant reduction in the functionality of the
1898a6cd4f9dSWarner Losh	system.  Attempting to do it by hand is not recommended and those
1899a6cd4f9dSWarner Losh	that pursue this avenue should read this file carefully, as well
1900a6cd4f9dSWarner Losh	as the archives of freebsd-current and freebsd-hackers mailing lists
190150e8eca6SDoug Barton	for potential gotchas.  The -U option is also useful to consider.
190250e8eca6SDoug Barton	See mergemaster(8) for more information.
1903a6cd4f9dSWarner Losh
1904835284beSWarner Losh	[5] Usually this step is a noop.  However, from time to time
1905835284beSWarner Losh	you may need to do this if you get unknown user in the following
1906835284beSWarner Losh	step.  It never hurts to do it all the time.  You may need to
1907835284beSWarner Losh	install a new mergemaster (cd src/usr.sbin/mergemaster && make
1908835284beSWarner Losh	install) after the buildworld before this step if you last updated
190920e0cc0aSBrooks Davis	from current before 20130425 or from -stable before 20130430.
1910835284beSWarner Losh
191194877c06SAlexander Leidinger	[6] This only deletes old files and directories. Old libraries
191294877c06SAlexander Leidinger	can be deleted by "make delete-old-libs", but you have to make
191394877c06SAlexander Leidinger	sure that no program is using those libraries anymore.
191494877c06SAlexander Leidinger
1915456b5dd8SWarner Losh	[8] In order to have a kernel that can run the 4.x binaries needed to
1916456b5dd8SWarner Losh	do an installworld, you must include the COMPAT_FREEBSD4 option in
1917456b5dd8SWarner Losh	your kernel.  Failure to do so may leave you with a system that is
1918456b5dd8SWarner Losh	hard to boot to recover. A similar kernel option COMPAT_FREEBSD5 is
1919456b5dd8SWarner Losh	required to run the 5.x binaries on more recent kernels.  And so on
1920456b5dd8SWarner Losh	for COMPAT_FREEBSD6 and COMPAT_FREEBSD7.
1921c74fe6afSWarner Losh
1922e5dc5f61SWarner Losh	Make sure that you merge any new devices from GENERIC since the
1923e5dc5f61SWarner Losh	last time you updated your kernel config file.
1924e5dc5f61SWarner Losh
192521c075eaSWarner Losh	[9] When checking out sources, you must include the -P flag to have
1926e5dc5f61SWarner Losh	cvs prune empty directories.
1927e5dc5f61SWarner Losh
1928e5dc5f61SWarner Losh	If CPUTYPE is defined in your /etc/make.conf, make sure to use the
1929e5dc5f61SWarner Losh	"?=" instead of the "=" assignment operator, so that buildworld can
1930e5dc5f61SWarner Losh	override the CPUTYPE if it needs to.
1931e5dc5f61SWarner Losh
1932e5dc5f61SWarner Losh	MAKEOBJDIRPREFIX must be defined in an environment variable, and
1933e5dc5f61SWarner Losh	not on the command line, or in /etc/make.conf.  buildworld will
1934e5dc5f61SWarner Losh	warn if it is improperly defined.
1935dc0dbf5cSWarner LoshFORMAT:
1936dc0dbf5cSWarner Losh
1937f699bbbbSMark OvensThis file contains a list, in reverse chronological order, of major
1938630f2154SGlen Barberbreakages in tracking -current.  It is not guaranteed to be a complete
1939630f2154SGlen Barberlist of such breakages, and only contains entries since October 10, 2007.
1940630f2154SGlen BarberIf you need to see UPDATING entries from before that date, you will need
1941630f2154SGlen Barberto fetch an UPDATING file from an older FreeBSD release.
19421fc1a0dcSWarner Losh
1943e72fd46aSWarner LoshCopyright information:
1944e72fd46aSWarner Losh
1945456b5dd8SWarner LoshCopyright 1998-2009 M. Warner Losh.  All Rights Reserved.
1946e72fd46aSWarner Losh
1947772730c7SWarner LoshRedistribution, publication, translation and use, with or without
1948772730c7SWarner Loshmodification, in full or in part, in any form or format of this
19499698f2c0SWarner Loshdocument are permitted without further permission from the author.
1950e72fd46aSWarner Losh
1951e72fd46aSWarner LoshTHIS DOCUMENT IS PROVIDED BY WARNER LOSH ``AS IS'' AND ANY EXPRESS OR
1952e72fd46aSWarner LoshIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1953e72fd46aSWarner LoshWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1954e72fd46aSWarner LoshDISCLAIMED.  IN NO EVENT SHALL WARNER LOSH BE LIABLE FOR ANY DIRECT,
1955e72fd46aSWarner LoshINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1956e72fd46aSWarner Losh(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1957e72fd46aSWarner LoshSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1958e72fd46aSWarner LoshHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
1959e72fd46aSWarner LoshSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
1960e72fd46aSWarner LoshIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1961e72fd46aSWarner LoshPOSSIBILITY OF SUCH DAMAGE.
1962e72fd46aSWarner Losh
196322306abcSWarner LoshContact Warner Losh if you have any questions about your use of
1964772730c7SWarner Loshthis document.
1965772730c7SWarner Losh
196697d92980SPeter Wemm$FreeBSD$
1967