MAINTAINERS 109 KB

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