svn commit: r198619 - head/sys/sys

Ed Maste emaste at FreeBSD.org
Thu Oct 29 17:21:41 UTC 2009


Author: emaste
Date: Thu Oct 29 17:21:41 2009
New Revision: 198619
URL: http://svn.freebsd.org/changeset/base/198619

Log:
  Add additional featuresState.fBits entries to simplify compiling and
  testing Adaptec's vendor driver.
  
  Submitted by:	Adaptec, driver 17517

Modified:
  head/sys/sys/aac_ioctl.h

Modified: head/sys/sys/aac_ioctl.h
==============================================================================
--- head/sys/sys/aac_ioctl.h	Thu Oct 29 17:15:22 2009	(r198618)
+++ head/sys/sys/aac_ioctl.h	Thu Oct 29 17:21:41 2009	(r198619)
@@ -192,7 +192,10 @@ struct aac_query_disk {
 typedef union {
 	struct {
 		u_int32_t largeLBA  : 1;	/* disk support greater 2TB */
-		u_int32_t fReserved : 31;
+		u_int32_t IoctlBuf  : 1;	/* ARCIOCTL call support */
+		u_int32_t AIFSupport: 1;	/* AIF support */
+		u_int32_t JBODSupport:1;	/* fw + driver support JBOD */
+		u_int32_t fReserved : 28;
 	} fBits;
 	u_int32_t fValue;
 } featuresState;


More information about the svn-src-head mailing list