svn commit: r251990 - stable/9/sys/cam

Scott Long scottl at FreeBSD.org
Wed Jun 19 05:12:32 UTC 2013


Author: scottl
Date: Wed Jun 19 05:12:31 2013
New Revision: 251990
URL: http://svnweb.freebsd.org/changeset/base/251990

Log:
  MFC r251989:
  
  Fix an unfortunate typo with the compat shims
  
  Obtained from:	Netflix

Modified:
  stable/9/sys/cam/cam_compat.h

Modified: stable/9/sys/cam/cam_compat.h
==============================================================================
--- stable/9/sys/cam/cam_compat.h	Wed Jun 19 05:11:30 2013	(r251989)
+++ stable/9/sys/cam/cam_compat.h	Wed Jun 19 05:12:31 2013	(r251990)
@@ -40,9 +40,9 @@ int cam_compat_ioctl(struct cdev *dev, u
 #define CAMIOCOMMAND_0x16	_IOWR(CAM_VERSION_0x16, 2, union ccb)
 #define CAMGETPASSTHRU_0x16	_IOWR(CAM_VERSION_0x16, 3, union ccb)
 
-#define CAM_SCATTER_VALID_0x16	0x10
-#define CAM_SG_LIST_PHYS_0x16	0x40000
-#define CAM_DATA_PHYS_0x16	0x20000
+#define CAM_SCATTER_VALID_0x16	0x00000010
+#define CAM_SG_LIST_PHYS_0x16	0x00040000
+#define CAM_DATA_PHYS_0x16	0x00200000
 
 #endif
 


More information about the svn-src-all mailing list