Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jun 2009 18:01:35 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r194204 - in head/sys: amd64/conf i386/conf
Message-ID:  <200906141801.n5EI1Zti056239@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906141801.n5EI1Zti056239>