Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Apr 2005 19:33:46 -0700 (PDT)
From:      Nathan Smith <nate@netapp.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        nahthan@gmail.com
Subject:   kern/79665: PANIC: "unmount: dangling vnode" on amd activity 
Message-ID:  <200504080233.j382XkDE028063@pixie.lab.netapp.com>
Resent-Message-ID: <200504080240.j382e46Z090164@freefall.freebsd.org>

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

>Number:         79665
>Category:       kern
>Synopsis:       PANIC: "unmount: dangling vnode" on amd activity
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 08 02:40:04 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Nathan Smith <nate@netapp.com>
>Release:        FreeBSD 5.4-STABLE i386
>Organization:
Network Appliance
>Environment:
System: FreeBSD pixie.lab.netapp.com 5.4-STABLE FreeBSD 5.4-STABLE #3: Thu Apr 7 12:06:12 PDT 2005 root@pixie.lab.netapp.com:/usr/src/sys/i386/compile/SMP i386
pixie:  i386-bsd-freebsd5.4, Intel Pentium III, 2xCPU, 697MHz, 1015MB

sysctl -a, dmesg, uname output and console logs attached.

Kernel configuration attached.  The kernel configuration is SMP include
GENERIC with "makeoptions DEBUG=-g".  Nothing special there.

	
>Description:

A very reproduceable amd panic through non privileged user-level filesystem
access.

	
>How-To-Repeat:

As a non-privileged user, rapidly unmount an amd managed mount with
"amq -u" while rapidly remounting that same mount (a simple file
access is sufficient.

I've reproduced this numerous times by running these two 
bourne shell scripts simultaneously on the same machine:

runrun:
#!/bin/sh
while echo hi
do
        wc -l /usr/local/build/share/oomph2
done

diedie:
#!/bin/sh
while amq -u /x/eng/btools
do
        amq /x/eng/btools
done

The machine will crash within minutes, especially if the machine
is under other stress.

	
>Fix:

	

--- backtrace begins here ---
nate@pixie.lab.netapp.com:~ >sudo kgdb /usr/src/sys/i386/compile/SMP/kernel.debug /var/crash/vmcore.5
[GDB will not be able to debug user-mode threads: /usr/lib/libthread_db.so: Undefined symbol "ps_pglobal_lookup"]
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 conditions.
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".
#0  doadump () at pcpu.h:159
159     pcpu.h: No such file or directory.
        in pcpu.h
(kgdb) backtrace
#0  doadump () at pcpu.h:159
#1  0xc0615167 in boot (howto=260) at ../../../kern/kern_shutdown.c:410
#2  0xc061548d in panic (fmt=0xc0830da5 "unmount: dangling vnode")
    at ../../../kern/kern_shutdown.c:566
#3  0xc0664535 in vfs_mount_destroy (mp=0xc2cf9000, td=0xc26a6780)
    at ../../../kern/vfs_mount.c:522
#4  0xc0665924 in dounmount (mp=0xc2cf9000, flags=0, td=0xc26a6780)
    at ../../../kern/vfs_mount.c:1111
#5  0xc0665560 in unmount (td=0xc26a6780, uap=0xe730cd14)
    at ../../../kern/vfs_mount.c:1019
#6  0xc07c842f in syscall (frame=
      {tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = -1077941440, tf_esi = 136512416, tf_ebp = -1077941608, tf_isp = -416232076, tf_ebx = 136516288, tf_edx = 134637440, tf_ecx = 19, tf_eax = 22, tf_trapno = 12, tf_err = 2, tf_eip = 672003099, tf_cs = 31, tf_eflags = 662, tf_esp = -1077941636, tf_ss = 47})
    at ../../../i386/i386/trap.c:1001
#7  0xc07b5a8f in Xint0x80_syscall () at ../../../i386/i386/exception.s:201
#8  0x0000002f in ?? ()
#9  0x0000002f in ?? ()
#10 0x0000002f in ?? ()
#11 0xbfbfeb40 in ?? ()
#12 0x082303a0 in ?? ()
#13 0xbfbfea98 in ?? ()
---Type <return> to continue, or q <return> to quit---
#14 0xe730cd74 in ?? ()
#15 0x082312c0 in ?? ()
#16 0x08066780 in ?? ()
#17 0x00000013 in ?? ()
#18 0x00000016 in ?? ()
#19 0x0000000c in ?? ()
#20 0x00000002 in ?? ()
#21 0x280df41b in ?? ()
#22 0x0000001f in ?? ()
#23 0x00000296 in ?? ()
#24 0xbfbfea7c in ?? ()
#25 0x0000002f in ?? ()
#26 0x00000000 in ?? ()
#27 0x00000000 in ?? ()
#28 0x00000000 in ?? ()
#29 0x00000000 in ?? ()
#30 0x30c18000 in ?? ()
#31 0xc29e2000 in ?? ()
#32 0xc26a6780 in ?? ()
#33 0xe730ca6c in ?? ()
#34 0xe730ca54 in ?? ()
#35 0xc22a9a80 in ?? ()
#36 0xc062573b in sched_switch (td=0x82303a0, newtd=0x82312c0, flags=Cannot access memory at address 0xbfbfeaa8
)
---Type <return> to continue, or q <return> to quit---
    at ../../../kern/sched_4bsd.c:881
Previous frame inner to this frame (corrupt stack?)
(kgdb)
--- backtrace ends here ---

--- console-log begins here ---
Script started on Thu Apr 07 13:31:16 2005
nate@sunpower:~/proj/FreeBSD/builds/bugs/3 >pm_cons pixie
pixie: telnet labcon6 6001
Trying 172.19.5.4...
Connected to labcon6.lab.netapp.com.
Escape character is '^]'.

FreeBSD/i386 (pixie.lab.netapp.com) (ttyd0)

login: 
telnet> q
Connection closed.
nate@sunpower:~/proj/FreeBSD/builds/bugs/3 >
nate@sunpower:~/proj/FreeBSD/builds/bugs/3 >
nate@sunpower:~/proj/FreeBSD/builds/bugs/3 >pm_cons pixie
pixie: telnet labcon6 6001
Trying 172.19.5.4...
Connected to labcon6.lab.netapp.com.
Escape character is '^]'.

FreeBSD/i386 (pixie.lab.netapp.com) (ttyd0)

login: panic: unmount: dangling vnode
cpuid = 0
boot() called on cpu#0
Uptime: 50m44s
Dumping 1024 MB
 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 512 528 544 560 576 592 608 624 640 656 672 688 704 720 736 752 768 784 800 816 832 848 864 880 896 912 928 944 960 976 992 1008
Dump complete
Automatic reboot in 15 seconds - press a key on the console to abort
Rebooting...
cpu_reset called on cpu#0
cpu_reset: Stopping other CPUs
--- console-log ends here ---

--- dmesg.output begins here ---
Copyright (c) 1992-2005 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 5.4-STABLE #3: Thu Apr  7 12:06:12 PDT 2005
    root@pixie.lab.netapp.com:/usr/src/sys/i386/compile/SMP
WARNING: Network stack Giant-free, but aio requires Giant.
    Consider adding 'options NET_WITH_GIANT' or setting debug.mpsafenet=0
MPTable: <AMI      CNB30LE     >
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: Intel Pentium III (697.68-MHz 686-class CPU)
  Origin = "GenuineIntel"  Id = 0x686  Stepping = 6
  Features=0x387fbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,PN,MMX,FXSR,SSE>
