Re: bhyve hangs on going multi user

2013-02-08 Thread Sevan / Venture37

On 08/02/2013 13:39, Peter Grehan wrote:

  Ah - that actually won't work. There has to be space for PCI MMIO
decode below 4GB, so it's usually best to use up to say 2 or 3GB of RAM
below the 4GB mark, leaving 1GB for PCI decode, and then put the
remainder of your memory above 4G e.g. for 4GB total RAM, and using 2GB
below 4G

  -m 2048 -M 2048

  and an example 8G system:

  -m 2048 -M 6144

  We should really error out on values too large for the '-m' parameter.



Thanks for that Peter :)

Starting the VM with -m 2048 -M 14336 worked fine.

FreeBSD 10.0-CURRENT #0 r246446: Thu Feb  7 12:21:37 UTC 2013
:/usr/obj/usr/src/sys/GENERIC amd64
FreeBSD clang version 3.2 (tags/RELEASE_32/final 170710) 20121221
WARNING: WITNESS option enabled, expect reduced performance.
CPU: Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz (3399.75-MHz K8-class CPU)
  Origin = "GenuineIntel"  Id = 0x306a9  Family = 0x6  Model = 0x3a 
Stepping = 9


Features=0x8fa3ab7f

Features2=0xe3bae257
  AMD Features=0x28100800
  AMD Features2=0x1
  TSC: P-state invariant
real memory  = 19327352832 (18432 MB)
avail memory = 16482443264 (15718 MB)

___
freebsd-virtualization@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization
To unsubscribe, send any mail to 
"freebsd-virtualization-unsubscr...@freebsd.org"


Re: bhyve hangs on going multi user

2013-02-08 Thread Peter Grehan

Hi Sevan,


I can now make a guest panic if I assign 4GB or more RAM.


What are the memory params you are using in this case ?


I've not made any changes on the host such as reserving memory.
I'm starting the VM like so:

 ...

-m 4096


 Ah - that actually won't work. There has to be space for PCI MMIO 
decode below 4GB, so it's usually best to use up to say 2 or 3GB of RAM 
below the 4GB mark, leaving 1GB for PCI decode, and then put the 
remainder of your memory above 4G e.g. for 4GB total RAM, and using 2GB 
below 4G


 -m 2048 -M 2048

 and an example 8G system:

 -m 2048 -M 6144

 We should really error out on values too large for the '-m' parameter.

later,

Peter.
___
freebsd-virtualization@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization
To unsubscribe, send any mail to 
"freebsd-virtualization-unsubscr...@freebsd.org"


Re: bhyve hangs on going multi user

2013-02-08 Thread Sevan / Venture37

On 08/02/2013 06:39, Peter Grehan wrote:

Hi Sevan,


Hi Peter,



CPUTYPE?=corei7-avx


  Hmmm, could be from this. bhyve doesn't expose AVX to the guest (yet),
so if user processes unconditionally use AVX instructions that may
result in a coredump.


I see.


I can now make a guest panic if I assign 4GB or more RAM.


  What are the memory params you are using in this case ?


I've not made any changes on the host such as reserving memory.
I'm starting the VM like so:
sudo bhyveload -d myimge -m 4096 sevan && sudo bhyve -c 1 -a -A -m 4096 
-I -H -g 0 -s 0:0,hostbridge -s 2:0,virtio-blk,myimage -s 
1:0,virtio-net,tap0 -S 31,uart,stdio sevan




Sevan
___
freebsd-virtualization@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization
To unsubscribe, send any mail to 
"freebsd-virtualization-unsubscr...@freebsd.org"


Re: bhyve hangs on going multi user

2013-02-07 Thread Peter Grehan

Hi Sevan,


CPUTYPE?=corei7-avx


 Hmmm, could be from this. bhyve doesn't expose AVX to the guest (yet), 
so if user processes unconditionally use AVX instructions that may 
result in a coredump.



I can now make a guest panic if I assign 4GB or more RAM.


 What are the memory params you are using in this case ?

later,

Peter.
___
freebsd-virtualization@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization
To unsubscribe, send any mail to 
"freebsd-virtualization-unsubscr...@freebsd.org"


Re: bhyve hangs on going multi user

2013-02-07 Thread Sevan / Venture37

