summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgibbs <gibbs@FreeBSD.org>1995-04-09 06:39:01 +0000
committergibbs <gibbs@FreeBSD.org>1995-04-09 06:39:01 +0000
commit59da37e6eb5aaa077e1a850fde482e32ebdc2a67 (patch)
tree97e7ce3e070b192f2062117921d28032477e77bb
parentd98e2983c7e61b0dc80615f1ab6030918b5de60b (diff)
downloadFreeBSD-src-59da37e6eb5aaa077e1a850fde482e32ebdc2a67.zip
FreeBSD-src-59da37e6eb5aaa077e1a850fde482e32ebdc2a67.tar.gz
Disable tagged queuing by default. option AHC_TAGENABLE will turn it on.
This is temporary until I can get a device flags added.
-rw-r--r--sys/i386/scsi/aic7xxx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/i386/scsi/aic7xxx.c b/sys/i386/scsi/aic7xxx.c
index 8119e98..2de8134 100644
--- a/sys/i386/scsi/aic7xxx.c
+++ b/sys/i386/scsi/aic7xxx.c
@@ -24,7 +24,7 @@
*
* commenced: Sun Sep 27 18:14:01 PDT 1992
*
- * $Id: aic7xxx.c,v 1.18 1995/03/31 13:54:40 gibbs Exp $
+ * $Id: aic7xxx.c,v 1.19 1995/04/01 19:53:04 gibbs Exp $
*/
/*
* TODO:
@@ -1310,6 +1310,7 @@ ahc_done(unit, scb)
xs->error = XS_NOERROR;
}
xs->flags |= ITSDONE;
+#ifdef AHC_TAGENABLE
if(xs->cmd->opcode == 0x12 && xs->error == XS_NOERROR)
{
struct ahc_data *ahc = ahcdata[unit];
@@ -1337,6 +1338,7 @@ ahc_done(unit, scb)
#endif
}
}
+#endif
ahc_free_scb(unit, scb, xs->flags);
scsi_done(xs);
}
OpenPOWER on IntegriCloud