Thomas Pfaff wrote:
> On Thu, 23 Apr 2009 14:13:18 +0200
> Otto Moerbeek <o...@drijf.net> wrote:
>
>   
>> On Thu, Apr 23, 2009 at 02:02:06PM +0200, Tobias Ulmer wrote:
>>
>>     
>>> On Thu, Apr 23, 2009 at 03:27:42PM +0200, Thomas Pfaff wrote:
>>>       
>>>> I'm getting horrible disk performance compared to Ubuntu on my system.
>>>>
>>>> I noticed this when extracting ports.tar.gz on the same machine with
>>>> different OSs (this is something I did a while back to check for
>>>> a possible hardware problem when OpenBSD crashed upon extracting
>>>> ports.tar.gz).
>>>>
>>>> OpenBSD (ffs):
>>>>
>>>>   $ time tar -zxf ports.tar.gz      0m59.90s real     0m1.00s user     
>>>> 0m6.95s system
>>>>
>>>> Ubuntu (ext3):
>>>>
>>>>   $ time tar -zxf ports.tar.gz
>>>>   real     0m18.440s
>>>>   user     0m1.212s
>>>>   sys      0m2.596s
>>>>
>>>> 1 minute on OpenBSD and 18.5 seconds on Ubuntu, doing the exact same
>>>> thing on the exact same hardware!  Why the huge difference?  Both are
>>>> default installations, except softdep is turned on.
>>>>
>>>> Thanks for any pointers or advice.
>>>>
>>>>         
>>> Try: time tar -zxf ports.tar.gz && sync
>>>       
>> And include the output of mount and show the place where you are untarring.
>>
>>     
>
> $ mount
> /dev/wd0a on / type ffs (local, softdep)
> /dev/wd0k on /home type ffs (local, nodev, nosuid, softdep)
> fs:/pub on /pub type nfs (nodev, noexec, nosuid, v3, udp, timeo=100)
>
> $ pwd
> /home/tpfaff
>
> $ time tar -zxf ports.tar.gz && sync   # (... && sync) ~same result
>     1m2.66s real     0m1.09s user     0m6.85s system
> $ time rm -rf ports
>     0m15.20s real     0m0.15s user     0m1.42s system
>
>   
Sorry for the long message. I tried your test commands on three 
different servers -- two Dell servers and a generic box with Gigabyte 
motherboard. If there are any other tests I can run to help with this 
problem please let me know.

Server1 has OpenBSD 4.4 -stable, GENERIC.MP, Dell 2950, PERC/6i, 15K SAS 
drives, two 146GB drives as RAID1 and another two 450GB drives as RAID1

On either RAID1 array, I get results similar to the following:

server1$ time tar xzf ports.tar.gz
    0m55.28s real     0m1.57s user     0m6.40s system
server1$ time rm -rf ports
    0m36.24s real     0m0.19s user     0m2.57s system

Server2 has OpenBSD 4.5 GENERIC.MP#46 i386 (snapshot from April 12, 2009 
or so), two 450GB drives as RAID1 and six 450GB drives as RAID6

On RAID1 array

server2$ time tar xzf ports.tar.gz
    0m56.95s real     0m1.47s user     0m6.08s system
server2$ time rm -rf ports
    0m32.44s real     0m0.19s user     0m2.50s system

On RAID6 array

server2$ time tar xzf ../ports.tar.gz
    1m9.15s real     0m1.11s user     0m6.44s system
server2$ time rm -rf ports
    0m30.71s real     0m0.14s user     0m2.90s system


On a new server (OpenBSD 4.4-stable, 320GB SATA drives), AHCI,

test$ time tar xzf ports.tar.gz
    5m12.78s real     0m1.39s user     0m5.04s system
test# time rm -rf ports
    2m34.91s real     0m0.15s user     0m2.59s system

Because of the 103095897 bytes/sec transfer rate on the test box I 
thought that the test box would have faster writes but it seems to have 
taken 5 minutes compared to the Dell server which had a transfer rate of 
75528478 bytes/sec.

On Dell PE2950 servers with 15K RPM SAS drives I get

$ dd if=/dev/arandom of=test.dat bs=1024 count=10000
10000+0 records in
10000+0 records out
10240000 bytes transferred in 0.135 secs (75528478 bytes/sec)

Here is the output of mount on server1 and server2

server1# mount
/dev/sd0a on / type ffs (local)
/dev/sd0h on /home type ffs (local, nodev, nosuid)
/dev/sd0g on /tmp type ffs (local, nodev, nosuid)
/dev/sd0d on /usr type ffs (local, nodev)
/dev/sd0e on /var type ffs (local, nodev, nosuid)
/dev/sd0f on /var/www type ffs (local, nodev, nosuid)
/dev/sd1a on /apps type ffs (local, nodev, nosuid)
/dev/sd1b on /source type ffs (local, nodev, nosuid)
/dev/sd1d on /products type ffs (local, nodev, nosuid)
/dev/sd1e on /storage type ffs (local, nodev, nosuid)

server2# mount
/dev/sd0a on / type ffs (local)
/dev/sd0k on /home type ffs (local, nodev, nosuid)
/dev/sd0d on /tmp type ffs (local, nodev, nosuid)
/dev/sd0f on /usr type ffs (local, nodev)
/dev/sd0g on /usr/X11R6 type ffs (local, nodev)
/dev/sd0h on /usr/local type ffs (local, nodev)
/dev/sd0j on /usr/obj type ffs (local, nodev, nosuid)
/dev/sd0i on /usr/src type ffs (local, nodev, nosuid)
/dev/sd0e on /var type ffs (local, nodev, nosuid)
/dev/sd1f on /mnt type ffs (local)

