MAINTAINERS 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734
  1. List of maintainers and how to submit kernel changes
  2. Please try to follow the guidelines below. This will make things
  3. easier on the maintainers. Not all of these guidelines matter for every
  4. trivial patch so apply some common sense.
  5. 1. Always _test_ your changes, however small, on at least 4 or
  6. 5 people, preferably many more.
  7. 2. Try to release a few ALPHA test versions to the net. Announce
  8. them onto the kernel channel and await results. This is especially
  9. important for device drivers, because often that's the only way
  10. you will find things like the fact version 3 firmware needs
  11. a magic fix you didn't know about, or some clown changed the
  12. chips on a board and not its name. (Don't laugh! Look at the
  13. SMC etherpower for that.)
  14. 3. Make sure your changes compile correctly in multiple
  15. configurations. In particular check that changes work both as a
  16. module and built into the kernel.
  17. 4. When you are happy with a change make it generally available for
  18. testing and await feedback.
  19. 5. Make a patch available to the relevant maintainer in the list. Use
  20. 'diff -u' to make the patch easy to merge. Be prepared to get your
  21. changes sent back with seemingly silly requests about formatting
  22. and variable names. These aren't as silly as they seem. One
  23. job the maintainers (and especially Linus) do is to keep things
  24. looking the same. Sometimes this means that the clever hack in
  25. your driver to get around a problem actually needs to become a
  26. generalized kernel feature ready for next time.
  27. PLEASE check your patch with the automated style checker
  28. (scripts/checkpatch.pl) to catch trival style violations.
  29. See Documentation/CodingStyle for guidance here.
  30. PLEASE try to include any credit lines you want added with the
  31. patch. It avoids people being missed off by mistake and makes
  32. it easier to know who wants adding and who doesn't.
  33. PLEASE document known bugs. If it doesn't work for everything
  34. or does something very odd once a month document it.
  35. PLEASE remember that submissions must be made under the terms
  36. of the OSDL certificate of contribution and should include a
  37. Signed-off-by: line. The current version of this "Developer's
  38. Certificate of Origin" (DCO) is listed in the file
  39. Documentation/SubmittingPatches.
  40. 6. Make sure you have the right to send any changes you make. If you
  41. do changes at work you may find your employer owns the patch
  42. not you.
  43. 7. When sending security related changes or reports to a maintainer
  44. please Cc: security@kernel.org, especially if the maintainer
  45. does not respond.
  46. 8. Happy hacking.
  47. -----------------------------------
  48. Maintainers List (try to look for most precise areas first)
  49. Note: For the hard of thinking, this list is meant to remain in alphabetical
  50. order. If you could add yourselves to it in alphabetical order that would be
  51. so much easier [Ed]
  52. P: Person
  53. M: Mail patches to
  54. L: Mailing list that is relevant to this area
  55. W: Web-page with status/info
  56. T: SCM tree type and location. Type is one of: git, hg, quilt.
  57. F: Applicable files and/or directories
  58. S: Status, one of the following:
  59. Supported: Someone is actually paid to look after this.
  60. Maintained: Someone actually looks after it.
  61. Odd Fixes: It has a maintainer but they don't have time to do
  62. much other than throw the odd patch in. See below..
  63. Orphan: No current maintainer [but maybe you could take the
  64. role as you write your new code].
  65. Obsolete: Old code. Something tagged obsolete generally means
  66. it has been replaced by a better system and you
  67. should be using that.
  68. 3C505 NETWORK DRIVER
  69. P: Philip Blundell
  70. M: philb@gnu.org
  71. L: netdev@vger.kernel.org
  72. S: Maintained
  73. 3C59X NETWORK DRIVER
  74. P: Steffen Klassert
  75. M: klassert@mathematik.tu-chemnitz.de
  76. L: netdev@vger.kernel.org
  77. S: Maintained
  78. 3CR990 NETWORK DRIVER
  79. P: David Dillow
  80. M: dave@thedillows.org
  81. L: netdev@vger.kernel.org
  82. S: Maintained
  83. 3W-9XXX SATA-RAID CONTROLLER DRIVER
  84. P: Adam Radford
  85. M: linuxraid@amcc.com
  86. L: linux-scsi@vger.kernel.org
  87. W: http://www.amcc.com
  88. S: Supported
  89. 3W-XXXX ATA-RAID CONTROLLER DRIVER
  90. P: Adam Radford
  91. M: linuxraid@amcc.com
  92. L: linux-scsi@vger.kernel.org
  93. W: http://www.amcc.com
  94. S: Supported
  95. 53C700 AND 53C700-66 SCSI DRIVER
  96. P: James E.J. Bottomley
  97. M: James.Bottomley@HansenPartnership.com
  98. L: linux-scsi@vger.kernel.org
  99. S: Maintained
  100. 6PACK NETWORK DRIVER FOR AX.25
  101. P: Andreas Koensgen
  102. M: ajk@iehk.rwth-aachen.de
  103. L: linux-hams@vger.kernel.org
  104. S: Maintained
  105. 8169 10/100/1000 GIGABIT ETHERNET DRIVER
  106. P: Francois Romieu
  107. M: romieu@fr.zoreil.com
  108. L: netdev@vger.kernel.org
  109. S: Maintained
  110. 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
  111. L: linux-serial@vger.kernel.org
  112. W: http://serial.sourceforge.net
  113. S: Orphan
  114. 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
  115. P: Paul Gortmaker
  116. M: p_gortmaker@yahoo.com
  117. L: netdev@vger.kernel.org
  118. S: Maintained
  119. 9P FILE SYSTEM
  120. P: Eric Van Hensbergen
  121. M: ericvh@gmail.com
  122. P: Ron Minnich
  123. M: rminnich@sandia.gov
  124. P: Latchesar Ionkov
  125. M: lucho@ionkov.net
  126. L: v9fs-developer@lists.sourceforge.net
  127. W: http://swik.net/v9fs
  128. T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
  129. S: Maintained
  130. A2232 SERIAL BOARD DRIVER
  131. P: Enver Haase
  132. M: A2232@gmx.net
  133. L: linux-m68k@lists.linux-m68k.org
  134. S: Maintained
  135. AACRAID SCSI RAID DRIVER
  136. P: Adaptec OEM Raid Solutions
  137. M: aacraid@adaptec.com
  138. L: linux-scsi@vger.kernel.org
  139. W: http://www.adaptec.com/
  140. S: Supported
  141. ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
  142. P: Hans de Goede
  143. M: j.w.r.degoede@hhs.nl
  144. L: lm-sensors@lm-sensors.org
  145. S: Maintained
  146. ABIT UGURU 3 HARDWARE MONITOR DRIVER
  147. P: Alistair John Strachan
  148. M: alistair@devzero.co.uk
  149. L: lm-sensors@lm-sensors.org
  150. S: Maintained
  151. ACENIC DRIVER
  152. P: Jes Sorensen
  153. M: jes@trained-monkey.org
  154. L: linux-acenic@sunsite.dk
  155. S: Maintained
  156. ACER WMI LAPTOP EXTRAS
  157. P: Carlos Corbacho
  158. M: carlos@strangeworlds.co.uk
  159. L: aceracpi@googlegroups.com (subscribers-only)
  160. W: http://code.google.com/p/aceracpi
  161. S: Maintained
  162. ACPI
  163. P: Len Brown
  164. M: lenb@kernel.org
  165. L: linux-acpi@vger.kernel.org
  166. W: http://www.lesswatts.org/projects/acpi/
  167. T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
  168. S: Supported
  169. ACPI BATTERY DRIVERS
  170. P: Alexey Starikovskiy
  171. M: astarikovskiy@suse.de
  172. L: linux-acpi@vger.kernel.org
  173. W: http://www.lesswatts.org/projects/acpi/
  174. S: Supported
  175. ACPI EC DRIVER
  176. P: Alexey Starikovskiy
  177. M: astarikovskiy@suse.de
  178. L: linux-acpi@vger.kernel.org
  179. W: http://www.lesswatts.org/projects/acpi/
  180. S: Supported
  181. ACPI FAN DRIVER
  182. P: Zhang Rui
  183. M: rui.zhang@intel.com
  184. L: linux-acpi@vger.kernel.org
  185. W: http://www.lesswatts.org/projects/acpi/
  186. S: Supported
  187. ACPI PCI HOTPLUG DRIVER
  188. P: Kristen Carlson Accardi
  189. M: kristen.c.accardi@intel.com
  190. L: linux-pci@vger.kernel.org
  191. S: Supported
  192. ACPI THERMAL DRIVER
  193. P: Zhang Rui
  194. M: rui.zhang@intel.com
  195. L: linux-acpi@vger.kernel.org
  196. W: http://www.lesswatts.org/projects/acpi/
  197. S: Supported
  198. ACPI VIDEO DRIVER
  199. P: Zhang Rui
  200. M: rui.zhang@intel.com
  201. L: linux-acpi@vger.kernel.org
  202. W: http://www.lesswatts.org/projects/acpi/
  203. S: Supported
  204. ACPI WMI DRIVER
  205. P: Carlos Corbacho
  206. M: carlos@strangeworlds.co.uk
  207. L: linux-acpi@vger.kernel.org
  208. W: http://www.lesswatts.org/projects/acpi/
  209. S: Maintained
  210. AD1889 ALSA SOUND DRIVER
  211. P: Kyle McMartin
  212. M: kyle@mcmartin.ca
  213. P: Thibaut Varene
  214. M: T-Bone@parisc-linux.org
  215. W: http://wiki.parisc-linux.org/AD1889
  216. L: linux-parisc@vger.kernel.org
  217. S: Maintained
  218. ADM1025 HARDWARE MONITOR DRIVER
  219. P: Jean Delvare
  220. M: khali@linux-fr.org
  221. L: lm-sensors@lm-sensors.org
  222. S: Maintained
  223. ADM1029 HARDWARE MONITOR DRIVER
  224. P: Corentin Labbe
  225. M: corentin.labbe@geomatys.fr
  226. L: lm-sensors@lm-sensors.org
  227. S: Maintained
  228. ADM8211 WIRELESS DRIVER
  229. P: Michael Wu
  230. M: flamingice@sourmilk.net
  231. L: linux-wireless@vger.kernel.org
  232. W: http://linuxwireless.org/
  233. T: git kernel.org:/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
  234. S: Maintained
  235. ADT746X FAN DRIVER
  236. P: Colin Leroy
  237. M: colin@colino.net
  238. S: Maintained
  239. ADVANSYS SCSI DRIVER
  240. P: Matthew Wilcox
  241. M: matthew@wil.cx
  242. L: linux-scsi@vger.kernel.org
  243. S: Maintained
  244. AEDSP16 DRIVER
  245. P: Riccardo Facchetti
  246. M: fizban@tin.it
  247. S: Maintained
  248. AFFS FILE SYSTEM
  249. P: Roman Zippel
  250. M: zippel@linux-m68k.org
  251. S: Maintained
  252. AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
  253. P: David Howells
  254. M: dhowells@redhat.com
  255. L: linux-afs@lists.infradead.org
  256. S: Supported
  257. AGPGART DRIVER
  258. P: David Airlie
  259. M: airlied@linux.ie
  260. T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
  261. S: Maintained
  262. AHA152X SCSI DRIVER
  263. P: Juergen E. Fischer
  264. M: Juergen Fischer <fischer@norbit.de>
  265. L: linux-scsi@vger.kernel.org
  266. S: Maintained
  267. AIC7XXX / AIC79XX SCSI DRIVER
  268. P: Hannes Reinecke
  269. M: hare@suse.de
  270. L: linux-scsi@vger.kernel.org
  271. S: Maintained
  272. AIO
  273. P: Benjamin LaHaise
  274. M: bcrl@kvack.org
  275. L: linux-aio@kvack.org
  276. S: Supported
  277. ALCATEL SPEEDTOUCH USB DRIVER
  278. P: Duncan Sands
  279. M: duncan.sands@free.fr
  280. L: linux-usb@vger.kernel.org
  281. W: http://www.linux-usb.org/SpeedTouch/
  282. S: Maintained
  283. ALCHEMY AU1XX0 MMC DRIVER
  284. P: Manuel Lauss
  285. M: manuel.lauss@gmail.com
  286. S: Maintained
  287. ALI1563 I2C DRIVER
  288. P: Rudolf Marek
  289. M: r.marek@assembler.cz
  290. L: i2c@lm-sensors.org
  291. S: Maintained
  292. ALPHA PORT
  293. P: Richard Henderson
  294. M: rth@twiddle.net
  295. S: Odd Fixes for 2.4; Maintained for 2.6.
  296. P: Ivan Kokshaysky
  297. M: ink@jurassic.park.msu.ru
  298. S: Maintained for 2.4; PCI support for 2.6.
  299. AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
  300. P: Thomas Dahlmann
  301. M: thomas.dahlmann@amd.com
  302. L: linux-geode@lists.infradead.org (moderated for non-subscribers)
  303. S: Supported
  304. AMD GEODE PROCESSOR/CHIPSET SUPPORT
  305. P: Jordan Crouse
  306. L: linux-geode@lists.infradead.org (moderated for non-subscribers)
  307. W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
  308. S: Supported
  309. AMD IOMMU (AMD-VI)
  310. P: Joerg Roedel
  311. M: joerg.roedel@amd.com
  312. L: iommu@lists.linux-foundation.org
  313. T: git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
  314. S: Supported
  315. AMD MICROCODE UPDATE SUPPORT
  316. P: Andreas Herrmann
  317. M: andeas.herrmann3@amd.com
  318. L: amd64-microcode@amd64.org
  319. S: Supported
  320. AMS (Apple Motion Sensor) DRIVER
  321. P: Stelian Pop
  322. M: stelian@popies.net
  323. P: Michael Hanselmann
  324. M: linux-kernel@hansmi.ch
  325. S: Supported
  326. AMSO1100 RNIC DRIVER
  327. P: Tom Tucker
  328. M: tom@opengridcomputing.com
  329. P: Steve Wise
  330. M: swise@opengridcomputing.com
  331. L: general@lists.openfabrics.org
  332. S: Maintained
  333. AOA (Apple Onboard Audio) ALSA DRIVER
  334. P: Johannes Berg
  335. M: johannes@sipsolutions.net
  336. L: linuxppc-dev@ozlabs.org
  337. L: alsa-devel@alsa-project.org (subscribers-only)
  338. S: Maintained
  339. APM DRIVER
  340. P: Stephen Rothwell
  341. M: sfr@canb.auug.org.au
  342. L: linux-laptop@vger.kernel.org
  343. W: http://www.canb.auug.org.au/~sfr/
  344. S: Supported
  345. APPLE BCM5974 MULTITOUCH DRIVER
  346. P: Henrik Rydberg
  347. M: rydberg@euromail.se
  348. L: linux-input@vger.kernel.org
  349. S: Maintained
  350. APPLE SMC DRIVER
  351. P: Nicolas Boichat
  352. M: nicolas@boichat.ch
  353. L: mactel-linux-devel@lists.sourceforge.net
  354. S: Maintained
  355. APPLETALK NETWORK LAYER
  356. P: Arnaldo Carvalho de Melo
  357. M: acme@ghostprotocols.net
  358. S: Maintained
  359. APPLETOUCH TOUCHPAD DRIVER
  360. P: Johannes Berg
  361. M: johannes@sipsolutions.net
  362. L: linux-input@vger.kernel.org
  363. S: Maintained
  364. ARC FRAMEBUFFER DRIVER
  365. P: Jaya Kumar
  366. M: jayalk@intworks.biz
  367. S: Maintained
  368. ARM MFM AND FLOPPY DRIVERS
  369. P: Ian Molton
  370. M: spyro@f2s.com
  371. S: Maintained
  372. ARM PRIMECELL MMCI PL180/1 DRIVER
  373. S: Orphan
  374. ARM/ADI ROADRUNNER MACHINE SUPPORT
  375. P: Lennert Buytenhek
  376. M: kernel@wantstofly.org
  377. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  378. S: Maintained
  379. ARM/ADS SPHERE MACHINE SUPPORT
  380. P: Lennert Buytenhek
  381. M: kernel@wantstofly.org
  382. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  383. S: Maintained
  384. ARM/AFEB9260 MACHINE SUPPORT
  385. P: Sergey Lapin
  386. M: slapin@ossfans.org
  387. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  388. S: Maintained
  389. ARM/AJECO 1ARM MACHINE SUPPORT
  390. P: Lennert Buytenhek
  391. M: kernel@wantstofly.org
  392. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  393. S: Maintained
  394. ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
  395. P: Andrew Victor
  396. M: linux@maxim.org.za
  397. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  398. W: http://maxim.org.za/at91_26.html
  399. S: Maintained
  400. ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
  401. P: Lennert Buytenhek
  402. M: kernel@wantstofly.org
  403. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  404. S: Maintained
  405. ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
  406. P: Lennert Buytenhek
  407. M: kernel@wantstofly.org
  408. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  409. S: Maintained
  410. ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
  411. P: Mike Rapoport
  412. M: mike@compulab.co.il
  413. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  414. S: Maintained
  415. ARM/CORGI MACHINE SUPPORT
  416. P: Richard Purdie
  417. M: rpurdie@rpsys.net
  418. S: Maintained
  419. ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
  420. P: Daniel Ribeiro
  421. M: drwyrm@gmail.com
  422. P: Stefan Schmidt
  423. M: stefan@openezx.org
  424. P: Harald Welte
  425. M: laforge@openezx.org
  426. L: openezx-devel@lists.openezx.org (subscribers-only)
  427. W: http://www.openezx.org/
  428. S: Maintained
  429. ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
  430. P: Sascha Hauer
  431. M: kernel@pengutronix.de
  432. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  433. S: Maintained
  434. ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
  435. P: Lennert Buytenhek
  436. M: kernel@wantstofly.org
  437. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  438. S: Maintained
  439. ARM/GUMSTIX MACHINE SUPPORT
  440. P: Steve Sakoman
  441. M: sakoman@gmail.com
  442. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  443. S: Maintained
  444. ARM/HP JORNADA 7XX MACHINE SUPPORT
  445. P: Kristoffer Ericson
  446. M: kristoffer.ericson@gmail.com
  447. W: www.jlime.com
  448. S: Maintained
  449. ARM/INTEL IOP32X ARM ARCHITECTURE
  450. P: Lennert Buytenhek
  451. M: kernel@wantstofly.org
  452. P: Dan Williams
  453. M: dan.j.williams@intel.com
  454. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  455. S: Supported
  456. ARM/INTEL IOP33X ARM ARCHITECTURE
  457. P: Dan Williams
  458. M: dan.j.williams@intel.com
  459. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  460. S: Supported
  461. ARM/INTEL IOP13XX ARM ARCHITECTURE
  462. P: Lennert Buytenhek
  463. M: kernel@wantstofly.org
  464. P: Dan Williams
  465. M: dan.j.williams@intel.com
  466. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  467. S: Supported
  468. ARM/INTEL IQ81342EX MACHINE SUPPORT
  469. P: Lennert Buytenhek
  470. M: kernel@wantstofly.org
  471. P: Dan Williams
  472. M: dan.j.williams@intel.com
  473. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  474. S: Supported
  475. ARM/INTEL IXP2000 ARM ARCHITECTURE
  476. P: Lennert Buytenhek
  477. M: kernel@wantstofly.org
  478. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  479. S: Maintained
  480. ARM/INTEL IXDP2850 MACHINE SUPPORT
  481. P: Lennert Buytenhek
  482. M: kernel@wantstofly.org
  483. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  484. S: Maintained
  485. ARM/INTEL IXP23XX ARM ARCHITECTURE
  486. P: Lennert Buytenhek
  487. M: kernel@wantstofly.org
  488. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  489. S: Maintained
  490. ARM/INTEL XSC3 (MANZANO) ARM CORE
  491. P: Lennert Buytenhek
  492. M: kernel@wantstofly.org
  493. P: Dan Williams
  494. M: dan.j.williams@intel.com
  495. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  496. S: Supported
  497. ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
  498. P: Lennert Buytenhek
  499. M: kernel@wantstofly.org
  500. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  501. S: Maintained
  502. ARM/LOGICPD PXA270 MACHINE SUPPORT
  503. P: Lennert Buytenhek
  504. M: kernel@wantstofly.org
  505. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  506. S: Maintained
  507. ARM/MAGICIAN MACHINE SUPPORT
  508. P: Philipp Zabel
  509. M: philipp.zabel@gmail.com
  510. S: Maintained
  511. ARM/TOSA MACHINE SUPPORT
  512. P: Dmitry Baryshkov
  513. M: dbaryshkov@gmail.com
  514. P: Dirk Opfer
  515. M: dirk@opfer-online.de
  516. S: Maintained
  517. ARM/PALMTX SUPPORT
  518. P: Marek Vasut
  519. M: marek.vasut@gmail.com
  520. W: http://hackndev.com
  521. S: Maintained
  522. ARM/PALMZ72 SUPPORT
  523. P: Sergey Lapin
  524. M: slapin@ossfans.org
  525. W: http://hackndev.com
  526. S: Maintained
  527. ARM/PLEB SUPPORT
  528. P: Peter Chubb
  529. M: pleb@gelato.unsw.edu.au
  530. W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
  531. S: Maintained
  532. ARM/PT DIGITAL BOARD PORT
  533. P: Stefan Eletzhofer
  534. M: stefan.eletzhofer@eletztrick.de
  535. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  536. W: http://www.arm.linux.org.uk/
  537. S: Maintained
  538. ARM/RADISYS ENP2611 MACHINE SUPPORT
  539. P: Lennert Buytenhek
  540. M: kernel@wantstofly.org
  541. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  542. S: Maintained
  543. ARM/SHARK MACHINE SUPPORT
  544. P: Alexander Schulz
  545. M: alex@shark-linux.de
  546. W: http://www.shark-linux.de/shark.html
  547. S: Maintained
  548. ARM/STRONGARM110 PORT
  549. P: Russell King
  550. M: rmk@arm.linux.org.uk
  551. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  552. W: http://www.arm.linux.org.uk/
  553. S: Maintained
  554. ARM/S3C2410 ARM ARCHITECTURE
  555. P: Ben Dooks
  556. M: ben-linux@fluff.org
  557. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  558. W: http://www.fluff.org/ben/linux/
  559. S: Maintained
  560. ARM/S3C2440 ARM ARCHITECTURE
  561. P: Ben Dooks
  562. M: ben-linux@fluff.org
  563. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  564. W: http://www.fluff.org/ben/linux/
  565. S: Maintained
  566. ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
  567. P: Lennert Buytenhek
  568. M: kernel@wantstofly.org
  569. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  570. S: Maintained
  571. ARM/THECUS N2100 MACHINE SUPPORT
  572. P: Lennert Buytenhek
  573. M: kernel@wantstofly.org
  574. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  575. S: Maintained
  576. ARPD SUPPORT
  577. P: Jonathan Layes
  578. L: netdev@vger.kernel.org
  579. S: Maintained
  580. ASUS ACPI EXTRAS DRIVER
  581. P: Corentin Chary
  582. M: corentincj@iksaif.net
  583. P: Karol Kozimor
  584. M: sziwan@users.sourceforge.net
  585. L: acpi4asus-user@lists.sourceforge.net
  586. W: http://sourceforge.net/projects/acpi4asus
  587. W: http://xf.iksaif.net/acpi4asus
  588. S: Maintained
  589. ASUS ASB100 HARDWARE MONITOR DRIVER
  590. P: Mark M. Hoffman
  591. M: mhoffman@lightlink.com
  592. L: lm-sensors@lm-sensors.org
  593. S: Maintained
  594. ASUS LAPTOP EXTRAS DRIVER
  595. P: Corentin Chary
  596. M: corentincj@iksaif.net
  597. L: acpi4asus-user@lists.sourceforge.net
  598. W: http://sourceforge.net/projects/acpi4asus
  599. W: http://xf.iksaif.net/acpi4asus
  600. S: Maintained
  601. ASYNCHRONOUS TRANSFERS/TRANSFORMS API
  602. P: Dan Williams
  603. M: dan.j.williams@intel.com
  604. P: Maciej Sosnowski
  605. M: maciej.sosnowski@intel.com
  606. L: linux-kernel@vger.kernel.org
  607. W: http://sourceforge.net/projects/xscaleiop
  608. S: Supported
  609. ATA OVER ETHERNET (AOE) DRIVER
  610. P: Ed L. Cashin
  611. M: ecashin@coraid.com
  612. W: http://www.coraid.com/support/linux
  613. S: Supported
  614. ATHEROS ATH5K WIRELESS DRIVER
  615. P: Jiri Slaby
  616. M: jirislaby@gmail.com
  617. P: Nick Kossifidis
  618. M: mickflemm@gmail.com
  619. P: Luis R. Rodriguez
  620. M: mcgrof@gmail.com
  621. L: linux-wireless@vger.kernel.org
  622. L: ath5k-devel@lists.ath5k.org
  623. S: Maintained
  624. ATHEROS ATH9K WIRELESS DRIVER
  625. P: Luis R. Rodriguez
  626. M: lrodriguez@atheros.com
  627. P: Jouni Malinen
  628. M: jmalinen@atheros.com
  629. L: linux-wireless@vger.kernel.org
  630. L: ath9k-devel@lists.ath9k.org
  631. S: Supported
  632. ATI_REMOTE2 DRIVER
  633. P: Ville Syrjala
  634. M: syrjala@sci.fi
  635. S: Maintained
  636. ATLX ETHERNET DRIVERS
  637. P: Jay Cliburn
  638. M: jcliburn@gmail.com
  639. P: Chris Snook
  640. M: csnook@redhat.com
  641. P: Jie Yang
  642. M: jie.yang@atheros.com
  643. L: atl1-devel@lists.sourceforge.net
  644. W: http://sourceforge.net/projects/atl1
  645. W: http://atl1.sourceforge.net
  646. S: Maintained
  647. ATM
  648. P: Chas Williams
  649. M: chas@cmf.nrl.navy.mil
  650. L: linux-atm-general@lists.sourceforge.net (subscribers-only)
  651. W: http://linux-atm.sourceforge.net
  652. S: Maintained
  653. ATMEL AT91 MCI DRIVER
  654. P: Nicolas Ferre
  655. M: nicolas.ferre@atmel.com
  656. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  657. W: http://www.atmel.com/products/AT91/
  658. W: http://www.at91.com/
  659. S: Maintained
  660. ATMEL AT91 / AT32 SERIAL DRIVER
  661. P: Haavard Skinnemoen
  662. M: hskinnemoen@atmel.com
  663. L: linux-kernel@vger.kernel.org
  664. S: Supported
  665. ATMEL LCDFB DRIVER
  666. P: Nicolas Ferre
  667. M: nicolas.ferre@atmel.com
  668. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  669. S: Maintained
  670. ATMEL MACB ETHERNET DRIVER
  671. P: Haavard Skinnemoen
  672. M: hskinnemoen@atmel.com
  673. S: Supported
  674. ATMEL SPI DRIVER
  675. P: Haavard Skinnemoen
  676. M: hskinnemoen@atmel.com
  677. S: Supported
  678. ATMEL USBA UDC DRIVER
  679. P: Haavard Skinnemoen
  680. M: hskinnemoen@atmel.com
  681. L: kernel@avr32linux.org
  682. W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
  683. S: Supported
  684. ATMEL WIRELESS DRIVER
  685. P: Simon Kelley
  686. M: simon@thekelleys.org.uk
  687. L: linux-wireless@vger.kernel.org
  688. W: http://www.thekelleys.org.uk/atmel
  689. W: http://atmelwlandriver.sourceforge.net/
  690. S: Maintained
  691. AUDIT SUBSYSTEM
  692. P: Al Viro
  693. M: viro@zeniv.linux.org.uk
  694. P: Eric Paris
  695. M: eparis@redhat.com
  696. L: linux-audit@redhat.com (subscribers-only)
  697. W: http://people.redhat.com/sgrubb/audit/
  698. T: git git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
  699. S: Maintained
  700. AUXILIARY DISPLAY DRIVERS
  701. P: Miguel Ojeda Sandonis
  702. M: miguel.ojeda.sandonis@gmail.com
  703. L: linux-kernel@vger.kernel.org
  704. W: http://miguelojeda.es/auxdisplay.htm
  705. W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
  706. S: Maintained
  707. AVR32 ARCHITECTURE
  708. P: Haavard Skinnemoen
  709. M: hskinnemoen@atmel.com
  710. W: http://www.atmel.com/products/AVR32/
  711. W: http://avr32linux.org/
  712. W: http://avrfreaks.net/
  713. S: Supported
  714. AVR32/AT32AP MACHINE SUPPORT
  715. P: Haavard Skinnemoen
  716. M: hskinnemoen@atmel.com
  717. S: Supported
  718. AX.25 NETWORK LAYER
  719. P: Ralf Baechle
  720. M: ralf@linux-mips.org
  721. L: linux-hams@vger.kernel.org
  722. W: http://www.linux-ax25.org/
  723. S: Maintained
  724. B43 WIRELESS DRIVER
  725. P: Michael Buesch
  726. M: mb@bu3sch.de
  727. P: Stefano Brivio
  728. M: stefano.brivio@polimi.it
  729. L: linux-wireless@vger.kernel.org
  730. W: http://linuxwireless.org/en/users/Drivers/b43
  731. S: Maintained
  732. B43LEGACY WIRELESS DRIVER
  733. P: Larry Finger
  734. M: Larry.Finger@lwfinger.net
  735. P: Stefano Brivio
  736. M: stefano.brivio@polimi.it
  737. L: linux-wireless@vger.kernel.org
  738. W: http://linuxwireless.org/en/users/Drivers/b43
  739. S: Maintained
  740. BACKLIGHT CLASS/SUBSYSTEM
  741. P: Richard Purdie
  742. M: rpurdie@rpsys.net
  743. S: Maintained
  744. BAYCOM/HDLCDRV DRIVERS FOR AX.25
  745. P: Thomas Sailer
  746. M: t.sailer@alumni.ethz.ch
  747. L: linux-hams@vger.kernel.org
  748. W: http://www.baycom.org/~tom/ham/ham.html
  749. S: Maintained
  750. BEFS FILE SYSTEM
  751. P: Sergey S. Kostyliov
  752. M: rathamahata@php4.ru
  753. L: linux-kernel@vger.kernel.org
  754. S: Maintained
  755. BFS FILE SYSTEM
  756. P: Tigran A. Aivazian
  757. M: tigran@aivazian.fsnet.co.uk
  758. L: linux-kernel@vger.kernel.org
  759. S: Maintained
  760. BLACKFIN ARCHITECTURE
  761. P: Bryan Wu
  762. M: cooloney@kernel.org
  763. L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
  764. W: http://blackfin.uclinux.org
  765. S: Supported
  766. BLACKFIN EMAC DRIVER
  767. P: Bryan Wu
  768. M: cooloney@kernel.org
  769. L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
  770. W: http://blackfin.uclinux.org
  771. S: Supported
  772. BLACKFIN RTC DRIVER
  773. P: Mike Frysinger
  774. M: vapier.adi@gmail.com
  775. L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
  776. W: http://blackfin.uclinux.org
  777. S: Supported
  778. BLACKFIN SERIAL DRIVER
  779. P: Sonic Zhang
  780. M: sonic.zhang@analog.com
  781. L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
  782. W: http://blackfin.uclinux.org
  783. S: Supported
  784. BLACKFIN WATCHDOG DRIVER
  785. P: Mike Frysinger
  786. M: vapier.adi@gmail.com
  787. L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
  788. W: http://blackfin.uclinux.org
  789. S: Supported
  790. BLACKFIN I2C TWI DRIVER
  791. P: Sonic Zhang
  792. M: sonic.zhang@analog.com
  793. L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
  794. W: http://blackfin.uclinux.org/
  795. S: Supported
  796. BLOCK LAYER
  797. P: Jens Axboe
  798. M: axboe@kernel.dk
  799. L: linux-kernel@vger.kernel.org
  800. T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
  801. S: Maintained
  802. BLOCK2MTD DRIVER
  803. P: Joern Engel
  804. M: joern@lazybastard.org
  805. L: linux-mtd@lists.infradead.org
  806. S: Maintained
  807. BLUETOOTH DRIVERS
  808. P: Marcel Holtmann
  809. M: marcel@holtmann.org
  810. L: linux-bluetooth@vger.kernel.org
  811. W: http://www.bluez.org/
  812. S: Maintained
  813. BLUETOOTH SUBSYSTEM
  814. P: Marcel Holtmann
  815. M: marcel@holtmann.org
  816. L: linux-bluetooth@vger.kernel.org
  817. W: http://www.bluez.org/
  818. T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
  819. S: Maintained
  820. BONDING DRIVER
  821. P: Jay Vosburgh
  822. M: fubar@us.ibm.com
  823. L: bonding-devel@lists.sourceforge.net
  824. W: http://sourceforge.net/projects/bonding/
  825. S: Supported
  826. BROADCOM B44 10/100 ETHERNET DRIVER
  827. P: Gary Zambrano
  828. M: zambrano@broadcom.com
  829. L: netdev@vger.kernel.org
  830. S: Supported
  831. BROADCOM BNX2 GIGABIT ETHERNET DRIVER
  832. P: Michael Chan
  833. M: mchan@broadcom.com
  834. L: netdev@vger.kernel.org
  835. S: Supported
  836. BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
  837. P: Eilon Greenstein
  838. M: eilong@broadcom.com
  839. L: netdev@vger.kernel.org
  840. S: Supported
  841. BROADCOM TG3 GIGABIT ETHERNET DRIVER
  842. P: Michael Chan
  843. M: mchan@broadcom.com
  844. L: netdev@vger.kernel.org
  845. S: Supported
  846. BSG (block layer generic sg v4 driver)
  847. P: FUJITA Tomonori
  848. M: fujita.tomonori@lab.ntt.co.jp
  849. L: linux-scsi@vger.kernel.org
  850. S: Supported
  851. BT8XXGPIO DRIVER
  852. P: Michael Buesch
  853. M: mb@bu3sch.de
  854. W: http://bu3sch.de/btgpio.php
  855. S: Maintained
  856. BTTV VIDEO4LINUX DRIVER
  857. P: Mauro Carvalho Chehab
  858. M: mchehab@infradead.org
  859. M: v4l-dvb-maintainer@linuxtv.org
  860. L: video4linux-list@redhat.com
  861. W: http://linuxtv.org
  862. T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
  863. S: Maintained
  864. CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
  865. P: Jonathan Corbet
  866. M: corbet@lwn.net
  867. L: video4linux-list@redhat.com
  868. S: Maintained
  869. CALGARY x86-64 IOMMU
  870. P: Muli Ben-Yehuda
  871. M: muli@il.ibm.com
  872. P: Jon D. Mason
  873. M: jdmason@kudzu.us
  874. L: linux-kernel@vger.kernel.org
  875. L: discuss@x86-64.org
  876. S: Maintained
  877. CAN NETWORK LAYER
  878. P: Urs Thuermann
  879. M: urs.thuermann@volkswagen.de
  880. P: Oliver Hartkopp
  881. M: oliver.hartkopp@volkswagen.de
  882. L: socketcan-core@lists.berlios.de (subscribers-only)
  883. W: http://developer.berlios.de/projects/socketcan/
  884. S: Maintained
  885. CELL BROADBAND ENGINE ARCHITECTURE
  886. P: Arnd Bergmann
  887. M: arnd@arndb.de
  888. L: linuxppc-dev@ozlabs.org
  889. L: cbe-oss-dev@ozlabs.org
  890. W: http://www.ibm.com/developerworks/power/cell/
  891. S: Supported
  892. CFAG12864B LCD DRIVER
  893. P: Miguel Ojeda Sandonis
  894. M: miguel.ojeda.sandonis@gmail.com
  895. L: linux-kernel@vger.kernel.org
  896. W: http://miguelojeda.es/auxdisplay.htm
  897. W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
  898. S: Maintained
  899. CFAG12864BFB LCD FRAMEBUFFER DRIVER
  900. P: Miguel Ojeda Sandonis
  901. M: miguel.ojeda.sandonis@gmail.com
  902. L: linux-kernel@vger.kernel.org
  903. W: http://miguelojeda.es/auxdisplay.htm
  904. W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
  905. S: Maintained
  906. CFG80211 and NL80211
  907. P: Johannes Berg
  908. M: johannes@sipsolutions.net
  909. L: linux-wireless@vger.kernel.org
  910. S: Maintained
  911. CHECKPATCH
  912. P: Andy Whitcroft
  913. M: apw@shadowen.org
  914. P: Randy Dunlap
  915. M: rdunlap@xenotime.net
  916. P: Joel Schopp
  917. M: jschopp@austin.ibm.com
  918. S: Supported
  919. CISCO 10G ETHERNET DRIVER
  920. P: Scott Feldman
  921. M: scofeldm@cisco.com
  922. P: Joe Eykholt
  923. M: jeykholt@cisco.com
  924. S: Supported
  925. CIRRUS LOGIC EP93XX ETHERNET DRIVER
  926. P: Lennert Buytenhek
  927. M: kernel@wantstofly.org
  928. L: netdev@vger.kernel.org
  929. S: Maintained
  930. CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
  931. P: Lennert Buytenhek
  932. M: kernel@wantstofly.org
  933. L: linux-usb@vger.kernel.org
  934. S: Maintained
  935. CIRRUS LOGIC CS4270 SOUND DRIVER
  936. P: Timur Tabi
  937. M: timur@freescale.com
  938. L: alsa-devel@alsa-project.org
  939. S: Supported
  940. CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
  941. P: Cirrus Logic Corporation (kernel 2.2 driver)
  942. M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
  943. P: Nils Faerber (port to kernel 2.4)
  944. M: Nils Faerber <nils@kernelconcepts.de>
  945. S: Maintained
  946. CODA FILE SYSTEM
  947. P: Jan Harkes
  948. M: jaharkes@cs.cmu.edu
  949. M: coda@cs.cmu.edu
  950. L: codalist@coda.cs.cmu.edu
  951. W: http://www.coda.cs.cmu.edu/
  952. S: Maintained
  953. COMMON INTERNET FILE SYSTEM (CIFS)
  954. P: Steve French
  955. M: sfrench@samba.org
  956. L: linux-cifs-client@lists.samba.org
  957. L: samba-technical@lists.samba.org
  958. W: http://linux-cifs.samba.org/
  959. T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
  960. S: Supported
  961. COMPACTPCI HOTPLUG CORE
  962. P: Scott Murray
  963. M: scottm@somanetworks.com
  964. M: scott@spiteful.org
  965. L: linux-pci@vger.kernel.org
  966. S: Supported
  967. COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
  968. P: Scott Murray
  969. M: scottm@somanetworks.com
  970. M: scott@spiteful.org
  971. L: linux-pci@vger.kernel.org
  972. S: Supported
  973. COMPACTPCI HOTPLUG GENERIC DRIVER
  974. P: Scott Murray
  975. M: scottm@somanetworks.com
  976. M: scott@spiteful.org
  977. L: linux-pci@vger.kernel.org
  978. S: Supported
  979. COMPAL LAPTOP SUPPORT
  980. P: Cezary Jackiewicz
  981. M: cezary.jackiewicz@gmail.com
  982. S: Maintained
  983. COMPUTONE INTELLIPORT MULTIPORT CARD
  984. P: Michael H. Warfield
  985. M: mhw@wittsend.com
  986. W: http://www.wittsend.com/computone.html
  987. S: Maintained
  988. CONEXANT ACCESSRUNNER USB DRIVER
  989. P: Simon Arlott
  990. M: cxacru@fire.lp0.eu
  991. L: accessrunner-general@lists.sourceforge.net
  992. W: http://accessrunner.sourceforge.net/
  993. S: Maintained
  994. CONFIGFS
  995. P: Joel Becker
  996. M: joel.becker@oracle.com
  997. L: linux-kernel@vger.kernel.org
  998. S: Supported
  999. CONTROL GROUPS (CGROUPS)
  1000. P: Paul Menage
  1001. M: menage@google.com
  1002. L: containers@lists.linux-foundation.org
  1003. S: Maintained
  1004. CORETEMP HARDWARE MONITORING DRIVER
  1005. P: Rudolf Marek
  1006. M: r.marek@assembler.cz
  1007. L: lm-sensors@lm-sensors.org
  1008. S: Maintained
  1009. COSA/SRP SYNC SERIAL DRIVER
  1010. P: Jan "Yenya" Kasprzak
  1011. M: kas@fi.muni.cz
  1012. W: http://www.fi.muni.cz/~kas/cosa/
  1013. S: Maintained
  1014. CPU FREQUENCY DRIVERS
  1015. P: Dave Jones
  1016. M: davej@redhat.com
  1017. L: cpufreq@vger.kernel.org
  1018. W: http://www.codemonkey.org.uk/projects/cpufreq/
  1019. T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
  1020. S: Maintained
  1021. CPUID/MSR DRIVER
  1022. P: H. Peter Anvin
  1023. M: hpa@zytor.com
  1024. S: Maintained
  1025. CPUSETS
  1026. P: Paul Menage
  1027. M: menage@google.com
  1028. L: linux-kernel@vger.kernel.org
  1029. W: http://www.bullopensource.org/cpuset/
  1030. W: http://oss.sgi.com/projects/cpusets/
  1031. S: Supported
  1032. CRAMFS FILESYSTEM
  1033. W: http://sourceforge.net/projects/cramfs/
  1034. S: Orphan
  1035. CRIS PORT
  1036. P: Mikael Starvik
  1037. M: starvik@axis.com
  1038. P: Jesper Nilsson
  1039. M: jesper.nilsson@axis.com
  1040. L: dev-etrax@axis.com
  1041. W: http://developer.axis.com
  1042. S: Maintained
  1043. CRYPTO API
  1044. P: Herbert Xu
  1045. M: herbert@gondor.apana.org.au
  1046. P: David S. Miller
  1047. M: davem@davemloft.net
  1048. L: linux-crypto@vger.kernel.org
  1049. T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
  1050. S: Maintained
  1051. CS5535 Audio ALSA driver
  1052. P: Jaya Kumar
  1053. M: jayakumar.alsa@gmail.com
  1054. S: Maintained
  1055. CX18 VIDEO4LINUX DRIVER
  1056. P: Hans Verkuil, Andy Walls
  1057. M: hverkuil@xs4all.nl, awalls@radix.net
  1058. L: ivtv-devel@ivtvdriver.org
  1059. L: ivtv-users@ivtvdriver.org
  1060. L: video4linux-list@redhat.com
  1061. W: http://linuxtv.org
  1062. S: Maintained
  1063. CXGB3 ETHERNET DRIVER (CXGB3)
  1064. P: Divy Le Ray
  1065. M: divy@chelsio.com
  1066. L: netdev@vger.kernel.org
  1067. W: http://www.chelsio.com
  1068. S: Supported
  1069. CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
  1070. P: Steve Wise
  1071. M: swise@chelsio.com
  1072. L: general@lists.openfabrics.org
  1073. W: http://www.openfabrics.org
  1074. S: Supported
  1075. CYBERPRO FB DRIVER
  1076. P: Russell King
  1077. M: rmk@arm.linux.org.uk
  1078. W: http://www.arm.linux.org.uk/
  1079. S: Maintained
  1080. CYBLAFB FRAMEBUFFER DRIVER
  1081. P: Knut Petersen
  1082. M: Knut_Petersen@t-online.de
  1083. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  1084. S: Maintained
  1085. CYCLADES 2X SYNC CARD DRIVER
  1086. P: Arnaldo Carvalho de Melo
  1087. M: acme@ghostprotocols.net
  1088. W: http://oops.ghostprotocols.net:81/blog
  1089. S: Maintained
  1090. CYCLADES ASYNC MUX DRIVER
  1091. W: http://www.cyclades.com/
  1092. S: Orphan
  1093. CYCLADES PC300 DRIVER
  1094. W: http://www.cyclades.com/
  1095. S: Orphan
  1096. DAMA SLAVE for AX.25
  1097. P: Joerg Reuter
  1098. M: jreuter@yaina.de
  1099. W: http://yaina.de/jreuter/
  1100. W: http://www.qsl.net/dl1bke/
  1101. L: linux-hams@vger.kernel.org
  1102. S: Maintained
  1103. DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
  1104. P: Tobias Ringstrom
  1105. M: tori@unhappy.mine.nu
  1106. L: netdev@vger.kernel.org
  1107. S: Maintained
  1108. DC390/AM53C974 SCSI driver
  1109. P: Kurt Garloff
  1110. M: garloff@suse.de
  1111. W: http://www.garloff.de/kurt/linux/dc390/
  1112. P: Guennadi Liakhovetski
  1113. M: g.liakhovetski@gmx.de
  1114. S: Maintained
  1115. DC395x SCSI driver
  1116. P: Oliver Neukum
  1117. M: oliver@neukum.name
  1118. P: Ali Akcaagac
  1119. M: aliakc@web.de
  1120. P: Jamie Lenehan
  1121. M: lenehan@twibble.org
  1122. W: http://twibble.org/dist/dc395x/
  1123. L: dc395x@twibble.org
  1124. L: http://lists.twibble.org/mailman/listinfo/dc395x/
  1125. S: Maintained
  1126. DCCP PROTOCOL
  1127. P: Arnaldo Carvalho de Melo
  1128. M: acme@ghostprotocols.net
  1129. L: dccp@vger.kernel.org
  1130. W: http://linux-net.osdl.org/index.php/DCCP
  1131. S: Maintained
  1132. DECnet NETWORK LAYER
  1133. P: Christine Caulfield
  1134. M: christine.caulfield@googlemail.com
  1135. W: http://linux-decnet.sourceforge.net
  1136. L: linux-decnet-user@lists.sourceforge.net
  1137. S: Maintained
  1138. DEFXX FDDI NETWORK DRIVER
  1139. P: Maciej W. Rozycki
  1140. M: macro@linux-mips.org
  1141. S: Maintained
  1142. DELL LAPTOP SMM DRIVER
  1143. P: Massimo Dal Zotto
  1144. M: dz@debian.org
  1145. W: http://www.debian.org/~dz/i8k/
  1146. S: Maintained
  1147. DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
  1148. P: Doug Warzecha
  1149. M: Douglas_Warzecha@dell.com
  1150. S: Maintained
  1151. DEVICE NUMBER REGISTRY
  1152. P: Torben Mathiasen
  1153. M: device@lanana.org
  1154. W: http://lanana.org/docs/device-list/index.html
  1155. L: linux-kernel@vger.kernel.org
  1156. S: Maintained
  1157. DEVICE-MAPPER (LVM)
  1158. P: Alasdair Kergon
  1159. L: dm-devel@redhat.com
  1160. W: http://sources.redhat.com/dm
  1161. S: Maintained
  1162. DIGI INTL. EPCA DRIVER
  1163. P: Digi International, Inc
  1164. M: Eng.Linux@digi.com
  1165. L: Eng.Linux@digi.com
  1166. W: http://www.digi.com
  1167. S: Orphan
  1168. DIRECTORY NOTIFICATION (DNOTIFY)
  1169. P: Stephen Rothwell
  1170. M: sfr@canb.auug.org.au
  1171. L: linux-kernel@vger.kernel.org
  1172. S: Supported
  1173. DISK GEOMETRY AND PARTITION HANDLING
  1174. P: Andries Brouwer
  1175. M: aeb@cwi.nl
  1176. W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
  1177. W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
  1178. W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
  1179. S: Maintained
  1180. DISKQUOTA
  1181. P: Jan Kara
  1182. M: jack@suse.cz
  1183. L: linux-kernel@vger.kernel.org
  1184. S: Maintained
  1185. DISTRIBUTED LOCK MANAGER (DLM)
  1186. P: Christine Caulfield
  1187. M: ccaulfie@redhat.com
  1188. P: David Teigland
  1189. M: teigland@redhat.com
  1190. L: cluster-devel@redhat.com
  1191. W: http://sources.redhat.com/cluster/
  1192. T: git kernel.org:/pub/scm/linux/kernel/git/teigland/dlm.git
  1193. S: Supported
  1194. DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
  1195. P: Maciej Sosnowski
  1196. M: maciej.sosnowski@intel.com
  1197. P: Dan Williams
  1198. M: dan.j.williams@intel.com
  1199. L: linux-kernel@vger.kernel.org
  1200. S: Supported
  1201. DME1737 HARDWARE MONITOR DRIVER
  1202. P: Juerg Haefliger
  1203. M: juergh@gmail.com
  1204. L: lm-sensors@lm-sensors.org
  1205. S: Maintained
  1206. DOCBOOK FOR DOCUMENTATION
  1207. P: Randy Dunlap
  1208. M: rdunlap@xenotime.net
  1209. S: Maintained
  1210. DOCKING STATION DRIVER
  1211. P: Kristen Carlson Accardi
  1212. M: kristen.c.accardi@intel.com
  1213. L: linux-acpi@vger.kernel.org
  1214. S: Supported
  1215. DOCUMENTATION (/Documentation directory)
  1216. P: Michael Kerrisk
  1217. M: mtk.manpages@gmail.com
  1218. P: Randy Dunlap
  1219. M: rdunlap@xenotime.net
  1220. L: linux-doc@vger.kernel.org
  1221. S: Maintained
  1222. DOUBLETALK DRIVER
  1223. P: James R. Van Zandt
  1224. M: jrv@vanzandt.mv.com
  1225. L: blinux-list@redhat.com
  1226. S: Maintained
  1227. DPT_I2O SCSI RAID DRIVER
  1228. P: Adaptec OEM Raid Solutions
  1229. M: aacraid@adaptec.com
  1230. L: linux-scsi@vger.kernel.org
  1231. W: http://www.adaptec.com/
  1232. S: Maintained
  1233. DRIVER CORE, KOBJECTS, AND SYSFS
  1234. P: Greg Kroah-Hartman
  1235. M: gregkh@suse.de
  1236. L: linux-kernel@vger.kernel.org
  1237. T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
  1238. S: Supported
  1239. DRM DRIVERS
  1240. P: David Airlie
  1241. M: airlied@linux.ie
  1242. L: dri-devel@lists.sourceforge.net
  1243. T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
  1244. S: Maintained
  1245. DSCC4 DRIVER
  1246. P: Francois Romieu
  1247. M: romieu@fr.zoreil.com
  1248. L: netdev@vger.kernel.org
  1249. S: Maintained
  1250. DVB SUBSYSTEM AND DRIVERS
  1251. P: LinuxTV.org Project
  1252. M: v4l-dvb-maintainer@linuxtv.org
  1253. L: linux-dvb@linuxtv.org (subscription required)
  1254. W: http://linuxtv.org/
  1255. T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
  1256. S: Maintained
  1257. DZ DECSTATION DZ11 SERIAL DRIVER
  1258. P: Maciej W. Rozycki
  1259. M: macro@linux-mips.org
  1260. S: Maintained
  1261. EATA-DMA SCSI DRIVER
  1262. P: Michael Neuffer
  1263. L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
  1264. S: Maintained
  1265. EATA ISA/EISA/PCI SCSI DRIVER
  1266. P: Dario Ballabio
  1267. M: ballabio_dario@emc.com
  1268. L: linux-scsi@vger.kernel.org
  1269. S: Maintained
  1270. EATA-PIO SCSI DRIVER
  1271. P: Michael Neuffer
  1272. M: mike@i-Connect.Net
  1273. L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
  1274. S: Maintained
  1275. EBTABLES
  1276. P: Bart De Schuymer
  1277. M: bart.de.schuymer@pandora.be
  1278. L: ebtables-user@lists.sourceforge.net
  1279. L: ebtables-devel@lists.sourceforge.net
  1280. W: http://ebtables.sourceforge.net/
  1281. S: Maintained
  1282. ECRYPT FILE SYSTEM
  1283. P: Mike Halcrow, Phillip Hellewell
  1284. M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
  1285. L: ecryptfs-devel@lists.sourceforge.net
  1286. W: http://ecryptfs.sourceforge.net/
  1287. S: Supported
  1288. EDAC-CORE
  1289. P: Doug Thompson
  1290. M: dougthompson@xmission.com
  1291. L: bluesmoke-devel@lists.sourceforge.net
  1292. W: bluesmoke.sourceforge.net
  1293. S: Supported
  1294. EDAC-E752X
  1295. P: Mark Gross
  1296. P: Doug Thompson
  1297. M: mark.gross@intel.com
  1298. M: dougthompson@xmission.com
  1299. L: bluesmoke-devel@lists.sourceforge.net
  1300. W: bluesmoke.sourceforge.net
  1301. S: Maintained
  1302. EDAC-E7XXX
  1303. P: Doug Thompson
  1304. M: dougthompson@xmission.com
  1305. L: bluesmoke-devel@lists.sourceforge.net
  1306. W: bluesmoke.sourceforge.net
  1307. S: Maintained
  1308. EDAC-I82443BXGX
  1309. P: Tim Small
  1310. M: tim@buttersideup.com
  1311. L: bluesmoke-devel@lists.sourceforge.net
  1312. W: bluesmoke.sourceforge.net
  1313. S: Maintained
  1314. EDAC-I3000
  1315. P: Jason Uhlenkott
  1316. M: juhlenko@akamai.com
  1317. L: bluesmoke-devel@lists.sourceforge.net
  1318. W: bluesmoke.sourceforge.net
  1319. S: Maintained
  1320. EDAC-I5000
  1321. P: Doug Thompson
  1322. M: dougthompson@xmission.com
  1323. L: bluesmoke-devel@lists.sourceforge.net
  1324. W: bluesmoke.sourceforge.net
  1325. S: Maintained
  1326. EDAC-I82975X
  1327. P: Ranganathan Desikan
  1328. P: Arvind R.
  1329. M: rdesikan@jetzbroadband.com
  1330. M: arvind@acarlab.com
  1331. L: bluesmoke-devel@lists.sourceforge.net
  1332. W: bluesmoke.sourceforge.net
  1333. S: Maintained
  1334. EDAC-PASEMI
  1335. P: Egor Martovetsky
  1336. M: egor@pasemi.com
  1337. L: bluesmoke-devel@lists.sourceforge.net
  1338. W: bluesmoke.sourceforge.net
  1339. S: Maintained
  1340. EDAC-R82600
  1341. P: Tim Small
  1342. M: tim@buttersideup.com
  1343. L: bluesmoke-devel@lists.sourceforge.net
  1344. W: bluesmoke.sourceforge.net
  1345. S: Maintained
  1346. EEEPC LAPTOP EXTRAS DRIVER
  1347. P: Corentin Chary
  1348. M: corentincj@iksaif.net
  1349. L: acpi4asus-user@lists.sourceforge.net
  1350. W: http://sourceforge.net/projects/acpi4asus
  1351. S: Maintained
  1352. EEPRO100 NETWORK DRIVER
  1353. P: Andrey V. Savochkin
  1354. M: saw@saw.sw.com.sg
  1355. S: Maintained
  1356. EFS FILESYSTEM
  1357. W: http://aeschi.ch.eu.org/efs/
  1358. S: Orphan
  1359. EHCA (IBM GX bus InfiniBand adapter) DRIVER
  1360. P: Hoang-Nam Nguyen
  1361. M: hnguyen@de.ibm.com
  1362. P: Christoph Raisch
  1363. M: raisch@de.ibm.com
  1364. L: general@lists.openfabrics.org
  1365. S: Supported
  1366. EMBEDDED LINUX
  1367. P: Paul Gortmaker
  1368. M: paul.gortmaker@windriver.com
  1369. P: David Woodhouse
  1370. M: dwmw2@infradead.org
  1371. L: linux-embedded@vger.kernel.org
  1372. S: Maintained
  1373. EMULEX LPFC FC SCSI DRIVER
  1374. P: James Smart
  1375. M: james.smart@emulex.com
  1376. L: linux-scsi@vger.kernel.org
  1377. W: http://sourceforge.net/projects/lpfcxxxx
  1378. S: Supported
  1379. EPSON 1355 FRAMEBUFFER DRIVER
  1380. P: Christopher Hoover
  1381. M: ch@murgatroid.com, ch@hpl.hp.com
  1382. S: Maintained
  1383. EPSON S1D13XXX FRAMEBUFFER DRIVER
  1384. P: Kristoffer Ericson
  1385. M: kristoffer.ericson@gmail.com
  1386. S: Maintained
  1387. ETHEREXPRESS-16 NETWORK DRIVER
  1388. P: Philip Blundell
  1389. M: philb@gnu.org
  1390. L: netdev@vger.kernel.org
  1391. S: Maintained
  1392. ETHERNET BRIDGE
  1393. P: Stephen Hemminger
  1394. M: shemminger@linux-foundation.org
  1395. L: bridge@lists.linux-foundation.org
  1396. W: http://www.linux-foundation.org/en/Net:Bridge
  1397. S: Maintained
  1398. ETHERTEAM 16I DRIVER
  1399. P: Mika Kuoppala
  1400. M: miku@iki.fi
  1401. S: Maintained
  1402. EXT2 FILE SYSTEM
  1403. L: linux-ext4@vger.kernel.org
  1404. S: Maintained
  1405. EXT3 FILE SYSTEM
  1406. P: Stephen Tweedie, Andrew Morton
  1407. M: sct@redhat.com, akpm@linux-foundation.org, adilger@sun.com
  1408. L: linux-ext4@vger.kernel.org
  1409. S: Maintained
  1410. EXT4 FILE SYSTEM
  1411. P: Theodore Ts'o
  1412. M: tytso@mit.edu, adilger@sun.com
  1413. L: linux-ext4@vger.kernel.org
  1414. W: http://ext4.wiki.kernel.org
  1415. S: Maintained
  1416. F71805F HARDWARE MONITORING DRIVER
  1417. P: Jean Delvare
  1418. M: khali@linux-fr.org
  1419. L: lm-sensors@lm-sensors.org
  1420. S: Maintained
  1421. FARSYNC SYNCHRONOUS DRIVER
  1422. P: Kevin Curtis
  1423. M: kevin.curtis@farsite.co.uk
  1424. W: http://www.farsite.co.uk/
  1425. S: Supported
  1426. FAULT INJECTION SUPPORT
  1427. P: Akinobu Mita
  1428. M: akinobu.mita@gmail.com
  1429. S: Supported
  1430. FILE LOCKING (flock() and fcntl()/lockf())
  1431. P: Matthew Wilcox
  1432. M: matthew@wil.cx
  1433. L: linux-fsdevel@vger.kernel.org
  1434. S: Maintained
  1435. FILESYSTEMS (VFS and infrastructure)
  1436. P: Alexander Viro
  1437. M: viro@zeniv.linux.org.uk
  1438. L: linux-fsdevel@vger.kernel.org
  1439. S: Maintained
  1440. FIREWIRE SUBSYSTEM (drivers/firewire, <linux/firewire*.h>)
  1441. P: Kristian Hoegsberg, Stefan Richter
  1442. M: krh@redhat.com, stefanr@s5r6.in-berlin.de
  1443. L: linux1394-devel@lists.sourceforge.net
  1444. W: http://www.linux1394.org/
  1445. T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
  1446. S: Maintained
  1447. FIRMWARE LOADER (request_firmware)
  1448. L: linux-kernel@vger.kernel.org
  1449. S: Orphan
  1450. FPU EMULATOR
  1451. P: Bill Metzenthen
  1452. M: billm@suburbia.net
  1453. W: http://suburbia.net/~billm/floating-point/emulator/
  1454. S: Maintained
  1455. FRAME RELAY DLCI/FRAD (Sangoma drivers too)
  1456. P: Mike McLagan
  1457. M: mike.mclagan@linux.org
  1458. L: netdev@vger.kernel.org
  1459. S: Maintained
  1460. FRAMEBUFFER LAYER
  1461. P: Antonino Daplas
  1462. M: adaplas@gmail.com
  1463. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  1464. W: http://linux-fbdev.sourceforge.net/
  1465. S: Maintained
  1466. FREESCALE DMA DRIVER
  1467. P: Li Yang
  1468. M: leoli@freescale.com
  1469. P: Zhang Wei
  1470. M: zw@zh-kernel.org
  1471. L: linuxppc-embedded@ozlabs.org
  1472. L: linux-kernel@vger.kernel.org
  1473. S: Maintained
  1474. FREESCALE I2C CPM DRIVER
  1475. P: Jochen Friedrich
  1476. M: jochen@scram.de
  1477. L: linuxppc-dev@ozlabs.org
  1478. L: i2c@lm-sensors.org
  1479. S: Maintained
  1480. FREESCALE SOC FS_ENET DRIVER
  1481. P: Pantelis Antoniou
  1482. M: pantelis.antoniou@gmail.com
  1483. P: Vitaly Bordug
  1484. M: vbordug@ru.mvista.com
  1485. L: linuxppc-dev@ozlabs.org
  1486. L: netdev@vger.kernel.org
  1487. S: Maintained
  1488. FREESCALE QUICC ENGINE LIBRARY
  1489. P: Timur Tabi
  1490. M: timur@freescale.com
  1491. L: linuxppc-dev@ozlabs.org
  1492. S: Supported
  1493. FREESCALE HIGHSPEED USB DEVICE DRIVER
  1494. P: Li Yang
  1495. M: leoli@freescale.com
  1496. L: linux-usb@vger.kernel.org
  1497. L: linuxppc-dev@ozlabs.org
  1498. S: Maintained
  1499. FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
  1500. P: Li Yang
  1501. M: leoli@freescale.com
  1502. L: netdev@vger.kernel.org
  1503. L: linuxppc-dev@ozlabs.org
  1504. S: Maintained
  1505. FREESCALE QUICC ENGINE UCC UART DRIVER
  1506. P: Timur Tabi
  1507. M: timur@freescale.com
  1508. L: linuxppc-dev@ozlabs.org
  1509. S: Supported
  1510. FREESCALE SOC SOUND DRIVERS
  1511. P: Timur Tabi
  1512. M: timur@freescale.com
  1513. L: alsa-devel@alsa-project.org
  1514. L: linuxppc-dev@ozlabs.org
  1515. S: Supported
  1516. FREEVXFS FILESYSTEM
  1517. P: Christoph Hellwig
  1518. M: hch@infradead.org
  1519. W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
  1520. S: Maintained
  1521. FTRACE
  1522. P: Steven Rostedt
  1523. M: srostedt@redhat.com
  1524. S: Maintained
  1525. FUJITSU FR-V (FRV) PORT
  1526. P: David Howells
  1527. M: dhowells@redhat.com
  1528. S: Maintained
  1529. FUJITSU LAPTOP EXTRAS
  1530. P: Jonathan Woithe
  1531. M: jwoithe@physics.adelaide.edu.au
  1532. L: linux-acpi@vger.kernel.org
  1533. S: Maintained
  1534. FUSE: FILESYSTEM IN USERSPACE
  1535. P: Miklos Szeredi
  1536. M: miklos@szeredi.hu
  1537. L: fuse-devel@lists.sourceforge.net
  1538. W: http://fuse.sourceforge.net/
  1539. S: Maintained
  1540. FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
  1541. P: Rik Faith
  1542. M: faith@cs.unc.edu
  1543. L: linux-scsi@vger.kernel.org
  1544. S: Odd Fixes (e.g., new signatures)
  1545. GDT SCSI DISK ARRAY CONTROLLER DRIVER
  1546. P: Achim Leubner
  1547. M: achim_leubner@adaptec.com
  1548. L: linux-scsi@vger.kernel.org
  1549. W: http://www.icp-vortex.com/
  1550. S: Supported
  1551. GENERIC GPIO I2C DRIVER
  1552. P: Haavard Skinnemoen
  1553. M: hskinnemoen@atmel.com
  1554. S: Supported
  1555. GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
  1556. P: Krzysztof Halasa
  1557. M: khc@pm.waw.pl
  1558. W: http://www.kernel.org/pub/linux/utils/net/hdlc/
  1559. S: Maintained
  1560. GFS2 FILE SYSTEM
  1561. P: Steven Whitehouse
  1562. M: swhiteho@redhat.com
  1563. L: cluster-devel@redhat.com
  1564. W: http://sources.redhat.com/cluster/
  1565. T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
  1566. T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
  1567. S: Supported
  1568. GIGASET ISDN DRIVERS
  1569. P: Hansjoerg Lipp
  1570. M: hjlipp@web.de
  1571. P: Tilman Schmidt
  1572. M: tilman@imap.cc
  1573. L: gigaset307x-common@lists.sourceforge.net
  1574. W: http://gigaset307x.sourceforge.net/
  1575. S: Maintained
  1576. HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
  1577. P: Robert Love
  1578. M: rlove@rlove.org
  1579. M: linux-kernel@vger.kernel.org
  1580. W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
  1581. S: Maintained
  1582. HARDWARE MONITORING
  1583. L: lm-sensors@lm-sensors.org
  1584. W: http://www.lm-sensors.org/
  1585. S: Orphan
  1586. HARDWARE RANDOM NUMBER GENERATOR CORE
  1587. S: Orphan
  1588. HARMONY SOUND DRIVER
  1589. P: Kyle McMartin
  1590. M: kyle@mcmartin.ca
  1591. L: linux-parisc@vger.kernel.org
  1592. S: Maintained
  1593. HAYES ESP SERIAL DRIVER
  1594. P: Andrew J. Robinson
  1595. M: arobinso@nyx.net
  1596. L: linux-kernel@vger.kernel.org
  1597. W: http://www.nyx.net/~arobinso
  1598. S: Maintained
  1599. HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
  1600. P: Chirag Kantharia
  1601. M: chirag.kantharia@hp.com
  1602. L: iss_storagedev@hp.com
  1603. S: Maintained
  1604. HEWLETT-PACKARD SMART2 RAID DRIVER
  1605. P: Chirag Kantharia
  1606. M: chirag.kantharia@hp.com
  1607. L: iss_storagedev@hp.com
  1608. S: Maintained
  1609. HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
  1610. P: Mike Miller
  1611. M: mike.miller@hp.com
  1612. L: iss_storagedev@hp.com
  1613. S: Supported
  1614. HFS FILESYSTEM
  1615. P: Roman Zippel
  1616. M: zippel@linux-m68k.org
  1617. L: linux-kernel@vger.kernel.org
  1618. S: Maintained
  1619. HGA FRAMEBUFFER DRIVER
  1620. P: Ferenc Bakonyi
  1621. M: fero@drama.obuda.kando.hu
  1622. L: linux-nvidia@lists.surfsouth.com
  1623. W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
  1624. S: Maintained
  1625. HIBERNATION (aka Software Suspend, aka swsusp)
  1626. P: Pavel Machek
  1627. M: pavel@suse.cz
  1628. P: Rafael J. Wysocki
  1629. M: rjw@sisk.pl
  1630. L: linux-pm@lists.linux-foundation.org
  1631. S: Supported
  1632. HID CORE LAYER
  1633. P: Jiri Kosina
  1634. M: jkosina@suse.cz
  1635. L: linux-input@vger.kernel.org
  1636. T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
  1637. S: Maintained
  1638. HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
  1639. P: Thomas Gleixner
  1640. M: tglx@linutronix.de
  1641. L: linux-kernel@vger.kernel.org
  1642. S: Maintained
  1643. HIGH-SPEED SCC DRIVER FOR AX.25
  1644. P: Klaus Kudielka
  1645. M: klaus.kudielka@ieee.org
  1646. L: linux-hams@vger.kernel.org
  1647. W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
  1648. S: Maintained
  1649. HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
  1650. P: HighPoint Linux Team
  1651. M: linux@highpoint-tech.com
  1652. W: http://www.highpoint-tech.com
  1653. S: Supported
  1654. HIPPI
  1655. P: Jes Sorensen
  1656. M: jes@trained-monkey.org
  1657. L: linux-hippi@sunsite.dk
  1658. S: Maintained
  1659. HOST AP DRIVER
  1660. P: Jouni Malinen
  1661. M: j@w1.fi
  1662. L: hostap@shmoo.com (subscribers-only)
  1663. L: linux-wireless@vger.kernel.org
  1664. W: http://hostap.epitest.fi/
  1665. S: Maintained
  1666. HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
  1667. P: Carlos Corbacho
  1668. M: carlos@strangeworlds.co.uk
  1669. S: Odd Fixes
  1670. HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
  1671. P: Jaroslav Kysela
  1672. M: perex@perex.cz
  1673. S: Maintained
  1674. HPET: High Precision Event Timers driver (drivers/char/hpet.c)
  1675. P: Clemens Ladisch
  1676. M: clemens@ladisch.de
  1677. S: Maintained
  1678. HPET: i386
  1679. P: Venkatesh Pallipadi (Venki)
  1680. M: venkatesh.pallipadi@intel.com
  1681. S: Maintained
  1682. HPET: x86_64
  1683. P: Vojtech Pavlik
  1684. M: vojtech@suse.cz
  1685. S: Maintained
  1686. HPET: ACPI hpet.c
  1687. P: Bob Picco
  1688. M: bob.picco@hp.com
  1689. S: Maintained
  1690. HPFS FILESYSTEM
  1691. P: Mikulas Patocka
  1692. M: mikulas@artax.karlin.mff.cuni.cz
  1693. W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
  1694. S: Maintained
  1695. HTCPEN TOUCHSCREEN DRIVER
  1696. P: Pau Oliva Fora
  1697. M: pof@eslack.org
  1698. L: linux-input@vger.kernel.org
  1699. S: Maintained
  1700. HUGETLB FILESYSTEM
  1701. P: William Irwin
  1702. M: wli@holomorphy.com
  1703. S: Maintained
  1704. I2C/SMBUS STUB DRIVER
  1705. P: Mark M. Hoffman
  1706. M: mhoffman@lightlink.com
  1707. L: i2c@lm-sensors.org
  1708. S: Maintained
  1709. I2C SUBSYSTEM
  1710. P: Jean Delvare (PC drivers, core)
  1711. M: khali@linux-fr.org
  1712. P: Ben Dooks (embedded platforms)
  1713. M: ben-linux@fluff.org
  1714. L: i2c@lm-sensors.org
  1715. T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
  1716. S: Maintained
  1717. I2C-TINY-USB DRIVER
  1718. P: Till Harbaum
  1719. M: till@harbaum.org
  1720. L: i2c@lm-sensors.org
  1721. T: http://www.harbaum.org/till/i2c_tiny_usb
  1722. S: Maintained
  1723. i386 BOOT CODE
  1724. P: H. Peter Anvin
  1725. M: hpa@zytor.com
  1726. L: Linux-Kernel@vger.kernel.org
  1727. S: Maintained
  1728. i386 SETUP CODE / CPU ERRATA WORKAROUNDS
  1729. P: H. Peter Anvin
  1730. M: hpa@zytor.com
  1731. T: git.kernel.org:/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
  1732. S: Maintained
  1733. IA64 (Itanium) PLATFORM
  1734. P: Tony Luck
  1735. M: tony.luck@intel.com
  1736. L: linux-ia64@vger.kernel.org
  1737. W: http://www.ia64-linux.org/
  1738. T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
  1739. S: Maintained
  1740. IBM MCA SCSI SUBSYSTEM DRIVER
  1741. P: Michael Lang
  1742. M: langa2@kph.uni-mainz.de
  1743. W: http://www.uni-mainz.de/~langm000/linux.html
  1744. S: Maintained
  1745. IBM Power Linux RAID adapter
  1746. P: Brian King
  1747. M: brking@us.ibm.com
  1748. S: Supported
  1749. IBM ServeRAID RAID DRIVER
  1750. P: Jack Hammer
  1751. P: Dave Jeffery
  1752. M: ipslinux@adaptec.com
  1753. W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
  1754. S: Supported
  1755. IDE SUBSYSTEM
  1756. P: Bartlomiej Zolnierkiewicz
  1757. M: bzolnier@gmail.com
  1758. L: linux-ide@vger.kernel.org
  1759. T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
  1760. S: Maintained
  1761. IDE/ATAPI CDROM DRIVER
  1762. P: Borislav Petkov
  1763. M: petkovbb@gmail.com
  1764. L: linux-ide@vger.kernel.org
  1765. S: Maintained
  1766. IDE/ATAPI FLOPPY DRIVERS
  1767. P: Paul Bristow
  1768. M: Paul Bristow <paul@paulbristow.net>
  1769. W: http://paulbristow.net/linux/idefloppy.html
  1770. L: linux-kernel@vger.kernel.org
  1771. S: Maintained
  1772. IDE/ATAPI TAPE DRIVERS
  1773. P: Gadi Oxman
  1774. M: Gadi Oxman <gadio@netvision.net.il>
  1775. L: linux-kernel@vger.kernel.org
  1776. S: Maintained
  1777. IDE-SCSI DRIVER
  1778. L: linux-ide@vger.kernel.org
  1779. L: linux-scsi@vger.kernel.org
  1780. S: Orphan
  1781. IEEE 1394 SUBSYSTEM (drivers/ieee1394)
  1782. P: Ben Collins
  1783. M: ben.collins@ubuntu.com
  1784. P: Stefan Richter
  1785. M: stefanr@s5r6.in-berlin.de
  1786. L: linux1394-devel@lists.sourceforge.net
  1787. W: http://www.linux1394.org/
  1788. T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
  1789. S: Maintained
  1790. IEEE 1394 RAW I/O DRIVER (raw1394)
  1791. P: Dan Dennedy
  1792. M: dan@dennedy.org
  1793. P: Stefan Richter
  1794. M: stefanr@s5r6.in-berlin.de
  1795. L: linux1394-devel@lists.sourceforge.net
  1796. S: Maintained
  1797. IMS TWINTURBO FRAMEBUFFER DRIVER
  1798. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  1799. S: Orphan
  1800. INFINIBAND SUBSYSTEM
  1801. P: Roland Dreier
  1802. M: rolandd@cisco.com
  1803. P: Sean Hefty
  1804. M: sean.hefty@intel.com
  1805. P: Hal Rosenstock
  1806. M: hal.rosenstock@gmail.com
  1807. L: general@lists.openfabrics.org
  1808. W: http://www.openib.org/
  1809. T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
  1810. S: Supported
  1811. INOTIFY
  1812. P: John McCutchan
  1813. M: ttb@tentacle.dhs.org
  1814. P: Robert Love
  1815. M: rml@novell.com
  1816. L: linux-kernel@vger.kernel.org
  1817. S: Maintained
  1818. INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
  1819. P: Dmitry Torokhov
  1820. M: dmitry.torokhov@gmail.com
  1821. M: dtor@mail.ru
  1822. L: linux-input@vger.kernel.org
  1823. T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
  1824. S: Maintained
  1825. INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
  1826. P: Sylvain Meyer
  1827. M: sylvain.meyer@worldonline.fr
  1828. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  1829. S: Maintained
  1830. INTEL 810/815 FRAMEBUFFER DRIVER
  1831. P: Antonino Daplas
  1832. M: adaplas@gmail.com
  1833. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  1834. S: Maintained
  1835. INTEL IA32 MICROCODE UPDATE SUPPORT
  1836. P: Tigran Aivazian
  1837. M: tigran@aivazian.fsnet.co.uk
  1838. S: Maintained
  1839. INTEL I/OAT DMA DRIVER
  1840. P: Maciej Sosnowski
  1841. M: maciej.sosnowski@intel.com
  1842. L: linux-kernel@vger.kernel.org
  1843. S: Supported
  1844. INTEL IOP-ADMA DMA DRIVER
  1845. P: Dan Williams
  1846. M: dan.j.williams@intel.com
  1847. L: linux-kernel@vger.kernel.org
  1848. S: Supported
  1849. INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
  1850. P: Deepak Saxena
  1851. M: dsaxena@plexity.net
  1852. S: Maintained
  1853. INTEL IXP2000 ETHERNET DRIVER
  1854. P: Lennert Buytenhek
  1855. M: kernel@wantstofly.org
  1856. L: netdev@vger.kernel.org
  1857. S: Maintained
  1858. INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
  1859. P: Jeff Kirsher
  1860. M: jeffrey.t.kirsher@intel.com
  1861. P: Jesse Brandeburg
  1862. M: jesse.brandeburg@intel.com
  1863. P: Bruce Allan
  1864. M: bruce.w.allan@intel.com
  1865. P: PJ Waskiewicz
  1866. M: peter.p.waskiewicz.jr@intel.com
  1867. P: John Ronciak
  1868. M: john.ronciak@intel.com
  1869. L: e1000-devel@lists.sourceforge.net
  1870. W: http://e1000.sourceforge.net/
  1871. S: Supported
  1872. INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
  1873. P: Zhu Yi
  1874. M: yi.zhu@intel.com
  1875. P: James Ketrenos
  1876. M: jketreno@linux.intel.com
  1877. P: Reinette Chatre
  1878. M: reinette.chatre@intel.com
  1879. L: linux-wireless@vger.kernel.org
  1880. L: ipw2100-devel@lists.sourceforge.net
  1881. W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
  1882. W: http://ipw2100.sourceforge.net
  1883. S: Supported
  1884. INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
  1885. P: Zhu Yi
  1886. M: yi.zhu@intel.com
  1887. P: James Ketrenos
  1888. M: jketreno@linux.intel.com
  1889. P: Reinette Chatre
  1890. M: reinette.chatre@intel.com
  1891. L: linux-wireless@vger.kernel.org
  1892. L: ipw2100-devel@lists.sourceforge.net
  1893. W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
  1894. W: http://ipw2200.sourceforge.net
  1895. S: Supported
  1896. INTEL WIRELESS WIFI LINK (iwlwifi)
  1897. P: Zhu Yi
  1898. M: yi.zhu@intel.com
  1899. P: Reinette Chatre
  1900. M: reinette.chatre@intel.com
  1901. L: linux-wireless@vger.kernel.org
  1902. L: ipw3945-devel@lists.sourceforge.net
  1903. W: http://intellinuxwireless.org
  1904. T: git kernel.org:/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
  1905. S: Supported
  1906. IOC3 ETHERNET DRIVER
  1907. P: Ralf Baechle
  1908. M: ralf@linux-mips.org
  1909. L: linux-mips@linux-mips.org
  1910. S: Maintained
  1911. IOC3 SERIAL DRIVER
  1912. P: Pat Gefre
  1913. M: pfg@sgi.com
  1914. L: linux-mips@linux-mips.org
  1915. S: Maintained
  1916. IP MASQUERADING
  1917. P: Juanjo Ciarlante
  1918. M: jjciarla@raiz.uncu.edu.ar
  1919. S: Maintained
  1920. IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
  1921. P: Francois Romieu
  1922. M: romieu@fr.zoreil.com
  1923. P: Sorbica Shieh
  1924. M: sorbica@icplus.com.tw
  1925. P: Jesse Huang
  1926. M: jesse@icplus.com.tw
  1927. L: netdev@vger.kernel.org
  1928. S: Maintained
  1929. IPATH DRIVER
  1930. P: Ralph Campbell
  1931. M: infinipath@qlogic.com
  1932. L: general@lists.openfabrics.org
  1933. T: git git://git.qlogic.com/ipath-linux-2.6
  1934. S: Supported
  1935. IPMI SUBSYSTEM
  1936. P: Corey Minyard
  1937. M: minyard@acm.org
  1938. L: openipmi-developer@lists.sourceforge.net
  1939. W: http://openipmi.sourceforge.net/
  1940. S: Supported
  1941. IPS SCSI RAID DRIVER
  1942. P: Adaptec OEM Raid Solutions
  1943. M: aacraid@adaptec.com
  1944. L: linux-scsi@vger.kernel.org
  1945. W: http://www.adaptec.com/
  1946. S: Maintained
  1947. IPVS
  1948. P: Wensong Zhang
  1949. M: wensong@linux-vs.org
  1950. P: Simon Horman
  1951. M: horms@verge.net.au
  1952. P: Julian Anastasov
  1953. M: ja@ssi.bg
  1954. L: netdev@vger.kernel.org
  1955. L: lvs-devel@vger.kernel.org
  1956. S: Maintained
  1957. IPWIRELESS DRIVER
  1958. P: Jiri Kosina
  1959. M: jkosina@suse.cz
  1960. P: David Sterba
  1961. M: dsterba@suse.cz
  1962. S: Maintained
  1963. T: git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
  1964. IPX NETWORK LAYER
  1965. P: Arnaldo Carvalho de Melo
  1966. M: acme@ghostprotocols.net
  1967. L: netdev@vger.kernel.org
  1968. S: Maintained
  1969. IRDA SUBSYSTEM
  1970. P: Samuel Ortiz
  1971. M: samuel@sortiz.org
  1972. L: irda-users@lists.sourceforge.net (subscribers-only)
  1973. W: http://irda.sourceforge.net/
  1974. S: Maintained
  1975. ISAPNP
  1976. P: Jaroslav Kysela
  1977. M: perex@perex.cz
  1978. S: Maintained
  1979. ISCSI
  1980. P: Mike Christie
  1981. M: michaelc@cs.wisc.edu
  1982. L: open-iscsi@googlegroups.com
  1983. W: www.open-iscsi.org
  1984. T: git kernel.org:/pub/scm/linux/kernel/mnc/linux-2.6-iscsi.git
  1985. S: Maintained
  1986. ISDN SUBSYSTEM
  1987. P: Karsten Keil
  1988. M: kkeil@suse.de
  1989. L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
  1990. W: http://www.isdn4linux.de
  1991. T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
  1992. S: Maintained
  1993. ISDN SUBSYSTEM (Eicon active card driver)
  1994. P: Armin Schindler
  1995. M: mac@melware.de
  1996. L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
  1997. W: http://www.melware.de
  1998. S: Maintained
  1999. IVTV VIDEO4LINUX DRIVER
  2000. P: Hans Verkuil
  2001. M: hverkuil@xs4all.nl
  2002. L: ivtv-devel@ivtvdriver.org
  2003. L: ivtv-users@ivtvdriver.org
  2004. L: video4linux-list@redhat.com
  2005. W: http://www.ivtvdriver.org
  2006. S: Maintained
  2007. JFS FILESYSTEM
  2008. P: Dave Kleikamp
  2009. M: shaggy@austin.ibm.com
  2010. L: jfs-discussion@lists.sourceforge.net
  2011. W: http://jfs.sourceforge.net/
  2012. T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
  2013. S: Supported
  2014. JME NETWORK DRIVER
  2015. P: Guo-Fu Tseng
  2016. M: cooldavid@cooldavid.org
  2017. L: netdev@vger.kernel.org
  2018. S: Maintained
  2019. JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
  2020. P: David Woodhouse
  2021. M: dwmw2@infradead.org
  2022. L: linux-mtd@lists.infradead.org
  2023. W: http://www.linux-mtd.infradead.org/doc/jffs2.html
  2024. S: Maintained
  2025. JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
  2026. P: Stephen Tweedie, Andrew Morton
  2027. M: sct@redhat.com, akpm@linux-foundation.org
  2028. L: linux-ext4@vger.kernel.org
  2029. S: Maintained
  2030. K8TEMP HARDWARE MONITORING DRIVER
  2031. P: Rudolf Marek
  2032. M: r.marek@assembler.cz
  2033. L: lm-sensors@lm-sensors.org
  2034. S: Maintained
  2035. KCONFIG
  2036. P: Roman Zippel
  2037. M: zippel@linux-m68k.org
  2038. L: linux-kbuild@vger.kernel.org
  2039. S: Maintained
  2040. KDUMP
  2041. P: Vivek Goyal
  2042. M: vgoyal@redhat.com
  2043. P: Haren Myneni
  2044. M: hbabu@us.ibm.com
  2045. L: kexec@lists.infradead.org
  2046. L: linux-kernel@vger.kernel.org
  2047. W: http://lse.sourceforge.net/kdump/
  2048. S: Maintained
  2049. KERNEL AUTOMOUNTER (AUTOFS)
  2050. P: H. Peter Anvin
  2051. M: hpa@zytor.com
  2052. L: autofs@linux.kernel.org
  2053. S: Odd Fixes
  2054. KERNEL AUTOMOUNTER v4 (AUTOFS4)
  2055. P: Ian Kent
  2056. M: raven@themaw.net
  2057. L: autofs@linux.kernel.org
  2058. S: Maintained
  2059. KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
  2060. P: Sam Ravnborg
  2061. M: sam@ravnborg.org
  2062. T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild-next.git
  2063. T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
  2064. L: linux-kbuild@vger.kernel.org
  2065. S: Maintained
  2066. KERNEL JANITORS
  2067. P: Several
  2068. L: kernel-janitors@vger.kernel.org
  2069. W: http://www.kerneljanitors.org/
  2070. S: Maintained
  2071. KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
  2072. P: J. Bruce Fields
  2073. M: bfields@fieldses.org
  2074. P: Neil Brown
  2075. M: neilb@suse.de
  2076. L: linux-nfs@vger.kernel.org
  2077. W: http://nfs.sourceforge.net/
  2078. S: Supported
  2079. KERNEL VIRTUAL MACHINE (KVM)
  2080. P: Avi Kivity
  2081. M: avi@redhat.com
  2082. L: kvm@vger.kernel.org
  2083. W: http://kvm.qumranet.com
  2084. S: Supported
  2085. KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
  2086. P: Joerg Roedel
  2087. M: joerg.roedel@amd.com
  2088. L: kvm@vger.kernel.org
  2089. W: http://kvm.qumranet.com
  2090. S: Supported
  2091. KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
  2092. P: Hollis Blanchard
  2093. M: hollisb@us.ibm.com
  2094. L: kvm-ppc@vger.kernel.org
  2095. W: http://kvm.qumranet.com
  2096. S: Supported
  2097. KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
  2098. P: Anthony Xu
  2099. M: anthony.xu@intel.com
  2100. P: Xiantao Zhang
  2101. M: xiantao.zhang@intel.com
  2102. L: kvm-ia64@vger.kernel.org
  2103. W: http://kvm.qumranet.com
  2104. S: Supported
  2105. KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
  2106. P: Carsten Otte
  2107. M: cotte@de.ibm.com
  2108. P: Christian Borntraeger
  2109. M: borntraeger@de.ibm.com
  2110. M: linux390@de.ibm.com
  2111. L: linux-s390@vger.kernel.org
  2112. W: http://www.ibm.com/developerworks/linux/linux390/
  2113. S: Supported
  2114. KEXEC
  2115. P: Eric Biederman
  2116. M: ebiederm@xmission.com
  2117. W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
  2118. L: linux-kernel@vger.kernel.org
  2119. L: kexec@lists.infradead.org
  2120. S: Maintained
  2121. KGDB
  2122. P: Jason Wessel
  2123. M: jason.wessel@windriver.com
  2124. L: kgdb-bugreport@lists.sourceforge.net
  2125. S: Maintained
  2126. KPROBES
  2127. P: Ananth N Mavinakayanahalli
  2128. M: ananth@in.ibm.com
  2129. P: Anil S Keshavamurthy
  2130. M: anil.s.keshavamurthy@intel.com
  2131. P: David S. Miller
  2132. M: davem@davemloft.net
  2133. P: Masami Hiramatsu
  2134. M: mhiramat@redhat.com
  2135. L: linux-kernel@vger.kernel.org
  2136. S: Maintained
  2137. KS0108 LCD CONTROLLER DRIVER
  2138. P: Miguel Ojeda Sandonis
  2139. M: miguel.ojeda.sandonis@gmail.com
  2140. L: linux-kernel@vger.kernel.org
  2141. W: http://miguelojeda.es/auxdisplay.htm
  2142. W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
  2143. S: Maintained
  2144. LAPB module
  2145. L: linux-x25@vger.kernel.org
  2146. S: Orphan
  2147. LASI 53c700 driver for PARISC
  2148. P: James E.J. Bottomley
  2149. M: James.Bottomley@HansenPartnership.com
  2150. L: linux-scsi@vger.kernel.org
  2151. S: Maintained
  2152. LED SUBSYSTEM
  2153. P: Richard Purdie
  2154. M: rpurdie@rpsys.net
  2155. S: Maintained
  2156. LEGO USB Tower driver
  2157. P: Juergen Stuber
  2158. M: starblue@users.sourceforge.net
  2159. L: legousb-devel@lists.sourceforge.net
  2160. W: http://legousb.sourceforge.net/
  2161. S: Maintained
  2162. LGUEST
  2163. P: Rusty Russell
  2164. M: rusty@rustcorp.com.au
  2165. L: lguest@ozlabs.org
  2166. W: http://lguest.ozlabs.org/
  2167. S: Maintained
  2168. LINUX FOR IBM pSERIES (RS/6000)
  2169. P: Paul Mackerras
  2170. M: paulus@au.ibm.com
  2171. W: http://www.ibm.com/linux/ltc/projects/ppc
  2172. S: Supported
  2173. LINUX FOR NCR VOYAGER
  2174. P: James Bottomley
  2175. M: James.Bottomley@HansenPartnership.com
  2176. W: http://www.hansenpartnership.com/voyager
  2177. S: Maintained
  2178. LINUX FOR POWERPC (32-BIT AND 64-BIT)
  2179. P: Paul Mackerras
  2180. M: paulus@samba.org
  2181. P: Benjamin Herrenschmidt
  2182. M: benh@kernel.crashing.org
  2183. W: http://www.penguinppc.org/
  2184. L: linuxppc-dev@ozlabs.org
  2185. T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
  2186. S: Supported
  2187. LINUX FOR POWER MACINTOSH
  2188. P: Benjamin Herrenschmidt
  2189. M: benh@kernel.crashing.org
  2190. W: http://www.penguinppc.org/
  2191. L: linuxppc-dev@ozlabs.org
  2192. S: Maintained
  2193. LINUX FOR POWERPC EMBEDDED MPC5XXX
  2194. P: Sylvain Munaut
  2195. M: tnt@246tNt.com
  2196. P: Grant Likely
  2197. M: grant.likely@secretlab.ca
  2198. L: linuxppc-dev@ozlabs.org
  2199. S: Maintained
  2200. LINUX FOR POWERPC EMBEDDED PPC4XX
  2201. P: Josh Boyer
  2202. M: jwboyer@linux.vnet.ibm.com
  2203. P: Matt Porter
  2204. M: mporter@kernel.crashing.org
  2205. W: http://www.penguinppc.org/
  2206. L: linuxppc-dev@ozlabs.org
  2207. T: git kernel.org:/pub/scm/linux/kernel/git/jwboyer/powerpc.git
  2208. S: Maintained
  2209. LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
  2210. P: Grant Likely
  2211. M: grant.likely@secretlab.ca
  2212. W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
  2213. L: linuxppc-dev@ozlabs.org
  2214. S: Maintained
  2215. LINUX FOR POWERPC EMBEDDED PPC8XX
  2216. P: Vitaly Bordug
  2217. M: vitb@kernel.crashing.org
  2218. P: Marcelo Tosatti
  2219. M: marcelo@kvack.org
  2220. W: http://www.penguinppc.org/
  2221. L: linuxppc-dev@ozlabs.org
  2222. S: Maintained
  2223. LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
  2224. P: Kumar Gala
  2225. M: galak@kernel.crashing.org
  2226. W: http://www.penguinppc.org/
  2227. L: linuxppc-dev@ozlabs.org
  2228. S: Maintained
  2229. LINUX FOR POWERPC PA SEMI PWRFICIENT
  2230. P: Olof Johansson
  2231. M: olof@lixom.net
  2232. W: http://www.pasemi.com/
  2233. L: linuxppc-dev@ozlabs.org
  2234. S: Supported
  2235. LINUX SECURITY MODULE (LSM) FRAMEWORK
  2236. P: Chris Wright
  2237. M: chrisw@sous-sol.org
  2238. L: linux-security-module@vger.kernel.org
  2239. T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
  2240. S: Supported
  2241. LLC (802.2)
  2242. P: Arnaldo Carvalho de Melo
  2243. M: acme@ghostprotocols.net
  2244. S: Maintained
  2245. LM83 HARDWARE MONITOR DRIVER
  2246. P: Jean Delvare
  2247. M: khali@linux-fr.org
  2248. L: lm-sensors@lm-sensors.org
  2249. S: Maintained
  2250. LM90 HARDWARE MONITOR DRIVER
  2251. P: Jean Delvare
  2252. M: khali@linux-fr.org
  2253. L: lm-sensors@lm-sensors.org
  2254. S: Maintained
  2255. LOCKDEP AND LOCKSTAT
  2256. P: Peter Zijlstra
  2257. M: peterz@infradead.org
  2258. P: Ingo Molnar
  2259. M: mingo@redhat.com
  2260. L: linux-kernel@vger.kernel.org
  2261. T: git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
  2262. S: Maintained
  2263. LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
  2264. P: Richard Russon (FlatCap)
  2265. M: ldm@flatcap.org
  2266. L: linux-ntfs-dev@lists.sourceforge.net
  2267. W: http://www.linux-ntfs.org/content/view/19/37/
  2268. S: Maintained
  2269. LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
  2270. P: Eric Moore
  2271. M: Eric.Moore@lsi.com
  2272. M: support@lsi.com
  2273. L: DL-MPTFusionLinux@lsi.com
  2274. L: linux-scsi@vger.kernel.org
  2275. W: http://www.lsilogic.com/support
  2276. S: Supported
  2277. LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
  2278. P: Matthew Wilcox
  2279. M: matthew@wil.cx
  2280. L: linux-scsi@vger.kernel.org
  2281. S: Maintained
  2282. M32R ARCHITECTURE
  2283. P: Hirokazu Takata
  2284. M: takata@linux-m32r.org
  2285. L: linux-m32r@ml.linux-m32r.org
  2286. L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
  2287. W: http://www.linux-m32r.org/
  2288. S: Maintained
  2289. M68K ARCHITECTURE
  2290. P: Geert Uytterhoeven
  2291. M: geert@linux-m68k.org
  2292. P: Roman Zippel
  2293. M: zippel@linux-m68k.org
  2294. L: linux-m68k@lists.linux-m68k.org
  2295. W: http://www.linux-m68k.org/
  2296. W: http://linux-m68k-cvs.ubb.ca/
  2297. S: Maintained
  2298. M68K ON APPLE MACINTOSH
  2299. P: Joshua Thompson
  2300. M: funaho@jurai.org
  2301. W: http://www.mac.linux-m68k.org/
  2302. L: linux-m68k@lists.linux-m68k.org
  2303. S: Maintained
  2304. M68K ON HP9000/300
  2305. P: Philip Blundell
  2306. M: philb@gnu.org
  2307. W: http://www.tazenda.demon.co.uk/phil/linux-hp
  2308. S: Maintained
  2309. MAC80211
  2310. P: Johannes Berg
  2311. M: johannes@sipsolutions.net
  2312. P: Michael Wu
  2313. M: flamingice@sourmilk.net
  2314. L: linux-wireless@vger.kernel.org
  2315. W: http://linuxwireless.org/
  2316. T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
  2317. S: Maintained
  2318. MAC80211 PID RATE CONTROL
  2319. P: Stefano Brivio
  2320. M: stefano.brivio@polimi.it
  2321. P: Mattias Nissler
  2322. M: mattias.nissler@gmx.de
  2323. L: linux-wireless@vger.kernel.org
  2324. W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
  2325. T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
  2326. S: Maintained
  2327. MACVLAN DRIVER
  2328. P: Patrick McHardy
  2329. M: kaber@trash.net
  2330. L: netdev@vger.kernel.org
  2331. S: Maintained
  2332. MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
  2333. P: Michael Kerrisk
  2334. M: mtk.manpages@gmail.com
  2335. W: http://www.kernel.org/doc/man-pages
  2336. L: linux-man@vger.kernel.org
  2337. S: Supported
  2338. MARVELL LIBERTAS WIRELESS DRIVER
  2339. P: Dan Williams
  2340. M: dcbw@redhat.com
  2341. L: libertas-dev@lists.infradead.org
  2342. S: Maintained
  2343. MARVELL MV643XX ETHERNET DRIVER
  2344. P: Lennert Buytenhek
  2345. M: buytenh@marvell.com
  2346. L: netdev@vger.kernel.org
  2347. S: Supported
  2348. MARVELL YUKON / SYSKONNECT DRIVER
  2349. P: Mirko Lindner
  2350. M: mlindner@syskonnect.de
  2351. P: Ralph Roesler
  2352. M: rroesler@syskonnect.de
  2353. W: http://www.syskonnect.com
  2354. S: Supported
  2355. MATROX FRAMEBUFFER DRIVER
  2356. P: Petr Vandrovec
  2357. M: vandrove@vc.cvut.cz
  2358. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  2359. S: Maintained
  2360. MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
  2361. P: Hans J. Koch
  2362. M: hjk@linutronix.de
  2363. L: lm-sensors@lm-sensors.org
  2364. S: Maintained
  2365. MEGARAID SCSI DRIVERS
  2366. P: Neela Syam Kolli
  2367. M: megaraidlinux@lsi.com
  2368. L: linux-scsi@vger.kernel.org
  2369. W: http://megaraid.lsilogic.com
  2370. S: Maintained
  2371. MEMORY MANAGEMENT
  2372. L: linux-mm@kvack.org
  2373. L: linux-kernel@vger.kernel.org
  2374. W: http://www.linux-mm.org
  2375. S: Maintained
  2376. MEMORY RESOURCE CONTROLLER
  2377. P: Balbir Singh
  2378. M: balbir@linux.vnet.ibm.com
  2379. P: Pavel Emelyanov
  2380. M: xemul@openvz.org
  2381. P: KAMEZAWA Hiroyuki
  2382. M: kamezawa.hiroyu@jp.fujitsu.com
  2383. L: linux-mm@kvack.org
  2384. L: linux-kernel@vger.kernel.org
  2385. S: Maintained
  2386. MEMORY TECHNOLOGY DEVICES (MTD)
  2387. P: David Woodhouse
  2388. M: dwmw2@infradead.org
  2389. W: http://www.linux-mtd.infradead.org/
  2390. L: linux-mtd@lists.infradead.org
  2391. T: git git://git.infradead.org/mtd-2.6.git
  2392. S: Maintained
  2393. MICROTEK X6 SCANNER
  2394. P: Oliver Neukum
  2395. M: oliver@neukum.name
  2396. S: Maintained
  2397. MIPS
  2398. P: Ralf Baechle
  2399. M: ralf@linux-mips.org
  2400. W: http://www.linux-mips.org/
  2401. L: linux-mips@linux-mips.org
  2402. T: git www.linux-mips.org:/pub/scm/linux.git
  2403. S: Supported
  2404. MISCELLANEOUS MCA-SUPPORT
  2405. P: James Bottomley
  2406. M: James.Bottomley@HansenPartnership.com
  2407. L: linux-kernel@vger.kernel.org
  2408. S: Maintained
  2409. MODULE SUPPORT
  2410. P: Rusty Russell
  2411. M: rusty@rustcorp.com.au
  2412. L: linux-kernel@vger.kernel.org
  2413. S: Maintained
  2414. MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
  2415. P: Stelian Pop
  2416. M: stelian@popies.net
  2417. W: http://popies.net/meye/
  2418. S: Maintained
  2419. MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
  2420. P: Pavel Pisa
  2421. M: ppisa@pikron.com
  2422. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  2423. S: Maintained
  2424. MOUSE AND MISC DEVICES [GENERAL]
  2425. P: Alessandro Rubini
  2426. M: rubini@ipvvis.unipv.it
  2427. L: linux-kernel@vger.kernel.org
  2428. S: Maintained
  2429. MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
  2430. P: Jiri Slaby
  2431. M: jirislaby@gmail.com
  2432. L: linux-kernel@vger.kernel.org
  2433. S: Maintained
  2434. MSI LAPTOP SUPPORT
  2435. P: Lennart Poettering
  2436. M: mzxreary@0pointer.de
  2437. W: https://tango.0pointer.de/mailman/listinfo/s270-linux
  2438. W: http://0pointer.de/lennart/tchibo.html
  2439. S: Maintained
  2440. MULTIFUNCTION DEVICES (MFD)
  2441. P: Samuel Ortiz
  2442. M: sameo@openedhand.com
  2443. L: linux-kernel@vger.kernel.org
  2444. S: Supported
  2445. MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
  2446. P: Pierre Ossman
  2447. M: drzeus-mmc@drzeus.cx
  2448. L: linux-kernel@vger.kernel.org
  2449. S: Maintained
  2450. MULTIMEDIA CARD (MMC) ETC. OVER SPI
  2451. P: David Brownell
  2452. M: dbrownell@users.sourceforge.net
  2453. L: linux-kernel@vger.kernel.org
  2454. S: Odd Fixes
  2455. MULTISOUND SOUND DRIVER
  2456. P: Andrew Veliath
  2457. M: andrewtv@usa.net
  2458. S: Maintained
  2459. MULTITECH MULTIPORT CARD (ISICOM)
  2460. P: Jiri Slaby
  2461. M: jirislaby@gmail.com
  2462. L: linux-kernel@vger.kernel.org
  2463. S: Maintained
  2464. MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
  2465. P: Felipe Balbi
  2466. M: felipe.balbi@nokia.com
  2467. L: linux-usb@vger.kernel.org
  2468. S: Maintained
  2469. MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
  2470. P: Andrew Gallatin
  2471. M: gallatin@myri.com
  2472. P: Brice Goglin
  2473. M: brice@myri.com
  2474. L: netdev@vger.kernel.org
  2475. W: http://www.myri.com/scs/download-Myri10GE.html
  2476. S: Supported
  2477. NATSEMI ETHERNET DRIVER (DP8381x)
  2478. P: Tim Hockin
  2479. M: thockin@hockin.org
  2480. S: Maintained
  2481. NCP FILESYSTEM
  2482. P: Petr Vandrovec
  2483. M: vandrove@vc.cvut.cz
  2484. L: linware@sh.cvut.cz
  2485. S: Maintained
  2486. NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
  2487. P: James E.J. Bottomley
  2488. M: James.Bottomley@HansenPartnership.com
  2489. L: linux-scsi@vger.kernel.org
  2490. S: Maintained
  2491. NETEFFECT IWARP RNIC DRIVER (IW_NES)
  2492. P: Faisal Latif
  2493. M: flatif@neteffect.com
  2494. P: Chien Tung
  2495. M: ctung@neteffect.com
  2496. L: general@lists.openfabrics.org
  2497. W: http://www.neteffect.com
  2498. S: Supported
  2499. F: drivers/infiniband/hw/nes/
  2500. NETEM NETWORK EMULATOR
  2501. P: Stephen Hemminger
  2502. M: shemminger@linux-foundation.org
  2503. L: netem@lists.linux-foundation.org
  2504. S: Maintained
  2505. NETERION (S2IO) Xframe 10GbE DRIVER
  2506. P: Ramkrishna Vepa
  2507. M: ram.vepa@neterion.com
  2508. P: Rastapur Santosh
  2509. M: santosh.rastapur@neterion.com
  2510. P: Sivakumar Subramani
  2511. M: sivakumar.subramani@neterion.com
  2512. P: Sreenivasa Honnur
  2513. M: sreenivasa.honnur@neterion.com
  2514. L: netdev@vger.kernel.org
  2515. W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/TitleIndex?anonymous
  2516. S: Supported
  2517. NETFILTER/IPTABLES/IPCHAINS
  2518. P: Rusty Russell
  2519. P: Marc Boucher
  2520. P: James Morris
  2521. P: Harald Welte
  2522. P: Jozsef Kadlecsik
  2523. P: Patrick McHardy
  2524. M: kaber@trash.net
  2525. L: netfilter-devel@vger.kernel.org
  2526. L: netfilter@vger.kernel.org
  2527. L: coreteam@netfilter.org
  2528. W: http://www.netfilter.org/
  2529. W: http://www.iptables.org/
  2530. S: Supported
  2531. NETLABEL
  2532. P: Paul Moore
  2533. M: paul.moore@hp.com
  2534. W: http://netlabel.sf.net
  2535. L: netdev@vger.kernel.org
  2536. S: Supported
  2537. NETROM NETWORK LAYER
  2538. P: Ralf Baechle
  2539. M: ralf@linux-mips.org
  2540. L: linux-hams@vger.kernel.org
  2541. W: http://www.linux-ax25.org/
  2542. S: Maintained
  2543. NETWORK BLOCK DEVICE (NBD)
  2544. P: Paul Clements
  2545. M: Paul.Clements@steeleye.com
  2546. S: Maintained
  2547. NETWORK DEVICE DRIVERS
  2548. P: Jeff Garzik
  2549. M: jgarzik@pobox.com
  2550. L: netdev@vger.kernel.org
  2551. T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
  2552. S: Maintained
  2553. NETWORKING [GENERAL]
  2554. P: Networking Team
  2555. M: netdev@vger.kernel.org
  2556. L: netdev@vger.kernel.org
  2557. W: http://linux-net.osdl.org/
  2558. S: Maintained
  2559. NETWORKING [IPv4/IPv6]
  2560. P: David S. Miller
  2561. M: davem@davemloft.net
  2562. P: Alexey Kuznetsov
  2563. M: kuznet@ms2.inr.ac.ru
  2564. P: Pekka Savola (ipv6)
  2565. M: pekkas@netcore.fi
  2566. P: James Morris
  2567. M: jmorris@namei.org
  2568. P: Hideaki YOSHIFUJI
  2569. M: yoshfuji@linux-ipv6.org
  2570. P: Patrick McHardy
  2571. M: kaber@trash.net
  2572. L: netdev@vger.kernel.org
  2573. T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
  2574. S: Maintained
  2575. NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
  2576. P: Paul Moore
  2577. M: paul.moore@hp.com
  2578. L: netdev@vger.kernel.org
  2579. S: Maintained
  2580. NETWORKING [WIRELESS]
  2581. P: John W. Linville
  2582. M: linville@tuxdriver.com
  2583. L: linux-wireless@vger.kernel.org
  2584. T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
  2585. S: Maintained
  2586. NETXEN (1/10) GbE SUPPORT
  2587. P: Dhananjay Phadke
  2588. M: dhananjay@netxen.com
  2589. L: netdev@vger.kernel.org
  2590. W: http://www.netxen.com
  2591. S: Supported
  2592. NFS, SUNRPC, AND LOCKD CLIENTS
  2593. P: Trond Myklebust
  2594. M: Trond.Myklebust@netapp.com
  2595. L: linux-nfs@vger.kernel.org
  2596. W: http://client.linux-nfs.org
  2597. T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
  2598. S: Maintained
  2599. NI5010 NETWORK DRIVER
  2600. P: Jan-Pascal van Best
  2601. M: janpascal@vanbest.org
  2602. P: Andreas Mohr
  2603. M: andi@lisas.de
  2604. L: netdev@vger.kernel.org
  2605. S: Maintained
  2606. NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
  2607. P: YOKOTA Hiroshi
  2608. M: yokota@netlab.is.tsukuba.ac.jp
  2609. W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
  2610. S: Maintained
  2611. NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
  2612. P: GOTO Masanori
  2613. M: gotom@debian.or.jp
  2614. P: YOKOTA Hiroshi
  2615. M: yokota@netlab.is.tsukuba.ac.jp
  2616. W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
  2617. S: Maintained
  2618. NTFS FILESYSTEM
  2619. P: Anton Altaparmakov
  2620. M: aia21@cantab.net
  2621. L: linux-ntfs-dev@lists.sourceforge.net
  2622. L: linux-kernel@vger.kernel.org
  2623. W: http://www.linux-ntfs.org/
  2624. T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
  2625. S: Maintained
  2626. NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
  2627. P: Antonino Daplas
  2628. M: adaplas@gmail.com
  2629. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  2630. S: Maintained
  2631. OMFS FILESYSTEM
  2632. P: Bob Copeland
  2633. M: me@bobcopeland.com
  2634. L: linux-karma-devel@lists.sourceforge.net
  2635. S: Maintained
  2636. OMNIKEY CARDMAN 4000 DRIVER
  2637. P: Harald Welte
  2638. M: laforge@gnumonks.org
  2639. S: Maintained
  2640. OMNIKEY CARDMAN 4040 DRIVER
  2641. P: Harald Welte
  2642. M: laforge@gnumonks.org
  2643. S: Maintained
  2644. OMNIVISION OV7670 SENSOR DRIVER
  2645. P: Jonathan Corbet
  2646. M: corbet@lwn.net
  2647. L: video4linux-list@redhat.com
  2648. S: Maintained
  2649. ONENAND FLASH DRIVER
  2650. P: Kyungmin Park
  2651. M: kyungmin.park@samsung.com
  2652. L: linux-mtd@lists.infradead.org
  2653. S: Maintained
  2654. ONSTREAM SCSI TAPE DRIVER
  2655. P: Willem Riede
  2656. M: osst@riede.org
  2657. L: osst-users@lists.sourceforge.net
  2658. L: linux-scsi@vger.kernel.org
  2659. S: Maintained
  2660. OPENCORES I2C BUS DRIVER
  2661. P: Peter Korsgaard
  2662. M: jacmet@sunsite.dk
  2663. L: i2c@lm-sensors.org
  2664. S: Maintained
  2665. OPROFILE
  2666. P: Robert Richter
  2667. M: robert.richter@amd.com
  2668. L: oprofile-list@lists.sf.net
  2669. S: Maintained
  2670. ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
  2671. P: Mark Fasheh
  2672. M: mfasheh@suse.com
  2673. P: Joel Becker
  2674. M: joel.becker@oracle.com
  2675. L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
  2676. W: http://oss.oracle.com/projects/ocfs2/
  2677. T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2.git
  2678. S: Supported
  2679. ORINOCO DRIVER
  2680. P: Pavel Roskin
  2681. M: proski@gnu.org
  2682. P: David Gibson
  2683. M: hermes@gibson.dropbear.id.au
  2684. L: linux-wireless@vger.kernel.org
  2685. L: orinoco-users@lists.sourceforge.net
  2686. L: orinoco-devel@lists.sourceforge.net
  2687. W: http://www.nongnu.org/orinoco/
  2688. S: Maintained
  2689. P54 WIRELESS DRIVER
  2690. P: Michael Wu
  2691. M: flamingice@sourmilk.net
  2692. L: linux-wireless@vger.kernel.org
  2693. W: http://prism54.org
  2694. T: git kernel.org:/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
  2695. S: Maintained
  2696. PA SEMI ETHERNET DRIVER
  2697. P: Olof Johansson
  2698. M: olof@lixom.net
  2699. L: netdev@vger.kernel.org
  2700. S: Maintained
  2701. PA SEMI SMBUS DRIVER
  2702. P: Olof Johansson
  2703. M: olof@lixom.net
  2704. L: i2c@lm-sensors.org
  2705. S: Maintained
  2706. PANASONIC MN10300/AM33 PORT
  2707. P: David Howells
  2708. M: dhowells@redhat.com
  2709. P: Koichi Yasutake
  2710. M: yasutake.koichi@jp.panasonic.com
  2711. L: linux-am33-list@redhat.com (moderated for non-subscribers)
  2712. W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
  2713. S: Maintained
  2714. PARALLEL PORT SUPPORT
  2715. L: linux-parport@lists.infradead.org (subscribers-only)
  2716. S: Orphan
  2717. PARAVIRT_OPS INTERFACE
  2718. P: Jeremy Fitzhardinge
  2719. M: jeremy@xensource.com
  2720. P: Chris Wright
  2721. M: chrisw@sous-sol.org
  2722. P: Zachary Amsden
  2723. M: zach@vmware.com
  2724. P: Rusty Russell
  2725. M: rusty@rustcorp.com.au
  2726. L: virtualization@lists.osdl.org
  2727. L: linux-kernel@vger.kernel.org
  2728. S: Supported
  2729. PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
  2730. P: Tim Waugh
  2731. M: tim@cyberelk.net
  2732. L: linux-parport@lists.infradead.org (subscribers-only)
  2733. W: http://www.torque.net/linux-pp.html
  2734. S: Maintained
  2735. PARISC ARCHITECTURE
  2736. P: Kyle McMartin
  2737. M: kyle@mcmartin.ca
  2738. P: Matthew Wilcox
  2739. M: matthew@wil.cx
  2740. P: Grant Grundler
  2741. M: grundler@parisc-linux.org
  2742. L: linux-parisc@vger.kernel.org
  2743. W: http://www.parisc-linux.org/
  2744. T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
  2745. S: Maintained
  2746. PC87360 HARDWARE MONITORING DRIVER
  2747. P: Jim Cromie
  2748. M: jim.cromie@gmail.com
  2749. L: lm-sensors@lm-sensors.org
  2750. S: Maintained
  2751. PC8736x GPIO DRIVER
  2752. P: Jim Cromie
  2753. M: jim.cromie@gmail.com
  2754. S: Maintained
  2755. PCI ERROR RECOVERY
  2756. P: Linas Vepstas
  2757. M: linas@austin.ibm.com
  2758. L: linux-kernel@vger.kernel.org
  2759. L: linux-pci@vger.kernel.org
  2760. S: Supported
  2761. PCI SUBSYSTEM
  2762. P: Jesse Barnes
  2763. M: jbarnes@virtuousgeek.org
  2764. L: linux-kernel@vger.kernel.org
  2765. L: linux-pci@vger.kernel.org
  2766. T: git kernel.org:/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
  2767. S: Supported
  2768. PCI HOTPLUG CORE
  2769. P: Kristen Carlson Accardi
  2770. M: kristen.c.accardi@intel.com
  2771. S: Supported
  2772. PCIE HOTPLUG DRIVER
  2773. P: Kristen Carlson Accardi
  2774. M: kristen.c.accardi@intel.com
  2775. L: linux-pci@vger.kernel.org
  2776. S: Supported
  2777. PCMCIA SUBSYSTEM
  2778. P: Linux PCMCIA Team
  2779. L: linux-pcmcia@lists.infradead.org
  2780. W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
  2781. T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
  2782. S: Maintained
  2783. PCNET32 NETWORK DRIVER
  2784. P: Don Fry
  2785. M: pcnet32@verizon.net
  2786. L: netdev@vger.kernel.org
  2787. S: Maintained
  2788. PER-TASK DELAY ACCOUNTING
  2789. P: Balbir Singh
  2790. M: balbir@linux.vnet.ibm.com
  2791. L: linux-kernel@vger.kernel.org
  2792. S: Maintained
  2793. PERSONALITY HANDLING
  2794. P: Christoph Hellwig
  2795. M: hch@infradead.org
  2796. L: linux-abi-devel@lists.sourceforge.net
  2797. S: Maintained
  2798. PHRAM MTD DRIVER
  2799. P: Joern Engel
  2800. M: joern@lazybastard.org
  2801. L: linux-mtd@lists.infradead.org
  2802. S: Maintained
  2803. PKTCDVD DRIVER
  2804. P: Peter Osterlund
  2805. M: petero2@telia.com
  2806. L: linux-kernel@vger.kernel.org
  2807. S: Maintained
  2808. POSIX CLOCKS and TIMERS
  2809. P: Thomas Gleixner
  2810. M: tglx@linutronix.de
  2811. L: linux-kernel@vger.kernel.org
  2812. S: Supported
  2813. POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
  2814. P: Anton Vorontsov
  2815. M: cbou@mail.ru
  2816. P: David Woodhouse
  2817. M: dwmw2@infradead.org
  2818. L: linux-kernel@vger.kernel.org
  2819. T: git git.infradead.org/battery-2.6.git
  2820. S: Maintained
  2821. PNP SUPPORT
  2822. P: Adam Belay
  2823. M: ambx1@neo.rr.com
  2824. S: Maintained
  2825. PNXxxxx I2C DRIVER
  2826. P: Vitaly Wool
  2827. M: vitalywool@gmail.com
  2828. L: i2c@lm-sensors.org
  2829. S: Maintained
  2830. PPP PROTOCOL DRIVERS AND COMPRESSORS
  2831. P: Paul Mackerras
  2832. M: paulus@samba.org
  2833. L: linux-ppp@vger.kernel.org
  2834. S: Maintained
  2835. PPP OVER ATM (RFC 2364)
  2836. P: Mitchell Blank Jr
  2837. M: mitch@sfgoth.com
  2838. S: Maintained
  2839. PPP OVER ETHERNET
  2840. P: Michal Ostrowski
  2841. M: mostrows@earthlink.net
  2842. S: Maintained
  2843. PPP OVER L2TP
  2844. P: James Chapman
  2845. M: jchapman@katalix.com
  2846. S: Maintained
  2847. PREEMPTIBLE KERNEL
  2848. P: Robert Love
  2849. M: rml@tech9.net
  2850. L: linux-kernel@vger.kernel.org
  2851. L: kpreempt-tech@lists.sourceforge.net
  2852. W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
  2853. S: Supported
  2854. PRISM54 WIRELESS DRIVER
  2855. P: Luis R. Rodriguez
  2856. M: mcgrof@gmail.com
  2857. L: linux-wireless@vger.kernel.org
  2858. W: http://prism54.org
  2859. S: Maintained
  2860. PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
  2861. P: Peter Denison
  2862. M: promise@pnd-pc.demon.co.uk
  2863. W: http://www.pnd-pc.demon.co.uk/promise/
  2864. S: Maintained
  2865. PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
  2866. P: Mikael Pettersson
  2867. M: mikpe@it.uu.se
  2868. L: linux-ide@vger.kernel.org
  2869. S: Maintained
  2870. PS3 NETWORK SUPPORT
  2871. P: Masakazu Mokuno
  2872. M: mokuno@sm.sony.co.jp
  2873. L: netdev@vger.kernel.org
  2874. L: cbe-oss-dev@ozlabs.org
  2875. S: Supported
  2876. PS3 PLATFORM SUPPORT
  2877. P: Geoff Levand
  2878. M: geoffrey.levand@am.sony.com
  2879. L: linuxppc-dev@ozlabs.org
  2880. L: cbe-oss-dev@ozlabs.org
  2881. S: Supported
  2882. PVRUSB2 VIDEO4LINUX DRIVER
  2883. P: Mike Isely
  2884. M: isely@pobox.com
  2885. L: pvrusb2@isely.net (subscribers-only)
  2886. L: video4linux-list@redhat.com
  2887. W: http://www.isely.net/pvrusb2/
  2888. S: Maintained
  2889. PXA2xx/PXA3xx SUPPORT
  2890. P: Eric Miao
  2891. M: eric.miao@marvell.com
  2892. P: Russell King
  2893. M: linux@arm.linux.org.uk
  2894. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  2895. S: Maintained
  2896. PXA MMCI DRIVER
  2897. S: Orphan
  2898. QLOGIC QLA2XXX FC-SCSI DRIVER
  2899. P: Andrew Vasquez
  2900. M: linux-driver@qlogic.com
  2901. L: linux-scsi@vger.kernel.org
  2902. S: Supported
  2903. QLOGIC QLA3XXX NETWORK DRIVER
  2904. P: Ron Mercer
  2905. M: linux-driver@qlogic.com
  2906. L: netdev@vger.kernel.org
  2907. S: Supported
  2908. QLOGIC QLGE 10Gb ETHERNET DRIVER
  2909. P: Ron Mercer
  2910. M: linux-driver@qlogic.com
  2911. M: ron.mercer@qlogic.com
  2912. L: netdev@vger.kernel.org
  2913. S: Supported
  2914. QNX4 FILESYSTEM
  2915. P: Anders Larsen
  2916. M: al@alarsen.net
  2917. L: linux-kernel@vger.kernel.org
  2918. W: http://www.alarsen.net/linux/qnx4fs/
  2919. S: Maintained
  2920. RADEON FRAMEBUFFER DISPLAY DRIVER
  2921. P: Benjamin Herrenschmidt
  2922. M: benh@kernel.crashing.org
  2923. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  2924. S: Maintained
  2925. RAGE128 FRAMEBUFFER DISPLAY DRIVER
  2926. P: Paul Mackerras
  2927. M: paulus@samba.org
  2928. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  2929. S: Maintained
  2930. RALINK RT2X00 WIRELESS LAN DRIVER
  2931. P: rt2x00 project
  2932. L: linux-wireless@vger.kernel.org
  2933. L: rt2400-devel@lists.sourceforge.net
  2934. W: http://rt2x00.serialmonkey.com/
  2935. S: Maintained
  2936. T: git kernel.org:/pub/scm/linux/kernel/git/ivd/rt2x00.git
  2937. F: drivers/net/wireless/rt2x00/
  2938. RAMDISK RAM BLOCK DEVICE DRIVER
  2939. P: Nick Piggin
  2940. M: npiggin@suse.de
  2941. S: Maintained
  2942. RANDOM NUMBER DRIVER
  2943. P: Matt Mackall
  2944. M: mpm@selenic.com
  2945. S: Maintained
  2946. RAPIDIO SUBSYSTEM
  2947. P: Matt Porter
  2948. M: mporter@kernel.crashing.org
  2949. L: linux-kernel@vger.kernel.org
  2950. S: Maintained
  2951. RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
  2952. P: Corey Thomas
  2953. M: coreythomas@charter.net
  2954. L: linux-wireless@vger.kernel.org
  2955. S: Maintained
  2956. RCUTORTURE MODULE
  2957. P: Josh Triplett
  2958. M: josh@freedesktop.org
  2959. L: linux-kernel@vger.kernel.org
  2960. S: Maintained
  2961. RDC R-321X SoC
  2962. P: Florian Fainelli
  2963. M: florian.fainelli@telecomint.eu
  2964. L: linux-kernel@vger.kernel.org
  2965. S: Maintained
  2966. RDC R6040 FAST ETHERNET DRIVER
  2967. P: Florian Fainelli
  2968. M: florian.fainelli@telecomint.eu
  2969. L: netdev@vger.kernel.org
  2970. S: Maintained
  2971. READ-COPY UPDATE (RCU)
  2972. P: Dipankar Sarma
  2973. M: dipankar@in.ibm.com
  2974. W: http://www.rdrop.com/users/paulmck/rclock/
  2975. L: linux-kernel@vger.kernel.org
  2976. S: Supported
  2977. REAL TIME CLOCK DRIVER
  2978. P: Paul Gortmaker
  2979. M: p_gortmaker@yahoo.com
  2980. L: linux-kernel@vger.kernel.org
  2981. S: Maintained
  2982. REAL TIME CLOCK (RTC) SUBSYSTEM
  2983. P: Alessandro Zummo
  2984. M: a.zummo@towertech.it
  2985. L: rtc-linux@googlegroups.com
  2986. S: Maintained
  2987. REISERFS FILE SYSTEM
  2988. L: reiserfs-devel@vger.kernel.org
  2989. S: Supported
  2990. RFKILL
  2991. P: Ivo van Doorn
  2992. M: IvDoorn@gmail.com
  2993. L: netdev@vger.kernel.org
  2994. S: Maintained
  2995. F: net/rfkill
  2996. RISCOM8 DRIVER
  2997. S: Orphan
  2998. ROCKETPORT DRIVER
  2999. P: Comtrol Corp.
  3000. W: http://www.comtrol.com
  3001. S: Maintained
  3002. ROSE NETWORK LAYER
  3003. P: Ralf Baechle
  3004. M: ralf@linux-mips.org
  3005. L: linux-hams@vger.kernel.org
  3006. W: http://www.linux-ax25.org/
  3007. S: Maintained
  3008. RTL818X WIRELESS DRIVER
  3009. P: Michael Wu
  3010. M: flamingice@sourmilk.net
  3011. P: Andrea Merello
  3012. M: andreamrl@tiscali.it
  3013. L: linux-wireless@vger.kernel.org
  3014. W: http://linuxwireless.org/
  3015. T: git kernel.org:/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
  3016. S: Maintained
  3017. S3 SAVAGE FRAMEBUFFER DRIVER
  3018. P: Antonino Daplas
  3019. M: adaplas@gmail.com
  3020. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  3021. S: Maintained
  3022. S390
  3023. P: Martin Schwidefsky
  3024. M: schwidefsky@de.ibm.com
  3025. P: Heiko Carstens
  3026. M: heiko.carstens@de.ibm.com
  3027. M: linux390@de.ibm.com
  3028. L: linux-s390@vger.kernel.org
  3029. W: http://www.ibm.com/developerworks/linux/linux390/
  3030. S: Supported
  3031. S390 NETWORK DRIVERS
  3032. P: Ursula Braun
  3033. M: ursula.braun@de.ibm.com
  3034. P: Frank Blaschka
  3035. M: blaschka@linux.vnet.ibm.com
  3036. M: linux390@de.ibm.com
  3037. L: linux-s390@vger.kernel.org
  3038. W: http://www.ibm.com/developerworks/linux/linux390/
  3039. S: Supported
  3040. S390 ZFCP DRIVER
  3041. P: Christof Schmitt
  3042. M: christof.schmitt@de.ibm.com
  3043. P: Martin Peschke
  3044. M: mp3@de.ibm.com
  3045. M: linux390@de.ibm.com
  3046. L: linux-s390@vger.kernel.org
  3047. W: http://www.ibm.com/developerworks/linux/linux390/
  3048. S: Supported
  3049. S390 IUCV NETWORK LAYER
  3050. P: Ursula Braun
  3051. M: ursula.braun@de.ibm.com
  3052. M: linux390@de.ibm.com
  3053. L: linux-s390@vger.kernel.org
  3054. W: http://www.ibm.com/developerworks/linux/linux390/
  3055. S: Supported
  3056. S3C24XX SD/MMC Driver
  3057. P: Ben Dooks
  3058. M: ben-linux@fluff.org
  3059. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  3060. L: linux-kernel@vger.kernel.org
  3061. S: Supported
  3062. SAA7146 VIDEO4LINUX-2 DRIVER
  3063. P: Michael Hunold
  3064. M: michael@mihu.de
  3065. W: http://www.mihu.de/linux/saa7146
  3066. S: Maintained
  3067. SC1200 WDT DRIVER
  3068. P: Zwane Mwaikambo
  3069. M: zwane@arm.linux.org.uk
  3070. S: Maintained
  3071. SCHEDULER
  3072. P: Ingo Molnar
  3073. M: mingo@elte.hu
  3074. P: Robert Love [the preemptible kernel bits]
  3075. M: rml@tech9.net
  3076. L: linux-kernel@vger.kernel.org
  3077. S: Maintained
  3078. SCSI CDROM DRIVER
  3079. P: Jens Axboe
  3080. M: axboe@kernel.dk
  3081. L: linux-scsi@vger.kernel.org
  3082. W: http://www.kernel.dk
  3083. S: Maintained
  3084. SCSI SG DRIVER
  3085. P: Doug Gilbert
  3086. M: dgilbert@interlog.com
  3087. L: linux-scsi@vger.kernel.org
  3088. W: http://www.torque.net/sg
  3089. S: Maintained
  3090. SCSI SUBSYSTEM
  3091. P: James E.J. Bottomley
  3092. M: James.Bottomley@HansenPartnership.com
  3093. L: linux-scsi@vger.kernel.org
  3094. T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
  3095. T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
  3096. T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
  3097. S: Maintained
  3098. SCSI TAPE DRIVER
  3099. P: Kai Mäkisara
  3100. M: Kai.Makisara@kolumbus.fi
  3101. L: linux-scsi@vger.kernel.org
  3102. S: Maintained
  3103. SCTP PROTOCOL
  3104. P: Vlad Yasevich
  3105. M: vladislav.yasevich@hp.com
  3106. P: Sridhar Samudrala
  3107. M: sri@us.ibm.com
  3108. L: linux-sctp@vger.kernel.org
  3109. W: http://lksctp.sourceforge.net
  3110. S: Supported
  3111. SCx200 CPU SUPPORT
  3112. P: Jim Cromie
  3113. M: jim.cromie@gmail.com
  3114. S: Odd Fixes
  3115. SCx200 GPIO DRIVER
  3116. P: Jim Cromie
  3117. M: jim.cromie@gmail.com
  3118. S: Maintained
  3119. SCx200 HRT CLOCKSOURCE DRIVER
  3120. P: Jim Cromie
  3121. M: jim.cromie@gmail.com
  3122. S: Maintained
  3123. SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
  3124. P: Sascha Sommer
  3125. M: saschasommer@freenet.de
  3126. L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
  3127. S: Maintained
  3128. SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
  3129. P: Pierre Ossman
  3130. M: drzeus-sdhci@drzeus.cx
  3131. L: sdhci-devel@list.drzeus.cx
  3132. S: Maintained
  3133. SECURITY CONTACT
  3134. P: Security Officers
  3135. M: security@kernel.org
  3136. S: Supported
  3137. SELINUX SECURITY MODULE
  3138. P: Stephen Smalley
  3139. M: sds@tycho.nsa.gov
  3140. P: James Morris
  3141. M: jmorris@namei.org
  3142. P: Eric Paris
  3143. M: eparis@parisplace.org
  3144. L: linux-kernel@vger.kernel.org (kernel issues)
  3145. L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
  3146. W: http://selinuxproject.org
  3147. T: git kernel.org:pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
  3148. S: Supported
  3149. SENSABLE PHANTOM
  3150. P: Jiri Slaby
  3151. M: jirislaby@gmail.com
  3152. S: Maintained
  3153. SERIAL ATA (SATA) SUBSYSTEM
  3154. P: Jeff Garzik
  3155. M: jgarzik@pobox.com
  3156. L: linux-ide@vger.kernel.org
  3157. T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
  3158. S: Supported
  3159. SFC NETWORK DRIVER
  3160. P: Steve Hodgson
  3161. P: Ben Hutchings
  3162. P: Robert Stonehouse
  3163. M: linux-net-drivers@solarflare.com
  3164. S: Supported
  3165. SGI GRU DRIVER
  3166. P: Jack Steiner
  3167. M: steiner@sgi.com
  3168. S: Maintained
  3169. SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
  3170. P: Pat Gefre
  3171. M: pfg@sgi.com
  3172. L: linux-ia64@vger.kernel.org
  3173. S: Supported
  3174. SGI VISUAL WORKSTATION 320 AND 540
  3175. P: Andrey Panin
  3176. M: pazke@donpac.ru
  3177. L: linux-visws-devel@lists.sf.net
  3178. W: http://linux-visws.sf.net
  3179. S: Maintained for 2.6.
  3180. SGI XP/XPC/XPNET DRIVER
  3181. P: Dean Nelson
  3182. M: dcn@sgi.com
  3183. S: Maintained
  3184. SHARP LH SUPPORT (LH7952X & LH7A40X)
  3185. P: Marc Singer
  3186. M: elf@buici.com
  3187. W: http://projects.buici.com/arm
  3188. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  3189. S: Maintained
  3190. SHPC HOTPLUG DRIVER
  3191. P: Kristen Carlson Accardi
  3192. M: kristen.c.accardi@intel.com
  3193. L: linux-pci@vger.kernel.org
  3194. S: Supported
  3195. SIMTEC EB110ATX (Chalice CATS)
  3196. P: Ben Dooks
  3197. P: Vincent Sanders
  3198. M: support@simtec.co.uk
  3199. W: http://www.simtec.co.uk/products/EB110ATX/
  3200. S: Supported
  3201. SIMTEC EB2410ITX (BAST)
  3202. P: Ben Dooks
  3203. P: Vincent Sanders
  3204. M: support@simtec.co.uk
  3205. W: http://www.simtec.co.uk/products/EB2410ITX/
  3206. S: Supported
  3207. SIS 190 ETHERNET DRIVER
  3208. P: Francois Romieu
  3209. M: romieu@fr.zoreil.com
  3210. L: netdev@vger.kernel.org
  3211. S: Maintained
  3212. SIS 900/7016 FAST ETHERNET DRIVER
  3213. P: Daniele Venzano
  3214. M: venza@brownhat.org
  3215. W: http://www.brownhat.org/sis900.html
  3216. L: netdev@vger.kernel.org
  3217. S: Maintained
  3218. SIS 96X I2C/SMBUS DRIVER
  3219. P: Mark M. Hoffman
  3220. M: mhoffman@lightlink.com
  3221. L: i2c@lm-sensors.org
  3222. S: Maintained
  3223. SIS FRAMEBUFFER DRIVER
  3224. P: Thomas Winischhofer
  3225. M: thomas@winischhofer.net
  3226. W: http://www.winischhofer.net/linuxsisvga.shtml
  3227. S: Maintained
  3228. SIS USB2VGA DRIVER
  3229. P: Thomas Winischhofer
  3230. M: thomas@winischhofer.net
  3231. W: http://www.winischhofer.at/linuxsisusbvga.shtml
  3232. S: Maintained
  3233. SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
  3234. P: Stephen Hemminger
  3235. M: shemminger@linux-foundation.org
  3236. L: netdev@vger.kernel.org
  3237. S: Maintained
  3238. SLAB ALLOCATOR
  3239. P: Christoph Lameter
  3240. M: cl@linux-foundation.org
  3241. P: Pekka Enberg
  3242. M: penberg@cs.helsinki.fi
  3243. P: Matt Mackall
  3244. M: mpm@selenic.com
  3245. L: linux-mm@kvack.org
  3246. S: Maintained
  3247. SMC91x ETHERNET DRIVER
  3248. P: Nicolas Pitre
  3249. M: nico@cam.org
  3250. S: Maintained
  3251. SMSC47B397 HARDWARE MONITOR DRIVER
  3252. P: Mark M. Hoffman
  3253. M: mhoffman@lightlink.com
  3254. L: lm-sensors@lm-sensors.org
  3255. S: Maintained
  3256. SMX UIO Interface
  3257. P: Ben Nizette
  3258. M: bn@niasdigital.com
  3259. S: Maintained
  3260. SN-IA64 (Itanium) SUB-PLATFORM
  3261. P: Jes Sorensen
  3262. M: jes@sgi.com
  3263. L: linux-altix@sgi.com
  3264. L: linux-ia64@vger.kernel.org
  3265. W: http://www.sgi.com/altix
  3266. S: Maintained
  3267. SOC-CAMERA V4L2 SUBSYSTEM
  3268. P: Guennadi Liakhovetski
  3269. M: g.liakhovetski@gmx.de
  3270. L: video4linux-list@redhat.com
  3271. S: Maintained
  3272. SOEKRIS NET48XX LED SUPPORT
  3273. P: Chris Boot
  3274. M: bootc@bootc.net
  3275. S: Maintained
  3276. SOFTWARE RAID (Multiple Disks) SUPPORT
  3277. P: Ingo Molnar
  3278. M: mingo@redhat.com
  3279. P: Neil Brown
  3280. M: neilb@suse.de
  3281. L: linux-raid@vger.kernel.org
  3282. S: Supported
  3283. SONIC NETWORK DRIVER
  3284. P: Thomas Bogendoerfer
  3285. M: tsbogend@alpha.franken.de
  3286. L: netdev@vger.kernel.org
  3287. S: Maintained
  3288. SONICS SILICON BACKPLANE DRIVER (SSB)
  3289. P: Michael Buesch
  3290. M: mb@bu3sch.de
  3291. L: netdev@vger.kernel.org
  3292. S: Maintained
  3293. SONY VAIO CONTROL DEVICE DRIVER
  3294. P: Mattia Dongili
  3295. M: malattia@linux.it
  3296. L: linux-acpi@vger.kernel.org
  3297. W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
  3298. S: Maintained
  3299. SONY MEMORYSTICK CARD SUPPORT
  3300. P: Alex Dubov
  3301. M: oakad@yahoo.com
  3302. L: linux-kernel@vger.kernel.org
  3303. W: http://tifmxx.berlios.de/
  3304. S: Maintained
  3305. SOUND
  3306. P: Jaroslav Kysela
  3307. M: perex@perex.cz
  3308. P: Takashi Iwai
  3309. M: tiwai@suse.de
  3310. L: alsa-devel@alsa-project.org (subscribers-only)
  3311. S: Maintained
  3312. SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
  3313. P: Liam Girdwood
  3314. M: lrg@slimlogic.co.uk
  3315. P: Mark Brown
  3316. M: broonie@opensource.wolfsonmicro.com
  3317. T: git opensource.wolfsonmicro.com/linux-2.6-asoc
  3318. L: alsa-devel@alsa-project.org (subscribers-only)
  3319. W: http://alsa-project.org/main/index.php/ASoC
  3320. S: Supported
  3321. SPARC (sparc32)
  3322. P: William L. Irwin
  3323. M: wli@holomorphy.com
  3324. L: sparclinux@vger.kernel.org
  3325. S: Maintained
  3326. SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
  3327. P: Roger Wolff
  3328. M: R.E.Wolff@BitWizard.nl
  3329. L: linux-kernel@vger.kernel.org ?
  3330. S: Supported
  3331. SPI SUBSYSTEM
  3332. P: David Brownell
  3333. M: dbrownell@users.sourceforge.net
  3334. L: spi-devel-general@lists.sourceforge.net
  3335. S: Maintained
  3336. SPIDERNET NETWORK DRIVER for CELL
  3337. P: Ishizaki Kou
  3338. M: kou.ishizaki@toshiba.co.jp
  3339. P: Jens Osterkamp
  3340. M: jens@de.ibm.com
  3341. L: netdev@vger.kernel.org
  3342. S: Supported
  3343. SPU FILE SYSTEM
  3344. P: Jeremy Kerr
  3345. M: jk@ozlabs.org
  3346. L: linuxppc-dev@ozlabs.org
  3347. L: cbe-oss-dev@ozlabs.org
  3348. W: http://www.ibm.com/developerworks/power/cell/
  3349. S: Supported
  3350. SRM (Alpha) environment access
  3351. P: Jan-Benedict Glaw
  3352. M: jbglaw@lug-owl.de
  3353. L: linux-kernel@vger.kernel.org
  3354. S: Maintained
  3355. STABLE BRANCH
  3356. P: Greg Kroah-Hartman
  3357. M: greg@kroah.com
  3358. P: Chris Wright
  3359. M: chrisw@sous-sol.org
  3360. L: stable@kernel.org
  3361. S: Maintained
  3362. STAGING SUBSYSTEM
  3363. P: Greg Kroah-Hartman
  3364. M: gregkh@suse.de
  3365. L: linux-kernel@vger.kernel.org
  3366. T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
  3367. S: Maintained
  3368. STARFIRE/DURALAN NETWORK DRIVER
  3369. P: Ion Badulescu
  3370. M: ionut@cs.columbia.edu
  3371. S: Maintained
  3372. STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
  3373. W: http://mosquitonet.Stanford.EDU/strip.html
  3374. S: Orphan
  3375. STRADIS MPEG-2 DECODER DRIVER
  3376. P: Nathan Laredo
  3377. M: laredo@gnu.org
  3378. W: http://www.stradis.com/
  3379. S: Maintained
  3380. SUN3/3X
  3381. P: Sam Creasey
  3382. M: sammy@sammy.net
  3383. W: http://sammy.net/sun3/
  3384. S: Maintained
  3385. SUPERH
  3386. P: Paul Mundt
  3387. M: lethal@linux-sh.org
  3388. L: linux-sh@vger.kernel.org
  3389. W: http://www.linux-sh.org
  3390. T: git kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6.git
  3391. S: Supported
  3392. SUSPEND TO RAM
  3393. P: Len Brown
  3394. M: len.brown@intel.com
  3395. P: Pavel Machek
  3396. M: pavel@suse.cz
  3397. P: Rafael J. Wysocki
  3398. M: rjw@sisk.pl
  3399. L: linux-pm@lists.linux-foundation.org
  3400. S: Supported
  3401. SVGA HANDLING
  3402. P: Martin Mares
  3403. M: mj@ucw.cz
  3404. L: linux-video@atrey.karlin.mff.cuni.cz
  3405. S: Maintained
  3406. SYSV FILESYSTEM
  3407. P: Christoph Hellwig
  3408. M: hch@infradead.org
  3409. S: Maintained
  3410. TASKSTATS STATISTICS INTERFACE
  3411. P: Balbir Singh
  3412. M: balbir@linux.vnet.ibm.com
  3413. L: linux-kernel@vger.kernel.org
  3414. S: Maintained
  3415. TC CLASSIFIER
  3416. P: Jamal Hadi Salim
  3417. M: hadi@cyberus.ca
  3418. L: netdev@vger.kernel.org
  3419. S: Maintained
  3420. TCP LOW PRIORITY MODULE
  3421. P: Wong Hoi Sing, Edison
  3422. M: hswong3i@gmail.com
  3423. P: Hung Hing Lun, Mike
  3424. M: hlhung3i@gmail.com
  3425. W: http://tcp-lp-mod.sourceforge.net/
  3426. S: Maintained
  3427. TEHUTI ETHERNET DRIVER
  3428. P: Alexander Indenbaum
  3429. M: baum@tehutinetworks.net
  3430. P: Andy Gospodarek
  3431. M: andy@greyhouse.net
  3432. L: netdev@vger.kernel.org
  3433. S: Supported
  3434. Telecom Clock Driver for MCPL0010
  3435. P: Mark Gross
  3436. M: mark.gross@intel.com
  3437. S: Supported
  3438. TENSILICA XTENSA PORT (xtensa)
  3439. P: Chris Zankel
  3440. M: chris@zankel.net
  3441. S: Maintained
  3442. THINKPAD ACPI EXTRAS DRIVER
  3443. P: Henrique de Moraes Holschuh
  3444. M: ibm-acpi@hmh.eng.br
  3445. L: ibm-acpi-devel@lists.sourceforge.net
  3446. W: http://ibm-acpi.sourceforge.net
  3447. W: http://thinkwiki.org/wiki/Ibm-acpi
  3448. T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
  3449. S: Maintained
  3450. TI FLASH MEDIA INTERFACE DRIVER
  3451. P: Alex Dubov
  3452. M: oakad@yahoo.com
  3453. S: Maintained
  3454. TI OMAP MMC INTERFACE DRIVER
  3455. P: Carlos Aguiar, Anderson Briglia and Syed Khasim
  3456. M: linux-omap@vger.kernel.org
  3457. W: http://linux.omap.com
  3458. W: http://www.muru.com/linux/omap/
  3459. S: Maintained
  3460. TI OMAP RANDOM NUMBER GENERATOR SUPPORT
  3461. P: Deepak Saxena
  3462. M: dsaxena@plexity.net
  3463. S: Maintained
  3464. TIPC NETWORK LAYER
  3465. P: Per Liden
  3466. M: per.liden@ericsson.com
  3467. P: Jon Maloy
  3468. M: jon.maloy@ericsson.com
  3469. P: Allan Stephens
  3470. M: allan.stephens@windriver.com
  3471. L: tipc-discussion@lists.sourceforge.net
  3472. W: http://tipc.sourceforge.net/
  3473. W: http://tipc.cslab.ericsson.net/
  3474. T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
  3475. S: Maintained
  3476. TLAN NETWORK DRIVER
  3477. P: Samuel Chessman
  3478. M: chessman@tux.org
  3479. L: tlan-devel@lists.sourceforge.net (subscribers-only)
  3480. W: http://sourceforge.net/projects/tlan/
  3481. S: Maintained
  3482. TOSHIBA ACPI EXTRAS DRIVER
  3483. P: John Belmonte
  3484. M: toshiba_acpi@memebeam.org
  3485. W: http://memebeam.org/toys/ToshibaAcpiDriver
  3486. S: Maintained
  3487. TOSHIBA SMM DRIVER
  3488. P: Jonathan Buzzard
  3489. M: jonathan@buzzard.org.uk
  3490. L: tlinux-users@tce.toshiba-dme.co.jp
  3491. W: http://www.buzzard.org.uk/toshiba/
  3492. S: Maintained
  3493. TPM DEVICE DRIVER
  3494. P: Debora Velarde
  3495. M: debora@linux.vnet.ibm.com
  3496. P: Rajiv Andrade
  3497. M: srajiv@linux.vnet.ibm.com
  3498. W: http://tpmdd.sourceforge.net
  3499. P: Marcel Selhorst
  3500. M: tpm@selhorst.net
  3501. W: http://www.prosec.rub.de/tpm/
  3502. L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
  3503. S: Maintained
  3504. TRIVIAL PATCHES
  3505. P: Jesper Juhl
  3506. M: trivial@kernel.org
  3507. L: linux-kernel@vger.kernel.org
  3508. S: Maintained
  3509. TTY LAYER
  3510. P: Alan Cox
  3511. M: alan@lxorguk.ukuu.org.uk
  3512. L: linux-kernel@vger.kernel.org
  3513. S: Maintained
  3514. TULIP NETWORK DRIVERS
  3515. P: Grant Grundler
  3516. M: grundler@parisc-linux.org
  3517. P: Kyle McMartin
  3518. M: kyle@mcmartin.ca
  3519. L: netdev@vger.kernel.org
  3520. S: Maintained
  3521. TUN/TAP driver
  3522. P: Maxim Krasnyansky
  3523. M: maxk@qualcomm.com
  3524. L: vtun@office.satix.net
  3525. W: http://vtun.sourceforge.net/tun
  3526. S: Maintained
  3527. TURBOCHANNEL SUBSYSTEM
  3528. P: Maciej W. Rozycki
  3529. M: macro@linux-mips.org
  3530. S: Maintained
  3531. U14-34F SCSI DRIVER
  3532. P: Dario Ballabio
  3533. M: ballabio_dario@emc.com
  3534. L: linux-scsi@vger.kernel.org
  3535. S: Maintained
  3536. UBI FILE SYSTEM (UBIFS)
  3537. P: Artem Bityutskiy
  3538. M: dedekind@infradead.org
  3539. P: Adrian Hunter
  3540. M: ext-adrian.hunter@nokia.com
  3541. L: linux-mtd@lists.infradead.org
  3542. T: git git://git.infradead.org/~dedekind/ubifs-2.6.git
  3543. W: http://www.linux-mtd.infradead.org/doc/ubifs.html
  3544. S: Maintained
  3545. UCLINUX (AND M68KNOMMU)
  3546. P: Greg Ungerer
  3547. M: gerg@uclinux.org
  3548. W: http://www.uclinux.org/
  3549. L: uclinux-dev@uclinux.org (subscribers-only)
  3550. S: Maintained
  3551. UCLINUX FOR RENESAS H8/300
  3552. P: Yoshinori Sato
  3553. M: ysato@users.sourceforge.jp
  3554. W: http://uclinux-h8.sourceforge.jp/
  3555. S: Supported
  3556. UDF FILESYSTEM
  3557. P: Jan Kara
  3558. M: jack@suse.cz
  3559. W: http://linux-udf.sourceforge.net
  3560. S: Maintained
  3561. UFS FILESYSTEM
  3562. P: Evgeniy Dushistov
  3563. M: dushistov@mail.ru
  3564. L: linux-kernel@vger.kernel.org
  3565. S: Maintained
  3566. UltraSPARC (sparc64)
  3567. P: David S. Miller
  3568. M: davem@davemloft.net
  3569. L: sparclinux@vger.kernel.org
  3570. T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
  3571. S: Maintained
  3572. UNIFORM CDROM DRIVER
  3573. P: Jens Axboe
  3574. M: axboe@kernel.dk
  3575. L: linux-kernel@vger.kernel.org
  3576. W: http://www.kernel.dk
  3577. S: Maintained
  3578. UNSORTED BLOCK IMAGES (UBI)
  3579. P: Artem Bityutskiy
  3580. M: dedekind@infradead.org
  3581. W: http://www.linux-mtd.infradead.org/
  3582. L: linux-mtd@lists.infradead.org
  3583. T: git git://git.infradead.org/~dedekind/ubi-2.6.git
  3584. S: Maintained
  3585. USB ACM DRIVER
  3586. P: Oliver Neukum
  3587. M: oliver@neukum.name
  3588. L: linux-usb@vger.kernel.org
  3589. S: Maintained
  3590. USB BLOCK DRIVER (UB ub)
  3591. P: Pete Zaitcev
  3592. M: zaitcev@redhat.com
  3593. L: linux-kernel@vger.kernel.org
  3594. L: linux-usb@vger.kernel.org
  3595. S: Supported
  3596. USB CDC ETHERNET DRIVER
  3597. P: Greg Kroah-Hartman
  3598. M: greg@kroah.com
  3599. L: linux-usb@vger.kernel.org
  3600. S: Maintained
  3601. W: http://www.kroah.com/linux-usb/
  3602. USB CYPRESS C67X00 DRIVER
  3603. P: Peter Korsgaard
  3604. M: jacmet@sunsite.dk
  3605. L: linux-usb@vger.kernel.org
  3606. S: Maintained
  3607. USB DAVICOM DM9601 DRIVER
  3608. P: Peter Korsgaard
  3609. M: jacmet@sunsite.dk
  3610. L: netdev@vger.kernel.org
  3611. W: http://www.linux-usb.org/usbnet
  3612. S: Maintained
  3613. USB DIAMOND RIO500 DRIVER
  3614. P: Cesar Miquel
  3615. M: miquel@df.uba.ar
  3616. L: rio500-users@lists.sourceforge.net
  3617. W: http://rio500.sourceforge.net
  3618. S: Maintained
  3619. USB EHCI DRIVER
  3620. P: David Brownell
  3621. M: dbrownell@users.sourceforge.net
  3622. L: linux-usb@vger.kernel.org
  3623. S: Odd Fixes
  3624. USB ET61X[12]51 DRIVER
  3625. P: Luca Risolia
  3626. M: luca.risolia@studio.unibo.it
  3627. L: linux-usb@vger.kernel.org
  3628. L: video4linux-list@redhat.com
  3629. W: http://www.linux-projects.org
  3630. S: Maintained
  3631. USB GADGET/PERIPHERAL SUBSYSTEM
  3632. P: David Brownell
  3633. M: dbrownell@users.sourceforge.net
  3634. L: linux-usb@vger.kernel.org
  3635. W: http://www.linux-usb.org/gadget
  3636. S: Maintained
  3637. USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
  3638. P: Jiri Kosina
  3639. M: jkosina@suse.cz
  3640. L: linux-usb@vger.kernel.org
  3641. T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
  3642. S: Maintained
  3643. USB ISP116X DRIVER
  3644. P: Olav Kongas
  3645. M: ok@artecdesign.ee
  3646. L: linux-usb@vger.kernel.org
  3647. S: Maintained
  3648. USB KAWASAKI LSI DRIVER
  3649. P: Oliver Neukum
  3650. M: oliver@neukum.name
  3651. L: linux-usb@vger.kernel.org
  3652. S: Maintained
  3653. USB MASS STORAGE DRIVER
  3654. P: Matthew Dharm
  3655. M: mdharm-usb@one-eyed-alien.net
  3656. L: linux-usb@vger.kernel.org
  3657. L: usb-storage@lists.one-eyed-alien.net
  3658. S: Maintained
  3659. W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
  3660. USB OHCI DRIVER
  3661. P: David Brownell
  3662. M: dbrownell@users.sourceforge.net
  3663. L: linux-usb@vger.kernel.org
  3664. S: Odd Fixes
  3665. USB OPTION-CARD DRIVER
  3666. P: Matthias Urlichs
  3667. M: smurf@smurf.noris.de
  3668. L: linux-usb@vger.kernel.org
  3669. S: Maintained
  3670. USB OV511 DRIVER
  3671. P: Mark McClelland
  3672. M: mmcclell@bigfoot.com
  3673. L: linux-usb@vger.kernel.org
  3674. W: http://alpha.dyndns.org/ov511/
  3675. S: Maintained
  3676. USB PEGASUS DRIVER
  3677. P: Petko Manolov
  3678. M: petkan@users.sourceforge.net
  3679. L: linux-usb@vger.kernel.org
  3680. L: netdev@vger.kernel.org
  3681. W: http://pegasus2.sourceforge.net/
  3682. S: Maintained
  3683. USB PRINTER DRIVER (usblp)
  3684. P: Pete Zaitcev
  3685. M: zaitcev@redhat.com
  3686. L: linux-usb@vger.kernel.org
  3687. S: Supported
  3688. USB RTL8150 DRIVER
  3689. P: Petko Manolov
  3690. M: petkan@users.sourceforge.net
  3691. L: linux-usb@vger.kernel.org
  3692. L: netdev@vger.kernel.org
  3693. W: http://pegasus2.sourceforge.net/
  3694. S: Maintained
  3695. USB SE401 DRIVER
  3696. P: Jeroen Vreeken
  3697. M: pe1rxq@amsat.org
  3698. L: linux-usb@vger.kernel.org
  3699. W: http://www.chello.nl/~j.vreeken/se401/
  3700. S: Maintained
  3701. USB SERIAL BELKIN F5U103 DRIVER
  3702. P: William Greathouse
  3703. M: wgreathouse@smva.com
  3704. L: linux-usb@vger.kernel.org
  3705. S: Maintained
  3706. USB SERIAL CYPRESS M8 DRIVER
  3707. P: Lonnie Mendez
  3708. M: dignome@gmail.com
  3709. L: linux-usb@vger.kernel.org
  3710. S: Maintained
  3711. W: http://geocities.com/i0xox0i
  3712. W: http://firstlight.net/cvs
  3713. USB SERIAL CYBERJACK DRIVER
  3714. P: Matthias Bruestle and Harald Welte
  3715. M: support@reiner-sct.com
  3716. W: http://www.reiner-sct.de/support/treiber_cyberjack.php
  3717. S: Maintained
  3718. USB SERIAL DIGI ACCELEPORT DRIVER
  3719. P: Peter Berger and Al Borchers
  3720. M: pberger@brimson.com
  3721. M: alborchers@steinerpoint.com
  3722. L: linux-usb@vger.kernel.org
  3723. S: Maintained
  3724. USB SERIAL DRIVER
  3725. P: Greg Kroah-Hartman
  3726. M: gregkh@suse.de
  3727. L: linux-usb@vger.kernel.org
  3728. S: Supported
  3729. USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
  3730. P: Gary Brubaker
  3731. M: xavyer@ix.netcom.com
  3732. L: linux-usb@vger.kernel.org
  3733. S: Maintained
  3734. USB SERIAL KEYSPAN DRIVER
  3735. P: Greg Kroah-Hartman
  3736. M: greg@kroah.com
  3737. L: linux-usb@vger.kernel.org
  3738. W: http://www.kroah.com/linux/
  3739. S: Maintained
  3740. USB SERIAL WHITEHEAT DRIVER
  3741. P: Support Department
  3742. M: support@connecttech.com
  3743. L: linux-usb@vger.kernel.org
  3744. W: http://www.connecttech.com
  3745. S: Supported
  3746. USB SMSC95XX ETHERNET DRIVER
  3747. P: Steve Glendinning
  3748. M: steve.glendinning@smsc.com
  3749. L: netdev@vger.kernel.org
  3750. S: Supported
  3751. USB SN9C1xx DRIVER
  3752. P: Luca Risolia
  3753. M: luca.risolia@studio.unibo.it
  3754. L: linux-usb@vger.kernel.org
  3755. L: video4linux-list@redhat.com
  3756. W: http://www.linux-projects.org
  3757. S: Maintained
  3758. USB SUBSYSTEM
  3759. P: Greg Kroah-Hartman
  3760. M: gregkh@suse.de
  3761. L: linux-usb@vger.kernel.org
  3762. W: http://www.linux-usb.org
  3763. T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
  3764. S: Supported
  3765. USB UHCI DRIVER
  3766. P: Alan Stern
  3767. M: stern@rowland.harvard.edu
  3768. L: linux-usb@vger.kernel.org
  3769. S: Maintained
  3770. USB "USBNET" DRIVER FRAMEWORK
  3771. P: David Brownell
  3772. M: dbrownell@users.sourceforge.net
  3773. L: netdev@vger.kernel.org
  3774. W: http://www.linux-usb.org/usbnet
  3775. S: Maintained
  3776. USB VIDEO CLASS
  3777. P: Laurent Pinchart
  3778. M: laurent.pinchart@skynet.be
  3779. L: linux-uvc-devel@lists.berlios.de
  3780. L: video4linux-list@redhat.com
  3781. W: http://linux-uvc.berlios.de
  3782. S: Maintained
  3783. USB W996[87]CF DRIVER
  3784. P: Luca Risolia
  3785. M: luca.risolia@studio.unibo.it
  3786. L: linux-usb@vger.kernel.org
  3787. L: video4linux-list@redhat.com
  3788. W: http://www.linux-projects.org
  3789. S: Maintained
  3790. USB WIRELESS RNDIS DRIVER (rndis_wlan)
  3791. P: Jussi Kivilinna
  3792. M: jussi.kivilinna@mbnet.fi
  3793. L: linux-wireless@vger.kernel.org
  3794. S: Maintained
  3795. USB ZC0301 DRIVER
  3796. P: Luca Risolia
  3797. M: luca.risolia@studio.unibo.it
  3798. L: linux-usb@vger.kernel.org
  3799. L: video4linux-list@redhat.com
  3800. W: http://www.linux-projects.org
  3801. S: Maintained
  3802. USB ZD1201 DRIVER
  3803. P: Jeroen Vreeken
  3804. M: pe1rxq@amsat.org
  3805. L: linux-usb@vger.kernel.org
  3806. W: http://linux-lc100020.sourceforge.net
  3807. S: Maintained
  3808. USB ZR364XX DRIVER
  3809. P: Antoine Jacquet
  3810. M: royale@zerezo.com
  3811. L: linux-usb@vger.kernel.org
  3812. L: video4linux-list@redhat.com
  3813. W: http://royale.zerezo.com/zr364xx/
  3814. S: Maintained
  3815. USER-MODE LINUX (UML)
  3816. P: Jeff Dike
  3817. M: jdike@addtoit.com
  3818. L: user-mode-linux-devel@lists.sourceforge.net
  3819. L: user-mode-linux-user@lists.sourceforge.net
  3820. W: http://user-mode-linux.sourceforge.net
  3821. S: Maintained
  3822. USERSPACE I/O (UIO)
  3823. P: Hans J. Koch
  3824. M: hjk@linutronix.de
  3825. P: Greg Kroah-Hartman
  3826. M: gregkh@suse.de
  3827. L: linux-kernel@vger.kernel.org
  3828. S: Maintained
  3829. UTIL-LINUX-NG PACKAGE
  3830. P: Karel Zak
  3831. M: kzak@redhat.com
  3832. L: util-linux-ng@vger.kernel.org
  3833. W: http://kernel.org/~kzak/util-linux-ng/
  3834. T: git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
  3835. S: Maintained
  3836. UVESAFB DRIVER
  3837. P: Michal Januszewski
  3838. M: spock@gentoo.org
  3839. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  3840. W: http://dev.gentoo.org/~spock/projects/uvesafb/
  3841. S: Maintained
  3842. VFAT/FAT/MSDOS FILESYSTEM
  3843. P: OGAWA Hirofumi
  3844. M: hirofumi@mail.parknet.co.jp
  3845. L: linux-kernel@vger.kernel.org
  3846. S: Maintained
  3847. VIA RHINE NETWORK DRIVER
  3848. P: Roger Luethi
  3849. M: rl@hellgate.ch
  3850. S: Maintained
  3851. VIAPRO SMBUS DRIVER
  3852. P: Jean Delvare
  3853. M: khali@linux-fr.org
  3854. L: i2c@lm-sensors.org
  3855. S: Maintained
  3856. VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
  3857. P: Joseph Chan
  3858. M: JosephChan@via.com.tw
  3859. P: Scott Fang
  3860. M: ScottFang@viatech.com.cn
  3861. L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
  3862. S: Maintained
  3863. VIA VELOCITY NETWORK DRIVER
  3864. P: Francois Romieu
  3865. M: romieu@fr.zoreil.com
  3866. L: netdev@vger.kernel.org
  3867. S: Maintained
  3868. VIDEO FOR LINUX (V4L)
  3869. P: Mauro Carvalho Chehab
  3870. M: mchehab@infradead.org
  3871. M: v4l-dvb-maintainer@linuxtv.org
  3872. L: video4linux-list@redhat.com
  3873. W: http://linuxtv.org
  3874. T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
  3875. S: Maintained
  3876. VLAN (802.1Q)
  3877. P: Patrick McHardy
  3878. M: kaber@trash.net
  3879. L: netdev@vger.kernel.org
  3880. S: Maintained
  3881. VOLTAGE AND CURRENT REGULATOR FRAMEWORK
  3882. P: Liam Girdwood
  3883. M: lrg@slimlogic.co.uk
  3884. P: Mark Brown
  3885. M: broonie@opensource.wolfsonmicro.com
  3886. W: http://opensource.wolfsonmicro.com/node/15
  3887. W: http://www.slimlogic.co.uk/?page_id=5
  3888. T: git kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
  3889. S: Supported
  3890. VT1211 HARDWARE MONITOR DRIVER
  3891. P: Juerg Haefliger
  3892. M: juergh@gmail.com
  3893. L: lm-sensors@lm-sensors.org
  3894. S: Maintained
  3895. VT8231 HARDWARE MONITOR DRIVER
  3896. P: Roger Lucas
  3897. M: vt8231@hiddenengine.co.uk
  3898. L: lm-sensors@lm-sensors.org
  3899. S: Maintained
  3900. W1 DALLAS'S 1-WIRE BUS
  3901. P: Evgeniy Polyakov
  3902. M: johnpol@2ka.mipt.ru
  3903. S: Maintained
  3904. W83791D HARDWARE MONITORING DRIVER
  3905. P: Marc Hulsman
  3906. M: m.hulsman@tudelft.nl
  3907. L: lm-sensors@lm-sensors.org
  3908. S: Maintained
  3909. W83793 HARDWARE MONITORING DRIVER
  3910. P: Rudolf Marek
  3911. M: r.marek@assembler.cz
  3912. L: lm-sensors@lm-sensors.org
  3913. S: Maintained
  3914. W83L51xD SD/MMC CARD INTERFACE DRIVER
  3915. P: Pierre Ossman
  3916. M: drzeus-wbsd@drzeus.cx
  3917. L: linux-kernel@vger.kernel.org
  3918. S: Maintained
  3919. WATCHDOG DEVICE DRIVERS
  3920. P: Wim Van Sebroeck
  3921. M: wim@iguana.be
  3922. T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
  3923. S: Maintained
  3924. WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
  3925. P: Jean Tourrilhes
  3926. M: jt@hpl.hp.com
  3927. L: linux-wireless@vger.kernel.org
  3928. W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
  3929. S: Maintained
  3930. WD7000 SCSI DRIVER
  3931. P: Miroslav Zagorac
  3932. M: zaga@fly.cc.fer.hr
  3933. L: linux-scsi@vger.kernel.org
  3934. S: Maintained
  3935. WISTRON LAPTOP BUTTON DRIVER
  3936. P: Miloslav Trmac
  3937. M: mitr@volny.cz
  3938. S: Maintained
  3939. WL3501 WIRELESS PCMCIA CARD DRIVER
  3940. P: Arnaldo Carvalho de Melo
  3941. M: acme@ghostprotocols.net
  3942. L: linux-wireless@vger.kernel.org
  3943. W: http://oops.ghostprotocols.net:81/blog
  3944. S: Maintained
  3945. WM97XX TOUCHSCREEN DRIVERS
  3946. P: Mark Brown
  3947. M: broonie@opensource.wolfsonmicro.com
  3948. P: Liam Girdwood
  3949. M: lrg@slimlogic.co.uk
  3950. L: linux-input@vger.kernel.org
  3951. T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
  3952. W: http://opensource.wolfsonmicro.com/node/7
  3953. S: Supported
  3954. X.25 NETWORK LAYER
  3955. P: Henner Eisen
  3956. M: eis@baty.hanse.de
  3957. L: linux-x25@vger.kernel.org
  3958. S: Maintained
  3959. X86 ARCHITECTURE (32-BIT AND 64-BIT)
  3960. P: Thomas Gleixner
  3961. M: tglx@linutronix.de
  3962. P: Ingo Molnar
  3963. M: mingo@redhat.com
  3964. P: H. Peter Anvin
  3965. M: hpa@zytor.com
  3966. L: linux-kernel@vger.kernel.org
  3967. T: git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
  3968. S: Maintained
  3969. XEN HYPERVISOR INTERFACE
  3970. P: Jeremy Fitzhardinge
  3971. M: jeremy@xensource.com
  3972. P: Chris Wright
  3973. M: chrisw@sous-sol.org
  3974. L: virtualization@lists.osdl.org
  3975. L: xen-devel@lists.xensource.com
  3976. S: Supported
  3977. XFS FILESYSTEM
  3978. P: Silicon Graphics Inc
  3979. P: Tim Shimmin
  3980. M: xfs-masters@oss.sgi.com
  3981. L: xfs@oss.sgi.com
  3982. W: http://oss.sgi.com/projects/xfs
  3983. T: git git://oss.sgi.com:8090/xfs/xfs-2.6.git
  3984. S: Supported
  3985. XILINX SYSTEMACE DRIVER
  3986. P: Grant Likely
  3987. M: grant.likely@secretlab.ca
  3988. W: http://www.secretlab.ca/
  3989. L: linux-kernel@vger.kernel.org
  3990. S: Maintained
  3991. XILINX UARTLITE SERIAL DRIVER
  3992. P: Peter Korsgaard
  3993. M: jacmet@sunsite.dk
  3994. L: linux-serial@vger.kernel.org
  3995. S: Maintained
  3996. YAM DRIVER FOR AX.25
  3997. P: Jean-Paul Roubelat
  3998. M: jpr@f6fbb.org
  3999. L: linux-hams@vger.kernel.org
  4000. S: Maintained
  4001. YEALINK PHONE DRIVER
  4002. P: Henk Vergonet
  4003. M: Henk.Vergonet@gmail.com
  4004. L: usbb2k-api-dev@nongnu.org
  4005. S: Maintained
  4006. Z8530 DRIVER FOR AX.25
  4007. P: Joerg Reuter
  4008. M: jreuter@yaina.de
  4009. W: http://yaina.de/jreuter/
  4010. W: http://www.qsl.net/dl1bke/
  4011. L: linux-hams@vger.kernel.org
  4012. S: Maintained
  4013. ZD1211RW WIRELESS DRIVER
  4014. P: Daniel Drake
  4015. M: dsd@gentoo.org
  4016. P: Ulrich Kunitz
  4017. M: kune@deine-taler.de
  4018. W: http://zd1211.ath.cx/wiki/DriverRewrite
  4019. L: linux-wireless@vger.kernel.org
  4020. L: zd1211-devs@lists.sourceforge.net (subscribers-only)
  4021. S: Maintained
  4022. ZR36067 VIDEO FOR LINUX DRIVER
  4023. P: Ronald Bultje
  4024. M: rbultje@ronald.bitfreak.net
  4025. L: mjpeg-users@lists.sourceforge.net
  4026. W: http://mjpeg.sourceforge.net/driver-zoran/
  4027. S: Maintained
  4028. ZS DECSTATION Z85C30 SERIAL DRIVER
  4029. P: Maciej W. Rozycki
  4030. M: macro@linux-mips.org
  4031. S: Maintained
  4032. THE REST
  4033. P: Linus Torvalds
  4034. S: Buried alive in reporters