CREDITS 90 KB

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