On a generic box (gigabyte motherboard, 320GB 7K RPM SAS drives etc.) I get

test$ dd if=/dev/arandom of=test.dat bs=1024 count=10000
10000+0 records in
10000+0 records out
10240000 bytes transferred in 0.099 secs (103095897 bytes/sec)

Output of mount on test$

test$ mount
/dev/sd0a on / type ffs (local)
/dev/sd0h on /home type ffs (local, nodev, nosuid)
/dev/sd0g on /tmp type ffs (local, nodev, nosuid)
/dev/sd0d on /usr type ffs (local, nodev)
/dev/sd0e on /var type ffs (local, nodev, nosuid)
/dev/sd0f on /var/www type ffs (local, nodev, nosuid)

ports.tar.gz was in /home/vsankar on each of the RAID1 arrays and the 
output from tar went to /home/vsankar/ports. The RAID6 array on SERVER2 
was mounted /mnt and I copied ports.tar.gz to /mnt/vsankar and output 
from tar went to /mnt/vsankar/ports for that test.

dmesg for SERVER1

OpenBSD 4.4-stable (GENERIC.NPS.MP) #1: Wed Dec  3 15:47:29 CST 2008
    r...@mx1.foretell.ca:/usr/src/sys/arch/i386/compile/GENERIC.NPS.MP
