summaryrefslogtreecommitdiffstats
path: root/sys/dev/isp/isp_library.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_library.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_library.h')
-rw-r--r--sys/dev/isp/isp_library.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/isp/isp_library.h b/sys/dev/isp/isp_library.h
index 13b077c..a614bb6 100644
--- a/sys/dev/isp/isp_library.h
+++ b/sys/dev/isp/isp_library.h
@@ -128,6 +128,8 @@ extern void isp_put_rft_id(ispsoftc_t *, rft_id_t *, rft_id_t *);
extern void isp_get_ct_hdr(ispsoftc_t *isp, ct_hdr_t *, ct_hdr_t *);
extern void isp_put_ct_hdr(ispsoftc_t *isp, ct_hdr_t *, ct_hdr_t *);
+#define ISP_HANDLE_MASK 0x7fff
+
#ifdef ISP_TARGET_MODE
#if defined(__NetBSD__) || defined(__OpenBSD__)
#include <dev/ic/isp_target.h>
OpenPOWER on IntegriCloud