Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Jul 2012 00:40:56 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r237863 - in stable/7: share/man/man4 sys/dev/hptrr
Message-ID:  <201207010040.q610euna050931@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eadler
Date: Sun Jul  1 00:40:56 2012
New Revision: 237863
URL: http://svn.freebsd.org/changeset/base/237863

Log:
  MFC r237178:
  	attach_generic causes missing devices in /dev when the driver interacts with some non-highpoint controollers. Change attach_generic to be off by default.
  
  PR:		kern/168910
  Approved by:	cperciva (implicit)

Modified:
  stable/7/share/man/man4/hptrr.4
  stable/7/sys/dev/hptrr/hptrr_osm_bsd.c
Directory Properties:
  stable/7/share/man/man4/   (props changed)
  stable/7/sys/   (props changed)

Modified: stable/7/share/man/man4/hptrr.4
==============================================================================
--- stable/7/share/man/man4/hptrr.4	Sun Jul  1 00:40:37 2012	(r237862)
+++ stable/7/share/man/man4/hptrr.4	Sun Jul  1 00:40:56 2012	(r237863)
@@ -50,8 +50,8 @@ hptrr_load="YES"
 The following tunables are settable from the loader:
 .Bl -ohang
 .It Va hw.hptrr.attach_generic
-set to 0 to deny driver attach to chips with generic Marvell (non-HighPoint)
-PCI identification. These chips are also supported by ata(4).
+set to 1 to permit driver attach to chips with generic Marvell (non-HighPoint)
+PCI identification. These chips are also supported by ata(4) and mvs(4).
 Some vendors are using same chips, but without providing RAID BIOS.
 .El
 .Sh DESCRIPTION
@@ -112,7 +112,8 @@ This driver supersedes the older rr232x 
 .Xr ata 4 ,
 .Xr cam 4 ,
 .Xr hptmv 4 ,
-.Xr loader 8
+.Xr loader 8 ,
+.Xr mvs 4
 .Sh HISTORY
 The
 .Nm

Modified: stable/7/sys/dev/hptrr/hptrr_osm_bsd.c
==============================================================================
--- stable/7/sys/dev/hptrr/hptrr_osm_bsd.c	Sun Jul  1 00:40:37 2012	(r237862)
+++ stable/7/sys/dev/hptrr/hptrr_osm_bsd.c	Sun Jul  1 00:40:56 2012	(r237863)
@@ -34,7 +34,7 @@
 #include <dev/hptrr/os_bsd.h>
 #include <dev/hptrr/hptintf.h>
 
-static int attach_generic = 1;
+static int attach_generic = 0;
 TUNABLE_INT("hw.hptrr.attach_generic", &attach_generic);
 
 static int hpt_probe(device_t dev)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207010040.q610euna050931>