cpu0: Intel(R) Xeon(R) CPU E5405 @ 2.00GHz ("GenuineIntel" 686-class) 2 GHz
cpu0: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,TM2,CX16,xTPR
real mem  = 3484319744 (3322MB)
avail mem = 3380072448 (3223MB)
mainbus0 at root
bios0 at mainbus0: AT/286+ BIOS, date 09/12/08, BIOS32 rev. 0 @ 0xffe90, 
SMBIOS rev. 2.5 @ 0xcfb9c000 (67 entries)
bios0: vendor Dell Inc. version "2.5.0" date 09/12/2008
bios0: Dell Inc. PowerEdge 2900
acpi0 at bios0: rev 2
acpi0: tables DSDT FACP APIC SPCR HPET MCFG WD__ SLIC ERST HEST BERT 
EINJ TCPA
acpi0: wakeup devices PCI0(S5)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: apic clock running at 332MHz
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Xeon(R) CPU E5405 @ 2.00GHz ("GenuineIntel" 686-class) 2 GHz
cpu1: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,TM2,CX16,xTPR
cpu2 at mainbus0: apid 1 (application processor)
cpu2: Intel(R) Xeon(R) CPU E5405 @ 2.00GHz ("GenuineIntel" 686-class) 2 GHz
cpu2: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,TM2,CX16,xTPR
cpu3 at mainbus0: apid 3 (application processor)
cpu3: Intel(R) Xeon(R) CPU E5405 @ 2.00GHz ("GenuineIntel" 686-class) 2 GHz
cpu3: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,TM2,CX16,xTPR
ioapic0 at mainbus0: apid 4 pa 0xfec00000, version 20, 24 pins
ioapic0: misconfigured as apic 0, remapped to apid 4
ioapic1 at mainbus0: apid 5 pa 0xfec80000, version 20, 24 pins
ioapic1: misconfigured as apic 0, remapped to apid 5
acpihpet0 at acpi0: 14318179 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 4 (PEX2)
acpiprt2 at acpi0: bus 5 (UPST)
acpiprt3 at acpi0: bus 6 (DWN1)
acpiprt4 at acpi0: bus 8 (DWN2)
acpiprt5 at acpi0: bus 9 (PE2X)
acpiprt6 at acpi0: bus 10 (PEX3)
acpiprt7 at acpi0: bus 11 (PEX4)
acpiprt8 at acpi0: bus 1 (PEX5)
acpiprt9 at acpi0: bus 0 (PE2P)
acpiprt9: no apic found for irq 128
acpiprt9: no apic found for irq 129
acpiprt9: no apic found for irq 142
acpiprt10 at acpi0: bus 12 (PEX6)
acpiprt11 at acpi0: bus 2 (SBEX)
acpiprt12 at acpi0: bus 14 (COMP)
acpicpu0 at acpi0: C3
acpicpu1 at acpi0: C3
acpicpu2 at acpi0: C3
acpicpu3 at acpi0: C3
bios0: ROM list: 0xc0000/0x9000! 0xc9000/0x1000 0xca000/0x1e00 
0xcc000/0x6200 0xec000/0x4000!
ipmi0 at mainbus0: version 2.0 interface KCS iobase 0xca8/8 spacing 4
pci0 at mainbus0 bus 0: configuration mode 1 (no bios)
pchb0 at pci0 dev 0 function 0 "Intel 5000X Host" rev 0x12
ppb0 at pci0 dev 2 function 0 "Intel 5000 PCIE" rev 0x12
pci1 at ppb0 bus 4
ppb1 at pci1 dev 0 function 0 "Intel 6321ESB PCIE" rev 0x01
pci2 at ppb1 bus 5
ppb2 at pci2 dev 0 function 0 "Intel 6321ESB PCIE" rev 0x01
pci3 at ppb2 bus 6
ppb3 at pci3 dev 0 function 0 "ServerWorks PCIE-PCIX" rev 0xc3
pci4 at ppb3 bus 7
bnx0 at pci4 dev 0 function 0 "Broadcom BCM5708" rev 0x12: apic 4 int 16 
(irq 10)
ppb4 at pci2 dev 1 function 0 "Intel 6321ESB PCIE" rev 0x01: apic 4 int 
16 (irq 0)
pci5 at ppb4 bus 8
ppb5 at pci1 dev 0 function 3 "Intel 6321ESB PCIE-PCIX" rev 0x01
pci6 at ppb5 bus 9
ppb6 at pci0 dev 3 function 0 "Intel 5000 PCIE" rev 0x12: apic 4 int 16 
(irq 0)
pci7 at ppb6 bus 10
ppb7 at pci0 dev 4 function 0 "Intel 5000 PCIE" rev 0x12: apic 4 int 16 
(irq 0)
pci8 at ppb7 bus 11
ppb8 at pci0 dev 5 function 0 "Intel 5000 PCIE" rev 0x12
pci9 at ppb8 bus 1
mfi0 at pci9 dev 0 function 0 "Symbios Logic SAS1078" rev 0x04: apic 4 
int 16 (irq 10), Dell PERC 6/i integrated
mfi0: logical drives 2, version 6.1.1-0047, 256MB RAM
scsibus0 at mfi0: 2 targets, initiator 64
sd0 at scsibus0 targ 0 lun 0: <DELL, PERC 6/i, 1.21> SCSI3 0/direct fixed
sd0: 139392MB, 17769 cyl, 255 head, 63 sec, 512 bytes/sec, 285474816 sec 
total
sd1 at scsibus0 targ 1 lun 0: <DELL, PERC 6/i, 1.21> SCSI3 0/direct fixed
sd1: 428672MB, 54648 cyl, 255 head, 63 sec, 512 bytes/sec, 877920256 sec 
total
ppb9 at pci0 dev 6 function 0 "Intel 5000 PCIE x8" rev 0x12: apic 4 int 
16 (irq 0)
pci10 at ppb9 bus 12
ppb10 at pci0 dev 7 function 0 "Intel 5000 PCIE" rev 0x12
pci11 at ppb10 bus 13
pchb1 at pci0 dev 16 function 0 "Intel 5000 Error Reporting" rev 0x12
pchb2 at pci0 dev 16 function 1 "Intel 5000 Error Reporting" rev 0x12
pchb3 at pci0 dev 16 function 2 "Intel 5000 Error Reporting" rev 0x12
pchb4 at pci0 dev 17 function 0 "Intel 5000 Reserved" rev 0x12
pchb5 at pci0 dev 19 function 0 "Intel 5000 Reserved" rev 0x12
pchb6 at pci0 dev 21 function 0 "Intel 5000 FBD" rev 0x12
pchb7 at pci0 dev 22 function 0 "Intel 5000 FBD" rev 0x12
ppb11 at pci0 dev 28 function 0 "Intel 6321ESB PCIE" rev 0x09
pci12 at ppb11 bus 2
ppb12 at pci12 dev 0 function 0 "ServerWorks PCIE-PCIX" rev 0xc3
pci13 at ppb12 bus 3
bnx1 at pci13 dev 0 function 0 "Broadcom BCM5708" rev 0x12: apic 4 int 
16 (irq 10)
uhci0 at pci0 dev 29 function 0 "Intel 6321ESB USB" rev 0x09: apic 4 int 
21 (irq 15)
uhci1 at pci0 dev 29 function 1 "Intel 6321ESB USB" rev 0x09: apic 4 int 
20 (irq 14)
uhci2 at pci0 dev 29 function 2 "Intel 6321ESB USB" rev 0x09: apic 4 int 
21 (irq 15)
uhci3 at pci0 dev 29 function 3 "Intel 6321ESB USB" rev 0x09: apic 4 int 
20 (irq 14)
ehci0 at pci0 dev 29 function 7 "Intel 6321ESB USB" rev 0x09: apic 4 int 
21 (irq 15)
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
ppb13 at pci0 dev 30 function 0 "Intel 82801BA Hub-to-PCI" rev 0xd9
pci14 at ppb13 bus 14
vga1 at pci14 dev 13 function 0 "ATI ES1000" rev 0x02
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
drm at vga1 unsupported
ichpcib0 at pci0 dev 31 function 0 "Intel 6321ESB LPC" rev 0x09: PM disabled
pciide0 at pci0 dev 31 function 2 "Intel 6321ESB SATA" rev 0x09: DMA, 
channel 0 configured to native-PCI, channel 1 configured to native-PCI
pciide0: using apic 4 int 23 (irq 11) for native-PCI interrupt
atapiscsi0 at pciide0 channel 1 drive 0
scsibus1 at atapiscsi0: 2 targets, initiator 7
cd0 at scsibus1 targ 0 lun 0: <TSSTcorp, CDRWDVD TS-H493B, D300> ATAPI 
5/cdrom removable
cd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 5
usb1 at uhci0: USB revision 1.0
uhub1 at usb1 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb2 at uhci1: USB revision 1.0
uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb3 at uhci2: USB revision 1.0
uhub3 at usb3 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb4 at uhci3: USB revision 1.0
uhub4 at usb4 "Intel UHCI root hub" rev 1.00/1.00 addr 1
isa0 at ichpcib0
isadma0 at isa0
com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
com1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo
pckbc0 at isa0 port 0x60/5
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pcppi0 at isa0 port 0x61
midi0 at pcppi0: <PC speaker>
spkr0 at pcppi0
npx0 at isa0 port 0xf0/16: reported by CPUID; using exception 16
mtrr: Pentium Pro MTRR support
uhub5 at uhub0 port 1 "Dell product 0xa001" rev 2.00/0.00 addr 2
uhidev0 at uhub5 port 1 configuration 1 interface 0 "Dell DRAC5" rev 
1.10/0.00 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0: 8 modifier keys, 6 key codes
wskbd1 at ukbd0 mux 1
wskbd1: connecting to wsdisplay0
uhidev1 at uhub5 port 1 configuration 1 interface 1 "Dell DRAC5" rev 
1.10/0.00 addr 3
uhidev1: iclass 3/1
ums0 at uhidev1
ums0: X report 0x0002 not supported
uhub6 at uhub0 port 7 "Cypress Semiconductor USB2 Hub" rev 2.00/0.0b addr 4
uhub7 at uhub2 port 2 "ALCOR Generic USB Hub" rev 1.10/3.12 addr 2
ugen0 at uhub3 port 2 "American Power Conversion Back-UPS LS 700 
FW:19.b6 .D USB FW:b6" rev 1.10/1.06 addr 2
uhidev2 at uhub7 port 1 configuration 1 interface 0 "BTC USB Multimedia 
Keyboard" rev 1.10/1.00 addr 3
uhidev2: iclass 3/1
ukbd1 at uhidev2: 8 modifier keys, 6 key codes
wskbd2 at ukbd1 mux 1
wskbd2: connecting to wsdisplay0
uhidev3 at uhub7 port 1 configuration 1 interface 1 "BTC USB Multimedia 
Keyboard" rev 1.10/1.00 addr 3
uhidev3: iclass 3/0, 3 report ids
uhid0 at uhidev3 reportid 1: input=1, output=0, feature=0
uhid1 at uhidev3 reportid 2: input=3, output=0, feature=0
uhid2 at uhidev3 reportid 3: input=3, output=0, feature=8
uhidev4 at uhub7 port 2 configuration 1 interface 0 "Logitech USB-PS/2 
Optical Mouse" rev 2.00/20.00 addr 4
uhidev4: iclass 3/1
ums1 at uhidev4: 3 buttons, Z dir
wsmouse0 at ums1 mux 0
uhidev5 at uhub7 port 3 configuration 1 interface 0 "No brand 4 Port 
KVMSwicther" rev 1.10/1.00 addr 5
uhidev5: iclass 3/0
ukbd2 at uhidev5: 8 modifier keys, 6 key codes
wskbd3 at ukbd2 mux 1
wskbd3: connecting to wsdisplay0
uhidev6 at uhub7 port 3 configuration 1 interface 1 "No brand 4 Port 
KVMSwicther" rev 1.10/1.00 addr 5
uhidev6: no input interrupt endpoint
softraid0 at root
root on sd0a swap on sd0b dump on sd0b
bnx1: address 00:22:19:84:6f:be
brgphy0 at bnx1 phy 1: BCM5708C 10/100/1000baseT PHY, rev. 6
bnx0: address 00:22:19:84:6f:c0
brgphy1 at bnx0 phy 1: BCM5708C 10/100/1000baseT PHY, rev. 6



