svn commit: r198801 - in stable/6/sys: . conf contrib/pf dev/aac dev/cxgb

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


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

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

Modified:
  stable/6/sys/   (props changed)
  stable/6/sys/conf/   (props changed)
  stable/6/sys/contrib/pf/   (props changed)
  stable/6/sys/dev/aac/aac.c
  stable/6/sys/dev/cxgb/   (props changed)

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