From 20a7a072f285d64d16ffed591a1717c836adff40 Mon Sep 17 00:00:00 2001 From: mjacob Date: Tue, 10 Jul 2007 07:55:04 +0000 Subject: Be more conservative- turn off fast posting and RIO for 22XX cards. Approved by: re (ken) MFC after: 3 days --- sys/dev/isp/isp.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'sys/dev/isp') diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index 03c7072..e22b7bf 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -1682,12 +1682,7 @@ isp_fibre_init(ispsoftc_t *isp) break; } if (IS_2200(isp)) { - if (ISP_FW_NEWER_THAN(isp, 1, 17, 0)) { - icbp->icb_xfwoptions |= ICBXOPT_RIO_16BIT; - icbp->icb_racctimer = 4; - icbp->icb_idelaytimer = 8; - } - icbp->icb_fwoptions |= ICBOPT_FAST_POST; + icbp->icb_fwoptions &= ~ICBOPT_FAST_POST; } else { /* * QLogic recommends that FAST Posting be turned @@ -6087,7 +6082,7 @@ isp_fastpost_complete(ispsoftc_t *isp, uint16_t fph) } xs = isp_find_xs(isp, fph); if (xs == NULL) { - isp_prt(isp, ISP_LOGWARN, + isp_prt(isp, ISP_LOGDEBUG1, "Command for fast post handle 0x%x not found", fph); return; } -- cgit v1.1