MAINTAINERS 110 KB

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