On 07/02/2013 22:16, Neel Natu wrote:

Hi Sevan,

On Thu, Feb 7, 2013 at 7:12 AM, Sevan / Venture37
 wrote:

On 7 Feb 2013, at 12:40 PM, Sevan / Venture37 
wrote:


Will try building a new world with without a make.conf & use that
as the basis for a new VM & see if that makes a difference.


It did, will follow up later with instruction once I have a working
system, I'm now trying to get networking going.


That's great. I am interested in knowing how make options resulted
in illegal instruction traps in guest userspace.


Previous make.conf

STRIP=
CFLAGS+=-fno-omit-frame-pointer

CFLAGS= -O2 -fno-strict-aliasing -pipe
COPTFLAGS= -O -pipe
CXXFLAGS+= -fconserve-space
CPUTYPE?=corei7-avx



If I run tcpdump on guest, I see traffic showing up destined for
the host. I do not see the traffic make it back out however.


Could you share output of "ifconfig" and "netstat -rn" from the
guest as well as the host?


Problem solved, need to wait for a bit after bringing tap/bridge up 
otherwise traffic wont pass. (see working dmesg at the bottom of the page)


I can now make a guest panic if I assign 4GB or more RAM.


GDB: no debug ports present
KDB: debugger backends: ddb
KDB: current backend: ddb
Copyright (c) 1992-2013 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 10.0-CURRENT #0 r246446: Thu Feb  7 12:21:37 UTC 2013
:/usr/obj/usr/src/sys/GENERIC amd64
FreeBSD clang version 3.2 (tags/RELEASE_32/final 170710) 20121221
WARNING: WITNESS option enabled, expect reduced performance.
CPU: Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz (3399.72-MHz K8-class CPU)
  Origin = "GenuineIntel"  Id = 0x306a9  Family = 0x6  Model = 0x3a 
Stepping = 9


Features=0x8fa3ab7f

Features2=0xe3bae257
  AMD Features=0x28100800
  AMD Features2=0x1
  TSC: P-state invariant
real memory  = 4294967296 (4096 MB)
avail memory = 4114264064 (3923 MB)
Event timer "LAPIC" quality 400
ACPI APIC Table: 
random device not loaded; using insecure entropy
ioapic0: Changing APIC ID to 1
ioapic0  irqs 0-0 on motherboard
module_register_init: MOD_LOAD (vesa, 0x80c28300, 0) error 19
kbd0 at kbdmux0
ctl: CAM Target Layer loaded
acpi0:  on motherboard
acpi0: could not allocate interrupt
ACPI Exception: AE_ALREADY_EXISTS, Unable to install System Control 
Interrupt handler (20130117/evevent-152)

acpi0: Could not enable ACPI: AE_ALREADY_EXISTS
device_attach: acpi0 attach returned 6


Fatal trap 12: page fault while in kernel mode
cpuid = 0; apic id = 00
fault virtual address   = 0x60
fault code  = supervisor write data, page not present
instruction pointer = 0x20:0x80c9c813
stack pointer   = 0x28:0x8182ab70
frame pointer   = 0x28:0x8182aba0
code segment= base 0x0, limit 0xf, type 0x1b
= DPL 0, pres 1, long 1, def32 0, gran 1
processor eflags= interrupt enabled, resume, IOPL = 0
current process = 0 (swapper)
[ thread pid 0 tid 10 ]
Stopped at  acpi_install_wakeup_handler+0x113:  movq 
%r14,0x60(%r15)


Tracing pid 0 tid 10 td 0x814f8ff0
acpi_install_wakeup_handler() at acpi_install_wakeup_handler+0x113/frame 
0x8182aba0

nexus_acpi_attach() at nexus_acpi_attach+0x8c/frame 0x8182abd0
device_attach() at device_attach+0x396/frame 0x8182ac20
bus_generic_new_pass() at bus_generic_new_pass+0x116/frame 
0x8182ac50

bus_set_pass() at bus_set_pass+0x8f/frame 0x8182ac80
configure() at configure+0xa/frame 0x8182ac90
mi_startup() at mi_startup+0x118/frame 0x8182acb0
btext() at btext+0x2c

  pid  ppid  pgrp   uid   state   wmesg wchancmd
