Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Aug 2000 19:45:30 +0200 (CEST)
From:      =?ISO-8859-1?Q?G=E9rard_Roudier?= <groudier@club-internet.fr>
To:        John Hay <jhay@icomtek.co.za>
Cc:        Peter Wemm <peter@netplex.com.au>, cvs-committers@freebsd.org, cvs-all@freebsd.org
Subject:   Re: cvs commit: src/release/scripts dokern.sh
Message-ID:  <Pine.LNX.4.10.10008122252150.18682-100000@linux.local>
In-Reply-To: <200007290922.e6T9Mqc78590@zibbi.mikom.csir.co.za>

next in thread | previous in thread | raw e-mail | index | archive | help

On Sat, 29 Jul 2000, John Hay wrote:

> > >   * Remove the `ncr' driver in the Alpha case -- the `sym' driver works with
> > >     every known Alpha.
> > 
> > I think it is time to switch -current to sym-only.  No disrespect towards the
> > ncr driver writer intended, but the sym driver is well maintained, robust,
> > up-to-date, not implicated in the recurring fxp+ncr bugs, and supports all
> > the hardware.
> 
> It does not support all hardware yet. I have an old 810 card that don't
> even want to boot using the sym driver. It just go into a loop of printing
> errors at the stage where it should probe the disks. The same machine
> works just fine with the ncr driver.

The PCI status reported by the device indicates a PCI parity error. 

> sym0: PCI STATUS = 0x8100
                       ^bit 0x8000 -> Signaled PCI parity error.

On the other hand, the chip reported a MASTER DATA PARITY ERROR detected.

> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
                 ^DSTAT bit 0x40 -> Master Data Parity Error.

It means that the NCR device detected such an error when acting as a
master, either in some data it tried to read, or the error has been
signaled by the PCI target while the NCR was writing data to that PCI
target.

So, it is not the driver that failed, but the PCI hardware, given that PCI
parity checking is mandatory for PCI-SCSI controllers as we know.

Note that I donnot have any idea about the part that is faulty here. Could
be the PCI-HOST bridge or the NCR device. Your NCR 810 chip is revision #1
and I donnot have errata documents about this old beast. IMO, it would be
interesting to know if some other systems are able to use the current sym
driver with NCR 810 revision #1.

It seems that some combinations of hardware can sometimes trigger spurious
PCI parity errors, notably with NCR/SYMBIOS chips as we can see :). The
usual fix from BIOSes seems to generically not enable PCI parity error
signaling (not set bit 6 of PCI COMMAND register). So, when the PCI
software driver doesn't care of this bit, the PCI device does silently
ignore any PCI parity error it detects (if any occurs). I cannot beleive
that we want to run all our systems with PCI parity checking and
error signaling disabled by default for all PCI devices.

The patch below tries to early detect a possible hardware problem that
triggers MASTER DATA PARITY ERROR conditions and decides to work around 
such a problem by disabling the corresponding chip feature.

You may try the patch on your system and let me know.

