Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Jul 2010 13:43:12 -0700
From:      David Wolfskill <david@catwhisker.org>
To:        current@freebsd.org
Subject:   PCcard NIC insert: "Fatal trap 12: page fault while in kernel mode"
Message-ID:  <20100730204312.GA12818@albert.catwhisker.org>

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

--Tgotd9HqtClR62Vk
Content-Type: multipart/mixed; boundary="2EPcbN/asYWeYp7O"
Content-Disposition: inline


--2EPcbN/asYWeYp7O
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

I thought I had mentioned this a while back, as I've been seeing it
since at least 13 July, but a quick check didn't convince me otherwise.

So I reproduced the problem yesterday, as of r210598: Thu Jul 29
17:54:37 PDT 2010.

Symptom is that I get a panic on insert (or kernel probe, if it's
inserted already at boot time) of a PCcard NIC.

I've attached the core.txt file associated with the dump; here's the
backtrace from it:

#0  doadump () at pcpu.h:231
231     pcpu.h: No such file or directory.
        in pcpu.h
(kgdb) #0  doadump () at pcpu.h:231
#1  0xc0890bfe in boot (howto=3D260) at /usr/src/sys/kern/kern_shutdown.c:4=
16
#2  0xc0890ed2 in panic (fmt=3DVariable "fmt" is not available.
) at /usr/src/sys/kern/kern_shutdown.c:590
#3  0xc04d8647 in db_panic (addr=3DCould not find the frame base for "db_pa=
nic".
) at /usr/src/sys/ddb/db_command.c:478
#4  0xc04d8c71 in db_command (last_cmdp=3D0xc0e08edc, cmd_table=3D0x0, dopa=
ger=3D1)
    at /usr/src/sys/ddb/db_command.c:445
#5  0xc04d8dca in db_command_loop () at /usr/src/sys/ddb/db_command.c:498
#6  0xc04daced in db_trap (type=3D12, code=3D0) at /usr/src/sys/ddb/db_main=
.c:229
#7  0xc08c37b6 in kdb_trap (type=3D12, code=3D0, tf=3D0xc52a2a9c)
    at /usr/src/sys/kern/subr_kdb.c:535
#8  0xc0beb7af in trap_fatal (frame=3D0xc52a2a9c, eva=3D24)
    at /usr/src/sys/i386/i386/trap.c:936
#9  0xc0bebcdc in trap (frame=3D0xc52a2a9c) at /usr/src/sys/i386/i386/trap.=
c:326
#10 0xc0bd303c in calltrap () at /usr/src/sys/i386/i386/exception.s:166
#11 0xc0944a35 in ifindex_alloc_locked (idxp=3D0xc52a2b16)
    at /usr/src/sys/net/if.c:262
#12 0xc0945232 in if_alloc (type=3D6 '\006') at /usr/src/sys/net/if.c:403
#13 0xc11ad9ce in an_attach (sc=3D0xc8e69000, flags=3D0)
    at /usr/src/sys/modules/an/../../dev/an/if_an.c:683
#14 0xc11b205a in an_pccard_attach (dev=3D0xc7e63380)
    at /usr/src/sys/modules/an/../../dev/an/if_an_pccard.c:146
#15 0xc08be12f in device_attach (dev=3D0xc7e63380) at device_if.h:178
#16 0xc06e556b in pccard_probe_and_attach_child (dev=3D0x22, child=3D0xc7e6=
3380,=20
    pf=3D0xc8e5b280) at /usr/src/sys/dev/pccard/pccard.c:297
#17 0xc06e5a1b in pccard_attach_card (dev=3D0xc79b5d80)
    at /usr/src/sys/dev/pccard/pccard.c:249
#18 0xc064225a in exca_insert (exca=3D0xc783d804) at card_if.h:83
#19 0xc06ea26f in cbb_event_thread (arg=3D0xc783d800)
    at /usr/src/sys/dev/pccbb/pccbb.c:557
#20 0xc08664a8 in fork_exit (callout=3D0xc06e9fd0 <cbb_event_thread>,=20
    arg=3D0xc783d800, frame=3D0xc52a2d28) at /usr/src/sys/kern/kern_fork.c:=
843
#21 0xc0bd30b4 in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:=
273


I've been looking around, mostly in frame #11:

(kgdb) frame 11
#11 0xc0944a35 in ifindex_alloc_locked (idxp=3D0xc52a2b16) at /usr/src/sys/=
net/if.c:262
262             for (idx =3D 1; idx <=3D V_if_index; idx++) {
(kgdb) list -
252     ifindex_alloc_locked(u_short *idxp)
253     {
254             u_short idx;
255
256             IFNET_WLOCK_ASSERT();
257
258             /*
259              * Try to find an empty slot below V_if_index.  If we fail,=
 take the
260              * next slot.
261              */
(kgdb) list =20
262             for (idx =3D 1; idx <=3D V_if_index; idx++) {
263                     if (V_ifindex_table[idx].ife_ifnet =3D=3D NULL)
264                             break;
265             }
266
267             /* Catch if_index overflow. */
268             if (idx < 1)
269                     return (ENOSPC);
270             if (idx > V_if_index)
271                     V_if_index =3D idx;
(kgdb)=20

but I confess I have little expertise for doing much there myself.

I had been advised to sprinkle printf()s in there, which I had tried;
they appeared to demonstrate that the IFNET_WLOCK_ASSERT() on line 256
succeeded, but the printf() that I stuck in at the beginning of the for
loop on present line 263 didn't generate any output that I saw.

(I have since taken them out, and the dump in question reflects the
reverted state of sys/net/if.c.)

The panic appears to be quite reproducible, and I'm more than willing
to experiment.  (I find that the least iinconvenient way to reproduce
the panic is to boot normally -- without a PCcard -- then "shutdown
now", re-mount all the mounted file systems as read-only, then
insert the PCcard.  Trying to catch it during the kernel probes loses,
as apparently the swap space hasn't yet been added to the system -- at
least, trying to "panic" merely whines that it has no place to record
the dump.  In contrast, creating the panic immediately after shutdown
doesn't suffer that problem, as swap had been added earlier.)

Thanks!

Peace,
david
--=20
David H. Wolfskill				david@catwhisker.org
Depriving a girl or boy of an opportunity for education is evil.

See http://www.catwhisker.org/~david/publickey.gpg for my public key.

--2EPcbN/asYWeYp7O
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="core.txt"
Content-Transfer-Encoding: quoted-printable

localhost dumped core - see /var/crash/vmcore.27

Thu Jul 29 18:40:32 PDT 2010

FreeBSD localhost 9.0-CURRENT FreeBSD 9.0-CURRENT #73 r210598: Thu Jul 29 1=
7:54:37 PDT 2010     root@localhost:/usr/obj/usr/src/sys/CANARY  i386

panic: from debugger

GNU gdb 6.1.1 [FreeBSD]
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain condition=
s.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i386-marcel-freebsd"...

Unread portion of the kernel message buffer:
<118>Stopping devd.
<118>Writing entropy file:
<118>.
<118>Terminated
<118>.
<118>Jul 29 18:35:55 localhost syslogd: exiting on signal 15
<118>Enter full pathname of shell or RETURN for=20
<118>/bin/sh
<118>:=20
<118>#=20
<118>f
<118>o
<118>r
<118>=20
<118>p
<118>=20
<118>i
<118>n
<118>=20
<118>a
<118>=20
<118>d
<118>=20
<118>e
<118>=20
<118>g
<118>;
<118>=20
<118>d
<118>o
<118>
<118>>=20
<118>m
<118>o
<118>u
<118>n
<118>t
<118>=20
<118>-
<118>u
<118>r
<118>=20
<118>/
<118>d
<118>e
<118>v
<118>/
<118>a
<118>d
<118>0
<118>s
<118>4
<118>$
<118>p
<118>
<118>>=20
<118>d
<118>o
<118>n
<118>e
<118>
<118>#=20
<118>m
<118>o
<118>u
<118>n
<118>t
<118>
<118>/dev/ad0s4a on / (ufs, local, read-only)
<118>devfs on /dev (devfs, local, multilabel)
<118>tmpfs on /tmp (tmpfs, local)
<118>/dev/ad0s4d on /usr (ufs, local, read-only)
<118>/dev/ad0s4e on /var (ufs, local, read-only)
<118>/dev/ad0s4g on /common (ufs, local, read-only)
<118>procfs on /proc (procfs, local)
<118>#=20
Status is 0x30000410
cbb1: card inserted: event=3D0x00000006, state=3D30000410
pccard1: chip_socket_enable
cbb_pcic_socket_enable:
cbb1: cbb_power: 5V
pccard1: read_cis
pcib2: pccard1 requested memory range 0x88000000-0xffffffff: good
cis mem map 0xd975f000 (resource: 0x88000000)
pccard1: CIS tuple chain:
CISTPL_DEVICE type=3Dfuncspec speed=3D100ns
 0x1 0x3 0xdc 00 0xff
CISTPL_DEVICE_A type=3Dfuncspec speed=3D100ns
 0x17 0x3 0xdc 00 0xff
unhandled CISTPL 0x14
CISTPL_NO_LINK
 0x14 00
CISTPL_VERS_1
 0x15 0x31 0x4 0x1 0x43 0x69 0x73 0x63 0x6f 0x20 0x53 0x79 0x73 0x74 0x65 0=
x6d
 0x73 00 0x33 0x35 0x30 0x20 0x53 0x65 0x72 0x69 0x65 0x73 0x20 0x57 0x69 0=
x72
 0x65 0x6c 0x65 0x73 0x73 0x20 0x4c 0x41 0x4e 0x20 0x41 0x64 0x61 0x70 0x74=
 0x65
 0x72 00 0xff
CISTPL_MANFID
 0x20 0x4 0x5f 0x1 0xa 00
CISTPL_FUNCID
 0x21 0x2 0x6 00
CISTPL_FUNCE
 0x22 0x2 0x1 0x7
CISTPL_FUNCE
 0x22 0x5 0x2 0xc0 0xd8 0xa7 00
CISTPL_FUNCE
 0x22 0x2 0x3 0x7
CISTPL_CONFIG
 0x1a 0x5 0x1 0x5 0xe0 0x3 0x7
CISTPL_CFTABLE_ENTRY
 0x1b 0xc 0xc5 0x1 0x1a 0x9 0x55 0x66 0x1 0x55 0x46 0x30 0xff 0xff
CISTPL_END
 ff
pccard1: check_cis_quirks
pccard1: CIS version PCCARD 2.0 or 2.1
pccard1: CIS info: Cisco Systems, 350 Series Wireless LAN Adapter
pccard1: Manufacturer code 0x15f, product 0xa
pccard1: function 0: network adapter, ccr addr 0x3e0 mask 0x7
pccard1: function 0, config table entry 5: I/O card; irq mask 0xffff; iomas=
k 0x6, iospace 0-0x3f; io16 irqlevel
pccard1: functions scanning
pccard1: Card has 1 functions. pccard_mfc is 0
pccard1: I/O rid 0 start 0 end 0xffffffff
pcib2: pccard1 requested I/O range 0x100-0xffffffff: in range
cbb_pcic_socket_enable:
pcib2: pccard1 requested memory range 0x88000000-0xffffffff: good
pccard1: ccr_res =3D=3D 0x88000000-0x880003ff, base=3D0x3e0
pccard1: function 0 CCR at 0 offset 0x3e0: 0x45 0x80 0x22 0, 0 0 0 0, 0
an0: <Cisco Systems 350 Series Wireless LAN Adapter> at port 0x100-0x13f ir=
q 11 function 0 config 5 on pccard1
Kernel page fault with the following non-sleepable locks held:
exclusive rw ifnet_rw (ifnet_rw) r =3D 0 (0xc0f96044) locked @ /usr/src/sys=
/net/if.c:402
KDB: stack backtrace:
db_trace_self_wrapper(c0cccd8e,c52a29c4,c08d89f5,192,2,...) at 0xc04dad46 =
=3D db_trace_self_wrapper+0x26
kdb_backtrace(192,2,ffffffff,c0f69acc,c52a29fc,...) at 0xc08c3a09 =3D kdb_b=
acktrace+0x29
_witness_debugger(c0ccf510,c52a2a10,4,1,0,...) at 0xc08d89f5 =3D _witness_d=
ebugger+0x25
witness_warn(5,0,c0d06d5e,3,c7600d48,...) at 0xc08d9f1d =3D witness_warn+0x=
20d
trap(c52a2a9c) at 0xc0bebcce =3D trap+0x19e
calltrap() at 0xc0bd303c =3D calltrap+0x6
--- trap 0xc, eip =3D 0xc0944a35, esp =3D 0xc52a2adc, ebp =3D 0xc52a2afc ---
ifindex_alloc_locked(c0f96044,c0cd9075,192,192,1,...) at 0xc0944a35 =3D ifi=
ndex_alloc_locked+0x65
if_alloc(6,c7e63380,1,c52a2b60,0,...) at 0xc0945232 =3D if_alloc+0x72
an_attach(c8e69000,0,0,c52a2b88,c06e472d,...) at 0xc11ad9ce =3D an_attach+0=
x1e
an_pccard_attach(c7e63380,c780f85c,c0dbef1c,c0cb977d,80000000,...) at 0xc11=
b205a =3D an_pccard_attach+0x9a
device_attach(c7e63380,c0dc6950,c78ada0c,c78ada1a,3e0,...) at 0xc08be12f =
=3D device_attach+0x36f
pccard_probe_and_attach_child(c7e63380,c7e63280,ffffffff,0,c79b5d80,...) at=
 0xc06e556b =3D pccard_probe_and_attach_child+0x6bb
pccard_attach_card(c79b5d80,c770f934,c0d6ff08,30000410,0,...) at 0xc06e5a1b=
 =3D pccard_attach_card+0x28b
exca_insert(c783d804,c0ca583e,6,30000410,c8,...) at 0xc064225a =3D exca_ins=
ert+0x5a
cbb_event_thread(c783d800,c52a2d28,c0cc494f,343,c7600d48,...) at 0xc06ea26f=
 =3D cbb_event_thread+0x29f
fork_exit(c06e9fd0,c783d800,c52a2d28) at 0xc08664a8 =3D fork_exit+0xb8
fork_trampoline() at 0xc0bd30b4 =3D fork_trampoline+0x8
--- trap 0, eip =3D 0, esp =3D 0xc52a2d60, ebp =3D 0 ---


Fatal trap 12: page fault while in kernel mode
cpuid =3D 0; apic id =3D 00
fault virtual address	=3D 0x18
fault code		=3D supervisor read, page not present
instruction pointer	=3D 0x20:0xc0944a35
stack pointer	        =3D 0x28:0xc52a2adc
frame pointer	        =3D 0x28:0xc52a2afc
code segment		=3D base 0x0, limit 0xfffff, type 0x1b
			=3D DPL 0, pres 1, def32 1, gran 1
processor eflags	=3D interrupt enabled, resume, IOPL =3D 0
current process		=3D 6 (cbb1 event thread)
panic: from debugger
cpuid =3D 0
KDB: stack backtrace:
Uptime: 3m13s
Physical memory: 2031 MB
Dumping 112 MB: 97 81 65 49 33 17 1

Reading symbols from /boot/kernel/linux.ko...Reading symbols from /boot/ker=
nel/linux.ko.symbols...done.
done.
Loaded symbols for /boot/kernel/linux.ko
Reading symbols from /boot/kernel/if_an.ko...Reading symbols from /boot/ker=
nel/if_an.ko.symbols...done.
done.
Loaded symbols for /boot/kernel/if_an.ko
Reading symbols from /boot/kernel/if_iwi.ko...Reading symbols from /boot/ke=
rnel/if_iwi.ko.symbols...done.
done.
Loaded symbols for /boot/kernel/if_iwi.ko
Reading symbols from /boot/kernel/if_wi.ko...Reading symbols from /boot/ker=
nel/if_wi.ko.symbols...done.
done.
Loaded symbols for /boot/kernel/if_wi.ko
Reading symbols from /boot/kernel/iwi_bss.ko...Reading symbols from /boot/k=
ernel/iwi_bss.ko.symbols...done.
done.
Loaded symbols for /boot/kernel/iwi_bss.ko
Reading symbols from /boot/kernel/iwi_ibss.ko...Reading symbols from /boot/=
kernel/iwi_ibss.ko.symbols...done.
done.
Loaded symbols for /boot/kernel/iwi_ibss.ko
Reading symbols from /boot/kernel/iwi_monitor.ko...Reading symbols from /bo=
ot/kernel/iwi_monitor.ko.symbols...done.
done.
Loaded symbols for /boot/kernel/iwi_monitor.ko
Reading symbols from /boot/kernel/radeon.ko...Reading symbols from /boot/ke=
rnel/radeon.ko.symbols...done.
done.
Loaded symbols for /boot/kernel/radeon.ko
Reading symbols from /boot/kernel/drm.ko...Reading symbols from /boot/kerne=
l/drm.ko.symbols...done.
done.
Loaded symbols for /boot/kernel/drm.ko
Reading symbols from /boot/kernel/tmpfs.ko...Reading symbols from /boot/ker=
nel/tmpfs.ko.symbols...done.
done.
Loaded symbols for /boot/kernel/tmpfs.ko
#0  doadump () at pcpu.h:231
231	pcpu.h: No such file or directory.
	in pcpu.h
(kgdb) #0  doadump () at pcpu.h:231
#1  0xc0890bfe in boot (howto=3D260) at /usr/src/sys/kern/kern_shutdown.c:4=
16
#2  0xc0890ed2 in panic (fmt=3DVariable "fmt" is not available.
) at /usr/src/sys/kern/kern_shutdown.c:590
#3  0xc04d8647 in db_panic (addr=3DCould not find the frame base for "db_pa=
nic".
) at /usr/src/sys/ddb/db_command.c:478
#4  0xc04d8c71 in db_command (last_cmdp=3D0xc0e08edc, cmd_table=3D0x0, dopa=
ger=3D1)
    at /usr/src/sys/ddb/db_command.c:445
