MAINTAINERS 82 KB

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