2 0 0 0  RL  [ctl_thrd]
   13 0 0 0  RL  (threaded)  [geom]
19   RunQ[g_down]
18   RunQ[g_up]
17   RunQ[g_event]
   12 0 0 0  WL  (threaded)  [intr]
100019   I   [swi5: fast 
taskq]
100017   I   [swi6: 
Giant taskq]
100016   I   [swi6: task 
queue]

100012   I   [swi2: cambio]
16   I   [swi3: vm]
15   I   [swi4: clock]
14   I   [swi1: 
netisr 0]

   11 0 0 0  RL  [idle: cpu0]
1 0 0 0  ?L  [kernel]
   10 0 0 0  RL 

Re: bhyve hangs on going multi user

2013-02-07 Thread Neel Natu
Hi Sevan,

On Thu, Feb 7, 2013 at 7:12 AM, Sevan / Venture37  wrote:
> On 7 Feb 2013, at 12:40 PM, Sevan / Venture37  wrote:
>
>> Will try building a new world with without a make.conf & use that as the 
>> basis for a new VM & see if that makes a difference.
>
> It did, will follow up later with instruction once I have a working system, 
> I'm now trying to get networking going.

That's great. I am interested in knowing how make options resulted in
illegal instruction traps in guest userspace.

> If I run tcpdump on guest, I see traffic showing up destined for the host.
> I do not see the traffic make it back out however.
>

Could you share output of "ifconfig" and "netstat -rn" from the guest
as well as the host?

best
Neel

> Sevan
> ___
> freebsd-virtualization@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization
> To unsubscribe, send any mail to 
> "freebsd-virtualization-unsubscr...@freebsd.org"
___
freebsd-virtualization@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization
To unsubscribe, send any mail to 
"freebsd-virtualization-unsubscr...@freebsd.org"


Re: bhyve hangs on going multi user

2013-02-07 Thread Sevan / Venture37
On 7 Feb 2013, at 12:40 PM, Sevan / Venture37  wrote:

> Will try building a new world with without a make.conf & use that as the 
> basis for a new VM & see if that makes a difference.

It did, will follow up later with instruction once I have a working system, I'm 
now trying to get networking going.
If I run tcpdump on guest, I see traffic showing up destined for the host.
I do not see the traffic make it back out however.

Sevan
___
freebsd-virtualization@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization
To unsubscribe, send any mail to 
"freebsd-virtualization-unsubscr...@freebsd.org"


Re: bhyve hangs on going multi user

2013-02-07 Thread Sevan / Venture37

On 07/02/2013 11:58, Sevan / Venture37 wrote:

- Boot to single user and then execute a variety of commands to figure
>out whether the problem happens randomly or does is follow a
>particular executable (for e.g. execute "ps", "stty", "fsck", "find",
>"ls" etc).
>

Ok, will give it a try


Unable to enter single user mode

Trying to mount root from ufs:/dev/vtbd0s1a [rw]...
pid 16 (init), uid 0: exited on signal 4


Will try building a new world with without a make.conf & use that as the 
basis for a new VM & see if that makes a difference.



Sevan
___
freebsd-virtualization@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization
To unsubscribe, send any mail to 
"freebsd-virtualization-unsubscr...@freebsd.org"


Re: bhyve hangs on going multi user

2013-02-06 Thread Sevan / Venture37




On 7 Feb 2013, at 11:24 AM, Neel Natu  wrote:

> Hi Sevan,

Hi Neel,

> At the risk of stating the obvious:
> 
>> pid 17 (stty), uid 0: exited on signal 4
>> Illegal instruction
>> pid 19 (ps), uid 0: exited on signal 4
>> Illegal instruction
> 
> The userland processes launched by /etc/rc are getting a SIGILL but it
> is not clear why.
> 
> Could you do some experiments on your end to narrow this down a bit more:
> 
> - Boot to single user and then execute a variety of commands to figure
> out whether the problem happens randomly or does is follow a
> particular executable (for e.g. execute "ps", "stty", "fsck", "find",
> "ls" etc).
> 
Ok, will give it a try

> - Did this problem start happening only recently?
> 
System was just built yesterday

> - If you have a different host system does it happen there too? If you
> have a different virtual machine does it happen there as well?

