MAINTAINERS 80 KB

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