real memory  = 1073741824 (1024 MB)
avail memory = 1041190912 (992 MB)
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
ioapic0: Assuming intbase of 0
ioapic1: Assuming intbase of 16
ioapic0 <Version 1.1> irqs 0-15 on motherboard
ioapic1 <Version 1.1> irqs 16-31 on motherboard
npx0: <math processor> on motherboard
npx0: INT 16 interface
cpu0 on motherboard
cpu1 on motherboard
pcib0: <MPTable Host-PCI bridge> pcibus 0 on motherboard
pci0: <PCI bus> on pcib0
pci0: <display, VGA> at device 1.0 (no driver attached)
fxp0: <Intel 82559 Pro/100 Ethernet> port 0xd400-0xd43f mem 0xfe900000-0xfe9fffff,0xfeafe000-0xfeafefff irq 20 at device 4.0 on pci0
miibus0: <MII bus> on fxp0
inphy0: <i82555 10/100 media interface> on miibus0
inphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
fxp0: Ethernet address: 00:e0:81:01:82:99
fxp1: <Intel 82559 Pro/100 Ethernet> port 0xd000-0xd03f mem 0xfe700000-0xfe7fffff,0xfeafd000-0xfeafdfff irq 21 at device 5.0 on pci0
miibus1: <MII bus> on fxp1
inphy1: <i82555 10/100 media interface> on miibus1
inphy1:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
fxp1: Ethernet address: 00:e0:81:01:82:9a
isab0: <PCI-ISA bridge> port 0x580-0x58f at device 15.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <ServerWorks ROSB4 UDMA33 controller> port 0xffa0-0xffaf,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 15.1 on pci0
ata0: channel #0 on atapci0
ata1: channel #1 on atapci0
ohci0: <OHCI (generic) USB controller> mem 0xfeafc000-0xfeafcfff irq 10 at device 15.2 on pci0
usb0: OHCI version 1.0, legacy support
usb0: <OHCI (generic) USB controller> on ohci0
usb0: USB revision 1.0
uhub0: (0x1166) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 4 ports with 4 removable, self powered
pcib1: <ServerWorks NB6635 3.0LE host to PCI bridge> pcibus 1 on motherboard
pir0: <PCI Interrupt Routing Table: 11 Entries> on motherboard
$PIR: BIOS IRQ 20 for 0.4.INTA is not valid for link 0x14
$PIR: BIOS IRQ 21 for 0.5.INTA is not valid for link 0x15
$PIR: BIOS IRQ 22 for 0.1.INTA is not valid for link 0x16
pci1: <PCI bus> on pcib1
orm0: <ISA Option ROMs> at iomem 0xc9000-0xc9fff,0xc8000-0xc8fff,0xc0000-0xc7fff on isa0
pmtimer0 on isa0
atkbdc0: <Keyboard controller (i8042)> at port 0x64,0x60 on isa0
atkbd0: <AT Keyboard> irq 1 on atkbdc0
kbd0 at atkbd0
fdc0: <Enhanced floppy controller> at port 0x3f0-0x3f5 irq 6 drq 2 on isa0
fd0: <1440-KB 3.5" drive> on fdc0 drive 0
ppc0: parallel port not found.
sc0: <System console> at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
sio0: type 16550A, console
sio1: configured irq 3 not in bitmap of probed irqs 0
sio1: port may not be enabled
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
unknown: <PNP0303> can't assign resources (port)
unknown: <PNP0c02> can't assign resources (port)
unknown: <PNP0501> can't assign resources (port)
unknown: <PNP0700> can't assign resources (port)
Timecounters tick every 10.000 msec
ad0: 29311MB <Maxtor 5T030H3/TAH71DP0> [59554/16/63] at ata0-master UDMA33
SMP: AP CPU #1 Launched!
Mounting root from ufs:/dev/ad0s1a
--- dmesg.output ends here ---

--- sysctl-a.output begins here ---
kern.ostype: FreeBSD
kern.osrelease: 5.4-STABLE
kern.osrevision: 199506
kern.version: FreeBSD 5.4-STABLE #3: Thu Apr  7 12:06:12 PDT 2005
    root@pixie.lab.netapp.com:/usr/src/sys/i386/compile/SMP

kern.maxvnodes: 69989
kern.maxproc: 6164
kern.maxfiles: 12328
kern.argmax: 65536
kern.securelevel: -1
kern.hostname: pixie.lab.netapp.com
kern.hostid: 0
kern.clockrate: { hz = 100, tick = 10000, profhz = 1024, stathz = 128 }
kern.posix1version: 200112
kern.ngroups: 16
kern.job_control: 1
kern.saved_ids: 0
kern.boottime: { sec = 1112905645, usec = 105168 } Thu Apr  7 13:27:25 2005
kern.domainname: lab.netapp.com
kern.osreldate: 504100
kern.bootfile: /boot/kernel/kernel
kern.maxfilesperproc: 11095
kern.maxprocperuid: 5547
kern.ipc.maxsockbuf: 262144
kern.ipc.sockbuf_waste_factor: 8
kern.ipc.somaxconn: 128
kern.ipc.max_linkhdr: 16
kern.ipc.max_protohdr: 60
kern.ipc.max_hdr: 76
kern.ipc.max_datalen: 132
kern.ipc.nmbclusters: 25600
kern.ipc.maxpipekva: 16777216
kern.ipc.pipes: 6
kern.ipc.pipekva: 49152
kern.ipc.pipefragretry: 0
kern.ipc.pipeallocfail: 0
kern.ipc.piperesizefail: 0
kern.ipc.piperesizeallowed: 1
kern.ipc.msgmax: 16384
kern.ipc.msgmni: 40
kern.ipc.msgmnb: 2048
kern.ipc.msgtql: 40
kern.ipc.msgssz: 8
kern.ipc.msgseg: 2048
kern.ipc.semmap: 30
kern.ipc.semmni: 10
kern.ipc.semmns: 60
kern.ipc.semmnu: 30
kern.ipc.semmsl: 60
kern.ipc.semopm: 100
kern.ipc.semume: 10
kern.ipc.semusz: 92
kern.ipc.semvmx: 32767
kern.ipc.semaem: 16384
kern.ipc.shmmax: 33554432
kern.ipc.shmmin: 1
kern.ipc.shmmni: 192
kern.ipc.shmseg: 128
kern.ipc.shmall: 8192
kern.ipc.shm_use_phys: 0
kern.ipc.shm_allow_removed: 0
kern.ipc.numopensockets: 69
kern.ipc.maxsockets: 12328
kern.ipc.nsfbufs: 6656
kern.ipc.nsfbufspeak: 2
kern.ipc.nsfbufsused: 0
kern.dummy: 0
kern.ps_strings: 3217031152
kern.usrstack: 3217031168
kern.logsigexit: 1
kern.iov_max: 1024
kern.cam.scsi_delay: 15000
kern.cam.cd.changer.min_busy_seconds: 5
kern.cam.cd.changer.max_busy_seconds: 15
kern.cam.da.retry_count: 4
kern.cam.da.default_timeout: 60
kern.disks: ad0
kern.geom.debugflags: 0
kern.geom.collectstats: 1
kern.elf32.fallback_brand: -1
kern.init_path: /sbin/init:/sbin/oinit:/sbin/init.bak:/rescue/init:/stand/sysinstall
kern.acct_suspend: 2
kern.acct_resume: 4
kern.acct_chkfreq: 15
kern.cp_time: 302 0 1138 99 62111
kern.openfiles: 123
kern.kq_calloutmax: 4096
kern.stackprot: 7
kern.ps_arg_cache_limit: 256
kern.lastpid: 522
kern.randompid: 0
kern.ktrace.genio_size: 4096
kern.ktrace.request_pool: 100
kern.module_path: /boot/kernel;/boot/modules
kern.malloc: 
        Type  InUse MemUse HighUse Requests  Size(s)
  ISOFS mount     1   256K    256K        1
       isadev    36     3K      3K       36  64
     atkbddev     2     1K      1K        2  32
      ATA DMA     2     1K      1K        2  128
         $PIR    14     1K      1K       14  32
         GEOM    54    13K     20K      217  16,32,64,128,256,512,1024,4096
  pfs_vncache     1     1K      1K        1  32
     nexusdev     2     1K      1K        2  16
     MP Table     1     1K      1K        1  32
      memdesc     1     4K      4K        1  4096
    legacydrv     6     1K      1K        6  16
   pfs_fileno     1    20K     20K        1
     I/O APIC     2     1K      1K        2  512
    pfs_nodes    20     3K      3K       20  128
      UMAHash     1     2K      3K        4  256,512,1024,2048
    VM pgdata     2    65K     65K        2  64
MSDOSFS mount     1   128K    128K        1
        DEVFS   104    16K     16K      179  16,32,128,4096
    UFS mount     3    11K     11K        3  256,2048
    UFS ihash     1   256K    256K        1
  UFS dirhash    24     5K      5K       24  16,32,512
       newblk     1     1K      1K        1  256
     inodedep     1   256K    256K        1
      pagedep     1    32K     32K        1
     p1003.1b     1     1K      1K        1  16
   NFS daemon     1     1K      1K        1  256
     NFS hash     1   256K    256K        1
 NFSV3 diroff     2     1K      1K        2  512
      NFS req     0     0K      1K     1187  128
 ip6_moptions     1     1K      1K        1  16
    in6_multi    11     1K      1K       11  16,64
     syncache     1     8K      8K        1
       USBdev     4     2K      2K        4  128,512
    hostcache     1    24K     24K        1
     in_multi     2     1K      1K        2  32
     routetbl    26     3K      3K       58  16,32,64,128,256
          USB    13     2K      2K       13  16,32,64,128,256
           lo     1     1K      1K        1  1024
        clone     4    16K     16K        4  4096
  ether_multi    37     2K      2K       37  16,32,64
       ifaddr    36     9K      9K       36  16,32,64,256,512,2048
          BPF     3     1K      1K        3  64
        mount    23    10K     10K       28  16,32,128,1024
      entropy  1024    64K     64K     1024  64
       vnodes    29     7K      7K      160  16,32,64,128,256
     vfscache     1   512K    512K        1
   BIO buffer    51    99K     99K       58  1024,2048
          pcb    43     5K      5K      183  16,32,64,2048
       soname    10     1K      1K     3275  16,32,128
          tag     0     0K      1K       10  32,64
         ptys     3     1K      1K        3  128
         ttys  1331   175K    175K     2696  128,512
          shm     1    12K     12K        1
          sem     4     7K      7K        4  512,1024,4096
          msg     4    25K     25K        4  512,4096
          iov     0     0K      1K      273  16,64,128
     ioctlops     0     0K      1K     1195  16,32,64,512,1024
   turnstiles   121     8K      8K      121  64
    taskqueue     5     1K      1K        5  64
 sleep queues   121     4K      4K      121  32
         sbuf     0     0K     21K      236  16,32,64,128,256,512,1024,2048,4096
         rman   125     8K      8K      698  64
  ATA generic     2     1K      1K        2  16,512
         kobj   219   438K    438K      267  2048
 eventhandler    31     2K      2K       31  32,128
      devstat     4     9K      9K        4  16,4096
       bus-sc    39    17K    102K      813  16,64,128,256,512,1024,2048,4096
          bus   801    31K     84K     2394  16,32,64,128,1024
         SWAP     2   277K    277K        2  64
    sysctltmp     0     0K      1K      277  16,32,64,128
    sysctloid  1553    47K     47K     1553  16,32,64
       sysctl     0     0K      1K      118  16,32,64
      uidinfo     5     2K      2K        7  32,1024
       plimit    19     5K      5K      181  256
         cred    29     4K      4K     1408  128
      subproc   241   421K    421K     1281  32,256,4096
         proc     2     8K      8K        2  4096
      session    29     4K      4K       31  128
         pgrp    30     2K      2K       46  64
     mtx_pool     1     8K      8K        1
       module   342    22K     22K      342  64
       ip6ndp     5     1K      1K        6  64,128
         temp     8   258K    267K     6229  16,32,64,128,256,512,1024,2048,4096
       devbuf  1620  3210K   3210K     1641  16,32,64,128,256,512,2048,4096
        lockf     6     1K      1K       42  64
       linker    50     2K      2K       65  16,32,256
       KTRACE   100    13K     13K      100  128
      ithread    60     7K      7K       61  64,128
       zombie     0     0K      1K      425  128
    proc-args    33     2K      2K      282  16,32,64,128,256
       kqueue     0     0K      2K      657  128,1024
         kenv    99     6K      6K      100  16,32,64,2048
        sigio     1     1K      1K        1  32
    file desc    98    25K     25K      523  256
         cdev    22     6K      6K       22  256
    AR driver     1     1K      3K        3  64,256,2048
    AD driver     1     1K      1K        1  128