dmesg for SERVER2

OpenBSD 4.5-current (GENERIC.MP) #46: Sun Apr 12 12:20:37 MDT 2009
    dera...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC.MP
cpu0: Intel(R) Xeon(R) CPU E5405 @ 2.00GHz ("GenuineIntel" 686-class) 2 GHz
cpu0: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,TM2,CX16,xTPR
real mem  = 3484319744 (3322MB)
avail mem = 3380256768 (3223MB)
mainbus0 at root
bios0 at mainbus0: AT/286+ BIOS, date 09/12/08, BIOS32 rev. 0 @ 0xffe90, 
SMBIOS rev. 2.5 @ 0xcfb9c000 (67 entries)
bios0: vendor Dell Inc. version "2.5.0" date 09/12/2008
bios0: Dell Inc. PowerEdge 2900
acpi0 at bios0: rev 2
acpi0: tables DSDT FACP APIC SPCR HPET MCFG WD__ SLIC ERST HEST BERT 
EINJ TCPA
acpi0: wakeup devices PCI0(S5)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: apic clock running at 332MHz
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Xeon(R) CPU E5405 @ 2.00GHz ("GenuineIntel" 686-class) 2 GHz
cpu1: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,TM2,CX16,xTPR
cpu2 at mainbus0: apid 1 (application processor)
cpu2: Intel(R) Xeon(R) CPU E5405 @ 2.00GHz ("GenuineIntel" 686-class) 2 GHz
cpu2: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,TM2,CX16,xTPR
cpu3 at mainbus0: apid 3 (application processor)
cpu3: Intel(R) Xeon(R) CPU E5405 @ 2.00GHz ("GenuineIntel" 686-class) 2 GHz
cpu3: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,TM2,CX16,xTPR
ioapic0 at mainbus0: apid 4 pa 0xfec00000, version 20, 24 pins
ioapic0: misconfigured as apic 0, remapped to apid 4
ioapic1 at mainbus0: apid 5 pa 0xfec80000, version 20, 24 pins
ioapic1: misconfigured as apic 0, remapped to apid 5
acpihpet0 at acpi0: 14318179 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 4 (PEX2)
acpiprt2 at acpi0: bus 5 (UPST)
acpiprt3 at acpi0: bus 6 (DWN1)
acpiprt4 at acpi0: bus 8 (DWN2)
acpiprt5 at acpi0: bus 9 (PE2X)
acpiprt6 at acpi0: bus 10 (PEX3)
acpiprt7 at acpi0: bus 11 (PEX4)
acpiprt8 at acpi0: bus 1 (PEX5)
acpiprt9 at acpi0: bus 0 (PE2P)
acpiprt9: no apic found for irq 128
acpiprt9: no apic found for irq 129
acpiprt9: no apic found for irq 142
acpiprt10 at acpi0: bus 12 (PEX6)
acpiprt11 at acpi0: bus 2 (SBEX)
acpiprt12 at acpi0: bus 14 (COMP)
acpicpu0 at acpi0: C3
acpicpu1 at acpi0: C3
acpicpu2 at acpi0: C3
acpicpu3 at acpi0: C3
bios0: ROM list: 0xc0000/0x9000! 0xc9000/0x1000 0xca000/0x1e00 
0xcc000/0x6200 0xec000/0x4000!
ipmi0 at mainbus0: version 2.0 interface KCS iobase 0xca8/8 spacing 4
pci0 at mainbus0 bus 0: configuration mode 1 (bios)
extent `pciio' (0x0 - 0xffff), flags=0
     0xbc40 - 0xbc4f
     0xbc58 - 0xbc5b
     0xbc60 - 0xbc67
     0xbc70 - 0xbc73
     0xbc78 - 0xbcff
     0xc000 - 0xefff
extent `pcimem' (0x0 - 0xffffffff), flags=0
     0x0 - 0x9ffff
     0x100000 - 0xcfffffff
     0xd8000000 - 0xefffffff
     0xf2000000 - 0xfbffffff
     0xfc100000 - 0xfc7007ff
     0xfe000000 - 0xffffffff
