MAINTAINERS 83 KB

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