kern.ident: SMP-GENERIC
kern.maxusers: 384
kern.fallback_elf_brand: -1
kern.kstack_pages: 2
kern.sync_on_panic: 0
kern.shutdown.poweroff_delay: 5000
kern.shutdown.kproc_shutdown_wait: 60
kern.sugid_coredump: 0
kern.coredump: 1
kern.nodump_coredump: 0
kern.corefile: %N.core
kern.fscale: 2048
kern.timecounter.stepwarnings: 0
kern.timecounter.nbinuptime: 121957
kern.timecounter.nnanouptime: 0
kern.timecounter.nmicrouptime: 576
kern.timecounter.nbintime: 2327
kern.timecounter.nnanotime: 200
kern.timecounter.nmicrotime: 2127
kern.timecounter.ngetbinuptime: 0
kern.timecounter.ngetnanouptime: 31
kern.timecounter.ngetmicrouptime: 15113
kern.timecounter.ngetbintime: 0
kern.timecounter.ngetnanotime: 0
kern.timecounter.ngetmicrotime: 24857
kern.timecounter.nsetclock: 4
kern.timecounter.hardware: i8254
kern.timecounter.choice: TSC(-100) i8254(0) dummy(-1000000)
kern.timecounter.tick: 1
kern.timecounter.smp_tsc: 0
kern.threads.thr_scope_sys: 0
kern.threads.thr_concurrency: 0
kern.threads.debug: 0
kern.threads.max_threads_per_proc: 1500
kern.threads.max_groups_per_proc: 1500
kern.threads.max_threads_hits: 0
kern.threads.virtual_cpu: 2
kern.sched.name: 4BSD
kern.sched.quantum: 100000
kern.sched.ipiwakeup.enabled: 1
kern.sched.ipiwakeup.requested: 15578
kern.sched.ipiwakeup.delivered: 15578
kern.sched.ipiwakeup.usemask: 1
kern.sched.ipiwakeup.useloop: 0
kern.sched.ipiwakeup.onecpu: 0
kern.sched.ipiwakeup.htt2: 0
kern.sched.followon: 0
kern.sched.pfollowons: 0
kern.sched.kgfollowons: 0
kern.sched.runq_fuzz: 1
kern.ccpu: 1948
kern.devstat.numdevs: 1
kern.devstat.generation: 51
kern.devstat.version: 6
kern.kobj_methodcount: 94
kern.log_wakeups_per_second: 5
kern.log_console_output: 1
kern.always_console_output: 0
kern.msgbuf: 
kern.msgbuf_clear: 0
kern.smp.maxcpus: 16
kern.smp.active: 1
kern.smp.disabled: 0
kern.smp.cpus: 2
kern.smp.forward_signal_enabled: 1
kern.smp.forward_roundrobin_enabled: 1
kern.nselcoll: 0
kern.drainwait: 300
kern.tty_nin: 441
kern.tty_nout: 22782
kern.console: ttyd0,consolectl,/ttyd0,consolectl,
kern.consmute: 0
kern.consmsgbuf_size: 8192
kern.constty_wakeups_per_second: 5
kern.rootdev: ad0s1a
kern.filedelay: 30
kern.dirdelay: 29
kern.metadelay: 28
kern.minvnodes: 17497
kern.chroot_allow_open_directories: 1
kern.rpc.retries: 0
kern.rpc.request: 0
kern.rpc.timeouts: 0
kern.rpc.unexpected: 0
kern.rpc.invalid: 0
kern.random.yarrow.gengateinterval: 10
kern.random.yarrow.bins: 10
kern.random.yarrow.fastthresh: 192
kern.random.yarrow.slowthresh: 256
kern.random.yarrow.slowoverthresh: 2
kern.random.sys.seeded: 1
kern.random.sys.harvest.ethernet: 1
kern.random.sys.harvest.point_to_point: 1
kern.random.sys.harvest.interrupt: 1
kern.random.sys.harvest.swi: 0
vm.vmtotal: 
System wide totals computed every five seconds: (values in kilobytes)
===============================================
Processes:		(RUNQ: 1 Disk Wait: 0 Page Wait: 0 Sleep: 32)
Virtual Memory:		(Total: 2097698K, Active 54372K)
Real Memory:		(Total: 38192K Active 14896K)
Shared Virtual Memory:	(Total: 6632K Active: 2648K)
Shared Real Memory:	(Total: 5492K Active: 2556K)
Free Memory Pages:	981812K

vm.loadavg: { 0.07 0.11 0.06 }
vm.v_free_min: 1689
vm.v_free_target: 7170
vm.v_free_reserved: 414
vm.v_inactive_target: 10755
vm.v_cache_min: 7170
vm.v_cache_max: 14340
vm.v_pageout_free_min: 34
vm.pageout_algorithm: 0
vm.swap_enabled: 1
vm.kmem_size: 335544320
vm.kmem_size_max: 335544320
vm.kmem_size_scale: 3
vm.swap_async_max: 4
vm.dmmax: 32
vm.nswapdev: 1
vm.swap_idle_threshold1: 2
vm.swap_idle_threshold2: 10
vm.v_free_severe: 1051
vm.stats.sys.v_swtch: 110685
vm.stats.sys.v_trap: 33452
vm.stats.sys.v_syscall: 142431
vm.stats.sys.v_intr: 89342
vm.stats.sys.v_soft: 7351
vm.stats.vm.v_vm_faults: 35235
vm.stats.vm.v_cow_faults: 13910
vm.stats.vm.v_cow_optim: 344
vm.stats.vm.v_zfod: 10504
vm.stats.vm.v_ozfod: 10291
vm.stats.vm.v_swapin: 0
vm.stats.vm.v_swapout: 0
vm.stats.vm.v_swappgsin: 0
vm.stats.vm.v_swappgsout: 0
vm.stats.vm.v_vnodein: 238
vm.stats.vm.v_vnodeout: 1
vm.stats.vm.v_vnodepgsin: 1336
vm.stats.vm.v_vnodepgsout: 1
vm.stats.vm.v_intrans: 6
vm.stats.vm.v_reactivated: 72
vm.stats.vm.v_pdwakeups: 0
vm.stats.vm.v_pdpages: 0
vm.stats.vm.v_dfree: 0
vm.stats.vm.v_pfree: 15944
vm.stats.vm.v_tfree: 28180
vm.stats.vm.v_page_size: 4096
vm.stats.vm.v_page_count: 255302
vm.stats.vm.v_free_reserved: 414
vm.stats.vm.v_free_target: 7170
vm.stats.vm.v_free_min: 1689
vm.stats.vm.v_free_count: 245453
vm.stats.vm.v_wire_count: 5343
vm.stats.vm.v_active_count: 3101
vm.stats.vm.v_inactive_target: 10755
vm.stats.vm.v_inactive_count: 1342
vm.stats.vm.v_cache_count: 0
vm.stats.vm.v_cache_min: 7170
vm.stats.vm.v_cache_max: 14340
vm.stats.vm.v_pageout_free_min: 34
vm.stats.vm.v_interrupt_free_min: 2
vm.stats.vm.v_forks: 439
vm.stats.vm.v_vforks: 19
vm.stats.vm.v_rforks: 0
vm.stats.vm.v_kthreads: 64
vm.stats.vm.v_forkpages: 33966
vm.stats.vm.v_vforkpages: 3156
vm.stats.vm.v_rforkpages: 0
vm.stats.vm.v_kthreadpages: 0
vm.stats.misc.zero_page_count: 194121
vm.stats.misc.cnt_prezero: 206734
vm.max_proc_mmap: 49344
vm.msync_flush_flags: 3
vm.old_msync: 0
vm.old_contigmalloc: 0
vm.idlezero_enable: 1
vm.idlezero_maxrun: 16
vm.max_launder: 32
vm.pageout_stats_max: 7170
vm.pageout_full_stats_interval: 20
vm.pageout_stats_interval: 5
vm.swap_idle_enabled: 0
vm.defer_swapspace_pageouts: 0
vm.disable_swapspace_pageouts: 0
vm.pageout_lock_miss: 0
vm.zone: 
ITEM            SIZE     LIMIT     USED    FREE  REQUESTS

