16.04.2011 5:46, Kenneth R Westerback P=P0P?P8QP0P2(P;P0):
On Sat, Apr 16, 2011 at 12:25:12AM +0300, Oleksii Zhmyrov wrote:
I'm trying 4.9 snapshot from April 13 iso inside a VM with vmware
ws 7.0 in windows 7.
initially the system appears to boot fine but then it show the
following message:
bha3: model BT-958, firmware 5.07B
bha3: sync, parity
scsibus1 at bha3: 8 targets, initiator 7
uvm_fault(0xd07e7024, 0x0, 0m 3) -> e
fatal page fault (6) in supervisor mode
trap type 6 code eie d03a644c cs 8 eflags 10286 cr2 18 cpl 50
panic: trap type 6, code=2, pc=d032a644c
The operating system has halted.
Please press any key to reboot.
I have run older isos of 4.9 snapshot (from february and january)
and these run fine.
I use 4.9-current on VMware too and this error appeared after some changes
in scsi support on April 5, 2011.
--
Oleksii Zhmyrov
National Technical University of Ukraine "Kyiv Polytechnic Institute",
Institute of Physics and Technology
Tel: +38 (063) 496 2695
Just committed a fix for an uninitialize variable. Please let me know if
this was the problem! Appended below for the impatient.
This diff fixed the problem. Thanks!
.... Ken
Index: bha.c
===================================================================
RCS file: /cvs/src/sys/dev/ic/bha.c,v
retrieving revision 1.27
diff -u -p -r1.27 bha.c
--- bha.c 3 Apr 2011 12:42:36 -0000 1.27
+++ bha.c 16 Apr 2011 02:43:15 -0000
@@ -467,7 +467,7 @@ bha_ccb_free(xsc, xccb)
void *xsc, *xccb;
{
struct bha_softc *sc = xsc;
- struct bha_ccb *ccb;
+ struct bha_ccb *ccb = xccb;
bha_reset_ccb(sc, ccb);
--
Oleksii Zhmyrov
National Technical University of Ukraine "Kyiv Polytechnic Institute",
Institute of Physics and Technology
Tel: +38 (063) 496 2695