svn commit: r201034 - head/release/picobsd/bridge

Luigi Rizzo luigi at FreeBSD.org
Sun Dec 27 01:19:56 UTC 2009


Author: luigi
Date: Sun Dec 27 01:19:55 2009
New Revision: 201034
URL: http://svn.freebsd.org/changeset/base/201034

Log:
  put back the HZ setting or we see poor timing under qemu
  
  MFC after:	3 days

Modified:
  head/release/picobsd/bridge/PICOBSD

Modified: head/release/picobsd/bridge/PICOBSD
==============================================================================
--- head/release/picobsd/bridge/PICOBSD	Sat Dec 26 22:36:05 2009	(r201033)
+++ head/release/picobsd/bridge/PICOBSD	Sun Dec 27 01:19:55 2009	(r201034)
@@ -46,7 +46,9 @@ options		IPDIVERT		# divert (for natd)
 # Support for bridging and bandwidth limiting
 options		DUMMYNET
 device		if_bridge
-#options		HZ=1000
+# Running with less than 1000 seems to give poor timing on
+# qemu, so we set HZ explicitly.
+options		HZ=1000
 
 device		random			# used by ssh
 device		pci


More information about the svn-src-head mailing list