pchb0 at pci0 dev 0 function 0 "Intel 5000X Host" rev 0x12
ppb0 at pci0 dev 2 function 0 "Intel 5000 PCIE" rev 0x12
pci1 at ppb0 bus 4
ppb1 at pci1 dev 0 function 0 "Intel 6321ESB PCIE" rev 0x01
pci2 at ppb1 bus 5
ppb2 at pci2 dev 0 function 0 "Intel 6321ESB PCIE" rev 0x01
pci3 at ppb2 bus 6
ppb3 at pci3 dev 0 function 0 "ServerWorks PCIE-PCIX" rev 0xc3
pci4 at ppb3 bus 7
bnx0 at pci4 dev 0 function 0 "Broadcom BCM5708" rev 0x12: apic 4 int 16 
(irq 10)
ppb4 at pci2 dev 1 function 0 "Intel 6321ESB PCIE" rev 0x01: apic 4 int 
16 (irq 0)
pci5 at ppb4 bus 8
ppb5 at pci1 dev 0 function 3 "Intel 6321ESB PCIE-PCIX" rev 0x01
pci6 at ppb5 bus 9
ppb6 at pci0 dev 3 function 0 "Intel 5000 PCIE" rev 0x12: apic 4 int 16 
(irq 0)
pci7 at ppb6 bus 10
ppb7 at pci0 dev 4 function 0 "Intel 5000 PCIE" rev 0x12: apic 4 int 16 
(irq 0)
pci8 at ppb7 bus 11
em0 at pci8 dev 0 function 0 "Intel PRO/1000 PT (82572EI)" rev 0x06: 
apic 4 int 16 (irq 10), address 00:15:17:a5:c9:16
ppb8 at pci0 dev 5 function 0 "Intel 5000 PCIE" rev 0x12
pci9 at ppb8 bus 1
mfi0 at pci9 dev 0 function 0 "Symbios Logic SAS1078" rev 0x04: apic 4 
int 16 (irq 10), Dell PERC 6/i integrated
mfi0: logical drives 2, version 6.1.1-0047, 256MB RAM
scsibus0 at mfi0: 2 targets
sd0 at scsibus0 targ 0 lun 0: <DELL, PERC 6/i, 1.21> SCSI3 0/direct fixed
sd0: 428672MB, 512 bytes/sec, 877920256 sec total
sd1 at scsibus0 targ 1 lun 0: <DELL, PERC 6/i, 1.21> SCSI3 0/direct fixed
sd1: 1714688MB, 512 bytes/sec, 3511681024 sec total
ppb9 at pci0 dev 6 function 0 "Intel 5000 PCIE x8" rev 0x12: apic 4 int 
16 (irq 0)
pci10 at ppb9 bus 12
ppb10 at pci0 dev 7 function 0 "Intel 5000 PCIE" rev 0x12
pci11 at ppb10 bus 13
pchb1 at pci0 dev 16 function 0 "Intel 5000 Error Reporting" rev 0x12
pchb2 at pci0 dev 16 function 1 "Intel 5000 Error Reporting" rev 0x12
pchb3 at pci0 dev 16 function 2 "Intel 5000 Error Reporting" rev 0x12
pchb4 at pci0 dev 17 function 0 "Intel 5000 Reserved" rev 0x12
pchb5 at pci0 dev 19 function 0 "Intel 5000 Reserved" rev 0x12
pchb6 at pci0 dev 21 function 0 "Intel 5000 FBD" rev 0x12
pchb7 at pci0 dev 22 function 0 "Intel 5000 FBD" rev 0x12
ppb11 at pci0 dev 28 function 0 "Intel 6321ESB PCIE" rev 0x09
pci12 at ppb11 bus 2
ppb12 at pci12 dev 0 function 0 "ServerWorks PCIE-PCIX" rev 0xc3
pci13 at ppb12 bus 3
bnx1 at pci13 dev 0 function 0 "Broadcom BCM5708" rev 0x12: apic 4 int 
16 (irq 10)
uhci0 at pci0 dev 29 function 0 "Intel 6321ESB USB" rev 0x09: apic 4 int 
21 (irq 15)
uhci1 at pci0 dev 29 function 1 "Intel 6321ESB USB" rev 0x09: apic 4 int 
20 (irq 14)
uhci2 at pci0 dev 29 function 2 "Intel 6321ESB USB" rev 0x09: apic 4 int 
21 (irq 15)
uhci3 at pci0 dev 29 function 3 "Intel 6321ESB USB" rev 0x09: apic 4 int 
20 (irq 14)
ehci0 at pci0 dev 29 function 7 "Intel 6321ESB USB" rev 0x09: apic 4 int 
21 (irq 15)
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
ppb13 at pci0 dev 30 function 0 "Intel 82801BA Hub-to-PCI" rev 0xd9
pci14 at ppb13 bus 14
vga1 at pci14 dev 13 function 0 "ATI ES1000" rev 0x02
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
radeondrm0 at vga1: apic 4 int 19 (irq 6)
drm0 at radeondrm0
ichpcib0 at pci0 dev 31 function 0 "Intel 6321ESB LPC" rev 0x09: PM disabled
pciide0 at pci0 dev 31 function 2 "Intel 6321ESB SATA" rev 0x09: DMA, 
channel 0 configured to native-PCI, channel 1 configured to native-PCI
pciide0: using apic 4 int 23 (irq 11) for native-PCI interrupt
atapiscsi0 at pciide0 channel 1 drive 0
scsibus1 at atapiscsi0: 2 targets
cd0 at scsibus1 targ 0 lun 0: <TSSTcorp, CDRWDVD TS-H493B, D200> ATAPI 
5/cdrom removable
cd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 5
usb1 at uhci0: USB revision 1.0
uhub1 at usb1 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb2 at uhci1: USB revision 1.0
uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb3 at uhci2: USB revision 1.0
uhub3 at usb3 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb4 at uhci3: USB revision 1.0
uhub4 at usb4 "Intel UHCI root hub" rev 1.00/1.00 addr 1
isa0 at ichpcib0
isadma0 at isa0
com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
com1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo
pckbc0 at isa0 port 0x60/5
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pcppi0 at isa0 port 0x61
midi0 at pcppi0: <PC speaker>
spkr0 at pcppi0
npx0 at isa0 port 0xf0/16: reported by CPUID; using exception 16
mtrr: Pentium Pro MTRR support
uhub5 at uhub0 port 1 "Dell product 0xa001" rev 2.00/0.00 addr 2
uhidev0 at uhub5 port 1 configuration 1 interface 0 "Dell DRAC5" rev 
1.10/0.00 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0: 8 modifier keys, 6 key codes
wskbd1 at ukbd0 mux 1
wskbd1: connecting to wsdisplay0
uhidev1 at uhub5 port 1 configuration 1 interface 1 "Dell DRAC5" rev 
1.10/0.00 addr 3
uhidev1: iclass 3/1
ums0 at uhidev1
ums0: X report 0x0002 not supported
uhub6 at uhub0 port 7 "Cypress Semiconductor USB2 Hub" rev 2.00/0.0b addr 4
uhub7 at uhub3 port 1 "ALCOR Generic USB Hub" rev 1.10/3.12 addr 2
uhidev2 at uhub7 port 1 configuration 1 interface 0 "BTC USB Multimedia 
Keyboard" rev 1.10/1.00 addr 3
uhidev2: iclass 3/1
ukbd1 at uhidev2: 8 modifier keys, 6 key codes
wskbd2 at ukbd1 mux 1
wskbd2: connecting to wsdisplay0
uhidev3 at uhub7 port 1 configuration 1 interface 1 "BTC USB Multimedia 
Keyboard" rev 1.10/1.00 addr 3
uhidev3: iclass 3/0, 3 report ids
uhid0 at uhidev3 reportid 1: input=1, output=0, feature=0
uhid1 at uhidev3 reportid 2: input=3, output=0, feature=0
uhid2 at uhidev3 reportid 3: input=3, output=0, feature=8
uhidev4 at uhub7 port 2 configuration 1 interface 0 "Logitech USB-PS/2 
Optical Mouse" rev 2.00/20.00 addr 4
uhidev4: iclass 3/1
ums1 at uhidev4: 3 buttons, Z dir
wsmouse0 at ums1 mux 0
uhidev5 at uhub7 port 3 configuration 1 interface 0 "No brand 4 Port 
KVMSwicther" rev 1.10/1.00 addr 5
uhidev5: iclass 3/0
ukbd2 at uhidev5: 8 modifier keys, 6 key codes
wskbd3 at ukbd2 mux 1
wskbd3: connecting to wsdisplay0
uhidev6 at uhub7 port 3 configuration 1 interface 1 "No brand 4 Port 
KVMSwicther" rev 1.10/1.00 addr 5
uhidev6: no input interrupt endpoint
softraid0 at root
root on sd0a swap on sd0b dump on sd0b
bnx0: address 00:22:19:a8:c4:51
brgphy0 at bnx0 phy 1: BCM5708C 10/100/1000baseT PHY, rev. 6
bnx1: address 00:22:19:a8:c4:4f
brgphy1 at bnx1 phy 1: BCM5708C 10/100/1000baseT PHY, rev. 6