I dont have another system capable of running bhyve but I'll give a new machine 
a try.
___
freebsd-virtualization@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization
To unsubscribe, send any mail to 
"freebsd-virtualization-unsubscr...@freebsd.org"


Re: bhyve hangs on going multi user

2013-02-06 Thread Neel Natu
Hi Sevan,

At the risk of stating the obvious:

> pid 17 (stty), uid 0: exited on signal 4
> Illegal instruction
> pid 19 (ps), uid 0: exited on signal 4
> Illegal instruction

The userland processes launched by /etc/rc are getting a SIGILL but it
is not clear why.

Could you do some experiments on your end to narrow this down a bit more:

- Boot to single user and then execute a variety of commands to figure
out whether the problem happens randomly or does is follow a
particular executable (for e.g. execute "ps", "stty", "fsck", "find",
"ls" etc).

- Did this problem start happening only recently?

- If you have a different host system does it happen there too? If you
have a different virtual machine does it happen there as well?

best
Neel

On Wed, Feb 6, 2013 at 7:55 PM, Sevan / Venture37  wrote:
> Hi,
> Attempting to start a VM with the following command results in a hang when
> the system tries to go multiuser
> sudo bhyveload -m 768 -M 8192 -d ./diskdev guest0 && sudo bhyve -c 1 -a -A
> -m 768 -M 8192 -I -H -g 0 -s 0:0,hostbridge -s 1:0,virtio-blk,diskdev -S
> 31,uart,stdio gues0
>
>
> /boot/loader.conf
> autoboot_delay=5
> kernel="kernel"
>
> virtio_load="YES"
> if_vtnet_load="YES"
> virtio_pci_load="YES"
> virtio_blk_load="YES"
>
> # Avoid clock drift
> kern.timecounter.hardware="TSC"
> kern.timecounter.invariant_tsc="1"
> # Tell the guest it is virtualized
> #smbios.bios.vendor="Bochs"
> smbios.bios.vendor="BHYVE"
>
> console="userboot"
> bootverbose="1"
>
>
> /etc/fstab
> /dev/vtbd0s1a / ufs rw 1 1
>
>
>
>
> Booting...
> GDB: no debug ports present
> KDB: debugger backends: ddb
> KDB: current backend: ddb
> SMAP type=01 base= len=000a
> SMAP type=01 base=0010 len=2ff0
> SMAP type=01 base=0001 len=0002
> Table 'APIC' at 0xf0500
> APIC: Found table at 0xf0500APIC: Using the MADT enumerator.
> MADT: Found CPU APIC ID 0 ACPI ID 0: enabled
> SMP: Added CPU 0 (AP)
> Copyright (c) 1992-2013 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 10.0-CURRENT #0 r246446: Thu Feb  7 02:36:17 UTC 2013
> y...@dev.foo.local:/usr/obj/usr/src/sys/GENERIC amd64
> FreeBSD clang version 3.2 (tags/RELEASE_32/final 170710) 20121221
> WARNING: WITNESS option enabled, expect reduced performance.
> Preloaded elf kernel "/boot/kernel/kernel" at 0x81822000.
> Hypervisor: Origin = "BHyVBHyVBHyV"
> Calibrating TSC clock ... TSC clock: 3399738220 Hz
> CPU: Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz (3399.74-MHz K8-class CPU)
>   Origin = "GenuineIntel"  Id = 0x306a9  Family = 0x6  Model = 0x3a Stepping
> = 9
>
> Features=0x8fa3ab7f
>
> Features2=0xe3bae257
>   AMD Features=0x28100800
>   AMD Features2=0x1
>   TSC: P-state invariant
> real memory  = 12884901888 (12288 MB)
> Physical memory chunk(s):
> 0x1000 - 0x0009bfff, 634880 bytes (155 pages)
> 0x0010 - 0x001f, 1048576 bytes (256 pages)
> 0x0184f000 - 0x2fff, 779816960 bytes (190385 pages)
> 0x0001 - 0x0002e96e7fff, 8211300352 bytes (2004712 pages)
> avail memory = 8932638720 (8518 MB)
> Event timer "LAPIC" quality 400
> ACPI APIC Table: 
> x86bios:  IVT 0x00-0x0004ff at 0xfe00
> x86bios: SSEG 0x001000-0x001fff at 0xff8000223000
> x86bios:  ROM 0x0a-0x0fefff at 0xfe0a
> APIC: CPU 0 has ACPI ID 0
> random device not loaded; using insecure entropy
> ULE: setup cpu 0
> ACPI: RSDP 0xf0400 00024 (v02 BHYVE )
> ACPI: XSDT 0xf0480 00034 (v01 BHYVE  BVXSDT   0001 INTL 20130117)
> ACPI: APIC 0xf0500 0004A (v01 BHYVE  BVMADT   0001 INTL 20130117)
> ACPI: FACP 0xf0600 0010C (v05 BHYVE  BVFACP   0001 INTL 20130117)
> ACPI: DSDT 0xf0800 000F2 (v02 BHYVE  BVDSDT   0001 INTL 20130117)
> ACPI: FACS 0xf0780 00040
> MADT: Found IO APIC ID 1, Interrupt 0 at 0xfec0
> ioapic0: Changing APIC ID to 1
> ioapic0: Routing external 8259A's -> intpin 0
> MADT: Interrupt override: source 9, irq 9
> ioapic0: intpin 9 trigger: level
> ioapic0: intpin 9 polarity: low
> ioapic0  irqs 0-16 on motherboard
> cpu0 BSP:
>  ID: 0x   VER: 0x0011 LDR: 0x DFR: 0x
>   lint0: 0x00010700 lint1: 0x0400 TPR: 0x SVR: 0x01ff
>   timer: 0x000100ef therm: 0x0001 err: 0x00f0
> snd_unit_init() u=0x00ff8000 [512] d=0x7c00 [32] c=0x03ff [1024]
> feeder_register: snd_unit=-1 snd_maxautovchans=16 latency=5
> feeder_rate_min=1 feeder_rate_max=2016000 feeder_rate_round=25
> wlan: <802.11 Link Layer>
> nfslock: pseudo-device
> null: 
> random: 
> module_register_init: MOD_LOAD (vesa, 0x80c24d10, 0) error 19
> io: 
> kbd0 at kbdmux0
> ctl: CAM Target Layer loaded
> acpi0:  on motherboard
> ACPI: All ACPI Tables successfully acquired
> ioapic0: routing intpi

