diff --git a/en_US.ISO8859-1/articles/5-roadmap/article.sgml b/en_US.ISO8859-1/articles/5-roadmap/article.sgml
index 75746e8b6e..bb8905a442 100644
--- a/en_US.ISO8859-1/articles/5-roadmap/article.sgml
+++ b/en_US.ISO8859-1/articles/5-roadmap/article.sgml
@@ -1,670 +1,670 @@
%man;
%freebsd;
%authors;
%teams;
%mailing-lists;
RELENG_3">
RELENG_4">
RELENG_5">
RELENG_5_1">
RELENG_5_2">
HEAD">
]>
The Roadmap for 5-STABLEThe &os; Release Engineering Team$FreeBSD$2003The &os; Release
Engineering TeamIntroduction and BackgroundAfter nearly three years of work, &os; 5.0 was released in January
of 2003. Features like the GEOM block layer, Mandatory Access Controls,
ACPI, sparc64 and ia64 platform support, and UFS snapshots, background
filesystem checks, and 64-bit inode sizes make it an exciting operating
system for both desktop and production users. However, some important
features are not complete. The foundations for fine-grained locking
and preemption in the kernel exist, but much more work is left to be
done. Work on Kernel Schedulable Entities (KSE), similar to Scheduler
Activations, has been ongoing but needs a push to realize its benefit.
Performance compared to &os; 4.X has
declined and must be restored and surpassed.This is somewhat similar to the situation that &os; faced in the
3.X series. Work on 3-CURRENT trudged along
seemingly forever, and finally a cry was made to just ship it and
clean up later. This decision resulted in the 3.0 and 3.1 releases
being very unsatisfying for most, and it wasn't until 3.2 that the
series was considered stable. To make matters worse, the &t.releng.3;
branch was created along with the 3.0 release, and the &t.releng.head; branch was
allowed to advance immediately towards 4-CURRENT. This resulted in a
quick divergence between &t.releng.head; and &t.releng.3;, making maintenance of the
&t.releng.3; branch very difficult. &os; 2.2.8 was left for quite a while
as the last production-quality version of &os;.Our intent is to avoid repeating that scenario with &os; 5.x.
Delaying the &t.releng.5; branch until it is stable and production quality
will ensure that it stays maintainable and provides a compelling reason
to upgrade from 4.X, To do this, we must
identify the current areas of weakness and set clear goals for
resolving them. This document contains what we as the release
engineering team feel are the milestones and issues that must be
resolved for the &t.releng.5; branch. It does not dictate every aspect of
&os; development, and we welcome further input. Nothing that follows
is meant to be a sleight against any person or group, or to trivialize
any work that has been done. There are some significant issues,
though, that need decisive and unbiased action.Major issuesThe state of SMPng and kernel lockdown is the biggest concern for
5.X. To date, few major systems have come
out from under the kernel-wide mutex known as Giant.
The SMP status page at
http://www.FreeBSD.org/smp provides a comprehensive breakdown
of the overall SMPng status. Status specific to SMPng progress in
device drivers can be found at at
http://www.FreeBSD.org/projects/busdma. In summary:VM: the kmem_malloc(M_NOWAIT) path no longer needs Giant held.
The kmem_malloc(M_WAITOK) path is in progress and is expected to be
finished in the coming weeks. Other facets of the VM system, like
the vfs interface, buffer/cache, etc, are largely untouched.GEOM: The GEOM block layer was designed to run free of Giant,
but at this time no block drivers can run without Giant.
Additionally, it has the potential to suffer performance loss due
to its upcall/downcall data paths happening in kernel threads.
Lightweight context switches might help this.Network: Locking of the TCP and UDP portions of the stack is
complete. Work is in progress to lock up the IP stack, including
the routing tree, ARP code, raw IP, and ifaddr and inet data
structures. IPv6 has been lightly touched during the inp locking
but is hindered by the KAME code being significnatly out of date.
Work has not started on any of the other protocols such as
AppleTalk, XNS, or IPX. Locking of the socket layer is in progress
but has been largely untested. None of the hardware drivers or
Ethernet layers have been locked.VFS: Initial pre-cleanup started.buffer/cache: Initial work complete.Proc: Work on locking the proc structure was ongoing for a
while but seems to have stalled.CAM: No significant work has occurred on the CAM SCSI
layer.Newbus: some work has started on locking down the device_t
structure.Pipes: complete with the exception of VM-related
optimizations.File descriptors: complete.Process accounting: jails, credentials, MAC labels, and
scheduler are out from under Giant.MAC Framework: completeTimekeeping: completekernel encryption: crypto drivers and core &man.crypto.4; framework are
Giant-free. KAME IPsec and FAST IPSec have not been locked.Sound subsystem: completekernel preemption: preemption for interrupt threads is enabled.
However, contention due to Giant covering much of the kernel and
most of the device driver interrupt routines causes excessive
context switches and might actually be hurting performance. Work
is underway to explore ways to make preemption be
conditional.Another issue with SMPng is interrupt latency. The overhead of
doing a complete context switch to a kernel interrupt thread is high
and shows noticeable latency. Work is ongoing to implement lazy
context switching on all platforms. Fine grained locking of drivers
will also help this, as will converting drivers to be as efficient as
possible in their interrupt routines.Next, the state of KSE must resolved for &t.releng.5;. Work on it has
slowed noticeably in the past 6 months but appears to be picking up
again. There are a number of issues that must be addressed:The userland threading library, currently called libkse, is
immature and has not been used for any significant threaded
application.KSE has the potential to uncover latent race conditions and
create new ones. An audit needs to be performed to ensure that no
obvious problems exist.According to the release schedule below, KSE kernel and userland
components must be functionality complete by June 2003 in order to be
included in the &t.releng.5; branch. For security and stability reasons,
if KSE cannot be finished in time then, by default, all KSE-specific
syscalls should be modified to return ENOSYS and all other KSE-specific
interfaces disabled. Deprecating KSE from &t.releng.5; but keeping it in
the &t.releng.head; branch will pose problems in porting bugfixes and features
between the two branches, so every effort should be made to finish it
on time.Goals for 5-STABLEThe goals for the &t.releng.5; branch point are:All subsystems and interfaces must be mature enough to be
maintainable for improvements and bug fixes.Equal or better stability from &os; 4.8.No functional regressions from 4.8. It is important to make
sure that users do not avoid upgrading to 5.x because of lost
functionality.
- performance on par with &os; 4.8 for most common operations.
+ Performance on par with &os; 4.8 for most common operations.
Both UP and SMP configurations should be evaluated. SMP has the
potential to perform much better than
4.X, though for the purposes of creating
the &t.releng.5; branch, comparable performance between the two should
be acceptable.It is unrealistic to expect that the SMPng project will be fully
complete by &t.releng.5;, or that performance will be significantly better
than 4.X. However, focusing on a subset of
the outstanding tasks will give enough benefit for the branch to be
viable and maintainable. To break it down:ABI/API/Infrastructure stability - Enough infrastructure must
be in place and stable to allow fixes from &t.releng.head; to easily and
safely be merged into &t.releng.5;. Also, we must draw a line as to
what subsystems are to be locked down when we go into
5-STABLE.SMPngVM: Most codepaths, others than the ones that interact with
VFS, should be Giant-free for &t.releng.5;.Network: Taking the network stack out from under Giant poses
the risk of uncovering latent bugs and races. Locking it down
but not removing Giant imposes further performance penalties. A
decision on which parts of the network stack should be locked and
taken out from under Giant for &t.releng.5; should be made no later
than March 15. Work on the IP, TCP, UDP,raw IP, routing sockets,
and Unix domain sockets stands a good chance of being complete in
time for &t.releng.5;.If the decision is made to not lift Giant from the stack,
then the locks in these layers could be optimized out with a
kernel config option. Having a Giant-free path from the the
hardware layer to the IP queues should be investigated as it
could allow significant performance gains in the network
benchmarks. If this can be achieved then the hardware interface
layer needs to allow for drivers to incrementally become free of
Giant. Locking down at least two Ethernet drivers would be
highly desirable. If the semantics are too complex to have the
stack free of Giant but not the hardware drivers, investigation
should be done into making it configurable.Lesser-used network stacks like netatlk, netipx, etc, should
not break while this work is going on. However, locking them is
not a high priority. Special kernel config options might be
- needed in oder for these layers to operate with the rest of the
+ needed in order for these layers to operate with the rest of the
stack being locked and Giant free.GEOM: At least 2 block drivers should be locked in order to
demonstrate that others can also be locked without changing the
interface to GEOM. The ATA driver is a good candidate for this,
though caution should be taken as it is also extremely
high-profile and any problems with it will affect nearly all
users of &os;.Lazy context switching: sparc64 is the only platform that
performs lazy context switching when entering the kernel. The
performance gains promised by this are significant enough to
require that it be implemented for all other Tier 1
platforms.KSE: The kernel side of KSE must be functionally complete and
have undergone a security audit. libkse must be complete enough to
demonstrate a real-world application running correctly on it using
the standard POSIX Threads API. Examples would be apache 2.0,
Java, and/or mozilla. A functional regression test suite is also a
requirement for &t.releng.5; and should test signal delivery,
scheduling, performance, and process security/credentials for both
KSE and non-KSE processes. KSE kernel and userland components must
also reach the same level of functionality for all Tier-1 platforms
in both UP and SMP configurations. The definition of Tier-1
platforms can be found in
http://www.FreeBSD.org/doc/en_US.ISO8859-1/articles/committers-guide/archs.html.busdma interface and drivers: architectures like PAE/i386 and
sparc64 which don't have a direct mapping between host memory
address space and expansion bus address space require the
elimination for vtophys() and friends. The busdma interface was
created to handle exactly this problem, but many drivers do not use
it yet. The busdma project at
http://www.FreeBSD.org/projects/busdma tracks the
progress of this and should be used to determine which drivers
must be converted for &t.releng.5; and which can be left behind.
Also, there has been talk by several developers and the original
author to give the busdma interface a minor overhaul. If this is
to happen, it needs to happen before &t.releng.5;. Otherwise,
differences between the old and new API will make driver
maintenance difficult.PCI resource allocation: PC2003 compliance requires that x86
systems no longer configure PCI devices from the system BIOS,
leaving this task soley to the OS. &os; must gain the ability to
manage and allocate PCI memory resources on its own. Implementing
this should take into account cardbus, PCI-HotPlug, and laptop
dockstation requirements. This feature will become increasingly
critical through the lifetime of &t.releng.5;, and therefore is a
requirement for the &t.releng.5; branch.Performance: most performance gains hinge on the progress of
SMPng Areas that should be concentrated on are:Storage I/O: I/O performance suffers from two problems, too
many expensive context switches, and too much work being done
in interrupt threads. Specifically, it takes 3 context
switches for most drivers to get from the hardware completion
interrupt to unblocking the user process: one for the
interrupt thread, one for the GEOM g_up thread, and one to get
back to the user thread. Drivers that attempt to be efficient
and quick in their interrupt handlers (as all should be)
usually also schedule a taskqueue, which adds a context switch
in between the interrupt thread and the g_up thread and brings
the total up to 4. Two things need to be done to attack
this:Make all drivers defer most of their processing out of
their interrupt thread. Significant performance gains have
been shown recently in the &man.aac.4; driver by making its
interrupt handler be INTR_MPSAFE and moving
all processing to a taskqueue.investigate eliminating the taskqueue context switch by
adding a callback to the g_up thread that allows a driver to
do its interrupt processing there instead of in the
taskqueue.Network: Network drivers suffer from the interrupt latency
previously mentioned as well as from the network stack being
partially locked down but not free from Giant. Possible
strategies for addressing this are described in the previous
section.Other locking - XXX?Benchmarks and performance testing: Having a source of reliable
and useful benchmarks is essential to identifying performance
problems and guarding against performance regressions. A
performance team that is made up of people and
resources for formulating, developing, and executing benchmark
tests should be put into place soon. Comparisons should be made
against both &os; 4.X and Linux 2.4.x.
Tests to consider are:the classic worldstonewebstone: www/webstoneFstress:
http://www.cs.duke.edu/ari/fstressApacheBench: www/p5-ApacheBenchnetperf: benchmarks/netperfWeb Polygraph:
http://www.web-polygraph.org Note: does not compile with
gcc 3.x yet.Features:ACPI: Intel's ACPI power management and device configuration
subsystem has become an integral part of &os;'s x86 and ia64
device configuration model. However, many bugs exist in Intel's
vendor code, our OS-specific code, and motherboard BIOSes, causing
many ACPI-enabled systems to fail to boot, misdetect drivers,
and/or have many other problems. Fixing these problems seems to
be an uphill battle and is often times causing a poor
first-impression of &os; 5.0. Most x86 systems can function with
ACPI disabled, and logic should be added to the bootloader and
sysinstall to allow users to easily and intuitively turn it off.
Turning off ACPI by default is prone to problems also as many
newer systems rely on it to provide correct interrupt routing
information. Also, a centralized resource should be created to
track ACPI problems and solutions. Linux uses the same Intel
vendor sources as &os;, so we should investigate how they have
handled some of the known problems.NEWCARD/OLDCARD: The NEWCARD subsystem was made the default
for &os; 5.0. Unfortunately, it contains no support for
non-Cardbus bridges and falls victim to interrupt routine
problems on some laptops. The classic 16-bit bridge support,
OLDCARD, still exists and can be compiled in, but this is highly
inconvenient for users of older laptops. If OLDCARD cannot be
completely deprecated for &t.releng.5;, then provisions must be made
to allow users to easily install an OLDCARD-enabled kernel.
Documentation should be written to help trasition users from
OLDCARD to NEWCARD and from &man.pccardd.8; to
&man.devd.8;. The power management and
dumpcis functionality of &man.pccardc.8; needs to be
brought forward to work with NEWCARD, along with the ability to
load CIS quirk entries. Most of this functionality can be
integrated into &man.devd.8; and
&man.devctl.4;.New scheduler framework: The new scheduler framework is in
place, and users can select between the classic 44bsd scheduler
and the new ULE scheduler. A scheduler that demonstrates
processor affinity, HyperThreading and KSE awareness, and no
regressions in performance or interactivity characteristics must
be available for &t.releng.5;.sparc64 local console: neither syscons nor vt work on
sparc64, leaving it with only serial and fake OFW
console support. This is a major support hole for what is a
Tier 1 platform. Whether syscons can be shoe-horned in or
wscons be adopted from NetBSD is up for debate. However,
sparc64 must have local console support for &t.releng.5;. Having
this will also enable the XFree86 server to run, which is also a
requirement for &t.releng.5;.gcc/toolchain: gcc 3.3 might be available in time for
&t.releng.5; and might offer some attractive benefits, but also
likely to introduce ABI incompatibility with prior gcc versions.
ABI compatibility should be locked down for the &t.releng.5;
branch.There has also been a request to move /usr/include/g++ to
/usr/include/g++-v3 to be more compliant with the stock behavior
of gcc. This should also be investigated for &t.releng.5;.gdb: gdb from the base system should work for sparc64. It
should also understand KSE thread semantics, assuming that KSE
is included in the &t.releng.5; branch. gdb 5.3 is available and
there are reports that it should address the sparc64 issue.&man.disklabel.8; regressions: The biggest casualty of the
introduction of GEOM appears to be the disklabel utility. The
option gives unpredictable results in most
cases now and should be removed or fixed. Work is planned for a
new unified interface for modifying labels and slices, however
this should not preclude disklabel from being fixed.Documentation:The manual pages, Handbook, and FAQ should be free from
content specific to &os; 4.X, i.e. all
text should be equally applicable to &os;
5.X. The installation section of the
handbook needs the most work in this area.The release documentation needs to be complete and accurate
for all Tier 1 architectures. The hardware notes and
installation guides need specific attention.If &os; 5.1 is not the branch point for &t.releng.5; then the
Early Adopters Guide needs to be updated. This document should
then be removed just before the release closest to the &t.releng.5;
branch point.ScheduleIf branching &t.releng.5; at the 5.1 release is paramount, 5.1 will
probably need to move out by at least 3 months. The schedule would
be:Jun 30, 2003: KSE and SMPng feature freezeAug 4, 2003: 5.1-BETA, general code freezeAug 18, 2003: 5.1-RC1, &t.releng.5; and &t.releng.5.1; branchedAug 25, 2003: 5.1-RC2Sept 1, 2003: 5.1-RELEASETaking an incremental approach might be more beneficial. Releasing
5.1 in time for USENIX ATC 2003 will provide a wide audience for
productive feedback and will keep &os; visible. In this scenario, 5.1
should offer a significant improvement over 5.0 in terms of bug fixes
and performance. Lockdowns and improvements to the storage subsystem
and scheduler should be expected, the NEWCARD/OLDCARD issues should be
addressed, and all known bugs and regressions from the 5.0 errata list
should be fixed. KSE and other SMPng tasks that cannot finish in time
for 5.1 should also not reduce the stability of the release. The
schedule for this would be:May 5, 2003: 5.1-BETA, general code freezeMay 19, 2003: 5.1-RC1, &t.releng.5.1; branchedMay 27, 2003: 5.1-RC2Jun 2, 2003: 5.1-RELEASEJun 30, 2003: KSE and SMPng feature freezeSept 1, 2003: 5.2-BETA, general code freezeSept 15, 2003: 5.2-RC1, &t.releng.5; and &t.releng.5.2; branchedSept 22, 2003: 5.2-RC2Sept 29, 2003: 5.2-RELEASEPost &t.releng.5; direction As with all -STABLE development streams, the focus should be bug
fixes and incremental improvements. Just like normal, everything
should be vetted through the &t.releng.head; branch first and committed to
&t.releng.5; with caution. As before, new device drivers, incremental
features, etc, will be welcome in the branch once they have been proven
in &t.releng.head;.Further SMPng lockdowns will be divided into two categories, driver
and subsystem. The only subsystem that will be sufficiently locked
down for &t.releng.5; will be GEOM, so incrementally locking down device
drivers under it is a worthy goal for the branch. Full subsystem
lockdowns will have to be fully tested and proven in &t.releng.head; before
consideration will be given to merging them into &t.releng.5;.
diff --git a/en_US.ISO8859-1/articles/contributors/article.sgml b/en_US.ISO8859-1/articles/contributors/article.sgml
index 5f5ddd361d..101dac3a9a 100644
--- a/en_US.ISO8859-1/articles/contributors/article.sgml
+++ b/en_US.ISO8859-1/articles/contributors/article.sgml
@@ -1,9171 +1,9171 @@
%man;
%authors;
%teams;
%mailing-lists;
]>
Contributors to FreeBSD$FreeBSD$This article lists individuals and organizations who have
made a contribution to FreeBSD.Donors GalleryThe FreeBSD Project is indebted to the following donors and would
like to publicly thank them here!Contributors to the central server
project:The following individuals and businesses made it possible for
the FreeBSD Project to build a new central server machine, which
has replaced freefall.FreeBSD.org at
one point, by donating the following items:&a.mbarkah; and his employer, Hemisphere Online,
donated a Pentium Pro (P6) 200MHz CPUASA
Computers donated a Tyan 1662
motherboard.Joe McGuckin joe@via.net of ViaNet Communications donated
a Kingston ethernet controller.Jack O'Neill jack@diamond.xtalwind.net
donated an NCR 53C875 SCSI controller
card.Ulf Zimmermann ulf@Alameda.net of Alameda Networks donated
128MB of memory, a 4 Gb disk
drive and the case.Direct funding:The following individuals and businesses have generously
contributed direct funding to the project:Annelise Anderson
ANDRSN@HOOVER.STANFORD.EDU&a.dillon;Blue Mountain
ArtsEpilogue Technology
Corporation&a.sef;Global Technology
Associates, IncDon Scott WildeGianmarco Giovannelli
gmarco@masternet.itJosef C. Grosch joeg@truenorth.orgRobert T. Morris&a.chuckr;Kenneth P. Stox ken@stox.sa.enteract.com of
Imaginary Landscape,
LLC.Dmitry S. Kohmanyuk dk@dog.farm.orgLaser5 of Japan
(a portion of the profits from sales of their various FreeBSD
CDROMs).Fuki Shuppan
Publishing Co. donated a portion of their profits from
Hajimete no FreeBSD (FreeBSD, Getting
started) to the FreeBSD and XFree86 projects.ASCII Corp.
donated a portion of their profits from several FreeBSD-related
books to the FreeBSD project.Yokogawa Electric
Corp has generously donated significant funding to the
FreeBSD project.BuffNETPacific
SolutionsSiemens AG
via Andre Albsmeier
andre.albsmeier@mchp.siemens.deChris Silva ras@interaccess.comHardware contributors:The following individuals and businesses have generously
contributed hardware for testing and device driver
development/support:BSDi for providing the Pentium P5-90 and
486/DX2-66 EISA/VL systems that are being used for our
development work, to say nothing of the network access and other
donations of hardware resources.Compaq
has donated a variety of Alpha systems to the FreeBSD
Project. Among the many generous donations are 4
AlphaStation DS10s, an AlphaServer DS20,
AlphaServer 2100s, an AlphaServer 4100, 8 500Mhz
Personal Workstations, 4 433Mhz Personal Workstations,
and more! These machines are used for release
engineering, package building, SMP development, and general
development on the Alpha architecture.TRW Financial Systems, Inc. provided 130 PCs, three 68 GB
file servers, twelve Ethernets, two routers and an ATM switch for
debugging the diskless code.Dermot McDonnell donated the Toshiba XM3401B CDROM drive
currently used in freefall.Chuck Robey chuckr@glue.umd.edu contributed
his floppy tape streamer for experimental work.Larry Altneu larry@ALR.COM, and &a.wilko;,
provided Wangtek and Archive QIC-02 tape drives in order to
improve the wt driver.Ernst Winter ewinter@lobo.muc.de contributed
a 2.88 MB floppy drive to the project. This will hopefully
increase the pressure for rewriting the floppy disk driver.
Tekram
Technologies sent one each of their DC-390, DC-390U
and DC-390F FAST and ULTRA SCSI host adapter cards for
regression testing of the NCR and AMD drivers with their cards.
They are also to be applauded for making driver sources for free
operating systems available from their FTP server ftp://ftp.tekram.com/scsi/FreeBSD/.Larry M. Augustin contributed not only a
Symbios Sym8751S SCSI card, but also a set of data books,
including one about the forthcoming Sym53c895 chip with Ultra-2
and LVD support, and the latest programming manual with
information on how to safely use the advanced features of the
latest Symbios SCSI chips. Thanks a lot!Christoph Kukulies kuku@FreeBSD.org donated
an FX120 12 speed Mitsumi CDROM drive for IDE CDROM driver
development.Mike Tancsa mike@sentex.ca donated four various
ATM PCI cards in order to help increase support of these cards as
well as help support the development effort of the netatm ATM
stack.
Special contributors:BSDi (formerly Walnut Creek CDROM)
has donated almost more than we can say (see the History
section of the FreeBSD Handbook for more details).
In particular, we would like to thank them for the original
hardware used for freefall.FreeBSD.org, our primary
development machine, and for thud.FreeBSD.org, a testing and build
box. We are also indebted to them for funding various
contributors over the years and providing us with unrestricted
use of their T1 connection to the Internet.The interface
business GmbH, Dresden has been patiently supporting
&a.joerg; who has often preferred FreeBSD work over paid work, and
used to fall back to their (quite expensive) EUnet Internet
connection whenever his private connection became too slow or
flaky to work with it...Berkeley Software Design,
Inc. has contributed their DOS emulator code to the
remaining BSD world, which is used in the
doscmd command.The FreeBSD Core TeamThe FreeBSD core team constitutes the project's Board of
Directors, responsible for deciding the project's overall goals
and direction as well as managing specific
areas of the FreeBSD project landscape.(in alphabetical order by last name):&a.jhb;&a.kuriyama;&a.grog;&a.imp;&a.markm;&a.wes;&a.murray;&a.rwatson;&a.peter;The FreeBSD DevelopersThese are the people who have commit privileges and do the
engineering work on the FreeBSD source tree. All core team members are
also developers.(in alphabetical order by last name):&a.akiyama;&a.jmas;&a.ambrisko;&a.will;&a.anholt;&a.babkin;&a.dbaker;&a.jhb;&a.dmlb;&a.mike;&a.dougb;&a.tobez;&a.pb;&a.abial;&a.jb;&a.nbm;&a.mbr;&a.torstenb;&a.mb;&a.harti;&a.obraun;&a.jmb;&a.brueffer;&a.wilko;&a.jake;&a.dburr;&a.adrian;&a.perky;&a.dwcjr;&a.charnier;&a.jon;&a.luoqi;&a.ache;&a.seanc;&a.kjc;&a.cjh;&a.cjc;&a.marcus;&a.nik;&a.archie;&a.chris;&a.alc;&a.cracauer;&a.dec;&a.davidc;&a.ceri;&a.brooks;&a.bsd;&a.jwd;&a.pdeuskar;&a.mdodd;&a.dd;&a.iedowse;&a.robert;&a.gad;&a.tegge;&a.deischen;&a.eivind;&a.alane;&a.julian;&a.rse;&a.ue;&a.ru;&a.se;&a.bde;&a.sef;&a.jedgar;&a.green;&a.fenner;&a.lioux;&a.fanf;&a.blackend;&a.scrappy;&a.lars;&a.petef;&a.dirk;&a.sf;&a.shige;&a.billf;&a.furuta;&a.gallatin;&a.patrick;&a.tg;&a.gibbs;&a.brandon;&a.gioria;&a.daichi;&a.cg;&a.edwin;&a.znerd;&a.hanai;&a.roger;&a.mharo;&a.dannyboy;&a.jhay;&a.sheldonh;&a.mikeh;&a.mheinen;&a.ghelmer;&a.mux;&a.cshumway;&a.chm;&a.nhibma;&a.flathill;&a.orion;&a.horikawa;&a.hosokawa;&a.cognet;&a.jeh;&a.hsu;&a.foxfair;&a.jkh;&a.tom;&a.mph;&a.iwasaki;&a.mjacob;&a.keith;&a.gj;&a.trevor;&a.kan;&a.phk;&a.tomsoft;&a.cokane;&a.johan;&a.joe;&a.kato;&a.kris;&a.keramida;&a.fjoe;&a.kiri;&a.andreas;&a.ikob;&a.lkoeller;&a.motoyuki;&a.maxim;&a.jkoshy;&a.rushani;&a.kuriyama;&a.alex;&a.njl;&a.reg;&a.chern;&a.leeym;&a.sam;&a.stephane;&a.netchild;&a.jlemon;&a.truckman;&a.glewis;&a.pat;&a.ijliao;&a.clive;&a.arved;&a.kevlo;&a.scottl;&a.ade;&a.mwlucas;&a.smace;&a.bmah;&a.mtm;&a.jmallett;&a.dwmalone;&a.nobutaka;&a.matusita;&a.mckay;&a.mckusick;&a.eric;&a.ken;&a.dinoex;&a.hm;&a.sanpei;&a.bmilekic;&a.mini;&a.mita;&a.non;&a.jim;&a.marcel;&a.emoore;&a.amorita;&a.dan;&a.tmm;&a.markm;&a.knu;&a.nakai;&a.max;&a.maho;&a.yoichi;&a.anders;&a.rnordier;&a.obrien;&a.danny;&a.okazaki;&a.olgeni;&a.onoe;&a.wpaul;&a.mp;&a.roam;&a.alfred;&a.wes;&a.gerald;&a.jdp;&a.bp;&a.rpratt;&a.steve;&a.mpp;&a.markp;&a.thomas;&a.darrenr;&a.greid;&a.mr;&a.arr;&a.trhodes;&a.benno;&a.paul;&a.luigi;&a.tjr;&a.jeff;&a.roberto;&a.chuckr;&a.jesusr;&a.guido;&a.groudier;&a.dima;&a.ps;&a.sada;&a.hrs;&a.nsayer;&a.sos;&a.wosch;&a.cy;&a.das;&a.schweikh;&a.gshapiro;&a.arun;&a.shiba;&a.nork;&a.tshiozak;&a.simokawa;&a.vanilla;&a.silby;&a.shafeeq;&a.demon;&a.jesper;&a.skv;&a.scop;&a.msmith;&a.ben;&a.des;&a.sobomax;&a.dcs;&a.brian;&a.nsouch;&a.murray;&a.sumikawa;&a.gsutter;&a.suz;&a.unfurl;&a.nyan;&a.tanimura;&a.taoka;&a.mi;&a.gordon;&a.yar;&a.cwt;&a.ume;&a.semenu;&a.rv;&a.hoek;&a.logo;&a.nectar;&a.jayanth;&a.wjv;&a.bean;&a.ticso;&a.takawata;&a.adamw;&a.naddy;&a.assar;&a.dwhite;&a.nate;&a.wollman;&a.keichii;&a.joerg;&a.kbyanc;&a.jennifer;&a.yokota;&a.andy;&a.zarzycki;&a.phantom;&a.jmz;The FreeBSD Documentation ProjectThe FreeBSD
Documentation Project is responsible for a number of different
services, each service being run by an individual and his
deputies (if any):Documentation Project Architect&a.nik;Handbook Editor&a.doc;FAQ Editor&a.doc;News Editor&a.jim;In the Press Editor&a.jkoshy;FreeBSD Really-Quick NewsLetter EditorChris Coleman chrisc@vmunix.comGallery Editor&a.phantom;Commercial Gallery Editor&a.ceri;User Groups Editor&a.grog;FreeBSD Java Project&a.patrick;LinuxDoc to DocBook conversion&a.nik;Who is Responsible for WhatDocumentation
Project Manager&a.nik;CVSup Mirror Site Coordinator&a.jdp;Internationalization&a.ache;Postmaster&a.jmb;Release
Coordination&a.re; headed by &a.murray;Public Relations & Corporate LiaisonSeat openSecurity
Officers&a.security-officer; headed by &a.nectar;Source
Repository ManagersPrincipal: &a.peter;Assistants: &a.markm;, &a.joe;Website Management&a.www;Ports
Manager&a.portmgr;which includes:&a.asami;,&a.knu;,&a.kris;,&a.lioux;,&a.sobomax;,&a.steve;,&a.will;Standards&a.wollman;XFree86 Project, Inc. Liaison&a.rich;GNATS
Administrator&a.steve;Bugmeister&a.keramida;
- Donations Liason Office
+ Donations Liaison Office&a.donations;which includes:&a.mwlucas&a.nsayer&a.obrien&a.rwatson&a.trhodesCore Team Alumnicore teamThe following people were members of the FreeBSD core team during
the periods indicated. We thank them for their past efforts in the
service of the FreeBSD project.In rough chronological order:&a.dg; (1992 - 2002)&a.dfr; (1999 - 2002)&a.msmith; (2000 - 2002)&a.jkh; (1992 - 2002)&a.asami; (1993 - 2001)&a.ache; (1993 - 2000)&a.jmb; (1993 - 2000)&a.bde; (1992 - 2000)&a.gibbs; (1993 - 2000)&a.rich; (1994 - 2000)&a.phk; (1992 - 2000)&a.gpalmer; (1993 - 2000)&a.sos; (1993 - 2000)&a.wollman; (1993 - 2000)&a.joerg; (1995 - 2000)&a.jdp; (1997 - 2000)&a.guido; (1995 - 1999)John Dyson (1993 - 1998)&a.nate; (1992 - 1996)&a.rgrimes; (1992 - 1995)Andreas Schulz (1992 - 1995)&a.csgr; (1993 - 1995)&a.paul; (1992 - 1995)&a.smace; (1993 - 1994)Andrew Moore (1993 - 1994)Christoph Robitschko (1993 - 1994)J. T. Conklin (1992 - 1993)Development Team Alumnidevelopment teamThe following people were members of the FreeBSD development team
during the periods indicated. We thank them for their past efforts
in the service of the FreeBSD project.In rough chronological order:&a.amurai; (1995 - 2003)&a.jfitz; (1996 - 2003)&a.stb; (1994 - 2003)&a.csgr; (1994 - 2003)&a.mtaylor; (1999 - 2003)&a.pho; (1999 - 2003)&a.dufault; (1995 - 2003)&a.wsanchez; (2000 - 2003)&a.imura; (1999 - 2003)&a.cpiazza; (1999 - 2003) &a.davidn; (1996 - 2003)&a.jseger; (1997 - 2003)&a.jmg; (1997 - 2003)&a.toshi; (2000 - 2003)&a.newton; (1999 - 2003)&a.marko; (2000 - 2003)&a.lile; (1999 - 2003)&a.cp; (1999 - 2003)&a.ejc; (1999 - 2003)&a.shin; (1999 - 2003)&a.gpalmer; (1993 - 2003)&a.fsmp; (1997 - 2003)&a.rgrimes; (1992 - 2003)&a.mks; (1994 - 2003)&a.dt; (1998 - 2003)&a.jfieber; (1995 - 2003)&a.rvb; (1998 - 2003)&a.stark; (1997 - 2003)&a.helbig; (1997 - 2003)&a.thepish; (1998 - 2003)&a.adam; (1994 - 2003)&a.mbarkah; (1996 - 2003)&a.pds; (1997 - 2003)&a.smpatel; (1996 - 2003)&a.uhclem; (1997 - 2003)&a.swallace; (1994 - 2003)&a.rich; (1994 - 2003)&a.ugen; (1994 - 2003)&a.ljo; (1994 - 2003)&a.pirzyk; (2001 - 2003)&a.dillon; (1998 - 2003)&a.dick; (1999 - 2003)&a.pst; (1994 - 2003)&a.erich; (1995 - 2002)&a.jasone; (1999 - 2002)&a.martin; (1994 - 2002)&a.graichen; (1996 - 2002)&a.asmodai; (1999 - 2002)&a.uch; (2000 - 2002)&a.jmacd; (1995 - 2002)&a.issei; (2000 - 2002)&a.itojun; (1997 - 2001)Nate Johnson (1996 - 2000)MAEKAWA Masahide (1999 - 2000)&a.tedm; (???? - 2000)&a.karl; (1995 - 2000)Gary Clark II (1993 - 2000)James Raynard (1996 - 2000)Andreas Schulz (1992 - 1999)&a.jgreco; (1997 - 1999)Jamil Weatherby (1997 - 1999)Megan McCormack (1997 - 1998)John Dyson (1993 - 1998)Amancio Hasty (1997 - 1998)Drew Derbyshire (1997 - 1998)Andras Olah (1995 - 1996)Julian H. Stacey (1995)gjp (1995)Andrew L. Moore (1993 - 1995)Derived Software ContributorsThis software was originally derived from William F. Jolitz's 386BSD
release 0.1, though almost none of the original 386BSD specific code
remains. This software has been essentially re-implemented from the
4.4BSD-Lite release provided by the Computer Science Research Group
(CSRG) at the University of California, Berkeley and associated academic
contributors.There are also portions of NetBSD and OpenBSD that have been
integrated into FreeBSD as well, and we would therefore like to thank
all the contributors to NetBSD and OpenBSD for their work.Additional FreeBSD Contributors(in alphabetical order by first name):ABURAYA Ryushirou
rewsirow@ff.iij4u.or.jpAMAGAI Yoshiji
amagai@nue.orgAaron Bornstein
aaronb@j51.comAaron Smith
aaron@mutex.orgAchim Patzner
ap@noses.comAda T Lim
ada@bsd.orgAdam Baran
badam@mw.mil.plAdam Glass
glass@postgres.berkeley.eduAdam Herzog
adam@herzogdesigns.comAdam Kranzel
adam@alameda.eduAdam McDougall
mcdouga9@egr.msu.eduAdam Strohl
troll@digitalspark.netAdoal Xu
adoal@iname.comAdrian Colley
aecolley@ois.ieAdrian Hall
ahall@mirapoint.comAdrian Mariano
adrian@cam.cornell.eduAdrian Steinmann
ast@marabu.chAdrian T. Filipi-Martin
atf3r@agate.cs.virginia.eduAjit Thyagarajan
unknownAkira SAWADA
unknownAkira Watanabe
akira@myaw.ei.meisei-u.ac.jpAkito Fujita
fujita@zoo.ncl.omron.co.jpAlain Kalker
A.C.P.M.Kalker@student.utwente.nlAlan Bawden
alan@curry.epilogue.comAlec Wolman
wolman@cs.washington.eduAled Morris
aledm@routers.co.ukAleksandr A Babaylov
.@babolo.ruAlex D. Chen
dhchen@elearning.nsysu.edu.twAlex Dupre
sysadmin@alexdupre.comAlex G. Bulushev
bag@demos.suAlex Kapranoff
kappa@zombie.antar.bryansk.ruAlex Le Heux
alexlh@funk.orgAlex Perel
veers@disturbed.netAlex Rodioukov
simuran@shaw.caAlex Semenyaka
alex@rinet.ruAlex Varju
varju@webct.comAlex Zepeda
garbanzo@hooked.netAlexander B. Povolotsky
tarkhil@mgt.msk.ruAlexander Gelfenbain
mail@gelf.comAlexandre Peixoto
alexandref@tcoip.com.brAlexandre Snarskii
snar@paranoia.ruAlexey Dokuchaev
danfe@regency.nsu.ruAlexey V. Neyman
alex.neyman@auriga.ruAlexis Yushin
alexis@forest.NLnetLabs.nlAlistair G. Crooks
agc@uts.amdahl.comAllan Bowhill
bowhill@bowhill.vservers.comAllan Saddi
asaddi@philosophysw.comAllen Campbell
allenc@verinet.comAmakawa Shuhei
amakawa@hoh.t.u-tokyo.ac.jpAmar Takhar
verm@drunkmonk.netAmir Farah
amir@comtrol.comAmir Shalem
amir@boom.org.ilAmy Baron
amee@beer.orgAnatoliy Dmytriyev
tolid@plab.ku.dkAnatoly A. Orehovsky
tolik@mpeks.tomsk.suAnatoly Vorobey
mellon@pobox.comAnders Andersson
anders@codefactory.seAnders Thulin
Anders.X.Thulin@telia.seAndre Albsmeier
Andre.Albsmeier@mchp.siemens.deAndre Goeree
abgoeree@uwnet.nlAndre Oppermann
andre@pipeline.chAndreas Haakh
ah@alman.robin.deAndreas Kohout
shanee@rabbit.augusta.deAndreas Lohr
andreas@marvin.RoBIN.deAndreas Wetzel
mickey@deadline.snafu.deAndreas Wrede
andreas@planix.comAndres Vega Garcia
unknownAndrew Atrens
atreand@statcan.caAndrew Boothman
andrew@cream.orgAndrew Gillham
gillham@andrews.eduAndrew Gordon
andrew.gordon@net-tel.co.ukAndrew Herbert
andrew@werple.apana.org.auAndrew J. Korty
ajk@purdue.eduAndrew L. Neporada
andrew@chg.ruAndrew McRae
amcrae@cisco.comAndrew P. Lentvorski
bsder@allcaps.orgAndrew S. Midthune
amidthune@cableone.netAndrew Shevtsov
nyxo@dnuc.polyn.kiae.suAndrew Stevenson
andrew@ugh.net.auAndrew Timonin
tim@pool1.convey.ruAndrew V. Stesin
stesin@elvisti.kiev.uaAndrew Webster
awebster@dataradio.comAndrey Novikov
andrey@novikov.comAndrey Simonenko
simon@comsys.ntu-kpi.kiev.uaAndrey Sverdlichenko
rblaze@users.sourceforge.netAndrey Tchoritch
andy@venus.sympad.netAndy Farkas
andyf@speednet.com.auAndy Sparrow
spadger@best.comAndy Valencia
ajv@csd.mot.comAndy Whitcroft
andy@sarc.city.ac.ukAngel Todorov
todorov_bg@gmx.netAngelo Turetta
ATuretta@stylo.itAnthony C. Chavez
acc@anthonychavez.orgAnthony Yee-Hang Chan
yeehang@netcom.comAntoine Beaupre
anarcat@anarcat.ath.cxAnton N. Bruesov
antonz@library.ntu-kpi.kiev.uaAnton Voronin
anton@urc.ac.ruAntti Kaipila
anttik@iki.fiAre Bryne
are.bryne@communique.noAri Suutari
ari@suutari.iki.fiArindum Mukerji
raja@moselle.comArjan de Vet
devet@IAEhv.nlArnaud S. Launay
asl@launay.orgArne Henrik Juul
arnej@Lise.Unit.NOAshley Penney
ashp@unloved.orgAsk Bjoern Hansen
ask@valueclick.comAtsushi Furuta
furuta@sra.co.jpAtushi Sakauchi
sakauchi@yamame.toBakul Shah
bvs@bitblocks.comBarry Bierbauch
pivrnec@vszbr.czBarry Lustig
barry@ictv.comBen Hutchinson
benhutch@xfiles.org.ukBen Jackson
unknownBen Walter
bwalter@itachi.swcp.comBenedikt Köhler
benedikt@furukama.deBenjamin Lewis
bhlewis@gte.netBerend de Boer
berend@pobox.comBernd Rosauer
br@schiele-ct.deBill Kish
kish@osf.orgBill Trost
trost@cloud.rain.comBlaz Zupan
blaz@amis.netBob Van Valzah
Bob@whitebarn.comBob Willcox
bob@luke.pmr.comBoris Staeblow
balu@dva.in-berlin.deBoyd R. Faulkner
faulkner@asgard.bga.comBrad Chapman
chapmanb@arches.uga.eduBrad Davis
so14k@so14k.comBrad Hendrickse
bradh@uunet.co.zaBrad Jones
brad@kazrak.comBrad Karp
karp@eecs.harvard.eduBrad Lanam
bll@gentoo.comBill Lloyd
wlloyd@mpd.caBradley Dunn
bradley@dunn.orgBram Moolenaar
bram@moolenaar.netBrandon Fosdick
bfoz@glue.umd.eduBrandon Gillespie
brandon@roguetrader.comBrent J. Nordquist
bjn@visi.comBrett Lymn
blymn@mulga.awadi.com.AUBrett Taylor
brett@peloton.runet.eduBrian Campbell
brianc@pobox.comBrian Clapper
bmc@willscreek.comBrian Cully
shmit@kublai.comBrian Handy
handy@lambic.space.lockheed.comBrian Litzinger
brian@MediaCity.comBrian McGovern
bmcgover@cisco.comBrian Moore
ziff@houdini.eecs.umich.eduBrian R. Haug
haug@conterra.comBrian Skrab
brian@quynh-and-brian.orgBrian Tao
taob@risc.orgBrion Moss
brion@queeg.comBruce Albrecht
bruce@zuhause.mn.orgBruce Gingery
bgingery@gtcs.comBruce J. Keeler
loodvrij@gridpoint.comBruce M Simpson
bms@spc.orgBruce Murphy
packrat@iinet.net.auBruce Walter
walter@fortean.comCamson Huynh
chuynh@biolateral.com.auCarey Jones
mcj@acquiesce.orgCarl Fongheiser
cmf@netins.netCarl Mascott
cmascott@world.std.comCarl Schmidt
carl@perlpimp.codersluts.netCasper
casper@acc.amCastor Fu
castor@geocast.comChain Lee
chain@110.netCharles Hannum
mycroft@ai.mit.eduCharles Henrich
henrich@msu.eduCharles Mott
cmott@scientech.comCharles Owens
owensc@enc.eduChet Ramey
chet@odin.INS.CWRU.EduChia-liang Kao
clkao@CirX.ORGChiharu Shibata
chi@bd.mbn.or.jpChip Norkus
unknownChris Csanady
cc@tarsier.ca.sandia.govChris Dabrowski
chris@vader.orgChris Dillon
cdillon@wolves.k12.mo.usChris Pepper
pepper@mail.rockefeller.eduChris Shenton
cshenton@angst.it.hq.nasa.govChris Stenton
jacs@gnome.co.ukChris Torek
torek@ee.lbl.govChristian Gusenbauer
c47g@gmx.atChristian Haury
Christian.Haury@sagem.frChristian Zander
zander@minion.deChristoph P. Kukulies
kuku@FreeBSD.orgChristoph Robitschko
chmr@edvz.tu-graz.ac.atChristoph Weber-Fahr
wefa@callcenter.systemhaus.netChristophe Juniet
cjuniet@entreview.comChristopher G. Demetriou
cgd@postgres.berkeley.eduChristopher K. Davis
ckd-freebsd@ckdhr.comChristopher N. Harrell
cnh@ivmg.netChristopher Preston
rbg@gayteenresource.orgChristopher T. Johnson
cjohnson@neunacht.netgsi.comChrisy Luke
chrisy@flix.netChuck Hein
chein@cisco.comCliff Rowley
dozprompt@onsea.comColman Reilly
careilly@tcd.ieConrad Sabatier
conrads@home.comCoranth Gryphon
gryphon@healer.comCornelis van der Laan
nils@guru.ims.uni-stuttgart.deCove Schneider
cove@brazil.nbn.comCraig Leres
leres@ee.lbl.govCraig Loomis
unknownCraig Metz
cmetz@inner.netCraig Spannring
cts@internetcds.comCraig Struble
cstruble@vt.eduCristian Ferretti
cfs@riemann.mat.puc.clCurt Mayer
curt@toad.comCyrille Lefevre
clefevre@citeweb.netCyrus Rahman
cr@jcmax.comDai Ishijima
ishijima@tri.pref.osaka.jpDaisuke Watanabe
NU7D-WTNB@asahi-net.or.jpDamian Hamill
damian@cablenet.netDamien Tougas
damien@tougas.netDan Cross
tenser@spitfire.ecsel.psu.eduDan Langille
dan@freebsddiary.orgDan Lukes
dan@obluda.czDan Nelson
dnelson@emsphone.comDan Papasian
bugg@bugg.strangled.netDan Pelleg
dpelleg+unison@cs.cmu.eduDan Piponi
wmtop@tanelorn.demon.co.ukDan Walters
hannibal@cyberstation.netDaniel B. Hemmerich
dan@spot.orgDaniel Hagan
dhagan@acm.vt.eduDaniel O'Connor
doconnor@gsoft.com.auDaniel Poirot
poirot@aio.jsc.nasa.govDaniel Rock
rock@cs.uni-sb.deDaniel W. McRobb
dwm@caimis.comDanny Egen
unknownDanny Howard
dannyman@toldme.comDanny J. Zerkel
dzerkel@phofarm.comDave Adkins
adkin003@tc.umn.eduDave Andersen
angio@aros.netDave Blizzard
dblizzar@sprynet.comDave Bodenstab
imdave@synet.netDave Burgess
burgess@hrd769.brooks.af.milDave Chapeskie
dchapes@ddm.on.caDave Cornejo
dave@dogwood.comDave Edmondson
davided@sco.comDave Glowacki
dglo@ssec.wisc.eduDave Marquardt
marquard@austin.ibm.comDave Tweten
tweten@FreeBSD.orgDavid A. Adkins
adkin003@tc.umn.eduDavid A. Bader
dbader@eece.unm.eduDavid Borman
dab@bsdi.comDavid Bremner
bremner@unb.caDavid Bushong
david+ports@bushong.netDavid Dawes
dawes@XFree86.orgDavid Filo
unknownDavid H. Munro
munro1@llnl.govDavid Holland
dholland@eecs.harvard.eduDavid Holloway
daveh@gwythaint.tamis.comDavid Horwitt
dhorwitt@ucsd.eduDavid Hovemeyer
daveho@infocom.comDavid Jones
dej@qpoint.torfree.netDavid Kelly
dkelly@tomcat1.tbe.comDavid Kulp
dkulp@neomorphic.comDavid L. Nugent
davidn@blaze.net.auDavid Leonard
d@scry.dstc.edu.auDavid Muir Sharnoff
muir@idiom.comDavid S. Miller
davem@jenolan.rutgers.eduDavid Sugar
dyfet@gnu.orgDavid Wolfskill
david@catwhisker.orgDavid Yeske
dyeske@yahoo.comDean Gaudet
dgaudet@arctic.orgDean Huxley
dean@fsa.caDenis Fortin
unknownDenis N. Peplin
info@volginfo.ruDenis Shaposhnikov
dsh@vlink.ruDennis Glatting
dennis.glatting@software-munitions.comDenton Gentry
denny1@home.comDerek Inksetter
derek@saidev.comDiane Bruce
db@db.netDirk Gouders
gouders@et.bocholt.fh-gelsenkirchen.deDirk Keunecke
dk@panda.rhein-main.deDirk Nehrling
nerle@pdv.deDishanker Rajakulendren
draj@oceanfree.netDmitry A. Yanko
fm@astral.ntu-kpi.kiev.uaDmitry Karasik
dmitry@karasik.eu.orgDmitry Khrustalev
dima@xyzzy.machaon.ruDmitry Kohmanyuk
dk@farm.orgDmitry Morozovsky
marck@rinet.ruDom Mitchell
dom@myrddin.demon.co.ukDomas Mituzas
midom@dammit.ltDominic Marks
dominic_marks@btinternet.comDominik Brettnacher
domi@saargate.deDominik Rothert
dr@domix.deDon Croyle
croyle@gelemna.ft-wayne.in.usDon Morrison
dmorrisn@u.washington.edu&a.whiteside;Don Yuniskis
dgy@rtd.comDonald Maddox
dmaddox@conterra.comDonn Miller
dmmiller@cvzoom.netDouglas Carmichael
dcarmich@mcs.comDouglas Crosher
dtc@scrooge.ee.swin.oz.auDrew Derbyshire
ahd@kew.comDustin Sallings
dustin@spy.netELISA Font ProjectEckart "Isegrim" Hofmann
Isegrim@Wunder-Nett.orgEd Gold
vegold01@starbase.spd.louisville.eduEd Hudson
elh@p5.spnet.comEdgardo Garcia Hoeffler
edybsd@yahoo.com.arEdson Brandi
ebrandi.home@uol.com.brEdward Chuang
edwardc@firebird.org.twEdward Wang
edward@edcom.comEdwin Mons
e@ik.nuEge Rekk
aagero@aage.priv.noEiji-usagi-MATSUmoto
usagi@clave.gr.jpEike Bernhardt
eike.bernhardt@gmx.deElmar Bartel
bartel@informatik.tu-muenchen.deEoin Lawless
eoin@maths.tcd.ieEric A. Griff
eric@talesfromthereal.comEric Anderson
anderson@centtech.comEric Blood
eblood@cs.unr.eduEric D. Futch
efutch@nyct.netEric J. Haug
ejh@slustl.slu.eduEric J. Schwertfeger
eric@cybernut.comEric L. Hernes
erich@lodgenet.comEric P. Scott
eps@sirius.comEric Shao-yu Cheng
eric@fractal.csie.orgEric Sprinkle
eric@ennovatenetworks.comErich Stefan Boleyn
erich@uruk.orgErich Zigler
erich@tacni.netErik E. Rantapaa
rantapaa@math.umn.eduErik H. Bakke
erikhb@bgnett.noErik H. Moe
ehm@cris.comErnst Winter
ewinter@lobo.muc.deErwin Lansing
erwin@lansing.dkEspen Skoglund
esk@ira.uka.deEugene Grosbein
eugen@grosbein.pp.ruEugene M. Kim
astralblue@usa.netEugene Radchenko
genie@qsar.chem.msu.suEugeney Ryzhyk
rzheka@users.sourceforge.netEugeny Kuzakov
CoreDumped@coredumped.null.ruEvan Champion
evanc@synapse.netEvgueni Gavrilov
vampiro@rootshell.ruFUJIMOTO Kensaku
fujimoto@oscar.elec.waseda.ac.jpFURUSAWA Kazuhisa
furusawa@com.cs.osakafu-u.ac.jpFanying Jen
fanying@fynet.comFaried Nawaz
fn@Hungry.COMFilippo Natali
filippo@widestore.netFlemming Jacobsen
fj@batmule.dkFong-Ching Liaw
fong@juniper.netFrancis M J Hsieh
mjshieh@life.nthu.edu.twFrancisco Reyes
fjrm@yahoo.comFrank Bartels
knarf@camelot.deFrank Chen Hsiung Chan
frankch@waru.life.nthu.edu.twFrank Gründer
elwood@mc5sys.in-berlin.deFrank J. Lazlo
laszlof@freebsdmatrix.netFrank MacLachlan
fpm@n2.netFrank Nobis
fn@Radio-do.deFrank Volf
volf@oasis.IAEhv.nlFrank ten Wolde
franky@pinewood.nlFrank van der Linden
frank@fwi.uva.nlFranz Klammer
klammer@webonaut.comFred Cawthorne
fcawth@jjarray.umn.eduFred Gilham
gilham@csl.sri.comFred Templin
templin@erg.sri.comFreddie Cash
fcash@bigfoot.comFrederic Dubuy
fdubuy@free.frFrederick Earl Gray
fgray@rice.eduFrerich Raabe
frerich.raabe@gmx.deFuyuhiko Maruyama
fuyuhik8@is.titech.ac.jp&a.stanislav;Gabor Kincses
gabor@acm.orgGabor Zahemszky
zgabor@CoDe.huGareth McCaughan
gjm11@dpmms.cam.ac.ukGarrett Rooney
rooneg@electricjellyfish.netGary A. Browning
gab10@griffcd.amdahl.comGary Howland
gary@hotlava.comGary J.
garyj@rks32.pcs.dec.comGary Kline
kline@thought.orgGary W. Swearingen
swear@aa.netGaspar Chilingarov
nightmar@lemming.acc.amGea-Suan Lin
gslin@ccca.nctu.edu.twGene Raytsin
pal@paladin7.netGeoff Rehmet
csgr@alpha.ru.ac.zaGeorg Wagner
georg.wagner@ubs.comGianlorenzo Masini
masini@uniroma3.itGianmarco Giovannelli
gmarco@giovannelli.itGil Kloepfer Jr.
gil@limbic.ssdl.comGilad Rom
rom_glsa@ein-hashofet.co.ilGiles Lean
giles@nemeton.com.auGinga Kawaguti
ginga@amalthea.phys.s.u-tokyo.ac.jpGlen Foster
gfoster@gfoster.comGlenn Johnson
gljohns@bellsouth.netGodmar Back
gback@facility.cs.utah.eduGoran Hammarback
goran@astro.uu.seGord Matzigkeit
gord@enci.ucalgary.caGordon Greeff
gvg@uunet.co.zaGraham Wheeler
gram@cdsec.comGreg A. Woods
woods@zeus.leitch.comGreg Ansley
gja@ansley.comGreg Robinson
greg@rosevale.com.auGreg Troxel
gdt@ir.bbn.comGreg Ungerer
gerg@stallion.oz.auGregory Bond
gnb@itga.com.auGregory D. Moncreaff
moncrg@bt340707.res.ray.comGurkan Sengun
gurkan@linuks.mine.nuGuy Harris
guy@netapp.comHAMADA Naoki
hamada@astec.co.jpHIYAMA Takeshi
gibbon@cocoa.freemail.ne.jpHONDA Yasuhiro
honda@kashio.info.mie-u.ac.jpHOSOBUCHI Noriyuki
hoso@buchi.tama.or.jpHOTARU-YA
hotaru@tail.netHaesu Jeon
haesu@towardex.comHammurabi Mendes
hmendes_br@yahoo.comHannes Sowa
satbran@web.deHannu Savolainen
hannu@voxware.pp.fiHans Huebner
hans@artcom.deHans Petter Bieker
zerium@webindex.noHans Zuidam
hans@brandinnovators.comHans-Christian Ebke
hans-christian_ebke@gmx.deHarlan Stenn
Harlan.Stenn@pfcs.comHarold Barker
hbarker@dsms.comHarry Newton
harry_newton@telinco.co.ukHavard Eidnes
Havard.Eidnes@runit.sintef.noHeath Nielson
heath@cs.byu.eduHeikki Suonsivu
hsu@cs.hut.fiHeiko W. Rupp
unknownHeiner Eichmann
h.eichmann@gmx.deHeiner Strauss
heiner@bilch.comHelmut F. Wirth
hfwirth@ping.atHendrik Scholz
hendrik@scholz.netHenrik Vestergaard Draboel
hvd@terry.ping.dkHenry Whincup
henry@techiebod.comHerb Peyerl
hpeyerl@NetBSD.orgHideaki Ohmon
ohmon@tom.sfc.keio.ac.jpHidekazu Kuroki
hidekazu@cs.titech.ac.jpHideki Yamamoto
hyama@acm.orgHideyuki Suzuki
hideyuki@sat.t.u-tokyo.ac.jpHirayama Issei
iss@mail.wbs.ne.jpHiroaki Sakai
sakai@miya.ee.kagu.sut.ac.jpHiroharu Tamaru
tamaru@ap.t.u-tokyo.ac.jpHironori Ikura
hikura@kaisei.orgHiroshi Nishikawa
nis@pluto.dti.ne.jpHiroya Tsubakimoto
unknownHiten Pandya
hiten@uk.FreeBSD.orgHolger Lamm
holger@eit.uni-kl.deHolger Veit
Holger.Veit@gmd.deHolm Tiffe
holm@geophysik.tu-freiberg.deHorance Chou
horance@freedom.ie.cycu.edu.twHorihiro Kumagai
kuma@jp.FreeBSD.orgHr.Ladavac
lada@ws2301.gud.siemens.co.atHubert Feyrer
hubertf@NetBSD.ORGHugh Mahon
h_mahon@fc.hp.comHung-Chi Chu
hcchu@r350.ee.ntu.edu.twIMAI Takeshi
take-i@ceres.dti.ne.jpIMAMURA Tomoaki
tomoak-i@is.aist-nara.ac.jpIWASHITA Yoji
shuna@pop16.odn.ne.jpIan Holland
ianh@tortuga.com.auIan Struble
ian@broken.netIan Vaudrey
i.vaudrey@bigfoot.comIgor Khasilev
igor@jabber.paco.odessa.uaIgor Pokrovsky
tiamat@telegraph.spb.ruIgor Roshchin
str@giganda.komkon.orgIgor Serikov
bt@turtle.pangeatech.comIgor Sviridov
siac@ua.netIgor Vinokurov
igor@zynaps.ruIkuo Nakagawa
ikuo@isl.intec.co.jpIlia Chipitsine
ilia@jane.cgu.chel.suIlya V. Komarov
mur@lynx.ruItsuro Saito
saito@miv.t.u-tokyo.ac.jpJ. Bryant
jbryant@argus.flash.netJ. David Lowe
lowe@saturn5.comJ. Han
hjh@photino.comJ. Hawk
jhawk@MIT.EDUJ Shoemaker
shoemaker@softhome.netJ.T. Conklin
jtc@cygnus.comJack
jack@zeus.xtalwind.netJacob Bohn Lorensen
jacob@jblhome.ping.mkJagane D Sundar
jagane@netcom.comJake Hamby
jehamby@anobject.comJames Clark
jjc@jclark.comJames D. Stewart
jds@c4systm.comJames Jegers
jimj@miller.cs.uwm.eduJames Raynard
fhackers@jraynard.demon.co.ukJames T. Liu
jtliu@phlebas.rockefeller.eduJames da Silva
jds@cs.umd.eduJamie Heckford
jamie@jamiesdomain.co.ukJan Conard
charly@fachschaften.tu-muenchen.deJan Jungnickel
Jan@Jungnickel.comJan Koum
jkb@FreeBSD.orgJan L. Peterson
jlp@flipdog.comJan Rochel
jan.rochel@epost.deJanick Taillandier
Janick.Taillandier@ratp.frJanos Mohacsi
janos.mohacsi@bsd.huJanusz Kokot
janek@gaja.ipan.lublin.plJarle Greipsland
jarle@idt.unit.noJason DiCioccio
geniusj@ods.orgJason Garman
init@risen.orgJason Harris
jharris@widomaker.comJason R. Mastaler
jason-freebsd@mastaler.comJason Thorpe
thorpej@NetBSD.orgJason Wright
jason@OpenBSD.orgJason Young
doogie@forbidden-donut.anet-stl.comJavier Martin Rueda
jmrueda@diatel.upm.esJay Fenlason
hack@datacube.comJay Krell
jay.krell@cornell.eduJaye Mathisen
mrcpu@cdsnet.netJean-Sebastien Roy
js@jeannot.orgJean-Yves Lefort
jylefort@brutele.beJeff Bartig
jeffb@doit.wisc.eduJeff Brown
jabrown@caida.orgJeff Forys
jeff@forys.cranbury.nj.usJeff Kletsky
Jeff@Wagsky.comJeff Palmer
scorpio@drkshdw.orgJeffrey Evans
evans@scnc.k12.mi.usJeffrey Wheat
jeff@cetlink.netJeremy Allison
jallison@whistle.comJeremy Chadwick
yoshi@parodius.comJeremy Chatfield
jdc@xinside.comJeremy Karlson
karlj000@unbc.caJeremy Prior
unknownJeremy Shaffner
jeremy@external.orgJesse McConnell
jesse@cylant.comJesse Rosenstock
jmr@ugcs.caltech.eduJian-Da Li
jdli@csie.nctu.edu.twJim Babb
babb@FreeBSD.orgJim Binkley
jrb@cs.pdx.eduJim Bloom
bloom@acm.orgJim Carroll
jim@carroll.comJim Flowers
jflowers@ezo.netJim Geovedi
negative@toxic.magnesium.netJim Leppek
jleppek@harris.comJim Lowe
james@cs.uwm.eduJim Mattson
jmattson@sonic.netJim Mercer
jim@komodo.reptiles.orgJim Sloan
odinn@atlantabiker.netJim Wilson
wilson@moria.cygnus.comJimbo Bahooli
griffin@blackhole.iceworld.orgJin Guojun
jin@george.lbl.govJoachim Kuebart
kuebart@mathematik.uni-ulm.deJoao Carlos Mendes Luis
jonny@jonny.eng.brJochen Pohl
jpo.drs@sni.deJoe Abley
jabley@automagic.orgJoe Halpin
joe.halpin@attbi.comJoe Jih-Shian Lu
jslu@dns.ntu.edu.twJoe Kelsey
joek@flyingcroc.netJoe Orthoefer
j_orthoefer@tia.netJoe Traister
traister@mojozone.orgJoel Faedi
Joel.Faedi@esial.u-nancy.frJoel Ray Holveck
joelh@gnu.orgJoel Sutton
jsutton@bbcon.com.auJohan Granlund
johan@granlund.nuJohan Larsson
johan@moon.campus.luth.seJohann Kois
J.Kois@web.deJohann Tonsing
jtonsing@mikom.csir.co.zaJohann van Selst
johans@stack.nlJohannes 5 Joemann
joemann@beefree.free.deJohannes Helander
unknownJohannes Stille
unknownJohn Beckett
jbeckett@southern.eduJohn Beukema
jbeukema@hk.super.netJohn Brezak
unknownJohn Capo
jc@irbs.comJohn F. Woods
jfw@jfwhome.funhouse.comJohn Goerzen
jgoerzen@alexanderwohl.complete.orgJohn Heidemann
johnh@isi.eduJohn Hood
cgull@owl.orgJohn Kohl
unknownJohn Lind
john@starfire.mn.orgJohn Mackin
john@physiol.su.oz.auJohn Merryweather Cooper
jmcoopr@webmail.bmi.netJohn P
johnp@lodgenet.comJohn Perry
perry@vishnu.alias.netJohn Preisler
john@vapornet.comJohn Reynolds
jjreynold@home.comJohn Rochester
jr@cs.mun.caJohn Sadler
john_sadler@alum.mit.eduJohn Saunders
john@pacer.nlc.net.auJohn Wehle
john@feith.comJohn Woods
jfw@eddie.mit.eduJohny Mattsson
lonewolf@flame.orgJon Morgan
morgan@terminus.trailblazer.comJon Nistor
nistor@snickers.orgJon Wilson
jon@phuq.co.ukJonathan Belson
jon@witchspace.comJonathan H N Chin
jc254@newton.cam.ac.ukJonathan Hanna
jh@pc-21490.bc.rogers.wave.caJonathan Pennington
john@coastalgeology.orgJordan DeLong
fracture@allusion.netJorge Goncalves
j@bug.fe.up.ptJorge M. Goncalves
ee96199@tom.fe.up.ptJos Backus
jos@catnook.comJose Abelardo Martinez
jamartinez@altern.orgJose Marques
jose@nobody.orgJosef El-Rayes
j.el-rayes@daemon.liJosef Grosch
jgrosch@superior.mooseriver.comJoseph Scott
joseph@randomnetworks.comJoseph Stein
joes@wstein.comJosh Gilliam
josh@quick.netJosh Tiefenbach
josh@ican.netJoshua Goodall
joshua@roughtrade.netJostein Trondal
jostein.trondal@sikkerhet.noJuan Salaverria
rael@vectorstar.netJuergen Lock
nox@jelal.hb.north.deJuha Inkari
inkari@cc.hut.fiJuha Ylitalo
juha.ylitalo@iki.fiJukka A. Ukkonen
jau@iki.fiJulian Assange
proff@suburbia.netJulian Coleman
j.d.coleman@ncl.ac.uk&a.jhs;Julian Jenkins
kaveman@magna.com.auJung-uk Kim
jkim@niksun.comJunichi Satoh
junichi@jp.FreeBSD.orgJunji SAKAI
sakai@jp.FreeBSD.orgJunya WATANABE
junya-w@remus.dti.ne.jpJustas
justas@mbank.lvJustin Stanford
jus@security.za.netKATO Tsuguru
tkato@prontomail.ne.jpKIMURA Shigekazu
zau50357@lion.zero.ad.jpKUNISHIMA Takeo
kunishi@c.oka-pu.ac.jpK.Higashino
a00303@cc.hc.keio.ac.jpKai Vorma
vode@snakemail.hut.fiKaleb S. Keithley
kaleb@ics.comKaneda Hiloshi
vanitas@ma3.seikyou.ne.jpKang-ming Liu
gugod@gugod.orgKapil Chowksey
kchowksey@hss.hns.comKarl Denninger
karl@mcs.comKarl Dietz
Karl.Dietz@triplan.comKarl Lehenbauer
karl@NeoSoft.comKarsten W. Rohrbach
karsten@rohrbach.deKawanobe Koh
kawanobe@st.rim.or.jpKees Jan Koster
kjkoster@kjkoster.orgKeith Bostic
bostic@bostic.comKeith E. Walker
kew@icehouse.netKeith Moore
unknownKeith Sklower
unknownKen Hornstein
unknownKen Key
key@cs.utk.eduKen Mayer
kmayer@freegate.comKen McGlothlen
mcglk@artlogix.comKen Tom
sub@mui.netKenji Saito
marukun@mx2.nisiq.netKenji Tomita
tommyk@da2.so-net.or.jpKenneth Furge
kenneth.furge@us.endress.comKenneth Monville
desmo@bandwidth.orgKenneth R. Westerback
krw@tcn.netKenneth Stailey
kstailey@gnu.ai.mit.eduKent Talarico
kent@shipwreck.tsoft.netKent Vander Velden
graphix@iastate.eduKentaro Inagaki
JBD01226@niftyserve.ne.jpKevin Bracey
kbracey@art.acorn.co.ukKevin Day
toasty@dragondata.comKevin Lahey
kml@nas.nasa.govKevin Meltzer
perlguy@perlguy.comKevin Street
street@iname.comKevin Van Maren
vanmaren@fast.cs.utah.eduKiller
killer@prosalg.noKim Scarborough
sluggo@unknown.nuKimura Fuyuki
fuyuki@hadaly.orgKiril Mitev
kiril@ideaglobal.comKiroh HARADA
kiroh@kh.rim.or.jpKlaus Goger
klaus.goger@reflex.atKlaus Herrmann
klaus.herrmann@gmx.netKlaus Klein
kleink@layla.inka.deKlaus-J. Wolf
Yanestra@t-online.deKoichi Sato
copan@ppp.fastnet.or.jpKonrad Heuer
kheuer@gwdu60.gwdg.deKonstantin Chuguev
Konstantin.Chuguev@dante.org.ukKoop Mast
einekoai@chello.nlKostya Lukin
lukin@okbmei.msk.suKouichi Hirabayashi
kh@mogami-wire.co.jpKris Dow
kris@vilnya.demon.co.ukKurt D. Zeilenga
Kurt@Boolean.NETKurt Olsen
kurto@tiny.mcs.usu.eduKyle Martin
mkm@ieee.orgL. Jonas Olsson
ljo@ljo-slip.DIALIN.CWRU.EduLandon Fuller
landonf@opendarwin.orgLarry Altneu
larry@ALR.COMLars Bernhardsson
lab@fnurt.netLaurence Lopez
lopez@mv.mv.comLauri Watts
lauri@kde.orgLaust S. Jespersen
L@ust.dkLee Cremeans
lcremean@tidalwave.netLefteris Chatzibarbas
lefcha@hellug.grLeo Kim
leo@florida.sarang.netLev A. Serebryakov
lev@serebryakov.spb.ruLi-lun Wang
llwang@infor.orgLiang Tai-hwa
avatar@www.mmlab.cse.yzu.edu.twLon Willett
lon%softt.uucp@math.utah.eduLouis A. Mamakos
loiue@TransSys.comLowell Gilbert
lowell@world.std.comLucas James
Lucas.James@ldjpc.apana.org.auLyndon Nerenberg
lyndon@orthanc.ab.caM. L. Dodson
bdodson@scms.utmb.EDUM.C. Wong
unknownMOROHOSHI Akihiko
moro@race.u-tokyo.ac.jpMagnus Enbom
dot@tinto.campus.luth.seMahesh Neelakanta
mahesh@gcomm.comMakoto WATANABE
watanabe@zlab.phys.nagoya-u.ac.jpMakoto YAMAKURA
makoto@pinpott.spnet.ne.jpMalte Lance
malte.lance@gmx.netManu Iyengar
iyengar@grunthos.pscwa.psca.comMarc Frajola
marc@dev.comMarc Ramirez
mrami@mramirez.sy.yale.eduMarc Recht
marc@informatik.uni-bremen.deMarc Silver
marcs@draenor.orgMarc Slemko
marcs@znep.comMarc van Kempen
wmbfmk@urc.tue.nlMarc van Woerkom
van.woerkom@netcologne.deMarcin Cieslak
saper@system.plMarco Molteni
molter@tin.itMarcus vA
mva121@gmx.netMarius Strobl
marius@alchemy.franken.deMark Andrews
unknownMark Cammidge
mark@gmtunx.ee.uct.ac.zaMark Diekhans
markd@grizzly.comMark Huizer
xaa@stack.nlMark J. Taylor
mtaylor@cybernet.comMark Knight
markk@knigma.orgMark Krentel
krentel@rice.eduMark Linimon
linimon@lonesome.comMark Mayo
markm@vmunix.comMark Thompson
thompson@tgsoft.comMark Tinguely
tinguely@plains.nodak.eduMark Treacy
unknownMark Valentine
mark@thuvia.orgMarkus Holmberg
saska@acc.umu.seMartin Birgmeier
unknownMartin Hinner
mhi@linux.gyarab.czMartin Ibert
mib@ppe.bb-data.deMartin Kammerhofer
dada@sbox.tu-graz.ac.atMartin Karlsson
martin.karlsson@visit.seMartin Klaffenboeck
martin.klaffenboeck@gmx.atMartin Matuska
martin@tradex.skMartin Minkus
diskiller@cnbinc.comMartin Preuss
martin@libchipcard.deMartti Kuparinen
martti.kuparinen@ericsson.comMasachika ISHIZUKA
ishizuka@isis.min.ntt.jpMasahiro Sekiguchi
seki@sysrap.cs.fujitsu.co.jpMasahiro TAKEMURA
mastake@msel.t.u-tokyo.ac.jpMasanobu Saitoh
msaitoh@spa.is.uec.ac.jpMasanori Kanaoka
kana@saijo.mke.mei.co.jpMasanori Kiriake
seiken@ARGV.ACMasatoshi TAMURA
tamrin@shinzan.kuee.kyoto-u.ac.jpMats Lofkvist
mal@algonet.seMatt Bartley
mbartley@lear35.cytex.comMatt Douhan
matt@athame.co.ukMatt Heckaman
matt@LUCIDA.QC.CAMatt Loschert
loschert@servint.comMatt Peterson
matt@peterson.orgMatt Thomas
matt@3am-software.comMatt White
mwhite+@CMU.EDUMatthew C. Mead
mmead@Glock.COMMatthew Cashdollar
mattc@rfcnet.comMatthew Emmerton
root@gabby.gsicomp.on.caMatthew Flatt
mflatt@cs.rice.eduMatthew Fuller
fullermd@over-yonder.netMatthew Stein
matt@bdd.netMatthew West
mwest@uct.ac.zaMatthias Pfaller
leo@dachau.marco.deMatthias Scheler
tron@netbsd.orgMatthias Schündehütte
msch@snafu.deMattias Gronlund
Mattias.Gronlund@sa.erisoft.seMattias Pantzare
pantzer@ludd.luth.seMaurice Castro
maurice@planet.serc.rmit.edu.auMax Euston
meuston@jmrodgers.comMaxim Bolotin
max@rsu.ruMaxim Tuliuk
mt@primats.org.uaMaxime Romano
verbophobe@hotmail.comMicha Class
michael_class@hpbbse.bbn.hp.comMichael A. Kohn
naken@naken.ccMichael Alyn Miller
malyn@strangeGizmo.comMichael Butler
imb@scgt.oz.auMichael Butschky
butsch@computi.erols.comMichael Clay
mclay@weareb.orgMichael Collette
metrol@metrol.netMichael Ebert
ebert@informatik.unibw-muenchen.deMichael Galassi
nerd@percival.rain.comMichael Hancock
michaelh@cet.co.jpMichael Handler
handler@grendel.netMichael Hohmuth
hohmuth@inf.tu-dresden.deMichael Hostbaek
mich@freebsdcluster.orgMichael Lyngbøl
michael@lyngbol.dkMichael Nottebrock
michaelnottebrock@gmx.netMichael Perlman
canuck@caam.rice.eduMichael Petry
petry@netwolf.NetMasters.comMichael Sardo
jaeger16@yahoo.comMichael Schout
mschout@gkg.netMichael Searle
searle@longacre.demon.co.ukMichael Urban
murban@tznet.comMichael Vasilenko
acid@stu.cn.uaMichal Listos
mcl@Amnesiac.123.orgMichal Pasternak
doc@lublin.t1.plMichio Karl Jinbo
karl@marcer.nagaokaut.ac.jpMiguel Angel Sagreras
msagre@cactus.fi.uba.arMiguel Mendez
flynn@energyhq.homeip.netMihoko Tanaka
m_tonaka@pa.yokogawa.co.jpMika Nystrom
mika@cs.caltech.eduMikael Hybsch
micke@dynas.seMikael Karpberg
karpen@ocean.campus.luth.seMike Bristow
mike@urgle.comMike Del
repenting@hotmail.comMike Durian
durian@plutotech.comMike Durkin
mdurkin@tsoft.sf-bay.orgMike E. Matsnev
mike@azog.cs.msu.suMike Evans
mevans@candle.comMike Futerko
mike@LITech.lviv.uaMike Grupenhoff
kashmir@umiacs.umd.eduMike Harding
mvh@ix.netcom.comMike Hibler
mike@marker.cs.utah.eduMike Karels
unknownMike McGaughey
mmcg@cs.monash.edu.auMike Meyer
mwm@mired.orgMike Mitchell
mitchell@ref.tfs.comMike Murphy
mrm@alpharel.comMike Peck
mike@binghamton.eduMike Sherwood
mike@fate.comMike Spengler
mks@msc.eduMikhail A. Sokolov
mishania@demos.suMing-I Hseh
PA@FreeBSD.ee.Ntu.edu.TWMitsuru Yoshida
mitsuru@riken.go.jpMonte Mitzelfelt
monte@gonefishing.orgMorgan Davis
root@io.cts.comMostyn Lewis
mostyn@mrl.comMotomichi Matsuzaki
mzaki@e-mail.ne.jpMotoyuki Kasahara
m-kasahr@sra.co.jpMunish Chopra
munish@engmail.uwaterloo.caN.G.Smith
ngs@sesame.hensa.ac.ukNAGAO Tadaaki
nagao@cs.titech.ac.jpNAKAJI Hiroyuki
nakaji@tutrp.tut.ac.jpNAKAMURA Kazushi
nkazushi@highway.or.jpNAKAMURA Motonori
motonori@econ.kyoto-u.ac.jpNIIMI Satoshi
sa2c@and.or.jpNOKUBI Hirotaka
h-nokubi@yyy.or.jpNadav Eiron
nadav@barcode.co.ilNanbor Wang
nw1@cs.wustl.eduNaofumi Honda
honda@Kururu.math.sci.hokudai.ac.jpNaoki Hamada
nao@tom-yam.or.jpNarvi
narvi@haldjas.folklore.eeNathan Dorfman
nathan@rtfm.netNeal Fachan
kneel@ishiboo.comNiall Smart
rotel@indigo.ieNicholas Esborn
nick@netdot.netNick Barnes
Nick.Barnes@pobox.comNick Handel
nhandel@NeoSoft.comNick Hilliard
nick@foobar.orgNick Johnson
freebsd@spatula.netNick Williams
njw@cs.city.ac.ukNickolay N. Dudorov
nnd@itfs.nsk.suNiklas Hallqvist
niklas@filippa.appli.seNils M. Holm
nmh@t3x.orgNisha Talagala
nisha@cs.berkeley.eduNo Name
ZW6T-KND@j.asahi-net.or.jpNo Name
adrian@virginia.eduNo Name
alex@elvisti.kiev.uaNo Name
anto@netscape.netNo Name
bobson@egg.ics.nitch.ac.jpNo Name
bovynf@awe.beNo Name
burg@is.ge.comNo Name
chris@gnome.co.ukNo Name
colsen@usa.netNo Name
coredump@nervosa.comNo Name
dannyman@arh0300.urh.uiuc.eduNo Name
davids@SECNET.COMNo Name
derek@free.orgNo Name
devet@adv.IAEhv.nlNo Name
djv@bedford.netNo Name
dvv@sprint.netNo Name
enami@ba2.so-net.or.jpNo Name
flash@eru.tubank.msk.suNo Name
flash@hway.ruNo Name
fn@pain.csrv.uidaho.eduNo Name
frf@xocolatl.comNo Name
gclarkii@netport.neosoft.comNo Name
gordon@sheaky.lonestar.orgNo Name
graaf@iae.nlNo Name
greg@greg.rim.or.jpNo Name
grossman@cygnus.comNo Name
gusw@fub46.zedat.fu-berlin.deNo Name
hfir@math.rochester.eduNo Name
hnokubi@yyy.or.jpNo Name
iaint@css.tuu.utas.edu.auNo Name
invis@visi.comNo Name
ishisone@sra.co.jpNo Name
iverson@lionheart.comNo Name
jpt@magic.netNo Name
junker@jazz.snu.ac.krNo Name
k-sugyou@ccs.mt.nec.co.jpNo Name
kenji@reseau.toyonaka.osaka.jpNo Name
kfurge@worldnet.att.netNo Name
lh@aus.orgNo Name
lhecking@nmrc.ucc.ieNo Name
mrgreen@mame.mu.oz.auNo Name
nakagawa@jp.FreeBSD.orgNo Name
ohki@gssm.otsuka.tsukuba.ac.jpNo Name
owaki@st.rim.or.jpNo Name
pechter@shell.monmouth.comNo Name
pete@pelican.pelican.comNo Name
pritc003@maroon.tc.umn.eduNo Name
risner@stdio.comNo Name
roman@rpd.univ.kiev.uaNo Name
root@ns2.redline.ruNo Name
root@uglabgw.ug.cs.sunysb.eduNo Name
stephen.ma@jtec.com.auNo Name
sumii@is.s.u-tokyo.ac.jpNo Name
takas-su@is.aist-nara.ac.jpNo Name
tamone@eig.unige.chNo Name
tjevans@raleigh.ibm.comNo Name
tony-o@iij.ad.jp amurai@spec.co.jpNo Name
torii@tcd.hitachi.co.jpNo Name
uenami@imasy.or.jpNo Name
uhlar@netlab.skNo Name
vode@hut.fiNo Name
wlloyd@mpd.caNo Name
wlr@furball.wellsfargo.comNo Name
wmbfmk@urc.tue.nlNo Name
yamagata@nwgpc.kek.jpNo Name
ziggy@ryan.orgNobuhiro Yasutomi
nobu@psrc.isac.co.jpNobuyuki Koganemaru
kogane@koganemaru.co.jpNorio Suzuki
nosuzuki@e-mail.ne.jpNoritaka Ishizumi
graphite@jp.FreeBSD.orgNoriyuki Soda
soda@sra.co.jpOddbjorn Steffensen
oddbjorn@tricknology.orgOh Junseon
hollywar@mail.holywar.netOlaf Wagner
wagner@luthien.in-berlin.deOleg Semyonov
os@altavista.netOleg Sharoiko
os@rsu.ruOleg V. Volkov
rover@lglobus.ruOlexander Kunytsa
kunia@wolf.istc.kiev.uaOliver Breuninger
ob@seicom.NETOliver Friedrichs
oliver@secnet.comOliver Fromme
oliver.fromme@heim3.tu-clausthal.deOliver Helmling
oliver.helmling@stud.uni-bayreuth.deOliver Laumann
net@informatik.uni-bremen.deOliver Lehmann
Kai_Allard_Liao@gmx.deOliver Oberdorf
oly@world.std.comOlivier Tharan
olive@oban.frmug.orgOlof Johansson
offe@ludd.luth.seOsokin Sergey aka oZZ
ozz@FreeBSD.org.ruPace Willisson
pace@blitz.comPaco Rosich
rosich@modico.eleinf.uv.esPalle Girgensohn
girgen@partitur.sePaolo Flag
flag@gufi.orgParag Patel
parag@cgt.comPascal Pederiva
pascal@zuo.dec.comPasvorn Boonmark
boonmark@juniper.netPatrick Alken
cosine@ellipse.mcs.drexel.eduPatrick Bihan-Faou
patrick@mindstep.comPatrick Hausen
unknownPatrick Powell
papowell@astart.comPatrick Seal
patseal@hyperhost.netPaul Antonov
apg@demos.suPaul F. Werkowski
unknownPaul Fox
pgf@foxharp.boston.ma.usPaul Koch
koch@thehub.com.auPaul Kranenburg
pk@NetBSD.orgPaul M. Lambert
plambert@plambert.netPaul Mackerras
paulus@cs.anu.edu.auPaul Popelka
paulp@uts.amdahl.comPaul S. LaFollette, Jr.
unknownPaul Sandys
myj@nyct.netPaul T. Root
proot@horton.iaces.comPaul Vixie
paul@vix.comPaulo Menezes
paulo@isr.uc.ptPaulo Menezes
pm@dee.uc.ptPedro A M Vazquez
vazquez@IQM.Unicamp.BRPedro Giffuni
giffunip@asme.orgPer Wigren
wigren@home.sePete Bentley
pete@demon.netPeter Avalos
pavalos@theshell.comPeter Childs
pjchilds@imforei.apana.org.auPeter Cornelius
pc@inr.fzk.dePeter Haight
peterh@prognet.comPeter Jeremy
peter.jeremy@alcatel.com.auPeter M. Chen
pmchen@eecs.umich.eduPeter Much
peter@citylink.dinoex.sub.orgPeter Olsson
unknownPeter Philipp
pjp@bsd-daemon.netPeter Stubbs
PETERS@staidan.qld.edu.auPeter W. Schmiedeskamp
pschmied@qwest.netPeter van Heusden
pvh@wfeet.za.netPhil Maker
pjm@cs.ntu.edu.auPhil Sutherland
philsuth@mycroft.dialix.oz.auPhil Taylor
phil@zipmail.co.ukPhilip Musumeci
philip@rmit.edu.auPhilippe Lefebvre
nemesis@balistik.netPierre Y. Dampure
pierre.dampure@k2c.co.ukPius Fischer
pius@ienet.comPomegranate
daver@flag.blackened.netPowerdog Industries
kevin.ruddy@powerdog.comPriit Järv
priit@cc.ttu.eeR Joseph Wright
rjoseph@mammalia.orgR. Kym HorsellRadoslav Vasilev
rvasilev@uni-svishtov.bgRalf Friedl
friedl@informatik.uni-kl.deRandal S. Masutani
randal@comtest.comRandall Hopper
rhh@ct.picker.comRandall W. Dean
rwd@osf.orgRandy Bush
rbush@bainbridge.verio.netRasmus Kaj
kaj@Raditex.seReinier Bezuidenhout
rbezuide@mikom.csir.co.zaRemy Card
Remy.Card@masi.ibp.frRicardas Cepas
rch@richard.eu.orgRiccardo Veraldi
veraldi@cs.unibo.itRich Wood
rich@FreeBSD.org.ukRichard Arends
richard@unixguru.nlRichard Henderson
richard@atheist.tamu.eduRichard Hwang
rhwang@bigpanda.comRichard J Kuhns
rjk@watson.grauel.comRichard Kiss
richard@homemail.comRichard M. Neswold
rneswold@enteract.comRichard Stallman
rms@gnu.ai.mit.eduRichard Straka
straka@user1.inficad.comRichard Tobin
richard@cogsci.ed.ac.ukRichard Wackerbarth
rkw@Dataplex.NETRichard Winkel
rich@math.missouri.eduRichard Wiwatowski
rjwiwat@adelaide.on.netRick Macklem
rick@snowhite.cis.uoguelph.caRick Macklin
unknownRob Austein
sra@epilogue.comRob Mallory
rmallory@qualcomm.comRob Snow
rsnow@txdirect.netRobert Crowe
bob@speakez.comRobert D. Thrush
rd@phoenix.aii.comRobert Eckardt
roberte@MEP.Ruhr-Uni-Bochum.deRobert P Ricci
ricci@cs.utah.eduRobert Sanders
rsanders@mindspring.comRobert Sexton
robert@kudra.comRobert Shady
rls@id.netRobert Swindells
swindellsr@genrad.co.ukRobert Withrow
witr@rwwa.comRobert Yoder
unknownRobin Carey
robin@mailgate.dtc.rankxerox.co.ukRod Taylor
rod@idiotswitch.orgRoger Hardiman
roger@cs.strath.ac.ukRoland Jesse
jesse@cs.uni-magdeburg.deRoman Shterenzon
roman@xpert.comRon Bickers
rbickers@intercenter.netRon Lenk
rlenk@widget.xmission.comRonald Kuehn
kuehn@rz.tu-clausthal.deRudolf Cejka
cejkar@fit.vutbr.czRui Lopes
rui@ruilopes.comRuslan Belkin
rus@home2.UA.netRuslan Shevchenko
rssh@cam.grad.kiev.uaRussell L. Carter
rcarter@pinyon.orgRussell Vincent
rv@groa.uct.ac.zaRyan Younce
ryany@pobox.comRyuichiro IMURA
imura@af.airnet.ne.jpSANETO Takanori
sanewo@strg.sony.co.jpSASAKI Shunsuke
ele@pop17.odn.ne.jpSAWADA Mizuki
miz@qb3.so-net.ne.jpSUGIMURA Takashi
sugimura@jp.FreeBSD.orgSURANYI Peter
suranyip@jks.is.tsukuba.ac.jpSakai Hiroaki
sakai@miya.ee.kagu.sut.ac.jpSakari Jalovaara
sja@tekla.fiSam Hartman
hartmans@mit.eduSamuel Lam
skl@ScalableNetwork.comSamuel Tardieu
sam@inf.enst.frSamuele Zannoli
zannoli@cs.unibo.itSamy Al Bahra
samy@kerneled.comSander Janssen
janssen@rendo.dekooi.nlSander Vesik
sander@haldjas.folklore.eeSandro Sigala
ssigala@globalnet.itSascha Blank
blank@fox.uni-trier.deSascha Holzleiter
sascha@root-login.orgSascha Wildner
swildner@channelz.GUN.deSatoh Junichi
junichi@astec.co.jpScot Elliott
scot@poptart.orgScot W. Hetzel
hetzels@westbend.netScott A. Kenney
saken@rmta.ml.orgScott A. Moberly
smoberly@xavier.dyndns.orgScott Blachowicz
scott.blachowicz@seaslug.orgScott Burris
scott@pita.cns.ucla.eduScott Hazen Mueller
scott@zorch.sf-bay.orgScott Michel
scottm@cs.ucla.eduScott Mitchel
scott@uk.FreeBSD.orgScott Reynolds
scott@clmqt.marquette.mi.usSebastian Strollo
seb@erix.ericsson.seSerge V. Vakulenko
vak@zebub.msk.suSergei Chechetkin
csl@whale.sunbay.crimea.uaSergei Kolobov
sergei@kolobov.comSergei S. Laskavy
laskavy@pc759.cs.msu.suSergey Gershtein
sg@mplik.ruSergey Kosyakov
ks@itp.ac.ruSergey N. Vorokov
serg@tmn.ruSergey Potapov
sp@alkor.ruSergey Samoyloff
gonza@techline.ruSergey Shkonda
serg@bcs.zp.uaSergey V.Dorokhov
svd@kbtelecom.nalnet.ruSergio Lenzi
lenzi@bsi.com.brShaun Courtney
shaun@emma.eng.uct.ac.zaShawn M. Carey
smcarey@mailbox.syr.eduShell Hung
shell@shellhung.orgShigio Yamaguchi
shigio@tamacom.comShinichiro Komatsu
koma2@jiro.c.u-tokyo.ac.jpShinya Esu
esu@yk.rim.or.jpShinya FUJIE
fujie@tk.elec.waseda.ac.jpShuichi Tanaka
stanaka@bb.mbn.or.jpSimon
simon@masi.ibp.frSimon Burge
simonb@telstra.com.auSimon Dick
simond@irrelevant.orgSimon J Gerraty
sjg@melb.bull.oz.auSimon Marlow
simonm@dcs.gla.ac.ukSimon Schubert
corecode@corecode.ath.cxSimon Shapiro
shimon@simon-shapiro.orgSin'ichiro MIYATANI
siu@phaseone.co.jpSlaven Rezic
eserte@cs.tu-berlin.deSoochon Radee
slr@mitre.orgSoren Dayton
csdayton@midway.uchicago.eduSoren Dossing
sauber@netcom.comSoren S. Jorvang
soren@wheel.dkStefan Eggers
seggers@semyam.dinoco.deStefan Ehmann
shoesoft@gmx.netStefan Farfeleder
e0026813@stud3.tuwien.ac.atStefan Moeding
s.moeding@ndh.netStefan Petri
unknownStefan `Sec` Zehl
sec@42.orgSteffen Mazanek
steffen.mazanek@unibw-muenchen.deSteffen Vogelreuter
Steffen@Vogelreuter.DeSteinar Haug
sthaug@nethelp.noStephane E. Potvin
sepotvin@videotron.caStephen Clawson
sclawson@marker.cs.utah.eduStephen F. Combs
combssf@salem.ge.comStephen Farrell
stephen@farrell.orgStephen Gunn
csg@fedex.comStephen Hocking
sysseh@devetir.qld.gov.auStephen J. Roznowski
sjr@home.netStephen McKay
syssgm@devetir.qld.gov.auStephen Melvin
melvin@zytek.comSteve Bauer
sbauer@rock.sdsmt.eduSteve Coltrin
spcoltri@unm.eduSteve Deering
unknownSteve Gerakines
steve2@genesis.tiac.netSteve Gericke
steveg@comtrol.comSteve Piette
steve@simon.chi.il.USSteve Schwarz
schwarz@alpharel.comSteven Enderle
panic@subphase.deSteven G. Kargl
kargl@troutmask.apl.washington.eduSteven H. Samorodin
samorodi@NUXI.comSteven McCanne
mccanne@cs.berkeley.eduSteven Plite
splite@purdue.eduSteven Wallace
unknownStijn Hoop
stijn@win.tue.nlStuart Henderson
stuart@internationalschool.co.ukSue Blake
sue@welearn.com.auSugimoto Sadahiro
ixtl@komaba.utmc.or.jpSugiura Shiro
ssugiura@duo.co.jpSujal Patel
smpatel@wam.umd.eduSune Stjerneby
sst@vmunix.dkSungman Cho
smcho@tsp.korea.ac.krSuzuki Yoshiaki
zensyo@ann.tama.kawasaki.jpSvein Skogen
tds@dmnstech.netSybolt de Boer
bolt@xs4all.nlTAKAHASHI Kaoru
kaoru@kaisei.orgTadashi Kumano
kumano@strl.nhk.or.jpTaguchi Takeshi
taguchi@tohoku.iij.ad.jpTakahiro Yugawa
yugawa@orleans.rim.or.jpTakashi Mega
mega@minz.orgTakashi Uozu
j1594016@ed.kagu.sut.ac.jpTakayuki Ariga
a00821@cc.hc.keio.ac.jpTakayuki Nakao
t@nakao.orgTakeru NAIKI
naiki@bfd.es.hokudai.ac.jpTakeshi Amaike
amaike@iri.co.jpTakeshi MUTOH
mutoh@info.nara-k.ac.jpTakeshi Ohashi
ohashi@mickey.ai.kyutech.ac.jpTakeshi WATANABE
watanabe@crayon.earth.s.kobe-u.ac.jpTakuya SHIOZAKI
tshiozak@makino.ise.chuo-u.ac.jpTatoku Ogaito
tacha@tera.fukui-med.ac.jpTatsuya Kudoh
cdr@cosmonet.orgTed Buswell
tbuswell@mediaone.netTed Faber
faber@isi.eduTed Lemon
mellon@isc.orgTerry Lambert
terry@lambert.orgTerry Lee
terry@uivlsi.csl.uiuc.eduTeruaki Ata
PFA03027@nifty.ne.jpTetsuro Yabu
yabu@uopmu.ees.osakafu-u.ac.jpTetsuya Furukawa
tetsuya@secom-sis.co.jpTheo de Raadt
deraadt@OpenBSD.orgThierry Thomas
thierry@pompo.netThomas
thomas@mathematik.uni-Bremen.deThomas A. Stephens
tas@stephens.orgThomas D. Dean
tomdean@ix.netcom.comThomas David Rivers
rivers@dignus.comThomas E. Zander
riggs@rrr.deThomas G. McWilliams
tgm@netcom.comThomas König
Thomas.Koenig@ciw.uni-karlsruhe.deThomas M. Hermann
Thomas.Hermann@cox.netThomas Ptacek
unknownThomas Stromberg
tstrombe@rtci.comThomas Valentino Crimi
tcrimi+@andrew.cmu.eduThomas Vogt
thomas.vogt@bsdunix.chThomas Wintergerst
thomas@lemur.nord.deThorsten Greiner
thorsten.greiner@web.deÞórður Ívarsson
totii@est.isTim Bishop
tim@bishnet.netTim Daneliuk
tundra@tundraware.comTim Kientzle
kientzle@netcom.comTim Singletary
tsingle@sunland.gsfc.nasa.govTim Wilkinson
tim@sarc.city.ac.ukTimo J. Rinne
tri@iki.fiTimothy Jensen
toast@blackened.comTobias Reifenberger
treif@mayn.deTodd Miller
millert@openbsd.orgTom
root@majestix.cmr.noTom
tom@sdf.comTom Gray - DCA
dcasba@rain.orgTom Jobbins
tom@tom.tjTom Pusateri
pusateri@juniper.netTom Rush
tarush@mindspring.comTom Samplonius
tom@misery.sdf.comTomohiko Kurahashi
kura@melchior.q.t.u-tokyo.ac.jpTony Kimball
alk@Think.COMTony Li
tli@jnx.comTony Lynn
wing@cc.nsysu.edu.twTony Maher
tonym@biolateral.com.auTorbjorn Granlund
tege@matematik.su.seToshihiko SHIMOKAWA
toshi@tea.forus.or.jpToshihiro Kanda
candy@kgc.co.jpToshiomi Moriki
Toshiomi.Moriki@ma1.seikyou.ne.jpTrefor S.
trefor@flevel.co.ukTrenton Schulz
twschulz@cord.eduTrevor Blackwell
tlb@viaweb.comURATA Shuichiro
s-urata@nmit.tmg.nec.co.jpUdo Schweigert
ust@cert.siemens.deUgo Paternostro
paterno@dsi.unifi.itUlf Kieber
kieber@sax.deUlli Linzen
ulli@perceval.camelot.deUlrich Spoerlein
q@uni.deUwe Arndt
arndt@mailhost.uni-koblenz.deUwe Pierau
uwe.pierau@tu-clausthal.deVadim Belman
voland@catpipe.netVadim Chekan
vadim@gc.lviv.uaVadim Kolontsov
vadim@tversu.ac.ruVadim Mikhailov
mvp@braz.ruValentin Nechayev
netch@lucky.netVan Jacobson
van@ee.lbl.govVasily V. Grechishnikov
bazilio@ns1.ied-vorstu.ac.ruVasim Valejev
vasim@uddias.diaspro.comVassili Tchersky
vt@bsd-fr.orgVernon J. Schryver
vjs@mica.denver.sgi.comVeselin Slavov
vess@btc.netVic Abell
abe@cc.purdue.eduVille Eerola
ve@sci.fiVince Valenti
vince@blue-box.netVincent Poy
vince@venus.gaianet.netVincenzo Capuano
VCAPUANO@vmprofs.esoc.esa.deVirgil Champlin
champlin@pa.dec.comVladimir A. Jakovenko
vovik@ntu-kpi.kiev.uaVladimir Kurtikov vk@vk.pp.ruVladimir Kushnir
kushn@mail.kar.netVladimir Savichev
vlad@ariel.phys.wesleyan.eduVolker Stolz
vs@lambda.foldr.orgVsevolod Lobko
seva@alex-ua.comW. Gerald Hicks
wghicks@bellsouth.netW. Richard Stevens
rstevens@noao.eduWalt Howard
howard@ee.utah.eduWalt M. Shandruk
walt@erudition.netWalter Hop
walter@binity.comWarren Toomey
wkt@csadfa.cs.adfa.oz.auWayne Scott
wscott@ichips.intel.comWerner Griessl
werner@btp1da.phy.uni-bayreuth.deWes Santee
wsantee@wsantee.oz.netWietse Venema
wietse@wzv.win.tue.nlWiljo Heinen
wiljo@freeside.ki.open.deWillem van Engen
wvengen@stack.nlWillem Jan Withagen
wjw@surf.IAE.nlWilliam Jolitz
withheldWilliam Josephson
wkj-freebsd@honk.eecs.harvard.eduWilliam Liao
william@tale.netWojtek Pilorz
wpilorz@celebris.bdk.lublin.plWolfgang Helbig
helbig@ba-stuttgart.deWolfgang Solfrank
ws@tools.deWolfgang Stanglmeier
wolf@FreeBSD.orgWouter Van Hemel
wouter@pair.comWu Ching-hong
woju@FreeBSD.ee.Ntu.edu.TW&a.wylie;Xavier Beaudouin
kiwi@oav.netYannis Kotsinos
zookie@med.auth.grYarema
yds@ingress.comYaroslav Terletsky
ts@polynet.lviv.uaYasuhiro Fukama
yasuf@big.or.jpYasuhito FUTATSUKI
futatuki@fureai.or.jpYen-Shuo Su
yssu@CCCA.NCTU.edu.twYin-Jieh Chen
yinjieh@Crazyman.Dorm13.NCTU.edu.twYixin Jin
yjin@rain.cs.ucla.eduYoichi Asai
yatt@msc.biglobe.ne.jpYonatan Bokovza
Yonatan@xpert.comYoshiaki Uchikawa
yoshiaki@kt.rim.or.jpYoshihiko SARUMRU
mistral@imasy.or.jpYoshihisa NAKAGAWA
y-nakaga@ccs.mt.nec.co.jpYoshikazu Goto
gotoh@ae.anritsu.co.jpYoshimasa Ohnishi
ohnishi@isc.kyutech.ac.jpYoshishige Arai
ryo2@on.rim.or.jpYu-Shun Wang
yushunwa@isi.eduYuichi MATSUTAKA
matutaka@osa.att.ne.jpYujiro MIYATA
miyata@bioele.nuee.nagoya-u.ac.jpYusuke Nawano
azuki@azkey.orgYuu Yashiki
s974123@cc.matsuyama-u.ac.jpYuuichi Narahara
aconitum@po.teleway.ne.jpYuuki SAWADA
mami@whale.cc.muroran-it.ac.jpYuukis
Ys@PixyGarden.netYuval Yarom
yval@cs.huji.ac.ilYves Fonk
yves@cpcoup5.tn.tudelft.nlYves Fonk
yves@dutncp8.tn.tudelft.nlZach Garner
zach@neurosoft.orgZach Heilig
zach@gaffaneys.comZach Zurflu
zach@pabst.bendnet.comZahemszhky Gabor
zgabor@code.huZhong Ming-Xun
zmx@mail.CDPA.nsysu.edu.twarci
vega@sophia.inria.frder Mouse
mouse@Collatz.McRCIM.McGill.EDU386BSD Patch Kit Patch Contributors(in alphabetical order by first name):Adam Glass
glass@postgres.berkeley.eduAdrian Hall
ahall@mirapoint.comAndrey A. Chernov
ache@astral.msk.suAndrew Gerweck
andy@gerweck.dynup.netAndrew Herbert
andrew@werple.apana.org.auAndrew Moore
alm@netcom.comAndy Valencia ajv@csd.mot.comjtk@netcom.comArne Henrik Juul
arnej@Lise.Unit.NOBakul Shah
bvs@bitblocks.comBarry Lustig
barry@ictv.comBob Wilcox
bob@obiwan.uucpBranko LankesterBrett Lymn
blymn@mulga.awadi.com.AUCharles Hannum
mycroft@ai.mit.eduChris G. Demetriou
cgd@postgres.berkeley.eduChris Torek
torek@ee.lbl.govChristoph Robitschko
chmr@edvz.tu-graz.ac.atDaniel Poirot
poirot@aio.jsc.nasa.govDave Burgess
burgess@hrd769.brooks.af.milDave Rivers
rivers@ponds.uucpDavid Dawes
dawes@physics.su.OZ.AUDavid Greenman
dg@Root.COMEric J. Haug
ejh@slustl.slu.eduFelix Gaehtgens
felix@escape.vsse.in-berlin.deFrank Maclachlan
fpm@crash.cts.comGary A. Browning
gab10@griffcd.amdahl.comGary Howland
gary@hotlava.comGeoff Rehmet
csgr@alpha.ru.ac.zaGoran Hammarback
goran@astro.uu.seGuido van Rooij
guido@gvr.orgGuy Antony Halse
guy@rucus.ru.ac.zaGuy Harris
guy@auspex.comHavard Eidnes
Havard.Eidnes@runit.sintef.noHerb Peyerl
hpeyerl@novatel.cuc.ab.caHolger Veit
Holger.Veit@gmd.deIshii Masahiro, R. Kym HorsellJ.T. Conklin
jtc@cygnus.comJagane D Sundar
jagane@netcom.comJames Clark
jjc@jclark.comJames Jegers
jimj@miller.cs.uwm.eduJames W. DolterJames da Silva
jds@cs.umd.edu et alJay Fenlason
hack@datacube.comJim Wilson
wilson@moria.cygnus.comJörg Lohse
lohse@tech7.informatik.uni-hamburg.deJörg Wunsch
joerg_wunsch@uriah.heep.sax.deJohn DysonJohn Woods
jfw@eddie.mit.eduJordan K. Hubbard
jkh@whisker.hubbard.ieJulian Elischer
julian@dialix.oz.auKarl Dietz
Karl.Dietz@triplan.comKarl Lehenbauer
karl@NeoSoft.comkarl@one.neosoft.comKeith Bostic
bostic@toe.CS.Berkeley.EDUKen HughesKent Talarico
kent@shipwreck.tsoft.netKevin Lahey
kml%rokkaku.UUCP@mathcs.emory.edukml@mosquito.cis.ufl.eduKonstantinos Konstantinidis
kkonstan@duth.grMarc Frajola
marc@dev.comMark Tinguely
tinguely@plains.nodak.edutinguely@hookie.cs.ndsu.NoDak.eduMartin Renters
martin@tdc.on.caMichael Clay
mclay@weareb.orgMichael Galassi
nerd@percival.rain.comMike Durkin
mdurkin@tsoft.sf-bay.orgNaoki Hamada
nao@tom-yam.or.jpNate Williams
nate@bsd.coe.montana.eduNick Handel
nhandel@NeoSoft.comnick@madhouse.neosoft.comPace Willisson
pace@blitz.comPaul Kranenburg
pk@cs.few.eur.nlPaul Mackerras
paulus@cs.anu.edu.auPaul Popelka
paulp@uts.amdahl.comPeter da Silva
peter@NeoSoft.comPhil Sutherland
philsuth@mycroft.dialix.oz.auPoul-Henning Kamp
phk@FreeBSD.orgRalf Friedl
friedl@informatik.uni-kl.deRick Macklem
root@snowhite.cis.uoguelph.caRobert D. Thrush
rd@phoenix.aii.comRodney W. Grimes
rgrimes@cdrom.comSascha Wildner
swildner@channelz.GUN.deScott Burris
scott@pita.cns.ucla.eduScott Reynolds
scott@clmqt.marquette.mi.usSeamus Venasse
svenasse@polaris.caSean Eric Fagan
sef@kithrup.comSean McGovern
sean@sfarc.netSimon J Gerraty sjg@melb.bull.oz.ausjg@zen.void.oz.auStephen McKay
syssgm@devetir.qld.gov.auTerry Lambert
terry@icarus.weber.eduTerry Lee
terry@uivlsi.csl.uiuc.eduTor Egge
Tor.Egge@idi.ntnu.noWarren Toomey
wkt@csadfa.cs.adfa.oz.auWiljo Heinen
wiljo@freeside.ki.open.deWilliam Jolitz
withheldWolfgang Solfrank
ws@tools.deWolfgang Stanglmeier
wolf@dentaro.GUN.deYuval Yarom
yval@cs.huji.ac.il