Date: Fri, 10 Nov 1995 12:42:31 -0500 (EST) From: "Jonathan M. Bresler" <jmb@kryten.Atinc.COM> To: bugs@freebsd.org Cc: hardware@freebsd.org Subject: ncr probe message incorrect Message-ID: <Pine.3.89.9511101222.G19364-0100000@kryten.atinc.com>
next in thread | raw e-mail | index | archive | help
ncr0 scanning for targets 0..6 (V2 pl23 95/09/07)
(ncr0:0:0): "DEC DSP3053LS X442" type 0 fixed SCSI 2
sd0(ncr0:0:0): Direct-Access
sd0(ncr0:0:0): FAST SCSI-2 100ns (10 Mb/sec) offset 8.
scsi-ii is 10 MegaByte per second, no? not 10 Megabit per second
here is a patch to /sys/pci/ncr.c
*** ncr.c.orig Fri Nov 10 12:39:12 1995
--- ncr.c Fri Nov 10 12:42:41 1995
***************
*** 4592,4598 ****
** Disable extended Sreq/Sack filtering
*/
if (tp->period <= 200) OUTB (nc_stest2, 0);
! printf ("%s%dns (%d Mb/sec) offset %d.\n",
tp->period<200 ? "FAST SCSI-2 ":"",
tp->period, (1000+tp->period/2)/tp->period,
sxfer & 0x0f);
--- 4592,4598 ----
** Disable extended Sreq/Sack filtering
*/
if (tp->period <= 200) OUTB (nc_stest2, 0);
! printf ("%s%dns (%d MB/sec) offset %d.\n",
tp->period<200 ? "FAST SCSI-2 ":"",
tp->period, (1000+tp->period/2)/tp->period,
sxfer & 0x0f);
Jonathan M. Bresler jmb@kryten.atinc.com | Analysis & Technology, Inc.
FreeBSD Postmaster jmb@FreeBSD.Org | 2341 Jeff Davis Hwy
play go. | Arlington, VA 22202
ride bike. hack FreeBSD.--ah the good life | 703-418-2800 x346
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.3.89.9511101222.G19364-0100000>