FFS2 dinode:     256,        0,    404,     16,      430
FFS1 dinode:     128,        0,      0,      0,        0
FFS inode:       140,        0,    404,     72,      430
SWAPMETA:        276,   121576,      0,      0,        0
rtentry:         132,        0,     12,     75,       12
unpcb:           140,    25620,     17,     67,      129
ripcb:           180,    12342,      0,      0,        0
sackhole:         16,        0,      0,      0,        0
tcpreass:         20,     1690,      0,      0,        0
hostcache:        88,    15400,      0,      0,        0
syncache:        108,    15372,      0,    108,        3
tcptw:            56,     2479,      0,    201,        7
tcpcb:           444,    12330,     17,     19,       28
inpcb:           180,    12342,     17,     49,       28
udpcb:           180,    12342,     35,     53,      204
socket:          324,    12336,     69,     27,      362
KNOTE:            68,        0,      0,    168,      652
AIOLIO:           44,        0,      0,      0,        0
AIOL:             64,        0,      0,      0,        0
AIOCB:           120,        0,      0,      0,        0
AIOP:             16,        0,      0,      0,        0
AIO:              88,        0,      0,      0,        0
PIPE:            384,        0,      3,     37,      140
NFSNODE:         452,        0,     32,     22,       31
NFSMOUNT:        432,        0,      6,     21,        6
DIRHASH:        1024,        0,     24,     12,       24
NAMEI:          1024,        0,      0,     28,     6618
L VFS Cache:     291,        0,      0,      0,        0
S VFS Cache:      68,        0,    436,    124,      800
VNODEPOLL:        64,        0,      0,      0,        0
VNODE:           264,        0,    501,      9,      500
ata_request:     200,        0,      0,     57,      987
g_bio:           132,        0,      0,    203,     3935
MbufClust:      2048,    25600,    512,     18,      512
Mbuf:            256,        0,    530,    370,    10834
Packet:          256,        0,    512,    388,     2768
VMSPACE:         300,        0,     34,     31,      457
UPCALL:           44,        0,      0,      0,        0
KSEGRP:          104,        0,    108,     67,      108
TID:             140,        0,      1,     53,        1
THREAD:          384,        0,    108,     12,      108
PROC:            452,        0,     97,     11,      520
Files:            68,        0,    123,    101,     3280
4096:           4096,        0,    132,     32,     6277
2048:           2048,        0,    290,     20,      452
1024:           1024,        0,     21,     63,     1038
512:             512,        0,     61,     27,      342
256:             256,        0,    300,     45,     1079
128:             128,        0,   1786,    134,     7317
64:               64,        0,   2770,    180,     4388
32:               32,        0,   1230,    126,     2305
16:               16,        0,   1610,    217,     6246
DP fakepg:        72,        0,      0,      0,        0
PV ENTRY:         24,  1494950,  13664,    546,   193647
MAP ENTRY:        68,        0,    999,    177,    15640
KMAP ENTRY:       68,    56616,     25,    143,     3781
MAP:             192,        0,      7,     33,        5
VM OBJECT:       132,        0,   1071,    118,     8369
128 Bucket:      524,        0,     45,      4,        0
64 Bucket:       268,        0,     42,      0,        0
32 Bucket:       140,        0,     42,     14,        0
16 Bucket:        76,        0,     51,     49,        0
UMA Hash:        128,        0,      4,     26,        0
UMA RCntSlab:    104,        0,    265,     31,        0
UMA Slabs:        64,        0,    412,      1,        0
UMA Zones:       328,        0,     65,      1,        0
UMA Kegs:        136,        0,     65,      7,        0

