MAINTAINERS 80 KB

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