Date: Mon, 18 Apr 2011 13:36:57 +0200 From: Andre Albsmeier <Andre.Albsmeier@siemens.com> To: John Baldwin <jhb@freebsd.org> Cc: "svn-src-stable-7@freebsd.org" <svn-src-stable-7@freebsd.org> Subject: Re: svn commit: r218277 - in stable/7/sys: kern sys Message-ID: <20110418113657.GA6080@curry.mchp.siemens.de> In-Reply-To: <201104151235.05114.jhb@freebsd.org> References: <201102041444.p14EixJP087709@svn.freebsd.org> <20110415132525.GA88202@curry.mchp.siemens.de> <201104151235.05114.jhb@freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
--ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, 15-Apr-2011 at 18:35:05 +0200, John Baldwin wrote: > On Friday, April 15, 2011 9:25:25 am Andre Albsmeier wrote: > > On Fri, 04-Feb-2011 at 14:44:59 +0000, John Baldwin wrote: > > > Author: jhb > > > Date: Fri Feb 4 14:44:59 2011 > > > New Revision: 218277 > > > URL: http://svn.freebsd.org/changeset/base/218277 > > > > > > Log: > > > MFC 217075: > > > Retire PCONFIG and leave the priority of thread0 alone when waiting for > > > interrupt config hooks to execute. > > > > > > To preserve the KBI, I did not renumber priorities but simply removed > > > PCONFIG. > > > > > > Modified: > > > stable/7/sys/kern/subr_autoconf.c > > > stable/7/sys/sys/priority.h > > > Directory Properties: > > > stable/7/sys/ (props changed) > > > stable/7/sys/cddl/contrib/opensolaris/ (props changed) > > > stable/7/sys/contrib/dev/acpica/ (props changed) > > > stable/7/sys/contrib/pf/ (props changed) > > > > > > Modified: stable/7/sys/kern/subr_autoconf.c > > > > ============================================================================== > > > --- stable/7/sys/kern/subr_autoconf.c Fri Feb 4 14:44:42 2011 > (r218276) > > > +++ stable/7/sys/kern/subr_autoconf.c Fri Feb 4 14:44:59 2011 > (r218277) > > > @@ -108,7 +108,7 @@ run_interrupt_driven_config_hooks(dummy) > > > warned = 0; > > > while (!TAILQ_EMPTY(&intr_config_hook_list)) { > > > if (msleep(&intr_config_hook_list, &intr_config_hook_lock, > > > - PCONFIG, "conifhk", WARNING_INTERVAL_SECS * hz) == > > > + 0, "conifhk", WARNING_INTERVAL_SECS * hz) == > > > EWOULDBLOCK) { > > > mtx_unlock(&intr_config_hook_lock); > > > warned++; > > > > > > This broke several of my machines in a somewhat strange way: > > > > After upgrading them (17) to a recent 7-STABLE (as of 2011-04-12) > > I noticed that some (4) of them didn't start. All 4 didn't find > > their boot device anymore. What they all got in common is: > > > > - an Adaptec 2940 Ultra SCSI adapter > > - two SCSI harddisks (da0 and da1) of various brands > > - one SCSI CDROM drive (cd0) > > > > To be exact, none of the three devices (da0, da1, cd0) were > > detected at all. Other machines with a similar configuration > > (2940 and da0/da1) but _without_ the CDROM drive didn't have > > any problems. So I simply removed the CDROM drives on the 4 > > machines in question and they all booted again. > > > > Today I decided to dig into this and after reverting(*) the > > above change, they worked with the CDROM again. I have cross- > > checked it 3 times. No idea what's happening here... > > > > -Andre > > > > (*) To be honest, I use this patch so I had to modify only one file: > > > > --- sys/kern/subr_autoconf.c.ORI 2011-02-05 13:14:11.000000000 +0100 > > +++ sys/kern/subr_autoconf.c 2011-04-15 14:34:31.000000000 +0200 > > @@ -108,7 +108,7 @@ > > warned = 0; > > while (!TAILQ_EMPTY(&intr_config_hook_list)) { > > if (msleep(&intr_config_hook_list, &intr_config_hook_lock, > > - 0, "conifhk", WARNING_INTERVAL_SECS * hz) == > > + PRI_MIN_KERN + 32, "conifhk", WARNING_INTERVAL_SECS * hz) == > > EWOULDBLOCK) { > > mtx_unlock(&intr_config_hook_lock); > > warned++; > > Do you get any warnings about CAM timeouts, etc. when these probe? A verbose > dmesg might be nice to look at if possible. OK, I have set up a machine for testing. In my other mail I was wrong saying that the pass devices appear when using the problematic kernel... Here are the dmesgs: - dmesg_bad is the original kernel as of Friday - dmesg_ok is the patched kernel (see above) as of Friday - dmesg.diff is the diff between both If you want me to try something just tell me... Thanks, -Andre --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=dmesg_ok Content-Transfer-Encoding: quoted-printable OK boot -sv |=08/=08-=08\=08|=08/=08-=08SMAP type=3D01 base=3D0000000000000000 len=3D00= 0000000009f800 SMAP type=3D02 base=3D000000000009f800 len=3D0000000000000800 SMAP type=3D02 base=3D00000000000f0000 len=3D0000000000010000 SMAP type=3D01 base=3D0000000000100000 len=3D000000000fefd000 SMAP type=3D03 base=3D000000000fffd000 len=3D0000000000002000 SMAP type=3D04 base=3D000000000ffff000 len=3D0000000000001000 SMAP type=3D02 base=3D00000000ffff0000 len=3D0000000000010000 Copyright (c) 1992-2011 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 7.4-STABLE #0: Fri Apr 15 14:58:58 CEST 2011 root@bali:/src/obj-7/src/src-7/sys/smbfix i386 Preloaded elf kernel "/boot/kernel/kernel" at 0xc0802000. Calibrating clock(s) ... i8254 clock: 1193166 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 1403189147 Hz CPU: Intel(R) Celeron(TM) CPU 1400MHz (1403.19-MHz 686-class= CPU) Origin =3D "GenuineIntel" Id =3D 0x6b4 Family =3D 6 Model =3D b Stepp= ing =3D 4 Features=3D0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,= CMOV,PAT,PSE36,MMX,FXSR,SSE> Instruction TLB: 4 KB pages, 4-way set associative, 32 entries Instruction TLB: 4 MB pages, fully associative, 2 entries Data TLB: 4 KB pages, 4-way set associative, 64 entries 2nd-level cache: 256 KB, 8-way set associative, 32 byte line size 1st-level instruction cache: 16 KB, 4-way set associative, 32 byte line size Data TLB: 4 MB Pages, 4-way set associative, 8 entries 1st-level data cache: 16 KB, 4-way set associative, 32 byte line size real memory =3D 268423168 (255 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009efff, 647168 bytes (158 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) 0x0000000000c25000 - 0x000000000fb45fff, 250744832 bytes (61217 pages) avail memory =3D 253374464 (241 MB) bios32: Found BIOS32 Service Directory header at 0xc00f9d40 bios32: Entry =3D 0xf0520 (c00f0520) Rev =3D 0 Len =3D 1 pcibios: PCI BIOS entry at 0xf0000+0x720 pnpbios: Found PnP BIOS data at 0xc00fd190 pnpbios: Entry =3D f0000:d1c0 Rev =3D 1.0 pnpbios: OEM ID cd041 Other BIOS signatures found: ULE: setup cpu 0 nfslock: pseudo-device null: <null device, zero device> random: <entropy source, Software, Yarrow> io: <I/O> mem: <memory> Pentium Pro MTRR support enabled ACPI: RSDP @ 0x0xf7f90/0x0014 (v000 ASUS ) ACPI: RSDT @ 0x0xfffd000/0x002C (v001 ASUS P2B 0x42302E31 MSFT 0x313= 13031) ACPI: FACP @ 0x0xfffd080/0x0074 (v001 ASUS P2B 0x42302E31 MSFT 0x313= 13031) ACPI: DSDT @ 0x0xfffd100/0x1BA8 (v001 ASUS P2B 0x00001000 MSFT 0x010= 00001) ACPI: FACS @ 0x0xffff000/0x0040 ACPI: BOOT @ 0x0xfffd040/0x0028 (v001 ASUS P2B 0x42302E31 MSFT 0x313= 13031) npx0: INT 16 interface acpi0: <ASUS P2B> on motherboard acpi0: [MPSAFE] acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: wakeup code va 0xc17e4000 pa 0x1000 atpic: Programming IRQ9 as level/low pci_open(1): mode 1 addr port (0x0cf8) is 0x80002358 pci_open(1a): mode1res=3D0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=3D060000] [hdr=3D00] is there (id=3D71908086) pcibios: BIOS version 2.10 acpi_bus_number: root bus has no _BBN, assuming 0 AcpiOsDerivePciId: \_SB_.PCI0.PX40.PIRQ -> bus 0 dev 4 func 0 acpi_bus_number: root bus has no _BBN, assuming 0 AcpiOsDerivePciId: \_SB_.PCI0.PX43.IPMU -> bus 0 dev 4 func 3 acpi_bus_number: root bus has no _BBN, assuming 0 AcpiOsDerivePciId: \_SB_.PCI0.PX43.ISMB -> bus 0 dev 4 func 3 acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, ff00000 (3) failed ACPI timer: 0/4 0/4 0/4 0/3 0/16777212 0/4 0/4 0/4 0/4 0/16777209 -> 0 Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <24-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 pci_link0: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 pci_link1: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 11 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 pci_link2: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 pci_link3: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 10 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 acpi_button0: <Power Button> on acpi0 pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0 ACPI: Found matching pin for 0.11.INTA at func 0: 11 ACPI: Found matching pin for 0.9.INTA at func 0: 10 ACPI: Found matching pin for 0.4.INTD at func 2: 255 pci0: <ACPI PCI bus> on pcib0 pci0: domain=3D0, physical bus=3D0 found-> vendor=3D0x8086, dev=3D0x7190, revid=3D0x03 domain=3D0, bus=3D0, slot=3D0, func=3D0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0106, statreg=3D0x2210, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) map[10]: type Prefetchable Memory, range 32, base 0xe4000000, size 26, ena= bled found-> vendor=3D0x8086, dev=3D0x7191, revid=3D0x03 domain=3D0, bus=3D0, slot=3D1, func=3D0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 cmdreg=3D0x0117, statreg=3D0x0220, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x80 (32000 ns), maxlat=3D0x00 (0 ns) found-> vendor=3D0x8086, dev=3D0x7110, revid=3D0x02 domain=3D0, bus=3D0, slot=3D4, func=3D0 class=3D06-01-00, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x000f, statreg=3D0x0280, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) found-> vendor=3D0x8086, dev=3D0x7111, revid=3D0x01 domain=3D0, bus=3D0, slot=3D4, func=3D1 class=3D01-01-80, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0000, statreg=3D0x0280, cachelnsz=3D0 (dwords) lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) map[20]: type I/O Port, range 32, base 0xd800, size 4, port disabled found-> vendor=3D0x8086, dev=3D0x7112, revid=3D0x01 domain=3D0, bus=3D0, slot=3D4, func=3D2 class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0005, statreg=3D0x0280, cachelnsz=3D0 (dwords) lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Dd, irq=3D255 map[20]: type I/O Port, range 32, base 0xd400, size 5, enabled found-> vendor=3D0x8086, dev=3D0x7113, revid=3D0x02 domain=3D0, bus=3D0, slot=3D4, func=3D3 class=3D06-80-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0003, statreg=3D0x0280, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) map[90]: type I/O Port, range 32, base 0xe800, size 4, enabled found-> vendor=3D0x8086, dev=3D0x1229, revid=3D0x08 domain=3D0, bus=3D0, slot=3D9, func=3D0 class=3D02-00-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0017, statreg=3D0x0290, cachelnsz=3D8 (dwords) lattimer=3D0x20 (960 ns), mingnt=3D0x08 (2000 ns), maxlat=3D0x38 (14000 ns) intpin=3Da, irq=3D10 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type Memory, range 32, base 0xe3000000, size 12, enabled map[14]: type I/O Port, range 32, base 0xd000, size 6, enabled map[18]: type Memory, range 32, base 0xe2800000, size 20, enabled pcib0: matched entry for 0.9.INTA (src \_SB_.LNKD:0) pcib0: slot 9 INTA routed to irq 10 via \_SB_.LNKD found-> vendor=3D0x9004, dev=3D0x8178, revid=3D0x00 domain=3D0, bus=3D0, slot=3D11, func=3D0 class=3D01-00-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0017, statreg=3D0x0280, cachelnsz=3D8 (dwords) lattimer=3D0x20 (960 ns), mingnt=3D0x08 (2000 ns), maxlat=3D0x08 (2000 ns) intpin=3Da, irq=3D11 map[10]: type I/O Port, range 32, base 0xb800, size 8, enabled map[14]: type Memory, range 32, base 0xe2000000, size 12, enabled pcib0: matched entry for 0.11.INTA (src \_SB_.LNKB:0) pcib0: slot 11 INTA routed to irq 11 via \_SB_.LNKB eccmon0: RAM ECC Monitor v0.13 on i440BX/ZX (8086:7190), reporting tested eccmon0: Capabilities: ECC with hardware scrubber eccmon0: Current mode: ECC with hardware scrubber eccmon0: Bank Size Type ILV ECC eccmon0: 2 64M SDR N Y eccmon0: 3 64M SDR N Y eccmon0: 4 64M SDR N Y eccmon0: 5 64M SDR N Y eccmon0: Total RAM detected: 256M eccmon0: <RAM ECC Monitor v0.13> on hostb0 eccmon0: attached pcib1: <PCI-PCI bridge> at device 1.0 on pci0 pcib1: domain 0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0xe000-0xdfff pcib1: no prefetched decode pci1: <PCI bus> on pcib1 pci1: domain=3D0, physical bus=3D1 isab0: <PCI-ISA bridge> at device 4.0 on pci0 isa0: <ISA bus> on isab0 pci0: <mass storage, ATA> at device 4.1 (no driver attached) pci0: <serial bus, USB> at device 4.2 (no driver attached) intsmb0: <Intel PIIX4 SMBUS Interface> port 0xe800-0xe80f at device 4.3 on = pci0 intsmb0: Reserved 0x10 bytes for rid 0x90 type 4 at 0xe800 intsmb0: intr IRQ 9 enabled revision 0 intsmb0: [GIANT-LOCKED] intsmb0: [ITHREAD] smbus0: <System Management Bus> on intsmb0 smb0: <SMBus generic I/O> on smbus0 fxp0: <Intel 82559 Pro/100 Ethernet> port 0xd000-0xd03f mem 0xe3000000-0xe3= 000fff,0xe2800000-0xe28fffff irq 10 at device 9.0 on pci0 fxp0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xe3000000 fxp0: using memory space register mapping fxp0: PCI IDs: 8086 1229 8086 000c 0008 fxp0: Dynamic Standby mode is disabled miibus0: <MII bus> on fxp0 inphy0: <i82555 10/100 media interface> PHY 1 on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow fxp0: bpf attached fxp0: Ethernet address: 00:02:b3:5c:a6:23 fxp0: [MPSAFE] fxp0: [ITHREAD] ahc0: <Adaptec 2940 Ultra SCSI adapter> port 0xb800-0xb8ff mem 0xe2000000-0= xe2000fff irq 11 at device 11.0 on pci0 ahc0: Defaulting to MEMIO on ahc0: Reserved 0x1000 bytes for rid 0x14 type 3 at 0xe2000000 ahc0: Reading SEEPROM...done. ahc0: Low byte termination Enabled ahc0: Downloading Sequencer Program... 442 instructions downloaded ahc0: Features 0x10001, Bugs 0x25, Flags 0x20485540 ahc0: [MPSAFE] ahc0: [ITHREAD] aic7880: Ultra Single Channel A, SCSI Id=3D7, 16/253 SCBs fdc0: <floppy drive controller> port 0x3f2-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: ic_type 90 part_id 80 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 uart0: [FILTER] uart0: fast interrupt uart0: console (19200,n,8,1) uart1: <16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 uart1: [FILTER] uart1: fast interrupt atkbdc0: <Keyboard controller (i8042)> port 0x60,0x64 irq 1 on acpi0 atkbd0: <AT Keyboard> irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0067 atkbd: keyboard ID 0x41ab (2) kbdc: RESET_KBD return code:00fa kbdc: RESET_KBD status:00aa kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x1d0000 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] cpu0: <ACPI CPU> on acpi0 cpu0: switching to generic Cx mode atkbdc: atkbdc0 already exists; skipping it fdc: fdc0 already exists; skipping it uart: uart0 already exists; skipping it uart: uart1 already exists; skipping it pnp_identify: Trying Read_Port at 203 pnp_identify: Trying Read_Port at 243 pnp_identify: Trying Read_Port at 283 pnp_identify: Trying Read_Port at 2c3 pnp_identify: Trying Read_Port at 303 pnp_identify: Trying Read_Port at 343 pnp_identify: Trying Read_Port at 383 pnp_identify: Trying Read_Port at 3c3 PNP Identify complete sc: sc0 already exists; skipping it vga: vga0 already exists; skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0: <ISA Option ROM> at iomem 0xc0000-0xc7fff pnpid ORM0000 on isa0 adv0: not probed (disabled) aha0: not probed (disabled) aic0: not probed (disabled) ata0 failed to probe at port 0x1f0 irq 14 on isa0 ata1 failed to probe at port 0x170 irq 15 on isa0 bt0: not probed (disabled) cs0: not probed (disabled) ed0: not probed (disabled) fe0: not probed (disabled) ie0: not probed (disabled) it0 failed to probe at port 0x290 on isa0 it1 failed to probe at port 0xc00 on isa0 it2 failed to probe at port 0xd00 on isa0 le0: not probed (disabled) lm0 failed to probe at port 0x290 on isa0 ppc0 failed to probe at irq 7 on isa0 sc0: <System console> at flags 0x100 on isa0 sc0: VGA <9 virtual consoles, flags=3D0x100> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) sn0: not probed (disabled) uart2: not probed (disabled) uart3: not probed (disabled) vga0: <Generic ISA VGA> at port 0x3b0-0x3df iomem 0xa0000-0xbffff on isa0 vt0: not probed (disabled) isa_probe_children: probing PnP devices Device configuration finished. procfs registered Timecounter "TSC" frequency 1403189147 Hz quality 800 Timecounters tick every 10.000 msec splash: image decoder found: snake_saver lo0: bpf attached (noperiph:ahc0:0:-1:-1): SCSI bus reset delivered. 0 SCBs aborted. ahc0: Selection Timeout on A:2. 0 SCBs aborted ahc0: Selection Timeout on A:3. 0 SCBs aborted ahc0: Selection Timeout on A:4. 0 SCBs aborted ahc0: Selection Timeout on A:5. 0 SCBs aborted (probe6:ahc0:0:6:0): Retrying Command (probe0:ahc0:0:0:0): Retrying Command (probe1:ahc0:0:1:0): Retrying Command (probe6:ahc0:0:6:0): error 22 (probe6:ahc0:0:6:0): Unretryable Error (probe6:ahc0:0:6:0): Down reving Protocol Version from 4 to 2? (ahc0:A:6:0): Sending SDTR period c, offset f (ahc0:A:6:0): Received SDTR period 19, offset f Filtered to period 19, offset f ahc0: target 6 synchronous at 10.0MHz, offset =3D 0xf (ahc0:A:6:0): Sending SDTR period 19, offset f (ahc0:A:6:0): Received SDTR period 19, offset f Filtered to period 19, offset f (probe6:ahc0:0:6:0): error 16 (probe6:ahc0:0:6:0): Unretryable Error (probe0:ahc0:0:0:0): Down reving Protocol Version from 4 to 2? (probe1:ahc0:0:1:0): Down reving Protocol Version from 4 to 2? (ahc0:A:0:0): Sending SDTR period c, offset f (ahc0:A:0:0): Received SDTR period c, offset f Filtered to period c, offset f ahc0: target 0 synchronous at 20.0MHz, offset =3D 0xf (ahc0:A:1:0): Sending SDTR period c, offset f (ahc0:A:1:0): Received SDTR period c, offset f Filtered to period c, offset f ahc0: target 1 synchronous at 20.0MHz, offset =3D 0xf pass0 at ahc0 bus 0 target 0 lun 0 pass0: <IBM DCAS-32160 S65A> Fixed Direct Access SCSI-2 device=20 pass0: Serial Number F2H47885 =20 pass0: 20.000MB/s transfers (20.000MHz, offset 15) pass1 at ahc0 bus 0 target 1 lun 0 pass1: <IBM DCAS-32160 S61A> Fixed Direct Access SCSI-2 device=20 pass1: Serial Number B2F11956 =20 pass1: 20.000MB/s transfers (20.000MHz, offset 15) pass6 at ahc0 bus 0 target 6 lun 0 pass6: <TOSHIBA CD-ROM XM-6201TA 1400> Removable CD-ROM SCSI-2 device=20 pass6: 10.000MB/s transfers (10.000MHz, offset 15) GEOM: new disk da0 GEOM: nda0 at ahc0 bus 0 target 0 lun 0 da0: <IBM DCAS-32160 S65A> Fixed Direct Access SCSI-2 device=20 da0: Serial Number F2H47885 =20 da0: 20.000MB/s transfers (20.000MHz, offset 15) da0: 2063MB (4226725 512 byte sectors: 255H 63S/T 263C) da1 at ahc0 bus 0 target 1 lun 0 da1: <IBM DCAS-32160 S61A> Fixed Direct Access SCSI-2 device=20 da1: Serial Number B2F11956 =20 da1: 20.000MB/s transfers (20.000MHz, offset 15) da1: 2063MB (4226725 512 byte sectors: 255H 63S/T 263C) ew disk da1 Trying to mount root from ufs:/dev/da0s1a start_init: trying /sbin/init Enter root password, or ^D to go multi-user Password: --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=dmesg_bad Content-Transfer-Encoding: quoted-printable OK boot -sv /=08-=08\=08|=08/=08-=08\=08SMAP type=3D01 base=3D0000000000000000 len=3D00= 0000000009f800 SMAP type=3D02 base=3D000000000009f800 len=3D0000000000000800 SMAP type=3D02 base=3D00000000000f0000 len=3D0000000000010000 SMAP type=3D01 base=3D0000000000100000 len=3D000000000fefd000 SMAP type=3D03 base=3D000000000fffd000 len=3D0000000000002000 SMAP type=3D04 base=3D000000000ffff000 len=3D0000000000001000 SMAP type=3D02 base=3D00000000ffff0000 len=3D0000000000010000 Copyright (c) 1992-2011 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 7.4-STABLE #1: Mon Apr 18 11:46:05 CEST 2011 root@bali:/src/obj-7/src/src-7/sys/smbfix i386 Preloaded elf kernel "/kbad" at 0xc0802000. Calibrating clock(s) ... i8254 clock: 1193166 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 1403189405 Hz CPU: Intel(R) Celeron(TM) CPU 1400MHz (1403.19-MHz 686-class= CPU) Origin =3D "GenuineIntel" Id =3D 0x6b4 Family =3D 6 Model =3D b Stepp= ing =3D 4 Features=3D0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,= CMOV,PAT,PSE36,MMX,FXSR,SSE> Instruction TLB: 4 KB pages, 4-way set associative, 32 entries Instruction TLB: 4 MB pages, fully associative, 2 entries Data TLB: 4 KB pages, 4-way set associative, 64 entries 2nd-level cache: 256 KB, 8-way set associative, 32 byte line size 1st-level instruction cache: 16 KB, 4-way set associative, 32 byte line size Data TLB: 4 MB Pages, 4-way set associative, 8 entries 1st-level data cache: 16 KB, 4-way set associative, 32 byte line size real memory =3D 268423168 (255 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009efff, 647168 bytes (158 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) 0x0000000000c25000 - 0x000000000fb45fff, 250744832 bytes (61217 pages) avail memory =3D 253374464 (241 MB) bios32: Found BIOS32 Service Directory header at 0xc00f9d40 bios32: Entry =3D 0xf0520 (c00f0520) Rev =3D 0 Len =3D 1 pcibios: PCI BIOS entry at 0xf0000+0x720 pnpbios: Found PnP BIOS data at 0xc00fd190 pnpbios: Entry =3D f0000:d1c0 Rev =3D 1.0 pnpbios: OEM ID cd041 Other BIOS signatures found: ULE: setup cpu 0 nfslock: pseudo-device null: <null device, zero device> random: <entropy source, Software, Yarrow> io: <I/O> mem: <memory> Pentium Pro MTRR support enabled ACPI: RSDP @ 0x0xf7f90/0x0014 (v000 ASUS ) ACPI: RSDT @ 0x0xfffd000/0x002C (v001 ASUS P2B 0x42302E31 MSFT 0x313= 13031) ACPI: FACP @ 0x0xfffd080/0x0074 (v001 ASUS P2B 0x42302E31 MSFT 0x313= 13031) ACPI: DSDT @ 0x0xfffd100/0x1BA8 (v001 ASUS P2B 0x00001000 MSFT 0x010= 00001) ACPI: FACS @ 0x0xffff000/0x0040 ACPI: BOOT @ 0x0xfffd040/0x0028 (v001 ASUS P2B 0x42302E31 MSFT 0x313= 13031) npx0: INT 16 interface acpi0: <ASUS P2B> on motherboard acpi0: [MPSAFE] acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: wakeup code va 0xc17e4000 pa 0x1000 atpic: Programming IRQ9 as level/low pci_open(1): mode 1 addr port (0x0cf8) is 0x80002358 pci_open(1a): mode1res=3D0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=3D060000] [hdr=3D00] is there (id=3D71908086) pcibios: BIOS version 2.10 acpi_bus_number: root bus has no _BBN, assuming 0 AcpiOsDerivePciId: \_SB_.PCI0.PX40.PIRQ -> bus 0 dev 4 func 0 acpi_bus_number: root bus has no _BBN, assuming 0 AcpiOsDerivePciId: \_SB_.PCI0.PX43.IPMU -> bus 0 dev 4 func 3 acpi_bus_number: root bus has no _BBN, assuming 0 AcpiOsDerivePciId: \_SB_.PCI0.PX43.ISMB -> bus 0 dev 4 func 3 acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, ff00000 (3) failed ACPI timer: 0/4 0/16777212 0/4 0/4 0/16777209 0/16777212 0/4 0/4 0/4 0/4 ->= 0 Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <24-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 pci_link0: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 pci_link1: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 11 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 pci_link2: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 pci_link3: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12 14 15 Validation 0 10 N 0 3 4 5 6 7 9 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 14 15 acpi_button0: <Power Button> on acpi0 pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0 ACPI: Found matching pin for 0.11.INTA at func 0: 11 ACPI: Found matching pin for 0.9.INTA at func 0: 10 ACPI: Found matching pin for 0.4.INTD at func 2: 255 pci0: <ACPI PCI bus> on pcib0 pci0: domain=3D0, physical bus=3D0 found-> vendor=3D0x8086, dev=3D0x7190, revid=3D0x03 domain=3D0, bus=3D0, slot=3D0, func=3D0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0106, statreg=3D0x2210, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) map[10]: type Prefetchable Memory, range 32, base 0xe4000000, size 26, ena= bled found-> vendor=3D0x8086, dev=3D0x7191, revid=3D0x03 domain=3D0, bus=3D0, slot=3D1, func=3D0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 cmdreg=3D0x0117, statreg=3D0x0220, cachelnsz=3D0 (dwords) lattimer=3D0x40 (1920 ns), mingnt=3D0x80 (32000 ns), maxlat=3D0x00 (0 ns) found-> vendor=3D0x8086, dev=3D0x7110, revid=3D0x02 domain=3D0, bus=3D0, slot=3D4, func=3D0 class=3D06-01-00, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x000f, statreg=3D0x0280, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) found-> vendor=3D0x8086, dev=3D0x7111, revid=3D0x01 domain=3D0, bus=3D0, slot=3D4, func=3D1 class=3D01-01-80, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0000, statreg=3D0x0280, cachelnsz=3D0 (dwords) lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) map[20]: type I/O Port, range 32, base 0xd800, size 4, port disabled found-> vendor=3D0x8086, dev=3D0x7112, revid=3D0x01 domain=3D0, bus=3D0, slot=3D4, func=3D2 class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0005, statreg=3D0x0280, cachelnsz=3D0 (dwords) lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Dd, irq=3D255 map[20]: type I/O Port, range 32, base 0xd400, size 5, enabled found-> vendor=3D0x8086, dev=3D0x7113, revid=3D0x02 domain=3D0, bus=3D0, slot=3D4, func=3D3 class=3D06-80-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0003, statreg=3D0x0280, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) map[90]: type I/O Port, range 32, base 0xe800, size 4, enabled found-> vendor=3D0x8086, dev=3D0x1229, revid=3D0x08 domain=3D0, bus=3D0, slot=3D9, func=3D0 class=3D02-00-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0017, statreg=3D0x0290, cachelnsz=3D8 (dwords) lattimer=3D0x20 (960 ns), mingnt=3D0x08 (2000 ns), maxlat=3D0x38 (14000 ns) intpin=3Da, irq=3D10 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type Memory, range 32, base 0xe3000000, size 12, enabled map[14]: type I/O Port, range 32, base 0xd000, size 6, enabled map[18]: type Memory, range 32, base 0xe2800000, size 20, enabled pcib0: matched entry for 0.9.INTA (src \_SB_.LNKD:0) pcib0: slot 9 INTA routed to irq 10 via \_SB_.LNKD found-> vendor=3D0x9004, dev=3D0x8178, revid=3D0x00 domain=3D0, bus=3D0, slot=3D11, func=3D0 class=3D01-00-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0017, statreg=3D0x0280, cachelnsz=3D8 (dwords) lattimer=3D0x20 (960 ns), mingnt=3D0x08 (2000 ns), maxlat=3D0x08 (2000 ns) intpin=3Da, irq=3D11 map[10]: type I/O Port, range 32, base 0xb800, size 8, enabled map[14]: type Memory, range 32, base 0xe2000000, size 12, enabled pcib0: matched entry for 0.11.INTA (src \_SB_.LNKB:0) pcib0: slot 11 INTA routed to irq 11 via \_SB_.LNKB eccmon0: RAM ECC Monitor v0.13 on i440BX/ZX (8086:7190), reporting tested eccmon0: Capabilities: ECC with hardware scrubber eccmon0: Current mode: ECC with hardware scrubber eccmon0: Bank Size Type ILV ECC eccmon0: 2 64M SDR N Y eccmon0: 3 64M SDR N Y eccmon0: 4 64M SDR N Y eccmon0: 5 64M SDR N Y eccmon0: Total RAM detected: 256M eccmon0: <RAM ECC Monitor v0.13> on hostb0 eccmon0: attached pcib1: <PCI-PCI bridge> at device 1.0 on pci0 pcib1: domain 0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0xe000-0xdfff pcib1: no prefetched decode pci1: <PCI bus> on pcib1 pci1: domain=3D0, physical bus=3D1 isab0: <PCI-ISA bridge> at device 4.0 on pci0 isa0: <ISA bus> on isab0 pci0: <mass storage, ATA> at device 4.1 (no driver attached) pci0: <serial bus, USB> at device 4.2 (no driver attached) intsmb0: <Intel PIIX4 SMBUS Interface> port 0xe800-0xe80f at device 4.3 on = pci0 intsmb0: Reserved 0x10 bytes for rid 0x90 type 4 at 0xe800 intsmb0: intr IRQ 9 enabled revision 0 intsmb0: [GIANT-LOCKED] intsmb0: [ITHREAD] smbus0: <System Management Bus> on intsmb0 smb0: <SMBus generic I/O> on smbus0 fxp0: <Intel 82559 Pro/100 Ethernet> port 0xd000-0xd03f mem 0xe3000000-0xe3= 000fff,0xe2800000-0xe28fffff irq 10 at device 9.0 on pci0 fxp0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xe3000000 fxp0: using memory space register mapping fxp0: PCI IDs: 8086 1229 8086 000c 0008 fxp0: Dynamic Standby mode is disabled miibus0: <MII bus> on fxp0 inphy0: <i82555 10/100 media interface> PHY 1 on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow fxp0: bpf attached fxp0: Ethernet address: 00:02:b3:5c:a6:23 fxp0: [MPSAFE] fxp0: [ITHREAD] ahc0: <Adaptec 2940 Ultra SCSI adapter> port 0xb800-0xb8ff mem 0xe2000000-0= xe2000fff irq 11 at device 11.0 on pci0 ahc0: Defaulting to MEMIO on ahc0: Reserved 0x1000 bytes for rid 0x14 type 3 at 0xe2000000 ahc0: Reading SEEPROM...done. ahc0: Low byte termination Enabled ahc0: Downloading Sequencer Program... 442 instructions downloaded ahc0: Features 0x10001, Bugs 0x25, Flags 0x20485540 ahc0: [MPSAFE] ahc0: [ITHREAD] aic7880: Ultra Single Channel A, SCSI Id=3D7, 16/253 SCBs fdc0: <floppy drive controller> port 0x3f2-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: ic_type 90 part_id 80 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 uart0: [FILTER] uart0: fast interrupt uart0: console (19200,n,8,1) uart1: <16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 uart1: [FILTER] uart1: fast interrupt atkbdc0: <Keyboard controller (i8042)> port 0x60,0x64 irq 1 on acpi0 atkbd0: <AT Keyboard> irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0067 atkbd: keyboard ID 0x41ab (2) kbdc: RESET_KBD return code:00fa kbdc: RESET_KBD status:00aa kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x1d0000 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] cpu0: <ACPI CPU> on acpi0 cpu0: switching to generic Cx mode atkbdc: atkbdc0 already exists; skipping it fdc: fdc0 already exists; skipping it uart: uart0 already exists; skipping it uart: uart1 already exists; skipping it pnp_identify: Trying Read_Port at 203 pnp_identify: Trying Read_Port at 243 pnp_identify: Trying Read_Port at 283 pnp_identify: Trying Read_Port at 2c3 pnp_identify: Trying Read_Port at 303 pnp_identify: Trying Read_Port at 343 pnp_identify: Trying Read_Port at 383 pnp_identify: Trying Read_Port at 3c3 PNP Identify complete sc: sc0 already exists; skipping it vga: vga0 already exists; skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0: <ISA Option ROM> at iomem 0xc0000-0xc7fff pnpid ORM0000 on isa0 adv0: not probed (disabled) aha0: not probed (disabled) aic0: not probed (disabled) ata0 failed to probe at port 0x1f0 irq 14 on isa0 ata1 failed to probe at port 0x170 irq 15 on isa0 bt0: not probed (disabled) cs0: not probed (disabled) ed0: not probed (disabled) fe0: not probed (disabled) ie0: not probed (disabled) it0 failed to probe at port 0x290 on isa0 it1 failed to probe at port 0xc00 on isa0 it2 failed to probe at port 0xd00 on isa0 le0: not probed (disabled) lm0 failed to probe at port 0x290 on isa0 ppc0 failed to probe at irq 7 on isa0 sc0: <System console> at flags 0x100 on isa0 sc0: VGA <9 virtual consoles, flags=3D0x100> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) sn0: not probed (disabled) uart2: not probed (disabled) uart3: not probed (disabled) vga0: <Generic ISA VGA> at port 0x3b0-0x3df iomem 0xa0000-0xbffff on isa0 vt0: not probed (disabled) isa_probe_children: probing PnP devices Device configuration finished. procfs registered Timecounter "TSC" frequency 1403189405 Hz quality 800 Timecounters tick every 10.000 msec splash: image decoder found: snake_saver lo0: bpf attached (noperiph:ahc0:0:-1:-1): SCSI bus reset delivered. 0 SCBs aborted. ahc0: Selection Timeout on A:2. 0 SCBs aborted ahc0: Selection Timeout on A:3. 0 SCBs aborted ahc0: Selection Timeout on A:4. 0 SCBs aborted ahc0: Selection Timeout on A:5. 0 SCBs aborted (probe6:ahc0:0:6:0): Retrying Command (probe0:ahc0:0:0:0): Retrying Command (probe1:ahc0:0:1:0): Retrying Command (probe6:ahc0:0:6:0): error 22 (probe6:ahc0:0:6:0): Unretryable Error (probe6:ahc0:0:6:0): Down reving Protocol Version from 4 to 2? (ahc0:A:6:0): Sending SDTR period c, offset f (ahc0:A:6:0): Received SDTR period 19, offset f Filtered to period 19, offset f ahc0: target 6 synchronous at 10.0MHz, offset =3D 0xf (ahc0:A:6:0): Sending SDTR period 19, offset f (ahc0:A:6:0): Received SDTR period 19, offset f Filtered to period 19, offset f (probe6:ahc0:0:6:0): error 16 (probe6:ahc0:0:6:0): Unretryable Error (probe0:ahc0:0:0:0): Down reving Protocol Version from 4 to 2? (probe1:ahc0:0:1:0): Down reving Protocol Version from 4 to 2? (ahc0:A:0:0): Sending SDTR period c, offset f (ahc0:A:0:0): Received SDTR period c, offset f Filtered to period c, offset f ahc0: target 0 synchronous at 20.0MHz, offset =3D 0xf (ahc0:A:1:0): Sending SDTR period c, offset f (ahc0:A:1:0): Received SDTR period c, offset f Filtered to period c, offset f ahc0: target 1 synchronous at 20.0MHz, offset =3D 0xf passTrying to mount root from ufs:/dev/da0s1a Manual root filesystem specification: <fstype>:<device> Mount <device> using filesystem <fstype> eg. ufs:da0s1a ? List valid disk boot devices <empty line> Abort manual input mountroot>=20 --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dmesg.diff" Content-Transfer-Encoding: quoted-printable --- dmesg_ok 2011-04-18 13:29:44.000000000 +0200 +++ dmesg_bad 2011-04-18 13:29:51.000000000 +0200 @@ -1,5 +1,5 @@ OK boot -sv -|=08/=08-=08\=08|=08/=08-=08SMAP type=3D01 base=3D0000000000000000 len=3D0= 00000000009f800 +/=08-=08\=08|=08/=08-=08\=08SMAP type=3D01 base=3D0000000000000000 len=3D0= 00000000009f800 SMAP type=3D02 base=3D000000000009f800 len=3D0000000000000800 SMAP type=3D02 base=3D00000000000f0000 len=3D0000000000010000 SMAP type=3D01 base=3D0000000000100000 len=3D000000000fefd000 @@ -10,13 +10,13 @@ Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. -FreeBSD 7.4-STABLE #0: Fri Apr 15 14:58:58 CEST 2011 +FreeBSD 7.4-STABLE #1: Mon Apr 18 11:46:05 CEST 2011 root@bali:/src/obj-7/src/src-7/sys/smbfix i386 -Preloaded elf kernel "/boot/kernel/kernel" at 0xc0802000. +Preloaded elf kernel "/kbad" at 0xc0802000. Calibrating clock(s) ... i8254 clock: 1193166 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 -Calibrating TSC clock ... TSC clock: 1403189147 Hz +Calibrating TSC clock ... TSC clock: 1403189405 Hz CPU: Intel(R) Celeron(TM) CPU 1400MHz (1403.19-MHz 686-clas= s CPU) Origin =3D "GenuineIntel" Id =3D 0x6b4 Family =3D 6 Model =3D b Step= ping =3D 4 Features=3D0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA= ,CMOV,PAT,PSE36,MMX,FXSR,SSE> @@ -73,7 +73,7 @@ AcpiOsDerivePciId: \_SB_.PCI0.PX43.ISMB -> bus 0 dev 4 func 3 acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, ff00000 (3) failed -ACPI timer: 0/4 0/4 0/4 0/3 0/16777212 0/4 0/4 0/4 0/4 0/16777209 -> 0 +ACPI timer: 0/4 0/16777212 0/4 0/4 0/16777209 0/16777212 0/4 0/4 0/4 0/4 -= > 0 Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <24-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 pci_link0: Index IRQ Rtd Ref IRQs @@ -275,7 +275,7 @@ isa_probe_children: probing PnP devices Device configuration finished. procfs registered -Timecounter "TSC" frequency 1403189147 Hz quality 800 +Timecounter "TSC" frequency 1403189405 Hz quality 800 Timecounters tick every 10.000 msec splash: image decoder found: snake_saver lo0: bpf attached @@ -309,30 +309,12 @@ (ahc0:A:1:0): Received SDTR period c, offset f Filtered to period c, offset f ahc0: target 1 synchronous at 20.0MHz, offset =3D 0xf -pass0 at ahc0 bus 0 target 0 lun 0 -pass0: <IBM DCAS-32160 S65A> Fixed Direct Access SCSI-2 device=20 -pass0: Serial Number F2H47885 =20 -pass0: 20.000MB/s transfers (20.000MHz, offset 15) -pass1 at ahc0 bus 0 target 1 lun 0 -pass1: <IBM DCAS-32160 S61A> Fixed Direct Access SCSI-2 device=20 -pass1: Serial Number B2F11956 =20 -pass1: 20.000MB/s transfers (20.000MHz, offset 15) -pass6 at ahc0 bus 0 target 6 lun 0 -pass6: <TOSHIBA CD-ROM XM-6201TA 1400> Removable CD-ROM SCSI-2 device=20 -pass6: 10.000MB/s transfers (10.000MHz, offset 15) -GEOM: new disk da0 -GEOM: nda0 at ahc0 bus 0 target 0 lun 0 -da0: <IBM DCAS-32160 S65A> Fixed Direct Access SCSI-2 device=20 -da0: Serial Number F2H47885 =20 -da0: 20.000MB/s transfers (20.000MHz, offset 15) -da0: 2063MB (4226725 512 byte sectors: 255H 63S/T 263C) -da1 at ahc0 bus 0 target 1 lun 0 -da1: <IBM DCAS-32160 S61A> Fixed Direct Access SCSI-2 device=20 -da1: Serial Number B2F11956 =20 -da1: 20.000MB/s transfers (20.000MHz, offset 15) -da1: 2063MB (4226725 512 byte sectors: 255H 63S/T 263C) -ew disk da1 -Trying to mount root from ufs:/dev/da0s1a -start_init: trying /sbin/init -Enter root password, or ^D to go multi-user -Password: +passTrying to mount root from ufs:/dev/da0s1a + +Manual root filesystem specification: + <fstype>:<device> Mount <device> using filesystem <fstype> + eg. ufs:da0s1a + ? List valid disk boot devices + <empty line> Abort manual input + +mountroot>=20 --ZPt4rx8FFjLCG7dd--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20110418113657.GA6080>