vm.kvm_size: 1069543424
vm.kvm_free: 411037696
vfs.ufs.dirhash_minsize: 2560
vfs.ufs.dirhash_maxmem: 2097152
vfs.ufs.dirhash_mem: 27674
vfs.ufs.dirhash_docheck: 0
vfs.nfs4.access_cache_timeout: 60
vfs.nfs4.nfsv3_commit_on_close: 0
vfs.devfs.noverflow: 32768
vfs.devfs.generation: 72
vfs.devfs.inodes: 72
vfs.devfs.topinode: 75
vfs.nfs.downdelayinitial: 12
vfs.nfs.downdelayinterval: 30
vfs.nfs.realign_test: 1187
vfs.nfs.realign_count: 0
vfs.nfs.bufpackets: 4
vfs.nfs.reconnects: 1
vfs.nfs.iodmaxidle: 120
vfs.nfs.iodmin: 4
vfs.nfs.iodmax: 20
vfs.nfs.defect: 0
vfs.nfs.nfs_ip_paranoia: 1
vfs.nfs.diskless_valid: 0
vfs.nfs.diskless_rootpath: 
vfs.nfs.access_cache_timeout: 2
vfs.nfs.nfsv3_commit_on_close: 0
vfs.pfs.vncache.entries: 1
vfs.pfs.vncache.maxentries: 1
vfs.pfs.vncache.hits: 0
vfs.pfs.vncache.misses: 1
vfs.vmiodirenable: 1
vfs.runningbufspace: 0
vfs.bufspace: 9027584
vfs.maxbufspace: 117358592
vfs.bufmallocspace: 101376
vfs.maxmallocbufspace: 5835161
vfs.lobufspace: 116637696
vfs.hibufspace: 116703232
vfs.bufreusecnt: 531
vfs.buffreekvacnt: 3
vfs.bufdefragcnt: 0
vfs.lorunningspace: 524288
vfs.hirunningspace: 1048576
vfs.dirtybufferflushes: 0
vfs.altbufferflushes: 0
vfs.recursiveflushes: 0
vfs.numdirtybuffers: 5
vfs.lodirtybuffers: 905
vfs.hidirtybuffers: 1810
vfs.dirtybufthresh: 1629
vfs.numfreebuffers: 7158
vfs.lofreebuffers: 402
vfs.hifreebuffers: 804
vfs.getnewbufcalls: 560
vfs.getnewbufrestarts: 0
vfs.flushwithdeps: 0
vfs.cache.numneg: 27
vfs.cache.numcache: 436
vfs.cache.numcalls: 16211
vfs.cache.dothits: 87
vfs.cache.dotdothits: 8
vfs.cache.numchecks: 15557
vfs.cache.nummiss: 1053
vfs.cache.nummisszap: 17
vfs.cache.numposzaps: 23
vfs.cache.numposhits: 13875
vfs.cache.numnegzaps: 9
vfs.cache.numneghits: 1139
vfs.cache.nchstats: 13875 1139 32 0 1070 0 13 90
vfs.cache.numcwdcalls: 13
vfs.cache.numcwdfail1: 0
vfs.cache.numcwdfail2: 0
vfs.cache.numcwdfail3: 0
vfs.cache.numcwdfail4: 0
vfs.cache.numcwdfound: 13
vfs.cache.numfullpathcalls: 0
vfs.cache.numfullpathfail1: 0
vfs.cache.numfullpathfail2: 0
vfs.cache.numfullpathfail3: 0
vfs.cache.numfullpathfail4: 0
vfs.cache.numfullpathfound: 0
vfs.write_behind: 1
vfs.read_max: 8
vfs.opv_numops: 64
vfs.usermount: 0
vfs.numvnodes: 501
vfs.wantfreevnodes: 25
vfs.freevnodes: 49
vfs.reassignbufcalls: 380
vfs.nameileafonly: 0
vfs.timestamp_precision: 0
vfs.worklist_len: 2
vfs.nfsrv.nfs_privport: 0
vfs.nfsrv.async: 0
vfs.nfsrv.commit_blks: 0
vfs.nfsrv.commit_miss: 0
vfs.nfsrv.realign_test: 0
vfs.nfsrv.realign_count: 0
vfs.nfsrv.gatherdelay: 10000
vfs.nfsrv.gatherdelay_v3: 0
vfs.ffs.doasyncfree: 1
vfs.ffs.doreallocblks: 1
vfs.ffs.compute_summary_at_mount: 0
vfs.aio.max_aio_procs: 32
vfs.aio.num_aio_procs: 0
vfs.aio.target_aio_procs: 4
vfs.aio.max_aio_queue: 1024
vfs.aio.num_queue_count: 0
vfs.aio.num_buf_aio: 0
vfs.aio.aiod_timeout: 1000
vfs.aio.aiod_lifetime: 3000
vfs.aio.unloadable: 0
vfs.aio.max_aio_per_proc: 32
vfs.aio.max_aio_queue_per_proc: 256
vfs.aio.max_buf_aio: 16
net.local.stream.sendspace: 8192
net.local.stream.recvspace: 8192
net.local.dgram.maxdgram: 2048
net.local.dgram.recvspace: 4096
net.local.inflight: 0
net.inet.ip.portrange.lowfirst: 1023
net.inet.ip.portrange.lowlast: 600
net.inet.ip.portrange.first: 49152
net.inet.ip.portrange.last: 65535
net.inet.ip.portrange.hifirst: 49152
net.inet.ip.portrange.hilast: 65535
net.inet.ip.portrange.reservedhigh: 1023
net.inet.ip.portrange.reservedlow: 0
net.inet.ip.portrange.randomized: 1
net.inet.ip.portrange.randomcps: 10
net.inet.ip.portrange.randomtime: 45
net.inet.ip.forwarding: 0
net.inet.ip.redirect: 1
net.inet.ip.ttl: 64
net.inet.ip.rtexpire: 3600
net.inet.ip.rtminexpire: 10
net.inet.ip.rtmaxcache: 128
net.inet.ip.sourceroute: 0
net.inet.ip.intr_queue_maxlen: 50
net.inet.ip.intr_queue_drops: 0
net.inet.ip.accept_sourceroute: 0
net.inet.ip.keepfaith: 0
net.inet.ip.gifttl: 30
net.inet.ip.subnets_are_local: 0
net.inet.ip.fastforwarding: 0
net.inet.ip.process_options: 1
net.inet.ip.maxfragpackets: 800
net.inet.ip.maxfragsperpacket: 16
net.inet.ip.sendsourcequench: 0
net.inet.ip.random_id: 0
net.inet.ip.check_interface: 0
net.inet.icmp.maskrepl: 0
net.inet.icmp.icmplim: 200
net.inet.icmp.maskfake: 0
net.inet.icmp.drop_redirect: 0
net.inet.icmp.log_redirect: 0
net.inet.icmp.icmplim_output: 1
net.inet.icmp.reply_src: 
net.inet.icmp.bmcastecho: 1
net.inet.tcp.rfc1323: 1
net.inet.tcp.rfc1644: 0
net.inet.tcp.mssdflt: 512
net.inet.tcp.keepidle: 7200000
net.inet.tcp.keepintvl: 75000
net.inet.tcp.sendspace: 32768
net.inet.tcp.recvspace: 65536
net.inet.tcp.keepinit: 75000
net.inet.tcp.delacktime: 100
net.inet.tcp.v6mssdflt: 1024
net.inet.tcp.hostcache.cachelimit: 15360
net.inet.tcp.hostcache.hashsize: 512
net.inet.tcp.hostcache.bucketlimit: 30
net.inet.tcp.hostcache.count: 0
net.inet.tcp.hostcache.expire: 3600
net.inet.tcp.hostcache.purge: 0
net.inet.tcp.log_in_vain: 0
net.inet.tcp.blackhole: 0
net.inet.tcp.delayed_ack: 1
net.inet.tcp.rfc3042: 1
net.inet.tcp.rfc3390: 1
net.inet.tcp.insecure_rst: 0
net.inet.tcp.reass.maxsegments: 1600
net.inet.tcp.reass.cursegments: 0
net.inet.tcp.reass.maxqlen: 48
net.inet.tcp.reass.overflows: 0
net.inet.tcp.path_mtu_discovery: 1
net.inet.tcp.slowstart_flightsize: 1
net.inet.tcp.local_slowstart_flightsize: 4
net.inet.tcp.newreno: 1
net.inet.tcp.sack.enable: 1
net.inet.tcp.minmss: 216
net.inet.tcp.minmssoverload: 0
net.inet.tcp.tcbhashsize: 512
net.inet.tcp.do_tcpdrain: 1
net.inet.tcp.pcbcount: 17
net.inet.tcp.icmp_may_rst: 1
net.inet.tcp.isn_reseed_interval: 0
net.inet.tcp.inflight.enable: 1
net.inet.tcp.inflight.debug: 0
net.inet.tcp.inflight.min: 6144
net.inet.tcp.inflight.max: 1073725440
net.inet.tcp.inflight.stab: 20
net.inet.tcp.syncookies: 1
net.inet.tcp.syncache.bucketlimit: 30
net.inet.tcp.syncache.cachelimit: 15359
net.inet.tcp.syncache.count: 0
net.inet.tcp.syncache.hashsize: 512
net.inet.tcp.syncache.rexmtlimit: 3
net.inet.tcp.msl: 30000
net.inet.tcp.rexmit_min: 30
net.inet.tcp.rexmit_slop: 200
net.inet.tcp.always_keepalive: 1
net.inet.udp.checksum: 1
net.inet.udp.maxdgram: 9216
net.inet.udp.recvspace: 42080
net.inet.udp.log_in_vain: 0
net.inet.udp.blackhole: 0
net.inet.udp.strict_mcast_mship: 0
net.inet.raw.maxdgram: 8192
net.inet.raw.recvspace: 8192
net.inet.accf.unloadable: 0
net.link.generic.system.ifcount: 3
net.link.ether.inet.prune_intvl: 300
net.link.ether.inet.max_age: 1200
net.link.ether.inet.host_down_time: 20
net.link.ether.inet.maxtries: 5
net.link.ether.inet.useloopback: 1
net.link.ether.inet.proxyall: 0
net.link.ether.inet.log_arp_wrong_iface: 1
net.link.ether.inet.log_arp_movements: 1
net.link.ether.ipfw: 0
net.link.gif.max_nesting: 1
net.link.gif.parallel_tunnels: 0
net.inet6.ip6.forwarding: 0
net.inet6.ip6.redirect: 1
net.inet6.ip6.hlim: 64
net.inet6.ip6.maxfragpackets: 6400
net.inet6.ip6.accept_rtadv: 0
net.inet6.ip6.keepfaith: 0
net.inet6.ip6.log_interval: 5
net.inet6.ip6.hdrnestlimit: 50
net.inet6.ip6.dad_count: 1
net.inet6.ip6.auto_flowlabel: 1
net.inet6.ip6.defmcasthlim: 1
net.inet6.ip6.gifhlim: 30
net.inet6.ip6.kame_version: 20010528/FreeBSD
net.inet6.ip6.use_deprecated: 1
net.inet6.ip6.rr_prune: 5
net.inet6.ip6.v6only: 1
net.inet6.ip6.rtexpire: 3600
net.inet6.ip6.rtminexpire: 10
net.inet6.ip6.rtmaxcache: 128
net.inet6.ip6.use_tempaddr: 0
net.inet6.ip6.temppltime: 86400
net.inet6.ip6.tempvltime: 604800
net.inet6.ip6.auto_linklocal: 1
net.inet6.ip6.prefer_tempaddr: 0
net.inet6.ip6.maxfrags: 6400
net.inet6.icmp6.rediraccept: 1
net.inet6.icmp6.redirtimeout: 600
net.inet6.icmp6.nd6_prune: 1
net.inet6.icmp6.nd6_delay: 5
net.inet6.icmp6.nd6_umaxtries: 3
net.inet6.icmp6.nd6_mmaxtries: 3
net.inet6.icmp6.nd6_useloopback: 1
net.inet6.icmp6.nodeinfo: 3
net.inet6.icmp6.errppslimit: 100
net.inet6.icmp6.nd6_maxnudhint: 0
net.inet6.icmp6.nd6_debug: 0
net.isr.enable: 0
net.isr.count: 2654
net.isr.directed: 0
net.isr.deferred: 2654
net.isr.queued: 1310
net.isr.drop: 0
net.isr.swi_count: 3797
net.route.netisr_maxqlen: 256
debug.firewire_debug: 0
debug.fwmem_debug: 0
debug.if_fwe_debug: 0
debug.sbp_debug: 0
debug.mddebug: 0
debug.doslowdown: 0
debug.elf32_trace: 0
debug.elf32_legacy_coredump: 0
debug.boothowto: -1610608640
debug.bootverbose: 0
debug.free_devt: 0
debug.sizeof.g_class: 68
debug.sizeof.g_geom: 68
debug.sizeof.g_provider: 88
debug.sizeof.g_consumer: 60
debug.sizeof.g_bioq: 48
debug.sizeof.vnode: 264
debug.sizeof.proc: 452
debug.sizeof.cdev: 232
debug.sizeof.bio: 132
debug.sizeof.buf: 436
debug.sizeof.kinfo_proc: 648
debug.sizeof.devstat: 240
debug.to_avg_depth: 2982
debug.to_avg_gcalls: 253
debug.to_avg_mpcalls: 2501
debug.kdb.available: 
debug.kdb.current: 
debug.kdb.enter: 0
debug.kdb.stop_cpus: 1
debug.rman_debug: 0
debug.ttydebug: 0
debug.dobkgrdwrite: 1
debug.nchash: 131071
debug.ncnegfactor: 16
debug.numneg: 27
debug.numcache: 436
debug.numcachehv: 63
debug.vfscache: 1
debug.vnsize: 264
debug.ncsize: 36
debug.hashstat.nchash: 131072 434 2 33
debug.hashstat.nfsnode: 65536 32 1 4
debug.disablecwd: 0
debug.disablefullpath: 0
debug.rush_requests: 0
debug.vnlru_nowhere: 0
debug.bpf_bufsize: 4096
debug.bpf_maxbufsize: 524288
debug.if_tun_debug: 0
debug.mpsafenet: 1
debug.ieee80211: 0
debug.dopersistence: 0
debug.snapdebug: 0
debug.collectsnapstats: 0
debug.max_softdeps: 279956
debug.tickdelay: 2
debug.maxindirdeps: 50
debug.worklist_push: 0
debug.blk_limit_push: 0
debug.ino_limit_push: 0
debug.blk_limit_hit: 0
debug.ino_limit_hit: 0
debug.sync_limit_hit: 0
debug.indir_blk_ptrs: 0
debug.inode_bitmap: 0
debug.direct_blk_ptrs: 0
debug.dir_entry: 0
debug.bigcgs: 0
debug.dircheck: 0
debug.mpsafevm: 1
debug.nosleepwithlocks: 0
debug.fdc.fifo: 8
debug.fdc.debugflags: 0
debug.fdc.retries: 10
debug.fdc.spec1: 175
debug.fdc.spec2: 16
debug.fdc.settle: 12
debug.PMAP1changedcpu: 0
debug.PMAP1changed: 1413
debug.PMAP1unchanged: 131796
debug.psmhz: 20
debug.psm_soft_timeout: 500000
debug.psmerrsecs: 2
debug.psmerrusecs: 0
debug.psmsecs: 0
debug.psmusecs: 500000
debug.psmpkterrthresh: 2
debug.psmloglevel: 0
hw.machine: i386
hw.model: Intel Pentium III
hw.ncpu: 2
hw.byteorder: 1234
hw.physmem: 1064787968
hw.usermem: 1042886656
hw.pagesize: 4096
hw.floatingpoint: 1
hw.machine_arch: i386
hw.realmem: 1073741824
hw.aac.iosize_max: 65536
hw.an.an_dump: off
hw.an.an_cache_mode: dbm
hw.an.an_cache_mcastonly: 0
hw.an.an_cache_iponly: 1
hw.ata.ata_dma: 1
hw.ata.wc: 1
hw.ata.atapi_dma: 0
hw.cardbus.debug: 0
hw.cardbus.cis_debug: 0
hw.cs.debug: 0
hw.cs.ignore_checksum_failure: 0
hw.cs.recv_delay: 570
hw.firewire.try_bmr: 1
hw.firewire.hold_count: 3
hw.firewire.fwmem.eui64_hi: 0
hw.firewire.fwmem.eui64_lo: 0
hw.firewire.fwmem.speed: 2
hw.firewire.fwe.stream_ch: 1
hw.firewire.fwe.tx_speed: 2
hw.firewire.fwe.rx_queue_len: 128
hw.firewire.sbp.auto_login: 1
hw.firewire.sbp.max_speed: -1
hw.firewire.sbp.exclusive_login: 1
hw.firewire.sbp.login_delay: 1000
hw.firewire.sbp.scan_delay: 500
hw.firewire.sbp.use_doorbell: 0
hw.firewire.sbp.tags: 0
hw.pccard.debug: 0
hw.pccard.cis_debug: 0
hw.cbb.start_memory: 2281701376
hw.cbb.start_16_io: 256
hw.cbb.start_32_io: 4096
hw.cbb.debug: 0
hw.pcic.intr_mask: 57016
hw.pci.enable_io_modes: 1
hw.pci.do_powerstate: 0
hw.pci.host_mem_start: 2147483648
hw.pci.irq_override_mask: 57080
hw.wi.txerate: 0
hw.wi.debug: 0
hw.xe.debug: 0
hw.intr_storm_threshold: 500
hw.availpages: 259958
hw.bus.devctl_disable: 0
hw.dc_quick: 1
hw.ste.rxsyncs: 0
hw.kbd.keymap_restrict_change: 0
hw.syscons.saver.keybonly: 1
hw.syscons.bell: 1
hw.syscons.sc_no_suspend_vtswitch: 0
hw.busdma.total_bpages: 546
hw.busdma.zone0.total_bpages: 513
hw.busdma.zone0.free_bpages: 513
hw.busdma.zone0.reserved_bpages: 0
hw.busdma.zone0.active_bpages: 0
hw.busdma.zone0.total_bounced: 0
hw.busdma.zone0.total_deferred: 0
hw.busdma.zone0.lowaddr: 0xffffffff
hw.busdma.zone0.alignment: 2
hw.busdma.zone0.boundary: 0
hw.busdma.zone1.total_bpages: 32
hw.busdma.zone1.free_bpages: 32
hw.busdma.zone1.reserved_bpages: 0
hw.busdma.zone1.active_bpages: 0
hw.busdma.zone1.total_bounced: 0
hw.busdma.zone1.total_deferred: 0
hw.busdma.zone1.lowaddr: 0xffffffff
hw.busdma.zone1.alignment: 2
hw.busdma.zone1.boundary: 65536
hw.busdma.zone2.total_bpages: 1
hw.busdma.zone2.free_bpages: 1
hw.busdma.zone2.reserved_bpages: 0
hw.busdma.zone2.active_bpages: 0
hw.busdma.zone2.total_bounced: 0
hw.busdma.zone2.total_deferred: 0
hw.busdma.zone2.lowaddr: 0xffffffff
hw.busdma.zone2.alignment: 256
hw.busdma.zone2.boundary: 0
hw.clockrate: 697
hw.instruction_sse: 1
machdep.adjkerntz: 25200
machdep.disable_rtc_set: 0
machdep.wall_cmos_clock: 1
machdep.conrclk: 1843200
machdep.gdbspeed: 9600
machdep.conspeed: 9600
machdep.enable_panic_key: 0
machdep.disable_mtrrs: 0
machdep.cpu_idle_hlt: 1
machdep.guessed_bootdev: 2686451712
machdep.hlt_cpus: 0
machdep.panic_on_nmi: 1
machdep.tsc_freq: 697680092
machdep.i8254_freq: 1193182
user.cs_path: /usr/bin:/bin:/usr/sbin:/sbin:
user.bc_base_max: 99
user.bc_dim_max: 2048
user.bc_scale_max: 99
user.bc_string_max: 1000
user.coll_weights_max: 0
user.expr_nest_max: 32
user.line_max: 2048
user.re_dup_max: 255
user.posix2_version: 199212
user.posix2_c_bind: 0
user.posix2_c_dev: 0
user.posix2_char_term: 0
user.posix2_fort_dev: 0
user.posix2_fort_run: 0
user.posix2_localedef: 0
user.posix2_sw_dev: 0
user.posix2_upe: 0
user.stream_max: 20
user.tzname_max: 255
p1003_1b.asynchronous_io: 200112
p1003_1b.mapped_files: 1
p1003_1b.memlock: 0
p1003_1b.memlock_range: 0
p1003_1b.memory_protection: 0
p1003_1b.message_passing: 0
p1003_1b.prioritized_io: 0
p1003_1b.priority_scheduling: 1
p1003_1b.realtime_signals: 0
p1003_1b.semaphores: 0
p1003_1b.fsync: 0
p1003_1b.shared_memory_objects: 1
p1003_1b.synchronized_io: 0
p1003_1b.timers: 0
p1003_1b.aio_listio_max: 16
p1003_1b.aio_max: 1024
p1003_1b.aio_prio_delta_max: 0
p1003_1b.delaytimer_max: 0
p1003_1b.mq_open_max: 0
p1003_1b.pagesize: 4096
p1003_1b.rtsig_max: 0
p1003_1b.sem_nsems_max: 0
p1003_1b.sem_value_max: 0
p1003_1b.sigqueue_max: 0
p1003_1b.timer_max: 0
security.jail.set_hostname_allowed: 1
security.jail.socket_unixiproute_only: 1
security.jail.sysvipc_allowed: 0
security.jail.getfsstatroot_only: 1
security.jail.allow_raw_sockets: 0
security.jail.chflags_allowed: 0
security.jail.jailed: 0
security.bsd.suser_enabled: 1
security.bsd.see_other_uids: 1
security.bsd.see_other_gids: 1
security.bsd.conservative_signals: 1
security.bsd.unprivileged_proc_debug: 1
security.bsd.unprivileged_read_msgbuf: 1
security.bsd.hardlink_check_uid: 0
security.bsd.hardlink_check_gid: 0
security.bsd.unprivileged_get_quota: 0
dev.nexus.0.%driver: nexus
dev.nexus.0.%parent: root0
dev.npx.0.%desc: math processor
dev.npx.0.%driver: npx
dev.npx.0.%parent: nexus0
dev.legacy.0.%desc: legacy system
dev.legacy.0.%driver: legacy
dev.legacy.0.%parent: nexus0
dev.cpu.0.%driver: cpu
dev.cpu.0.%parent: legacy0
dev.cpu.1.%driver: cpu
dev.cpu.1.%parent: legacy0
dev.pcib.0.%desc: MPTable Host-PCI bridge
dev.pcib.0.%driver: pcib
dev.pcib.0.%parent: legacy0
dev.pcib.1.%desc: ServerWorks NB6635 3.0LE host to PCI bridge
dev.pcib.1.%driver: pcib
dev.pcib.1.%parent: legacy0
dev.pci.0.%desc: PCI bus
dev.pci.0.%driver: pci
dev.pci.0.%parent: pcib0
dev.pci.1.%desc: PCI bus
dev.pci.1.%driver: pci
dev.pci.1.%parent: pcib1
dev.hostb.0.%desc: Host to PCI bridge
dev.hostb.0.%driver: hostb
dev.hostb.0.%location: slot=0 function=0
dev.hostb.0.%pnpinfo: vendor=0x1166 device=0x0009 subvendor=0x0000 subdevice=0x0000 class=0x060000
dev.hostb.0.%parent: pci0
dev.hostb.1.%desc: Host to PCI bridge
dev.hostb.1.%driver: hostb
dev.hostb.1.%location: slot=0 function=1
dev.hostb.1.%pnpinfo: vendor=0x1166 device=0x0009 subvendor=0x0000 subdevice=0x0000 class=0x060000
dev.hostb.1.%parent: pci0
dev.fxp.0.%desc: Intel 82559 Pro/100 Ethernet
dev.fxp.0.%driver: fxp
dev.fxp.0.%location: slot=4 function=0
dev.fxp.0.%pnpinfo: vendor=0x8086 device=0x1229 subvendor=0x8086 subdevice=0x000c class=0x020000
dev.fxp.0.%parent: pci0
dev.fxp.0.int_delay: 1000
dev.fxp.0.bundle_max: 6
dev.fxp.0.rnr: 0
dev.fxp.0.noflow: 1
dev.fxp.1.%desc: Intel 82559 Pro/100 Ethernet
dev.fxp.1.%driver: fxp
dev.fxp.1.%location: slot=5 function=0
dev.fxp.1.%pnpinfo: vendor=0x8086 device=0x1229 subvendor=0x8086 subdevice=0x000c class=0x020000
dev.fxp.1.%parent: pci0
dev.fxp.1.int_delay: 1000
dev.fxp.1.bundle_max: 6
dev.fxp.1.rnr: 0
dev.fxp.1.noflow: 1
dev.miibus.0.%desc: MII bus
dev.miibus.0.%driver: miibus
dev.miibus.0.%parent: fxp0
dev.miibus.1.%desc: MII bus
dev.miibus.1.%driver: miibus
dev.miibus.1.%parent: fxp1
dev.inphy.0.%desc: i82555 10/100 media interface
dev.inphy.0.%driver: inphy
dev.inphy.0.%parent: miibus0
dev.inphy.1.%desc: i82555 10/100 media interface
dev.inphy.1.%driver: inphy
dev.inphy.1.%parent: miibus1
dev.isab.0.%desc: PCI-ISA bridge
dev.isab.0.%driver: isab
dev.isab.0.%location: slot=15 function=0
dev.isab.0.%pnpinfo: vendor=0x1166 device=0x0200 subvendor=0x1166 subdevice=0x0200 class=0x060100
dev.isab.0.%parent: pci0
dev.isa.0.%desc: ISA bus
dev.isa.0.%driver: isa
dev.isa.0.%parent: isab0
dev.atapci.0.%desc: ServerWorks ROSB4 UDMA33 controller
dev.atapci.0.%driver: atapci
dev.atapci.0.%location: slot=15 function=1
dev.atapci.0.%pnpinfo: vendor=0x1166 device=0x0211 subvendor=0x0000 subdevice=0x0000 class=0x01018a
dev.atapci.0.%parent: pci0
dev.ata.0.%driver: ata
dev.ata.0.%parent: atapci0
dev.ata.1.%driver: ata
dev.ata.1.%parent: atapci0
dev.ohci.0.%desc: OHCI (generic) USB controller
dev.ohci.0.%driver: ohci
dev.ohci.0.%location: slot=15 function=2
dev.ohci.0.%pnpinfo: vendor=0x1166 device=0x0220 subvendor=0x1166 subdevice=0x0220 class=0x0c0310
dev.ohci.0.%parent: pci0
dev.usb.0.%desc: OHCI (generic) USB controller
dev.usb.0.%driver: usb
dev.usb.0.%parent: ohci0
dev.uhub.0.%desc: (0x1166) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
dev.uhub.0.%driver: uhub
dev.uhub.0.%parent: usb0
dev.pir.0.%desc: PCI Interrupt Routing Table: 11 Entries
dev.pir.0.%driver: pir
dev.pir.0.%parent: legacy0
dev.orm.0.%desc: ISA Option ROMs
dev.orm.0.%driver: orm
dev.orm.0.%parent: isa0
dev.pmtimer.0.%driver: pmtimer
dev.pmtimer.0.%parent: isa0
dev.atkbdc.0.%desc: Keyboard controller (i8042)
dev.atkbdc.0.%driver: atkbdc
dev.atkbdc.0.%parent: isa0
dev.atkbd.0.%desc: AT Keyboard
dev.atkbd.0.%driver: atkbd
dev.atkbd.0.%parent: atkbdc0
dev.fdc.0.%desc: Enhanced floppy controller
dev.fdc.0.%driver: fdc
dev.fdc.0.%parent: isa0
dev.fd.0.%desc: 1440-KB 3.5" drive
dev.fd.0.%driver: fd
dev.fd.0.%parent: fdc0
dev.sc.0.%desc: System console
dev.sc.0.%driver: sc
dev.sc.0.%parent: isa0
dev.sio.0.%driver: sio
dev.sio.0.%parent: isa0
dev.vga.0.%desc: Generic ISA VGA
dev.vga.0.%driver: vga
dev.vga.0.%parent: isa0
dev.sysresource.0.%desc: System Memory
dev.sysresource.0.%driver: sysresource
dev.sysresource.0.%parent: isa0
dev.sysresource.1.%desc: System Resource
dev.sysresource.1.%driver: sysresource
dev.sysresource.1.%parent: isa0
dev.atdma.0.%desc: AT DMA controller
dev.atdma.0.%driver: atdma
dev.atdma.0.%parent: isa0
dev.attimer.0.%desc: AT timer
dev.attimer.0.%driver: attimer
dev.attimer.0.%parent: isa0
dev.attimer.1.%desc: AT realtime clock
dev.attimer.1.%driver: attimer
dev.attimer.1.%parent: isa0
dev.npxisa.0.%desc: Legacy ISA coprocessor support
dev.npxisa.0.%driver: npxisa
dev.npxisa.0.%parent: isa0
dev.pcibus_pnp.0.%desc: PCI Bus
dev.pcibus_pnp.0.%driver: pcibus_pnp
dev.pcibus_pnp.0.%parent: isa0
hptmv.status: RocketRAID 182x SATA Controller driver Version 1.1
--- sysctl-a.output ends here ---

