Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Disable ICBOPT_FAST_POST for ISP 2100.



details:   https://anonhg.NetBSD.org/src/rev/91ef8253f3ae
branches:  trunk
changeset: 785144:91ef8253f3ae
user:      martin <martin%NetBSD.org@localhost>
date:      Wed Feb 27 09:29:21 2013 +0000

description:
Disable ICBOPT_FAST_POST for ISP 2100.
Fixes PR kern/47302. From Matthew Jacob.

diffstat:

 sys/dev/ic/isp.c |  12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diffs (33 lines):

diff -r 2b8f988d1ea4 -r 91ef8253f3ae sys/dev/ic/isp.c
--- a/sys/dev/ic/isp.c  Tue Feb 26 17:08:20 2013 +0000
+++ b/sys/dev/ic/isp.c  Wed Feb 27 09:29:21 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: isp.c,v 1.122 2011/02/28 17:17:55 mjacob Exp $ */
+/* $NetBSD: isp.c,v 1.123 2013/02/27 09:29:21 martin Exp $ */
 /*
  * Machine and OS Independent (well, as best as possible)
  * code for the Qlogic ISP SCSI adapters.
@@ -43,7 +43,7 @@
  */
 #ifdef __NetBSD__
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isp.c,v 1.122 2011/02/28 17:17:55 mjacob Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isp.c,v 1.123 2013/02/27 09:29:21 martin Exp $");
 #include <dev/ic/isp_netbsd.h>
 #endif
 #ifdef __FreeBSD__
@@ -1580,7 +1580,13 @@
         *
         * 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;
                /*
                 * Prefer or force Point-To-Point instead Loop?



Home | Main Index | Thread Index | Old Index