svn commit: r194204 - in head/sys: amd64/conf i386/conf

Ed Schouten ed at FreeBSD.org
Sun Jun 14 18:01:36 UTC 2009


Author: ed
Date: Sun Jun 14 18:01:35 2009
New Revision: 194204
URL: http://svn.freebsd.org/changeset/base/194204

Log:
  Enable PRINTF_BUFR_SIZE on i386 and amd64 by default.
  
  In the past there have been some reports of PRINTF_BUFR_SIZE not
  functioning correctly. Instead of having garbled console messages, we
  should just see whether the issues are still there and analyze them.
  
  Approved by:	re

Modified:
  head/sys/amd64/conf/GENERIC
  head/sys/i386/conf/GENERIC

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC	Sun Jun 14 17:53:55 2009	(r194203)
+++ head/sys/amd64/conf/GENERIC	Sun Jun 14 18:01:35 2009	(r194204)
@@ -66,6 +66,7 @@ options 	SYSVSHM			# SYSV-style shared m
 options 	SYSVMSG			# SYSV-style message queues
 options 	SYSVSEM			# SYSV-style semaphores
 options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
+options 	PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
 options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
 options 	STOP_NMI		# Stop CPUS using NMI instead of IPI
 options 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Sun Jun 14 17:53:55 2009	(r194203)
+++ head/sys/i386/conf/GENERIC	Sun Jun 14 18:01:35 2009	(r194204)
@@ -67,6 +67,7 @@ options 	SYSVSHM			# SYSV-style shared m
 options 	SYSVMSG			# SYSV-style message queues
 options 	SYSVSEM			# SYSV-style semaphores
 options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
+options 	PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
 options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
 options 	STOP_NMI		# Stop CPUS using NMI instead of IPI
 options 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)


More information about the svn-src-head mailing list