--- uname-a.output begins here ---
SunOS orbit 5.8 Generic_108528-29 sun4u sparc SUNW,Ultra-Enterprise
--- uname-a.output ends here ---

--- GENERIC begins here ---
#
# GENERIC -- Generic kernel configuration file for FreeBSD/i386
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
#    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ../../conf/NOTES and NOTES files.
# If you are in doubt as to the purpose or necessity of a line, check first
# in NOTES.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.413.2.13 2005/04/02 16:37:58 scottl Exp $

machine		i386
cpu		I486_CPU
cpu		I586_CPU
cpu		I686_CPU
ident		GENERIC

# To statically compile in device wiring instead of /boot/device.hints
#hints		"GENERIC.hints"		# Default places to look for devices.

makeoptions DEBUG=-g

options 	SCHED_4BSD		# 4BSD scheduler
options 	INET			# InterNETworking
options 	INET6			# IPv6 communications protocols
options 	FFS			# Berkeley Fast Filesystem
options 	SOFTUPDATES		# Enable FFS soft updates support
options 	UFS_ACL			# Support for access control lists
options 	UFS_DIRHASH		# Improve performance on big directories
options 	MD_ROOT			# MD is a potential root device
options 	NFSCLIENT		# Network Filesystem Client
options 	NFSSERVER		# Network Filesystem Server
options 	NFS_ROOT		# NFS usable as /, requires NFSCLIENT
options 	MSDOSFS			# MSDOS Filesystem
options 	CD9660			# ISO 9660 Filesystem
options 	PROCFS			# Process filesystem (requires PSEUDOFS)
options 	PSEUDOFS		# Pseudo-filesystem framework
options 	GEOM_GPT		# GUID Partition Tables.
options 	COMPAT_43		# Compatible with BSD 4.3 [KEEP THIS!]
options 	COMPAT_FREEBSD4		# Compatible with FreeBSD4
options 	SCSI_DELAY=15000	# Delay (in ms) before probing SCSI
options 	KTRACE			# ktrace(1) support
options 	SYSVSHM			# SYSV-style shared memory
options 	SYSVMSG			# SYSV-style message queues
options 	SYSVSEM			# SYSV-style semaphores
options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
					# output.  Adds ~128k to driver.
