diff options
author | mjacob <mjacob@FreeBSD.org> | 2001-02-11 03:48:54 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2001-02-11 03:48:54 +0000 |
commit | 5815c8234f05109763b00068dc6f99a4ad3fa57d (patch) | |
tree | babf1695dad83c79b1ec76a3c3f1084e322686fc /sys | |
parent | 112a82d6e9f1fb88852b1b3827dc678fd12244d7 (diff) | |
download | FreeBSD-src-5815c8234f05109763b00068dc6f99a4ad3fa57d.zip FreeBSD-src-5815c8234f05109763b00068dc6f99a4ad3fa57d.tar.gz |
Roll minor version. Remove ISP2100_FABRIC define (unneeded now).
Comment out usage of ISP_SMPLOCK- I have my doubts that this works sanely
as yet because CAM itself still needs Giant. I *was* dropping my lock
and grabbing Giant when doing the upcall for completion, but this is all
seems ridiculous until CAM is fixed.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/isp/isp_freebsd.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/isp/isp_freebsd.h b/sys/dev/isp/isp_freebsd.h index d184b7b..85a0066 100644 --- a/sys/dev/isp/isp_freebsd.h +++ b/sys/dev/isp/isp_freebsd.h @@ -28,11 +28,16 @@ #define _ISP_FREEBSD_H #define ISP_PLATFORM_VERSION_MAJOR 5 -#define ISP_PLATFORM_VERSION_MINOR 4 +#define ISP_PLATFORM_VERSION_MINOR 5 +/* + * We're not ready for primetime yet + */ +#if 0 #if ((ISP_PLATFORM_VERSION_MAJOR * 10) + ISP_PLATFORM_VERSION_MINOR) >= 54 #define ISP_SMPLOCK 1 #endif +#endif #include <sys/param.h> @@ -138,7 +143,6 @@ struct isposinfo { #define INLINE __inline -#define ISP2100_FABRIC 1 #define ISP2100_SCRLEN 0x400 #define MEMZERO bzero |