dmesg for server "test"

OpenBSD 4.4-stable (GENERIC.NPS.MP) #1: Wed Dec  3 15:47:29 CST 2008
    r...@mx1.foretell.ca:/usr/src/sys/arch/i386/compile/GENERIC.NPS.MP
cpu0: Intel(R) Core(TM)2 Duo CPU E8400 @ 3.00GHz ("GenuineIntel" 
686-class) 3 GH
z
cpu0: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CF
LUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,SMX,EST,TM2,C
X16,xTPR
real mem  = 3487850496 (3326MB)
avail mem = 3383545856 (3226MB)
mainbus0 at root
bios0 at mainbus0: AT/286+ BIOS, date 02/24/09, BIOS32 rev. 0 @ 0xfb9b0, 
SMBIOS
rev. 2.4 @ 0xf0100 (38 entries)
bios0: vendor Award Software International, Inc. version "F8" date 
02/24/2009
bios0: Gigabyte Technology Co., Ltd. EP45-UD3P
acpi0 at bios0: rev 0
acpi0: tables DSDT FACP EUDS HPET MCFG APIC SSDT
acpi0: wakeup devices PEX0(S5) PEX1(S5) PEX2(S5) PEX3(S5) PEX4(S5) 
PEX5(S5) HUB0
(S5) UAR1(S3) IGBE(S4) USB0(S3) USB1(S3) USB2(S3) USB3(S3) USB4(S3) 
USB5(S3) USB
E(S3) USE2(S3) AZAL(S5) PCI0(S5)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpihpet0 at acpi0: 14318179 Hz
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: unknown i686 EBL_CR_POWERON value 3 (0x420c0000)
cpu0: apic clock running at 333MHz
cpu1 at mainbus0: apid 1 (application processor)
cpu1: Intel(R) Core(TM)2 Duo CPU E8400 @ 3.00GHz ("GenuineIntel" 
686-class) 3 GH
z
cpu1: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CF
LUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,SMX,EST,TM2,C
X16,xTPR
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
ioapic0: misconfigured as apic 0, remapped to apid 2
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 2 (PEX0)
acpiprt2 at acpi0: bus -1 (PEX1)
acpiprt3 at acpi0: bus -1 (PEX2)
acpiprt4 at acpi0: bus 3 (PEX3)
acpiprt5 at acpi0: bus 4 (PEX4)
acpiprt6 at acpi0: bus 5 (PEX5)
acpiprt7 at acpi0: bus 6 (HUB0)
acpicpu0 at acpi0: C3, C2
acpicpu1 at acpi0: C3, C2
acpibtn0 at acpi0: PWRB
bios0: ROM list: 0xc0000/0xf200 0xd0000/0x1000 0xd1000/0x2000!
cpu0: EST: unknown system bus clock
pci0 at mainbus0 bus 0: configuration mode 1 (no bios)
pchb0 at pci0 dev 0 function 0 vendor "Intel", unknown product 0x2e20 
rev 0x03
ppb0 at pci0 dev 1 function 0 vendor "Intel", unknown product 0x2e21 rev 
0x03: a
pic 2 int 16 (irq 11)
pci1 at ppb0 bus 1
vga1 at pci1 dev 0 function 0 vendor "ATI", unknown product 0x954f rev 0x00
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
drm at vga1 unsupported
azalia0 at pci1 dev 0 function 1 vendor "ATI", unknown product 0xaa38 
rev 0x00:
apic 2 int 17 (irq 14)
azalia0: /usr/src/sys/dev/pci/azalia.c/1348 invalid PCM format: 0x00000000
azalia0: No codecs found
uhci0 at pci0 dev 26 function 0 vendor "Intel", unknown product 0x3a37 
rev 0x00:
 apic 2 int 16 (irq 11)