#5  0xc04d8dca in db_command_loop () at /usr/src/sys/ddb/db_command.c:498
#6  0xc04daced in db_trap (type=3D12, code=3D0) at /usr/src/sys/ddb/db_main=
.c:229
#7  0xc08c37b6 in kdb_trap (type=3D12, code=3D0, tf=3D0xc52a2a9c)
    at /usr/src/sys/kern/subr_kdb.c:535
#8  0xc0beb7af in trap_fatal (frame=3D0xc52a2a9c, eva=3D24)
    at /usr/src/sys/i386/i386/trap.c:936
#9  0xc0bebcdc in trap (frame=3D0xc52a2a9c) at /usr/src/sys/i386/i386/trap.=
c:326
#10 0xc0bd303c in calltrap () at /usr/src/sys/i386/i386/exception.s:166
#11 0xc0944a35 in ifindex_alloc_locked (idxp=3D0xc52a2b16)
    at /usr/src/sys/net/if.c:262
#12 0xc0945232 in if_alloc (type=3D6 '\006') at /usr/src/sys/net/if.c:403
#13 0xc11ad9ce in an_attach (sc=3D0xc8e69000, flags=3D0)
    at /usr/src/sys/modules/an/../../dev/an/if_an.c:683
#14 0xc11b205a in an_pccard_attach (dev=3D0xc7e63380)
    at /usr/src/sys/modules/an/../../dev/an/if_an_pccard.c:146
#15 0xc08be12f in device_attach (dev=3D0xc7e63380) at device_if.h:178
#16 0xc06e556b in pccard_probe_and_attach_child (dev=3D0x22, child=3D0xc7e6=
3380,=20
    pf=3D0xc8e5b280) at /usr/src/sys/dev/pccard/pccard.c:297
#17 0xc06e5a1b in pccard_attach_card (dev=3D0xc79b5d80)
    at /usr/src/sys/dev/pccard/pccard.c:249
#18 0xc064225a in exca_insert (exca=3D0xc783d804) at card_if.h:83
#19 0xc06ea26f in cbb_event_thread (arg=3D0xc783d800)
    at /usr/src/sys/dev/pccbb/pccbb.c:557
#20 0xc08664a8 in fork_exit (callout=3D0xc06e9fd0 <cbb_event_thread>,=20
    arg=3D0xc783d800, frame=3D0xc52a2d28) at /usr/src/sys/kern/kern_fork.c:=
843
#21 0xc0bd30b4 in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:=
273
(kgdb)=20

------------------------------------------------------------------------
ps -axl

  UID   PID  PPID CPU PRI NI    VSZ    RSS MWCHAN STAT  TT       TIME COMMA=
ND
    0     0     0   0 -68  0      0      0 -      DLs   ??  29967838:52.00 =
[kernel]
    0     1     0   0  44  0   8032    536 wait   DLs   ??  6478811:50.00 [=
init]
    0     2     0   0  -8  0      0      0 -      DL    ??  29187492:16.00 =
