CREDITS 94 KB

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