svn commit: r247821 - in head: . sys/sys

Davide Italiano davide at FreeBSD.org
Mon Mar 4 22:41:50 UTC 2013


Author: davide
Date: Mon Mar  4 22:41:49 2013
New Revision: 247821
URL: http://svnweb.freebsd.org/changeset/base/247821

Log:
  - Bump __FreeBSD_version after recent callout(9) changes.
  - Add an entry in UPDATING to notice users about breakages.

Modified:
  head/UPDATING
  head/sys/sys/param.h

Modified: head/UPDATING
==============================================================================
--- head/UPDATING	Mon Mar  4 22:07:36 2013	(r247820)
+++ head/UPDATING	Mon Mar  4 22:41:49 2013	(r247821)
@@ -27,6 +27,12 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10
 	"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
 
 20130304:
+	Recent commits to callout(9) changed the size of struct callout,
+	so the KBI is probably heavily disturbed. Also, some functions
+	in callout(9)/sleep(9)/sleepqueue(9)/condvar(9) KPIs were replaced
+	by macros. Every kernel module using it won't load, so rebuild
+	is requested.
+
 	The ctl device has been re-enabled in GENERIC for i386 and amd64,
 	but does not initialize by default (because of the new CTL_DISABLE
 	option) to save memory.  To re-enable it, remove the CTL_DISABLE

Modified: head/sys/sys/param.h
==============================================================================
--- head/sys/sys/param.h	Mon Mar  4 22:07:36 2013	(r247820)
+++ head/sys/sys/param.h	Mon Mar  4 22:41:49 2013	(r247821)
@@ -58,7 +58,7 @@
  *		in the range 5 to 9.
  */
 #undef __FreeBSD_version
-#define __FreeBSD_version 1000028	/* Master, propagated to newvers */
+#define __FreeBSD_version 1000029	/* Master, propagated to newvers */
 
 /*
  * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,


More information about the svn-src-all mailing list