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 tagged queuing for now, it causes command...



details:   https://anonhg.NetBSD.org/src/rev/f8538454c0bf
branches:  trunk
changeset: 509109:f8538454c0bf
user:      bouyer <bouyer%NetBSD.org@localhost>
date:      Thu Apr 26 17:09:39 2001 +0000

description:
Disable tagged queuing for now, it causes commands timeouts.
Note that it's not worse since thorpej_scsipi integration: tagged queuing
was not used before, because of a tag message rejected at probe time.

diffstat:

 sys/dev/ic/ncr53c9x.c |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (22 lines):

diff -r e8e4acd0317f -r f8538454c0bf sys/dev/ic/ncr53c9x.c
--- a/sys/dev/ic/ncr53c9x.c     Thu Apr 26 16:56:53 2001 +0000
+++ b/sys/dev/ic/ncr53c9x.c     Thu Apr 26 17:09:39 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ncr53c9x.c,v 1.75 2001/04/25 17:53:33 bouyer Exp $     */
+/*     $NetBSD: ncr53c9x.c,v 1.76 2001/04/26 17:09:39 bouyer Exp $     */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -899,10 +899,12 @@
                ti->period = 0;
                ti->offset = 0;
 
+#if 0 /* commands timeout */
                if ((sc->sc_cfflags & (1<<(xm->xm_target+16))) == 0 &&
                    (xm->xm_mode & PERIPH_CAP_TQING))
                        ti->flags |= T_TAG;
                else
+#endif
                        ti->flags &= ~T_TAG;
 
                if ((xm->xm_mode & PERIPH_CAP_WIDE16) != 0) {



Home | Main Index | Thread Index | Old Index