options 	AHD_REG_PRETTY_PRINT	# Print register bitfields in debug
					# output.  Adds ~215k to driver.
options 	ADAPTIVE_GIANT		# Giant mutex is adaptive.

device		apic			# I/O APIC

# Bus support.  Do not remove isa, even if you have no isa slots
device		isa
device		eisa
device		pci

# Floppy drives
device		fdc

# ATA and ATAPI devices
device		ata
device		atadisk		# ATA disk drives
device		ataraid		# ATA RAID drives
device		atapicd		# ATAPI CDROM drives
device		atapifd		# ATAPI floppy drives
device		atapist		# ATAPI tape drives
options 	ATA_STATIC_ID	# Static device numbering

# SCSI Controllers
device		ahb		# EISA AHA1742 family
device		ahc		# AHA2940 and onboard AIC7xxx devices
device		ahd		# AHA39320/29320 and onboard AIC79xx devices
device		amd		# AMD 53C974 (Tekram DC-390(T))
device		isp		# Qlogic family
device		mpt		# LSI-Logic MPT-Fusion
#device		ncr		# NCR/Symbios Logic
device		sym		# NCR/Symbios Logic (newer chipsets + those of `ncr')
device		trm		# Tekram DC395U/UW/F DC315U adapters

device		adv		# Advansys SCSI adapters
device		adw		# Advansys wide SCSI adapters
device		aha		# Adaptec 154x SCSI adapters
device		aic		# Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
device		bt		# Buslogic/Mylex MultiMaster SCSI adapters

