svn commit: r198800 - in stable/7/sys: . contrib/pf dev/aac

Ed Maste emaste at FreeBSD.org
Mon Nov 2 16:25:01 UTC 2009


Author: emaste
Date: Mon Nov  2 16:25:00 2009
New Revision: 198800
URL: http://svn.freebsd.org/changeset/base/198800

Log:
  MFC r198541:
  
    Do first controller time sync after 1 minute, as in Adaptec's vendor
    driver.

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/aac/aac.c

Modified: stable/7/sys/dev/aac/aac.c
==============================================================================
--- stable/7/sys/dev/aac/aac.c	Mon Nov  2 16:22:59 2009	(r198799)
+++ stable/7/sys/dev/aac/aac.c	Mon Nov  2 16:25:00 2009	(r198800)
@@ -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-all mailing list