--- sym_hipd.c.0813	Sun Aug 13 13:46:04 2000
+++ sym_hipd.c	Sun Aug 13 17:59:55 2000
@@ -6914,12 +6914,18 @@
 
 static int sym_snooptest (hcb_p np)
 {
-	u32	sym_rd, sym_wr, sym_bk, host_rd, host_wr, pc;
+	u32	sym_rd, sym_wr, sym_bk, host_rd, host_wr, pc, dstat;
 	int	i, err=0;
 #ifndef SYM_CONF_IOMAPPED
 	err |= sym_regtest (np);
 	if (err) return (err);
 #endif
+restart_test:
+	/*
+	 *  Enable Master Parity Checking if we intend to 
+	 *  enable it later.
+	 */
+	OUTB (nc_ctest4, (np->rv_ctest4 & MPEE));
 	/*
 	 *  init
 	 */
@@ -6942,6 +6948,26 @@
 	for (i=0; i<SYM_SNOOP_TIMEOUT; i++)
 		if (INB(nc_istat) & (INTF|SIP|DIP))
 			break;
+	if (i>=SYM_SNOOP_TIMEOUT) {
+		printf ("CACHE TEST FAILED: timeout.\n");
+		return (0x20);
+	};
+	/*
+	 *  Check for fatal DMA errors.
+	 */
+	dstat = INB (nc_dstat);
+#if 1
+	if ((dstat & MDPE) && (np->rv_ctest4 & MPEE)) {
+		printf ("CACHE TEST FAILED: PCI PARITY ERROR DETECTED, "
+			"TRYING AGAIN WITH PCI PARITY CHECKING DISABLED.\n");
+		np->rv_ctest4 &= ~MPEE;
+		goto restart_test;
+	}
+#endif
+	if (dstat & (MDPE|BF|IID)) {
+		printf ("CACHE TEST FAILED: DMA error (dstat=0x%02x).", dstat);
+		return (0x80);
+	}
 	/*
 	 *  Save termination position.
 	 */
@@ -6952,14 +6978,6 @@
 	host_rd = scr_to_cpu(np->scratch);
 	sym_rd  = INL (nc_scratcha);
 	sym_bk  = INL (nc_temp);
-
-	/*
-	 *  check for timeout
-	 */
-	if (i>=SYM_SNOOP_TIMEOUT) {
-		printf ("CACHE TEST FAILED: timeout.\n");
-		return (0x20);
-	};
 	/*
 	 *  Check termination position.
 	 */
>--------------------- CUT HERE ----------------------<

If this patch detects the problem, but the machine is unstable despite the
disabling of MPEE, then, we should probably also clear bit 6 of the PCI
COMMAND register.

If the patch does not detect the problem, then I will have to find
something better. :(
(May-be the sym driver should disable PCI parity error signaling for old
NCR devices in order to be compatible with other drivers ?????).

  Gerard.

> John -- John Hay -- John.Hay@icomtek.csir.co.za
> 
> 
> Console: serial port
> BIOS drive A: is disk0
> BIOS drive C: is disk1
> BIOS drive D: is disk2
> BIOS 639kB/31744kB available memory
> 
> FreeBSD/i386 bootstrap loader, Revision 0.8
> (jhay@angel.cids.org.za, Sun Jul 16 17:19:03 SAST 2000)
> Loading /boot/defaults/loader.conf 
> /kernel text=0x152b2a data=0x1f864+0x20af4 syms=[0x4+0x24150+0x4+0x29aea]
> -
> Hit [Enter] to boot immediately, or any other key for command prompt.
> Booting [kernel] in 8 seconds... 
> 
> Type '?' for a list of commands, 'help' for more detailed help.
> ok boot -v
> SMAP type=01 base=00000000 00000000 len=00000000 0009fc00
> SMAP type=01 base=00000000 0009fc00 len=00000000 00000400
> SMAP type=02 base=00000000 000f0000 len=00000000 00010000
> SMAP type=01 base=00000000 00100000 len=00000000 01f00000
> SMAP type=02 base=00000000 fec00000 len=00000000 00001000
> SMAP type=02 base=00000000 fee00000 len=00000000 00001000
> SMAP type=02 base=00000000 ffff0000 len=00000000 00010000
> Copyright (c) 1992-2000 The FreeBSD Project.
> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
>         The Regents of the University of California. All rights reserved.
> FreeBSD 5.0-CURRENT #2: Sat Jul 29 09:04:15 SAST 2000
>     jhay@angel.cids.org.za:/usr/src/sys/compile/TOBY
> Calibrating clock(s) ... TSC clock: 89997030 Hz, i8254 clock: 1193144 Hz
> CLK_USE_I8254_CALIBRATION not specified - using default frequency
> Timecounter "i8254"  frequency 1193182 Hz
> CLK_USE_TSC_CALIBRATION not specified - using old calibration method
> Timecounter "TSC"  frequency 80678965 Hz
> CPU: Pentium/P54C (80.68-MHz 586-class CPU)
>   Origin = "GenuineIntel"  Id = 0x525  Stepping = 5
>   Features=0x3bf<FPU,VME,DE,PSE,TSC,MSR,MCE,CX8,APIC>
> real memory  = 33554432 (32768K bytes)
> Physical memory chunk(s):
> 0x00001000 - 0x0009ffff, 651264 bytes (159 pages)
> 0x002fc000 - 0x01ff7fff, 30392320 bytes (7420 pages)
> avail memory = 29954048 (29252K bytes)
> bios32: Found BIOS32 Service Directory header at 0xc00fa520
> bios32: Entry = 0xfa850 (c00fa850)  Rev = 0  Len = 1
> pcibios: PCI BIOS entry at 0xf0000+0xa880
> Other BIOS signatures found:
> ACPI: 00000000
> Preloaded elf kernel "kernel" at 0xc02e3000.
> Intel Pentium detected, installing workaround for F00F bug
> mem: <memory & I/O>
> random: <entropy source>
> nulldev: <null device, zero device>
> npx0: <math processor> on motherboard
> npx0: INT 16 interface
> i586_bzero() bandwidth = 59435364 bytes/sec
> bzero() bandwidth = 29901623 bytes/sec
> pcib0: <Host to PCI bridge> on motherboard
> found-> vendor=0x8086, dev=0x04a3, revid=0x11
>         class=06-00-00, hdrtype=0x00, mfdev=0
>         subordinatebus=0        secondarybus=0
> found-> vendor=0x8086, dev=0x0482, revid=0x04
>         class=00-00-00, hdrtype=0x00, mfdev=0
>         subordinatebus=0        secondarybus=0
> found-> vendor=0x5333, dev=0x88f0, revid=0x00
>         class=03-00-00, hdrtype=0x00, mfdev=0
>         subordinatebus=0        secondarybus=0
>         intpin=a, irq=11
>         map[10]: type 1, range 32, base f0000000, size 25, enabled
> found-> vendor=0x1000, dev=0x0001, revid=0x01
>         class=00-00-00, hdrtype=0x00, mfdev=0
>         subordinatebus=0        secondarybus=0
>         intpin=a, irq=12
>         map[10]: type 4, range 32, base 00006000, size  8, enabled
>         map[14]: type 1, range 32, base f2000000, size  8, enabled
> pci0: <PCI bus> on pcib0
> pci0: <Intel 82434NX (Neptune) PCI cache memory controller> (vendor=0x8086, dev=0x04a3) at 0.0
> isab0: <Intel 82375EB PCI-EISA bridge> at device 2.0 on pci0
> eisa0: <EISA bus> on isab0
> mainboard0: <INT0000 (System Board)> on eisa0 slot 0
> isa0: <ISA bus> on isab0
> pci0: <S3 968 graphics accelerator> (vendor=0x5333, dev=0x88f0) at 3.0 irq 11
> sym0: <810> port 0x6000-0x60ff mem 0xf2000000-0xf20000ff irq 12 at device 4.0 on pci0
> sym0: No NVRAM, ID 7, Fast-10, SE, parity checking
> sym0: open drain IRQ line driver
> sym0: using NCR-generic firmware.
> Trying Read_Port at 203
> Trying Read_Port at 243
> Trying Read_Port at 283
> Trying Read_Port at 2c3
> Trying Read_Port at 303
> Trying Read_Port at 343
> Trying Read_Port at 383
> Trying Read_Port at 3c3
> sc-: sc0 exists, using next available unit number
> vga-: vga0 exists, using next available unit number
> isa_probe_children: disabling PnP devices
> isa_probe_children: probing non-PnP devices
> vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
> fb0: vga0, vga, type:VGA (5), flags:0x7007f
> fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000
> fb0: init mode:24, bios mode:3, current mode:24
> fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k
> VGA parameters upon power-up
> 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 
> bf 1f 00 4f 0e 0f 00 00 04 b0 9c 8e 8f 28 1f 96 
> b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 
> 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff 
> VGA parameters in BIOS for mode 24
> 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 
> bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 
> b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 
> 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff 
> EGA/VGA parameters to be used for mode 24
> 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 
> bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 
> b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 
> 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff 
> atkbd: the current kbd controller command byte 0045
> kbdc: DIAGNOSE status:0055
> kbdc: TEST_KBD_PORT status:0000
> atkbd: keyboard ID 0xffffffff (1)
> kbdc: RESET_KBD return code:00fa
> kbdc: RESET_KBD status:00aa
> sc0: <System console> on isa0
> sc0: VGA <16 virtual consoles, flags=0x0>
> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal)
> ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0x0000
> ata0: mask=00 status0=ff status1=ff
> ata0: probe allocation failed
> ata0 failed to probe at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0
> atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0
> atkbd0: <AT Keyboard> irq 1 on atkbdc0
> kbd0 at atkbd0
> kbd0: atkbd0, AT 84 (1), config:0x0, flags:0x3d0000
> psm0: current command byte:0045
> kbdc: TEST_AUX_PORT status:0001
> psm0: strange result for test aux port (1).
> kbdc: RESET_AUX return code:ffffffff
> kbdc: RESET_AUX return code:ffffffff
> kbdc: RESET_AUX return code:ffffffff
> kbdc: DIAGNOSE status:0055
> kbdc: TEST_KBD_PORT status:0000
> psm0: failed to reset the aux device.
> ed0 at port 0x280-0x29f iomem 0xd8000-0xdbfff irq 5 on isa0
> bpf: ed0 attached
> ed0: address 00:00:c0:d3:de:d6, type SMC8216/SMC8216C (16 bit) 
> fdc0: <NEC 765 or clone> at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
> fd0: <1440-KB 3.5" drive> on fdc0 drive 0
> gusc0 failed to probe at port 0x220 irq 5 drq 1 flags 0x13 on isa0
> ppc0: parallel port found at 0x378
> ppc0: This ppc chipset does not support the extended I/O port range...no problem
> ppc0: SPP
> ppc0: <Parallel port> at port 0x378-0x37b irq 7 on isa0
> ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode
> ppi0: <Parallel I/O> on ppbus0
> lpt0: <Printer> on ppbus0
> lpt0: Interrupt-driven port
> plip0: <PLIP network interface> on ppbus0
> bpf: lp0 attached
> sc1: no video adapter is found.
> sc1: <System console> failed to probe on isa0
> sio0: irq maps: 0x1041 0x1051 0x1041 0x1041
> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
> sio0: type 16450, console
> sio1: irq maps: 0x1041 0x1049 0x1041 0x1041
> sio1 at port 0x2f8-0x2ff irq 3 on isa0
> sio1: type 16450
> vga1: <Generic ISA VGA> failed to probe on isa0
> isa_probe_children: probing PnP devices
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
m> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3
01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000).
> sym0: script cmd = 808cfd02
> sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff.
> sym0: PCI STATUS = 0x8100
> (noperiph:sym0:0:-1:-1): SCSI BUS reset detected.
> 






To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.LNX.4.10.10008122252150.18682-100000>