device		ncv		# NCR 53C500
device		nsp		# Workbit Ninja SCSI-3
device		stg		# TMC 18C30/18C50

# SCSI peripherals
device		scbus		# SCSI bus (required for SCSI)
device		ch		# SCSI media changers
device		da		# Direct Access (disks)
device		sa		# Sequential Access (tape etc)
device		cd		# CD
device		pass		# Passthrough device (direct SCSI access)
device		ses		# SCSI Environmental Services (and SAF-TE)

# RAID controllers interfaced to the SCSI subsystem
device		amr		# AMI MegaRAID
device		arcmsr		# Areca SATA II RAID
device		asr		# DPT SmartRAID V, VI and Adaptec SCSI RAID
device		ciss		# Compaq Smart RAID 5*
device		dpt		# DPT Smartcache III, IV - See NOTES for options
device		hptmv		# Highpoint RocketRAID 182x
device		iir		# Intel Integrated RAID
device		ips		# IBM (Adaptec) ServeRAID
device		mly		# Mylex AcceleRAID/eXtremeRAID
device		twa		# 3ware 9000 series PATA/SATA RAID

# RAID controllers
device		aac		# Adaptec FSA RAID
device		aacp		# SCSI passthrough for aac (requires CAM)
device		ida		# Compaq Smart RAID
device		mlx		# Mylex DAC960 family
device		pst		# Promise Supertrak SX6000
device		twe		# 3ware ATA RAID

# atkbdc0 controls both the keyboard and the PS/2 mouse
device		atkbdc		# AT keyboard controller
device		atkbd		# AT keyboard
device		psm		# PS/2 mouse

device		vga		# VGA video card driver

device		splash		# Splash screen and screen saver support

# syscons is the default console driver, resembling an SCO console
device		sc

# Enable this for the pcvt (VT220 compatible) console driver
#device		vt
#options 	XSERVER		# support for X server on a vt console
#options 	FAT_CURSOR	# start with block cursor

device		agp		# support several AGP chipsets

# Floating point support - do not disable.
device		npx

# Power management support (see NOTES for more options)
#device		apm
# Add suspend/resume support for the i8254.
device		pmtimer

# PCCARD (PCMCIA) support
# PCMCIA and cardbus bridge support
device		cbb		# cardbus (yenta) bridge
device		pccard		# PC Card (16-bit) bus
device		cardbus		# CardBus (32-bit) bus

# Serial (COM) ports
device		sio		# 8250, 16[45]50 based serial ports

# Parallel port
device		ppc
device		ppbus		# Parallel port bus (required)
device		lpt		# Printer
device		plip		# TCP/IP over parallel
device		ppi		# Parallel port interface device
#device		vpo		# Requires scbus and da

# If you've got a "dumb" serial or parallel PCI card that is
# supported by the puc(4) glue driver, uncomment the following
# line to enable it (connects to the sio and/or ppc drivers):
#device         puc

# PCI Ethernet NICs.
device		de		# DEC/Intel DC21x4x (``Tulip'')
device		em		# Intel PRO/1000 adapter Gigabit Ethernet Card
device		ixgb		# Intel PRO/10GbE Ethernet Card
device		txp		# 3Com 3cR990 (``Typhoon'')
device		vx		# 3Com 3c590, 3c595 (``Vortex'')

# PCI Ethernet NICs that use the common MII bus controller code.
# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
device		miibus		# MII bus support
device		bfe		# Broadcom BCM440x 10/100 Ethernet
device		bge		# Broadcom BCM570xx Gigabit Ethernet
device		dc		# DEC/Intel 21143 and various workalikes
device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
device		lge		# Level 1 LXT1001 gigabit ethernet
device		nge		# NatSemi DP83820 gigabit ethernet
device		pcn		# AMD Am79C97x PCI 10/100 (precedence over 'lnc')
device		re		# RealTek 8139C+/8169/8169S/8110S
device		rl		# RealTek 8129/8139
device		sf		# Adaptec AIC-6915 (``Starfire'')
device		sis		# Silicon Integrated Systems SiS 900/SiS 7016
device		sk		# SysKonnect SK-984x & SK-982x gigabit Ethernet
device		ste		# Sundance ST201 (D-Link DFE-550TX)
device		ti		# Alteon Networks Tigon I/II gigabit Ethernet
device		tl		# Texas Instruments ThunderLAN
device		tx		# SMC EtherPower II (83c170 ``EPIC'')
device		vge		# VIA VT612x gigabit ethernet
device		vr		# VIA Rhine, Rhine II
device		wb		# Winbond W89C840F
device		xl		# 3Com 3c90x (``Boomerang'', ``Cyclone'')

# ISA Ethernet NICs.  pccard NICs included.
device		cs		# Crystal Semiconductor CS89x0 NIC
# 'device ed' requires 'device miibus'
device		ed		# NE[12]000, SMC Ultra, 3c503, DS8390 cards
device		ex		# Intel EtherExpress Pro/10 and Pro/10+
device		ep		# Etherlink III based cards
device		fe		# Fujitsu MB8696x based cards
device		ie		# EtherExpress 8/16, 3C507, StarLAN 10 etc.
device		lnc		# NE2100, NE32-VL Lance Ethernet cards
device		sn		# SMC's 9000 series of Ethernet chips
device		xe		# Xircom pccard Ethernet

# ISA devices that use the old ISA shims
#device		le

# Wireless NIC cards
device		wlan		# 802.11 support
device		an		# Aironet 4500/4800 802.11 wireless NICs.
device		awi		# BayStack 660 and others
device		wi		# WaveLAN/Intersil/Symbol 802.11 wireless NICs.
#device		wl		# Older non 802.11 Wavelan wireless NIC.

# Pseudo devices.
device		loop		# Network loopback
device		mem		# Memory and kernel memory devices
device		io		# I/O device
device		random		# Entropy device
device		ether		# Ethernet support
device		sl		# Kernel SLIP
device		ppp		# Kernel PPP
device		tun		# Packet tunnel.
device		pty		# Pseudo-ttys (telnet etc)
device		md		# Memory "disks"
device		gif		# IPv6 and IPv4 tunneling
device		faith		# IPv6-to-IPv4 relaying (translation)

# The `bpf' device enables the Berkeley Packet Filter.
# Be aware of the administrative consequences of enabling this!
# Note that 'bpf' is required for DHCP.
device		bpf		# Berkeley packet filter

# USB support
device		uhci		# UHCI PCI->USB interface
device		ohci		# OHCI PCI->USB interface
#device		ehci		# EHCI PCI->USB interface (USB 2.0)
device		usb		# USB Bus (required)
#device		udbp		# USB Double Bulk Pipe devices
device		ugen		# Generic
device		uhid		# "Human Interface Devices"
device		ukbd		# Keyboard
device		ulpt		# Printer
device		umass		# Disks/Mass storage - Requires scbus and da
device		ums		# Mouse
device		urio		# Diamond Rio 500 MP3 player
device		uscanner	# Scanners
# USB Ethernet, requires mii
device		aue		# ADMtek USB Ethernet
device		axe		# ASIX Electronics USB Ethernet
device		cdce		# Generic USB over Ethernet
device		cue		# CATC USB Ethernet
device		kue		# Kawasaki LSI USB Ethernet
device		rue		# RealTek RTL8150 USB Ethernet

# FireWire support
device		firewire	# FireWire bus code
device		sbp		# SCSI over FireWire (Requires scbus and da)
device		fwe		# Ethernet over FireWire (non-standard!)
--- GENERIC ends here ---

--- SMP begins here ---
#
# SMP -- Generic kernel configuration file for FreeBSD/i386 SMP
#	 Use this for multi-processor machines
#
# $FreeBSD: src/sys/i386/conf/SMP,v 1.5.2.3 2005/02/06 12:56:27 obrien Exp $

include GENERIC

ident		SMP-GENERIC

# To make an SMP kernel, the next line is needed
options 	SMP			# Symmetric MultiProcessor Kernel
--- SMP ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



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