MAINTAINERS 93 KB

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