CREDITS 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759
  1. This is at least a partial credits-file of people that have
  2. contributed to the Linux project. It is sorted by name and
  3. formatted to allow easy grepping and beautification by
  4. scripts. The fields are: name (N), email (E), web-address
  5. (W), PGP key ID and fingerprint (P), description (D), and
  6. snail-mail address (S).
  7. Thanks,
  8. Linus
  9. ----------
  10. N: Matti Aarnio
  11. E: mea@nic.funet.fi
  12. D: Alpha systems hacking, IPv6 and other network related stuff
  13. D: One of assisting postmasters for vger.kernel.org's lists
  14. S: (ask for current address)
  15. S: Finland
  16. N: Dragos Acostachioaie
  17. E: dragos@iname.com
  18. W: http://www.arbornet.org/~dragos
  19. D: /proc/sysvipc
  20. S: C. Negri 6, bl. D3
  21. S: Iasi 6600
  22. S: Romania
  23. N: Monalisa Agrawal
  24. E: magrawal@nortelnetworks.com
  25. D: Basic Interphase 5575 driver with UBR and ABR support.
  26. S: 75 Donald St, Apt 42
  27. S: Weymouth, MA 02188
  28. N: Dave Airlie
  29. E: airlied@linux.ie
  30. W: http://www.csn.ul.ie/~airlied
  31. D: NFS over TCP patches
  32. D: in-kernel DRM Maintainer
  33. S: Longford, Ireland
  34. S: Sydney, Australia
  35. N: Tigran A. Aivazian
  36. E: tigran@veritas.com
  37. W: http://www.moses.uklinux.net/patches
  38. D: BFS filesystem
  39. D: Intel IA32 CPU microcode update support
  40. D: Various kernel patches
  41. S: United Kingdom
  42. N: Werner Almesberger
  43. E: werner@almesberger.net
  44. W: http://www.almesberger.net/
  45. D: dosfs, LILO, some fd features, ATM, various other hacks here and there
  46. S: Buenos Aires
  47. S: Argentina
  48. N: Tim Alpaerts
  49. E: tim_alpaerts@toyota-motor-europe.com
  50. D: 802.2 class II logical link control layer,
  51. D: the humble start of an opening towards the IBM SNA protocols
  52. S: Klaproosstraat 72 c 10
  53. S: B-2610 Wilrijk-Antwerpen
  54. S: Belgium
  55. N: Anton Altaparmakov
  56. E: aia21@cantab.net
  57. W: http://www-stu.christs.cam.ac.uk/~aia21/
  58. D: Author of new NTFS driver, various other kernel hacks.
  59. S: Christ's College
  60. S: Cambridge CB2 3BU
  61. S: United Kingdom
  62. N: C. Scott Ananian
  63. E: cananian@alumni.princeton.edu
  64. W: http://www.pdos.lcs.mit.edu/~cananian
  65. P: 1024/85AD9EED AD C0 49 08 91 67 DF D7 FA 04 1A EE 09 E8 44 B0
  66. D: Unix98 pty support.
  67. D: APM update to 1.2 spec.
  68. D: /devfs hacking.
  69. S: 7 Kiwi Loop
  70. S: Howell, NJ 07731
  71. S: USA
  72. N: Erik Andersen
  73. E: andersen@codepoet.org
  74. W: http://www.codepoet.org/
  75. P: 1024D/30D39057 1BC4 2742 E885 E4DE 9301 0C82 5F9B 643E 30D3 9057
  76. D: Maintainer of ide-cd and Uniform CD-ROM driver,
  77. D: ATAPI CD-Changer support, Major 2.1.x CD-ROM update.
  78. S: 352 North 525 East
  79. S: Springville, Utah 84663
  80. S: USA
  81. N: Michael Ang
  82. E: mang@subcarrier.org
  83. W: http://www.subcarrier.org/mang
  84. D: Linux/PA-RISC hacker
  85. S: 85 Frank St.
  86. S: Ottawa, Ontario
  87. S: Canada K2P 0X3
  88. N: H. Peter Anvin
  89. E: hpa@zytor.com
  90. W: http://www.zytor.com/~hpa/
  91. P: 2047/2A960705 BA 03 D3 2C 14 A8 A8 BD 1E DF FE 69 EE 35 BD 74
  92. D: Author of the SYSLINUX boot loader, maintainer of the linux.* news
  93. D: hierarchy and the Linux Device List; various kernel hacks
  94. S: 4390 Albany Drive #46
  95. S: San Jose, California 95129
  96. S: USA
  97. N: Andrea Arcangeli
  98. E: andrea@suse.de
  99. W: http://www.kernel.org/pub/linux/kernel/people/andrea/
  100. P: 1024D/68B9CB43 13D9 8355 295F 4823 7C49 C012 DFA1 686E 68B9 CB43
  101. P: 1024R/CB4660B9 CC A0 71 81 F4 A0 63 AC C0 4B 81 1D 8C 15 C8 E5
  102. D: Parport hacker
  103. D: Implemented a workaround for some interrupt buggy printers
  104. D: Author of pscan that helps to fix lp/parport bugs
  105. D: Author of lil (Linux Interrupt Latency benchmark)
  106. D: Fixed the shm swap deallocation at swapoff time (try_to_unuse message)
  107. D: VM hacker
  108. D: Various other kernel hacks
  109. S: Imola 40026
  110. S: Italy
  111. N: Derek Atkins
  112. E: warlord@MIT.EDU
  113. D: Linux-AFS Port, random kernel hacker,
  114. D: VFS fixes (new notify_change in particular)
  115. D: Moving all VFS access checks into the file systems
  116. S: MIT Room E15-341
  117. S: 20 Ames Street
  118. S: Cambridge, Massachusetts 02139
  119. S: USA
  120. N: Michel Aubry
  121. E: giovanni <giovanni@sudfr.com>
  122. D: Aladdin 1533/1543(C) chipset IDE
  123. D: VIA MVP-3/TX Pro III chipset IDE
  124. N: Jens Axboe
  125. E: axboe@suse.de
  126. D: Linux CD-ROM maintainer, DVD support
  127. D: elevator + block layer rewrites
  128. D: highmem I/O support
  129. D: misc hacking on IDE, SCSI, block drivers, etc
  130. S: Peter Bangs Vej 258, 2TH
  131. S: 2500 Valby
  132. S: Denmark
  133. N: John Aycock
  134. E: aycock@cpsc.ucalgary.ca
  135. D: Adaptec 274x driver
  136. S: Department of Computer Science
  137. S: University of Calgary
  138. S: Calgary, Alberta
  139. S: Canada
  140. N: Miles Bader
  141. E: miles@gnu.org
  142. D: v850 port (uClinux)
  143. S: NEC Corporation
  144. S: 1753 Shimonumabe, Nakahara-ku
  145. S: Kawasaki 211-8666
  146. S: Japan
  147. N: Ralf Baechle
  148. E: ralf@gnu.org
  149. P: 1024/AF7B30C1 CF 97 C2 CC 6D AE A7 FE C8 BA 9C FC 88 DE 32 C3
  150. D: Linux/MIPS port
  151. D: Linux/68k hacker
  152. S: Hauptstrasse 19
  153. S: 79837 St. Blasien
  154. S: Germany
  155. N: Krishna Balasubramanian
  156. E: balasub@cis.ohio-state.edu
  157. D: Wrote SYS V IPC (part of standard kernel since 0.99.10)
  158. N: Dario Ballabio
  159. E: ballabio_dario@emc.com
  160. E: dario.ballabio@tiscalinet.it
  161. E: dario.ballabio@inwind.it
  162. D: Author and maintainer of the Ultrastor 14F/34F SCSI driver
  163. D: Author and maintainer of the EATA ISA/EISA/PCI SCSI driver
  164. S: EMC Corporation
  165. S: Milano
  166. S: Italy
  167. N: Paul Bame
  168. E: bame@debian.org
  169. E: bame@puffin.external.hp.com
  170. E: paul_bame@hp.com
  171. W: http://www.parisc-linux.org
  172. D: PA-RISC 32 and 64-bit early boot, firmware interface, interrupts, misc
  173. S: MS42
  174. S: Hewlett-Packard
  175. S: 3404 E Harmony Rd
  176. S: Fort Collins, CO 80525
  177. N: Arindam Banerji
  178. E: axb@cse.nd.edu
  179. D: Contributed ESDI driver routines needed to port LINUX to the PS/2 MCA.
  180. S: Department of Computer Science & Eng.
  181. S: University of Notre Dame
  182. S: Notre Dame, Indiana
  183. S: USA
  184. N: Greg Banks
  185. E: gnb@alphalink.com.au
  186. D: IDT77105 ATM network driver
  187. D: some SuperH port work
  188. D: some trivial futzing with kconfig
  189. N: James Banks
  190. E: james@sovereign.org
  191. D: TLAN network driver
  192. D: Logitech Busmouse driver
  193. N: Krzysztof G. Baranowski
  194. E: kgb@manjak.knm.org.pl
  195. P: 1024/FA6F16D1 96 D1 1A CF 5F CA 69 EC F9 4F 36 1F 6D 60 7B DA
  196. D: Maintainer of the System V file system.
  197. D: System V fs update for 2.1.x dcache.
  198. D: Forward ported a couple of SCSI drivers.
  199. D: Various bugfixes.
  200. S: ul. Koscielna 12a
  201. S: 62-300 Wrzesnia
  202. S: Poland
  203. N: Fred Barnes
  204. E: frmb2@ukc.ac.uk
  205. D: Various parport/ppdev hacks and fixes
  206. S: Computing Lab, The University
  207. S: Canterbury, KENT
  208. S: CT2 7NF
  209. S: England
  210. N: Paul Barton-Davis
  211. E: pbd@op.net
  212. D: Driver for WaveFront soundcards (Turtle Beach Maui, Tropez, Tropez+)
  213. D: Various bugfixes and changes to sound drivers
  214. S: USA
  215. N: Carlos Henrique Bauer
  216. E: chbauer@acm.org
  217. E: bauer@atlas.unisinos.br
  218. D: Some new sysctl entries for the parport driver.
  219. D: New sysctl function for handling unsigned longs
  220. S: Universidade do Vale do Rio dos Sinos - UNISINOS
  221. S: DSI/IDASI
  222. S: Av. Unisinos, 950
  223. S: 93022000 Sao Leopoldo RS
  224. S: Brazil
  225. N: Peter Bauer
  226. E: 100136.3530@compuserve.com
  227. D: Driver for depca-ethernet-board
  228. S: 69259 Wilhemsfeld
  229. S: Rainweg 15
  230. S: Germany
  231. N: Fred Baumgarten
  232. E: dc6iq@insl1.etec.uni-karlsruhe.de
  233. E: dc6iq@adacom.org
  234. E: dc6iq@db0ais.#hes.deu.eu (packet radio)
  235. D: NET-2 & netstat(8)
  236. S: Soevener Strasse 11
  237. S: 53773 Hennef
  238. S: Germany
  239. N: Donald Becker
  240. E: becker@cesdis.gsfc.nasa.gov
  241. D: General low-level networking hacker
  242. D: Most of the ethercard drivers
  243. D: Original author of the NFS server
  244. S: USRA Center of Excellence in Space Data and Information Sciences
  245. S: Code 930.5, Goddard Space Flight Center
  246. S: Greenbelt, Maryland 20771
  247. S: USA
  248. N: Adam Belay
  249. E: ambx1@neo.rr.com
  250. D: Linux Plug and Play Support
  251. S: USA
  252. N: Daniele Bellucci
  253. E: bellucda@tiscali.it
  254. D: Various Janitor work.
  255. W: http://web.tiscali.it/bellucda
  256. S: Via Delle Palme, 9
  257. S: Terni 05100
  258. S: Italy
  259. N: Krzysztof Benedyczak
  260. E: golbi@mat.uni.torun.pl
  261. W: http://www.mat.uni.torun.pl/~golbi
  262. D: POSIX message queues fs (with M. Wronski)
  263. S: ul. Podmiejska 52
  264. S: Radunica
  265. S: 83-000 Pruszcz Gdanski
  266. S: Poland
  267. N: Randolph Bentson
  268. E: bentson@grieg.seaslug.org
  269. W: http://www.aa.net/~bentson/
  270. P: 1024/39ED5729 5C A8 7A F4 B2 7A D1 3E B5 3B 81 CF 47 30 11 71
  271. D: Author of driver for Cyclom-Y and Cyclades-Z async mux
  272. S: 2322 37th Ave SW
  273. S: Seattle, Washington 98126-2010
  274. S: USA
  275. N: Stephen R. van den Berg (AKA BuGless)
  276. E: berg@pool.informatik.rwth-aachen.de
  277. D: General kernel, gcc, and libc hacker
  278. D: Specialisation: tweaking, ensuring portability, tweaking, cleaning,
  279. D: tweaking and occasionally debugging :-)
  280. S: Bouwensstraat 22
  281. S: 6369 BG Simpelveld
  282. S: The Netherlands
  283. N: Peter Berger
  284. E: pberger@brimson.com
  285. W: http://www.brimson.com
  286. D: Author/maintainer of Digi AccelePort USB driver
  287. S: 1549 Hiironen Rd.
  288. S: Brimson, MN 55602
  289. S: USA
  290. N: Hennus Bergman
  291. P: 1024/77D50909 76 99 FD 31 91 E1 96 1C 90 BB 22 80 62 F6 BD 63
  292. D: Author and maintainer of the QIC-02 tape driver
  293. S: The Netherlands
  294. N: Tomas Berndtsson
  295. E: tomas@nocrew.org
  296. W: http://tomas.nocrew.org/
  297. D: dsp56k device driver
  298. N: Ross Biro
  299. E: ross.biro@gmail.com
  300. D: Original author of the Linux networking code
  301. N: Anton Blanchard
  302. E: anton@samba.org
  303. W: http://samba.org/~anton/
  304. P: 1024/8462A731 4C 55 86 34 44 59 A7 99 2B 97 88 4A 88 9A 0D 97
  305. D: sun4 port, Sparc hacker
  306. N: Hugh Blemings
  307. E: hugh@misc.nu
  308. W: http://misc.nu/hugh/
  309. D: Author and maintainer of the Keyspan USB to Serial drivers
  310. S: Po Box 234
  311. S: Belconnen ACT 2616
  312. S: Australia
  313. N: Philip Blundell
  314. E: philb@gnu.org
  315. D: Linux/ARM hacker
  316. D: Device driver hacker (eexpress, 3c505, c-qcam, ...)
  317. D: m68k port to HP9000/300
  318. D: AUN network protocols
  319. D: Co-architect of the parallel port sharing system
  320. D: IPv6 netfilter
  321. S: FutureTV Labs Ltd
  322. S: Brunswick House, 61-69 Newmarket Rd, Cambridge CB5 8EG
  323. S: United Kingdom
  324. N: Thomas Bogendörfer
  325. E: tsbogend@alpha.franken.de
  326. D: PCnet32 driver, SONIC driver, JAZZ_ESP driver
  327. D: newport abscon driver, g364 framebuffer driver
  328. D: strace for Linux/Alpha
  329. D: Linux/MIPS hacker
  330. S: Schafhofstr. 40
  331. S: 90556 Cadolzburg
  332. S: Germany
  333. N: Bill Bogstad
  334. E: bogstad@pobox.com
  335. D: wrote /proc/self hack, minor samba & dosemu patches
  336. N: Axel Boldt
  337. E: axel@uni-paderborn.de
  338. W: http://math-www.uni-paderborn.de/~axel/
  339. D: Configuration help text support
  340. D: Linux CD and Support Giveaway List
  341. N: Erik Inge Bolsø
  342. E: knan@mo.himolde.no
  343. D: Misc kernel hacks
  344. N: Andreas E. Bombe
  345. E: andreas.bombe@munich.netsurf.de
  346. W: http://home.pages.de/~andreas.bombe/
  347. P: 1024/04880A44 72E5 7031 4414 2EB6 F6B4 4CBD 1181 7032 0488 0A44
  348. D: IEEE 1394 subsystem rewrite and maintainer
  349. D: Texas Instruments PCILynx IEEE 1394 driver
  350. N: Al Borchers
  351. E: alborchers@steinerpoint.com
  352. D: Author/maintainer of Digi AccelePort USB driver
  353. D: work on usbserial and keyspan_pda drivers
  354. S: 4912 Zenith Ave. S.
  355. S: Minneapolis, MN 55410
  356. S: USA
  357. N: Marc Boucher
  358. E: marc@mbsi.ca
  359. P: CA 67 A5 1A 38 CE B6 F2 D5 83 51 03 D2 9C 30 9E CE D2 DD 65
  360. D: Netfilter core
  361. D: IP policy routing by mark
  362. D: Various fixes (mostly networking)
  363. S: Montreal, Quebec
  364. S: Canada
  365. N: Zoltán Böszörményi
  366. E: zboszor@mail.externet.hu
  367. D: MTRR emulation with Cyrix style ARR registers, Athlon MTRR support
  368. N: John Boyd
  369. E: boyd@cis.ohio-state.edu
  370. D: Co-author of wd7000 SCSI driver
  371. S: 101 Curl Drive #591
  372. S: Columbus, Ohio 43210
  373. S: USA
  374. N: Peter Braam
  375. E: braam@clusterfs.com
  376. W: http://www.clusterfs.com/
  377. D: Coda & InterMezzo filesystems
  378. S: 181 McNeil
  379. S: Canmore, AB
  380. S: Canada, T1W 2R9
  381. N: Ryan Bradetich
  382. E: rbradetich@uswest.net
  383. D: Linux/PA-RISC hacker
  384. S: 1200 Goldenrod Dr.
  385. S: Nampa, Idaho 83686
  386. N: Derrick J. Brashear
  387. E: shadow@dementia.org
  388. W: http://www.dementia.org/~shadow
  389. P: 512/71EC9367 C5 29 0F BC 83 51 B9 F0 BC 05 89 A0 4F 1F 30 05
  390. D: Author of Sparc CS4231 audio driver, random Sparc work
  391. S: 403 Gilmore Avenue
  392. S: Trafford, Pennsylvania 15085
  393. S: USA
  394. N: Dag Brattli
  395. E: dagb@cs.uit.no
  396. W: http://www.cs.uit.no/~dagb
  397. D: IrDA Subsystem
  398. S: 19. Wellington Road
  399. S: Lancaster, LA1 4DN
  400. S: UK, England
  401. N: Lars Brinkhoff
  402. E: lars@nocrew.org
  403. W: http://lars.nocrew.org/
  404. D: dsp56k device driver
  405. D: ptrace proxy in user mode kernel port
  406. S: Kopmansg 2
  407. S: 411 13 Goteborg
  408. S: Sweden
  409. N: Dominik Brodowski
  410. E: linux@brodo.de
  411. W: http://www.brodo.de/
  412. P: 1024D/725B37C6 190F 3E77 9C89 3B6D BECD 46EE 67C3 0308 725B 37C6
  413. D: parts of CPUFreq code, ACPI bugfixes
  414. S: Tuebingen, Germany
  415. N: Andries Brouwer
  416. E: aeb@cwi.nl
  417. D: random Linux hacker
  418. S: Bessemerstraat 21
  419. S: Amsterdam
  420. S: The Netherlands
  421. N: Zach Brown
  422. E: zab@zabbo.net
  423. D: maestro pci sound
  424. N: Gary Brubaker
  425. E: xavyer@ix.netcom.com
  426. D: USB Serial Empeg Empeg-car Mark I/II Driver
  427. N: Matthias Bruestle
  428. E: m@mbsks.franken.de
  429. D: REINER SCT cyberJack pinpad/e-com USB chipcard reader driver
  430. S: Germany
  431. N: Adrian Bunk
  432. E: bunk@stusta.de
  433. P: 1024D/4F12B400 B29C E71E FE19 6755 5C8A 84D4 99FC EA98 4F12 B400
  434. D: misc kernel hacking and testing
  435. S: Grasmeierstrasse 11
  436. S: 80805 Muenchen
  437. S: Germany
  438. N: Ray Burr
  439. E: ryb@nightmare.com
  440. D: Original author of Amiga FFS filesystem
  441. S: Orlando, Florida
  442. S: USA
  443. N: Lennert Buytenhek
  444. E: buytenh@gnu.org
  445. D: Rewrite of the ethernet bridging code
  446. S: Ravenhorst 58B
  447. S: 2317 AK Leiden
  448. S: The Netherlands
  449. N: Michael Callahan
  450. E: callahan@maths.ox.ac.uk
  451. D: PPP for Linux
  452. S: The Mathematical Institute
  453. S: 25-29 St Giles
  454. S: Oxford
  455. S: United Kingdom
  456. N: Luiz Fernando N. Capitulino
  457. E: lcapitulino@terra.com.br
  458. E: lcapitulino@prefeitura.sp.gov.br
  459. W: http://www.telecentros.sp.gov.br
  460. D: Little fixes and a lot of janitorial work
  461. S: E-GOV Telecentros SP
  462. S: Brazil
  463. N: Remy Card
  464. E: Remy.Card@masi.ibp.fr
  465. E: Remy.Card@linux.org
  466. D: Extended file system [defunct] designer and developer
  467. D: Second extended file system designer and developer
  468. S: Institut Blaise Pascal
  469. S: 4 Place Jussieu
  470. S: 75252 Paris Cedex 05
  471. S: France
  472. N: Ulf Carlsson
  473. D: SGI Indy audio (HAL2) drivers
  474. E: ulfc@bun.falkenberg.se
  475. N: Ed Carp
  476. E: ecarp@netcom.com
  477. D: uucp, elm, pine, pico port
  478. D: cron, at(1) developer
  479. S: 48287 Sawleaf
  480. S: Fremont, California 94539
  481. S: USA
  482. N: Florent Chabaud
  483. E: florent.chabaud@polytechnique.org
  484. D: software suspend
  485. S: SGDN/DCSSI/SDS/LTI
  486. S: 58, Bd Latour-Maubourg
  487. S: 75700 Paris 07 SP
  488. S: France
  489. N: Gordon Chaffee
  490. E: chaffee@cs.berkeley.edu
  491. W: http://bmrc.berkeley.edu/people/chaffee/
  492. D: vfat, fat32, joliet, native language support
  493. S: 3700 Warwick Road
  494. S: Fremont, California 94555
  495. S: USA
  496. N: Chih-Jen Chang
  497. E: chihjenc@scf.usc.edu
  498. E: chihjen@iis.sinica.edu.tw
  499. D: IGMP(Internet Group Management Protocol) version 2
  500. S: 3F, 65 Tajen street
  501. S: Tamsui town, Taipei county,
  502. S: Taiwan 251
  503. S: Republic of China
  504. N: Michael Elizabeth Chastain
  505. E: mec@shout.net
  506. D: Configure, Menuconfig, xconfig
  507. N: Raymond Chen
  508. E: raymondc@microsoft.com
  509. D: Author of Configure script
  510. S: 14509 NE 39th Street #1096
  511. S: Bellevue, Washington 98007
  512. S: USA
  513. N: Christopher L. Cheney
  514. E: ccheney@debian.org
  515. E: ccheney@cheney.cx
  516. W: http://www.cheney.cx
  517. P: 1024D/8E384AF2 2D31 1927 87D7 1F24 9FF9 1BC5 D106 5AB3 8E38 4AF2
  518. D: Vista Imaging usb webcam driver
  519. S: 314 Prince of Wales
  520. S: Conroe, TX 77304
  521. S: USA
  522. N: Stuart Cheshire
  523. E: cheshire@cs.stanford.edu
  524. D: Author of Starmode Radio IP (STRIP) driver
  525. D: Originator of design for new combined interrupt handlers
  526. S: William Gates Department
  527. S: Stanford University
  528. S: Stanford, California 94305
  529. S: USA
  530. N: Randolph Chung
  531. E: tausq@debian.org
  532. D: Linux/PA-RISC hacker
  533. S: Hong Kong
  534. N: Juan Jose Ciarlante
  535. W: http://juanjox.kernelnotes.org/
  536. E: jjciarla@raiz.uncu.edu.ar
  537. E: jjo@mendoza.gov.ar
  538. D: Network driver alias support
  539. D: IP masq hashing and app modules
  540. D: IP masq 2.1 features and bugs
  541. S: Las Cuevas 2385 - Bo Guemes
  542. S: Las Heras, Mendoza CP 5539
  543. S: Argentina
  544. N: Steven P. Cole
  545. E: scole@lanl.gov
  546. E: elenstev@mesatop.com
  547. D: Various build fixes and kernel documentation.
  548. S: Los Alamos, New Mexico
  549. N: Hamish Coleman
  550. E: hamish@zot.apana.org.au
  551. D: SEEQ8005 network driver
  552. S: 98 Paxton Street
  553. S: East Malvern, Victoria, 3145
  554. S: Australia
  555. N: Neil Conway
  556. E: nconway.list@ukaea.org.uk
  557. D: Assorted sched/mm titbits
  558. S: Oxfordshire, UK.
  559. N: Kees Cook
  560. E: kees@outflux.net
  561. W: http://outflux.net/
  562. P: 1024D/17063E6D 9FA3 C49C 23C9 D1BC 2E30 1975 1FFF 4BA9 1706 3E6D
  563. D: Minor updates to SCSI code for the Communications type
  564. S: (ask for current address)
  565. S: USA
  566. N: Mark Corner
  567. E: mcorner@umich.edu
  568. W: http://www.eecs.umich.edu/~mcorner/
  569. D: USB Bluetooth Driver
  570. S: University of Michigan
  571. S: Ann Arbor, MI
  572. N: Michael Cornwell
  573. E: cornwell@acm.org
  574. D: Original designer and co-author of ATA Taskfile
  575. D: Kernel module SMART utilities
  576. S: Santa Cruz, California
  577. S: USA
  578. N: Alan Cox
  579. W: http://www.linux.org.uk/diary/
  580. D: Linux Networking (0.99.10->2.0.29)
  581. D: Original Appletalk, AX.25, and IPX code
  582. D: 3c501 hacker
  583. D: Watchdog timer drivers
  584. D: Linux/SMP x86 (up to 2.0 only)
  585. D: Initial Mac68K port
  586. D: Video4Linux design, bw-qcam and PMS driver ports.
  587. D: IDE modularisation work
  588. D: Z85230 driver
  589. D: Former security contact point (please use vendor-sec@lst.de)
  590. D: ex 2.2 maintainer
  591. D: 2.1.x modular sound
  592. S: c/o Red Hat UK Ltd
  593. S: Alexandra House
  594. S: Alexandra Terrace
  595. S: Guildford, GU1 3DA
  596. S: United Kingdom
  597. N: Cristian Mihail Craciunescu
  598. W: http://www.dnt.ro/~cristi/
  599. E: cristi@dnt.ro
  600. D: Support for Xircom PGSDB9 (firmware and host driver)
  601. S: Bucharest
  602. S: Romania
  603. N: Laurence Culhane
  604. E: loz@holmes.demon.co.uk
  605. D: Wrote the initial alpha SLIP code
  606. S: 81 Hood Street
  607. S: Northampton
  608. S: NN1 3QT
  609. S: United Kingdom
  610. N: Uwe Dannowski
  611. E: Uwe.Dannowski@ira.uka.de
  612. W: http://i30www.ira.uka.de/~dannowsk/
  613. D: FORE PCA-200E driver
  614. S: University of Karlsruhe
  615. S: Germany
  616. N: Ray Dassen
  617. E: jdassen@wi.LeidenUniv.nl
  618. W: http://www.wi.leidenuniv.nl/~jdassen/
  619. P: 1024/672D05C1 DD 60 32 60 F7 90 64 80 E7 6F D4 E4 F8 C9 4A 58
  620. D: Debian GNU/Linux: www.debian.org maintainer, FAQ co-maintainer,
  621. D: packages testing, nit-picking & fixing. Enjoying BugFree (TM) kernels.
  622. S: Zuidsingel 10A
  623. S: 2312 SB Leiden
  624. S: The Netherlands
  625. N: David Davies
  626. E: davies@wanton.lkg.dec.com
  627. D: Network driver author - depca, ewrk3 and de4x5
  628. D: Wrote shared interrupt support
  629. S: Digital Equipment Corporation
  630. S: 550 King Street
  631. S: Littleton, Massachusetts 01460
  632. S: USA
  633. N: Frank Davis
  634. E: fdavis@si.rr.com
  635. E: fdavis112@juno.com
  636. D: Various kernel patches
  637. S: 8 Lakeview Terr.
  638. S: Kerhonkson, NY 12446
  639. S: USA
  640. N: Wayne Davison
  641. E: davison@borland.com
  642. D: Second extended file system co-designer
  643. N: Terry Dawson
  644. E: terry@perf.no.itg.telecom.com.au
  645. E: terry@albert.vk2ktj.ampr.org (Amateur Radio use only)
  646. D: trivial hack to add variable address length routing to Rose.
  647. D: AX25-HOWTO, HAM-HOWTO, IPX-HOWTO, NET-2-HOWTO
  648. D: ax25-utils maintainer.
  649. N: Helge Deller
  650. E: deller@gmx.de
  651. E: hdeller@redhat.de
  652. D: PA-RISC Linux hacker, LASI-, ASP-, WAX-, LCD/LED-driver
  653. S: Schimmelsrain 1
  654. S: D-69231 Rauenberg
  655. S: Germany
  656. N: Jean Delvare
  657. E: khali@linux-fr.org
  658. W: http://khali.linux-fr.org/
  659. D: Several hardware monitoring drivers
  660. S: France
  661. N: Peter Denison
  662. E: peterd@pnd-pc.demon.co.uk
  663. W: http://www.pnd-pc.demon.co.uk/promise/
  664. D: Promise DC4030VL caching HD controller drivers
  665. N: Todd J. Derr
  666. E: tjd@fore.com
  667. W: http://www.wordsmith.org/~tjd
  668. D: Random console hacks and other miscellaneous stuff
  669. S: 3000 FORE Drive
  670. S: Warrendale, Pennsylvania 15086
  671. S: USA
  672. N: Martin Devera
  673. E: devik@cdi.cz
  674. W: http://luxik.cdi.cz/~devik/qos/
  675. D: HTB qdisc and random networking hacks
  676. N: Alex deVries
  677. E: alex@onefishtwo.ca
  678. D: Various SGI parts, bits of HAL2 and Newport, PA-RISC Linux.
  679. S: 41.5 William Street
  680. S: Ottawa, Ontario
  681. S: K1N 6Z9
  682. S: CANADA
  683. N: Jeff Dike
  684. E: jdike@karaya.com
  685. W: http://user-mode-linux.sourceforge.net
  686. D: User mode kernel port
  687. S: 375 Tubbs Hill Rd
  688. S: Deering NH 03244
  689. S: USA
  690. N: Matt Domsch
  691. E: Matt_Domsch@dell.com
  692. W: http://www.dell.com/linux
  693. W: http://domsch.com/linux
  694. D: Linux/IA-64
  695. D: Dell PowerEdge server, SCSI layer, misc drivers, and other patches
  696. S: Dell Inc.
  697. S: One Dell Way
  698. S: Round Rock, TX 78682
  699. S: USA
  700. N: Ben Dooks
  701. E: ben-linux@fluff.org
  702. E: ben@simtec.co.uk
  703. W: http://www.fluff.org/ben/
  704. W: http://www.simtec.co.uk/
  705. D: Samsung S3C2410/S3C2440 support, general ARM support
  706. D: Maintaining Simtec Electronics development boards
  707. S: Simtec Electronics
  708. S: Avondale Drive
  709. S: Tarleton
  710. S: Preston
  711. S: Lancs
  712. S: PR4 6AX
  713. S: United Kingdom
  714. N: John G Dorsey
  715. E: john+@cs.cmu.edu
  716. D: ARM Linux ports to Assabet/Neponset, Spot
  717. S: Department of Electrical and Computer Engineering
  718. S: Carnegie Mellon University
  719. S: Pittsburgh, PA 15213
  720. S: USA
  721. N: Eddie C. Dost
  722. E: ecd@skynet.be
  723. D: Linux/Sparc kernel hacker
  724. D: Linux/Sparc maintainer
  725. S: Rue de la Chapelle 51
  726. S: 4850 Moresnet
  727. S: Belgium
  728. N: Cort Dougan
  729. E: cort@fsmlabs.com
  730. W: http://www.fsmlabs.com/linuxppcbk.html
  731. D: PowerPC
  732. N: Daniel Drake
  733. E: dsd@gentoo.org
  734. D: USBAT02 CompactFlash support in usb-storage
  735. S: UK
  736. N: Oleg Drokin
  737. E: green@ccssu.crimea.ua
  738. W: http://www.ccssu.crimea.ua/~green
  739. D: Cleaning up sound drivers, SA1100 Watchdog.
  740. S: Skvoznoy per., 14a
  741. S: Evpatoria
  742. S: Crimea
  743. S: UKRAINE, 334320
  744. N: Walt Drummond
  745. E: drummond@valinux.com
  746. D: Linux/IA-64
  747. S: 1382 Bordeaux Drive
  748. S: Sunnyvale, CA 94087
  749. S: USA
  750. N: Bruno Ducrot
  751. E: ducrot@poupinou.org
  752. D: CPUFreq and ACPI bugfixes.
  753. S: Mougin, France
  754. N: Don Dugger
  755. E: n0ano@valinux.com
  756. D: Linux/IA-64
  757. S: 1209 Pearl Street, #12
  758. S: Boulder, CO 80302
  759. S: USA
  760. N: Thomas Dunbar
  761. E: tdunbar@vt.edu
  762. D: TeX & METAFONT hacking/maintenance
  763. S: Virginia Tech Computing Center
  764. S: 1700 Pratt Drive
  765. S: Blacksburg, Virginia 24061
  766. S: USA
  767. N: Randy Dunlap
  768. E: rdunlap@xenotime.net
  769. W: http://www.xenotime.net/linux/linux.html
  770. W: http://www.linux-usb.org
  771. D: Linux-USB subsystem, USB core/UHCI/printer/storage drivers
  772. D: x86 SMP, ACPI, bootflag hacking
  773. S: (ask for current address)
  774. S: USA
  775. N: Bob Dunlop
  776. E: rjd@xyzzy.clara.co.uk
  777. E: bob.dunlop@farsite.co.uk
  778. W: www.farsite.co.uk
  779. D: FarSync card device driver
  780. S: FarSite Communications Ltd
  781. S: Tempus Business Centre
  782. S: 60 Kingsclere Road
  783. S: Basingstoke RG21 6XG
  784. S: UK
  785. N: Cyrus Durgin
  786. E: cider@speakeasy.org
  787. W: http://www.speakeasy.org/~cider/
  788. D: implemented kmod
  789. N: Torsten Duwe
  790. E: Torsten.Duwe@informatik.uni-erlangen.de
  791. D: Part-time kernel hacker
  792. D: The Linux Support Team Erlangen
  793. S: Grevenbroicher Str. 17
  794. S: 47807 Krefeld
  795. S: Germany
  796. N: Tom Dyas
  797. E: tdyas@eden.rutgers.edu
  798. D: minor hacks and some sparc port stuff
  799. S: New Jersey
  800. S: USA
  801. N: Drew Eckhardt
  802. E: drew@PoohSticks.ORG
  803. D: SCSI code
  804. D: Assorted snippets elsewhere
  805. D: Boot sector "..." printing
  806. S: 2037 Walnut #6
  807. S: Boulder, Colorado 80302
  808. S: USA
  809. N: Heiko Eissfeldt
  810. E: heiko@colossus.escape.de heiko@unifix.de
  811. D: verify_area stuff, generic SCSI fixes
  812. D: SCSI Programming HOWTO
  813. D: POSIX.1 compliance testing
  814. S: Unifix Software GmbH
  815. S: Bueltenweg 27a
  816. S: D-38106 Braunschweig
  817. S: Germany
  818. N: Bjorn Ekwall
  819. E: bj0rn@blox.se
  820. W: http://www.pi.se/blox/
  821. D: Extended support for loadable modules
  822. D: D-Link pocket adapter drivers
  823. S: Brevia 1043
  824. S: S-114 79 Stockholm
  825. S: Sweden
  826. N: David Engebretsen
  827. E: engebret@us.ibm.com
  828. D: Linux port to 64-bit PowerPC architecture
  829. N: Michael Engel
  830. E: engel@unix-ag.org
  831. D: DECstation framebuffer drivers
  832. S: Germany
  833. N: Paal-Kristian Engstad
  834. E: engstad@intermetrics.com
  835. D: Kernel smbfs (to mount WfW, NT and OS/2 network drives.)
  836. S: 17101 Springdale Street #225
  837. S: Huntington Beach, California 92649
  838. S: USA
  839. N: Stephane Eranian
  840. E: eranian@hpl.hp.com
  841. D: Linux/ia64
  842. S: 1501 Page Mill Rd, MS 1U17
  843. S: Palo Alto, CA 94304
  844. S: USA
  845. N: Johannes Erdfelt
  846. E: johannes@erdfelt.com
  847. D: Linux/IA-64 bootloader and kernel goop, USB
  848. S: 6350 Stoneridge Mall Road
  849. S: Pleasanton, CA 94588
  850. S: USA
  851. N: Doug Evans
  852. E: dje@cygnus.com
  853. D: Wrote Xenix FS (part of standard kernel since 0.99.15)
  854. N: Riccardo Facchetti
  855. E: fizban@tin.it
  856. P: 1024/6E657BB5 AF 22 90 33 78 76 04 8B AF F9 97 1E B5 E2 65 30
  857. D: Audio Excel DSP 16 init driver author
  858. D: libmodem author
  859. D: Yet Another Micro Monitor port and current maintainer
  860. D: First ELF-HOWTO author
  861. D: random kernel hacker
  862. S: Via Paolo VI n.29
  863. S: 23900 - LECCO (Lc)
  864. S: Italy
  865. N: Nils Faerber
  866. E: nils@kernelconcepts.de
  867. D: i810 TCO watchdog driver author
  868. D: Mitsumi LU005 tests and fixes
  869. D: port and fixes of cs46xx sounddriver
  870. S: Dreisbachstrasse 24
  871. S: D-57250 Netphen
  872. S: Germany
  873. N: Rik Faith
  874. E: faith@acm.org
  875. D: Future Domain TMC-16x0 SCSI driver (author)
  876. D: APM driver (early port)
  877. D: DRM drivers (author of several)
  878. N: János Farkas
  879. E: chexum@shadow.banki.hu
  880. D: romfs, various (mostly networking) fixes
  881. P: 1024/F81FB2E1 41 B7 E4 E6 3E D4 A6 71 6D 9C F3 9F F2 BF DF 6E
  882. S: Madarász Viktor utca 25
  883. S: 1131 Budapest
  884. S: Hungary
  885. N: Ben Fennema
  886. E: bfennema@falcon.csc.calpoly.edu
  887. W: http://www.csc.calpoly.edu/~bfennema
  888. D: UDF filesystem
  889. S: (ask for current address)
  890. S: USA
  891. N: Jürgen Fischer
  892. E: fischer@norbit.de (=?iso-8859-1?q?J=FCrgen?= Fischer)
  893. D: Author of Adaptec AHA-152x SCSI driver
  894. S: Schulstraße 18
  895. S: 26506 Norden
  896. S: Germany
  897. N: Jeremy Fitzhardinge
  898. E: jeremy@goop.org
  899. W: http://www.goop.org/~jeremy
  900. D: author of userfs filesystem
  901. D: Improved mmap and munmap handling
  902. D: General mm minor tidyups
  903. D: autofs v4 maintainer
  904. S: 987 Alabama St
  905. S: San Francisco
  906. S: CA, 94110
  907. S: USA
  908. N: Ralf Flaxa
  909. E: rfflaxa@immd4.informatik.uni-erlangen.de
  910. D: The Linux Support Team Erlangen
  911. D: Creator of LST distribution
  912. D: Author of installation tool LISA
  913. S: Pfitznerweg 6
  914. S: 74523 Schwaebisch Hall
  915. S: Germany
  916. N: Lawrence Foard
  917. E: entropy@world.std.com
  918. D: Floppy track reading, fs code
  919. S: 217 Park Avenue, Suite 108
  920. S: Worcester, Massachusetts 01609
  921. S: USA
  922. N: Karl Fogel
  923. E: kfogel@cs.oberlin.edu
  924. D: Contributor, Linux User's Guide
  925. S: 1123 North Oak Park Avenue
  926. S: Oak Park, Illinois 60302
  927. S: USA
  928. N: Daniel J. Frasnelli
  929. E: dfrasnel@alphalinux.org
  930. W: http://www.alphalinux.org/
  931. P: 1024/3EF87611 B9 F1 44 50 D3 E8 C2 80 DA E5 55 AA 56 7C 42 DA
  932. D: DEC Alpha hacker
  933. D: Miscellaneous bug squisher
  934. N: Jim Freeman
  935. E: jfree@sovereign.org
  936. W: http://www.sovereign.org/
  937. D: Initial GPL'd Frame Relay driver
  938. D: Dynamic PPP devices
  939. D: Sundry modularizations (PPP, IPX, ...) and fixes
  940. N: Bob Frey
  941. E: bobf@advansys.com
  942. D: AdvanSys SCSI driver
  943. S: 1150 Ringwood Court
  944. S: San Jose, California 95131
  945. S: USA
  946. N: Fernando Fuganti
  947. E: fuganti@conectiva.com.br
  948. E: fuganti@netbank.com.br
  949. D: random kernel hacker, ZF MachZ Watchdog driver
  950. S: Conectiva S.A.
  951. S: R. Tocantins, 89 - Cristo Rei
  952. S: 80050-430 - Curitiba - Paraná
  953. S: Brazil
  954. N: Kumar Gala
  955. E: galak@kernel.crashing.org
  956. D: Embedded PowerPC 6xx/7xx/74xx/82xx/83xx/85xx support
  957. S: Austin, Texas 78729
  958. S: USA
  959. N: Nigel Gamble
  960. E: nigel@nrg.org
  961. D: Interrupt-driven printer driver
  962. D: Preemptible kernel
  963. S: 120 Alley Way
  964. S: Mountain View, California 94040
  965. S: USA
  966. N: Jeff Garzik
  967. E: jgarzik@pobox.com
  968. N: Jacques Gelinas
  969. E: jacques@solucorp.qc.ca
  970. D: Author of the Umsdos file system
  971. S: 1326 De Val-Brillant
  972. S: Laval, Quebec
  973. S: Canada H7Y 1V9
  974. N: David Gentzel
  975. E: gentzel@telerama.lm.com
  976. D: Original BusLogic driver and original UltraStor driver
  977. S: Whitfield Software Services
  978. S: 600 North Bell Avenue, Suite 160
  979. S: Carnegie, Pennsylvania 15106-4304
  980. S: USA
  981. N: Philip Gladstone
  982. E: philip@raptor.com
  983. D: Kernel / timekeeping stuff
  984. N: Jan-Benedict Glaw
  985. E: jbglaw@lug-owl.de
  986. D: SRM environment driver (for Alpha systems)
  987. P: 1024D/8399E1BB 250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB
  988. N: Thomas Gleixner
  989. E: tglx@linutronix.de
  990. D: NAND flash hardware support, JFFS2 on NAND flash
  991. N: Richard E. Gooch
  992. E: rgooch@atnf.csiro.au
  993. D: parent process death signal to children
  994. D: prctl() syscall
  995. D: /proc/mtrr support to manipulate MTRRs on Intel P6 family
  996. D: Device FileSystem (devfs)
  997. S: CSIRO Australia Telescope National Facility
  998. S: P.O. Box 76, Epping
  999. S: New South Wales, 2121
  1000. S: Australia
  1001. N: Carlos E. Gorges
  1002. E: carlos@techlinux.com.br
  1003. D: fix smp support on cmpci driver
  1004. P: 2048G/EA3C4B19 FF31 33A6 0362 4915 B7EB E541 17D0 0379 EA3C 4B19
  1005. S: Brazil
  1006. N: Dmitry S. Gorodchanin
  1007. E: pgmdsg@ibi.com
  1008. D: RISCom/8 driver, misc kernel fixes.
  1009. S: 4 Main Street
  1010. S: Woodbridge, Connecticut 06525
  1011. S: USA
  1012. N: Paul Gortmaker
  1013. E: p_gortmaker@yahoo.com
  1014. D: Author of RTC driver & several net drivers, Ethernet & BootPrompt Howto.
  1015. D: Made support for modules, ramdisk, generic-serial, etc. optional.
  1016. D: Transformed old user space bdflush into 1st kernel thread - kflushd.
  1017. D: Many other patches, documentation files, mini kernels, utilities, ...
  1018. N: Masanori GOTO
  1019. E: gotom@debian.or.jp
  1020. D: Workbit NinjaSCSI-32Bi/UDE driver
  1021. S: Japan
  1022. N: John E. Gotts
  1023. E: jgotts@linuxsavvy.com
  1024. D: kernel hacker
  1025. S: 8124 Constitution Apt. 7
  1026. S: Sterling Heights, Michigan 48313
  1027. S: USA
  1028. N: William Greathouse
  1029. E: wgreathouse@smva.com
  1030. E: wgreathouse@myfavoritei.com
  1031. D: Current Belkin USB Serial Adapter F5U103 hacker
  1032. D: Kernel hacker, embedded systems
  1033. S: 7802 Fitzwater Road
  1034. S: Brecksville, OH 44141-1334
  1035. S: USA
  1036. N: Tristan Greaves
  1037. E: Tristan.Greaves@icl.com
  1038. E: tmg296@ecs.soton.ac.uk
  1039. W: http://www.ecs.soton.ac.uk/~tmg296
  1040. D: Miscellaneous ipv4 sysctl patches
  1041. S: 15 Little Mead
  1042. S: Denmead
  1043. S: Hampshire
  1044. S: PO7 6HS
  1045. S: United Kingdom
  1046. N: Michael A. Griffith
  1047. E: grif@cs.ucr.edu
  1048. W: http://www.cs.ucr.edu/~grif
  1049. D: Loopback speedup, qlogic SCSI hacking, VT_LOCKSWITCH
  1050. S: Department of Computer Science
  1051. S: University of California, Riverside
  1052. S: Riverside, California 92521-0304
  1053. S: USA
  1054. N: Hans Grobler
  1055. E: grobh@sun.ac.za
  1056. D: Various AX.25/ROSE/NETROM + hamradio driver patches
  1057. D: Various X.25/LABP + driver patches
  1058. D: Misc kernel fixes and updates
  1059. S: Department of Electronic Engineering
  1060. S: University of Stellenbosch
  1061. S: Stellenbosch, Western Cape
  1062. S: South Africa
  1063. N: Grant Grundler
  1064. E: grundler@parisc-linux.org
  1065. W: http://obmouse.sourceforge.net/
  1066. W: http://www.parisc-linux.org/
  1067. D: obmouse - rewrote Olivier Florent's Omnibook 600 "pop-up" mouse driver
  1068. D: PA-RISC - Interrupt/PCI HBA/IOMMU author and architect
  1069. S: Mountain View, California
  1070. S: USA
  1071. N: Grant Guenther
  1072. E: grant@torque.net
  1073. W: http://www.torque.net/linux-pp.html
  1074. D: original author of ppa driver for parallel port ZIP drive
  1075. D: original architect of the parallel-port sharing scheme
  1076. D: PARIDE subsystem: drivers for parallel port IDE & ATAPI devices
  1077. S: 44 St. Joseph Street, Suite 506
  1078. S: Toronto, Ontario, M4Y 2W4
  1079. S: Canada
  1080. N: Richard Günther
  1081. E: rguenth@tat.physik.uni-tuebingen.de
  1082. W: http://www.tat.physik.uni-tuebingen.de/~rguenth
  1083. P: 2048/2E829319 2F 83 FC 93 E9 E4 19 E2 93 7A 32 42 45 37 23 57
  1084. D: binfmt_misc
  1085. S: 72074 Tübingen
  1086. S: Germany
  1087. N: Justin Guyett
  1088. E: jguyett@andrew.cmu.edu
  1089. D: via-rhine net driver hacking
  1090. N: Danny ter Haar
  1091. E: dth@cistron.nl
  1092. D: /proc/cpuinfo, reboot on panic , kernel pre-patch tester ;)
  1093. S: Cistron
  1094. S: PO-Box 297
  1095. S: 2400 AG, Alphen aan den Rijn
  1096. S: The Netherlands
  1097. N: Enver Haase
  1098. E: ehaase@inf.fu-berlin.de
  1099. W: http://www.inf.fu-berlin.de/~ehaase
  1100. D: Driver for the Commodore A2232 serial board
  1101. N: Bruno Haible
  1102. E: haible@ma2s2.mathematik.uni-karlsruhe.de
  1103. D: SysV FS, shm swapping, memory management fixes
  1104. S: 17 rue Danton
  1105. S: F - 94270 Le Kremlin-Bicêtre
  1106. S: France
  1107. N: Greg Hankins
  1108. E: gregh@cc.gatech.edu
  1109. D: fixed keyboard driver to separate LED and locking status
  1110. S: 25360 Georgia Tech Station
  1111. S: Atlanta, Georgia 30332
  1112. S: USA
  1113. N: Brad Hards
  1114. E: bradh@frogmouth.net
  1115. D: Various USB bits, other minor patches
  1116. N: Angelo Haritsis
  1117. E: ah@computer.org
  1118. D: kernel patches (serial, watchdog)
  1119. D: xringd, vuzkern, greekXfonts
  1120. S: 77 Clarence Mews
  1121. S: London SE16 1GD
  1122. S: United Kingdom
  1123. N: Jan Harkes
  1124. E: jaharkes@cs.cmu.edu
  1125. W: http://www.coda.cs.cmu.edu/
  1126. D: Coda file system
  1127. S: Computer Science Department
  1128. S: Carnegie Mellon University
  1129. S: 5000 Forbes Avenue
  1130. S: Pittsburgh, Pennsylvania 15213
  1131. S: USA
  1132. N: Kai Harrekilde-Petersen
  1133. E: kai.harrekilde@get2net.dk
  1134. D: Original author of the ftape-HOWTO, i82078 fdc detection code.
  1135. N: Bart Hartgers
  1136. E: bart@etpmod.phys.tue.nl
  1137. D: MTRR emulation with Centaur MCRs
  1138. S: Gen Stedmanstraat 212
  1139. S: 5623 HZ Eindhoven
  1140. S: The Netherlands
  1141. N: Andrew Haylett
  1142. E: ajh@primag.co.uk
  1143. D: Selection mechanism
  1144. N: Andre Hedrick
  1145. E: andre@linux-ide.org
  1146. E: andre@linuxdiskcert.org
  1147. W: http://www.linux-ide.org/
  1148. W: http://www.linuxdiskcert.org/
  1149. D: Random SMP kernel hacker...
  1150. D: Uniform Multi-Platform E-IDE driver
  1151. D: Active-ATA-Chipset maddness..........
  1152. D: Ultra DMA 133/100/66/33 w/48-bit Addressing
  1153. D: ATA-Disconnect, ATA-TCQ
  1154. D: ATA-Smart Kernel Daemon
  1155. D: Serial ATA
  1156. D: ATA Command Block and Taskfile
  1157. S: Linux ATA Development (LAD)
  1158. S: Concord, CA
  1159. N: Jochen Hein
  1160. E: jochen@jochen.org
  1161. P: 1024/4A27F015 25 72 FB E3 85 9F DE 3B CB 0A DA DA 40 77 05 6C
  1162. P: 1024D/77D4FC9B F5C5 1C20 1DFC DEC3 3107 54A4 2332 ADFC 77D4 FC9B
  1163. D: National Language Support
  1164. D: Linux Internationalization Project
  1165. D: German Localization for Linux and GNU software
  1166. S: Kriemhildring 12a
  1167. S: 65795 Hattersheim am Main
  1168. S: Germany
  1169. N: Christoph Hellwig
  1170. E: hch@infradead.org
  1171. D: all kinds of driver, filesystem & core kernel hacking
  1172. D: freevxfs driver
  1173. D: sysvfs maintainer
  1174. D: chief codingstyle nitpicker
  1175. S: Ampferstr. 50 / 4
  1176. S: 6020 Innsbruck
  1177. S: Austria
  1178. N: Richard Henderson
  1179. E: rth@twiddle.net
  1180. E: rth@cygnus.com
  1181. D: Alpha hacker, kernel and userland
  1182. S: 1668 California St.
  1183. S: Mountain View, California 94041
  1184. S: USA
  1185. N: Benjamin Herrenschmidt
  1186. E: benh@kernel.crashing.org
  1187. D: Various parts of PPC/PPC64 & PowerMac
  1188. S: 312/107 Canberra Avenue
  1189. S: Griffith, ACT 2603
  1190. S: Australia
  1191. N: Sebastian Hetze
  1192. E: she@lunetix.de
  1193. D: German Linux Documentation,
  1194. D: Organization of German Linux Conferences
  1195. S: Danckelmannstr. 48
  1196. S: 14059 Berlin
  1197. S: Germany
  1198. N: David Hinds
  1199. E: dahinds@users.sourceforge.net
  1200. W: http://tao.stanford.edu/~dhinds
  1201. D: PCMCIA and CardBus stuff, PCMCIA-HOWTO, PCMCIA client drivers
  1202. S: 2019 W. Middlefield Rd #1
  1203. S: Mountain View, CA 94043
  1204. S: USA
  1205. N: Michael Hipp
  1206. E: hippm@informatik.uni-tuebingen.de
  1207. D: drivers for the racal ni5210 & ni6510 Ethernet-boards
  1208. S: Talstr. 1
  1209. S: D - 72072 Tuebingen
  1210. S: Germany
  1211. N: Richard Hirst
  1212. E: richard@sleepie.demon.co.uk
  1213. E: rhirst@linuxcare.com
  1214. W: http://www.sleepie.demon.co.uk/
  1215. D: linux-m68k VME support
  1216. D: PA-RISC port, scsi and network drivers
  1217. D: 53c700/53c710 driver author, 82596 driver maintainer
  1218. S: United Kingdom
  1219. N: Jauder Ho
  1220. E: jauderho@carumba.com
  1221. W: http://www.carumba.com/
  1222. D: bug toaster (A1 sauce makes all the difference)
  1223. D: Random linux hacker
  1224. N: Tim Hockin
  1225. E: thockin@hockin.org
  1226. W: http://www.hockin.org/~thockin
  1227. D: Natsemi ethernet
  1228. D: Cobalt Networks (x86) support
  1229. D: This-and-That
  1230. N: Dirk Hohndel
  1231. E: hohndel@suse.de
  1232. D: The XFree86[tm] Project
  1233. D: USB mouse maintainer
  1234. S: SuSE Rhein/Main AG
  1235. S: Mergenthalerallee 45-47
  1236. S: 65760 Eschborn
  1237. S: Germany
  1238. N: Kenji Hollis
  1239. E: kenji@bitgate.com
  1240. W: http://www.bitgate.com/
  1241. D: Berkshire PC Watchdog Driver
  1242. D: Small/Industrial Driver Project
  1243. N: Nick Holloway
  1244. E: Nick.Holloway@pyrites.org.uk
  1245. W: http://www.pyrites.org.uk/
  1246. P: 1024/36115A04 F4E1 3384 FCFD C055 15D6 BA4C AB03 FBF8 3611 5A04
  1247. D: Occasional Linux hacker...
  1248. S: (ask for current address)
  1249. S: United Kingdom
  1250. N: Ron Holt
  1251. E: ron@holt.org
  1252. E: rholt@netcom.com
  1253. W: http://www.holt.org/
  1254. W: http://www.ronholt.com/
  1255. D: Kernel development
  1256. D: Kernel LDT modifications to support Wabi and Wine
  1257. S: Holtron Internetics, Inc.
  1258. S: 998 East 900 South, Suite 26
  1259. S: Provo, Utah 84606-5607
  1260. S: USA
  1261. N: Marcel Holtmann
  1262. E: marcel@holtmann.org
  1263. W: http://www.holtmann.org
  1264. D: Maintainer of the Linux Bluetooth Subsystem
  1265. D: Author and maintainer of the various Bluetooth HCI drivers
  1266. D: Author and maintainer of the CAPI message transport protocol driver
  1267. D: Author and maintainer of the Bluetooth HID protocol driver
  1268. D: Various other Bluetooth related patches, cleanups and fixes
  1269. S: Germany
  1270. N: Rob W. W. Hooft
  1271. E: hooft@EMBL-Heidelberg.DE
  1272. D: Shared libs for graphics-tools and for the f2c compiler
  1273. D: Some kernel programming on the floppy and sound drivers in early days
  1274. D: Some other hacks to get different kinds of programs to work for linux
  1275. S: Panoramastrasse 18
  1276. S: D-69126 Heidelberg
  1277. S: Germany
  1278. N: Christopher Horn
  1279. E: chorn@warwick.net
  1280. D: Miscellaneous sysctl hacks
  1281. S: 36 Mudtown Road
  1282. S: Wantage, New Jersey 07461
  1283. S: USA
  1284. N: Harald Hoyer
  1285. E: harald.hoyer@parzelle.de
  1286. W: http://parzelle.de/
  1287. D: ip_masq_quake
  1288. D: md boot support
  1289. S: Hohe Strasse 30
  1290. S: D-70176 Stuttgart
  1291. S: Germany
  1292. N: Jan Hubicka
  1293. E: hubicka@freesoft.cz
  1294. E: hubicka@suse.cz
  1295. W: http://www.paru.cas.cz/~hubicka/
  1296. D: Random kernel tweaks and fixes.
  1297. S: Dukelskych bojovniku 1944
  1298. S: Tabor 390 03
  1299. S: Czech Republic
  1300. N: David Huggins-Daines
  1301. E: dhd@debian.org
  1302. E: dhd@eradicator.org
  1303. E: dhd@cepstral.com
  1304. D: PA-RISC port
  1305. D: Nubus subsystem
  1306. D: Generic 68k Macintosh framebuffer driver
  1307. D: STI framebuffer tweaks
  1308. D: LTPC driver tweaks
  1309. S: 110 S. 12th St., Apt. A
  1310. S: Pittsburgh, PA 15203-1250
  1311. S: USA
  1312. N: Gareth Hughes
  1313. E: gareth.hughes@acm.org
  1314. D: Pentium III FXSR, SSE support
  1315. D: Author/maintainer of most DRM drivers (especially ATI, MGA)
  1316. D: Core DRM templates, general DRM and 3D-related hacking
  1317. S: No fixed address
  1318. N: Kenn Humborg
  1319. E: kenn@wombat.ie
  1320. D: Mods to loop device to support sparse backing files
  1321. S: Ballinagard
  1322. S: Roscommon
  1323. S: Ireland
  1324. N: Michael Hunold
  1325. E: michael@mihu.de
  1326. W: http://www.mihu.de/linux/
  1327. D: Generic saa7146 video4linux-2 driver core,
  1328. D: Driver for the "Multimedia eXtension Board", "dpc7146",
  1329. D: "Hexium Orion", "Hexium Gemini"
  1330. N: Miguel de Icaza Amozurrutia
  1331. E: miguel@nuclecu.unam.mx
  1332. D: Linux/SPARC team, Midnight Commander maintainer
  1333. S: Avenida Copilco 162, 22-1003
  1334. S: Mexico, DF
  1335. S: Mexico
  1336. N: Ian Jackson
  1337. E: iwj10@cus.cam.ac.uk
  1338. E: ijackson@nyx.cs.du.edu
  1339. D: FAQ maintainer and poster of the daily postings
  1340. D: FSSTND group member
  1341. D: Debian core team member and maintainer of several Debian packages
  1342. S: 2 Lexington Close
  1343. S: Cambridge
  1344. S: CB3 0DS
  1345. S: United Kingdom
  1346. N: Andreas Jaeger
  1347. E: aj@suse.de
  1348. D: Various smaller kernel fixes
  1349. D: glibc developer
  1350. S: Gottfried-Kinkel-Str. 18
  1351. S: D 67659 Kaiserslautern
  1352. S: Germany
  1353. N: Mike Jagdis
  1354. E: jaggy@purplet.demon.co.uk
  1355. E: Mike.Jagdis@purplet.demon.co.uk
  1356. D: iBCS personalities, socket and X interfaces, x.out loader, syscalls...
  1357. D: Purple Distribution maintainer
  1358. D: UK FidoNet support
  1359. D: ISODE && PP
  1360. D: Kernel and device driver hacking
  1361. S: 280 Silverdale Road
  1362. S: Earley
  1363. S: Reading
  1364. S: RG6 2NU
  1365. S: United Kingdom
  1366. N: Jakub Jelinek
  1367. E: jakub@redhat.com
  1368. W: http://sunsite.mff.cuni.cz/~jj
  1369. P: 1024/0F7623C5 53 95 71 3C EB 73 99 97 02 49 40 47 F9 19 68 20
  1370. D: Sparc hacker, SILO, mc
  1371. D: Maintain sunsite.mff.cuni.cz
  1372. S: K osmidomkum 723
  1373. S: 160 00 Praha 6
  1374. S: Czech Republic
  1375. N: Niels Kristian Bech Jensen
  1376. E: nkbj@image.dk
  1377. W: http://www.image.dk/~nkbj
  1378. D: Miscellaneous kernel updates and fixes.
  1379. S: Dr. Holsts Vej 34, lejl. 164
  1380. S: DK-8230 Åbyhøj
  1381. S: Denmark
  1382. N: Michael K. Johnson
  1383. E: johnsonm@redhat.com
  1384. W: http://www.redhat.com/~johnsonm
  1385. P: 1024/4536A8DD 2A EC 88 08 40 64 CE D8 DD F8 12 2B 61 43 83 15
  1386. D: The Linux Documentation Project
  1387. D: Kernel Hackers' Guide
  1388. D: Procps
  1389. D: Proc filesystem
  1390. D: Maintain tsx-11.mit.edu
  1391. D: LP driver
  1392. S: 201 Howell Street, Apartment 1C
  1393. S: Chapel Hill, North Carolina 27514-4818
  1394. S: USA
  1395. N: Dave Jones
  1396. E: davej@codemonkey.org.uk
  1397. W: http://www.codemonkey.org.uk
  1398. D: x86 errata/setup maintenance.
  1399. D: AGPGART driver.
  1400. D: CPUFREQ maintenance.
  1401. D: Backport/Forwardport merge monkey.
  1402. D: Various Janitor work.
  1403. S: United Kingdom
  1404. N: Martin Josfsson
  1405. E: gandalf@wlug.westbo.se
  1406. P: 1024D/F6B6D3B1 7610 7CED 5C34 4AA6 DBA2 8BE1 5A6D AF95 F6B6 D3B1
  1407. D: netfilter: SAME target
  1408. D: netfilter: helper target
  1409. D: netfilter: various other hacks
  1410. S: Ronneby
  1411. S: Sweden
  1412. N: Ani Joshi
  1413. E: ajoshi@shell.unixbox.com
  1414. D: fbdev hacking
  1415. N: Jesper Juhl
  1416. E: jesper.juhl@gmail.com
  1417. D: Various fixes, cleanups and minor features.
  1418. S: Lemnosvej 1, 3.tv
  1419. S: 2300 Copenhagen S.
  1420. S: Denmark
  1421. N: Jozsef Kadlecsik
  1422. E: kadlec@blackhole.kfki.hu
  1423. P: 1024D/470DB964 4CB3 1A05 713E 9BF7 FAC5 5809 DD8C B7B1 470D B964
  1424. D: netfilter: TCP window tracking code
  1425. D: netfilter: raw table
  1426. D: netfilter: iprange match
  1427. D: netfilter: new logging interfaces
  1428. D: netfilter: various other hacks
  1429. S: Tata
  1430. S: Hungary
  1431. N: Bernhard Kaindl
  1432. E: bkaindl@netway.at
  1433. E: edv@bartelt.via.at
  1434. D: Author of a menu based configuration tool, kmenu, which
  1435. D: is the predecessor of 'make menuconfig' and 'make xconfig'.
  1436. D: digiboard driver update(modularisation work and 2.1.x upd)
  1437. S: Tallak 95
  1438. S: 8103 Rein
  1439. S: Austria
  1440. N: Mitsuru Kanda
  1441. E: mk@linux-ipv6.org
  1442. E: mk@isl.rdc.toshiba.co.jp
  1443. E: mk@karaba.org
  1444. W: http://www.karaba.org/~mk/
  1445. P: 1024D/2EC7E30D 4DC3 949B 5A6C F0D6 375F 4472 8888 A8E1 2EC7 E30D
  1446. D: IPsec, IPv6
  1447. D: USAGI/WIDE Project, TOSHIBA CORPORATION
  1448. S: 2-47-8, Takinogawa,
  1449. S: Kita, Tokyo 114-0023
  1450. S: Japan
  1451. N: Jan Kara
  1452. E: jack@atrey.karlin.mff.cuni.cz
  1453. E: jack@suse.cz
  1454. D: Quota fixes for 2.2 kernel
  1455. D: Quota fixes for 2.3 kernel
  1456. D: Few other fixes in filesystem area (buffer cache, isofs, loopback)
  1457. W: http://atrey.karlin.mff.cuni.cz/~jack/
  1458. S: Krosenska' 543
  1459. S: 181 00 Praha 8
  1460. S: Czech Republic
  1461. N: Jan "Yenya" Kasprzak
  1462. E: kas@fi.muni.cz
  1463. D: Author of the COSA/SRP sync serial board driver.
  1464. D: Port of the syncppp.c from the 2.0 to the 2.1 kernel.
  1465. P: 1024/D3498839 0D 99 A7 FB 20 66 05 D7 8B 35 FC DE 05 B1 8A 5E
  1466. W: http://www.fi.muni.cz/~kas/
  1467. S: c/o Faculty of Informatics, Masaryk University
  1468. S: Botanicka' 68a
  1469. S: 602 00 Brno
  1470. S: Czech Republic
  1471. N: Jakob Kemi
  1472. E: jakob.kemi@telia.com
  1473. D: V4L W9966 Webcam driver
  1474. S: Forsbyvägen 33
  1475. S: 74143 Knivsta
  1476. S: Sweden
  1477. N: Fred N. van Kempen
  1478. E: waltje@linux.com
  1479. D: NET-2
  1480. D: Drivers
  1481. D: Kernel cleanups
  1482. S: Korte Heul 95
  1483. S: 1403 ND BUSSUM
  1484. S: The Netherlands
  1485. N: Karl Keyte
  1486. E: karl@koft.com
  1487. D: Disk usage statistics and modifications to line printer driver
  1488. S: 26a Sheen Road
  1489. S: Richmond
  1490. S: Surrey
  1491. S: TW9 1AE
  1492. S: United Kingdom
  1493. N: Marko Kiiskila
  1494. E: marko@iprg.nokia.com
  1495. D: Author of ATM Lan Emulation
  1496. S: 660 Harvard Ave. #7
  1497. S: Santa Clara, CA 95051
  1498. S: USA
  1499. N: Russell King
  1500. E: rmk@arm.linux.org.uk
  1501. D: Linux/arm integrator, maintainer & hacker
  1502. D: Acornfb, Cyber2000fb author
  1503. S: Burgh Heath, Tadworth, Surrey.
  1504. S: England
  1505. N: Olaf Kirch
  1506. E: okir@monad.swb.de
  1507. D: Author of the Linux Network Administrators' Guide
  1508. S: Kattreinstr 38
  1509. S: D-64295
  1510. S: Germany
  1511. N: Andi Kleen
  1512. E: ak@muc.de
  1513. D: network hacker, syncookies
  1514. S: Schwalbenstr. 96
  1515. S: 85551 Ottobrunn
  1516. S: Germany
  1517. N: Ian Kluft
  1518. E: ikluft@thunder.sbay.org
  1519. W: http://www.kluft.com/~ikluft/
  1520. D: NET-1 beta testing & minor patches, original Smail binary packages for
  1521. D: Slackware and Debian, vote-taker for 2nd comp.os.linux reorganization
  1522. S: Post Office Box 611311
  1523. S: San Jose, California 95161-1311
  1524. S: USA
  1525. N: Thorsten Knabe
  1526. E: Thorsten Knabe <tek@rbg.informatik.tu-darmstadt.de>
  1527. E: Thorsten Knabe <tek01@hrzpub.tu-darmstadt.de>
  1528. W: http://www.student.informatik.tu-darmstadt.de/~tek
  1529. W: http://www.tu-darmstadt.de/~tek01
  1530. P: 1024/3BC8D885 8C 29 C5 0A C0 D1 D6 F4 20 D4 2D AB 29 F6 D0 60
  1531. D: AD1816 sound driver
  1532. S: Am Bergfried 10
  1533. S: 63225 Langen
  1534. S: Germany
  1535. N: Alain L. Knaff
  1536. E: Alain.Knaff@lll.lu
  1537. D: floppy driver
  1538. S: 19, rue Jean l'Aveugle
  1539. S: L-1148 Luxembourg-City
  1540. S: Luxembourg
  1541. N: Gerd Knorr
  1542. W: http://bytesex.org
  1543. E: kraxel@bytesex.org
  1544. E: kraxel@suse.de
  1545. D: video4linux, bttv, vesafb, some scsi, misc fixes
  1546. N: Harald Koenig
  1547. E: koenig@tat.physik.uni-tuebingen.de
  1548. D: XFree86 (S3), DCF77, some kernel hacks and fixes
  1549. S: Koenigsberger Str. 90
  1550. S: D-72336 Balingen
  1551. S: Germany
  1552. N: Rudolf Koenig
  1553. E: rfkoenig@immd4.informatik.uni-erlangen.de
  1554. D: The Linux Support Team Erlangen
  1555. N: Andreas Koensgen
  1556. E: ajk@iehk.rwth-aachen.de
  1557. D: 6pack driver for AX.25
  1558. N: Harald Koerfgen
  1559. E: hkoerfg@web.de
  1560. D: Linux/MIPS kernel hacks and fixes,
  1561. D: DECstation port, Sharp Mobilon port
  1562. S: D-50931 Koeln
  1563. S: Germany
  1564. N: Willy Konynenberg
  1565. E: willy@xos.nl
  1566. W: http://www.xos.nl/
  1567. D: IP transparent proxy support
  1568. S: X/OS Experts in Open Systems BV
  1569. S: Kruislaan 419
  1570. S: 1098 VA Amsterdam
  1571. S: The Netherlands
  1572. N: Gene Kozin
  1573. E: 74604.152@compuserve.com
  1574. W: http://www.sangoma.com
  1575. D: WAN Router & Sangoma WAN drivers
  1576. S: Sangoma Technologies Inc.
  1577. S: 7170 Warden Avenue, Unit 2
  1578. S: Markham, Ontario
  1579. S: L3R 8B2
  1580. S: Canada
  1581. N: Maxim Krasnyansky
  1582. E: maxk@qualcomm.com
  1583. W: http://vtun.sf.net
  1584. W: http://bluez.sf.net
  1585. D: Author of the Universal TUN/TAP driver
  1586. D: Author of the Linux Bluetooth Subsystem (BlueZ)
  1587. D: Various other kernel patches, cleanups and fixes
  1588. S: 2213 La Terrace Circle
  1589. S: San Jose, CA 95123
  1590. S: USA
  1591. N: Andreas S. Krebs
  1592. E: akrebs@altavista.net
  1593. D: CYPRESS CY82C693 chipset IDE, Digital's PC-Alpha 164SX boards
  1594. N: Greg Kroah-Hartman
  1595. E: greg@kroah.com
  1596. E: gregkh@suse.de
  1597. W: http://www.kroah.com/linux/
  1598. D: USB Serial Converter driver framework, USB Handspring Visor driver
  1599. D: ConnectTech WHITEHeat USB driver, Generic USB Serial driver
  1600. D: USB I/O Edgeport driver, USB Serial IrDA driver
  1601. D: USB Bluetooth driver, USB Skeleton driver
  1602. D: bits and pieces of USB core code.
  1603. D: PCI Hotplug core, PCI Hotplug Compaq driver modifications
  1604. D: portions of the Linux Security Module (LSM) framework
  1605. D: parts of the driver core, debugfs.
  1606. N: Russell Kroll
  1607. E: rkroll@exploits.org
  1608. W: http://www.exploits.org/
  1609. D: V4L radio cards: radio-aztech (new), others (bugfixes/features)
  1610. D: Loopback block device: dynamic sizing ("max_loop" as module)
  1611. S: Post Office Box 691886
  1612. S: San Antonio, Texas 78269-1886
  1613. S: USA
  1614. N: Denis O. Kropp
  1615. E: dok@directfb.org
  1616. D: NeoMagic framebuffer driver
  1617. S: Badensche Str. 46
  1618. S: 10715 Berlin
  1619. S: Germany
  1620. N: Andrzej M. Krzysztofowicz
  1621. E: ankry@mif.pg.gda.pl
  1622. D: Some 8-bit XT disk driver and devfs hacking
  1623. D: Aladdin 1533/1543(C) chipset IDE
  1624. D: PIIX chipset IDE
  1625. S: ul. Matemblewska 1B/10
  1626. S: 80-283 Gdansk
  1627. S: Poland
  1628. N: Gero Kuhlmann
  1629. E: gero@gkminix.han.de
  1630. D: mounting root via NFS
  1631. S: Donarweg 4
  1632. S: D-30657 Hannover
  1633. S: Germany
  1634. N: Markus Kuhn
  1635. E: mskuhn@cip.informatik.uni-erlangen.de
  1636. W: http://wwwcip.informatik.uni-erlangen.de/user/mskuhn
  1637. D: Unicode, real-time, time, standards
  1638. S: Schlehenweg 9
  1639. S: D-91080 Uttenreuth
  1640. S: Germany
  1641. N: Jaya Kumar
  1642. E: jayalk@intworks.biz
  1643. W: http://www.intworks.biz
  1644. D: Arc monochrome LCD framebuffer driver, x86 reboot fixups
  1645. D: pirq addr, CS5535 alsa audio driver
  1646. S: Gurgaon, India
  1647. S: Kuala Lumpur, Malaysia
  1648. N: Gabor Kuti
  1649. M: seasons@falcon.sch.bme.hu
  1650. M: seasons@makosteszta.sote.hu
  1651. D: Original author of software suspend
  1652. N: Jaroslav Kysela
  1653. E: perex@suse.cz
  1654. W: http://www.perex.cz
  1655. D: Original Author and Maintainer for HP 10/100 Mbit Network Adapters
  1656. D: ISA PnP
  1657. S: Sindlovy Dvory 117
  1658. S: 370 01 Ceske Budejovice
  1659. S: Czech Republic
  1660. N: Bas Laarhoven
  1661. E: sjml@xs4all.nl
  1662. D: Loadable modules and ftape driver
  1663. S: J. Obrechtstr 23
  1664. S: NL-5216 GP 's-Hertogenbosch
  1665. S: The Netherlands
  1666. N: Savio Lam
  1667. E: lam836@cs.cuhk.hk
  1668. D: Author of the dialog utility, foundation
  1669. D: for Menuconfig's lxdialog.
  1670. N: Christoph Lameter
  1671. E: christoph@lameter.com
  1672. D: Digiboard PC/Xe and PC/Xi, Digiboard EPCA
  1673. D: Early protocol filter for bridging code
  1674. D: Bug fixes
  1675. N: Paul Laufer
  1676. E: paul@laufernet.com
  1677. D: Soundblaster driver fixes, ISAPnP quirk
  1678. S: California, USA
  1679. N: Tom Lees
  1680. E: tom@lpsg.demon.co.uk
  1681. W: http://www.lpsg.demon.co.uk/
  1682. P: 1024/87D4D065 2A 66 86 9D 02 4D A6 1E B8 A2 17 9D 4F 9B 89 D6
  1683. D: Original author and current maintainer of
  1684. D: PnP code.
  1685. N: David van Leeuwen
  1686. E: david@tm.tno.nl
  1687. D: Philips/LMS cm206 cdrom driver, generic cdrom driver
  1688. S: Scheltemalaan 14
  1689. S: 3817 KS Amersfoort
  1690. S: The Netherlands
  1691. N: Volker Lendecke
  1692. E: vl@kki.org
  1693. D: Kernel smbfs (to mount WfW, NT and OS/2 network drives.)
  1694. D: NCP filesystem support (to mount NetWare volumes)
  1695. S: Von Ossietzky Str. 12
  1696. S: 37085 Goettingen
  1697. S: Germany
  1698. N: Kevin Lentin
  1699. E: kevinl@cs.monash.edu.au
  1700. D: NCR53C400/T130B SCSI extension to NCR5380 driver.
  1701. S: 18 Board Street
  1702. S: Doncaster VIC 3108
  1703. S: Australia
  1704. N: Hans Lermen
  1705. E: lermen@elserv.ffm.fgan.de
  1706. D: Author of the LOADLIN Linux loader, hacking on boot stuff
  1707. D: Coordinator of DOSEMU releases
  1708. S: Am Muehlenweg 38
  1709. S: D53424 Remagen
  1710. S: Germany
  1711. N: Colin Leroy
  1712. E: colin@colino.net
  1713. W: http://www.geekounet.org/
  1714. D: PowerMac adt746x fan driver
  1715. D: Random fixing of various drivers (macintosh, usb, sound)
  1716. S: Toulouse
  1717. S: France
  1718. N: Achim Leubner
  1719. E: achim_leubner@adaptec.com
  1720. D: GDT Disk Array Controller/Storage RAID controller driver
  1721. S: ICP vortex GmbH
  1722. S: Neckarsulm
  1723. S: Germany
  1724. N: Phil Lewis
  1725. E: beans@bucket.ualr.edu
  1726. D: Promised to send money if I would put his name in the source tree.
  1727. S: Post Office Box 371
  1728. S: North Little Rock, Arkansas 72115
  1729. S: USA
  1730. N: Stephan Linz
  1731. E: linz@mazet.de
  1732. E: Stephan.Linz@gmx.de
  1733. W: http://www.crosswinds.net/~tuxer
  1734. D: PCILynx patch to work with 1394a PHY and without local RAM
  1735. S: (ask for current address)
  1736. S: Germany
  1737. N: Christophe Lizzi
  1738. E: lizzi@cnam.fr
  1739. W: http://cedric.cnam.fr/personne/lizzi
  1740. D: FORE Systems 200E-series ATM network driver, sparc64 port of ATM
  1741. S: CNAM, Laboratoire CEDRIC
  1742. S: 292, rue St-Martin
  1743. S: 75141 Paris Cedex 03
  1744. S: France
  1745. N: Siegfried "Frieder" Loeffler (dg1sek)
  1746. E: floeff@tunix.mathematik.uni-stuttgart.de, fl@LF.net
  1747. W: http://www.mathematik.uni-stuttgart.de/~floeff
  1748. D: Busmaster driver for HP 10/100 Mbit Network Adapters
  1749. S: University of Stuttgart, Germany and
  1750. S: Ecole Nationale Superieure des Telecommunications, Paris
  1751. N: Jamie Lokier
  1752. E: jamie@imbolc.ucc.ie
  1753. D: Reboot-through-BIOS for broken 486 motherboards
  1754. D: Some parport fixes
  1755. S: 11 Goodson Walk
  1756. S: Marston
  1757. S: Oxford
  1758. S: OX3 0HX
  1759. S: United Kingdom
  1760. N: Mark Lord
  1761. E: mlord@pobox.com
  1762. D: EIDE driver, hd.c support
  1763. D: EIDE PCI and bus-master DMA support
  1764. D: Hard Disk Parameter (hdparm) utility
  1765. S: 33 Ridgefield Cr
  1766. S: Nepean, Ontario
  1767. S: Canada K2H 6S3
  1768. N: Warner Losh
  1769. E: imp@village.org
  1770. D: Linux/MIPS Deskstation support, Provided OI/OB for Linux
  1771. S: 8786 Niwot Road
  1772. S: Niwot, Colorado 80503
  1773. S: USA
  1774. N: Robert M. Love
  1775. E: rml@tech9.net
  1776. E: rml@novell.com
  1777. D: misc. kernel hacking and debugging
  1778. S: Cambridge, MA 02139
  1779. S: USA
  1780. N: Martin von Löwis
  1781. E: loewis@informatik.hu-berlin.de
  1782. D: script binary format
  1783. D: NTFS driver
  1784. N: H.J. Lu
  1785. E: hjl@gnu.ai.mit.edu
  1786. D: GCC + libraries hacker
  1787. N: Michal Ludvig
  1788. E: michal@logix.cz
  1789. E: michal.ludvig@asterisk.co.nz
  1790. W: http://www.logix.cz/michal
  1791. P: 1024D/C45B2218 1162 6471 D391 76E0 9F99 29DA 0C3A 2509 C45B 2218
  1792. D: VIA PadLock driver
  1793. D: Netfilter pkttype module
  1794. S: Asterisk Ltd.
  1795. S: Auckland
  1796. S: New Zealand
  1797. N: Tuomas J. Lukka
  1798. E: Tuomas.Lukka@Helsinki.FI
  1799. D: Original dual-monitor patches
  1800. D: Console-mouse-tracking patches
  1801. S: Puistokaari 1 E 18
  1802. S: 00200 Helsinki
  1803. S: Finland
  1804. N: Daniel J. Maas
  1805. E: dmaas@dcine.com
  1806. W: http://www.maasdigital.com
  1807. D: dv1394
  1808. N: Hamish Macdonald
  1809. E: hamishm@lucent.com
  1810. D: Linux/68k port
  1811. S: 32 Clydesdale Avenue
  1812. S: Kanata, Ontario
  1813. S: Canada K2M-2G7
  1814. N: Peter MacDonald
  1815. D: SLS distribution
  1816. D: Initial implementation of VC's, pty's and select()
  1817. N: Pavel Machek
  1818. E: pavel@ucw.cz
  1819. E: pavel@suse.cz
  1820. D: Softcursor for vga, hypertech cdrom support, vcsa bugfix, nbd
  1821. D: sun4/330 port, capabilities for elf, speedup for rm on ext2, USB,
  1822. D: work on suspend-to-ram/disk, killing duplicates from ioctl32
  1823. S: Volkova 1131
  1824. S: 198 00 Praha 9
  1825. S: Czech Republic
  1826. N: Paul Mackerras
  1827. E: paulus@samba.org
  1828. D: PPP driver
  1829. D: Linux for PowerPC
  1830. D: Linux port for PCI Power Macintosh
  1831. N: Pat Mackinlay
  1832. E: pat@it.com.au
  1833. D: 8 bit XT hard disk driver
  1834. D: Miscellaneous ST0x, TMC-8xx and other SCSI hacking
  1835. S: 25 McMillan Street
  1836. S: Victoria Park 6100
  1837. S: Australia
  1838. N: James B. MacLean
  1839. E: macleajb@ednet.ns.ca
  1840. W: http://www.ednet.ns.ca/~macleajb/dosemu.html
  1841. D: Former Coordinator of DOSEMU releases
  1842. D: Program in DOSEMU
  1843. S: PO BOX 220, HFX. CENTRAL
  1844. S: Halifax, Nova Scotia
  1845. S: Canada B3J 3C8
  1846. N: Kai Mäkisara
  1847. E: Kai.Makisara@kolumbus.fi
  1848. D: SCSI Tape Driver
  1849. N: Asit Mallick
  1850. E: asit.k.mallick@intel.com
  1851. D: Linux/IA-64
  1852. S: 2200 Mission College Blvd
  1853. S: Santa Clara, CA 95052
  1854. S: USA
  1855. N: Petko Manolov
  1856. E: petkan@users.sourceforge.net
  1857. D: USB ethernet pegasus/pegasus-II driver
  1858. D: USB ethernet rtl8150 driver
  1859. D: optimizing i[45]86 string routines
  1860. D: i386 task switching hacks
  1861. S: 482 Shadowgraph Dr.
  1862. S: San Jose, CA 95110
  1863. S: USA
  1864. N: Martin Mares
  1865. E: mj@ucw.cz
  1866. W: http://www.ucw.cz/~mj/
  1867. D: BIOS video mode handling code
  1868. D: MOXA C-218 serial board driver
  1869. D: Network autoconfiguration
  1870. D: PCI subsystem
  1871. D: Random kernel hacking
  1872. S: Kankovskeho 1241
  1873. S: 182 00 Praha 8
  1874. S: Czech Republic
  1875. N: John A. Martin
  1876. E: jam@acm.org
  1877. W: http://www.tux.org/~jam/
  1878. P: 1024/04456D53 9D A3 6C 6B 88 80 8A 61 D7 06 22 4F 95 40 CE D2
  1879. P: 1024/3B986635 5A61 7EE6 9E20 51FB 59FB 2DA5 3E18 DD55 3B98 6635
  1880. D: FSSTND contributor
  1881. D: Credit file compilator
  1882. N: Kevin E. Martin
  1883. E: martin@cs.unc.edu
  1884. D: Developed original accelerated X servers included in XFree86
  1885. D: XF86_Mach64
  1886. D: XF86_Mach32
  1887. D: XF86_Mach8
  1888. D: XF86_8514
  1889. D: cfdisk (curses based disk partitioning program)
  1890. N: John S. Marvin
  1891. E: jsm@fc.hp.com
  1892. D: PA-RISC port
  1893. S: Hewlett Packard
  1894. S: MS 42
  1895. S: 3404 E. Harmony Road
  1896. S: Fort Collins, CO 80528
  1897. N: Torben Mathiasen
  1898. E: torben.mathiasen@compaq.com
  1899. E: torben@kernel.dk
  1900. W: http://tlan.kernel.dk
  1901. D: ThunderLAN maintainer
  1902. D: ThunderLAN updates and other kernel fixes.
  1903. S: Bremensgade 29, st.th
  1904. S: 2300 Copenhagen S
  1905. S: Denmark
  1906. N: Claudio S. Matsuoka
  1907. E: claudio@conectiva.com
  1908. E: claudio@helllabs.org
  1909. W: http://helllabs.org/~claudio
  1910. D: V4L, OV511 driver hacks
  1911. S: Conectiva S.A.
  1912. S: R. Tocantins 89
  1913. S: 80050-430 Curitiba PR
  1914. S: Brazil
  1915. N: Heinz Mauelshagen
  1916. E: mge@EZ-Darmstadt.Telekom.de
  1917. D: Logical Volume Manager
  1918. S: Bartningstr. 12
  1919. S: 64289 Darmstadt
  1920. S: Germany
  1921. N: Mark W. McClelland
  1922. E: mmcclell@bigfoot.com
  1923. E: mark@alpha.dyndns.org
  1924. W: http://alpha.dyndns.org/ov511/
  1925. P: 1024D/357375CC 317C 58AC 1B39 2AB0 AB96 EB38 0B6F 731F 3573 75CC
  1926. D: OV511 driver
  1927. S: (address available on request)
  1928. S: USA
  1929. N: Ian McDonald
  1930. E: iam4@cs.waikato.ac.nz
  1931. E: imcdnzl@gmail.com
  1932. W: http://wand.net.nz/~iam4
  1933. W: http://imcdnzl.blogspot.com
  1934. D: DCCP, CCID3
  1935. S: Hamilton
  1936. S: New Zealand
  1937. N: Patrick McHardy
  1938. E: kaber@trash.net
  1939. P: 1024D/12155E80 B128 7DE6 FF0A C2B2 48BE AB4C C9D4 964E 1215 5E80
  1940. D: netfilter: endless number of bugfixes
  1941. D: netfilter: CLASSIFY target
  1942. D: netfilter: addrtype match
  1943. D: tc: HFSC scheduler
  1944. S: Freiburg
  1945. S: Germany
  1946. N: Mike McLagan
  1947. E: mike.mclagan@linux.org
  1948. W: http://www.invlogic.com/~mmclagan
  1949. D: DLCI/FRAD drivers for Sangoma SDLAs
  1950. S: Innovative Logic Corp
  1951. S: Post Office Box 1068
  1952. S: Laurel, Maryland 20732
  1953. S: USA
  1954. N: Bradley McLean
  1955. E: brad@bradpc.gaylord.com
  1956. D: Device driver hacker
  1957. D: General kernel debugger
  1958. S: 249 Nichols Avenue
  1959. S: Syracuse, New York 13206
  1960. S: USA
  1961. N: Kyle McMartin
  1962. E: kyle@parisc-linux.org
  1963. D: Linux/PARISC hacker
  1964. D: AD1889 sound driver
  1965. S: Ottawa, Canada
  1966. N: Dirk Melchers
  1967. E: dirk@merlin.nbg.sub.org
  1968. D: 8 bit XT hard disk driver for OMTI5520
  1969. S: Schloessleinsgasse 31
  1970. S: D-90453 Nuernberg
  1971. S: Germany
  1972. N: Arnaldo Carvalho de Melo
  1973. E: acme@mandriva.com
  1974. E: acme@ghostprotocols.net
  1975. W: http://oops.ghostprotocols.net:81/blog/
  1976. P: 1024D/9224DF01 D5DF E3BB E3C8 BCBB F8AD 841A B6AB 4681 9224 DF01
  1977. D: IPX, LLC, DCCP, cyc2x, wl3501_cs, net/ hacks
  1978. S: Mandriva
  1979. S: R. Tocantins, 89 - Cristo Rei
  1980. S: 80050-430 - Curitiba - Paraná
  1981. S: Brazil
  1982. N: Karsten Merker
  1983. E: merker@linuxtag.org
  1984. D: DECstation framebuffer drivers
  1985. S: Germany
  1986. N: Michael Meskes
  1987. E: meskes@debian.org
  1988. P: 1024/04B6E8F5 6C 77 33 CA CC D6 22 03 AB AB 15 A3 AE AD 39 7D
  1989. D: Kernel hacker. PostgreSQL hacker. Software watchdog daemon.
  1990. D: Maintainer of several Debian packages
  1991. S: Th.-Heuss-Str. 61
  1992. S: D-41812 Erkelenz
  1993. S: Germany
  1994. N: Nigel Metheringham
  1995. E: Nigel.Metheringham@ThePLAnet.net
  1996. P: 1024/31455639 B7 99 BD B8 00 17 BD 46 C1 15 B8 AB 87 BC 25 FA
  1997. D: IP Masquerading work and minor fixes
  1998. S: Planet Online
  1999. S: The White House, Melbourne Street, LEEDS
  2000. S: LS2 7PS, United Kingdom
  2001. N: Craig Metz
  2002. E: cmetz@inner.net
  2003. D: Some of PAS 16 mixer & PCM support, inet6-apps
  2004. N: William (Bill) Metzenthen
  2005. E: billm@suburbia.net
  2006. D: Author of the FPU emulator.
  2007. D: Minor kernel hacker for other lost causes (Hercules mono, etc).
  2008. S: 22 Parker Street
  2009. S: Ormond
  2010. S: Victoria 3163
  2011. S: Australia
  2012. N: Pauline Middelink
  2013. E: middelin@polyware.nl
  2014. D: General low-level bug fixes, /proc fixes, identd support
  2015. D: Author of IP masquerading
  2016. D: Zoran ZR36120 Video For Linux driver
  2017. S: Boterkorfhoek 34
  2018. S: 7546 JA Enschede
  2019. S: Netherlands
  2020. N: David S. Miller
  2021. E: davem@davemloft.net
  2022. D: Sparc and blue box hacker
  2023. D: Vger Linux mailing list co-maintainer
  2024. D: Linux Emacs elf/qmagic support + other libc/gcc things
  2025. D: Yee bore de yee bore! ;-)
  2026. S: 575 Harrison St. #103
  2027. S: San Francisco, CA 94105
  2028. S: USA
  2029. N: Rick Miller
  2030. E: rdmiller@execpc.com
  2031. W: http://www.execpc.com/~rdmiller/
  2032. D: Original Linux Device Registrar (Major/minor numbers)
  2033. D: au-play, bwBASIC
  2034. S: S78 W16203 Woods Road
  2035. S: Muskego, Wisconsin 53150
  2036. S: USA
  2037. N: Harald Milz
  2038. E: hm@seneca.linux.de
  2039. D: Linux Projects Map, Linux Commercial-HOWTO
  2040. D: general Linux publicity in Germany, vacation port
  2041. D: UUCP and CNEWS binary packages for LST
  2042. S: Editorial Board iX Mag
  2043. S: Helstorfer Str. 7
  2044. S: D-30625 Hannover
  2045. S: Germany
  2046. N: Corey Minyard
  2047. E: minyard@wf-rch.cirr.com
  2048. E: minyard@mvista.com
  2049. W: http://home.attbi.com/~minyard
  2050. D: Sony CDU31A CDROM Driver
  2051. D: IPMI driver
  2052. D: Various networking fixes long ago
  2053. D: Original ppc_md work
  2054. D: Shared zlib
  2055. S: 7406 Wheat Field Rd
  2056. S: Garland, Texas 75044
  2057. S: USA
  2058. N: Kazunori Miyazawa
  2059. E: miyazawa@linux-ipv6.org
  2060. E: Kazunori.Miyazawa@jp.yokogawa.com
  2061. E: kazunori@miyazawa.org
  2062. W: http://www.miyazawa.org/~kazunori/
  2063. D: IPsec, IPv6
  2064. D: USAGI/WIDE Project, Yokogawa Electric Corporation
  2065. S: 2-20-4-203, Nakacho,
  2066. S: Musashino, Tokyo 180-0006
  2067. S: Japan
  2068. N: Patrick Mochel
  2069. E: mochel@osdl.org
  2070. E: mochelp@infinity.powertie.org
  2071. D: PCI Power Management, ACPI work
  2072. S: 12725 SW Millikan Way, Suite 400
  2073. S: Beaverton, Oregon 97005
  2074. S: USA
  2075. N: Eberhard Moenkeberg
  2076. E: emoenke@gwdg.de
  2077. D: CDROM driver "sbpcd" (Matsushita/Panasonic/Soundblaster)
  2078. S: Ruhstrathoehe 2 b.
  2079. S: D-37085 Goettingen
  2080. S: Germany
  2081. N: Thomas Molina
  2082. E: tmolina@cablespeed.com
  2083. D: bug fixes, documentation, minor hackery
  2084. N: James Morris
  2085. E: jmorris@namei.org
  2086. W: http://namei.org/
  2087. D: Netfilter, Linux Security Modules (LSM), SELinux, IPSec,
  2088. D: Crypto API, general networking, miscellaneous.
  2089. S: PO Box 707
  2090. S: Spit Junction NSW 2088
  2091. S: Australia
  2092. N: David Mosberger-Tang
  2093. E: davidm@hpl.hp.com if IA-64 related, else David.Mosberger@acm.org
  2094. D: Linux/Alpha and Linux/ia64
  2095. S: 35706 Runckel Lane
  2096. S: Fremont, California 94536
  2097. S: USA
  2098. N: Sam Mosel
  2099. E: sam.mosel@computer.org
  2100. D: Wacom Intuos USB Support
  2101. S: 22 Seaview St
  2102. S: Fullarton 5063
  2103. S: South Australia
  2104. N. Wolfgang Muees
  2105. E: wolfgang@iksw-muees.de
  2106. D: Auerswald USB driver
  2107. N: Ian A. Murdock
  2108. E: imurdock@gnu.ai.mit.edu
  2109. D: Creator of Debian distribution
  2110. S: 30 White Tail Lane
  2111. S: Lafayette, Indiana 47905
  2112. S: USA
  2113. N: Scott Murray
  2114. E: scottm@somanetworks.com
  2115. E: scott@spiteful.org
  2116. D: OPL3-SA2, OPL3-SA3 sound driver
  2117. D: CompactPCI hotplug core
  2118. D: Ziatech ZT5550 and generic CompactPCI hotplug drivers
  2119. S: Toronto, Ontario
  2120. S: Canada
  2121. N: Zwane Mwaikambo
  2122. E: zwane@arm.linux.org.uk
  2123. D: Various driver hacking
  2124. D: Lowlevel x86 kernel hacking
  2125. D: General debugging
  2126. S: (ask for current address)
  2127. S: Tanzania
  2128. N: Trond Myklebust
  2129. E: trond.myklebust@fys.uio.no
  2130. D: current NFS client hacker.
  2131. S: Dagaliveien 31e
  2132. S: N-0391 Oslo
  2133. S: Norway
  2134. N: Johan Myreen
  2135. E: jem@iki.fi
  2136. D: PS/2 mouse driver writer etc.
  2137. S: Dragonvagen 1 A 13
  2138. S: FIN-00330 Helsingfors
  2139. S: Finland
  2140. N: Matija Nalis
  2141. E: mnalis@jagor.srce.hr
  2142. E: mnalis@voyager.hr
  2143. D: Maintainer of the Umsdos file system
  2144. S: Listopadska 7
  2145. S: 10000 Zagreb
  2146. S: Croatia
  2147. N: Jonathan Naylor
  2148. E: g4klx@g4klx.demon.co.uk
  2149. E: g4klx@amsat.org
  2150. W: http://zone.pspt.fi/~jsn/
  2151. D: AX.25, NET/ROM and ROSE amateur radio protocol suites
  2152. D: CCITT X.25 PLP and LAPB.
  2153. S: 24 Castle View Drive
  2154. S: Cromford
  2155. S: Matlock
  2156. S: Derbyshire DE4 3RL
  2157. S: United Kingdom
  2158. N: Ian S. Nelson
  2159. E: ian.nelson@echostar.com
  2160. D: Minor mmap and ide hacks
  2161. S: 1370 Atlantis Ave.
  2162. S: Lafayette CO, 80026
  2163. S: USA
  2164. N: Russell Nelson
  2165. E: nelson@crynwr.com
  2166. W: http://www.crynwr.com/~nelson
  2167. P: 1024/83942741 FF 68 EE 27 A0 5A AA C3 F5 DC 05 62 BD 5B 20 2F
  2168. D: Author of cs89x0, maintainer of kernel changelog through 1.3.3
  2169. D: Wrote many packet drivers, from which some Ethernet drivers are derived.
  2170. S: 521 Pleasant Valley Road
  2171. S: Potsdam, New York 13676
  2172. S: USA
  2173. N: Dave Neuer
  2174. E: dave.neuer@pobox.com
  2175. D: Helped implement support for Compaq's H31xx series iPAQs
  2176. D: Other mostly minor tweaks & bugfixes
  2177. N: Michael Neuffer
  2178. E: mike@i-Connect.Net
  2179. E: neuffer@goofy.zdv.uni-mainz.de
  2180. W: http://www.i-Connect.Net/~mike/
  2181. D: Developer and maintainer of the EATA-DMA SCSI driver
  2182. D: Co-developer EATA-PIO SCSI driver
  2183. D: /proc/scsi and assorted other snippets
  2184. S: Zum Schiersteiner Grund 2
  2185. S: 55127 Mainz
  2186. S: Germany
  2187. N: Gustavo Niemeyer
  2188. E: niemeyer@conectiva.com
  2189. W: https://moin.conectiva.com.br/GustavoNiemeyer
  2190. D: wl3501 PCMCIA wireless card initial support for wireless extensions in 2.4
  2191. S: Conectiva S.A.
  2192. S: R. Tocantins 89
  2193. S: 80050-430 Curitiba PR
  2194. S: Brazil
  2195. N: David C. Niemi
  2196. E: niemi@tux.org
  2197. W: http://www.tux.org/~niemi/
  2198. D: Assistant maintainer of Mtools, fdutils, and floppy driver
  2199. D: Administrator of Tux.Org Linux Server, http://www.tux.org
  2200. S: 2364 Old Trail Drive
  2201. S: Reston, Virginia 20191
  2202. S: USA
  2203. N: Fredrik Noring
  2204. E: noring@nocrew.org
  2205. W: http://www.lysator.liu.se/~noring/
  2206. D: dsp56k device driver
  2207. N: Michael O'Reilly
  2208. E: michael@iinet.com.au
  2209. E: oreillym@tartarus.uwa.edu.au
  2210. D: Wrote the original dynamic sized disk cache stuff. I think the only
  2211. D: part that remains is the GFP_KERNEL et al #defines. :)
  2212. S: 192 Nichsolson Road
  2213. S: Subiaco, 6008
  2214. S: Perth, Western Australia
  2215. S: Australia
  2216. N: Greg Page
  2217. E: gpage@sovereign.org
  2218. D: IPX development and support
  2219. N: David Parsons
  2220. E: orc@pell.chi.il.us
  2221. D: improved memory detection code.
  2222. N: Ivan Passos
  2223. E: ivan@cyclades.com
  2224. D: Author of the Cyclades-PC300 synchronous card driver
  2225. D: Maintainer of the Cyclom-Y/Cyclades-Z asynchronous card driver
  2226. S: Cyclades Corp
  2227. S: 41934 Christy St
  2228. S: Fremont, CA 94538
  2229. S: USA
  2230. N: Mikulas Patocka
  2231. E: mikulas@artax.karlin.mff.cuni.cz
  2232. W: http://artax.karlin.mff.cuni.cz/~mikulas/
  2233. P: 1024/BB11D2D5 A0 F1 28 4A C4 14 1E CF 92 58 7A 8F 69 BC A4 D3
  2234. D: Read/write HPFS filesystem
  2235. S: Weissova 8
  2236. S: 644 00 Brno
  2237. S: Czech Republic
  2238. N: Vojtech Pavlik
  2239. E: vojtech@suse.cz
  2240. D: Joystick driver
  2241. D: arcnet-hardware readme
  2242. D: Minor ARCnet hacking
  2243. D: USB (HID, ACM, Printer ...)
  2244. S: Ucitelska 1576
  2245. S: Prague 8
  2246. S: 182 00 Czech Republic
  2247. N: Barak A. Pearlmutter
  2248. E: bap@cs.unm.edu
  2249. W: http://www.cs.unm.edu/~bap/
  2250. P: 512/602D785D 9B A1 83 CD EE CB AD 93 20 C6 4C B7 F5 E9 60 D4
  2251. D: Author of mark-and-sweep GC integrated by Alan Cox
  2252. S: Computer Science Department
  2253. S: FEC 313
  2254. S: University of New Mexico
  2255. S: Albuquerque, New Mexico 87131
  2256. S: USA
  2257. N: Avery Pennarun
  2258. E: apenwarr@worldvisions.ca
  2259. W: http://www.worldvisions.ca/~apenwarr/
  2260. D: ARCnet driver
  2261. D: "make xconfig" improvements
  2262. D: Various minor hacking
  2263. S: RR #5, 497 Pole Line Road
  2264. S: Thunder Bay, Ontario
  2265. S: CANADA P7C 5M9
  2266. N: Yuri Per
  2267. E: yuri@pts.mipt.ru
  2268. D: Some smbfs fixes
  2269. S: Demonstratsii 8-382
  2270. S: Tula 300000
  2271. S: Russia
  2272. N: Gordon Peters
  2273. E: GordPeters@smarttech.com
  2274. D: Isochronous receive for IEEE 1394 driver (OHCI module).
  2275. D: Bugfixes for the aforementioned.
  2276. S: Calgary, Alberta
  2277. S: Canada
  2278. N: Johnnie Peters
  2279. E: jpeters@phx.mcd.mot.com
  2280. D: Motorola PowerPC changes for PReP
  2281. S: 2900 S. Diable Way
  2282. S: Tempe, Arizona 85282
  2283. S: USA
  2284. N: Kirk Petersen
  2285. E: kirk@speakeasy.org
  2286. W: http://www.speakeasy.org/~kirk/
  2287. D: implemented kmod
  2288. D: modularized BSD Unix domain sockets
  2289. N: Martin Kasper Petersen
  2290. E: mkp@mkp.net
  2291. D: PA-RISC port
  2292. D: XFS file system
  2293. D: kiobuf based block I/O work
  2294. S: 314 Frank St.
  2295. S: Ottawa, Ontario
  2296. S: Canada K2P 0X8
  2297. N: Mikael Pettersson
  2298. E: mikpe@csd.uu.se
  2299. W: http://www.csd.uu.se/~mikpe/
  2300. D: Miscellaneous fixes
  2301. N: Reed H. Petty
  2302. E: rhp@draper.net
  2303. W: http://www.draper.net
  2304. D: Loop device driver extensions
  2305. D: Encryption transfer modules (no export)
  2306. S: Post Office Box 1815
  2307. S: Harrison, Arkansas 72602-1815
  2308. S: USA
  2309. N: Kai Petzke
  2310. E: petzke@teltarif.de
  2311. W: http://www.teltarif.de/
  2312. P: 1024/B42868C1 D9 59 B9 98 BB 93 05 38 2E 3E 31 79 C3 65 5D E1
  2313. D: Driver for Laser Magnetic Storage CD-ROM
  2314. D: Some kernel bug fixes
  2315. D: Port of the database Postgres
  2316. D: Book: "Linux verstehen und anwenden" (Hanser-Verlag)
  2317. S: Triftstra=DFe 55
  2318. S: 13353 Berlin
  2319. S: Germany
  2320. N: Emanuel Pirker
  2321. E: epirker@edu.uni-klu.ac.at
  2322. D: AIC5800 IEEE 1394, RAW I/O on 1394
  2323. D: Starter of Linux1394 effort
  2324. S: ask per mail for current address
  2325. N: Nicolas Pitre
  2326. E: nico@cam.org
  2327. D: StrongARM SA1100 support integrator & hacker
  2328. D: Xscale PXA architecture
  2329. D: unified SMC 91C9x/91C11x ethernet driver (smc91x)
  2330. S: Montreal, Quebec, Canada
  2331. N: Ken Pizzini
  2332. E: ken@halcyon.com
  2333. D: CDROM driver "sonycd535" (Sony CDU-535/531)
  2334. N: Stelian Pop
  2335. E: stelian@popies.net
  2336. P: 1024D/EDBB6147 7B36 0E07 04BC 11DC A7A0 D3F7 7185 9E7A EDBB 6147
  2337. D: sonypi, meye drivers, mct_u232 usb serial hacks
  2338. S: Paris, France
  2339. N: Pete Popov
  2340. E: pete_popov@yahoo.com
  2341. D: Linux/MIPS AMD/Alchemy Port and mips hacking and debugging
  2342. S: San Jose, CA 95134
  2343. S: USA
  2344. N: Matt Porter
  2345. E: mporter@kernel.crashing.org
  2346. D: Motorola PowerPC PReP support
  2347. D: cPCI PowerPC support
  2348. D: Embedded PowerPC 4xx/6xx/7xx/74xx support
  2349. S: Chandler, Arizona 85249
  2350. S: USA
  2351. N: Frederic Potter
  2352. E: fpotter@cirpack.com
  2353. D: Some PCI kernel support
  2354. N: Rui Prior
  2355. E: rprior@inescn.pt
  2356. D: ATM device driver for NICStAR based cards
  2357. N: Stefan Probst
  2358. E: sp@caldera.de
  2359. D: The Linux Support Team Erlangen, 1993-97
  2360. S: Caldera (Deutschland) GmbH
  2361. S: Lazarettstrasse 8
  2362. S: 91054 Erlangen
  2363. S: Germany
  2364. N: Giuliano Procida
  2365. E: myxie@debian.org,gprocida@madge.com
  2366. D: Madge Ambassador driver (Collage 155 Server ATM adapter)
  2367. D: Madge Horizon driver (Collage 25 and 155 Client ATM adapters)
  2368. P: 1024/93898735 D3 9E F4 F7 6D 8D 2F 3A 38 BA 06 7C 2B 33 43 7D
  2369. S: Madge Networks
  2370. S: Framewood Road
  2371. S: Wexham SL3 6PJ
  2372. S: United Kingdom
  2373. N: Daniel Quinlan
  2374. E: quinlan@pathname.com
  2375. W: http://www.pathname.com/~quinlan/
  2376. D: FSSTND coordinator; FHS editor
  2377. D: random Linux documentation, patches, and hacks
  2378. S: 4390 Albany Drive #41A
  2379. S: San Jose, California 95129
  2380. S: USA
  2381. N: Juan Quintela
  2382. E: quintela@fi.udc.es
  2383. D: Memory Management hacking
  2384. S: LFCIA
  2385. S: Departamento de Computación
  2386. S: Universidade da Coruña
  2387. S: E-15071
  2388. S: A Coruña
  2389. S: Spain
  2390. N: Augusto Cesar Radtke
  2391. E: bishop@sekure.org
  2392. W: http://bishop.sekure.org
  2393. D: {copy,get,put}_user calls updates
  2394. D: Miscellaneous hacks
  2395. S: R. Otto Marquardt, 226 - Garcia
  2396. S: 89020-350 Blumenau - Santa Catarina
  2397. S: Brazil
  2398. N: Goutham Rao
  2399. E: goutham.rao@intel.com
  2400. D: Linux/IA-64
  2401. S: 2200 Mission College Blvd
  2402. S: Santa Clara, CA 95052
  2403. S: USA
  2404. N: Eric S. Raymond
  2405. E: esr@thyrsus.com
  2406. W: http://www.tuxedo.org/~esr/
  2407. D: terminfo master file maintainer
  2408. D: Editor: Installation HOWTO, Distributions HOWTO, XFree86 HOWTO
  2409. D: Author: fetchmail, Emacs VC mode, Emacs GUD mode
  2410. S: 6 Karen Drive
  2411. S: Malvern, Pennsylvania 19355
  2412. S: USA
  2413. N: Stefan Reinauer
  2414. E: stepan@linux.de
  2415. W: http://www.freiburg.linux.de/~stepan/
  2416. D: Modularization of some filesystems
  2417. D: /proc/sound, minor fixes
  2418. S: Schlossbergring 9
  2419. S: 79098 Freiburg
  2420. S: Germany
  2421. N: Joerg Reuter
  2422. E: jreuter@yaina.de
  2423. W: http://yaina.de/jreuter/
  2424. W: http://www.qsl.net/dl1bke/
  2425. D: Generic Z8530 driver, AX.25 DAMA slave implementation
  2426. D: Several AX.25 hacks
  2427. N: Francois-Rene Rideau
  2428. E: fare@tunes.org
  2429. W: http://www.tunes.org/~fare
  2430. D: petty kernel janitor (byteorder, ufs)
  2431. S: 6, rue Augustin Thierry
  2432. S: 75019 Paris
  2433. S: France
  2434. N: Rik van Riel
  2435. E: riel@redhat.com
  2436. W: http://www.surriel.com/
  2437. D: Linux-MM site, Documentation/sysctl/*, swap/mm readaround
  2438. D: kswapd fixes, random kernel hacker, rmap VM,
  2439. D: nl.linux.org administrator, minor scheduler additions
  2440. S: Red Hat Boston
  2441. S: 3 Lan Drive
  2442. S: Westford, MA 01886
  2443. S: USA
  2444. N: Pekka Riikonen
  2445. E: priikone@poseidon.pspt.fi
  2446. E: priikone@ssh.com
  2447. D: Random kernel hacking and bug fixes
  2448. D: International kernel patch project
  2449. S: Kasarmikatu 11 A4
  2450. S: 70110 Kuopio
  2451. S: Finland
  2452. N: Luca Risolia
  2453. E: luca.risolia@studio.unibo.it
  2454. P: 1024D/FCE635A4 88E8 F32F 7244 68BA 3958 5D40 99DA 5D2A FCE6 35A4
  2455. D: V4L driver for W996[87]CF JPEG USB Dual Mode Camera Chips
  2456. D: V4L2 driver for SN9C10x PC Camera Controllers
  2457. S: Via Liberta' 41/A
  2458. S: Osio Sotto, 24046, Bergamo
  2459. S: Italy
  2460. N: William E. Roadcap
  2461. E: roadcapw@cfw.com
  2462. W: http://www.cfw.com/~roadcapw
  2463. D: Author of menu based configuration tool, Menuconfig.
  2464. S: 1407 Broad Street
  2465. S: Waynesboro, Virginia 22980
  2466. S: USA
  2467. N: Andrew J. Robinson
  2468. E: arobinso@nyx.net
  2469. W: http://www.nyx.net/~arobinso
  2470. D: Hayes ESP serial port driver
  2471. N: Florian La Roche
  2472. E: rzsfl@rz.uni-sb.de
  2473. E: flla@stud.uni-sb.de
  2474. D: Net programs and kernel net hacker
  2475. S: Gaildorfer Str. 27
  2476. S: 7000 Stuttgart 50
  2477. S: Germany
  2478. N: Christoph Rohland
  2479. E: hans-christoph.rohland@sap.com
  2480. E: ch.rohland@gmx.net
  2481. D: shm fs, SYSV semaphores, af_unix
  2482. S: Neue Heimat Str. 8
  2483. S: D-68789 St.Leon-Rot
  2484. S: Germany
  2485. N: Thiago Berlitz Rondon
  2486. E: maluco@mileniumnet.com.br
  2487. W: http://vivaldi.linuxms.com.br/~maluco
  2488. D: Miscellaneous kernel hacker
  2489. S: R. Anhanguera, 1487 - Ipiranga
  2490. S: 79080-740 - Campo Grande - Mato Grosso do Sul
  2491. S: Brazil
  2492. N: Stephen Rothwell
  2493. E: sfr@canb.auug.org.au
  2494. W: http://www.canb.auug.org.au/~sfr
  2495. P: 1024/BD8C7805 CD A4 9D 01 10 6E 7E 3B 91 88 FA D9 C8 40 AA 02
  2496. D: Boot/setup/build work for setup > 2K
  2497. D: Author, APM driver
  2498. D: Directory notification
  2499. S: 66 Maltby Circuit
  2500. S: Wanniassa ACT 2903
  2501. S: Australia
  2502. N: Gerard Roudier
  2503. E: groudier@free.fr
  2504. D: Contributed to asynchronous read-ahead improvement
  2505. S: 21 Rue Carnot
  2506. S: 95170 Deuil La Barre
  2507. S: France
  2508. N: Sebastien Rougeaux
  2509. E: Sebastien.Rougeaux@syseng.anu.edu.au
  2510. D: IEEE 1394 OHCI module
  2511. S: Research School of Information Science and Engineering
  2512. S: The Australian National University, ACT 0200
  2513. S: Australia
  2514. N: Aristeu Sergio Rozanski Filho
  2515. E: aris@cathedrallabs.org
  2516. D: Support for EtherExpress 10 ISA (i82595) in eepro driver
  2517. D: User level driver support for input
  2518. S: R. Jose Serrato, 130 - Santa Candida
  2519. S: 82640-320 - Curitiba - Paraná
  2520. S: Brazil
  2521. N: Alessandro Rubini
  2522. E: rubini@ipvvis.unipv.it
  2523. D: the gpm mouse server and kernel support for it
  2524. N: Philipp Rumpf
  2525. E: prumpf@tux.org
  2526. D: random bugfixes
  2527. S: Drausnickstrasse 29
  2528. S: 91052 Erlangen
  2529. S: Germany
  2530. N: Paul `Rusty' Russell
  2531. E: rusty@rustcorp.com.au
  2532. W: http://ozlabs.org/~rusty
  2533. D: Ruggedly handsome.
  2534. D: netfilter, ipchains with Michael Neuling.
  2535. S: 52 Moore St
  2536. S: Turner ACT 2612
  2537. S: Australia
  2538. N: Richard Russon (FlatCap)
  2539. E: kernel@flatcap.org
  2540. W: http://www.flatcap.org
  2541. D: NTFS support
  2542. D: LDM support (Win2000/XP Logical Disk Manager/Dynamic Disks)
  2543. S: 50 Swansea Road
  2544. S: Reading
  2545. S: United Kingdom
  2546. N: Bill Ryder
  2547. E: bryder@sgi.com
  2548. D: FTDI_SIO usb/serial converter driver
  2549. W: http://reality.sgi.com/bryder_wellington/ftdi_sio
  2550. S: I/3 Walter St
  2551. S: Wellington
  2552. S: New Zealand
  2553. N: Sampo Saaristo
  2554. E: sambo@cs.tut.fi
  2555. D: Co-author of Multi-Protocol Over ATM (MPOA)
  2556. S: Tampere University of Technology / Telecom lab
  2557. S: Hermiankatu 12C
  2558. S: FIN-33720 Tampere
  2559. S: Finland
  2560. N: Thomas Sailer
  2561. E: t.sailer@alumni.ethz.ch
  2562. E: HB9JNX@HB9W.CHE.EU (packet radio)
  2563. D: Baycom driver
  2564. S: Markusstrasse 18
  2565. S: 8006 Zuerich
  2566. S: Switzerland
  2567. N: Manuel Estrada Sainz
  2568. D: Firmware loader (request_firmware)
  2569. N: Wayne Salamon
  2570. E: wsalamon@tislabs.com
  2571. E: wsalamon@nai.com
  2572. D: portions of the Linux Security Module (LSM) framework and security modules
  2573. N: Robert Sanders
  2574. E: gt8134b@prism.gatech.edu
  2575. D: Dosemu
  2576. N: Duncan Sands
  2577. E: duncan.sands@free.fr
  2578. W: http://topo.math.u-psud.fr/~sands
  2579. D: Alcatel SpeedTouch USB driver
  2580. S: 69 rue Dunois
  2581. S: 75013 Paris
  2582. S: France
  2583. N: Hannu Savolainen
  2584. E: hannu@opensound.com
  2585. D: Maintainer of the sound drivers until 2.1.x days.
  2586. D: Original compressed boot image support.
  2587. S: Valurink. 4A11
  2588. S: 03600 Karkkila
  2589. S: Finland
  2590. N: Deepak Saxena
  2591. E: dsaxena@plexity.net
  2592. D: I2O kernel layer (config, block, core, pci, net). I2O disk support for LILO
  2593. D: XScale(IOP, IXP) porting and other random ARM bits
  2594. S: Portland, OR
  2595. N: Eric Schenk
  2596. E: Eric.Schenk@dna.lth.se
  2597. D: Random kernel debugging.
  2598. D: SYSV Semaphore code rewrite.
  2599. D: Network layer debugging.
  2600. D: Dial on demand facility (diald).
  2601. S: Dag Hammerskjolds v. 3E
  2602. S: S-226 64 LUND
  2603. S: Sweden
  2604. N: Henning P. Schmiedehausen
  2605. E: hps@tanstaafl.de
  2606. D: added PCI support to the serial driver
  2607. S: Buckenhof, Germany
  2608. N: Michael Schmitz
  2609. E:
  2610. D: Macintosh IDE Driver
  2611. N: Peter De Schrijver
  2612. E: stud11@cc4.kuleuven.ac.be
  2613. D: Mitsumi CD-ROM driver patches March version
  2614. S: Molenbaan 29
  2615. S: B2240 Zandhoven
  2616. S: Belgium
  2617. N: Martin Schulze
  2618. E: joey@linux.de
  2619. W: http://home.pages.de/~joey/
  2620. D: Random Linux Hacker, Linux Promoter
  2621. D: CD-List, Books-List, Ex-FAQ
  2622. D: Linux-Support, -Mailbox, -Stammtisch
  2623. D: several improvements to system programs
  2624. S: Oldenburg
  2625. S: Germany
  2626. N: Robert Schwebel
  2627. E: robert@schwebel.de
  2628. W: http://www.schwebel.de
  2629. D: Embedded hacker and book author,
  2630. D: AMD Elan support for Linux
  2631. S: Pengutronix
  2632. S: Braunschweiger Strasse 79
  2633. S: 31134 Hildesheim
  2634. S: Germany
  2635. N: Darren Senn
  2636. E: sinster@darkwater.com
  2637. D: Whatever I notice needs doing (so far: itimers, /proc)
  2638. S: Post Office Box 64132
  2639. S: Sunnyvale, California 94088-4132
  2640. S: USA
  2641. N: Simon Shapiro
  2642. E: shimon@i-Connect.Net
  2643. W: http://www.-i-Connect.Net/~shimon
  2644. D: SCSI debugging
  2645. D: Maintainer of the Debian Kernel packages
  2646. S: 14355 SW Allen Blvd., Suite #140
  2647. S: Beaverton, Oregon 97008
  2648. S: USA
  2649. N: Mike Shaver
  2650. E: shaver@hungry.org
  2651. W: http://www.hungry.org/~shaver/
  2652. D: MIPS work, /proc/sys/net, misc net hacking
  2653. S: 149 Union St.
  2654. S: Kingston, Ontario
  2655. S: Canada K7L 2P4
  2656. N: John Shifflett
  2657. E: john@geolog.com
  2658. E: jshiffle@netcom.com
  2659. D: Always IN2000 SCSI driver
  2660. D: wd33c93 SCSI driver (linux-m68k)
  2661. S: San Jose, California
  2662. S: USA
  2663. N: Robert Siemer
  2664. E: Robert.Siemer@gmx.de
  2665. P: 2048/C99A4289 2F DC 17 2E 56 62 01 C8 3D F2 AC 09 F2 E5 DD EE
  2666. D: miroSOUND PCM20 radio RDS driver, ACI rewrite
  2667. S: Klosterweg 28 / i309
  2668. S: 76131 Karlsruhe
  2669. S: Germany
  2670. N: James Simmons
  2671. E: jsimmons@infradead.org
  2672. E: jsimmons@users.sf.net
  2673. D: Frame buffer device maintainer
  2674. D: input layer developement
  2675. D: tty/console layer
  2676. D: various mipsel devices
  2677. S: 115 Carmel Avenue
  2678. S: El Cerrito CA 94530
  2679. S: USA
  2680. N: Jaspreet Singh
  2681. E: jaspreet@sangoma.com
  2682. W: www.sangoma.com
  2683. D: WANPIPE drivers & API Support for Sangoma S508/FT1 cards
  2684. S: Sangoma Technologies Inc.,
  2685. S: 1001 Denison Street
  2686. S: Suite 101
  2687. S: Markham, Ontario L3R 2Z6
  2688. S: Canada
  2689. N: Rick Sladkey
  2690. E: jrs@world.std.com
  2691. D: utility hacker: Emacs, NFS server, mount, kmem-ps, UPS debugger, strace, GDB
  2692. D: library hacker: RPC, profil(3), realpath(3), regexp.h
  2693. D: kernel hacker: unnamed block devs, NFS client, fast select, precision timer
  2694. S: 24 Avon Place
  2695. S: Arlington, Massachusetts 02174
  2696. S: USA
  2697. N: Craig Small
  2698. E: csmall@triode.apana.org.au
  2699. E: vk2xlz@gonzo.vk2xlz.ampr.org (packet radio)
  2700. D: Gracilis PackeTwin device driver
  2701. D: RSPF daemon
  2702. S: 10 Stockalls Place
  2703. S: Minto, NSW, 2566
  2704. S: Australia
  2705. N: Stephen Smalley
  2706. E: sds@tycho.nsa.gov
  2707. D: portions of the Linux Security Module (LSM) framework and security modules
  2708. N: Chris Smith
  2709. E: csmith@convex.com
  2710. D: Read only HPFS filesystem
  2711. S: Richardson, Texas
  2712. S: USA
  2713. N: Christopher Smith
  2714. E: x@xman.org
  2715. D: Tulip net driver hacker
  2716. N: Mark Smith
  2717. E: mark.smith@comdev.cc
  2718. D: Multicast support in bonding driver
  2719. N: Miquel van Smoorenburg
  2720. E: miquels@cistron.nl
  2721. D: Kernel and net hacker. Sysvinit, minicom. doing Debian stuff.
  2722. S: Cistron Internet Services
  2723. S: PO-Box 297
  2724. S: 2400 AG, Alphen aan den Rijn
  2725. S: The Netherlands
  2726. N: Scott Snyder
  2727. E: snyder@fnald0.fnal.gov
  2728. D: ATAPI cdrom driver
  2729. S: MS 352, Fermilab
  2730. S: Post Office Box 500
  2731. S: Batavia, Illinois 60510
  2732. S: USA
  2733. N: Leo Spiekman
  2734. E: leo@netlabs.net
  2735. W: http://www.netlabs.net/hp/leo/
  2736. D: Optics Storage 8000AT cdrom driver
  2737. S: Cliffwood, New Jersey 07721
  2738. S: USA
  2739. N: Manfred Spraul
  2740. E: manfred@colorfullife.com
  2741. W: http://www.colorfullife.com/~manfred
  2742. D: Lots of tiny hacks. Larger improvments to SysV IPC msg,
  2743. D: slab, pipe, select.
  2744. S: 71701 Schwieberdingen
  2745. S: Germany
  2746. N: Andrew Stanley-Jones
  2747. E: asj@lanmedia.com
  2748. D: LanMedia Corp. Device WAN card device driver
  2749. S: #102, 686 W. Maude Ave
  2750. S: Sunyvale, CA 94086
  2751. S: USA
  2752. N: Michael Still
  2753. E: mikal@stillhq.com
  2754. W: http://www.stillhq.com
  2755. D: Various janitorial patches
  2756. D: mandocs and mandocs_install build targets
  2757. S: (Email me and ask)
  2758. S: Australia
  2759. N: Henrik Storner
  2760. E: storner@image.dk
  2761. W: http://www.image.dk/~storner/
  2762. W: http://www.sslug.dk/
  2763. D: Configure script: Invented tristate for module-configuration
  2764. D: vfat/msdos integration, kerneld docs, Linux promotion
  2765. D: Miscellaneous bug-fixes
  2766. S: Chr. Winthersvej 1 B, st.th.
  2767. S: DK-1860 Frederiksberg C
  2768. S: Denmark
  2769. N: Drew Sullivan
  2770. E: drew@ss.org
  2771. W: http://www.ss.org/
  2772. P: 1024/ACFFA969 5A 9C 42 AB E4 24 82 31 99 56 00 BF D3 2B 25 46
  2773. D: iBCS2 developer
  2774. S: 22 Irvington Cres.
  2775. S: Willowdale, Ontario
  2776. S: Canada M2N 2Z1
  2777. N: Adam Sulmicki
  2778. E: adam@cfar.umd.edu
  2779. W: http://www.eax.com
  2780. D: core networking fixes
  2781. D: patch-kernel enhancements
  2782. D: misc kernel fixes and updates
  2783. N: Adrian Sun
  2784. E: asun@cobaltnet.com
  2785. D: hfs support
  2786. D: alpha rtc port, random appletalk fixes
  2787. S: Department of Zoology, University of Washington
  2788. S: Seattle, WA 98195-1800
  2789. S: USA
  2790. N: Eugene Surovegin
  2791. E: ebs@ebshome.net
  2792. W: http://kernel.ebshome.net/
  2793. P: 1024D/AE5467F1 FF22 39F1 6728 89F6 6E6C 2365 7602 F33D AE54 67F1
  2794. D: Embedded PowerPC 4xx: EMAC, I2C, PIC and random hacks/fixes
  2795. S: Sunnyvale, California 94085
  2796. S: USA
  2797. N: Corey Thomas
  2798. E: corey@world.std.com
  2799. W: http://world.std.com/~corey/index.html
  2800. D: Raylink/WebGear wireless LAN device driver (ray_cs) author
  2801. S: 145 Howard St.
  2802. S: Northborough, MA 01532
  2803. S: USA
  2804. N: Tommy Thorn
  2805. E: Tommy.Thorn@irisa.fr
  2806. W: http://www.irisa.fr/prive/thorn/index.html
  2807. P: 512/B4AFC909 BC BF 6D B1 52 26 1E D6 E3 2F A3 24 2A 84 FE 21
  2808. D: Device driver hacker (aha1542 & plip)
  2809. S: IRISA
  2810. S: Universit=E9 de Rennes I
  2811. S: F-35042 Rennes Cedex
  2812. S: France
  2813. N: Jon Tombs
  2814. E: jon@gte.esi.us.es
  2815. W: http://www.esi.us.es/~jon
  2816. D: NFS mmap()
  2817. D: XF86_S3
  2818. D: Kernel modules
  2819. D: Parts of various other programs (xfig, open, ...)
  2820. S: C/ Federico Garcia Lorca 1 10-A
  2821. S: Sevilla 41005
  2822. S: Spain
  2823. N: Linus Torvalds
  2824. E: torvalds@osdl.org
  2825. D: Original kernel hacker
  2826. S: 12725 SW Millikan Way, Suite 400
  2827. S: Beaverton, Oregon 97005
  2828. S: USA
  2829. N: Marcelo W. Tosatti
  2830. E: marcelo.tosatti@cyclades.com
  2831. D: Miscellaneous kernel hacker
  2832. D: v2.4 kernel maintainer
  2833. D: Current pc300/cyclades maintainer
  2834. S: Cyclades Corporation
  2835. S: Av Cristovao Colombo, 462. Floresta.
  2836. S: Porto Alegre
  2837. S: Brazil
  2838. N: Stefan Traby
  2839. E: stefan@quant-x.com
  2840. D: Minor Alpha kernel hacks
  2841. S: Mitterlasznitzstr. 13
  2842. S: 8302 Nestelbach
  2843. S: Austria
  2844. N: Jeff Tranter
  2845. E: tranter@pobox.com
  2846. D: Enhancements to Joystick driver
  2847. D: Author of Sound HOWTO and CD-ROM HOWTO
  2848. D: Author of several small utilities
  2849. D: (bogomips, scope, eject, statserial)
  2850. S: 1 Laurie Court
  2851. S: Kanata, Ontario
  2852. S: Canada K2L 1S2
  2853. N: Andrew Tridgell
  2854. E: tridge@samba.org
  2855. W: http://samba.org/tridge/
  2856. D: dosemu, networking, samba
  2857. S: 3 Ballow Crescent
  2858. S: MacGregor A.C.T 2615
  2859. S: Australia
  2860. N: Winfried Trümper
  2861. E: winni@xpilot.org
  2862. W: http://www.shop.de/~winni/
  2863. D: German HOWTO, Crash-Kurs Linux (German, 100 comprehensive pages)
  2864. D: CD-Writing HOWTO, various mini-HOWTOs
  2865. D: One-week tutorials on Linux twice a year (free of charge)
  2866. D: Linux-Workshop Köln (aka LUG Cologne, Germany), Installfests
  2867. S: Tacitusstr. 6
  2868. S: D-50968 Köln
  2869. N: Tsu-Sheng Tsao
  2870. E: tsusheng@scf.usc.edu
  2871. D: IGMP(Internet Group Management Protocol) version 2
  2872. S: 2F 14 ALY 31 LN 166 SEC 1 SHIH-PEI RD
  2873. S: Taipei
  2874. S: Taiwan 112
  2875. S: Republic of China
  2876. S: 24335 Delta Drive
  2877. S: Diamond Bar, California 91765
  2878. S: USA
  2879. N: Theodore Ts'o
  2880. E: tytso@mit.edu
  2881. D: Random Linux hacker
  2882. D: Maintainer of tsx-11.mit.edu ftp archive
  2883. D: Maintainer of c.o.l.* Usenet<->mail gateway
  2884. D: Author of serial driver
  2885. D: Author of the new e2fsck
  2886. D: Author of job control and system call restart code
  2887. D: Author of ramdisk device driver
  2888. D: Author of loopback device driver
  2889. D: Author of /dev/random driver
  2890. S: MIT Room E40-343
  2891. S: 1 Amherst Street
  2892. S: Cambridge, Massachusetts 02139
  2893. S: USA
  2894. N: Simmule Turner
  2895. E: sturner@tele-tv.com
  2896. D: Added swapping to filesystem
  2897. S: 4226 Landgreen Street
  2898. S: Rockville, Maryland 20853
  2899. S: USA
  2900. N: Stephen Tweedie
  2901. E: sct@redhat.com
  2902. P: 1024/E7A417AD E2 FE A4 20 34 EC ED FC 7D 7E 67 8D E0 31 D1 69
  2903. P: 1024D/43BE7544 D2A4 8556 08E6 90E7 076C BA3F 243F 20A4 43BE 7544
  2904. D: Second extended file system developer
  2905. D: General filesystem hacker
  2906. D: kswap vm management code
  2907. S: 44 Campbell Park Crescent
  2908. S: Edinburgh EH13 0HT
  2909. S: United Kingdom
  2910. N: Thomas Uhl
  2911. E: uhl@sun1.rz.fh-heilbronn.de
  2912. D: Application programmer
  2913. D: Linux promoter
  2914. D: Author of a German book on Linux
  2915. S: Obere Heerbergstrasse 17
  2916. S: 97078 Wuerzburg
  2917. S: Germany
  2918. N: Greg Ungerer
  2919. E: gerg@snapgear.com
  2920. D: uClinux kernel hacker
  2921. D: Port uClinux to the Motorola ColdFire CPU
  2922. D: Author of Stallion multiport serial drivers
  2923. S: SnapGear Inc.
  2924. S: 825 Stanley St
  2925. S: Woolloongabba. QLD. 4102
  2926. S: Australia
  2927. N: Jeffrey A. Uphoff
  2928. E: juphoff@transmeta.com
  2929. E: jeff.uphoff@linux.org
  2930. P: 1024/9ED505C5 D7 BB CA AA 10 45 40 1B 16 19 0A C0 38 A0 3E CB
  2931. D: Linux Security/Alert mailing lists' moderator/maintainer.
  2932. D: NSM (rpc.statd) developer.
  2933. D: PAM S/Key module developer.
  2934. D: 'dip' contributor.
  2935. D: AIPS port, astronomical community support.
  2936. S: Transmeta Corporation
  2937. S: 2540 Mission College Blvd.
  2938. S: Santa Clara, CA 95054
  2939. S: USA
  2940. N: Matthias Urlichs
  2941. E: smurf@smurf.noris.de
  2942. E: smurf@debian.org
  2943. E: matthias@urlichs.de
  2944. D: Consultant, developer, kernel hacker
  2945. D: In a previous life, worked on Streams/ISDN/BSD networking code for Linux
  2946. S: Schleiermacherstrasse 12
  2947. S: 90491 Nuernberg
  2948. S: Germany
  2949. N: Geert Uytterhoeven
  2950. E: geert@linux-m68k.org
  2951. W: http://home.tvd.be/cr26864/
  2952. P: 1024/862678A6 C51D 361C 0BD1 4C90 B275 C553 6EEA 11BA 8626 78A6
  2953. D: m68k/Amiga and PPC/CHRP Longtrail coordinator
  2954. D: Frame buffer device and XF68_FBDev maintainer
  2955. D: m68k IDE maintainer
  2956. D: Amiga Zorro maintainer
  2957. D: Amiga Buddha and Catweasel chipset IDE
  2958. D: Atari Falcon chipset IDE
  2959. D: Amiga Gayle chipset IDE
  2960. D: mipsel NEC DDB Vrc-5074
  2961. S: Emiel Vlieberghlaan 2A/21
  2962. S: B-3010 Kessel-Lo
  2963. S: Belgium
  2964. N: Chris Vance
  2965. E: cvance@tislabs.com
  2966. E: cvance@nai.com
  2967. D: portions of the Linux Security Module (LSM) framework and security modules
  2968. N: Petr Vandrovec
  2969. E: vandrove@vc.cvut.cz
  2970. D: Small contributions to ncpfs
  2971. D: Matrox framebuffer driver
  2972. S: Chudenicka 8
  2973. S: 10200 Prague 10, Hostivar
  2974. S: Czech Republic
  2975. N: Thibaut Varene
  2976. E: T-Bone@parisc-linux.org
  2977. W: http://www.parisc-linux.org/
  2978. P: 1024D/B7D2F063 E67C 0D43 A75E 12A5 BB1C FA2F 1E32 C3DA B7D2 F063
  2979. D: PA-RISC port minion, PDC and GSCPS2 drivers, debuglocks and other bits
  2980. D: Some bits in an ARM port, S1D13XXX FB driver, random patches here and there
  2981. D: AD1889 sound driver
  2982. S: Paris, France
  2983. N: Heikki Vatiainen
  2984. E: hessu@cs.tut.fi
  2985. D: Co-author of Multi-Protocol Over ATM (MPOA), some LANE hacks
  2986. S: Tampere University of Technology / Telecom lab
  2987. S: Hermiankatu 12C
  2988. S: FIN-33720 Tampere
  2989. S: Finland
  2990. N: Andrew Veliath
  2991. E: andrewtv@usa.net
  2992. D: Turtle Beach MultiSound sound driver
  2993. S: USA
  2994. N: Dirk Verworner
  2995. D: Co-author of German book ``Linux-Kernel-Programmierung''
  2996. D: Co-founder of Berlin Linux User Group
  2997. N: Patrick Volkerding
  2998. E: volkerdi@ftp.cdrom.com
  2999. D: Produced the Slackware distribution, updated the SVGAlib
  3000. D: patches for ghostscript, worked on color 'ls', etc.
  3001. S: 301 15th Street S.
  3002. S: Moorhead, Minnesota 56560
  3003. S: USA
  3004. N: Jos Vos
  3005. E: jos@xos.nl
  3006. W: http://www.xos.nl/
  3007. D: Various IP firewall updates, ipfwadm
  3008. S: X/OS Experts in Open Systems BV
  3009. S: Kruislaan 419
  3010. S: 1098 VA Amsterdam
  3011. S: The Netherlands
  3012. N: Jeroen Vreeken
  3013. E: pe1rxq@amsat.org
  3014. W: http://www.chello.nl/~j.vreeken/
  3015. D: SE401 usb webcam driver
  3016. D: ZD1201 usb wireless lan driver
  3017. S: Maastrichterweg 63
  3018. S: 5554 GG Valkenswaard
  3019. S: The Netherlands
  3020. N: Peter Shaobo Wang
  3021. E: pwang@mmdcorp.com
  3022. W: http://www.mmdcorp.com/pw/linux
  3023. D: Driver for Interphase ATM (i)Chip SAR adapter card family (x575, x525, x531).
  3024. S: 1513 Brewster Dr.
  3025. S: Carrollton, TX 75010
  3026. S: USA
  3027. N: Tim Waugh
  3028. E: tim@cyberelk.net
  3029. D: Co-architect of the parallel-port sharing system
  3030. S: 17 Curling Vale
  3031. S: GUILDFORD
  3032. S: Surrey
  3033. S: GU2 7PJ
  3034. S: United Kingdom
  3035. N: Juergen Weigert
  3036. E: jnweiger@immd4.informatik.uni-erlangen.de
  3037. D: The Linux Support Team Erlangen
  3038. N: David Weinehall
  3039. E: tao@acc.umu.se
  3040. W: http://www.acc.umu.se/~tao/
  3041. W: http://www.acc.umu.se/~mcalinux/
  3042. D: Fixes for the NE/2-driver
  3043. D: Miscellaneous MCA-support
  3044. D: Cleanup of the Config-files
  3045. S: Axtorpsvagen 40:20
  3046. S: S-903 37 UMEA
  3047. S: Sweden
  3048. N: Matt Welsh
  3049. E: mdw@metalab.unc.edu
  3050. W: http://www.cs.berkeley.edu/~mdw
  3051. D: Original Linux Documentation Project coordinator
  3052. D: Author, "Running Linux" (O'Reilly)
  3053. D: Author, "Linux Installation and Getting Started" (LDP) and several HOWTOs
  3054. D: Linuxdoc-SGML formatting system (now SGML-Tools)
  3055. D: Device drivers for various high-speed network interfaces (Myrinet, ATM)
  3056. D: Keithley DAS1200 device driver
  3057. D: Original maintainer of sunsite WWW and FTP sites
  3058. D: Original moderator of c.o.l.announce and c.o.l.answers
  3059. S: Computer Science Division
  3060. S: UC Berkeley
  3061. S: Berkeley, CA 94720-1776
  3062. S: USA
  3063. N: Harald Welte
  3064. E: laforge@netfilter.org
  3065. P: 1024D/30F48BFF DBDE 6912 8831 9A53 879B 9190 5DA5 C655 30F4 8BFF
  3066. W: http://gnumonks.org/users/laforge
  3067. D: netfilter: new nat helper infrastructure
  3068. D: netfilter: ULOG, ECN, DSCP target
  3069. D: netfilter: TTL match
  3070. D: netfilter: IPv6 mangle table
  3071. D: netfilter: various other hacks
  3072. S: Berlin
  3073. S: Germany
  3074. N: Bill Wendling
  3075. E: wendling@ganymede.isdn.uiuc.edu
  3076. W: http://www.ncsa.uiuc.edu/~wendling/
  3077. D: Various random hacks. Mostly on poll/select logic.
  3078. S: 605 E. Springfield Ave.
  3079. S: Champaign, IL 61820
  3080. S: USA
  3081. N: Mike Westall
  3082. D: IBM Turboways 25 ATM Device Driver
  3083. E: westall@cs.clemson.edu
  3084. S: Department of Computer Science
  3085. S: Clemson University
  3086. S: Clemson SC 29634 USA
  3087. N: Greg Wettstein
  3088. E: greg@wind.rmcc.com
  3089. D: Filesystem valid flag for MINIX filesystem.
  3090. D: Minor kernel debugging.
  3091. D: Development and maintenance of sysklogd.
  3092. D: Monitoring of development kernels for long-term stability.
  3093. D: Early implementations of Linux in a commercial environment.
  3094. S: Dr. Greg Wettstein, Ph.D.
  3095. S: Oncology Research Division Computing Facility
  3096. S: Roger Maris Cancer Center
  3097. S: 820 4th St. N.
  3098. S: Fargo, North Dakota 58122
  3099. S: USA
  3100. N: Steven Whitehouse
  3101. E: SteveW@ACM.org
  3102. W: http://www.chygwyn.com/~steve
  3103. D: Linux DECnet project: http://www.sucs.swan.ac.uk/~rohan/DECnet/index.html
  3104. D: Minor debugging of other networking protocols.
  3105. D: Misc bug fixes and filesystem development
  3106. N: Hans-Joachim Widmaier
  3107. E: hjw@zvw.de
  3108. D: AFFS rewrite
  3109. S: Eichenweg 16
  3110. S: 73650 Winterbach
  3111. S: Germany
  3112. N: Urban Widmark
  3113. E: urban@svenskatest.se
  3114. D: via-rhine, misc net driver hacking
  3115. N: Marco van Wieringen
  3116. E: mvw@planets.elm.net
  3117. D: Author of process accounting and diskquota
  3118. S: Breeburgsingel 12
  3119. S: 2135 CN Hoofddorp
  3120. S: The Netherlands
  3121. N: Matthew Wilcox
  3122. E: matthew@wil.cx
  3123. W: ftp://ftp.uk.linux.org/pub/linux/people/willy/
  3124. D: Linux/PARISC hacker. Filesystem hacker. Random other hacking. Custom
  3125. D: PPC port hacking.
  3126. N: G\"unter Windau
  3127. E: gunter@mbfys.kun.nl
  3128. D: Some bug fixes in the polling printer driver (lp.c)
  3129. S: University of Nijmegen
  3130. S: Geert-Grooteplein Noord 21
  3131. S: 6525 EZ Nijmegen
  3132. S: The Netherlands
  3133. N: Ulrich Windl
  3134. E: Ulrich.Windl@rz.uni-regensburg.de
  3135. P: 1024/E843660D CF D7 43 A1 5A 49 14 25 7C 04 A0 6E 4C 3A AC 6D
  3136. D: Supports NTP on Linux. Added PPS code. Fixed bugs in adjtimex().
  3137. S: Alte Regensburger Str. 11a
  3138. S: 93149 Nittenau
  3139. S: Germany
  3140. N: Lars Wirzenius
  3141. E: liw@iki.fi
  3142. D: Linux System Administrator's Guide, author, former maintainer
  3143. D: comp.os.linux.announce, former moderator
  3144. D: Linux Documentation Project, co-founder
  3145. D: Original sprintf in kernel
  3146. D: Original kernel README (for version 0.97)
  3147. D: Linux News (electronic magazine, now dead), founder and former editor
  3148. D: Meta-FAQ, originator, former maintainer
  3149. D: INFO-SHEET, former maintainer
  3150. D: Author of the longest-living linux bug
  3151. N: Jonathan Woithe
  3152. E: jwoithe@physics.adelaide.edu.au
  3153. W: http://www.physics.adelaide.edu.au/~jwoithe
  3154. D: ALS-007 sound card extensions to Sound Blaster driver
  3155. S: 20 Jordan St
  3156. S: Valley View, SA 5093
  3157. S: Australia
  3158. N: Clifford Wolf
  3159. E: god@clifford.at
  3160. W: http://www.clifford.at/
  3161. D: Menuconfig/lxdialog improvement
  3162. S: Foehrengasse 16
  3163. S: A-2333 Leopoldsdorf b. Wien
  3164. S: Austria
  3165. N: Roger E. Wolff
  3166. E: R.E.Wolff@BitWizard.nl
  3167. D: Written kmalloc/kfree
  3168. D: Written Specialix IO8+ driver
  3169. D: Written Specialix SX driver
  3170. S: van Bronckhorststraat 12
  3171. S: 2612 XV Delft
  3172. S: The Netherlands
  3173. N: David Woodhouse
  3174. E: dwmw2@infradead.org
  3175. D: ARCnet stuff, Applicom board driver, SO_BINDTODEVICE,
  3176. D: some Alpha platform porting from 2.0, Memory Technology Devices,
  3177. D: Acquire watchdog timer, PC speaker driver maintenance,
  3178. D: various other stuff that annoyed me by not working.
  3179. S: c/o Red Hat Engineering
  3180. S: Rustat House
  3181. S: 60 Clifton Road
  3182. S: Cambridge. CB1 7EG
  3183. S: England
  3184. N: Chris Wright
  3185. E: chrisw@sous-sol.org
  3186. D: hacking on LSM framework and security modules.
  3187. S: Portland, OR
  3188. S: USA
  3189. N: Michal Wronski
  3190. E: Michal.Wronski@motorola.com
  3191. D: POSIX message queues fs (with K. Benedyczak)
  3192. S: Krakow
  3193. S: Poland
  3194. N: Frank Xia
  3195. E: qx@math.columbia.edu
  3196. D: Xiafs filesystem [defunct]
  3197. S: 542 West 112th Street, 5N
  3198. S: New York, New York 10025
  3199. S: USA
  3200. N: Victor Yodaiken
  3201. E: yodaiken@fsmlabs.com
  3202. D: RTLinux (RealTime Linux)
  3203. S: POB 1822
  3204. S: Socorro NM, 87801
  3205. S: USA
  3206. N: Hiroshi YOKOTA
  3207. E: yokota@netlab.is.tsukuba.ac.jp
  3208. D: Workbit NinjaSCSI-3/32Bi PCMCIA driver
  3209. D: Workbit NinjaSCSI-32Bi/UDE driver
  3210. S: Japan
  3211. N: Hideaki YOSHIFUJI
  3212. E: hideaki@yoshifuji.org
  3213. E: yoshfuji@linux-ipv6.org
  3214. W: http://www.yoshifuji.org/~hideaki/
  3215. P: 1024D/E0620EEA 9022 65EB 1ECF 3AD1 0BDF 80D8 4807 F894 E062 0EEA
  3216. D: IPv6 and other networking related stuff
  3217. D: USAGI/WIDE Project, Keio University
  3218. S: Jeunet Palace Kawasaki #1-201, 10-2, Furukawa-cho, Saiwai-ku
  3219. S: Kawasaki, Kanagawa 212-0025
  3220. S: Japan
  3221. N: Eric Youngdale
  3222. E: eric@andante.org
  3223. W: http://www.andante.org
  3224. D: General kernel hacker
  3225. D: SCSI iso9660 and ELF
  3226. S: 6389 Hawk View Lane
  3227. S: Alexandria, Virginia 22312
  3228. S: USA
  3229. N: Niibe Yutaka
  3230. E: gniibe@mri.co.jp
  3231. D: PLIP driver
  3232. D: Asynchronous socket I/O in the NET code
  3233. S: Mitsubishi Research Institute, Inc.
  3234. S: ARCO Tower 1-8-1 Shimomeguro Meguro-ku
  3235. S: Tokyo 153
  3236. S: Japan
  3237. N: James R. Van Zandt
  3238. E: jrv@vanzandt.mv.com
  3239. P: 1024/E298966D F0 37 4F FD E5 7E C5 E6 F1 A0 1E 22 6F 46 DA 0C
  3240. D: Author and maintainer of the Double Talk speech synthesizer driver
  3241. S: 27 Spencer Drive
  3242. S: Nashua, New Hampshire 03062
  3243. S: USA
  3244. N: Orest Zborowski
  3245. E: orestz@eskimo.com
  3246. D: XFree86 and kernel development
  3247. S: 1507 145th Place SE #B5
  3248. S: Bellevue, Washington 98007
  3249. S: USA
  3250. N: Richard Zidlicky
  3251. E: rz@linux-m68k.org, rdzidlic@geocities.com
  3252. W: http://www.geocities.com/rdzidlic
  3253. D: Q40 port - see arch/m68k/q40/README
  3254. D: various m68k hacks
  3255. S: Germany
  3256. N: Werner Zimmermann
  3257. E: Werner.Zimmermann@fht-esslingen.de
  3258. D: CDROM driver "aztcd" (Aztech/Okano/Orchid/Wearnes)
  3259. S: Flandernstrasse 101
  3260. S: D-73732 Esslingen
  3261. S: Germany
  3262. N: Leonard N. Zubkoff
  3263. W: http://www.dandelion.com/Linux/
  3264. D: BusLogic SCSI driver
  3265. D: Mylex DAC960 PCI RAID driver
  3266. D: Miscellaneous kernel fixes
  3267. N: Alessandro Zummo
  3268. E: azummo@ita.flashnet.it
  3269. W: http://freepage.logicom.it/azummo/
  3270. D: CMI8330 support is sb_card.c
  3271. D: ISAPnP fixes in sb_card.c
  3272. S: Italy
  3273. N: Marc Zyngier
  3274. E: maz@wild-wind.fr.eu.org
  3275. W: http://www.misterjones.org
  3276. D: MD driver
  3277. D: EISA/sysfs subsystem
  3278. S: France
  3279. # Don't add your name here, unless you really _are_ after Marc
  3280. # alphabetically. Leonard used to be very proud of being the
  3281. # last entry, and he'll get positively pissed if he can't even
  3282. # be second-to-last. (and this file really _is_ supposed to be
  3283. # in alphabetic order)