MAINTAINERS 82 KB

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