[g_event]
    0     3     0   0  -8  0      0      0 -      DL    ??  4154458:54.00 [=
g_up]
    0     4     0   0  -8  0      0      0 -      DL    ??  5137727:30.00 [=
g_down]
    0     5     0   0 -16  0      0      0 c7834bbc DL    ??    0:00.00 [cb=
b0 eve
    0     6     0   0 -32  0      0      0 -      RL    ??    0:00.00 [cbb1=
 eve
    0     7     0   0 -16  0      0      0 -      DL    ??    0:00.00 [fw0_=
prob
    0     8     0   0 -16  0      0      0 -      DL    ??  24639:14.00 [fd=
c0]
    0     9     0   0 -60  0      0      0 waitin DL    ??  3687:24.00 [sct=
p_ite
    0    10     0   0 -16  0      0      0 audit_ DL    ??    0:00.00 [audi=
t]
    0    11     0   0 171  0      0      0 -      RL    ??  -33498025:-47.5=
5 [idle]
    0    12     0   0 -60  0      0      0 -      WL    ??  -8531419:-53.55=
 [intr]
    0    13     0   0 -16  0      0      0 -      DL    ??  529377:38.00 [y=
arrow]
    0    14     0   0 -64  0      0      0 -      DL    ??  48142:18.00 [us=
b]
    0    15     0   0 -16  0      0      0 tzpoll DL    ??  2848276:06.00 [=
acpi_the
    0    16     0   0 -60  0      0      0 ccb_sc DL    ??    0:00.00 [xpt_=
thrd
    0    17     0   0  76  0      0      0 psleep DL    ??  11356:30.00 [pa=
gedaem
    0    18     0   0  76  0      0      0 psleep DL    ??  175:00.00 [vmda=
emon
    0    19     0   0  76  0      0      0 pgzero DL    ??  200:20.00 [page=
zero
    0    20     0   0  76  0      0      0 psleep DL    ??  29947:16.00 [bu=
fdaemo
    0    21     0   0  44  0      0      0 syncer DL    ??  845424:46.00 [s=
yncer]
    0    22     0   0 -16  0      0      0 vlruwt DL    ??  28833:30.00 [vn=
lru]
    0    23     0   0 -16  0      0      0 sdflus DL    ??  33162:28.00 [so=
ftdepf
    0    24     0   0 -16  0      0      0 flowcl DL    ??  1143470:42.00 [=
flowclea
    0  2492     1   0  44  0   9888   1740 ttyin  Ds+   ??    0:00.00 [sh]

------------------------------------------------------------------------
vmstat -s

   762014 cpu context switches
   213571 device interrupts
   184418 software interrupts
   201930 traps
   333668 system calls
       24 kernel threads created
     2436  fork() calls
       37 vfork() calls
        0 rfork() calls
        0 swap pager pageins
        0 swap pager pages paged in
        0 swap pager pageouts
        0 swap pager pages paged out
      678 vnode pager pageins
     4879 vnode pager pages paged in
        0 vnode pager pageouts
        0 vnode pager pages paged out
        0 page daemon wakeups
        0 pages examined by the page daemon
      392 pages reactivated
    69820 copy-on-write faults
       37 copy-on-write optimized faults
    75084 zero fill pages zeroed
     2684 zero fill pages prezeroed
       40 intransit blocking page faults
   190507 total VM faults taken
        0 pages affected by kernel thread creation
  2322672 pages affected by  fork()
    34926 pages affected by vfork()
        0 pages affected by rfork()
        0 pages cached
   196924 pages freed
        0 pages freed by daemon
        0 pages freed by exiting processes
     1196 pages active
     3635 pages inactive
       52 pages in VM cache
    14050 pages wired down
   491669 pages free
     4096 bytes per page
    49418 total name lookups
          cache hits (89% pos + 4% neg) system 0% per-directory
          deletions 0%, falsehits 0%, toolong 0%

------------------------------------------------------------------------
vmstat -m

         Type InUse MemUse HighUse Requests  Size(s)
      ithread    63    22K       -       63  256,512
       KTRACE   100    25K       -      100  256
       linker   187   139K       -      313  256,1024,2048
        lockf     2     1K       -       66  256
    ad_driver     1     1K       -        1  256
         UART     3     4K       -        3  256,1024,2048
   acd_driver     1     4K       -        1  4096
       ip6ndp     7     2K       -        7  256
         temp    31   273K       -     4187  256,512,1024,2048,4096
       devbuf  1512  6147K       -     1553  256,512,1024,2048,4096
       module   465   117K       -      465  256
      ata_cam     1     2K       -       13  256,1024,2048
     mtx_pool     2    16K       -        2 =20
          osd     2     1K       -        2  256
   CAM periph     4     1K       -       22  256
      subproc    99   245K       -     2571  512
         proc     2    24K       -        2 =20
      session     2     1K       -       30  256
         pgrp     2     1K       -       48  256
         cred    18     7K       -     7360  256,512
      uidinfo     2     5K       -       11  256,4096
       plimit     1     1K       -      217  512
      acpidev    76    19K       -       76  256
    sysctltmp     0     0K       -      491  256
    sysctloid  3478   870K       -     3567  256
       sysctl     0     0K       -     1171  256
         umtx   210    53K       -      210  256
     p1003.1b     1     1K       -        1  256
         SWAP     2   825K       -        2  256
       bus-sc    69   180K       -     2427  256,512,1024,2048,4096
          bus  1167   292K       -     5114  256,512,2048,4096
      devstat    14    86K       -       14  256
 eventhandler    85    22K       -       85  256
         kobj   321  1284K       -      385  4096
      Per-cpu     1     1K       -        1  256
       USBdev     8     6K       -        8  256,2048
         rman   197    50K       -      635  256
          USB    14     7K       -       14  256,2048
         sbuf     0     0K       -     1262  256,512,1024,2048,4096
      scsi_cd     0     0K       -        3  256
        stack     0     0K       -        2  256
    taskqueue    15     4K       -       15  256
       Unitno    16     4K       -       72  256
     pci_link     8     2K       -        8  256
    acpi_perf     1     1K       -        1  256
      Witness     1   112K       -        1 =20
          iov     0     0K       -     2200  256,512
       select    17     5K       -       17  256
     ioctlops     0     0K       -     1670  256,512,1024,2048
          msg     4    46K       -        4  2048
          sem     4   114K       -        4  2048
          shm     1    16K       -        1 =20
          tty    20    40K       -       23  2048,4096
          pts     0     0K       -        1  256
         accf     2     1K       -        2  256
     mbuf_tag     0     0K       -        6  256
         ksem     1    12K       -        1 =20
        shmfd     1    12K       -        1 =20
          pcb    14   122K       -       46  256,2048,4096
       soname     0     0K       -      162  256
     vfscache     1   520K       -        1 =20
   cl_savebuf     0     0K       -        3  256
     vfs_hash     1   264K       -        1 =20
       vnodes     2     1K       -        2  512
  ddb_capture     1    56K       -        1 =20
  vnodemarker     0     0K       -       69  1024
        mount   114    33K       -      235  256,1024
          BPF     6     2K       -        6  256
  ether_multi    10     3K       -       12  256
       ifaddr    55    34K       -       55  256,512,1024
        ifnet     8    15K       -        8  256,2048
       acpica  1385   352K       -   106334  256,512,1024,2048
        clone     6    72K       -        6 =20
       arpcom     3     1K       -        3  256
       fw_com     1     1K       -        1  256
      lltable    14     7K       -       14  512
      fw_xfer     0     0K       -        1  256
     firewire    11    42K       -       14  256,1024,4096
     acpitask     1     4K       -        1  4096
       DEVFS1   117    59K       -      136  512
       DEVFS3   136    37K       -      155  256,512
        DEVFS    14     4K       -       15  256
     routetbl   218  8799K       -      349  256,512
vnet_data_free     1     1K       -        1  256
    vnet_data     1    36K       -        1 =20
         vnet     1     1K       -        1  256
         igmp     6     2K       -        6  256
     in_multi     1     1K       -        1  512
     dummynet     3     3K       -        3  1024
  IpFw/IpAcct    13     4K       -       24  256
    sctp_iter     0     0K       -        1  512
     sctp_ifn     1     1K       -        1  256
     sctp_ifa     3     1K       -        3  256
     sctp_vrf     1     1K       -        1  256
    sctp_a_it     0     0K       -        1  256
    hostcache     1    24K       -        1 =20
     syncache     1    80K       -        1 =20
    pfs_nodes    21     6K       -       21  256
  pfs_vncache     2     1K       -        6  256
 ip6_moptions     0     0K       -        2  256,512
    in6_multi    12     4K       -       13  256,512
  in6_mfilter     0     0K       -        1  1024
     ppbusdev     3     1K       -        3  256
      entropy  1024   256K       -     1024  256
          mld     6     2K       -        6  256
      NFS FHA     1     4K       -        1  4096
          rpc     2     9K       -        2  512
audit_evclass   172    43K       -      211  256
       newblk     1    72K       -        1 =20
    bmsafemap     1    12K       -        1 =20
     inodedep     1   264K       -        1 =20
      pagedep     1    72K       -        1 =20
  ufs_dirhash    87    46K       -       87  256,512,1024
    ufs_mount    12    70K       -       12  512
         GEOM   257   133K       -     1408  256,1024,2048
      UMAHash     1     1K       -        1  1024
          agp     2    65K       -        2  256
      CAM XPT    34    42K       -      112  256,1024,2048,4096
    vm_pgdata     2    73K       -        2  256
         ac97     2     2K       -        2  256,1024
     atkbddev     2     1K       -        2  256
      acpisem    15     4K       -       15  256
          sbp   104    26K       -      104  256
       isadev     6     2K       -        6  256
       apmdev     1     1K       -        2  256
CAM dev queue     3     1K       -        3  256
       feeder    12     3K       -       14  256
    CAM queue    11     3K       -       74  256
      memdesc     1     8K       -       10  256
     nexusdev     3     1K       -        3  256
      CAM SIM     3     1K       -        3  256
  ata_generic     2     4K       -        2  2048
         cdev    11     3K       -       11  256
  tty console     0     0K       -        1 =20
       kbdmux     6    27K       -        6  256,512,2048,4096
        mixer     1     8K       -        1 =20
        sigio     0     0K       -        2  256
     filedesc    26    13K       -     2498  512
         kenv    89    30K       -       97  256
       kqueue     0     0K       -       12  512,1024,4096
    proc-args     2     1K       -      612  256,512,1024
        linux    14     4K       -       14  256
drm_ctxbitmap     1    12K       -        1 =20
 drm_agplists     1     1K       -        1  256
     drm_maps     1     1K       -        1  256
   drm_driver     4     3K       -        8  256,512,2048
    drm_sarea     1     1K       -        1  256
   tmpfs name     7     2K       -       17  256
  tmpfs mount     1     1K       -        1  256

------------------------------------------------------------------------
vmstat -z

ITEM                   SIZE  LIMIT     USED     FREE      REQ FAIL SLEEP

UMA Kegs:               128,      0,     155,      25,     155,   0,   0
UMA Zones:              896,      0,     155,       1,     155,   0,   0
UMA Slabs:              284,      0,    1234,      40,    5754,   0,   0
UMA RCntSlabs:          544,      0,       4,       3,       4,   0,   0
UMA Hash:               128,      0,       3,      27,       4,   0,   0
16 Bucket:               76,      0,      86,      14,     119,   0,   0
32 Bucket:              140,      0,      35,      21,     102,   0,   0
64 Bucket:              268,      0,      26,       2,     160,  31,   0
128 Bucket:             524,      0,      47,       2,    1027,15931,   0
VM OBJECT:              136,      0,    1051,     660,   27117,   0,   0
MAP:                    140,      0,       8,      20,       8,   0,   0
KMAP ENTRY:              72,  57505,      62,      97,   14022,   0,   0
MAP ENTRY:               72,      0,      22,    1833,   53592,   0,   0
DP fakepg:               72,      0,       0,   16483,   16422,   0,   0
SG fakepg:               72,      0,       0,       0,       0,   0,   0
mt_zone:               2060,      0,     310,     126,     310,   0,   0
16:                      16,      0,       0,       0,       0,   0,   0
16:                      16,      0,       0,       0,       0,   0,   0
16:                      16,      0,       0,       0,       0,   0,   0
16:                      16,      0,       0,       0,       0,   0,   0
16:                      16,      0,       0,       0,       0,   0,   0
16:                      16,      0,       0,       0,       0,   0,   0
16:                      16,      0,       0,       0,       0,   0,   0
16:                      16,      0,       0,       0,       0,   0,   0
32:                      32,      0,       0,       0,       0,   0,   0
32:                      32,      0,       0,       0,       0,   0,   0
32:                      32,      0,       0,       0,       0,   0,   0
32:                      32,      0,       0,       0,       0,   0,   0
32:                      32,      0,       0,       0,       0,   0,   0
32:                      32,      0,       0,       0,       0,   0,   0
32:                      32,      0,       0,       0,       0,   0,   0
32:                      32,      0,       0,       0,       0,   0,   0
64:                      64,      0,       0,       0,       0,   0,   0
64:                      64,      0,       0,       0,       0,   0,   0
64:                      64,      0,       0,       0,       0,   0,   0
64:                      64,      0,       0,       0,       0,   0,   0
64:                      64,      0,       0,       0,       0,   0,   0
64:                      64,      0,       0,       0,       0,   0,   0
64:                      64,      0,       0,       0,       0,   0,   0
64:                      64,      0,       0,       0,       0,   0,   0
128:                    128,      0,       0,       0,       0,   0,   0
128:                    128,      0,       0,       0,       0,   0,   0
128:                    128,      0,       0,       0,       0,   0,   0
128:                    128,      0,       0,       0,       0,   0,   0
128:                    128,      0,       0,       0,       0,   0,   0
128:                    128,      0,       0,       0,       0,   0,   0
128:                    128,      0,       0,       0,       0,   0,   0
128:                    128,      0,       0,       0,       0,   0,   0
256:                    256,      0,    1119,      66,    1207,   0,   0
256:                    256,      0,    3743,      22,    5475,   0,   0
256:                    256,      0,     326,      19,     783,   0,   0
256:                    256,      0,    1793,     127,  106048,   0,   0
256:                    256,      0,     631,     104,    2834,   0,   0
256:                    256,      0,    2766,     219,    6704,   0,   0
256:                    256,      0,      33,      27,     108,   0,   0
256:                    256,      0,     369,      81,    3959,   0,   0
512:                    512,      0,       8,       8,       8,   0,   0
512:                    512,      0,      26,      30,     259,   0,   0
512:                    512,      0,     132,      20,     262,   0,   0
512:                    512,      0,     151,      17,    4548,   0,   0
512:                    512,      0,      26,       6,     273,   0,   0
512:                    512,      0,      41,      15,      53,   0,   0
512:                    512,      0,      30,      42,    2502,   0,   0
512:                    512,      0,      73,      15,      83,   0,   0
1024:                  1024,      0,      29,       7,      30,   0,   0
1024:                  1024,      0,       1,       7,      67,   0,   0
1024:                  1024,      0,       0,       8,      69,   0,   0
1024:                  1024,      0,      13,       7,     281,   0,   0
1024:                  1024,      0,      17,      11,     633,   0,   0
1024:                  1024,      0,      28,      16,      30,   0,   0
1024:                  1024,      0,       1,       7,       1,   0,   0
1024:                  1024,      0,       8,       4,      15,   0,   0
2048:                  2048,      0,       4,       8,      13,   0,   0
2048:                  2048,      0,       2,       2,      18,   0,   0
2048:                  2048,      0,       0,       0,       0,   0,   0
2048:                  2048,      0,       8,      10,    6366,   0,   0
2048:                  2048,      0,      21,      21,     953,   0,   0
2048:                  2048,      0,      15,       3,      18,   0,   0
2048:                  2048,      0,       7,       1,       7,   0,   0
2048:                  2048,      0,       2,       2,     302,   0,   0
4096:                  4096,      0,       8,      19,      34,   0,   0
4096:                  4096,      0,       2,       0,       2,   0,   0
4096:                  4096,      0,       0,       0,       0,   0,   0
4096:                  4096,      0,     327,      15,     483,   0,   0
4096:                  4096,      0,       0,       2,     196,   0,   0
4096:                  4096,      0,       6,     128,     906,   0,   0
4096:                  4096,      0,       4,       1,       6,   0,   0
4096:                  4096,      0,       0,       0,       0,   0,   0
Files:                   56,      0,       2,     266,    9594,   0,   0
TURNSTILE:               72,      0,     106,      44,     106,   0,   0
umtx pi:                 52,      0,       0,       0,       0,   0,   0
MAC labels:              20,      0,       0,       0,       0,   0,   0
PROC:                   680,      0,      25,      47,    2497,   0,   0
THREAD:                 704,      0,     100,       5,     100,   0,   0
SLEEPQUEUE:              48,      0,     106,      71,     106,   0,   0
VMSPACE:                240,      0,       2,      62,    2475,   0,   0
cpuset:                  40,      0,       2,     182,       2,   0,   0
audit_record:           816,      0,       0,       0,       0,   0,   0
mbuf_packet:            256,      0,       0,       7,       0,   0,   0
mbuf:                   256,      0,       1,     134,    1277,   0,   0
mbuf_cluster:          2048,  25600,       0,       8,      65,   0,   0
mbuf_jumbo_page:       4096,  12800,       0,       0,       0,   0,   0
mbuf_jumbo_9k:         9216,  19200,       0,       0,       0,   0,   0
mbuf_jumbo_16k:       16384,  12800,       0,       0,       0,   0,   0
mbuf_ext_refcnt:          4,      0,       0,     203,      33,   0,   0
g_bio:                  152,      0,       0,     390,   13264,   0,   0
ttyinq:                 152,      0,      15,     219,     630,   0,   0
ttyoutq:                256,      0,       8,      97,     320,   0,   0
ata_request:            208,      0,       1,      98,    5159,   0,   0
ata_composite:          180,      0,       0,       0,       0,   0,   0
VNODE:                  272,      0,    1109,      39,    1179,   0,   0
VNODEPOLL:               60,      0,       0,       0,       0,   0,   0
S VFS Cache:             72,      0,    1103,      63,    2770,   0,   0
L VFS Cache:            292,      0,      19,      20,      19,   0,   0
NAMEI:                 1024,      0,       0,      12,   18567,   0,   0
DIRHASH:               1024,      0,     205,       3,     205,   0,   0
NFSMOUNT:               524,      0,       0,       0,       0,   0,   0
NFSNODE:                456,      0,       0,       0,       0,   0,   0
pipe:                   392,      0,       0,      20,    1720,   0,   0
ksiginfo:                80,      0,      56,    1000,     120,   0,   0
itimer:                 220,      0,       0,       0,       0,   0,   0
KNOTE:                   72,      0,       0,     106,       7,   0,   0
socket:                 412,  25605,       0,      54,     321,   0,   0
ipq:                     32,    904,       0,       0,       0,   0,   0
udp_inpcb:              220,  25614,       0,      36,     242,   0,   0
udpcb:                    8,  25781,       0,     203,     242,   0,   0
tcp_inpcb:              220,  25614,       0,      36,      16,   0,   0
tcpcb:                  632,  25602,       0,      18,      16,   0,   0
tcptw:                   52,   5184,       0,       0,       0,   0,   0
syncache:               112,  15365,       0,       0,       0,   0,   0
hostcache:               76,  15400,       0,       0,       0,   0,   0
tcpreass:                20,   1690,       0,       0,       0,   0,   0
sackhole:                20,      0,       0,       0,       0,   0,   0
sctp_ep:                860,  25600,       0,       0,       0,   0,   0
sctp_asoc:             1484,  40000,       0,       0,       0,   0,   0
sctp_laddr:              24,  80040,       0,     145,       2,   0,   0
sctp_raddr:             432,  80001,       0,       0,       0,   0,   0
sctp_chunk:              92, 400008,       0,       0,       0,   0,   0
sctp_readq:              76, 400000,       0,       0,       0,   0,   0
sctp_stream_msg_out:     64, 400020,       0,       0,       0,   0,   0
sctp_asconf:             24, 400055,       0,       0,       0,   0,   0
sctp_asconf_ack:         24, 400055,       0,       0,       0,   0,   0
ripcb:                  220,  25614,       0,      36,      12,   0,   0
unpcb:                  172,  25622,       0,      46,      47,   0,   0
rtentry:                108,      0,      10,      62,      10,   0,   0
IPFW dynamic rule:      108,      0,       0,       0,       0,   0,   0
divcb:                  220,  25614,       0,       0,       0,   0,   0
selfd:                   28,      0,      22,     232,    4874,   0,   0
ip4flow:                 40,  25668,       0,       0,       0,   0,   0
ip6flow:                 64,  25636,       0,       0,       0,   0,   0
SWAPMETA:               276, 121576,       0,       0,       0,   0,   0
Mountpoints:            648,      0,       7,       5,       7,   0,   0
FFS inode:              116,      0,    1057,      65,    1096,   0,   0
FFS1 dinode:            128,      0,       0,       0,       0,   0,   0
FFS2 dinode:            256,      0,    1057,      23,    1096,   0,   0
TMPFS dirent:            20,      0,       7,     162,      17,   0,   0
TMPFS node:             136,      0,       8,      50,      17,   0,   0


------------------------------------------------------------------------
vmstat -i

interrupt                          total       rate
irq0: attimer0                    184168       3836
irq1: atkbd0                         357          7
irq4: uart0                         1711         35
irq6: fdc0                             1          0
irq7: ppc0                             9          0
irq8: atrtc0                       23937        498
irq9: pcm0 acpi0                       1          0
irq11: cbb0 cbb1++*                    4          0
irq14: ata0                         3383         70
Total                             213571       4449

------------------------------------------------------------------------
pstat -T

  2/12328 files
0M/6143M swap space

------------------------------------------------------------------------
pstat -s

Device          512-blocks     Used    Avail Capacity
/dev/ad0s4b       12582656        0 12582656     0%

------------------------------------------------------------------------
iostat

iostat: kvm_read(_tk_nin): invalid address (0x0)
iostat: disabling TTY statistics
iostat: kvm_getcptime: invalid address (0x0)
iostat: disabling CPU time statistics
             ad0              cd0            pass0=20
  KB/t tps  MB/s   KB/t tps  MB/s   KB/t tps  MB/s=20
 15.58  69  1.04   0.00   0  0.00   0.00   0  0.00=20

------------------------------------------------------------------------
ipcs -a

Message Queues:
T           ID          KEY MODE        OWNER    GROUP    CREATOR  CGROUP  =
               CBYTES                 QNUM               QBYTES        LSPI=
D        LRPID STIME    RTIME    CTIME  =20

Shared Memory:
T           ID          KEY MODE        OWNER    GROUP    CREATOR  CGROUP  =
       NATTCH        SEGSZ         CPID         LPID ATIME    DTIME    CTIM=
E  =20

Semaphores:
T           ID          KEY MODE        OWNER    GROUP    CREATOR  CGROUP  =
        NSEMS OTIME    CTIME  =20


------------------------------------------------------------------------
ipcs -T

msginfo:
	msgmax:        16384	(max characters in a message)
	msgmni:           40	(# of message queues)
	msgmnb:         2048	(max characters in a message queue)
	msgtql:           40	(max # of messages in system)
	msgssz:            8	(size of a message segment)
	msgseg:         2048	(# of message segments in system)

shminfo:
	shmmax:    536870912	(max shared memory segment size)
	shmmin:            1	(min shared memory segment size)
	shmmni:          192	(max number of shared memory identifiers)
	shmseg:          128	(max shared memory segments per process)
	shmall:       131072	(max amount of shared memory in pages)

seminfo:
	semmap:           30	(# of entries in semaphore map)
	semmni:           50	(# of semaphore identifiers)
	semmns:          340	(# of semaphores in system)
	semmnu:          150	(# of undo structures in system)
	semmsl:          340	(max # of semaphores per id)
	semopm:          100	(max # of operations per semop call)
	semume:           50	(max # of undo entries per process)
	semusz:          616	(size in bytes of undo structure)
	semvmx:        32767	(semaphore maximum value)
	semaem:        16384	(adjust on exit max value)


------------------------------------------------------------------------
nfsstat

Client Info:
Rpc Counts:
  Getattr   Setattr    Lookup  Readlink      Read     Write    Create    Re=
move
        0         0         0         0         0         0         0      =
   0
   Rename      Link   Symlink     Mkdir     Rmdir   Readdir  RdirPlus    Ac=
cess
        0         0         0         0         0         0         0      =
   0
    Mknod    Fsstat    Fsinfo  PathConf    Commit
        0         0         0         0         0
Rpc Info:
 TimedOut   Invalid X Replies   Retries  Requests
        0         0         0         0         0
Cache Info:
Attr Hits    Misses Lkup Hits    Misses BioR Hits    Misses BioW Hits    Mi=
sses
        0         0         0         0         0         0         0      =
   0
BioRLHits    Misses BioD Hits    Misses DirE Hits    Misses
        0         0         0         0         0         0

Server Info:
  Getattr   Setattr    Lookup  Readlink      Read     Write    Create    Re=
move
        0         0         0         0         0         0         0      =
   0
   Rename      Link   Symlink     Mkdir     Rmdir   Readdir  RdirPlus    Ac=
cess
        0         0         0         0         0         0         0      =
   0
    Mknod    Fsstat    Fsinfo  PathConf    Commit
        0         0         0         0         0
Server Ret-Failed
                0
Server Faults
            0
Server Cache Stats:
   Inprog      Idem  Non-idem    Misses
        0         0         0         0
Server Write Gathering:
 WriteOps  WriteRPC   Opsaved
        0         0         0

------------------------------------------------------------------------
netstat -s

tcp:
	0 packets sent
		0 data packets (0 bytes)
		0 data packets (0 bytes) retransmitted
		0 data packets unnecessarily retransmitted
		0 resends initiated by MTU discovery
		0 ack-only packets (0 delayed)
		0 URG only packets
		0 window probe packets
		0 window update packets
		0 control packets
	0 packets received
		0 acks (for 0 bytes)
		0 duplicate acks
		0 acks for unsent data
		0 packets (0 bytes) received in-sequence
		0 completely duplicate packets (0 bytes)
		0 old duplicate packets
		0 packets with some dup. data (0 bytes duped)
		0 out-of-order packets (0 bytes)
		0 packets (0 bytes) of data after window
		0 window probes
		0 window update packets
		0 packets received after close
		0 discarded for bad checksums
		0 discarded for bad header offset fields
		0 discarded because packet too short
		0 discarded due to memory problems
	0 connection requests
	0 connection accepts
	0 bad connection attempts
	0 listen queue overflows
	0 ignored RSTs in the windows
	0 connections established (including accepts)
	16 connections closed (including 0 drops)
		0 connections updated cached RTT on close
		0 connections updated cached RTT variance on close
		0 connections updated cached ssthresh on close
	0 embryonic connections dropped
	0 segments updated rtt (of 0 attempts)
	0 retransmit timeouts
		0 connections dropped by rexmit timeout
	0 persist timeouts
		0 connections dropped by persist timeout
	0 Connections (fin_wait_2) dropped because of timeout
	0 keepalive timeouts
		0 keepalive probes sent
		0 connections dropped by keepalive
	0 correct ACK header predictions
	0 correct data packet header predictions
	0 syncache entries added
		0 retransmitted
		0 dupsyn
		0 dropped
		0 completed
		0 bucket overflow
		0 cache overflow
		0 reset
		0 stale
		0 aborted
		0 badack
		0 unreach
		0 zone failures
	0 cookies sent
	0 cookies received
	0 SACK recovery episodes
	0 segment rexmits in SACK recovery episodes
	0 byte rexmits in SACK recovery episodes
	0 SACK options (SACK blocks) received
	0 SACK options (SACK blocks) sent
	0 SACK scoreboard overflow
	0 packets with ECN CE bit set
	0 packets with ECN ECT(0) bit set
	0 packets with ECN ECT(1) bit set
	0 successful ECN handshakes
	0 times ECN reduced the congestion window
udp:
	0 datagrams received
	0 with incomplete header
	0 with bad data length field
	0 with bad checksum
	0 with no checksum
	0 dropped due to no socket
	0 broadcast/multicast datagrams undelivered
	0 dropped due to full socket buffers
	0 not for hashed pcb
	0 delivered
	0 datagrams output
	0 times multicast source filter matched
ip:
	0 total packets received
	0 bad header checksums
	0 with size smaller than minimum
	0 with data size < data length
	0 with ip length > max ip packet size
	0 with header length < data size
	0 with data length < header length
	0 with bad options
	0 with incorrect version number
	0 fragments received
	0 fragments dropped (dup or out of space)
	0 fragments dropped after timeout
	0 packets reassembled ok
	0 packets for this host
	0 packets for unknown/unsupported protocol
	0 packets forwarded (0 packets fast forwarded)
	0 packets not forwardable
	0 packets received for unknown multicast group
	0 redirects sent
	0 packets sent from this host
	0 packets sent with fabricated ip header
	0 output packets dropped due to no bufs, etc.
	0 output packets discarded due to no route
	0 output datagrams fragmented
	0 fragments created
	0 datagrams that can't be fragmented
	0 tunneling packets that can't find gif
	0 datagrams with bad address in header
icmp:
	0 calls to icmp_error
	0 errors not generated in response to an icmp message
	0 messages with bad code fields
	0 messages less than the minimum length
	0 messages with bad checksum
	0 messages with bad length
	0 multicast echo requests ignored
	0 multicast timestamp requests ignored
	0 message responses generated
	0 invalid return addresses
	0 no return routes
igmp:
	0 messages received
	0 messages received with too few bytes
	0 messages received with wrong TTL
	0 messages received with bad checksum
	0 V1/V2 membership queries received
	0 V3 membership queries received
	0 membership queries received with invalid field(s)
	0 general queries received
	0 group queries received
	0 group-source queries received
	0 group-source queries dropped
	0 membership reports received
	0 membership reports received with invalid field(s)
	0 membership reports received for groups to which we belong
	0 V3 reports received without Router Alert
	0 membership reports sent
arp:
	0 ARP requests sent
	0 ARP replies sent
	0 ARP requests received
	0 ARP replies received
	0 ARP packets received
	0 total packets dropped due to no ARP entry
	0 ARP entrys timed out
	0 Duplicate IPs seen
ip6:
	0 total packets received
	0 with size smaller than minimum
	0 with data size < data length
	0 with bad options
	0 with incorrect version number
	0 fragments received
	0 fragments dropped (dup or out of space)
	0 fragments dropped after timeout
	0 fragments that exceeded limit
	0 packets reassembled ok
	0 packets for this host
	0 packets forwarded
	0 packets not forwardable
	0 redirects sent
	0 packets sent from this host
	0 packets sent with fabricated ip header
	0 output packets dropped due to no bufs, etc.
	0 output packets discarded due to no route
	0 output datagrams fragmented
	0 fragments created
	0 datagrams that can't be fragmented
	0 packets that violated scope rules
	0 multicast packets which we don't join
	Mbuf statistics:
		0 one mbuf
		0 one ext mbuf
		0 two or more ext mbuf
	0 packets whose headers are not continuous
	0 tunneling packets that can't find gif
	0 packets discarded because of too many headers
	0 failures of source address selection
	Source addresses selection rule applied:
		8 same address
icmp6:
	0 calls to icmp6_error
	0 errors not generated in response to an icmp6 message
	0 errors not generated because of rate limitation
	0 messages with bad code fields
	0 messages < minimum length
	0 bad checksums
	0 messages with bad length
	Histogram of error messages to be generated:
		0 no route
		0 administratively prohibited
		0 beyond scope
		0 address unreachable
		0 port unreachable
		0 packet too big
		0 time exceed transit
		0 time exceed reassembly
		0 erroneous header field
		0 unrecognized next header
		0 unrecognized option
		0 redirect
		0 unknown
	0 message responses generated
	0 messages with too many ND options
	0 messages with bad ND options
	0 bad neighbor solicitation messages
	0 bad neighbor advertisement messages
	0 bad router solicitation messages
	0 bad router advertisement messages
	0 bad redirect messages
	0 path MTU changes
rip6:
	0 messages received
	0 checksum calculations on inbound
	0 messages with bad checksum
	0 messages dropped due to no socket
	0 multicast messages dropped due to no socket
	0 messages dropped due to full socket buffers
	0 delivered
	0 datagrams output

------------------------------------------------------------------------
netstat -m

1/141/142 mbufs in use (current/cache/total)
18446744073709551609/15/8/25600 mbuf clusters in use (current/cache/total/m=
ax)
0/7 mbuf+clusters out of packet secondary zone in use (current/cache)
0/0/0/12800 4k (page size) jumbo clusters in use (current/cache/total/max)
0/0/0/19200 9k jumbo clusters in use (current/cache/total/max)
0/0/0/12800 16k jumbo clusters in use (current/cache/total/max)
18014398509481970K/65K/51K bytes allocated to network (current/cache/total)
0/0/0 requests for mbufs denied (mbufs/clusters/mbuf+clusters)
0/0/0 requests for jumbo clusters denied (4k/9k/16k)
0 requests for sfbufs denied
0 requests for sfbufs delayed
0 requests for I/O initiated by sendfile
0 calls to protocol drain routines

------------------------------------------------------------------------
netstat -id

Name    Mtu Network       Address              Ipkts Ierrs Idrop    Opkts O=
errs  Coll Drop
xl0*   1500 <Link#1>      00:08:74:e9:c9:41        0     0     0        0  =
   0     0    0=20
fwe0*  1500 <Link#2>      42:4f:c0:2c:30:41        0     0     0        0  =
   0     0    0=20
fwip0  1500 <Link#3>      42:4f:c0:00:07:2c:30:41:0a:02:ff:fe:00:00:00:00  =
      0     0     0        0     0     0    0=20
plip0  1500 <Link#4>                               0     0     0        0  =
   0     0    0=20
ipfw0 65536 <Link#5>                               0     0     0        0  =
   0     0    0=20
lo0   16384 <Link#6>                               0     0     0        0  =
   0     0    0=20
lo0   16384 your-net      localhost                0     -     -        0  =
   -     -    -=20
lo0   16384 localhost     ::1                      0     -     -        0  =
   -     -    -=20
lo0   16384 fe80:6::1     fe80:6::1                0     -     -        0  =
   -     -    -=20

------------------------------------------------------------------------
netstat -anr

Routing tables

Internet:
Destination        Gateway            Flags    Refs      Use  Netif Expire
127.0.0.1          link#6             UH          0        0    lo0

Internet6:
Destination                       Gateway                       Flags      =
Netif Expire
::/96                             ::1                           UGRS       =
 lo0
::1                               ::1                           UH         =
 lo0
::ffff:0.0.0.0/96                 ::1                           UGRS       =
 lo0
fe80::/10                         ::1                           UGRS       =
 lo0
fe80::%lo0/64                     link#6                        U          =
 lo0
fe80::1%lo0                       link#6                        UHS        =
 lo0
ff01:6::/32                       ::1                           U          =
 lo0
ff02::/16                         ::1                           UGRS       =
 lo0
ff02::%lo0/32                     ::1                           U          =
 lo0

------------------------------------------------------------------------
netstat -anA


------------------------------------------------------------------------
netstat -aL


------------------------------------------------------------------------
fstat

USER     CMD          PID   FD MOUNT      INUM MODE         SZ|DV R/W
root     sh          2492 root /             2 drwxr-xr-x    1024  r
root     sh          2492   wd /             2 drwxr-xr-x    1024  r
root     sh          2492 text /        141347 -r-xr-xr-x  121404  r
root     sh          2492    0 /dev          5 crw-------  console rw
root     sh          2492    1 /dev          5 crw-------  console rw
root     sh          2492    2 /dev          5 crw-------  console rw
root     sh          2492   10 /dev          5 crw-------  console rw
root     init           1 root /             2 drwxr-xr-x    1024  r
root     init           1   wd /             2 drwxr-xr-x    1024  r
root     init           1 text /        117863 -r-xr-xr-x  677472  r
root     kernel         0 root /             2 drwxr-xr-x    1024  r
root     kernel         0   wd /             2 drwxr-xr-x    1024  r

------------------------------------------------------------------------
dmesg

Copyright (c) 1992-2010 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 9.0-CURRENT #73 r210598: Thu Jul 29 17:54:37 PDT 2010
    root@localhost:/usr/obj/usr/src/sys/CANARY i386
WARNING: WITNESS option enabled, expect reduced performance.
WARNING: DIAGNOSTIC option enabled, expect reduced performance.
Table 'FACP' at 0xfde90
Table 'BOOT' at 0xfdf04
ACPI: No SRAT table found
MEMGUARD DEBUGGING ALLOCATOR INITIALIZED:
	MEMGUARD map base: 0xc5400000
	MEMGUARD map limit: 0xc7401000
	MEMGUARD map size: 33558528 (Bytes)
Preloaded elf kernel "/boot/kernel/kernel" at 0xc12ec000.
Preloaded elf module "/boot/kernel/linux.ko" at 0xc12ec14c.
Preloaded elf module "/boot/kernel/if_an.ko" at 0xc12ec1f8.
Preloaded elf module "/boot/kernel/if_iwi.ko" at 0xc12ec2a4.
Preloaded elf module "/boot/kernel/if_wi.ko" at 0xc12ec350.
Preloaded elf module "/boot/kernel/iwi_bss.ko" at 0xc12ec3fc.
Preloaded elf module "/boot/kernel/iwi_ibss.ko" at 0xc12ec4a8.
Preloaded elf module "/boot/kernel/iwi_monitor.ko" at 0xc12ec558.
Preloaded elf module "/boot/kernel/radeon.ko" at 0xc12ec608.
Preloaded elf module "/boot/kernel/drm.ko" at 0xc12ec6b4.
Calibrating TSC clock ... TSC clock: 2392985896 Hz
CPU: Mobile Intel(R) Pentium(R) 4 - M CPU 2.40GHz (2392.99-MHz 686-class CP=
U)
  Origin =3D "GenuineIntel"  Id =3D 0xf27  Family =3D f  Model =3D 2  Stepp=
ing =3D 7
  Features=3D0xbfebf9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA=
,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>
  Features2=3D0x400<CNXT-ID>

Instruction TLB: 4 KB, 2 MB or 4 MB pages, fully associative, 128 entries
Data TLB: 4 KB or 4 MB pages, fully associative, 64 entries
1st-level data cache: 8 KB, 4-way set associative, sectored cache, 64 byte =
line size
Trace cache: 12K-uops, 8-way set associative
2nd-level cache: 512 KB, 8-way set associative, sectored cache, 64 byte lin=
e size
real memory  =3D 2147483648 (2048 MB)
Physical memory chunk(s):
0x0000000000001000 - 0x000000000009efff, 647168 bytes (158 pages)
0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages)
0x0000000001426000 - 0x000000007db8cfff, 2088136704 bytes (509799 pages)
avail memory =3D 2086289408 (1989 MB)
x86bios:   IVT 0x000000-0x0004ff at 0xc0000000
x86bios:  SSEG 0x010000-0x01ffff at 0xc51e8000
x86bios:  EBDA 0x09f000-0x09ffff at 0xc009f000
x86bios:   ROM 0x0a0000-0x0effff at 0xc00a0000
bios32: Found BIOS32 Service Directory header at 0xc00ffe80
bios32: Entry =3D 0xffe90 (c00ffe90)  Rev =3D 0  Len =3D 1
pcibios: PCI BIOS entry at 0xf0000+0xbfee
pnpbios: Found PnP BIOS data at 0xc00fe2d0
pnpbios: Entry =3D f0000:e2f4  Rev =3D 1.0
pnpbios: Event flag at 4b4
Other BIOS signatures found:
WARNING: VIMAGE (virtualized network stack) is a highly experimental featur=
e.
ULE: setup cpu 0
wlan: <802.11 Link Layer>
firmware: 'iwi_bss' version 300: 191154 bytes loaded at 0xc11d4000
firmware: 'iwi_ibss' version 300: 185428 bytes loaded at 0xc1205764
firmware: 'iwi_monitor' version 300: 187836 bytes loaded at 0xc1235000
snd_unit_init() u=3D0x00ff8000 [512] d=3D0x00007c00 [32] c=3D0x000003ff [10=
24]
feeder_register: snd_unit=3D-1 snd_maxautovchans=3D16 latency=3D5 feeder_ra=
te_min=3D1 feeder_rate_max=3D2016000 feeder_rate_round=3D25
kbd: new array size 4
kbd1 at kbdmux0
mem: <memory>
Pentium Pro MTRR support enabled
nfslock: pseudo-device
null: <null device, zero device>
random: <entropy source, Software, Yarrow>
io: <I/O>
hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2
ACPI: RSDP 0xfde50 00014 (v00 DELL  )
ACPI: RSDT 0xfde64 0002C (v01 DELL    CPi R   27D40107 ASL  00000061)
ACPI: FACP 0xfde90 00074 (v01 DELL    CPi R   27D40107 ASL  00000061)
ACPI: DSDT 0xfffe4000 0314E (v01 INT430 SYSFexxx 00001001 MSFT 0100000E)
ACPI: FACS 0x7ffff800 00040
ACPI: BOOT 0xfdf04 00028 (v01 DELL    CPi R   27D40107 ASL  00000061)
acpi0: <DELL CPi R  > on motherboard
acpi0: [MPSAFE]
acpi0: [ITHREAD]
acpi0: wakeup code va 0xc51e7000 pa 0x1000
atpic: Programming IRQ9 as level/low
pci_open(1):	mode 1 addr port (0x0cf8) is 0x80010014
pci_open(1a):	mode1res=3D0x80000000 (0x80000000)
pci_cfgcheck:	device 0 [class=3D060000] [hdr=3D00] is there (id=3D1a308086)
pcibios: BIOS version 2.10
acpi_bus_number: root bus has no _BBN, assuming 0
AcpiOsDerivePciId: \\_SB_.PCI0.ISAB.FDIS -> bus 0 dev 31 func 0
acpi_bus_number: root bus has no _BBN, assuming 0
AcpiOsDerivePciId: \\_SB_.PCI0.USB1.AD1_ -> bus 0 dev 29 func 1
acpi_bus_number: root bus has no _BBN, assuming 0
AcpiOsDerivePciId: \\_SB_.PCI0.ISAB.PIRQ -> bus 0 dev 31 func 0
acpi0: reservation of 0, 9fc00 (3) failed
acpi0: reservation of 100000, 7fef0000 (3) failed
ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10
Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0
cpu0: <ACPI CPU> on acpi0
cpu0: switching to generic Cx mode
pci_link0:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  9 10 11
  Validation          0   11   N     0  9 10 11
  After Disable       0  255   N     0  9 10 11
pci_link1:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  5 7
  Validation          0  255   N     0  5 7
  After Disable       0  255   N     0  5 7
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  9 10 11
  Validation          0   11   N     0  9 10 11
  After Disable       0  255   N     0  9 10 11
pci_link3:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  5 7 9 10 11
  Validation          0   11   N     0  5 7 9 10 11
  After Disable       0  255   N     0  5 7 9 10 11
acpi_acad0: <AC Adapter> on acpi0
battery0: <ACPI Control Method Battery> on acpi0
battery1: <ACPI Control Method Battery> on acpi0
acpi_lid0: <Control Method Lid Switch> on acpi0
acpi_button0: <Power Button> on acpi0
acpi_button1: <Sleep Button> on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
ACPI: Found matching pin for 0.31.INTA at func 1: 255
ACPI: Found matching pin for 0.31.INTB at func 5: 11
pci_link1: BIOS IRQ 11 for 0.31.INTB is invalid
ACPI: Found matching pin for 0.29.INTA at func 0: 11
ACPI: Found matching pin for 0.29.INTC at func 2: 11
pci0: <ACPI PCI bus> on pcib0
pci0: domain=3D0, physical bus=3D0
found->	vendor=3D0x8086, dev=3D0x1a30, revid=3D0x04
	domain=3D0, bus=3D0, slot=3D0, func=3D0
	class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0
	cmdreg=3D0x0106, statreg=3D0x2090, cachelnsz=3D0 (dwords)
	lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns)
	map[10]: type Prefetchable Memory, range 32, base 0xe8000000, size 26, ena=
bled
found->	vendor=3D0x8086, dev=3D0x1a31, revid=3D0x04
	domain=3D0, bus=3D0, slot=3D1, func=3D0
	class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0
	cmdreg=3D0x0107, statreg=3D0x00a0, cachelnsz=3D0 (dwords)
	lattimer=3D0x20 (960 ns), mingnt=3D0x0e (3500 ns), maxlat=3D0x00 (0 ns)
found->	vendor=3D0x8086, dev=3D0x2482, revid=3D0x02
	domain=3D0, bus=3D0, slot=3D29, func=3D0
	class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D1
	cmdreg=3D0x0005, statreg=3D0x0280, cachelnsz=3D0 (dwords)
	lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns)
	intpin=3Da, irq=3D11
	map[20]: type I/O Port, range 32, base 0xbf80, size  5, enabled
pcib0: matched entry for 0.29.INTA (src \\_SB_.PCI0.LNKA:0)
pcib0: slot 29 INTA routed to irq 11 via \\_SB_.PCI0.LNKA
found->	vendor=3D0x8086, dev=3D0x2487, revid=3D0x02
	domain=3D0, bus=3D0, slot=3D29, func=3D2
	class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D0
	cmdreg=3D0x0005, statreg=3D0x0280, cachelnsz=3D0 (dwords)
	lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns)
	intpin=3Dc, irq=3D11
	map[20]: type I/O Port, range 32, base 0xbf20, size  5, enabled
pcib0: matched entry for 0.29.INTC (src \\_SB_.PCI0.LNKC:0)
pcib0: slot 29 INTC routed to irq 11 via \\_SB_.PCI0.LNKC
found->	vendor=3D0x8086, dev=3D0x2448, revid=3D0x42
	domain=3D0, bus=3D0, slot=3D30, func=3D0
	class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0
	cmdreg=3D0x0107, statreg=3D0x0080, cachelnsz=3D0 (dwords)
	lattimer=3D0x00 (0 ns), mingnt=3D0x06 (1500 ns), maxlat=3D0x00 (0 ns)
found->	vendor=3D0x8086, dev=3D0x248c, revid=3D0x02
	domain=3D0, bus=3D0, slot=3D31, func=3D0
	class=3D06-01-00, hdrtype=3D0x00, mfdev=3D1
	cmdreg=3D0x010f, statreg=3D0x0280, cachelnsz=3D0 (dwords)
	lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns)
found->	vendor=3D0x8086, dev=3D0x248a, revid=3D0x02
	domain=3D0, bus=3D0, slot=3D31, func=3D1
	class=3D01-01-8a, hdrtype=3D0x00, mfdev=3D0
	cmdreg=3D0x0005, statreg=3D0x0280, cachelnsz=3D0 (dwords)
	lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns)
	intpin=3Da, irq=3D255
	map[20]: type I/O Port, range 32, base 0xbfa0, size  4, enabled
	map[24]: type Memory, range 32, base 0, size 10, memory disabled
found->	vendor=3D0x8086, dev=3D0x2485, revid=3D0x02
	domain=3D0, bus=3D0, slot=3D31, func=3D5
	class=3D04-01-00, hdrtype=3D0x00, mfdev=3D0
	cmdreg=3D0x0005, statreg=3D0x0280, cachelnsz=3D0 (dwords)
	lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns)
	intpin=3Db, irq=3D11
	map[10]: type I/O Port, range 32, base 0xd800, size  8, enabled
	map[14]: type I/O Port, range 32, base 0xdc80, size  6, enabled
pcib0: matched entry for 0.31.INTB (src \\_SB_.PCI0.LNKB:0)
pci_link1: Picked IRQ 9 with weight 0
pcib0: slot 31 INTB routed to irq 9 via \\_SB_.PCI0.LNKB
found->	vendor=3D0x8086, dev=3D0x2486, revid=3D0x02
	domain=3D0, bus=3D0, slot=3D31, func=3D6
	class=3D07-03-00, hdrtype=3D0x00, mfdev=3D0
	cmdreg=3D0x0005, statreg=3D0x0280, cachelnsz=3D0 (dwords)
	lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns)
	intpin=3Db, irq=3D11
	map[10]: type I/O Port, range 32, base 0xd400, size  8, enabled
	map[14]: type I/O Port, range 32, base 0xdc00, size  7, enabled
pcib0: matched entry for 0.31.INTB (src \\_SB_.PCI0.LNKB:0)
pcib0: slot 31 INTB routed to irq 9 via \\_SB_.PCI0.LNKB
agp0: <Intel 82845 host to AGP bridge> on hostb0
agp0: allocating GATT for aperture of size 64M
pcib1: <ACPI PCI-PCI bridge> at device 1.0 on pci0
pcib1:   domain            0
pcib1:   secondary bus     1
pcib1:   subordinate bus   1
pcib1:   I/O decode        0xc000-0xcfff
pcib1:   memory decode     0xfc000000-0xfdffffff
pcib1:   prefetched decode 0xe0000000-0xe7ffffff
ACPI: Found matching pin for 1.0.INTA at func 0: 11
pci1: <ACPI PCI bus> on pcib1
pci1: domain=3D0, physical bus=3D1
found->	vendor=3D0x1002, dev=3D0x4c66, revid=3D0x01
	domain=3D0, bus=3D1, slot=3D0, func=3D0
	class=3D03-00-00, hdrtype=3D0x00, mfdev=3D0
	cmdreg=3D0x01a7, statreg=3D0x02b0, cachelnsz=3D8 (dwords)
	lattimer=3D0x20 (960 ns), mingnt=3D0x08 (2000 ns), maxlat=3D0x00 (0 ns)
	intpin=3Da, irq=3D11
	powerspec 2  supports D0 D1 D2 D3  current D0
	map[10]: type Prefetchable Memory, range 32, base 0xe0000000, size 27, ena=
bled
pcib1: requested memory range 0xe0000000-0xe7ffffff: good
	map[14]: type I/O Port, range 32, base 0xc000, size  8, enabled
pcib1: requested I/O range 0xc000-0xc0ff: in range
	map[18]: type Memory, range 32, base 0xfcff0000, size 16, enabled
pcib1: requested memory range 0xfcff0000-0xfcffffff: good
pcib1: matched entry for 1.0.INTA (src \\_SB_.PCI0.LNKA:0)
pcib1: slot 0 INTA routed to irq 11 via \\_SB_.PCI0.LNKA
vgapci0: <VGA-compatible display> port 0xc000-0xc0ff mem 0xe0000000-0xe7fff=
fff,0xfcff0000-0xfcffffff irq 11 at device 0.0 on pci1
drm0: <ATI Radeon Lf RV250 Mobility 9000 M9 / FireMV 2400 PCI> on vgapci0
vgapci0: child drm0 requested pci_enable_busmaster
info: [drm] AGP at 0xe8000000 64MB
info: [drm] Initialized radeon 1.31.0 20080613
uhci0: <Intel 82801CA/CAM (ICH3) USB controller USB-A> port 0xbf80-0xbf9f i=
rq 11 at device 29.0 on pci0
uhci0: [MPSAFE]
uhci0: [ITHREAD]
usbus0: <Intel 82801CA/CAM (ICH3) USB controller USB-A> on uhci0
uhci1: <Intel 82801CA/CAM (ICH3) USB controller USB-C> port 0xbf20-0xbf3f i=
rq 11 at device 29.2 on pci0
uhci1: [MPSAFE]
uhci1: [ITHREAD]
usbus1: <Intel 82801CA/CAM (ICH3) USB controller USB-C> on uhci1
pcib2: <ACPI PCI-PCI bridge> at device 30.0 on pci0
pcib2:   domain            0
pcib2:   secondary bus     2
pcib2:   subordinate bus   16
pcib2:   I/O decode        0xe000-0xffff
pcib2:   memory decode     0xf4000000-0xfbffffff
pcib2:   no prefetched decode
pcib2:   Subtractively decoded bridge.
ACPI: Found matching pin for 2.1.INTA at func 0: 255
ACPI: Found matching pin for 2.1.INTA at func 1: 255
ACPI: Found matching pin for 2.1.INTA at func 2: 11
ACPI: Found matching pin for 2.0.INTA at func 0: 11
pci2: <ACPI PCI bus> on pcib2
pci2: domain=3D0, physical bus=3D2
found->	vendor=3D0x10b7, dev=3D0x9200, revid=3D0x78
	domain=3D0, bus=3D2, slot=3D0, func=3D0
	class=3D02-00-00, hdrtype=3D0x00, mfdev=3D0
	cmdreg=3D0x0117, statreg=3D0x0210, cachelnsz=3D8 (dwords)
	lattimer=3D0x20 (960 ns), mingnt=3D0x0a (2500 ns), maxlat=3D0x0a (2500 ns)
	intpin=3Da, irq=3D11
	powerspec 2  supports D0 D1 D2 D3  current D0
	map[10]: type I/O Port, range 32, base 0xec80, size  7, enabled
pcib2: requested I/O range 0xec80-0xecff: in range
	map[14]: type Memory, range 32, base 0xf8fffc00, size  7, enabled
pcib2: requested memory range 0xf8fffc00-0xf8fffc7f: good
pcib2: matched entry for 2.0.INTA (src \\_SB_.PCI0.LNKC:0)
pcib2: slot 0 INTA routed to irq 11 via \\_SB_.PCI0.LNKC
found->	vendor=3D0x104c, dev=3D0xac42, revid=3D0x00
	domain=3D0, bus=3D2, slot=3D1, func=3D0
	class=3D06-07-00, hdrtype=3D0x02, mfdev=3D1
	cmdreg=3D0x0000, statreg=3D0x0210, cachelnsz=3D8 (dwords)
	lattimer=3D0x20 (960 ns), mingnt=3D0x40 (16000 ns), maxlat=3D0x07 (1750 ns)
	intpin=3Da, irq=3D255
	powerspec 2  supports D0 D1 D2 D3  current D0
	map[10]: type Memory, range 32, base 0, size 12, memory disabled
found->	vendor=3D0x104c, dev=3D0xac42, revid=3D0x00
	domain=3D0, bus=3D2, slot=3D1, func=3D1
	class=3D06-07-00, hdrtype=3D0x02, mfdev=3D1
	cmdreg=3D0x0000, statreg=3D0x0210, cachelnsz=3D8 (dwords)
	lattimer=3D0x20 (960 ns), mingnt=3D0x40 (16000 ns), maxlat=3D0x07 (1750 ns)
	intpin=3Da, irq=3D255
	powerspec 2  supports D0 D1 D2 D3  current D0
	map[10]: type Memory, range 32, base 0, size 12, memory disabled
found->	vendor=3D0x104c, dev=3D0x8027, revid=3D0x00
	domain=3D0, bus=3D2, slot=3D1, func=3D2
	class=3D0c-00-10, hdrtype=3D0x00, mfdev=3D1
	cmdreg=3D0x0116, statreg=3D0x0210, cachelnsz=3D8 (dwords)
	lattimer=3D0x20 (960 ns), mingnt=3D0x02 (500 ns), maxlat=3D0x04 (1000 ns)
	intpin=3Da, irq=3D11
	powerspec 2  supports D0 D2 D3  current D0
	map[10]: type Memory, range 32, base 0xf8fff000, size 11, enabled
pcib2: requested memory range 0xf8fff000-0xf8fff7ff: good
	map[14]: type Memory, range 32, base 0xf8ff8000, size 14, enabled
pcib2: requested memory range 0xf8ff8000-0xf8ffbfff: good
pcib2: matched entry for 2.1.INTA (src \\_SB_.PCI0.LNKD:0)
pcib2: slot 1 INTA routed to irq 11 via \\_SB_.PCI0.LNKD
xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0xec80-0xecff mem 0xf8fffc00-0=
xf8fffc7f irq 11 at device 0.0 on pci2
xl0: using memory mapped I/O
xl0: media options word: a
xl0: found MII/AUTO
miibus0: <MII bus> on xl0
ukphy0: <Generic IEEE 802.3u media interface> PHY 24 on miibus0
ukphy0: OUI 0x00105a, model 0x0000, rev. 0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
xl0: bpf attached
xl0: Ethernet address: 00:08:74:e9:c9:41
xl0: [MPSAFE]
xl0: [ITHREAD]
cbb0: <TI4451 PCI-CardBus Bridge> at device 1.0 on pci2
pcib2: cbb0 requested memory range 0x0-0xffffffff: good
cbb0: Lazy allocation of 0x1000 bytes rid 0x10 type 3 at 0x80000000
cbb0: Found memory at 80000000
cbb0: Secondary bus is 4
cbb0: Setting primary bus to 2
cbb0: Secondary bus set to 3 subbus 4
cardbus0: <CardBus bus> on cbb0
pccard0: <16-bit PCCard bus> on cbb0
pcib2: matched entry for 2.1.INTA (src \\_SB_.PCI0.LNKD:0)
pcib2: slot 1 INTA routed to irq 11 via \\_SB_.PCI0.LNKD
cbb0: [MPSAFE]
cbb0: [FILTER]
cbb0: PCI Configuration space:
  0x00: 0xac42104c 0x02100007 0x06070000 0x00822008=20
  0x10: 0x80000000 0x020000a0 0x20040302 0xfffff000=20
  0x20: 0x00000000 0xfffff000 0x00000000 0x0000fffc=20
  0x30: 0x00000000 0x0000fffc 0x00000000 0x0740010b=20
  0x40: 0x00d51028 0x00000001 0x00000000 0x00000000=20
  0x50: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0x60: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0x70: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0x80: 0x3024d021 0x00000600 0x000f0000 0x05033002=20
  0x90: 0x6064a6c0 0x00000000 0x00000000 0x00000000=20
  0xa0: 0xfe120001 0x00c00000 0x00000000 0x00000000=20
  0xb0: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0xc0: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0xd0: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0xe0: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0xf0: 0x00000000 0x00000000 0x00000000 0x00000000=20
cbb1: <TI4451 PCI-CardBus Bridge> at device 1.1 on pci2
pcib2: cbb1 requested memory range 0x0-0xffffffff: good
cbb1: Lazy allocation of 0x1000 bytes rid 0x10 type 3 at 0x80001000
cbb1: Found memory at 80001000
cbb1: Secondary bus is 5
cbb1: Setting primary bus to 2
cbb1: Secondary bus set to 5 subbus 6
cardbus1: <CardBus bus> on cbb1
pccard1: <16-bit PCCard bus> on cbb1
pcib2: matched entry for 2.1.INTA (src \\_SB_.PCI0.LNKD:0)
pcib2: slot 1 INTA routed to irq 11 via \\_SB_.PCI0.LNKD
cbb1: [MPSAFE]
cbb1: [FILTER]
cbb1: PCI Configuration space:
  0x00: 0xac42104c 0x02100007 0x06070000 0x00822008=20
  0x10: 0x80001000 0x020000a0 0x20060502 0xfffff000=20
  0x20: 0x00000000 0xfffff000 0x00000000 0x0000fffc=20
  0x30: 0x00000000 0x0000fffc 0x00000000 0x0740010b=20
  0x40: 0x00d51028 0x00000001 0x00000000 0x00000000=20
  0x50: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0x60: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0x70: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0x80: 0x3024d021 0x00000600 0x000f0000 0x05033002=20
  0x90: 0x6064a6c0 0x00000000 0x00000000 0x00000000=20
  0xa0: 0xfe120001 0x00c00000 0x00000000 0x00000000=20
  0xb0: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0xc0: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0xd0: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0xe0: 0x00000000 0x00000000 0x00000000 0x00000000=20
  0xf0: 0x00000000 0x00000000 0x00000000 0x00000000=20
fwohci0: <Texas Instruments PCI4451> mem 0xf8fff000-0xf8fff7ff,0xf8ff8000-0=
xf8ffbfff irq 11 at device 1.2 on pci2
fwohci0: [MPSAFE]
fwohci0: [ITHREAD]
fwohci0: OHCI version 1.0 (ROM=3D1)
fwohci0: No. of Isochronous channels is 4.
fwohci0: EUI64 42:4f:c0:00:07:2c:30:41
fwohci0: Phy 1394a available S400, 1 ports.
fwohci0: Link S400, max_rec 2048 bytes.
firewire0: <IEEE1394(FireWire) bus> on fwohci0
fwe0: <Ethernet over FireWire> on firewire0
if_fwe0: Fake Ethernet address: 42:4f:c0:2c:30:41
fwe0: bpf attached
fwe0: Ethernet address: 42:4f:c0:2c:30:41
fwip0: <IP over FireWire> on firewire0
fwip0: bpf attached
fwip0: Firewire address: 42:4f:c0:00:07:2c:30:41 @ 0xfffe00000000, S400, ma=
xrec 2048
sbp0: <SBP-2/SCSI over FireWire> on firewire0
dcons_crom0: <dcons configuration ROM> on firewire0
dcons_crom0: bus_addr 0xe0f440
fwohci0: Initiate bus reset
fwohci0: fwohci_intr_core: BUS reset
fwohci0: fwohci_intr_core: node_id=3D0x00000000, SelfID Count=3D1, CYCLEMAS=
TER mode
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <Intel ICH3 UDMA100 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177=
,0x376,0xbfa0-0xbfaf at device 31.1 on pci0
ata0: <ATA channel 0> on atapci0
ata0: reset tp1 mask=3D03 ostat0=3D50 ostat1=3D50
ata0: stat0=3D0x50 err=3D0x01 lsb=3D0x00 msb=3D0x00
ata0: stat1=3D0x00 err=3D0x01 lsb=3D0x14 msb=3D0xeb
ata0: reset tp2 stat0=3D50 stat1=3D00 devices=3D0x20001
ata0: [MPSAFE]
ata0: [ITHREAD]
ata1: <ATA channel 1> on atapci0
ata1: reset tp1 mask=3D03 ostat0=3D00 ostat1=3D00
ata1: stat0=3D0x00 err=3D0x00 lsb=3D0x00 msb=3D0x00
ata1: stat1=3D0x00 err=3D0x00 lsb=3D0x00 msb=3D0x00
ata1: reset tp2 stat0=3D00 stat1=3D00 devices=3D0x0
ata1: [MPSAFE]
ata1: [ITHREAD]
pcm0: <Intel ICH3 (82801CA)> port 0xd800-0xd8ff,0xdc80-0xdcbf irq 9 at devi=
ce 31.5 on pci0
pcm0: [MPSAFE]
pcm0: [ITHREAD]
pcm0: <Cirrus Logic CS4205 AC97 Codec (id =3D 0x4352595b)>
pcm0: Codec features mic channel, tone, simulated stereo, bass boost, 20 bi=
t DAC, 18 bit ADC, 5 bit master volume, SRS 3D Stereo Enhancement
pcm0: Primary codec extended features variable rate PCM, variable rate mic,=
 AMAP
pcm0: ac97 codec dac ready count: 0
pcm0: Mixer "vol":
pcm0: Mixer "bass":
pcm0: Mixer "treble":
pcm0: Mixer "pcm":
pcm0: Mixer "speaker":
pcm0: Mixer "line":
pcm0: Mixer "mic":
pcm0: Mixer "cd":
pcm0: Mixer "rec":
pcm0: Mixer "igain":
pcm0: Mixer "line1":
pcm0: Mixer "phin":
pcm0: Mixer "phout":
pcm0: Mixer "video":
pcm0: clone manager: deadline=3D750ms flags=3D0x8000001e
pcm0: sndbuf_setmap 7db78000, 4000; 0xc5319000 -> 7db78000
pcm0: sndbuf_setmap 7db7c000, 4000; 0xc531d000 -> 7db7c000
pci0: <simple comms, generic modem> at device 31.6 (no driver attached)
acpi_tz0: <Thermal Zone> on acpi0
psmcpnp0: <PS/2 mouse port> irq 12 on acpi0
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 0065
atkbd: keyboard ID 0x41ab (2)
kbd0 at atkbd0
kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000
atkbd0: [GIANT-LOCKED]
atkbd0: [ITHREAD]
psm0: current command byte:0065
psm0: <PS/2 Mouse> flags 0x6000 irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
psm0: [ITHREAD]
psm0: model GlidePoint, device ID 0-00, 2 buttons
psm0: config:00006000, flags:00000008, packet size:3
psm0: syncmask:c0, syncbits:00
atrtc0: <AT realtime clock> port 0x70-0x71,0x72-0x77 irq 8 on acpi0
atrtc0: registered as a time-of-day clock (resolution 1000000us)
atrtc0: [MPSAFE]
atrtc0: [FILTER]
Event timer "RTC" frequency 32768 Hz quality 0
attimer0: <AT timer> port 0x40-0x43,0x50-0x53 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
attimer0: [MPSAFE]
attimer0: [FILTER]
Event timer "i8254" frequency 1193182 Hz quality 100
fdc0: <floppy drive controller (FDE)> port 0x3f2-0x3f5,0x3f7 irq 6 drq 2 on=
 acpi0
fdc0: ic_type 90 part_id 80
fdc0: [FILTER]
uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
uart0: [FILTER]
uart0: fast interrupt
uart0: console (9600,n,8,1)
ppc0: using extended I/O port range
ppc0: SPP ECP  ECP+EPP
ppc0: <Parallel port> port 0x378-0x37f,0x778-0x77b irq 7 drq 3 on acpi0
ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/8 bytes threshold
ppc0: [MPSAFE]
ppc0: [ITHREAD]
ppbus0: <Parallel port bus> on ppc0
plip0: <PLIP network interface> on ppbus0
plip0: bpf attached
plip0: [MPSAFE]
plip0: [ITHREAD]
lpt0: <Printer> on ppbus0
lpt0: [MPSAFE]
lpt0: [ITHREAD]
lpt0: Interrupt-driven port
ppi0: <Parallel I/O> on ppbus0
ex_isa_identify()
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
unknown: status reg test failed ff
unknown: status reg test failed ff
unknown: status reg test failed ff
unknown: status reg test failed ff
unknown: status reg test failed ff
unknown: status reg test failed ff
ahc_isa_probe 13: ioport 0xdc00 alloc failed
ahc_isa_probe 14: ioport 0xec00 alloc failed
isa_probe_children: disabling PnP devices
pmtimer0 on isa0
ata: ata0 already exists; skipping it
ata: ata1 already exists; skipping it
atkbdc: atkbdc0 already exists; skipping it
atrtc: atrtc0 already exists; skipping it
attimer: attimer0 already exists; skipping it
fdc: fdc0 already exists; skipping it
ppc: ppc0 already exists; skipping it
sc: sc0 already exists; skipping it
uart: uart0 already exists; skipping it
isa_probe_children: probing non-PnP devices
orm0: <ISA Option ROM> at iomem 0xc0000-0xcffff pnpid ORM0000 on isa0
pcf0 failed to probe on isa0
sc0: <System console> at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=3D0x300>
sc0: fb0, kbd1, terminal emulator: scteken (teken terminal)
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
uart1: <ns8250> failed to probe at port 0x2f8-0x2ff irq 3 on isa0
isa_probe_children: probing PnP devices
acpi_perf0: <ACPI CPU Frequency Control> on cpu0
p4tcc0: <CPU Frequency Thermal Control> on cpu0
Device configuration finished.
Reducing kern.maxvnodes 133845 -> 100000
procfs registered
Timecounter "TSC" frequency 2392985896 Hz quality 800
Starting kernel event timers: i8254 @ 1000Hz, RTC @ 128Hz
Timecounters tick every 1.000 msec
vlan: initialized, using hash tables with chaining
Linux ELF exec handler installed
firewire0: 1 nodes, maxhop <=3D 0 cable IRM irm(0)  (me)=20
firewire0: bus manager 0=20
ipfw2 (+ipv6) initialized, divert enabled, nat loadable, rule-based forward=
ing enabled, default to deny, logging disabled
ipfw0: bpf attached
DUMMYNET 0xc75b4280 with IPv6 initialized (100409)
load_dn_sched dn_sched FIFO loaded
load_dn_sched dn_sched PRIO loaded
load_dn_sched dn_sched QFQ loaded
load_dn_sched dn_sched RR loaded
load_dn_sched dn_sched WF2Q+ loaded
lo0: bpf attached
hptrr: no controller detected.
ata0: Identifying devices: 00020001
ata0: New devices: 00020001
usbus0: 12Mbps Full Speed USB v1.0
usbus1: 12Mbps Full Speed USB v1.0
Status is 0x30000006
Status is 0x30000006
ugen0.1: <Intel> at usbus0
uhub0: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus0
Expensive timeout(9) function: 0xc08cd720(0xc79852c0) 0.109991632 s
ugen1.1: <Intel> at usbus1
uhub1: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus1
fdc0: output ready timeout
fdc0: output ready timeout
fdc0: output ready timeout
uhub0: 2 ports with 2 removable, self powered
uhub1: 2 ports with 2 removable, self powered
fdc0: output ready timeout
fdc0: output ready timeout
fdc0: output ready timeout
fdc0: output ready timeout
acpi_acad0: acline initialization start
acpi_acad0: On Line
acpi_acad0: acline initialization done, tried 1 times
battery0: battery initialization start
battery0: battery initialization done, tried 1 times
battery1: battery initialization start
battery1: battery initialization done, tried 1 times
ata0-slave: pio=3DPIO4 wdma=3DWDMA2 udma=3DUDMA33 cable=3D40 wire
ata0-master: pio=3DPIO4 wdma=3DWDMA2 udma=3DUDMA100 cable=3D80 wire
ad0: setting UDMA100
ad0: 114473MB <FUJITSU MHV2120AH 000000A0> at ata0-master UDMA100=20
ad0: 234441648 sectors [232581C/16H/63S] 16 sectors/interrupt 1 depth queue
GEOM: new disk ad0
acd0: setting UDMA33
acd0: <Samsung CD-RW/DVD-ROM SN-324B/U101> CDRW drive at ata0 as slave
acd0:  2048KB buffer, UDMA33=20
acd0: Reads: CDR, CDRW, CDDA stream, DVDROM, DVDR, packet
acd0: Writes: CDR, CDRW, test write, burnproof
acd0: Audio: play, 255 volume levels
acd0: Mechanism: ejectable tray, unlocked
acd0: Medium: no/blank disc
ata1: Identifying devices: 00000000
ata1: New devices: 00000000
pcm0: measured ac97 link rate at 47997 Hz, will use 48000 Hz
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=3D0x24 ascq=3D0x00=20
(probe7:ata0:0:1:0): SCSI status error
(probe7:ata0:0:1:0): INQUIRY. CDB: 12 1 0 0 ff 0=20
(probe7:ata0:0:1:0): CAM status: SCSI Status Error
(probe7:ata0:0:1:0): SCSI status: Check Condition
(probe7:ata0:0:1:0): SCSI sense: ILLEGAL REQUEST asc:24,0 (Invalid field in=
 CDB)
(probe7:ata0:0:1:0): Error 22, Unretryable error
(probe7:ata0:0:1:0): Down reving Protocol Version from 2 to 0?
(probe7:ata0:0:1:0): SCSI status error
(probe7:ata0:0:1:0): TEST UNIT READY. CDB: 0 0 0 0 0 0=20
(probe7:ata0:0:1:0): CAM status: SCSI Status Error
(probe7:ata0:0:1:0): SCSI status: Check Condition
(probe7:ata0:0:1:0): SCSI sense: NOT READY asc:3a,0 (Medium not present)
(probe7:ata0:0:1:0): Error 6, Unretryable error
fdc0: output ready timeout
fdc0: input ready timeout
fdc0: input ready timeout
fdc0: output ready timeout
fdc0: input ready timeout
fdc0: input ready timeout
fdc0: output ready timeout
fdc0: input ready timeout
fdc0: input ready timeout
fdc0: output ready timeout
fdc0: input ready timeout
fdc0: input ready timeout
(probe0:sbp0:0:0:0): Error 22, Unretryable error
(probe1:sbp0:0:1:0): Error 22, Unretryable error
(probe2:sbp0:0:2:0): Error 22, Unretryable error
(probe4:sbp0:0:4:0): Error 22, Unretryable error
(probe5:sbp0:0:5:0): Error 22, Unretryable error
(probe6:sbp0:0:6:0): Error 22, Unretryable error
(probe3:sbp0:0:3:0): Error 22, Unretryable error
pass0 at ata0 bus 0 scbus1 target 1 lun 0
pass0: <SAMSUNG CDRW/DVD SN-324B U101> Removable CD-ROM SCSI-0 device=20
pass0: 33.000MB/s transfers
WARNING: WITNESS option enabled, expect reduced performance.
WARNING: DIAGNOSTIC option enabled, expect reduced performance.
(cd0:ata0:0:1:0): SCSI status error
(cd0:ata0:0:1:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0=20
(cd0:ata0:0:1:0): CAM status: SCSI Status Error
(cd0:ata0:0:1:0): SCSI status: Check Condition
(cd0:ata0:0:1:0): SCSI sense: NOT READY asc:3a,0 (Medium not present)
(cd0:ata0:0:1:0): Error 6, Unretryable error
cd0 at ata0 bus 0 scbus1 target 1 lun 0
cd0: <SAMSUNG CDRW/DVD SN-324B U101> Removable CD-ROM SCSI-0 device=20
cd0: 33.000MB/s transfers
cd0: Attempt to query device size failed: NOT READY, Medium not present
GEOM: new disk cd0
(cd0:ata0:0:1:0): SCSI status error
(cd0:ata0:0:1:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0=20
(cd0:ata0:0:1:0): CAM status: SCSI Status Error
(cd0:ata0:0:1:0): SCSI status: Check Condition
(cd0:ata0:0:1:0): SCSI sense: NOT READY asc:3a,0 (Medium not present)
(cd0:ata0:0:1:0): Error 6, Unretryable error
(cd0:ata0:0:1:0): SCSI status error
(cd0:ata0:0:1:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0=20
(cd0:ata0:0:1:0): CAM status: SCSI Status Error
(cd0:ata0:0:1:0): SCSI status: Check Condition
(cd0:ata0:0:1:0): SCSI sense: NOT READY asc:3a,0 (Medium not present)
(cd0:ata0:0:1:0): Error 6, Unretryable error
Trying to mount root from ufs:/dev/ad0s4a
ct_to_ts([2010-07-30 01:34:55]) =3D 1280453695.000000000
start_init: trying /sbin/init
Setting hostuuid: 44454c4c-5300-1037-8044-c4c04f4a3231.
Setting hostid: 0x910528f4.
Entropy harvesting:
 interrupts
 ethernet
 point_to_point
 kickstart
=2E
Starting file system checks:
/dev/ad0s4a: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s4a: clean, 511481 free (1025 frags, 63807 blocks, 0.1% fragmentati=
on)
/dev/ad0s2a: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s2a: clean, 546758 free (2542 frags, 68027 blocks, 0.3% fragmentati=
on)
/dev/ad0s2d: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s2d: clean, 996731 free (36371 frags, 120045 blocks, 2.1% fragmenta=
tion)
/dev/ad0s4d: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s4d: clean, 898491 free (38579 frags, 107489 blocks, 2.2% fragmenta=
tion)
/dev/ad0s4f: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s4f: clean, 1408260 free (108044 frags, 162527 blocks, 1.8% fragmen=
tation)
/dev/ad0s4g: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s4g: clean, 13465261 free (181285 frags, 1660497 blocks, 0.7% fragm=
entation)
/dev/ad0s4h: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s4h: clean, 4146674 free (13994 frags, 516585 blocks, 0.1% fragment=
ation)
/dev/ad0s1a: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s1a: clean, 512052 free (500 frags, 63944 blocks, 0.1% fragmentatio=
n)
/dev/ad0s1d: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s1d: clean, 915274 free (282 frags, 114374 blocks, 0.0% fragmentati=
on)
/dev/ad0s3a: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s3a: clean, 519903 free (1751 frags, 64769 blocks, 0.2% fragmentati=
on)
/dev/ad0s3d: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s3d: clean, 968559 free (49415 frags, 114893 blocks, 2.8% fragmenta=
tion)
/dev/ad0s4e: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ad0s4e: clean, 293260 free (2340 frags, 36365 blocks, 0.2% fragmentati=
on)
Mounting local file systems:
WARNING: TMPFS is considered to be a highly experimental feature in FreeBSD.
=2E
Setting hostname: localhost
=2E
Starting Network: lo0 xl0 fwe0 fwip0 plip0 ipfw0.
lo0: flags=3D8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=3D3<RXCSUM,TXCSUM>
	inet 127.0.0.1 netmask 0xff000000=20
	inet6 ::1 prefixlen 128=20
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6=20
	nd6 options=3D21<PERFORMNUD,AUTO_LINKLOCAL>
xl0: flags=3D8802<BROADCAST,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=3D80009<RXCSUM,VLAN_MTU,LINKSTATE>
	ether 00:08:74:e9:c9:41
	media: Ethernet autoselect (none)
	status: no carrier
fwe0: flags=3D8802<BROADCAST,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=3D8<VLAN_MTU>
	ether 42:4f:c0:2c:30:41
	ch 1 dma -1
fwip0: flags=3D8802<BROADCAST,SIMPLEX,MULTICAST> metric 0 mtu 1500
	lladdr 42.4f.c0.0.7.2c.30.41.a.2.ff.fe.0.0.0.0
plip0: flags=3D8810<POINTOPOINT,SIMPLEX,MULTICAST> metric 0 mtu 1500
ipfw0: flags=3D8801<UP,SIMPLEX,MULTICAST> metric 0 mtu 65536
Starting devd.
Starting Network: xl0.
xl0: flags=3D8802<BROADCAST,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=3D80009<RXCSUM,VLAN_MTU,LINKSTATE>
	ether 00:08:74:e9:c9:41
	media: Ethernet autoselect (none)
	status: no carrier
Starting Network: fwe0.
fwe0: flags=3D8802<BROADCAST,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=3D8<VLAN_MTU>
	ether 42:4f:c0:2c:30:41
	ch 1 dma -1
Starting Network: fwip0.
fwip0: flags=3D8802<BROADCAST,SIMPLEX,MULTICAST> metric 0 mtu 1500
	lladdr 42.4f.c0.0.7.2c.30.41.a.2.ff.fe.0.0.0.0
Starting Network: plip0.
plip0: flags=3D8810<POINTOPOINT,SIMPLEX,MULTICAST> metric 0 mtu 1500
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
add net fe80::: gateway ::1
add net ff02::: gateway ::1
Flushed all rules.
00100 allow ip from any to any via lo0
00200 deny ip from any to 127.0.0.0/8
00300 deny ip from 127.0.0.0/8 to any
00400 deny log ip from any to any ipoptions ssrr,lsrr,rr,ts
00500 deny log ip from any to any frag
00600 allow icmp from any to any icmptypes 0,3,4,8,11,12
00700 allow udp from 0.0.0.0 68 to 255.255.255.255 dst-port 67 keep-state
00800 deny ip from any to 255.255.255.255
00900 deny ip from 255.255.255.255 to any
01000 allow udp from any 67 to any dst-port 68 in keep-state
01100 deny log ip from any to any
Firewall rules loaded.
Firewall logging enabled.
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/=
lib/compat /usr/local/lib/gcc44 /usr/local/lib/gegl-0.1 /usr/local/lib/grap=
hviz /usr/local/lib/mysql /usr/local/lib/nss /usr/local/lib/pth /usr/local/=
lib/qt4
a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout
Clearing /tmp (X related).
Creating and/or trimming log files
=2E
Starting syslogd.
No core dumps found.
Additional ABI support:
 linux
=2E
Starting rpcbind.
Starting lpd.
Updating motd:
=2E
Starting powerd.
nic_init invoked with argument faststart; flags: -n 1=20
Starting nic_init.
Script /usr/local/etc/rc.d/nic_init interrupted
Starting default moused
=2E
Starting snmpd.
Setting the mixer vol from 25:25 to 25:25.
Performing sanity check on apache22 configuration:
httpd: Could not reliably determine the server's fully qualified domain nam=
e, using ::1 for ServerName
Syntax OK
Starting apache22.
httpd: Could not reliably determine the server's fully qualified domain nam=
e, using ::1 for ServerName
Configuring syscons:
 blanktime
=2E
Starting sshd.
Starting cron.
Local package initialization:
 rtc
link_elf: symbol callout_reset undefined
kldload:=20
can't load /usr/local/modules/rtc.ko
:=20
No such file or directory
=2E
Starting background file system checks in 60 seconds.

Thu Jul 29 18:35:16 PDT 2010
lock order reversal:
 1st 0xd950355c bufwait (bufwait) @ /usr/src/sys/kern/vfs_bio.c:2613
 2nd 0xc8bdd600 dirhash (dirhash) @ /usr/src/sys/ufs/ufs/ufs_dirhash.c:283
KDB: stack backtrace:
db_trace_self_wrapper(c0cccd8e,c53da858,c08d89f5,c08c7b1b,c0ccff64,...) at =
0xc04dad46 =3D db_trace_self_wrapper+0x26
kdb_backtrace(c08c7b1b,c0ccff64,c7548370,c754c2d0,c53da8b4,...) at 0xc08c3a=
09 =3D kdb_backtrace+0x29
_witness_debugger(c0ccff64,c8bdd600,c0cf6c8f,c754c2d0,c0cf6914,...) at 0xc0=
8d89f5 =3D _witness_debugger+0x25
witness_checkorder(c8bdd600,9,c0cf6914,11b,0,...) at 0xc08d9c19 =3D witness=
_checkorder+0x839
_sx_xlock(c8bdd600,0,c0cf6914,11b,d9d8c79c,...) at 0xc0898d65 =3D _sx_xlock=
+0x85
ufsdirhash_acquire(0,e,c8bbe800,d95034fc,d9d8c79c,...) at 0xc0b15205 =3D uf=
sdirhash_acquire+0x35
ufsdirhash_remove(c8bd4828,d9d8c79c,79c,c53da944,c53da940,...) at 0xc0b1558=
4 =3D ufsdirhash_remove+0x14
ufs_dirremove(c8bdbaa0,c8ea7ae0,500940c,0,0,...) at 0xc0b18483 =3D ufs_dirr=
emove+0x133
ufs_rename(c53dabec,0,c8eaa550,c53dab98,0,...) at 0xc0b219ca =3D ufs_rename=
+0x113a
VOP_RENAME_APV(c0de57c0,c53dabec,c8eaa440,1,c53dab70,...) at 0xc0c0edd5 =3D=
 VOP_RENAME_APV+0xa5
kern_renameat(c8bc7840,ffffff9c,48819040,ffffff9c,48819060,...) at 0xc09311=
77 =3D kern_renameat+0x307
kern_rename(c8bc7840,48819040,48819060,0,c53dac7c,...) at 0xc0931326 =3D ke=
rn_rename+0x36
rename(c8bc7840,c53dacec,c53dad28,c0cce71c,0,...) at 0xc0931359 =3D rename+=
0x29
syscallenter(c8bc7840,c53dace4,c53dace4,0,0,...) at 0xc08d0bba =3D syscalle=
nter+0x25a
syscall(c53dad28) at 0xc0beba4f =3D syscall+0x4f
Xint0x80_syscall() at 0xc0bd30a1 =3D Xint0x80_syscall+0x21
--- syscall (128, FreeBSD ELF32, rename), eip =3D 0x4857235b, esp =3D 0xbfb=
fe83c, ebp =3D 0xbfbfe8c8 ---
Jul 29 18:35:50 localhost shutdown: shutdown by david:=20
Shutting down local packages:
=3D=3D> /usr/local/etc/rc.d/rtc.sh
kldunload:=20
can't find file rtc.ko

=2E
Stopping cron.
Stopping sshd.
Stopping apache22.
Waiting for PIDS: 1962
=2E
Stopping moused.
Stopping powerd.
Stopping lpd.
Stopping rpcbind.
Stopping devd.
Writing entropy file:
=2E
Terminated
=2E
Jul 29 18:35:55 localhost syslogd: exiting on signal 15
Enter full pathname of shell or RETURN for=20
/bin/sh
:=20
#=20
f
o
r
=20
p
=20
i
n
=20
a
=20
d
=20
e
=20
g
;
=20
d
o

>=20
m
o
u
n
t
=20
-
u
r
=20
/
d
e
v
/
a
d
0
s
4
$
p

>=20
d
o
n
e

#=20
m
o
u
n
t

/dev/ad0s4a on / (ufs, local, read-only)
devfs on /dev (devfs, local, multilabel)
tmpfs on /tmp (tmpfs, local)
/dev/ad0s4d on /usr (ufs, local, read-only)
/dev/ad0s4e on /var (ufs, local, read-only)
/dev/ad0s4g on /common (ufs, local, read-only)
procfs on /proc (procfs, local)
#=20
Status is 0x30000410
cbb1: card inserted: event=3D0x00000006, state=3D30000410
pccard1: chip_socket_enable
cbb_pcic_socket_enable:
cbb1: cbb_power: 5V
pccard1: read_cis
pcib2: pccard1 requested memory range 0x88000000-0xffffffff: good
cis mem map 0xd975f000 (resource: 0x88000000)
pccard1: CIS tuple chain:
CISTPL_DEVICE type=3Dfuncspec speed=3D100ns
 0x1 0x3 0xdc 00 0xff
CISTPL_DEVICE_A type=3Dfuncspec speed=3D100ns
 0x17 0x3 0xdc 00 0xff
unhandled CISTPL 0x14
CISTPL_NO_LINK
 0x14 00
CISTPL_VERS_1
 0x15 0x31 0x4 0x1 0x43 0x69 0x73 0x63 0x6f 0x20 0x53 0x79 0x73 0x74 0x65 0=
x6d
 0x73 00 0x33 0x35 0x30 0x20 0x53 0x65 0x72 0x69 0x65 0x73 0x20 0x57 0x69 0=
x72
 0x65 0x6c 0x65 0x73 0x73 0x20 0x4c 0x41 0x4e 0x20 0x41 0x64 0x61 0x70 0x74=
 0x65
 0x72 00 0xff
CISTPL_MANFID
 0x20 0x4 0x5f 0x1 0xa 00
CISTPL_FUNCID
 0x21 0x2 0x6 00
CISTPL_FUNCE
 0x22 0x2 0x1 0x7
CISTPL_FUNCE
 0x22 0x5 0x2 0xc0 0xd8 0xa7 00
CISTPL_FUNCE
 0x22 0x2 0x3 0x7
CISTPL_CONFIG
 0x1a 0x5 0x1 0x5 0xe0 0x3 0x7
CISTPL_CFTABLE_ENTRY
 0x1b 0xc 0xc5 0x1 0x1a 0x9 0x55 0x66 0x1 0x55 0x46 0x30 0xff 0xff
CISTPL_END
 ff
pccard1: check_cis_quirks
pccard1: CIS version PCCARD 2.0 or 2.1
pccard1: CIS info: Cisco Systems, 350 Series Wireless LAN Adapter
pccard1: Manufacturer code 0x15f, product 0xa
pccard1: function 0: network adapter, ccr addr 0x3e0 mask 0x7
pccard1: function 0, config table entry 5: I/O card; irq mask 0xffff; iomas=
k 0x6, iospace 0-0x3f; io16 irqlevel
pccard1: functions scanning
pccard1: Card has 1 functions. pccard_mfc is 0
pccard1: I/O rid 0 start 0 end 0xffffffff
pcib2: pccard1 requested I/O range 0x100-0xffffffff: in range
cbb_pcic_socket_enable:
pcib2: pccard1 requested memory range 0x88000000-0xffffffff: good
pccard1: ccr_res =3D=3D 0x88000000-0x880003ff, base=3D0x3e0
pccard1: function 0 CCR at 0 offset 0x3e0: 0x45 0x80 0x22 0, 0 0 0 0, 0
an0: <Cisco Systems 350 Series Wireless LAN Adapter> at port 0x100-0x13f ir=
q 11 function 0 config 5 on pccard1
Kernel page fault with the following non-sleepable locks held:
exclusive rw ifnet_rw (ifnet_rw) r =3D 0 (0xc0f96044) locked @ /usr/src/sys=
/net/if.c:402
KDB: stack backtrace:
db_trace_self_wrapper(c0cccd8e,c52a29c4,c08d89f5,192,2,...) at 0xc04dad46 =
=3D db_trace_self_wrapper+0x26
kdb_backtrace(192,2,ffffffff,c0f69acc,c52a29fc,...) at 0xc08c3a09 =3D kdb_b=
acktrace+0x29
_witness_debugger(c0ccf510,c52a2a10,4,1,0,...) at 0xc08d89f5 =3D _witness_d=
ebugger+0x25
witness_warn(5,0,c0d06d5e,3,c7600d48,...) at 0xc08d9f1d =3D witness_warn+0x=
20d
trap(c52a2a9c) at 0xc0bebcce =3D trap+0x19e
calltrap() at 0xc0bd303c =3D calltrap+0x6
--- trap 0xc, eip =3D 0xc0944a35, esp =3D 0xc52a2adc, ebp =3D 0xc52a2afc ---
ifindex_alloc_locked(c0f96044,c0cd9075,192,192,1,...) at 0xc0944a35 =3D ifi=
ndex_alloc_locked+0x65
if_alloc(6,c7e63380,1,c52a2b60,0,...) at 0xc0945232 =3D if_alloc+0x72
an_attach(c8e69000,0,0,c52a2b88,c06e472d,...) at 0xc11ad9ce =3D an_attach+0=
x1e
an_pccard_attach(c7e63380,c780f85c,c0dbef1c,c0cb977d,80000000,...) at 0xc11=
b205a =3D an_pccard_attach+0x9a
device_attach(c7e63380,c0dc6950,c78ada0c,c78ada1a,3e0,...) at 0xc08be12f =
=3D device_attach+0x36f
pccard_probe_and_attach_child(c7e63380,c7e63280,ffffffff,0,c79b5d80,...) at=
 0xc06e556b =3D pccard_probe_and_attach_child+0x6bb
pccard_attach_card(c79b5d80,c770f934,c0d6ff08,30000410,0,...) at 0xc06e5a1b=
 =3D pccard_attach_card+0x28b
exca_insert(c783d804,c0ca583e,6,30000410,c8,...) at 0xc064225a =3D exca_ins=
ert+0x5a
cbb_event_thread(c783d800,c52a2d28,c0cc494f,343,c7600d48,...) at 0xc06ea26f=
 =3D cbb_event_thread+0x29f
fork_exit(c06e9fd0,c783d800,c52a2d28) at 0xc08664a8 =3D fork_exit+0xb8
fork_trampoline() at 0xc0bd30b4 =3D fork_trampoline+0x8
--- trap 0, eip =3D 0, esp =3D 0xc52a2d60, ebp =3D 0 ---


Fatal trap 12: page fault while in kernel mode
cpuid =3D 0; apic id =3D 00
fault virtual address	=3D 0x18
fault code		=3D supervisor read, page not present
instruction pointer	=3D 0x20:0xc0944a35
stack pointer	        =3D 0x28:0xc52a2adc
frame pointer	        =3D 0x28:0xc52a2afc
code segment		=3D base 0x0, limit 0xfffff, type 0x1b
			=3D DPL 0, pres 1, def32 1, gran 1
processor eflags	=3D interrupt enabled, resume, IOPL =3D 0
current process		=3D 6 (cbb1 event thread)
panic: from debugger
cpuid =3D 0
KDB: stack backtrace:
Uptime: 3m13s
Physical memory: 2031 MB
Dumping 112 MB: 97 81 65 49 33 17 1

------------------------------------------------------------------------
kernel config

options	CONFIG_AUTOGENERATED
ident	LAPTOP_30W
machine	i386
cpu	I686_CPU
cpu	I586_CPU
cpu	I486_CPU
makeoptions	DEBUG=3D-g
options	VIMAGE
options	ALT_BREAK_TO_DEBUGGER
options	BREAK_TO_DEBUGGER
options	DIAGNOSTIC
options	DEBUG_REDZONE
options	DEBUG_MEMGUARD
options	DDB_NUMSYM
options	KDB_TRACE
options	ZERO_COPY_SOCKETS
options	DUMMYNET
options	ACCEPT_FILTER_HTTP
options	ACCEPT_FILTER_DATA
options	LIBALIAS
options	IPDIVERT
options	IPFIREWALL_FORWARD
options	IPFIREWALL_VERBOSE_LIMIT=3D0
options	IPFIREWALL_VERBOSE
options	IPFIREWALL
options	FDC_DEBUG
options	USB_DEBUG
options	AH_SUPPORT_AR5416
options	IEEE80211_SUPPORT_MESH
options	IEEE80211_AMPDU_AGE
options	IEEE80211_DEBUG
options	AHD_REG_PRETTY_PRINT
options	AHC_REG_PRETTY_PRINT
options	ATA_STATIC_ID
options	SMP
options	MALLOC_DEBUG_MAXZONES=3D8
options	WITNESS_SKIPSPIN
options	WITNESS
options	INVARIANT_SUPPORT
options	INVARIANTS
options	DEADLKRES
options	GDB
options	DDB
options	KDB
options	INCLUDE_CONFIG_FILE
options	FLOWTABLE
options	MAC
options	AUDIT
options	HWPMC_HOOKS
options	KBD_INSTALL_CDEV
options	PRINTF_BUFR_SIZE=3D128
options	_KPOSIX_PRIORITY_SCHEDULING
options	P1003_1B_SEMAPHORES
options	SYSVSEM
options	SYSVMSG
options	SYSVSHM
options	STACK
options	KTRACE
options	SCSI_DELAY=3D5000
options	COMPAT_FREEBSD7
options	COMPAT_FREEBSD6
options	COMPAT_FREEBSD5
options	COMPAT_FREEBSD4
options	GEOM_LABEL
options	GEOM_PART_GPT
options	PSEUDOFS
options	PROCFS
options	CD9660
options	MSDOSFS
options	NFS_ROOT
options	NFSLOCKD
options	NFSSERVER
options	NFSCLIENT
options	MD_ROOT
options	UFS_GJOURNAL
options	UFS_DIRHASH
options	UFS_ACL
options	SOFTUPDATES
options	FFS
options	SCTP
options	INET6
options	INET
options	PREEMPTION
options	SCHED_ULE
options	NATIVE
options	GEOM_PART_MBR
options	GEOM_PART_EBR_COMPAT
options	GEOM_PART_EBR
options	GEOM_PART_BSD
options	ISAPNP
device	isa
device	npx
device	mem
device	io
device	uart_ns8250
device	atpic
device	apic
device	cpufreq
device	acpi
device	eisa
device	pci
device	fdc
device	ata
device	atadisk
device	atapicd
device	atapifd
device	ahb
device	ahc
device	ahd
device	amd
device	hptiop
device	isp
device	mpt
device	sym
device	trm
device	adv
device	adw
device	aha
device	aic
device	bt
device	ncv
device	nsp
device	stg
device	scbus
device	ch
device	da
device	sa
device	cd
device	pass
device	ses
device	hptrr
device	mfi
device	atkbdc
device	atkbd
device	psm
device	kbdmux
device	vga
device	splash
device	sc
device	agp
device	pmtimer
device	cbb
device	pccard
device	cardbus
device	uart
device	ppc
device	ppbus
device	lpt
device	plip
device	ppi
device	de
device	em
device	igb
device	ixgb
device	le
device	ti
device	txp
device	vx
device	miibus
device	ae
device	age
device	alc
device	ale
device	bce
device	bfe
device	bge
device	dc
device	et
device	fxp
device	jme
device	lge
device	msk
device	nfe
device	nge
device	pcn
device	re
device	rl
device	sf
device	sge
device	sis
device	sk
device	ste
device	stge
device	tl
device	tx
device	vge
device	vr
device	wb
device	xl
device	cs
device	ed
device	ex
device	ep
device	fe
device	ie
device	sn
device	xe
device	wlan
device	wlan_wep
device	wlan_ccmp
device	wlan_tkip
device	wlan_amrr
device	ath
device	ath_hal
device	ath_rate_sample
device	ral
device	loop
device	random
device	ether
device	vlan
device	tun
device	pty
device	md
device	gif
device	faith
device	firmware
device	bpf
device	uhci
device	ohci
device	ehci
device	usb
device	uhid
device	ukbd
device	ulpt
device	umass
device	ums
device	urio
device	u3g
device	uark
device	ubsa
device	uftdi
device	uipaq
device	uplcom
device	uslcom
device	uvisor
device	uvscom
device	aue
device	axe
device	cdce
device	cue
device	kue
device	rue
device	udav
device	rum
device	uath
device	ural
device	firewire
device	sbp
device	fwe
device	fwip
device	dcons
device	dcons_crom
device	atapicam
device	smbus
device	intpm
device	ichsmb
device	smb
device	iicbus
device	iicbb
device	ic
device	iic
device	iicsmb
device	pcf
device	speaker
device	sound
device	snd_ich

------------------------------------------------------------------------
ddb capture buffer



--2EPcbN/asYWeYp7O--

--Tgotd9HqtClR62Vk
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.16 (FreeBSD)

iEYEARECAAYFAkxTOV8ACgkQmprOCmdXAD2GQgCeNik9QsxjGq2yQh7MDksM6L/Y
2fEAnRXP8DidtoWab5NiGyOJ0JiyE5iI
=RJe5
-----END PGP SIGNATURE-----

--Tgotd9HqtClR62Vk--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20100730204312.GA12818>