bhyve hangs on going multi user

2013-02-06 Thread Sevan / Venture37

Hi,
Attempting to start a VM with the following command results in a hang 
when the system tries to go multiuser
sudo bhyveload -m 768 -M 8192 -d ./diskdev guest0 && sudo bhyve -c 1 -a 
-A -m 768 -M 8192 -I -H -g 0 -s 0:0,hostbridge -s 1:0,virtio-blk,diskdev 
-S 31,uart,stdio gues0



/boot/loader.conf
autoboot_delay=5
kernel="kernel"

virtio_load="YES"
if_vtnet_load="YES"
virtio_pci_load="YES"
virtio_blk_load="YES"

# Avoid clock drift
kern.timecounter.hardware="TSC"
kern.timecounter.invariant_tsc="1"
# Tell the guest it is virtualized
#smbios.bios.vendor="Bochs"
smbios.bios.vendor="BHYVE"

console="userboot"
bootverbose="1"


/etc/fstab
/dev/vtbd0s1a / ufs rw 1 1




Booting...
GDB: no debug ports present
KDB: debugger backends: ddb
KDB: current backend: ddb
SMAP type=01 base= len=000a
SMAP type=01 base=0010 len=2ff0
SMAP type=01 base=0001 len=0002
Table 'APIC' at 0xf0500
APIC: Found table at 0xf0500APIC: Using the MADT enumerator.
MADT: Found CPU APIC ID 0 ACPI ID 0: enabled
SMP: Added CPU 0 (AP)
Copyright (c) 1992-2013 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 10.0-CURRENT #0 r246446: Thu Feb  7 02:36:17 UTC 2013
y...@dev.foo.local:/usr/obj/usr/src/sys/GENERIC amd64
FreeBSD clang version 3.2 (tags/RELEASE_32/final 170710) 20121221
WARNING: WITNESS option enabled, expect reduced performance.
Preloaded elf kernel "/boot/kernel/kernel" at 0x81822000.
Hypervisor: Origin = "BHyVBHyVBHyV"
Calibrating TSC clock ... TSC clock: 3399738220 Hz
CPU: Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz (3399.74-MHz K8-class CPU)
  Origin = "GenuineIntel"  Id = 0x306a9  Family = 0x6  Model = 0x3a 
