summaryrefslogtreecommitdiffstats
path: root/sys/dev/isp/isp_freebsd.h
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2007-04-02 01:04:20 +0000
committermjacob <mjacob@FreeBSD.org>2007-04-02 01:04:20 +0000
commit00323bff58a4642e190d904bae8a04685867f87c (patch)
tree301dc2dba02ff47c95da310a9856c01c9754f539 /sys/dev/isp/isp_freebsd.h
parent65a30c481ba0f8b44f073c893e9d5dbc5747a5d1 (diff)
downloadFreeBSD-src-00323bff58a4642e190d904bae8a04685867f87c.zip
FreeBSD-src-00323bff58a4642e190d904bae8a04685867f87c.tar.gz
Temporarily desupport simultaneous target and initiator mode.
When the linux port changes were imported which split the target command list to be separate from the initiator command list and the handle format changed to encode a type in the handle the implications to the function isp_handle_index (which only the NetBSD/OpenBSD/FreeBSD ports use) were overlooked. The fault is twofold: first, the index into the DMA maps in isp_pci is wrong because a target command handle with the type bit left in place caused a bad index (and panic) into dma map. Secondly, the assumption of the array of DMA maps in either PCS or SBUS attachment structures is that there is a linear mapping between handle index and DMA map index. This can no longer be true if there are overlapping index spaces for initiator mode and target mode commands. These changes bandaid around the problem by forcing us to not have simultaneous dual roles and doing the appropriate masking to make sure things are indexed correctly. A longer term fix is being devloped.
Diffstat (limited to 'sys/dev/isp/isp_freebsd.h')
-rw-r--r--sys/dev/isp/isp_freebsd.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/dev/isp/isp_freebsd.h b/sys/dev/isp/isp_freebsd.h
index a3f7024..e7cfb19 100644
--- a/sys/dev/isp/isp_freebsd.h
+++ b/sys/dev/isp/isp_freebsd.h
@@ -98,7 +98,7 @@
#endif
#if __FreeBSD_version < 700000
-typedef void ispfwfunc(int, int, int, const void **);
+typedef void ispfwfunc(int, int, int, void **);
#endif
#ifdef ISP_TARGET_MODE
@@ -532,4 +532,10 @@ int isp_mstohz(int);
#include <dev/isp/isp_library.h>
+/*
+ * XXX: Temp
+ */
+#if ISP_DEFAULT_ROLES == ISP_ROLE_BOTH
+#error "Dual Role Temporarily Unsupported"
+#endif
#endif /* _ISP_FREEBSD_H */
OpenPOWER on IntegriCloud