MAINTAINERS 107 KB

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