uhci1 at pci0 dev 26 function 1 vendor "Intel", unknown product 0x3a38 
rev 0x00:
 apic 2 int 21 (irq 9)
uhci2 at pci0 dev 26 function 2 vendor "Intel", unknown product 0x3a39 
rev 0x00:
 apic 2 int 18 (irq 3)
ehci0 at pci0 dev 26 function 7 vendor "Intel", unknown product 0x3a3c 
rev 0x00:
 apic 2 int 18 (irq 3)
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
ppb1 at pci0 dev 28 function 0 vendor "Intel", unknown product 0x3a40 
rev 0x00:
apic 2 int 16 (irq 11)
pci2 at ppb1 bus 2
ppb2 at pci0 dev 28 function 3 vendor "Intel", unknown product 0x3a46 
rev 0x00:
apic 2 int 19 (irq 15)
pci3 at ppb2 bus 3
jmb0 at pci3 dev 0 function 0 "JMicron JMB363 IDE/SATA" rev 0x02
ahci0 at jmb0: apic 2 int 19 (irq 15), AHCI 1.0
scsibus0 at ahci0: 32 targets, initiator 32
pciide0 at jmb0: DMA, channel 0 wired to native-PCI, channel 1 wired to 
native-P
CI
pciide0: using apic 2 int 19 (irq 15) for native-PCI interrupt
pciide0: channel 0 disabled (no drives)
pciide0: channel 1 disabled (no drives)
ppb3 at pci0 dev 28 function 4 vendor "Intel", unknown product 0x3a48 
rev 0x00:
apic 2 int 16 (irq 11)
pci4 at ppb3 bus 4
re0 at pci4 dev 0 function 0 "Realtek 8168" rev 0x02: RTL8168C/8111C 
(0x3c00), a
pic 2 int 16 (irq 11), address 00:1f:d0:d6:dd:b5
rgephy0 at re0 phy 7: RTL8169S/8110S PHY, rev. 2
ppb4 at pci0 dev 28 function 5 vendor "Intel", unknown product 0x3a4a 
rev 0x00:
apic 2 int 17 (irq 14)
pci5 at ppb4 bus 5
re1 at pci5 dev 0 function 0 "Realtek 8168" rev 0x02: RTL8168C/8111C 
(0x3c00), a
pic 2 int 17 (irq 14), address 00:1f:d0:81:38:64
rgephy1 at re1 phy 7: RTL8169S/8110S PHY, rev. 2
uhci3 at pci0 dev 29 function 0 vendor "Intel", unknown product 0x3a34 
rev 0x00:
 apic 2 int 23 (irq 5)
