MAINTAINERS 72 KB

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