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