svn commit: r198799 - in stable/8/sys: . amd64/include/xen
cddl/contrib/opensolaris contrib/dev/acpica contrib/pf
dev/aac dev/xen/xenpci
Ed Maste
emaste at FreeBSD.org
Mon Nov 2 16:22:59 UTC 2009
Author: emaste
Date: Mon Nov 2 16:22:59 2009
New Revision: 198799
URL: http://svn.freebsd.org/changeset/base/198799
Log:
MFC r198541:
Do first controller time sync after 1 minute, as in Adaptec's vendor
driver.
Modified:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/aac/aac.c
stable/8/sys/dev/xen/xenpci/ (props changed)
Modified: stable/8/sys/dev/aac/aac.c
==============================================================================
--- stable/8/sys/dev/aac/aac.c Mon Nov 2 16:02:36 2009 (r198798)
+++ stable/8/sys/dev/aac/aac.c Mon Nov 2 16:22:59 2009 (r198799)
@@ -354,7 +354,7 @@ aac_attach(struct aac_softc *sc)
}
mtx_lock(&sc->aac_io_lock);
- callout_reset(&sc->aac_daemontime, 30 * 60 * hz, aac_daemon, sc);
+ callout_reset(&sc->aac_daemontime, 60 * hz, aac_daemon, sc);
mtx_unlock(&sc->aac_io_lock);
return(0);
More information about the svn-src-stable
mailing list