MAINTAINERS 84 KB

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