MAINTAINERS 75 KB

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