diff options
author | attilio <attilio@FreeBSD.org> | 2013-02-26 18:11:43 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2013-02-26 18:11:43 +0000 |
commit | 134623836d0dcb10f5bc79c883bd239098952cca (patch) | |
tree | 53b8f81bf2dd71d981f19cb4460f54d0cd525234 /sys/dev/isp/isp.c | |
parent | cff31deb1a197b29ab976c135fdd01dfb6951a6a (diff) | |
parent | 49f99b72515864c7f48e1d57295de7c122876049 (diff) | |
download | FreeBSD-src-134623836d0dcb10f5bc79c883bd239098952cca.zip FreeBSD-src-134623836d0dcb10f5bc79c883bd239098952cca.tar.gz |
MFC
Diffstat (limited to 'sys/dev/isp/isp.c')
-rw-r--r-- | sys/dev/isp/isp.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index c4747e7..d3e5bdb 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -1709,7 +1709,13 @@ isp_fibre_init(ispsoftc_t *isp) * * NB: for the 2300, ICBOPT_EXTENDED is required. */ - if (IS_2200(isp) || IS_23XX(isp)) { + if (IS_2100(isp)) { + /* + * We can't have Fast Posting any more- we now + * have 32 bit handles. + */ + icbp->icb_fwoptions &= ~ICBOPT_FAST_POST; + } else if (IS_2200(isp) || IS_23XX(isp)) { icbp->icb_fwoptions |= ICBOPT_EXTENDED; icbp->icb_xfwoptions = fcp->isp_xfwoptions; |