uhci4 at pci0 dev 29 function 1 vendor "Intel", unknown product 0x3a35 
rev 0x00:
 apic 2 int 19 (irq 15)
uhci5 at pci0 dev 29 function 2 vendor "Intel", unknown product 0x3a36 
rev 0x00:
 apic 2 int 18 (irq 3)
ehci1 at pci0 dev 29 function 7 vendor "Intel", unknown product 0x3a3a 
rev 0x00:
 apic 2 int 23 (irq 5)
usb1 at ehci1: USB revision 2.0
uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1
ppb5 at pci0 dev 30 function 0 "Intel 82801BA Hub-to-PCI" rev 0x90
pci6 at ppb5 bus 6
em0 at pci6 dev 0 function 0 "Intel PRO/1000GT (82541GI)" rev 0x05: apic 
2 int 2
0 (irq 10), address 00:1b:21:31:51:92
pcib0 at pci0 dev 31 function 0 vendor "Intel", unknown product 0x3a16 
rev 0x00
ahci1 at pci0 dev 31 function 2 vendor "Intel", unknown product 0x3a22 
rev 0x00:
 apic 2 int 19 (irq 15), AHCI 1.2
scsibus1 at ahci1: 32 targets, initiator 32
sd0 at scsibus1 targ 0 lun 0: <ATA, ST3320613AS, CC2F> SCSI3 0/direct fixed
sd0: 305245MB, 38913 cyl, 255 head, 63 sec, 512 bytes/sec, 625142448 sec 
total
sd1 at scsibus1 targ 1 lun 0: <ATA, ST3320613AS, CC2F> SCSI3 0/direct fixed
sd1: 305245MB, 38913 cyl, 255 head, 63 sec, 512 bytes/sec, 625142448 sec 
total
vendor "Intel", unknown product 0x3a30 (class serial bus subclass SMBus, 
rev 0x0
0) at pci0 dev 31 function 3 not configured
usb2 at uhci0: USB revision 1.0
uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb3 at uhci1: USB revision 1.0
uhub3 at usb3 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb4 at uhci2: USB revision 1.0
uhub4 at usb4 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb5 at uhci3: USB revision 1.0
uhub5 at usb5 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb6 at uhci4: USB revision 1.0
uhub6 at usb6 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb7 at uhci5: USB revision 1.0
uhub7 at usb7 "Intel UHCI root hub" rev 1.00/1.00 addr 1
isa0 at pcib0
isadma0 at isa0
com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
pckbc0 at isa0 port 0x60/5
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pcppi0 at isa0 port 0x61
midi0 at pcppi0: <PC speaker>
spkr0 at pcppi0
lpt0 at isa0 port 0x378/4 irq 7
it0 at isa0 port 0x2e/2: IT8718F rev 0x05, EC port 0x290
npx0 at isa0 port 0xf0/16: reported by CPUID; using exception 16
fdc0 at isa0 port 0x3f0/6 irq 6 drq 2
mtrr: Pentium Pro MTRR support
uhub8 at uhub2 port 1 "ALCOR Generic USB Hub" rev 1.10/3.12 addr 2
uhidev0 at uhub8 port 1 configuration 1 interface 0 "BTC USB Multimedia 
Keyboard
" rev 1.10/1.00 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0: 8 modifier keys, 6 key codes
wskbd1 at ukbd0 mux 1
wskbd1: connecting to wsdisplay0
uhidev1 at uhub8 port 1 configuration 1 interface 1 "BTC USB Multimedia 
Keyboard
" rev 1.10/1.00 addr 3
uhidev1: iclass 3/0, 3 report ids
uhid0 at uhidev1 reportid 1: input=1, output=0, feature=0
uhid1 at uhidev1 reportid 2: input=3, output=0, feature=0
uhid2 at uhidev1 reportid 3: input=3, output=0, feature=8
uhidev2 at uhub8 port 2 configuration 1 interface 0 "Logitech USB-PS/2 
Optical M
ouse" rev 2.00/20.00 addr 4
uhidev2: iclass 3/1
ums0 at uhidev2: 3 buttons, Z dir
wsmouse0 at ums0 mux 0
uhidev3 at uhub8 port 3 configuration 1 interface 0 "No brand 4 Port 
KVMSwicther
" rev 1.10/1.00 addr 5
uhidev3: iclass 3/0
ukbd1 at uhidev3: 8 modifier keys, 6 key codes
wskbd2 at ukbd1 mux 1
wskbd2: connecting to wsdisplay0
uhidev4 at uhub8 port 3 configuration 1 interface 1 "No brand 4 Port 
KVMSwicther " rev 1.10/1.00 addr 5
uhidev4: no input interrupt endpoint
softraid0 at root
root on sd0a swap on sd0b dump on sd0b
cpu1: unknown i686 EBL_CR_POWERON value 3 (0x420c0000)
wskbd1: disconnecting from wsdisplay0


-- 
Vijay Sankar, M.Eng., P.Eng.
ForeTell Technologies Limited
E-Mail: vsan...@foretell.ca

Reply via email to