diff options
author | 1999-03-21 01:07:36 +0000 | |
---|---|---|
committer | 1999-03-21 01:07:36 +0000 | |
commit | 852d65395fbe85290bba63b13a9b4a54dec2b960 (patch) | |
tree | 1fedec716dcedf45db44f0436c8598885d453288 | |
parent | Add some .El 's at the end of lists. From NetBSD (diff) | |
download | wireguard-openbsd-852d65395fbe85290bba63b13a9b4a54dec2b960.tar.xz wireguard-openbsd-852d65395fbe85290bba63b13a9b4a54dec2b960.zip |
Do not enable command tagged queuing by default
-rw-r--r-- | sys/dev/pci/ncr.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/pci/ncr.c b/sys/dev/pci/ncr.c index a2cd26780c5..5f128159a59 100644 --- a/sys/dev/pci/ncr.c +++ b/sys/dev/pci/ncr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr.c,v 1.42 1999/01/11 01:51:58 millert Exp $ */ +/* $OpenBSD: ncr.c,v 1.43 1999/03/21 01:07:36 millert Exp $ */ /* $NetBSD: ncr.c,v 1.63 1997/09/23 02:39:15 perry Exp $ */ /************************************************************************** @@ -130,10 +130,11 @@ /* ** The maximum number of tags per logic unit. ** Used only for disk devices that support tags. +** To enable tagged queuing set this to be >= 4. */ #ifndef SCSI_NCR_DFLT_TAGS -#define SCSI_NCR_DFLT_TAGS (4) +#define SCSI_NCR_DFLT_TAGS (0) #endif /* SCSI_NCR_DFLT_TAGS */ /*========================================================== @@ -1465,7 +1466,7 @@ static void ncr_attach (pcici_t tag, int unit); #if 0 static char ident[] = - "\n$OpenBSD: ncr.c,v 1.42 1999/01/11 01:51:58 millert Exp $\n"; + "\n$OpenBSD: ncr.c,v 1.43 1999/03/21 01:07:36 millert Exp $\n"; #endif static const u_long ncr_version = NCR_VERSION * 11 |