Stepping = 9


Features=0x8fa3ab7f

Features2=0xe3bae257
  AMD Features=0x28100800
  AMD Features2=0x1
  TSC: P-state invariant
real memory  = 12884901888 (12288 MB)
Physical memory chunk(s):
0x1000 - 0x0009bfff, 634880 bytes (155 pages)
0x0010 - 0x001f, 1048576 bytes (256 pages)
0x0184f000 - 0x2fff, 779816960 bytes (190385 pages)
0x0001 - 0x0002e96e7fff, 8211300352 bytes (2004712 pages)
avail memory = 8932638720 (8518 MB)
Event timer "LAPIC" quality 400
ACPI APIC Table: 
x86bios:  IVT 0x00-0x0004ff at 0xfe00
x86bios: SSEG 0x001000-0x001fff at 0xff8000223000
x86bios:  ROM 0x0a-0x0fefff at 0xfe0a
APIC: CPU 0 has ACPI ID 0
random device not loaded; using insecure entropy
ULE: setup cpu 0
ACPI: RSDP 0xf0400 00024 (v02 BHYVE )
ACPI: XSDT 0xf0480 00034 (v01 BHYVE  BVXSDT   0001 INTL 20130117)
ACPI: APIC 0xf0500 0004A (v01 BHYVE  BVMADT   0001 INTL 20130117)
ACPI: FACP 0xf0600 0010C (v05 BHYVE  BVFACP   0001 INTL 20130117)
ACPI: DSDT 0xf0800 000F2 (v02 BHYVE  BVDSDT   0001 INTL 20130117)
ACPI: FACS 0xf0780 00040
MADT: Found IO APIC ID 1, Interrupt 0 at 0xfec0
ioapic0: Changing APIC ID to 1
ioapic0: Routing external 8259A's -> intpin 0
MADT: Interrupt override: source 9, irq 9
ioapic0: intpin 9 trigger: level
ioapic0: intpin 9 polarity: low
ioapic0  irqs 0-16 on motherboard
cpu0 BSP:
 ID: 0x   VER: 0x0011 LDR: 0x DFR: 0x
  lint0: 0x00010700 lint1: 0x0400 TPR: 0x SVR: 0x01ff
  timer: 0x000100ef therm: 0x0001 err: 0x00f0
snd_unit_init() u=0x00ff8000 [512] d=0x7c00 [32] c=0x03ff [1024]
feeder_register: snd_unit=-1 snd_maxautovchans=16 latency=5 
feeder_rate_min=1 feeder_rate_max=2016000 feeder_rate_round=25

wlan: <802.11 Link Layer>
nfslock: pseudo-device
null: 
random: 
module_register_init: MOD_LOAD (vesa, 0x80c24d10, 0) error 19
io: 
kbd0 at kbdmux0
ctl: CAM Target Layer loaded
acpi0:  on motherboard
ACPI: All ACPI Tables successfully acquired
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
atrtc0:  port 0x70-0x71,0x72-0x77 irq 8 on acpi0
atrtc0: registered as a time-of-day clock (resolution 100us, 
adjustment 0.5s)

ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 49
Event timer "RTC" frequency 32768 Hz quality 0
ACPI timer: 1/5 1/4 1/5 1/4 1/3 1/4 1/5 1/4 1/5 1/5 -> 10
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <32-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0
pcib0:  port 0xcf8-0xcff on acpi0
pcib0: decoding 4 range 0-0xcf7
pcib0: decoding 4 range 0xd00-0x
pcib0: could not get PCI interrupt routing table for \_SB_.PCI0 - 
AE_NOT_FOUND

pci0:  on pcib0
pci0: domain=0, physical bus=0
found-> vendor=0x1275, dev=0x1275, revid=0x00
domain=0, bus=0, slot=0, func=0
class=06-00-00, hdrtype=0x01, mfdev=0
cmdreg=0x0007, statreg=0x, cachelnsz=0 (dwords)
lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-> vendor=0x1af4, dev=0x1001, revid=0x00