svn commit: r198296 - stable/8/sys/dev/bge

Stanislav Sedov stas at FreeBSD.org
Tue Oct 20 16:41:24 UTC 2009


Author: stas
Date: Tue Oct 20 16:41:23 2009
New Revision: 198296
URL: http://svn.freebsd.org/changeset/base/198296

Log:
  - Disable ASF by default in STABLE_8.  This causes a lot
    of problems on non-DELL branded machines with IPMI
    support.  The proposed fix was committed to HEAD but has
    not received much test coverage yet.
  
  Discussed with:	bz
  Approved by:	re (kensmith)

Modified:
  stable/8/sys/dev/bge/if_bge.c

Modified: stable/8/sys/dev/bge/if_bge.c
==============================================================================
--- stable/8/sys/dev/bge/if_bge.c	Tue Oct 20 16:36:51 2009	(r198295)
+++ stable/8/sys/dev/bge/if_bge.c	Tue Oct 20 16:41:23 2009	(r198296)
@@ -446,7 +446,7 @@ static devclass_t bge_devclass;
 DRIVER_MODULE(bge, pci, bge_driver, bge_devclass, 0, 0);
 DRIVER_MODULE(miibus, bge, miibus_driver, miibus_devclass, 0, 0);
 
-static int bge_allow_asf = 1;
+static int bge_allow_asf = 0;
 
 TUNABLE_INT("hw.bge.allow_asf", &bge_allow_asf);
 


More information about the svn-src-all mailing list