svn commit: r201045 - stable/8/release/picobsd/bridge

Luigi Rizzo luigi at FreeBSD.org
Sun Dec 27 10:13:32 UTC 2009


Author: luigi
Date: Sun Dec 27 10:13:31 2009
New Revision: 201045
URL: http://svn.freebsd.org/changeset/base/201045

Log:
  explicitly define HZ for picosd images

Modified:
  stable/8/release/picobsd/bridge/PICOBSD

Modified: stable/8/release/picobsd/bridge/PICOBSD
==============================================================================
--- stable/8/release/picobsd/bridge/PICOBSD	Sun Dec 27 10:10:38 2009	(r201044)
+++ stable/8/release/picobsd/bridge/PICOBSD	Sun Dec 27 10:13:31 2009	(r201045)
@@ -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-all mailing list