files revision 1.173 1 # $NetBSD: files,v 1.173 1998/02/16 22:12:48 thorpej Exp $
2
3 # @(#)files.newconf 7.5 (Berkeley) 5/10/93
4
5 # options understood by the machine-independent part of the kernel
6 # (note, these are case-sensitive)
7 defopt KMEMSTATS
8 defopt RTC_OFFSET
9 defopt TCP_RECVSPACE
10 defopt TCP_SENDSPACE
11 defopt UCONSOLE
12
13 defopt DEVPAGER
14 defopt SWAPPAGER
15 defopt VNODEPAGER
16
17 defopt opt_nfs_boot.h NFS_BOOT_BOOTP NFS_BOOT_BOOTPARAM NFS_BOOT_DHCP
18 NFS_BOOT_GATEWAY
19
20 defopt MROUTING
21 defopt TCP_COMPAT_42
22
23 defopt opt_malloclog.h MALLOCLOG MALLOCLOGSIZE
24
25 defopt INSECURE
26
27 defopt opt_execfmt.h EXEC_AOUT EXEC_ECOFF EXEC_ELF32 EXEC_ELF64 EXEC_SCRIPT
28
29 # these are not together so that turning on UVMHIST only affects files that
30 # use it, not most of the kernel
31 defopt opt_uvm.h UVM
32 defopt opt_uvmhist.h UVMHIST UVMHIST_PRINT
33 defopt opt_pmap_new.h PMAP_NEW
34
35 # device classes
36 devclass disk
37 devclass tape
38 devclass ifnet
39 devclass tty
40
41 # generic attributes
42 define audio { }
43 define scsi {[channel = -1]}
44 define ata {[drive = -1]}
45 define atapi { }
46 define miibus { }
47
48 # audio device attributes
49 define mulaw
50 define auconv
51
52 # audio device, attaches to audio hardware driver
53 device audio
54 attach audio at audio
55
56 # net device attributes - we have generic code for arc(net), ether(net),
57 # fddi, and atm.
58 define arc
59 define atm
60 define ether
61 define fddi
62
63 # devices ARPing IPv4 pull this in:
64 define arp
65
66 # Device description for machine-independent IPKDB code.
67 define ipkdb
68
69 device ipkdbif: ipkdb
70 device ipkdbslip: ipkdb
71 device ipkdbppp: ipkdb
72
73 # Common files for any ipkdb support
74 file ipkdb/ipkdb_ipkdb.c ipkdb needs-flag
75 file ipkdb/ipkdb_if.c ipkdb
76
77 # Support for slip
78 file ipkdb/ipkdb_slip.c ipkdbslip needs-flag
79
80 # Support for ppp (for now only fake)
81 file ipkdb/ipkdb_ppp.c ipkdbppp needs-flag
82
83
84 # "Chipset" drivers. These are the bus-independent routines which
85 # contain the cfdrivers. Attachments are provided by files.<bus>
86
87 # Adaptec AIC-6[32]60 ICs
88 device aic: scsi
89 file dev/ic/aic6360.c aic
90
91 # Adaptec 2[789]4X, 394X, aic7770 and aic78[5678]0 SCSI controllers
92 device ahc: scsi
93 file dev/ic/aic7xxx.c ahc
94
95 # BusLogic MultiMaster and MultiMaster Ultra SCSI controllers
96 # (Must be declared before AHA to ensure bha probes before aha.
97 # Probing AHA first configures bhas as aha, via their AHA
98 # hardware-compatibility mode.)
99 device bha: scsi
100 file dev/ic/bha.c bha
101
102 # Adaptec AHA-154x and AHA-164x controllers
103 # (must be after bha, see above)
104 device aha: scsi
105 file dev/ic/aha.c aha
106
107 # Qlogic ISP 10x0 SCSI Controllers
108 device isp: scsi
109 file dev/ic/isp.c isp
110
111 # UltraStor SCSI controllers
112 device uha: scsi
113 file dev/ic/uha.c uha
114
115 # 3Com Etherlink-III Ethernet controller
116 device ep: arp, ether, ifnet
117 file dev/ic/elink3.c ep
118
119 # DEC EtherWORKS III (LEMAC) Ethernet controllers
120 device lc: arp, ether, ifnet
121 file dev/ic/lemac.c lc
122
123 # LANCE and PCnet Ethernet controllers
124 device le: arp, ether, ifnet
125 file dev/ic/am7990.c le
126
127 # 8390-family Ethernet controllers
128 define dp8390nic
129 file dev/ic/dp8390.c dp8390nic
130
131 # NCR 5380 SCSI Bus Controller
132 define ncr5380sbc
133 file dev/ic/ncr5380sbc.c ncr5380sbc
134
135 # DEC FDDI Chipset
136 define pdq
137 file dev/ic/pdq.c pdq
138 file dev/ic/pdq_ifsubr.c pdq
139
140 # Cyclades Cyclom-8/16/32
141 device cy: tty
142 file dev/ic/cy.c cy needs-flag
143
144 # Efficient Networks, Inc. ATM interface
145 device en: atm, ifnet
146 file dev/ic/midway.c en
147
148 # NCR 53x9x or Emulex ESP SCSI Controller
149 define ncr53c9x
150 file dev/ic/ncr53c9x.c ncr53c9x
151
152 # Intel 82586 Ethernet Controller
153 define i82586
154 file dev/ic/i82586.c i82586
155
156 # SMC 91Cxx Ethernet Controller
157 device sm: arp, ether, ifnet
158 file dev/ic/smc91cxx.c sm
159
160 # Interwave Am78C201 audio driver
161 define interwave
162 file dev/ic/interwave.c interwave
163
164 # TMS 320av110 MPEG2/audio driver
165 define tms320av110
166 file dev/ic/tms320av110.c tms320av110
167
168 # Novell NE2000-compatible Ethernet cards, based on the
169 # National Semiconductor DS8390.
170 device ne: ether, ifnet, arp, dp8390nic
171 file dev/ic/ne2000.c ne
172
173 # 8250/16[45]50-based "com" ports
174 # XXX In a perfect world, this would be done with attributes
175 device com: tty
176 file dev/ic/com.c com needs-flag
177
178 # Device description for i2c bus and i2c eeprom
179 define i2c
180 define i2c_eeprom
181
182 # XXX THE FOLLOWING BLOCK SHOULD BE UNCOMMENTED, BUT CANNOT
183 # XXX BECAUSE NOT ALL PORTS USE THE MI wdc DRIVER YET.
184 #
185 # # ESDI/IDE/etc. controllers
186 # device wdc: ata, atapi
187 # file dev/ic/wdc.c
188 # wdc & (wd | !wd) needs-flag # XXX
189
190 # Attributes which machine-independent bus support can be attached to.
191 # These should be defined here, because some of these busses can have
192 # devices which provide these attributes, and we'd like to avoid hairy
193 # ordering constraints on inclusion of the busses' "files" files.
194 define isabus { } # ISA attachment
195 define eisabus { } # EISA attachment
196 define pcibus {[bus = -1]} # PCI attachment
197 define tcbus { } # TurboChannel attachment
198
199 # legitimate pseudo-devices
200 pseudo-device vnd: disk
201 pseudo-device ccd: disk
202 pseudo-device md: disk
203
204 pseudo-device pty: tty
205 pseudo-device tb: tty
206 pseudo-device rnd
207
208 pseudo-device loop: ifnet
209 pseudo-device sl: ifnet
210 pseudo-device ppp: ifnet
211 pseudo-device tun: ifnet
212 pseudo-device bpfilter: ifnet
213 pseudo-device strip: ifnet
214 pseudo-device ipfilter: ifnet
215
216 # kernel sources
217 file adosfs/adlookup.c adosfs
218 file adosfs/adutil.c adosfs
219 file adosfs/advfsops.c adosfs
220 file adosfs/advnops.c adosfs
221 file ddb/db_access.c ddb
222 file ddb/db_aout.c ddb
223 file ddb/db_break.c ddb
224 file ddb/db_command.c ddb
225 file ddb/db_elf.c ddb
226 file ddb/db_examine.c ddb
227 file ddb/db_expr.c ddb
228 file ddb/db_input.c ddb
229 file ddb/db_lex.c ddb
230 file ddb/db_output.c ddb
231 file ddb/db_print.c ddb
232 file ddb/db_run.c ddb
233 file ddb/db_sym.c ddb
234 file ddb/db_trap.c ddb
235 file ddb/db_variables.c ddb
236 file ddb/db_watch.c ddb
237 file ddb/db_write_cmd.c ddb
238 file ddb/db_xxx.c ddb
239 file dev/auconv.c auconv
240 file dev/audio.c audio needs-flag
241 file dev/ccd.c ccd needs-flag
242 file dev/md.c md needs-count
243 file dev/mulaw.c mulaw
244 file dev/vnd.c vnd needs-flag
245 file dev/rnd.c rnd needs-flag
246 file dev/rndpool.c rnd needs-flag
247 file dev/i2c/i2c_bus.c i2c
248 file dev/i2c/i2c_eeprom.c i2c_eeprom
249 file isofs/cd9660/cd9660_bmap.c cd9660
250 file isofs/cd9660/cd9660_lookup.c cd9660
251 file isofs/cd9660/cd9660_node.c cd9660
252 file isofs/cd9660/cd9660_rrip.c cd9660
253 file isofs/cd9660/cd9660_util.c cd9660
254 file isofs/cd9660/cd9660_vfsops.c cd9660
255 file isofs/cd9660/cd9660_vnops.c cd9660
256 file kern/exec_aout.c exec_aout
257 file kern/exec_conf.c
258 file kern/exec_ecoff.c exec_ecoff
259 file kern/exec_elf32.c exec_elf32
260 file kern/exec_elf64.c exec_elf64
261 file kern/exec_elf_common.c exec_elf32 | exec_elf64
262 file kern/exec_script.c exec_script
263 file kern/exec_subr.c
264 file kern/init_main.c
265 file kern/init_sysent.c
266 file kern/kern_acct.c
267 file kern/kern_clock.c
268 file kern/kern_descrip.c
269 file kern/kern_exec.c
270 file kern/kern_exit.c
271 file kern/kern_fork.c
272 file kern/kern_fthread.c
273 file kern/kern_ktrace.c ktrace
274 file kern/kern_lkm.c lkm
275 file kern/kern_lock.c
276 file kern/kern_malloc.c
277 file kern/kern_ntptime.c
278 file kern/kern_physio.c
279 file kern/kern_proc.c
280 file kern/kern_prot.c
281 file kern/kern_resource.c
282 file kern/kern_sig.c
283 file kern/kern_subr.c
284 file kern/kern_synch.c
285 file kern/kern_sysctl.c
286 file kern/kern_time.c
287 file kern/kern_xxx.c
288 file kern/kgdb_stub.c kgdb
289 file kern/subr_autoconf.c
290 file kern/subr_disk.c
291 file kern/subr_extent.c
292 file kern/subr_log.c
293 file kern/subr_pool.c
294 file kern/subr_prf.c
295 file kern/subr_prof.c
296 file kern/subr_rmap.c
297 file kern/subr_xxx.c
298 file kern/sys_generic.c
299 file kern/sys_process.c
300 file kern/sys_socket.c
301 file kern/syscalls.c syscall_debug
302 file kern/sysv_ipc.c sysvshm | sysvsem | sysvmsg
303 file kern/sysv_msg.c sysvmsg
304 file kern/sysv_sem.c sysvsem
305 file kern/sysv_shm.c sysvshm
306 file kern/tty.c
307 file kern/tty_conf.c
308 file kern/tty_pty.c pty needs-count
309 file kern/tty_subr.c
310 file kern/tty_tb.c tb needs-count
311 file kern/tty_tty.c
312 file kern/uipc_domain.c
313 file kern/uipc_mbuf.c
314 file kern/uipc_proto.c
315 file kern/uipc_socket.c
316 file kern/uipc_socket2.c
317 file kern/uipc_syscalls.c
318 file kern/uipc_usrreq.c
319 file kern/vfs_bio.c
320 file kern/vfs_cache.c
321 file kern/vfs_cluster.c
322 file kern/vfs_conf.c
323 file kern/vfs_init.c
324 file kern/vfs_lockf.c
325 file kern/vfs_lookup.c
326 file kern/vfs_subr.c
327 file kern/vfs_syscalls.c
328 file kern/vfs_vnops.c
329 file kern/vnode_if.c
330 file miscfs/deadfs/dead_vnops.c
331 file miscfs/fdesc/fdesc_vfsops.c fdesc
332 file miscfs/fdesc/fdesc_vnops.c fdesc
333 file miscfs/fifofs/fifo_vnops.c fifo
334 file miscfs/genfs/genfs_vnops.c
335 file miscfs/kernfs/kernfs_vfsops.c kernfs
336 file miscfs/kernfs/kernfs_vnops.c kernfs
337 file miscfs/nullfs/null_subr.c nullfs
338 file miscfs/nullfs/null_vfsops.c nullfs
339 file miscfs/nullfs/null_vnops.c nullfs
340 file miscfs/portal/portal_vfsops.c portal
341 file miscfs/portal/portal_vnops.c portal
342 file miscfs/procfs/procfs_ctl.c procfs
343 file miscfs/procfs/procfs_fpregs.c
344 file miscfs/procfs/procfs_mem.c
345 file miscfs/procfs/procfs_note.c procfs
346 file miscfs/procfs/procfs_regs.c
347 file miscfs/procfs/procfs_status.c procfs
348 file miscfs/procfs/procfs_subr.c procfs
349 file miscfs/procfs/procfs_vfsops.c procfs
350 file miscfs/procfs/procfs_vnops.c procfs
351 file miscfs/specfs/spec_vnops.c
352 file miscfs/umapfs/umap_subr.c umapfs
353 file miscfs/umapfs/umap_vfsops.c umapfs
354 file miscfs/umapfs/umap_vnops.c umapfs
355 file miscfs/union/union_subr.c union
356 file miscfs/union/union_vfsops.c union
357 file miscfs/union/union_vnops.c union
358 file msdosfs/msdosfs_conv.c msdosfs
359 file msdosfs/msdosfs_denode.c msdosfs
360 file msdosfs/msdosfs_fat.c msdosfs
361 file msdosfs/msdosfs_lookup.c msdosfs
362 file msdosfs/msdosfs_vfsops.c msdosfs
363 file msdosfs/msdosfs_vnops.c msdosfs
364 file net/bpf.c bpfilter needs-count
365 file net/bpf_filter.c bpfilter | ppp
366 file net/bsd-comp.c ppp & ppp_bsdcomp
367 file net/if.c
368 file net/if_arcsubr.c arc needs-flag
369 file net/if_atmsubr.c atm needs-flag
370 file net/if_ethersubr.c ether | fddi needs-flag
371 file net/if_fddisubr.c fddi
372 file net/if_loop.c loop needs-count
373 file net/if_media.c
374 file net/if_sl.c sl needs-count
375 file net/if_strip.c strip needs-count
376 file net/if_ppp.c ppp needs-count
377 file net/if_tun.c tun needs-count
378 file net/pfil.c pfil_hooks | ipfilter
379 file net/ppp-deflate.c ppp & ppp_deflate
380 file net/ppp_tty.c ppp
381 file net/radix.c
382 file net/raw_cb.c
383 file net/raw_usrreq.c
384 file net/route.c
385 file net/rtsock.c
386 file net/slcompress.c sl | ppp | strip
387 file net/zlib.c ppp & ppp_deflate
388 file netccitt/ccitt_proto.c ccitt
389 file netccitt/hd_debug.c hdlc
390 file netccitt/hd_input.c hdlc
391 file netccitt/hd_output.c hdlc
392 file netccitt/hd_subr.c hdlc
393 file netccitt/hd_timer.c hdlc
394 file netccitt/if_x25subr.c ccitt
395 file netccitt/llc_input.c llc
396 file netccitt/llc_output.c llc
397 file netccitt/llc_subr.c llc
398 file netccitt/llc_timer.c llc
399 file netccitt/pk_acct.c ccitt
400 file netccitt/pk_debug.c ccitt
401 file netccitt/pk_input.c ccitt
402 file netccitt/pk_llcsubr.c llc | hdlc
403 file netccitt/pk_output.c ccitt
404 file netccitt/pk_subr.c ccitt
405 file netccitt/pk_timer.c ccitt
406 file netccitt/pk_usrreq.c ccitt
407 file netinet/if_arp.c arp needs-flag
408 file netinet/if_atm.c atm
409 file netinet/igmp.c inet
410 file netinet/in.c inet
411 file netinet/in_pcb.c inet
412 file netinet/in_proto.c inet
413 file netinet/ip_icmp.c inet
414 file netinet/ip_input.c inet
415 file netinet/ip_mroute.c inet & mrouting
416 file netinet/ip_output.c inet
417 file netinet/raw_ip.c inet
418 file netinet/tcp_debug.c inet
419 file netinet/tcp_input.c inet
420 file netinet/tcp_output.c inet
421 file netinet/tcp_subr.c inet
422 file netinet/tcp_timer.c inet
423 file netinet/tcp_usrreq.c inet
424 file netinet/udp_usrreq.c inet
425 file netinet/ip_auth.c ipfilter needs-flag
426 file netinet/ip_fil.c ipfilter
427 file netinet/fil.c ipfilter
428 file netinet/ip_nat.c ipfilter
429 file netinet/ip_frag.c ipfilter
430 file netinet/ip_log.c ipfilter & ipfilter_log
431 file netinet/ip_proxy.c ipfilter
432 file netinet/ip_state.c ipfilter
433 file netatalk/aarp.c netatalk
434 file netatalk/at_control.c netatalk
435 file netatalk/at_proto.c netatalk
436 file netatalk/at_rmx.c netatalkdebug
437 file netatalk/ddp_input.c netatalk
438 file netatalk/ddp_output.c netatalk
439 file netatalk/ddp_usrreq.c netatalk
440 file netiso/clnp_debug.c iso
441 file netiso/clnp_er.c iso
442 file netiso/clnp_frag.c iso
443 file netiso/clnp_input.c iso
444 file netiso/clnp_options.c iso
445 file netiso/clnp_output.c iso
446 file netiso/clnp_raw.c iso
447 file netiso/clnp_subr.c iso
448 file netiso/clnp_timer.c iso
449 file netiso/cltp_usrreq.c iso
450 file netiso/esis.c iso
451 file netiso/idrp_usrreq.c iso
452 file netiso/if_cons.c iso
453 file netiso/if_eon.c eon
454 file netiso/iso.c iso
455 file netiso/iso_chksum.c iso
456 file netiso/iso_pcb.c iso
457 file netiso/iso_proto.c iso
458 file netiso/iso_snpac.c iso
459 file netiso/tp_astring.c iso | tpip
460 file netiso/tp_cons.c iso
461 file netiso/tp_driver.c iso | tpip
462 file netiso/tp_emit.c iso | tpip
463 file netiso/tp_inet.c iso | tpip
464 file netiso/tp_input.c iso | tpip
465 file netiso/tp_iso.c iso
466 file netiso/tp_meas.c iso | tpip
467 file netiso/tp_output.c iso | tpip
468 file netiso/tp_pcb.c iso | tpip
469 file netiso/tp_subr.c iso | tpip
470 file netiso/tp_subr2.c iso | tpip
471 file netiso/tp_timer.c iso | tpip
472 file netiso/tp_trace.c iso | tpip
473 file netiso/tp_usrreq.c iso | tpip
474 file netiso/tuba_subr.c iso | tuba
475 file netiso/tuba_table.c iso | tuba
476 file netiso/tuba_usrreq.c iso | tuba
477 file netnatm/natm.c natm
478 file netnatm/natm_pcb.c natm
479 file netnatm/natm_proto.c natm
480 file netns/idp_usrreq.c ns
481 file netns/ns.c ns
482 file netns/ns_error.c ns
483 file netns/ns_input.c ns
484 file netns/ns_ip.c ns
485 file netns/ns_output.c ns
486 file netns/ns_pcb.c ns
487 file netns/ns_proto.c ns
488 file netns/spp_debug.c ns
489 file netns/spp_usrreq.c ns
490 file nfs/krpc_subr.c nfs
491 file nfs/nfs_bio.c nfs
492 file nfs/nfs_boot.c nfs
493 file nfs/nfs_bootdhcp.c nfs & (nfs_boot_bootp | nfs_boot_dhcp)
494 file nfs/nfs_bootparam.c nfs & nfs_boot_bootparam
495 file nfs/nfs_node.c nfs
496 file nfs/nfs_nqlease.c nfsserver | nfs
497 file nfs/nfs_serv.c nfsserver
498 file nfs/nfs_socket.c nfsserver | nfs
499 file nfs/nfs_srvcache.c nfsserver
500 file nfs/nfs_subs.c nfsserver | nfs
501 file nfs/nfs_syscalls.c nfsserver | nfs
502 file nfs/nfs_vfsops.c nfs
503 file nfs/nfs_vnops.c nfs
504 file ufs/ext2fs/ext2fs_alloc.c ext2fs
505 file ufs/ext2fs/ext2fs_balloc.c ext2fs
506 file ufs/ext2fs/ext2fs_bmap.c ext2fs
507 file ufs/ext2fs/ext2fs_bswap.c ext2fs
508 file ufs/ext2fs/ext2fs_inode.c ext2fs
509 file ufs/ext2fs/ext2fs_lookup.c ext2fs
510 file ufs/ext2fs/ext2fs_readwrite.c ext2fs
511 file ufs/ext2fs/ext2fs_subr.c ext2fs
512 file ufs/ext2fs/ext2fs_vfsops.c ext2fs
513 file ufs/ext2fs/ext2fs_vnops.c ext2fs
514 file ufs/ffs/ffs_alloc.c ffs | mfs
515 file ufs/ffs/ffs_balloc.c ffs | mfs
516 file ufs/ffs/ffs_inode.c ffs | mfs
517 file ufs/ffs/ffs_subr.c ffs | mfs
518 file ufs/ffs/ffs_tables.c ffs | mfs
519 file ufs/ffs/ffs_vfsops.c ffs | mfs
520 file ufs/ffs/ffs_vnops.c ffs | mfs
521 file ufs/lfs/lfs_alloc.c lfs
522 file ufs/lfs/lfs_bio.c lfs
523 file ufs/lfs/lfs_balloc.c lfs
524 file ufs/lfs/lfs_cksum.c lfs
525 file ufs/lfs/lfs_debug.c lfs
526 file ufs/lfs/lfs_inode.c lfs
527 file ufs/lfs/lfs_segment.c lfs
528 file ufs/lfs/lfs_subr.c lfs
529 file ufs/lfs/lfs_syscalls.c lfs
530 file ufs/lfs/lfs_vfsops.c lfs
531 file ufs/lfs/lfs_vnops.c lfs
532 file ufs/mfs/mfs_vfsops.c mfs
533 file ufs/mfs/mfs_vnops.c mfs
534 file ufs/ufs/ufs_bmap.c ffs | lfs | mfs | ext2fs
535 file ufs/ufs/ufs_ihash.c ffs | lfs | mfs | ext2fs
536 file ufs/ufs/ufs_inode.c ffs | lfs | mfs
537 file ufs/ufs/ufs_lookup.c ffs | lfs | mfs | ext2fs
538 file ufs/ufs/ufs_quota.c quota & (ffs | lfs | mfs)
539 file ufs/ufs/ufs_vfsops.c ffs | lfs | mfs | ext2fs
540 file ufs/ufs/ufs_vnops.c ffs | lfs | mfs | ext2fs
541 file vm/device_pager.c !uvm & devpager
542 file vm/swap_pager.c !uvm & swappager
543 file vm/vm_fault.c !uvm
544 file vm/vm_glue.c !uvm
545 file vm/vm_init.c !uvm
546 file vm/vm_kern.c !uvm
547 file vm/vm_map.c !uvm
548 file vm/vm_meter.c !uvm
549 file vm/vm_mmap.c !uvm
550 file vm/vm_object.c !uvm
551 file vm/vm_page.c !uvm
552 file vm/vm_pageout.c !uvm
553 file vm/vm_pager.c !uvm
554 file vm/vm_swap.c !uvm
555 file vm/vm_unix.c !uvm
556 file vm/vm_user.c !uvm
557 file vm/vnode_pager.c !uvm & vnodepager
558 file uvm/uvm_amap.c uvm
559 file uvm/uvm_aobj.c uvm
560 file uvm/uvm_device.c uvm
561 file uvm/uvm_fault.c uvm
562 file uvm/uvm_glue.c uvm
563 file uvm/uvm_init.c uvm
564 file uvm/uvm_io.c uvm
565 file uvm/uvm_km.c uvm
566 file uvm/uvm_loan.c uvm
567 file uvm/uvm_map.c uvm
568 file uvm/uvm_meter.c uvm
569 file uvm/uvm_mmap.c uvm
570 file uvm/uvm_page.c uvm
571 file uvm/uvm_pager.c uvm
572 file uvm/uvm_pdaemon.c uvm
573 file uvm/uvm_pglist.c uvm
574 file uvm/uvm_stat.c uvm
575 file uvm/uvm_swap.c uvm
576 file uvm/uvm_unix.c uvm
577 file uvm/uvm_user.c uvm
578 file uvm/uvm_vnode.c uvm
579