MAINTAINERS 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459
  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. DISTRIBUTED LOCK MANAGER
  760. P: Patrick Caulfield
  761. M: pcaulfie@redhat.com
  762. P: David Teigland
  763. M: teigland@redhat.com
  764. L: cluster-devel@redhat.com
  765. W: http://sources.redhat.com/cluster/
  766. T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs-2.6.git
  767. S: Supported
  768. DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
  769. P: Tobias Ringstrom
  770. M: tori@unhappy.mine.nu
  771. L: linux-kernel@vger.kernel.org
  772. S: Maintained
  773. DOCBOOK FOR DOCUMENTATION
  774. P: Martin Waitz
  775. M: tali@admingilde.org
  776. P: Randy Dunlap
  777. M: rdunlap@xenotime.net
  778. T: git http://tali.admingilde.org/git/linux-docbook.git
  779. S: Maintained
  780. DOCKING STATION DRIVER
  781. P: Kristen Carlson Accardi
  782. M: kristen.c.accardi@intel.com
  783. L: linux-acpi@vger.kernel.org
  784. S: Maintained
  785. DOUBLETALK DRIVER
  786. P: James R. Van Zandt
  787. M: jrv@vanzandt.mv.com
  788. L: blinux-list@redhat.com
  789. S: Maintained
  790. DRIVER CORE, KOBJECTS, AND SYSFS
  791. P: Greg Kroah-Hartman
  792. M: gregkh@suse.de
  793. L: linux-kernel@vger.kernel.org
  794. T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
  795. S: Supported
  796. DRM DRIVERS
  797. P: David Airlie
  798. M: airlied@linux.ie
  799. L: dri-devel@lists.sourceforge.net
  800. T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
  801. S: Maintained
  802. DSCC4 DRIVER
  803. P: François Romieu
  804. M: romieu@cogenit.fr
  805. M: romieu@ensta.fr
  806. S: Maintained
  807. DVB SUBSYSTEM AND DRIVERS
  808. P: LinuxTV.org Project
  809. M: v4l-dvb-maintainer@linuxtv.org
  810. L: linux-dvb@linuxtv.org (subscription required)
  811. W: http://linuxtv.org/
  812. T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
  813. S: Maintained
  814. EATA-DMA SCSI DRIVER
  815. P: Michael Neuffer
  816. L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
  817. S: Maintained
  818. EATA ISA/EISA/PCI SCSI DRIVER
  819. P: Dario Ballabio
  820. M: ballabio_dario@emc.com
  821. L: linux-scsi@vger.kernel.org
  822. S: Maintained
  823. EATA-PIO SCSI DRIVER
  824. P: Michael Neuffer
  825. M: mike@i-Connect.Net
  826. L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
  827. S: Maintained
  828. EBTABLES
  829. P: Bart De Schuymer
  830. M: bart.de.schuymer@pandora.be
  831. L: ebtables-user@lists.sourceforge.net
  832. L: ebtables-devel@lists.sourceforge.net
  833. W: http://ebtables.sourceforge.net/
  834. S: Maintained
  835. EDAC-CORE
  836. P: Doug Thompson
  837. M: norsk5@xmission.com
  838. L: bluesmoke-devel@lists.sourceforge.net
  839. W: bluesmoke.sourceforge.net
  840. S: Supported
  841. EDAC-E752X
  842. P: Mark Gross
  843. M: mark.gross@intel.com
  844. L: bluesmoke-devel@lists.sourceforge.net
  845. W: bluesmoke.sourceforge.net
  846. S: Maintained
  847. EDAC-E7XXX
  848. P: Doug Thompson
  849. M: norsk5@xmission.com
  850. L: bluesmoke-devel@lists.sourceforge.net
  851. W: bluesmoke.sourceforge.net
  852. S: Maintained
  853. EDAC-R82600
  854. P: Tim Small
  855. M: tim@buttersideup.com
  856. L: bluesmoke-devel@lists.sourceforge.net
  857. W: bluesmoke.sourceforge.net
  858. S: Maintained
  859. EEPRO100 NETWORK DRIVER
  860. P: Andrey V. Savochkin
  861. M: saw@saw.sw.com.sg
  862. S: Maintained
  863. EFS FILESYSTEM
  864. W: http://aeschi.ch.eu.org/efs/
  865. S: Orphan
  866. EHCA (IBM GX bus InfiniBand adapter) DRIVER:
  867. P: Hoang-Nam Nguyen
  868. M: hnguyen@de.ibm.com
  869. P: Christoph Raisch
  870. M: raisch@de.ibm.com
  871. L: openib-general@openib.org
  872. S: Supported
  873. EMU10K1 SOUND DRIVER
  874. P: James Courtier-Dutton
  875. M: James@superbug.demon.co.uk
  876. L: emu10k1-devel@lists.sourceforge.net
  877. W: http://sourceforge.net/projects/emu10k1/
  878. S: Maintained
  879. EMULEX LPFC FC SCSI DRIVER
  880. P: James Smart
  881. M: james.smart@emulex.com
  882. L: linux-scsi@vger.kernel.org
  883. W: http://sourceforge.net/projects/lpfcxxxx
  884. S: Supported
  885. EPSON 1355 FRAMEBUFFER DRIVER
  886. P: Christopher Hoover
  887. M: ch@murgatroid.com, ch@hpl.hp.com
  888. S: Maintained
  889. ETHEREXPRESS-16 NETWORK DRIVER
  890. P: Philip Blundell
  891. M: philb@gnu.org
  892. L: netdev@vger.kernel.org
  893. S: Maintained
  894. ETHERNET BRIDGE
  895. P: Stephen Hemminger
  896. M: shemminger@osdl.org
  897. L: bridge@osdl.org
  898. W: http://bridge.sourceforge.net/
  899. S: Maintained
  900. ETHERTEAM 16I DRIVER
  901. P: Mika Kuoppala
  902. M: miku@iki.fi
  903. S: Maintained
  904. EXT2 FILE SYSTEM
  905. L: ext2-devel@lists.sourceforge.net
  906. S: Maintained
  907. EXT3 FILE SYSTEM
  908. P: Stephen Tweedie, Andrew Morton
  909. M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
  910. L: ext2-devel@lists.sourceforge.net
  911. S: Maintained
  912. F71805F HARDWARE MONITORING DRIVER
  913. P: Jean Delvare
  914. M: khali@linux-fr.org
  915. L: lm-sensors@lm-sensors.org
  916. S: Maintained
  917. FARSYNC SYNCHRONOUS DRIVER
  918. P: Kevin Curtis
  919. M: kevin.curtis@farsite.co.uk
  920. W: http://www.farsite.co.uk/
  921. S: Supported
  922. FRAMEBUFFER LAYER
  923. P: Antonino Daplas
  924. M: adaplas@pol.net
  925. L: linux-fbdev-devel@lists.sourceforge.net
  926. W: http://linux-fbdev.sourceforge.net/
  927. S: Maintained
  928. FREESCALE SOC FS_ENET DRIVER
  929. P: Pantelis Antoniou
  930. M: pantelis.antoniou@gmail.com
  931. P: Vitaly Bordug
  932. M: vbordug@ru.mvista.com
  933. L: linuxppc-embedded@ozlabs.org
  934. L: netdev@vger.kernel.org
  935. S: Maintained
  936. FILE LOCKING (flock() and fcntl()/lockf())
  937. P: Matthew Wilcox
  938. M: matthew@wil.cx
  939. L: linux-fsdevel@vger.kernel.org
  940. S: Maintained
  941. FILESYSTEMS (VFS and infrastructure)
  942. P: Alexander Viro
  943. M: viro@zeniv.linux.org.uk
  944. S: Maintained
  945. FIRMWARE LOADER (request_firmware)
  946. L: linux-kernel@vger.kernel.org
  947. S: Orphan
  948. FPU EMULATOR
  949. P: Bill Metzenthen
  950. M: billm@suburbia.net
  951. W: http://suburbia.net/~billm/floating-point/emulator/
  952. S: Maintained
  953. FRAME RELAY DLCI/FRAD (Sangoma drivers too)
  954. P: Mike McLagan
  955. M: mike.mclagan@linux.org
  956. L: netdev@vger.kernel.org
  957. S: Maintained
  958. FREEVXFS FILESYSTEM
  959. P: Christoph Hellwig
  960. M: hch@infradead.org
  961. W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
  962. S: Maintained
  963. FUJITSU FR-V PORT
  964. P: David Howells
  965. M: dhowells@redhat.com
  966. S: Maintained
  967. FTAPE/QIC-117
  968. L: linux-tape@vger.kernel.org
  969. W: http://sourceforge.net/projects/ftape
  970. S: Orphan
  971. FUSE: FILESYSTEM IN USERSPACE
  972. P: Miklos Szeredi
  973. M: miklos@szeredi.hu
  974. L: fuse-devel@lists.sourceforge.net
  975. W: http://fuse.sourceforge.net/
  976. S: Maintained
  977. FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
  978. P: Rik Faith
  979. M: faith@cs.unc.edu
  980. L: linux-scsi@vger.kernel.org
  981. S: Odd fixes (e.g., new signatures)
  982. GDT SCSI DISK ARRAY CONTROLLER DRIVER
  983. P: Achim Leubner
  984. M: achim_leubner@adaptec.com
  985. L: linux-scsi@vger.kernel.org
  986. W: http://www.icp-vortex.com/
  987. S: Supported
  988. GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
  989. P: Krzysztof Halasa
  990. M: khc@pm.waw.pl
  991. W: http://www.kernel.org/pub/linux/utils/net/hdlc/
  992. S: Maintained
  993. GFS2 FILE SYSTEM
  994. P: Steven Whitehouse
  995. M: swhiteho@redhat.com
  996. L: cluster-devel@redhat.com
  997. W: http://sources.redhat.com/cluster/
  998. T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs-2.6.git
  999. S: Supported
  1000. GIGASET ISDN DRIVERS
  1001. P: Hansjoerg Lipp
  1002. M: hjlipp@web.de
  1003. P: Tilman Schmidt
  1004. M: tilman@imap.cc
  1005. L: gigaset307x-common@lists.sourceforge.net
  1006. W: http://gigaset307x.sourceforge.net/
  1007. S: Maintained
  1008. HARDWARE MONITORING
  1009. P: Jean Delvare
  1010. M: khali@linux-fr.org
  1011. L: lm-sensors@lm-sensors.org
  1012. W: http://www.lm-sensors.nu/
  1013. S: Maintained
  1014. HARDWARE RANDOM NUMBER GENERATOR CORE
  1015. P: Michael Buesch
  1016. M: mb@bu3sch.de
  1017. S: Maintained
  1018. HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
  1019. P: Robert Love
  1020. M: rlove@rlove.org
  1021. M: linux-kernel@vger.kernel.org
  1022. W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
  1023. S: Maintained
  1024. HARMONY SOUND DRIVER
  1025. P: Kyle McMartin
  1026. M: kyle@parisc-linux.org
  1027. W: http://www.parisc-linux.org/~kyle/harmony/
  1028. L: parisc-linux@lists.parisc-linux.org
  1029. S: Maintained
  1030. HAYES ESP SERIAL DRIVER
  1031. P: Andrew J. Robinson
  1032. M: arobinso@nyx.net
  1033. L: linux-kernel@vger.kernel.org
  1034. W: http://www.nyx.net/~arobinso
  1035. S: Maintained
  1036. HFS FILESYSTEM
  1037. P: Roman Zippel
  1038. M: zippel@linux-m68k.org
  1039. L: linux-kernel@vger.kernel.org
  1040. S: Maintained
  1041. HGA FRAMEBUFFER DRIVER
  1042. P: Ferenc Bakonyi
  1043. M: fero@drama.obuda.kando.hu
  1044. L: linux-nvidia@lists.surfsouth.com
  1045. W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
  1046. S: Maintained
  1047. HIGH-SPEED SCC DRIVER FOR AX.25
  1048. P: Klaus Kudielka
  1049. M: klaus.kudielka@ieee.org
  1050. L: linux-hams@vger.kernel.org
  1051. W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
  1052. S: Maintained
  1053. HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
  1054. P: HighPoint Linux Team
  1055. M: linux@highpoint-tech.com
  1056. W: http://www.highpoint-tech.com
  1057. S: Supported
  1058. HIPPI
  1059. P: Jes Sorensen
  1060. M: jes@trained-monkey.org
  1061. L: linux-hippi@sunsite.dk
  1062. S: Maintained
  1063. HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
  1064. P: Chirag Kantharia
  1065. M: chirag.kantharia@hp.com
  1066. L: iss_storagedev@hp.com
  1067. S: Maintained
  1068. HEWLETT-PACKARD SMART2 RAID DRIVER
  1069. P: Chirag Kantharia
  1070. M: chirag.kantharia@hp.com
  1071. L: iss_storagedev@hp.com
  1072. S: Maintained
  1073. HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
  1074. P: Mike Miller
  1075. M: mike.miller@hp.com
  1076. L: iss_storagedev@hp.com
  1077. S: Supported
  1078. HOST AP DRIVER
  1079. P: Jouni Malinen
  1080. M: jkmaline@cc.hut.fi
  1081. L: hostap@shmoo.com
  1082. W: http://hostap.epitest.fi/
  1083. S: Maintained
  1084. HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
  1085. P: Jaroslav Kysela
  1086. M: perex@suse.cz
  1087. S: Maintained
  1088. HPET: High Precision Event Timers driver (hpet.c)
  1089. P: Clemens Ladisch
  1090. M: clemens@ladisch.de
  1091. S: Maintained
  1092. HPET: i386
  1093. P: Venkatesh Pallipadi (Venki)
  1094. M: venkatesh.pallipadi@intel.com
  1095. S: Maintained
  1096. HPET: x86_64
  1097. P: Andi Kleen and Vojtech Pavlik
  1098. M: ak@muc.de and vojtech@suse.cz
  1099. S: Maintained
  1100. HPET: ACPI hpet.c
  1101. P: Bob Picco
  1102. M: bob.picco@hp.com
  1103. S: Maintained
  1104. HPFS FILESYSTEM
  1105. P: Mikulas Patocka
  1106. M: mikulas@artax.karlin.mff.cuni.cz
  1107. W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
  1108. S: Maintained
  1109. HUGETLB FILESYSTEM
  1110. P: William Irwin
  1111. M: wli@holomorphy.com
  1112. S: Maintained
  1113. I2C SUBSYSTEM
  1114. P: Jean Delvare
  1115. M: khali@linux-fr.org
  1116. L: i2c@lm-sensors.org
  1117. W: http://www.lm-sensors.nu/
  1118. T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
  1119. S: Maintained
  1120. I2O
  1121. P: Markus Lidel
  1122. M: markus.lidel@shadowconnect.com
  1123. W: http://i2o.shadowconnect.com/
  1124. S: Maintained
  1125. i386 BOOT CODE
  1126. P: Riley H. Williams
  1127. M: Riley@Williams.Name
  1128. L: Linux-Kernel@vger.kernel.org
  1129. S: Maintained
  1130. i386 SETUP CODE / CPU ERRATA WORKAROUNDS
  1131. P: Dave Jones
  1132. M: davej@codemonkey.org.uk
  1133. P: H. Peter Anvin
  1134. M: hpa@zytor.com
  1135. S: Maintained
  1136. i810 TCO TIMER WATCHDOG
  1137. P: Nils Faerber
  1138. M: nils@kernelconcepts.de
  1139. W: http://www.kernelconcepts.de/
  1140. S: Maintained
  1141. IA64 (Itanium) PLATFORM
  1142. P: Tony Luck
  1143. M: tony.luck@intel.com
  1144. L: linux-ia64@vger.kernel.org
  1145. W: http://www.ia64-linux.org/
  1146. T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
  1147. S: Maintained
  1148. SN-IA64 (Itanium) SUB-PLATFORM
  1149. P: Jes Sorensen
  1150. M: jes@sgi.com
  1151. L: linux-altix@sgi.com
  1152. L: linux-ia64@vger.kernel.org
  1153. W: http://www.sgi.com/altix
  1154. S: Maintained
  1155. IBM MCA SCSI SUBSYSTEM DRIVER
  1156. P: Michael Lang
  1157. M: langa2@kph.uni-mainz.de
  1158. W: http://www.uni-mainz.de/~langm000/linux.html
  1159. S: Maintained
  1160. IBM Power Linux RAID adapter
  1161. P: Brian King
  1162. M: brking@us.ibm.com
  1163. S: Supported
  1164. IBM ServeRAID RAID DRIVER
  1165. P: Jack Hammer
  1166. P: Dave Jeffery
  1167. M: ipslinux@adaptec.com
  1168. W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
  1169. S: Supported
  1170. IDE DRIVER [GENERAL]
  1171. P: Bartlomiej Zolnierkiewicz
  1172. M: B.Zolnierkiewicz@elka.pw.edu.pl
  1173. L: linux-kernel@vger.kernel.org
  1174. L: linux-ide@vger.kernel.org
  1175. T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
  1176. S: Maintained
  1177. IDE/ATAPI CDROM DRIVER
  1178. P: Jens Axboe
  1179. M: axboe@kernel.dk
  1180. L: linux-kernel@vger.kernel.org
  1181. W: http://www.kernel.dk
  1182. S: Maintained
  1183. IDE/ATAPI FLOPPY DRIVERS
  1184. P: Paul Bristow
  1185. M: Paul Bristow <paul@paulbristow.net>
  1186. W: http://paulbristow.net/linux/idefloppy.html
  1187. L: linux-kernel@vger.kernel.org
  1188. S: Maintained
  1189. IDE/ATAPI TAPE DRIVERS
  1190. P: Gadi Oxman
  1191. M: Gadi Oxman <gadio@netvision.net.il>
  1192. L: linux-kernel@vger.kernel.org
  1193. S: Maintained
  1194. IEEE 1394 SUBSYSTEM
  1195. P: Ben Collins
  1196. M: bcollins@debian.org
  1197. P: Stefan Richter
  1198. M: stefanr@s5r6.in-berlin.de
  1199. L: linux1394-devel@lists.sourceforge.net
  1200. W: http://www.linux1394.org/
  1201. T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
  1202. S: Maintained
  1203. IEEE 1394 IPV4 DRIVER (eth1394)
  1204. P: Stefan Richter
  1205. M: stefanr@s5r6.in-berlin.de
  1206. L: linux1394-devel@lists.sourceforge.net
  1207. S: Odd Fixes
  1208. IEEE 1394 PCILYNX DRIVER
  1209. P: Jody McIntyre
  1210. M: scjody@modernduck.com
  1211. P: Stefan Richter
  1212. M: stefanr@s5r6.in-berlin.de
  1213. L: linux1394-devel@lists.sourceforge.net
  1214. S: Odd Fixes
  1215. IEEE 1394 RAW I/O DRIVER
  1216. P: Ben Collins
  1217. M: bcollins@debian.org
  1218. P: Dan Dennedy
  1219. M: dan@dennedy.org
  1220. L: linux1394-devel@lists.sourceforge.net
  1221. S: Maintained
  1222. IMS TWINTURBO FRAMEBUFFER DRIVER
  1223. P: Paul Mundt
  1224. M: lethal@chaoticdreams.org
  1225. L: linux-fbdev-devel@lists.sourceforge.net
  1226. S: Maintained
  1227. INFINIBAND SUBSYSTEM
  1228. P: Roland Dreier
  1229. M: rolandd@cisco.com
  1230. P: Sean Hefty
  1231. M: mshefty@ichips.intel.com
  1232. P: Hal Rosenstock
  1233. M: halr@voltaire.com
  1234. L: openib-general@openib.org
  1235. W: http://www.openib.org/
  1236. T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
  1237. S: Supported
  1238. INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
  1239. P: Dmitry Torokhov
  1240. M: dmitry.torokhov@gmail.com
  1241. M: dtor@mail.ru
  1242. L: linux-input@atrey.karlin.mff.cuni.cz
  1243. L: linux-joystick@atrey.karlin.mff.cuni.cz
  1244. T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
  1245. S: Maintained
  1246. INOTIFY
  1247. P: John McCutchan and Robert Love
  1248. M: ttb@tentacle.dhs.org and rml@novell.com
  1249. L: linux-kernel@vger.kernel.org
  1250. S: Maintained
  1251. INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
  1252. P: Sylvain Meyer
  1253. M: sylvain.meyer@worldonline.fr
  1254. L: linux-fbdev-devel@lists.sourceforge.net
  1255. S: Maintained
  1256. INTEL 810/815 FRAMEBUFFER DRIVER
  1257. P: Antonino Daplas
  1258. M: adaplas@pol.net
  1259. L: linux-fbdev-devel@lists.sourceforge.net
  1260. S: Maintained
  1261. INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
  1262. P: Ingo Molnar
  1263. M: mingo@redhat.com
  1264. S: Maintained
  1265. INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
  1266. P: Jeff Garzik
  1267. M: jgarzik@pobox.com
  1268. W: http://sourceforge.net/projects/gkernel/
  1269. S: Maintained
  1270. INTEL IA32 MICROCODE UPDATE SUPPORT
  1271. P: Tigran Aivazian
  1272. M: tigran@veritas.com
  1273. S: Maintained
  1274. INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
  1275. P: Deepak Saxena
  1276. M: dsaxena@plexity.net
  1277. S: Maintained
  1278. INTEL PRO/100 ETHERNET SUPPORT
  1279. P: John Ronciak
  1280. M: john.ronciak@intel.com
  1281. P: Jesse Brandeburg
  1282. M: jesse.brandeburg@intel.com
  1283. P: Jeff Kirsher
  1284. M: jeffrey.t.kirsher@intel.com
  1285. P: Auke Kok
  1286. M: auke-jan.h.kok@intel.com
  1287. W: http://sourceforge.net/projects/e1000/
  1288. S: Supported
  1289. INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
  1290. P: Jeb Cramer
  1291. M: cramerj@intel.com
  1292. P: John Ronciak
  1293. M: john.ronciak@intel.com
  1294. P: Jesse Brandeburg
  1295. M: jesse.brandeburg@intel.com
  1296. P: Jeff Kirsher
  1297. M: jeffrey.t.kirsher@intel.com
  1298. P: Auke Kok
  1299. M: auke-jan.h.kok@intel.com
  1300. W: http://sourceforge.net/projects/e1000/
  1301. S: Supported
  1302. INTEL PRO/10GbE SUPPORT
  1303. P: Jeff Kirsher
  1304. M: jeffrey.t.kirsher@intel.com
  1305. P: Ayyappan Veeraiyan
  1306. M: ayyappan.veeraiyan@intel.com
  1307. P: John Ronciak
  1308. M: john.ronciak@intel.com
  1309. P: Jesse Brandeburg
  1310. M: jesse.brandeburg@intel.com
  1311. P: Auke Kok
  1312. M: auke-jan.h.kok@intel.com
  1313. W: http://sourceforge.net/projects/e1000/
  1314. S: Supported
  1315. INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
  1316. P: Yi Zhu
  1317. M: yi.zhu@intel.com
  1318. P: James Ketrenos
  1319. M: jketreno@linux.intel.com
  1320. L: ipw2100-devel@lists.sourceforge.net
  1321. L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
  1322. W: http://ipw2100.sourceforge.net
  1323. S: Supported
  1324. INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
  1325. P: Yi Zhu
  1326. M: yi.zhu@intel.com
  1327. P: James Ketrenos
  1328. M: jketreno@linux.intel.com
  1329. L: ipw2100-devel@lists.sourceforge.net
  1330. L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
  1331. W: http://ipw2200.sourceforge.net
  1332. S: Supported
  1333. IOC3 DRIVER
  1334. P: Ralf Baechle
  1335. M: ralf@linux-mips.org
  1336. L: linux-mips@linux-mips.org
  1337. S: Maintained
  1338. IP MASQUERADING:
  1339. P: Juanjo Ciarlante
  1340. M: jjciarla@raiz.uncu.edu.ar
  1341. S: Maintained
  1342. IPATH DRIVER:
  1343. P: Bryan O'Sullivan
  1344. M: support@pathscale.com
  1345. L: openib-general@openib.org
  1346. S: Supported
  1347. IPMI SUBSYSTEM
  1348. P: Corey Minyard
  1349. M: minyard@acm.org
  1350. L: openipmi-developer@lists.sourceforge.net
  1351. W: http://openipmi.sourceforge.net/
  1352. S: Supported
  1353. IPX NETWORK LAYER
  1354. P: Arnaldo Carvalho de Melo
  1355. M: acme@conectiva.com.br
  1356. L: netdev@vger.kernel.org
  1357. S: Maintained
  1358. IRDA SUBSYSTEM
  1359. P: Samuel Ortiz
  1360. M: samuel@sortiz.org
  1361. L: irda-users@lists.sourceforge.net (subscribers-only)
  1362. W: http://irda.sourceforge.net/
  1363. S: Maintained
  1364. ISAPNP
  1365. P: Jaroslav Kysela
  1366. M: perex@suse.cz
  1367. S: Maintained
  1368. ISDN SUBSYSTEM
  1369. P: Karsten Keil
  1370. M: kkeil@suse.de
  1371. P: Kai Germaschewski
  1372. M: kai.germaschewski@gmx.de
  1373. L: isdn4linux@listserv.isdn4linux.de
  1374. W: http://www.isdn4linux.de
  1375. T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
  1376. S: Maintained
  1377. ISDN SUBSYSTEM (Eicon active card driver)
  1378. P: Armin Schindler
  1379. M: mac@melware.de
  1380. L: isdn4linux@listserv.isdn4linux.de
  1381. W: http://www.melware.de
  1382. S: Maintained
  1383. JOURNALLING FLASH FILE SYSTEM (JFFS)
  1384. P: Axis Communications AB
  1385. M: jffs-dev@axis.com
  1386. L: jffs-dev@axis.com
  1387. W: http://www.developer.axis.com/software/jffs/
  1388. S: Maintained
  1389. JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
  1390. P: David Woodhouse
  1391. M: dwmw2@infradead.org
  1392. L: jffs-dev@axis.com
  1393. W: http://sources.redhat.com/jffs2/
  1394. S: Maintained
  1395. JFS FILESYSTEM
  1396. P: Dave Kleikamp
  1397. M: shaggy@austin.ibm.com
  1398. L: jfs-discussion@lists.sourceforge.net
  1399. W: http://jfs.sourceforge.net/
  1400. T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
  1401. S: Supported
  1402. JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
  1403. P: Stephen Tweedie, Andrew Morton
  1404. M: sct@redhat.com, akpm@osdl.org
  1405. L: ext2-devel@lists.sourceforge.net
  1406. S: Maintained
  1407. KCONFIG
  1408. P: Roman Zippel
  1409. M: zippel@linux-m68k.org
  1410. L: kbuild-devel@lists.sourceforge.net
  1411. S: Maintained
  1412. KDUMP
  1413. P: Vivek Goyal
  1414. M: vgoyal@in.ibm.com
  1415. P: Haren Myneni
  1416. M: hbabu@us.ibm.com
  1417. L: fastboot@lists.osdl.org
  1418. L: linux-kernel@vger.kernel.org
  1419. W: http://lse.sourceforge.net/kdump/
  1420. S: Maintained
  1421. KERNEL AUTOMOUNTER (AUTOFS)
  1422. P: H. Peter Anvin
  1423. M: hpa@zytor.com
  1424. L: autofs@linux.kernel.org
  1425. S: Odd Fixes
  1426. KERNEL AUTOMOUNTER v4 (AUTOFS4)
  1427. P: Ian Kent
  1428. M: raven@themaw.net
  1429. L: autofs@linux.kernel.org
  1430. S: Maintained
  1431. KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
  1432. P: Kai Germaschewski
  1433. M: kai@germaschewski.name
  1434. P: Sam Ravnborg
  1435. M: sam@ravnborg.org
  1436. T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
  1437. S: Maintained
  1438. KERNEL JANITORS
  1439. P: Several
  1440. L: kernel-janitors@lists.osdl.org
  1441. W: http://www.kerneljanitors.org/
  1442. S: Maintained
  1443. KERNEL NFSD
  1444. P: Neil Brown
  1445. M: neilb@cse.unsw.edu.au
  1446. L: nfs@lists.sourceforge.net
  1447. W: http://nfs.sourceforge.net/
  1448. W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
  1449. S: Maintained
  1450. KEXEC
  1451. P: Eric Biederman
  1452. M: ebiederm@xmission.com
  1453. W: http://www.xmission.com/~ebiederm/files/kexec/
  1454. L: linux-kernel@vger.kernel.org
  1455. L: fastboot@osdl.org
  1456. S: Maintained
  1457. KPROBES
  1458. P: Prasanna S Panchamukhi
  1459. M: prasanna@in.ibm.com
  1460. P: Ananth N Mavinakayanahalli
  1461. M: ananth@in.ibm.com
  1462. P: Anil S Keshavamurthy
  1463. M: anil.s.keshavamurthy@intel.com
  1464. P: David S. Miller
  1465. M: davem@davemloft.net
  1466. L: linux-kernel@vger.kernel.org
  1467. S: Maintained
  1468. LAPB module
  1469. L: linux-x25@vger.kernel.org
  1470. S: Orphan
  1471. LASI 53c700 driver for PARISC
  1472. P: James E.J. Bottomley
  1473. M: James.Bottomley@HansenPartnership.com
  1474. L: linux-scsi@vger.kernel.org
  1475. S: Maintained
  1476. LED SUBSYSTEM
  1477. P: Richard Purdie
  1478. M: rpurdie@rpsys.net
  1479. S: Maintained
  1480. LEGO USB Tower driver
  1481. P: Juergen Stuber
  1482. M: starblue@users.sourceforge.net
  1483. L: legousb-devel@lists.sourceforge.net
  1484. W: http://legousb.sourceforge.net/
  1485. S: Maintained
  1486. LINUX FOR IBM pSERIES (RS/6000)
  1487. P: Paul Mackerras
  1488. M: paulus@au.ibm.com
  1489. W: http://www.ibm.com/linux/ltc/projects/ppc
  1490. S: Supported
  1491. LINUX FOR NCR VOYAGER
  1492. P: James Bottomley
  1493. M: James.Bottomley@HansenPartnership.com
  1494. W: http://www.hansenpartnership.com/voyager
  1495. S: Maintained
  1496. LINUX FOR POWERPC
  1497. P: Paul Mackerras
  1498. M: paulus@samba.org
  1499. W: http://www.penguinppc.org/
  1500. L: linuxppc-dev@ozlabs.org
  1501. T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
  1502. S: Supported
  1503. LINUX FOR POWER MACINTOSH
  1504. P: Benjamin Herrenschmidt
  1505. M: benh@kernel.crashing.org
  1506. W: http://www.penguinppc.org/
  1507. L: linuxppc-dev@ozlabs.org
  1508. S: Maintained
  1509. LINUX FOR POWERPC EMBEDDED MPC52XX
  1510. P: Sylvain Munaut
  1511. M: tnt@246tNt.com
  1512. W: http://www.246tNt.com/mpc52xx/
  1513. W: http://www.penguinppc.org/
  1514. L: linuxppc-dev@ozlabs.org
  1515. L: linuxppc-embedded@ozlabs.org
  1516. S: Maintained
  1517. LINUX FOR POWERPC EMBEDDED PPC4XX
  1518. P: Matt Porter
  1519. M: mporter@kernel.crashing.org
  1520. W: http://www.penguinppc.org/
  1521. L: linuxppc-embedded@ozlabs.org
  1522. S: Maintained
  1523. LINUX FOR POWERPC BOOT CODE
  1524. P: Tom Rini
  1525. M: trini@kernel.crashing.org
  1526. W: http://www.penguinppc.org/
  1527. L: linuxppc-embedded@ozlabs.org
  1528. S: Maintained
  1529. LINUX FOR POWERPC EMBEDDED PPC8XX
  1530. P: Marcelo Tosatti
  1531. M: marcelo@kvack.org
  1532. W: http://www.penguinppc.org/
  1533. L: linuxppc-embedded@ozlabs.org
  1534. S: Maintained
  1535. LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
  1536. P: Kumar Gala
  1537. M: galak@kernel.crashing.org
  1538. W: http://www.penguinppc.org/
  1539. L: linuxppc-embedded@ozlabs.org
  1540. S: Maintained
  1541. LINUX FOR POWERPC PA SEMI PWRFICIENT
  1542. P: Olof Johansson
  1543. M: olof@lixom.net
  1544. W: http://www.pasemi.com/
  1545. L: linuxppc-dev@ozlabs.org
  1546. S: Supported
  1547. LLC (802.2)
  1548. P: Arnaldo Carvalho de Melo
  1549. M: acme@conectiva.com.br
  1550. S: Maintained
  1551. LINUX FOR 64BIT POWERPC
  1552. P: Paul Mackerras
  1553. M: paulus@samba.org
  1554. M: paulus@au.ibm.com
  1555. P: Anton Blanchard
  1556. M: anton@samba.org
  1557. M: anton@au.ibm.com
  1558. W: http://www.penguinppc.org/ppc64/
  1559. L: linuxppc-dev@ozlabs.org
  1560. S: Supported
  1561. LINUX SECURITY MODULE (LSM) FRAMEWORK
  1562. P: Chris Wright
  1563. M: chrisw@sous-sol.org
  1564. L: linux-security-module@vger.kernel.org
  1565. W: http://lsm.immunix.org
  1566. T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
  1567. S: Supported
  1568. LM83 HARDWARE MONITOR DRIVER
  1569. P: Jean Delvare
  1570. M: khali@linux-fr.org
  1571. L: lm-sensors@lm-sensors.org
  1572. S: Maintained
  1573. LM90 HARDWARE MONITOR DRIVER
  1574. P: Jean Delvare
  1575. M: khali@linux-fr.org
  1576. L: lm-sensors@lm-sensors.org
  1577. S: Maintained
  1578. LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
  1579. P: Richard Russon (FlatCap)
  1580. M: ldm@flatcap.org
  1581. L: ldm-devel@lists.sourceforge.net
  1582. W: http://ldm.sourceforge.net
  1583. S: Maintained
  1584. LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
  1585. P: Eric Moore
  1586. M: Eric.Moore@lsil.com
  1587. M: support@lsil.com
  1588. L: mpt_linux_developer@lsil.com
  1589. L: linux-scsi@vger.kernel.org
  1590. W: http://www.lsilogic.com/support
  1591. S: Supported
  1592. LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
  1593. P: Matthew Wilcox
  1594. M: matthew@wil.cx
  1595. L: linux-scsi@vger.kernel.org
  1596. S: Maintained
  1597. M68K ARCHITECTURE
  1598. P: Geert Uytterhoeven
  1599. M: geert@linux-m68k.org
  1600. P: Roman Zippel
  1601. M: zippel@linux-m68k.org
  1602. L: linux-m68k@lists.linux-m68k.org
  1603. W: http://www.linux-m68k.org/
  1604. W: http://linux-m68k-cvs.ubb.ca/
  1605. S: Maintained
  1606. M68K ON APPLE MACINTOSH
  1607. P: Joshua Thompson
  1608. M: funaho@jurai.org
  1609. W: http://www.mac.linux-m68k.org/
  1610. L: linux-mac68k@mac.linux-m68k.org
  1611. S: Maintained
  1612. M68K ON HP9000/300
  1613. P: Philip Blundell
  1614. M: philb@gnu.org
  1615. W: http://www.tazenda.demon.co.uk/phil/linux-hp
  1616. S: Maintained
  1617. MARVELL YUKON / SYSKONNECT DRIVER
  1618. P: Mirko Lindner
  1619. M: mlindner@syskonnect.de
  1620. P: Ralph Roesler
  1621. M: rroesler@syskonnect.de
  1622. W: http://www.syskonnect.com
  1623. S: Supported
  1624. MAESTRO PCI SOUND DRIVERS
  1625. P: Zach Brown
  1626. M: zab@zabbo.net
  1627. S: Odd Fixes
  1628. MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
  1629. P: Michael Kerrisk
  1630. M: mtk-manpages@gmx.net
  1631. W: ftp://ftp.kernel.org/pub/linux/docs/manpages
  1632. S: Maintained
  1633. MARVELL MV643XX ETHERNET DRIVER
  1634. P: Dale Farnsworth
  1635. M: dale@farnsworth.org
  1636. P: Manish Lachwani
  1637. M: mlachwani@mvista.com
  1638. L: netdev@vger.kernel.org
  1639. S: Odd Fixes for 2.4; Maintained for 2.6.
  1640. MATROX FRAMEBUFFER DRIVER
  1641. P: Petr Vandrovec
  1642. M: vandrove@vc.cvut.cz
  1643. L: linux-fbdev-devel@lists.sourceforge.net
  1644. S: Maintained
  1645. MEGARAID SCSI DRIVERS
  1646. P: Neela Syam Kolli
  1647. M: Neela.Kolli@engenio.com
  1648. S: linux-scsi@vger.kernel.org
  1649. W: http://megaraid.lsilogic.com
  1650. S: Maintained
  1651. MEMORY MANAGEMENT
  1652. L: linux-mm@kvack.org
  1653. L: linux-kernel@vger.kernel.org
  1654. W: http://www.linux-mm.org
  1655. S: Maintained
  1656. MEMORY TECHNOLOGY DEVICES (MTD)
  1657. P: David Woodhouse
  1658. M: dwmw2@infradead.org
  1659. W: http://www.linux-mtd.infradead.org/
  1660. L: linux-mtd@lists.infradead.org
  1661. T: git git://git.infradead.org/mtd-2.6.git
  1662. S: Maintained
  1663. MICROTEK X6 SCANNER
  1664. P: Oliver Neukum
  1665. M: oliver@neukum.name
  1666. S: Maintained
  1667. MIPS
  1668. P: Ralf Baechle
  1669. M: ralf@linux-mips.org
  1670. W: http://www.linux-mips.org/
  1671. L: linux-mips@linux-mips.org
  1672. T: git www.linux-mips.org:/pub/scm/linux.git
  1673. S: Supported
  1674. MISCELLANEOUS MCA-SUPPORT
  1675. P: James Bottomley
  1676. M: jejb@steeleye.com
  1677. L: linux-kernel@vger.kernel.org
  1678. S: Maintained
  1679. MODULE SUPPORT
  1680. P: Rusty Russell
  1681. M: rusty@rustcorp.com.au
  1682. L: linux-kernel@vger.kernel.org
  1683. S: Maintained
  1684. MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
  1685. P: Stelian Pop
  1686. M: stelian@popies.net
  1687. W: http://popies.net/meye/
  1688. S: Maintained
  1689. MOUSE AND MISC DEVICES [GENERAL]
  1690. P: Alessandro Rubini
  1691. M: rubini@ipvvis.unipv.it
  1692. L: linux-kernel@vger.kernel.org
  1693. S: Maintained
  1694. MTRR AND SIMILAR SUPPORT [i386]
  1695. P: Richard Gooch
  1696. M: rgooch@atnf.csiro.au
  1697. L: linux-kernel@vger.kernel.org
  1698. W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
  1699. S: Maintained
  1700. MULTIMEDIA CARD (MMC) SUBSYSTEM
  1701. P: Russell King
  1702. M: rmk+mmc@arm.linux.org.uk
  1703. S: Maintained
  1704. MULTISOUND SOUND DRIVER
  1705. P: Andrew Veliath
  1706. M: andrewtv@usa.net
  1707. S: Maintained
  1708. NATSEMI ETHERNET DRIVER (DP8381x)
  1709. P: Tim Hockin
  1710. M: thockin@hockin.org
  1711. S: Maintained
  1712. NCP FILESYSTEM
  1713. P: Petr Vandrovec
  1714. M: vandrove@vc.cvut.cz
  1715. L: linware@sh.cvut.cz
  1716. S: Maintained
  1717. NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
  1718. P: James E.J. Bottomley
  1719. M: James.Bottomley@HansenPartnership.com
  1720. L: linux-scsi@vger.kernel.org
  1721. S: Maintained
  1722. NETEM NETWORK EMULATOR
  1723. P: Stephen Hemminger
  1724. M: shemminger@osdl.org
  1725. L: netem@osdl.org
  1726. S: Maintained
  1727. NETFILTER/IPTABLES/IPCHAINS
  1728. P: Rusty Russell
  1729. P: Marc Boucher
  1730. P: James Morris
  1731. P: Harald Welte
  1732. P: Jozsef Kadlecsik
  1733. M: coreteam@netfilter.org
  1734. W: http://www.netfilter.org/
  1735. W: http://www.iptables.org/
  1736. L: netfilter@lists.netfilter.org
  1737. L: netfilter-devel@lists.netfilter.org
  1738. S: Supported
  1739. NETLABEL
  1740. P: Paul Moore
  1741. M: paul.moore@hp.com
  1742. W: http://netlabel.sf.net
  1743. L: netdev@vger.kernel.org
  1744. S: Supported
  1745. NETROM NETWORK LAYER
  1746. P: Ralf Baechle
  1747. M: ralf@linux-mips.org
  1748. L: linux-hams@vger.kernel.org
  1749. W: http://www.linux-ax25.org/
  1750. S: Maintained
  1751. NETWORK BLOCK DEVICE (NBD)
  1752. P: Paul Clements
  1753. M: Paul.Clements@steeleye.com
  1754. S: Maintained
  1755. NETWORK DEVICE DRIVERS
  1756. P: Andrew Morton
  1757. M: akpm@osdl.org
  1758. P: Jeff Garzik
  1759. M: jgarzik@pobox.com
  1760. L: netdev@vger.kernel.org
  1761. T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
  1762. S: Maintained
  1763. NETWORKING [GENERAL]
  1764. P: Networking Team
  1765. M: netdev@vger.kernel.org
  1766. L: netdev@vger.kernel.org
  1767. W: http://linux-net.osdl.org/
  1768. S: Maintained
  1769. NETWORKING [IPv4/IPv6]
  1770. P: David S. Miller
  1771. M: davem@davemloft.net
  1772. P: Alexey Kuznetsov
  1773. M: kuznet@ms2.inr.ac.ru
  1774. P: Pekka Savola (ipv6)
  1775. M: pekkas@netcore.fi
  1776. P: James Morris
  1777. M: jmorris@namei.org
  1778. P: Hideaki YOSHIFUJI
  1779. M: yoshfuji@linux-ipv6.org
  1780. P: Patrick McHardy
  1781. M: kaber@coreworks.de
  1782. L: netdev@vger.kernel.org
  1783. T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
  1784. S: Maintained
  1785. NETWORKING [WIRELESS]
  1786. P: John W. Linville
  1787. M: linville@tuxdriver.com
  1788. L: netdev@vger.kernel.org
  1789. T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
  1790. S: Maintained
  1791. IPVS
  1792. P: Wensong Zhang
  1793. M: wensong@linux-vs.org
  1794. P: Simon Horman
  1795. M: horms@verge.net.au
  1796. P: Julian Anastasov
  1797. M: ja@ssi.bg
  1798. L: netdev@vger.kernel.org
  1799. S: Maintained
  1800. NFS CLIENT
  1801. P: Trond Myklebust
  1802. M: trond.myklebust@fys.uio.no
  1803. L: linux-kernel@vger.kernel.org
  1804. S: Maintained
  1805. NI5010 NETWORK DRIVER
  1806. P: Jan-Pascal van Best
  1807. M: janpascal@vanbest.org
  1808. P: Andreas Mohr
  1809. M: andi@lisas.de
  1810. L: netdev@vger.kernel.org
  1811. S: Maintained
  1812. NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
  1813. P: YOKOTA Hiroshi
  1814. M: yokota@netlab.is.tsukuba.ac.jp
  1815. W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
  1816. S: Maintained
  1817. NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
  1818. P: GOTO Masanori
  1819. M: gotom@debian.or.jp
  1820. P: YOKOTA Hiroshi
  1821. M: yokota@netlab.is.tsukuba.ac.jp
  1822. W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
  1823. S: Maintained
  1824. NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
  1825. P: Eberhard Moenkeberg
  1826. M: emoenke@gwdg.de
  1827. L: linux-kernel@vger.kernel.org
  1828. S: Maintained
  1829. NTFS FILESYSTEM
  1830. P: Anton Altaparmakov
  1831. M: aia21@cantab.net
  1832. L: linux-ntfs-dev@lists.sourceforge.net
  1833. L: linux-kernel@vger.kernel.org
  1834. W: http://linux-ntfs.sf.net/
  1835. T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
  1836. S: Maintained
  1837. NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
  1838. P: Antonino Daplas
  1839. M: adaplas@pol.net
  1840. L: linux-fbdev-devel@lists.sourceforge.net
  1841. S: Maintained
  1842. OPENCORES I2C BUS DRIVER
  1843. P: Peter Korsgaard
  1844. M: jacmet@sunsite.dk
  1845. L: i2c@lm-sensors.org
  1846. S: Maintained
  1847. ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
  1848. P: Mark Fasheh
  1849. M: mark.fasheh@oracle.com
  1850. P: Kurt Hackel
  1851. M: kurt.hackel@oracle.com
  1852. L: ocfs2-devel@oss.oracle.com
  1853. W: http://oss.oracle.com/projects/ocfs2/
  1854. S: Supported
  1855. OLYMPIC NETWORK DRIVER
  1856. P: Peter De Shrijver
  1857. M: p2@ace.ulyssis.student.kuleuven.ac.be
  1858. P: Mike Phillips
  1859. M: mikep@linuxtr.net
  1860. L: netdev@vger.kernel.org
  1861. L: linux-tr@linuxtr.net
  1862. W: http://www.linuxtr.net
  1863. S: Maintained
  1864. OMNIKEY CARDMAN 4000 DRIVER
  1865. P: Harald Welte
  1866. M: laforge@gnumonks.org
  1867. S: Maintained
  1868. OMNIKEY CARDMAN 4040 DRIVER
  1869. P: Harald Welte
  1870. M: laforge@gnumonks.org
  1871. S: Maintained
  1872. ONSTREAM SCSI TAPE DRIVER
  1873. P: Willem Riede
  1874. M: osst@riede.org
  1875. L: osst-users@lists.sourceforge.net
  1876. L: linux-scsi@vger.kernel.org
  1877. S: Maintained
  1878. OPL3-SA2, SA3, and SAx DRIVER
  1879. P: Zwane Mwaikambo
  1880. M: zwane@arm.linux.org.uk
  1881. L: linux-sound@vger.kernel.org
  1882. S: Maintained
  1883. OPROFILE
  1884. P: Philippe Elie
  1885. M: phil.el@wanadoo.fr
  1886. L: oprofile-list@lists.sf.net
  1887. S: Maintained
  1888. ORINOCO DRIVER
  1889. P: Pavel Roskin
  1890. M: proski@gnu.org
  1891. P: David Gibson
  1892. M: hermes@gibson.dropbear.id.au
  1893. L: orinoco-users@lists.sourceforge.net
  1894. L: orinoco-devel@lists.sourceforge.net
  1895. W: http://www.nongnu.org/orinoco/
  1896. S: Maintained
  1897. PARALLEL PORT SUPPORT
  1898. P: Phil Blundell
  1899. M: philb@gnu.org
  1900. P: Tim Waugh
  1901. M: tim@cyberelk.net
  1902. P: David Campbell
  1903. P: Andrea Arcangeli
  1904. M: andrea@suse.de
  1905. L: linux-parport@lists.infradead.org
  1906. W: http://people.redhat.com/twaugh/parport/
  1907. S: Maintained
  1908. PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
  1909. P: Tim Waugh
  1910. M: tim@cyberelk.net
  1911. L: linux-parport@lists.infradead.org
  1912. W: http://www.torque.net/linux-pp.html
  1913. S: Maintained
  1914. PARISC ARCHITECTURE
  1915. P: Matthew Wilcox
  1916. M: matthew@wil.cx
  1917. P: Grant Grundler
  1918. M: grundler@parisc-linux.org
  1919. P: Kyle McMartin
  1920. M: kyle@parisc-linux.org
  1921. L: parisc-linux@parisc-linux.org
  1922. W: http://www.parisc-linux.org/
  1923. T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
  1924. T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
  1925. S: Maintained
  1926. PCI ERROR RECOVERY
  1927. P: Linas Vepstas
  1928. M: linas@austin.ibm.com
  1929. L: linux-kernel@vger.kernel.org
  1930. L: linux-pci@atrey.karlin.mff.cuni.cz
  1931. S: Supported
  1932. PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
  1933. P: Thomas Sailer
  1934. M: sailer@ife.ee.ethz.ch
  1935. L: linux-sound@vger.kernel.org
  1936. W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
  1937. S: Maintained
  1938. PCI SUBSYSTEM
  1939. P: Greg Kroah-Hartman
  1940. M: gregkh@suse.de
  1941. L: linux-kernel@vger.kernel.org
  1942. L: linux-pci@atrey.karlin.mff.cuni.cz
  1943. T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
  1944. S: Supported
  1945. PCI HOTPLUG CORE
  1946. P: Greg Kroah-Hartman
  1947. M: gregkh@suse.de
  1948. S: Supported
  1949. PCI HOTPLUG COMPAQ DRIVER
  1950. P: Greg Kroah-Hartman
  1951. M: greg@kroah.com
  1952. S: Maintained
  1953. PCIE HOTPLUG DRIVER
  1954. P: Kristen Carlson Accardi
  1955. M: kristen.c.accardi@intel.com
  1956. L: pcihpd-discuss@lists.sourceforge.net
  1957. S: Maintained
  1958. PCMCIA SUBSYSTEM
  1959. P: Linux PCMCIA Team
  1960. L: linux-pcmcia@lists.infradead.org
  1961. L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
  1962. T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
  1963. S: Maintained
  1964. PCNET32 NETWORK DRIVER
  1965. P: Thomas Bogendörfer
  1966. M: tsbogend@alpha.franken.de
  1967. L: netdev@vger.kernel.org
  1968. S: Maintained
  1969. PER-TASK DELAY ACCOUNTING
  1970. P: Shailabh Nagar
  1971. M: nagar@watson.ibm.com
  1972. L: linux-kernel@vger.kernel.org
  1973. S: Maintained
  1974. PERSONALITY HANDLING
  1975. P: Christoph Hellwig
  1976. M: hch@infradead.org
  1977. L: linux-abi-devel@lists.sourceforge.net
  1978. S: Maintained
  1979. PHRAM MTD DRIVER
  1980. P: Jörn Engel
  1981. M: joern@wh.fh-wedel.de
  1982. L: linux-mtd@lists.infradead.org
  1983. S: Maintained
  1984. PKTCDVD DRIVER
  1985. P: Peter Osterlund
  1986. M: petero2@telia.com
  1987. L: linux-kernel@vger.kernel.org
  1988. S: Maintained
  1989. POSIX CLOCKS and TIMERS
  1990. P: George Anzinger
  1991. M: george@mvista.com
  1992. L: linux-kernel@vger.kernel.org
  1993. S: Supported
  1994. POWERPC 4xx EMAC DRIVER
  1995. P: Eugene Surovegin
  1996. M: ebs@ebshome.net
  1997. W: http://kernel.ebshome.net/emac/
  1998. L: linuxppc-embedded@ozlabs.org
  1999. L: netdev@vger.kernel.org
  2000. S: Maintained
  2001. PNP SUPPORT
  2002. P: Adam Belay
  2003. M: ambx1@neo.rr.com
  2004. S: Maintained
  2005. PPP PROTOCOL DRIVERS AND COMPRESSORS
  2006. P: Paul Mackerras
  2007. M: paulus@samba.org
  2008. L: linux-ppp@vger.kernel.org
  2009. S: Maintained
  2010. PPP OVER ATM (RFC 2364)
  2011. P: Mitchell Blank Jr
  2012. M: mitch@sfgoth.com
  2013. S: Maintained
  2014. PPP OVER ETHERNET
  2015. P: Michal Ostrowski
  2016. M: mostrows@speakeasy.net
  2017. S: Maintained
  2018. PREEMPTIBLE KERNEL
  2019. P: Robert Love
  2020. M: rml@tech9.net
  2021. L: linux-kernel@vger.kernel.org
  2022. L: kpreempt-tech@lists.sourceforge.net
  2023. W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
  2024. S: Supported
  2025. PRISM54 WIRELESS DRIVER
  2026. P: Prism54 Development Team
  2027. M: prism54-private@prism54.org
  2028. L: netdev@vger.kernel.org
  2029. W: http://prism54.org
  2030. S: Maintained
  2031. PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
  2032. P: Peter Denison
  2033. M: promise@pnd-pc.demon.co.uk
  2034. W: http://www.pnd-pc.demon.co.uk/promise/
  2035. S: Maintained
  2036. PVRUSB2 VIDEO4LINUX DRIVER
  2037. P: Mike Isely
  2038. M: isely@pobox.com
  2039. L: pvrusb2@isely.net
  2040. L: video4linux-list@redhat.com
  2041. W: http://www.isely.net/pvrusb2/
  2042. S: Maintained
  2043. PXA2xx SUPPORT
  2044. P: Nicolas Pitre
  2045. M: nico@cam.org
  2046. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  2047. S: Maintained
  2048. QLOGIC QLA2XXX FC-SCSI DRIVER
  2049. P: Andrew Vasquez
  2050. M: linux-driver@qlogic.com
  2051. L: linux-scsi@vger.kernel.org
  2052. S: Supported
  2053. QLOGIC QLA3XXX NETWORK DRIVER
  2054. P: Ron Mercer
  2055. M: linux-driver@qlogic.com
  2056. L: netdev@vger.kernel.org
  2057. S: Supported
  2058. QNX4 FILESYSTEM
  2059. P: Anders Larsen
  2060. M: al@alarsen.net
  2061. L: linux-kernel@vger.kernel.org
  2062. W: http://www.alarsen.net/linux/qnx4fs/
  2063. S: Maintained
  2064. RADEON FRAMEBUFFER DISPLAY DRIVER
  2065. P: Benjamin Herrenschmidt
  2066. M: benh@kernel.crashing.org
  2067. L: linux-fbdev-devel@lists.sourceforge.net
  2068. S: Maintained
  2069. RAGE128 FRAMEBUFFER DISPLAY DRIVER
  2070. P: Paul Mackerras
  2071. M: paulus@samba.org
  2072. L: linux-fbdev-devel@lists.sourceforge.net
  2073. S: Maintained
  2074. RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
  2075. P: Corey Thomas
  2076. M: corey@world.std.com
  2077. L: linux-kernel@vger.kernel.org
  2078. S: Maintained
  2079. RANDOM NUMBER DRIVER
  2080. P: Matt Mackall
  2081. M: mpm@selenic.com
  2082. S: Maintained
  2083. RAPIDIO SUBSYSTEM
  2084. P: Matt Porter
  2085. M: mporter@kernel.crashing.org
  2086. L: linux-kernel@vger.kernel.org
  2087. S: Maintained
  2088. REAL TIME CLOCK DRIVER
  2089. P: Paul Gortmaker
  2090. M: p_gortmaker@yahoo.com
  2091. L: linux-kernel@vger.kernel.org
  2092. S: Maintained
  2093. REAL TIME CLOCK (RTC) SUBSYSTEM
  2094. P: Alessandro Zummo
  2095. M: a.zummo@towertech.it
  2096. L: linux-kernel@vger.kernel.org
  2097. S: Maintained
  2098. REISERFS FILE SYSTEM
  2099. P: Hans Reiser
  2100. M: reiserfs-dev@namesys.com
  2101. L: reiserfs-list@namesys.com
  2102. W: http://www.namesys.com
  2103. S: Supported
  2104. ROCKETPORT DRIVER
  2105. P: Comtrol Corp.
  2106. W: http://www.comtrol.com
  2107. S: Maintained
  2108. ROSE NETWORK LAYER
  2109. P: Ralf Baechle
  2110. M: ralf@linux-mips.org
  2111. L: linux-hams@vger.kernel.org
  2112. W: http://www.linux-ax25.org/
  2113. S: Maintained
  2114. RISCOM8 DRIVER
  2115. S: Orphan
  2116. S3 SAVAGE FRAMEBUFFER DRIVER
  2117. P: Antonino Daplas
  2118. M: adaplas@pol.net
  2119. L: linux-fbdev-devel@lists.sourceforge.net
  2120. S: Maintained
  2121. S390
  2122. P: Martin Schwidefsky
  2123. M: schwidefsky@de.ibm.com
  2124. P: Heiko Carstens
  2125. M: heiko.carstens@de.ibm.com
  2126. M: linux390@de.ibm.com
  2127. L: linux-390@vm.marist.edu
  2128. W: http://www.ibm.com/developerworks/linux/linux390/
  2129. S: Supported
  2130. S390 NETWORK DRIVERS
  2131. P: Frank Pavlic
  2132. M: fpavlic@de.ibm.com
  2133. M: linux390@de.ibm.com
  2134. L: linux-390@vm.marist.edu
  2135. W: http://www.ibm.com/developerworks/linux/linux390/
  2136. S: Supported
  2137. S390 ZFCP DRIVER
  2138. P: Swen Schillig
  2139. M: swen@vnet.ibm.com
  2140. M: linux390@de.ibm.com
  2141. L: linux-390@vm.marist.edu
  2142. W: http://www.ibm.com/developerworks/linux/linux390/
  2143. S: Supported
  2144. SAA7146 VIDEO4LINUX-2 DRIVER
  2145. P: Michael Hunold
  2146. M: michael@mihu.de
  2147. W: http://www.mihu.de/linux/saa7146
  2148. S: Maintained
  2149. SBPCD CDROM DRIVER
  2150. P: Eberhard Moenkeberg
  2151. M: emoenke@gwdg.de
  2152. L: linux-kernel@vger.kernel.org
  2153. S: Maintained
  2154. SC1200 WDT DRIVER
  2155. P: Zwane Mwaikambo
  2156. M: zwane@arm.linux.org.uk
  2157. S: Maintained
  2158. SCHEDULER
  2159. P: Ingo Molnar
  2160. M: mingo@elte.hu
  2161. P: Robert Love [the preemptible kernel bits]
  2162. M: rml@tech9.net
  2163. L: linux-kernel@vger.kernel.org
  2164. S: Maintained
  2165. SCSI CDROM DRIVER
  2166. P: Jens Axboe
  2167. M: axboe@kernel.dk
  2168. L: linux-scsi@vger.kernel.org
  2169. W: http://www.kernel.dk
  2170. S: Maintained
  2171. SCSI SG DRIVER
  2172. P: Doug Gilbert
  2173. M: dgilbert@interlog.com
  2174. L: linux-scsi@vger.kernel.org
  2175. W: http://www.torque.net/sg
  2176. S: Maintained
  2177. SCSI SUBSYSTEM
  2178. P: James E.J. Bottomley
  2179. M: James.Bottomley@SteelEye.com
  2180. L: linux-scsi@vger.kernel.org
  2181. T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
  2182. S: Maintained
  2183. SCSI TAPE DRIVER
  2184. P: Kai Mäkisara
  2185. M: Kai.Makisara@kolumbus.fi
  2186. L: linux-scsi@vger.kernel.org
  2187. S: Maintained
  2188. SCTP PROTOCOL
  2189. P: Sridhar Samudrala
  2190. M: sri@us.ibm.com
  2191. L: lksctp-developers@lists.sourceforge.net
  2192. S: Supported
  2193. SCx200 CPU SUPPORT
  2194. P: Christer Weinigel
  2195. M: christer@weinigel.se
  2196. W: http://www.weinigel.se
  2197. S: Supported
  2198. SECURITY CONTACT
  2199. P: Security Officers
  2200. M: security@kernel.org
  2201. S: Supported
  2202. SELINUX SECURITY MODULE
  2203. P: Stephen Smalley
  2204. M: sds@tycho.nsa.gov
  2205. P: James Morris
  2206. M: jmorris@namei.org
  2207. L: linux-kernel@vger.kernel.org (kernel issues)
  2208. L: selinux@tycho.nsa.gov (general discussion)
  2209. W: http://www.nsa.gov/selinux
  2210. S: Supported
  2211. SERIAL ATA (SATA) SUBSYSTEM:
  2212. P: Jeff Garzik
  2213. M: jgarzik@pobox.com
  2214. L: linux-ide@vger.kernel.org
  2215. T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
  2216. S: Supported
  2217. SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
  2218. P: Pat Gefre
  2219. M: pfg@sgi.com
  2220. L: linux-ia64@vger.kernel.org
  2221. S: Supported
  2222. SGI VISUAL WORKSTATION 320 AND 540
  2223. P: Andrey Panin
  2224. M: pazke@donpac.ru
  2225. L: linux-visws-devel@lists.sf.net
  2226. W: http://linux-visws.sf.net
  2227. S: Maintained for 2.6.
  2228. SIMTEC EB110ATX (Chalice CATS)
  2229. P: Ben Dooks
  2230. P: Vincent Sanders
  2231. M: support@simtec.co.uk
  2232. W: http://www.simtec.co.uk/products/EB110ATX/
  2233. S: Supported
  2234. SIMTEC EB2410ITX (BAST)
  2235. P: Ben Dooks
  2236. P: Vincent Sanders
  2237. M: support@simtec.co.uk
  2238. W: http://www.simtec.co.uk/products/EB2410ITX/
  2239. S: Supported
  2240. SIS 190 ETHERNET DRIVER
  2241. P: Francois Romieu
  2242. M: romieu@fr.zoreil.com
  2243. L: netdev@vger.kernel.org
  2244. S: Maintained
  2245. SIS 5513 IDE CONTROLLER DRIVER
  2246. P: Lionel Bouton
  2247. M: Lionel.Bouton@inet6.fr
  2248. W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
  2249. W: http://gyver.homeip.net/sis5513/index.html
  2250. S: Maintained
  2251. SIS 900/7016 FAST ETHERNET DRIVER
  2252. P: Daniele Venzano
  2253. M: venza@brownhat.org
  2254. W: http://www.brownhat.org/sis900.html
  2255. L: netdev@vger.kernel.org
  2256. S: Maintained
  2257. SIS FRAMEBUFFER DRIVER
  2258. P: Thomas Winischhofer
  2259. M: thomas@winischhofer.net
  2260. W: http://www.winischhofer.net/linuxsisvga.shtml
  2261. S: Maintained
  2262. SIS USB2VGA DRIVER
  2263. P: Thomas Winischhofer
  2264. M: thomas@winischhofer.net
  2265. W: http://www.winischhofer.at/linuxsisusbvga.shtml
  2266. S: Maintained
  2267. SMC91x ETHERNET DRIVER
  2268. P: Nicolas Pitre
  2269. M: nico@cam.org
  2270. S: Maintained
  2271. SOFTMAC LAYER (IEEE 802.11)
  2272. P: Johannes Berg
  2273. M: johannes@sipsolutions.net
  2274. P: Joe Jezak
  2275. M: josejx@gentoo.org
  2276. P: Daniel Drake
  2277. M: dsd@gentoo.org
  2278. W: http://softmac.sipsolutions.net/
  2279. L: netdev@vger.kernel.org
  2280. S: Maintained
  2281. SOFTWARE RAID (Multiple Disks) SUPPORT
  2282. P: Ingo Molnar
  2283. M: mingo@redhat.com
  2284. P: Neil Brown
  2285. M: neilb@cse.unsw.edu.au
  2286. L: linux-raid@vger.kernel.org
  2287. S: Maintained
  2288. SOFTWARE SUSPEND:
  2289. P: Pavel Machek
  2290. M: pavel@suse.cz
  2291. L: linux-pm@osdl.org
  2292. S: Maintained
  2293. SONIC NETWORK DRIVER
  2294. P: Thomas Bogendoerfer
  2295. M: tsbogend@alpha.franken.de
  2296. L: netdev@vger.kernel.org
  2297. S: Maintained
  2298. SONY VAIO CONTROL DEVICE DRIVER
  2299. P: Stelian Pop
  2300. M: stelian@popies.net
  2301. W: http://popies.net/sonypi/
  2302. S: Maintained
  2303. SOUND
  2304. P: Jaroslav Kysela
  2305. M: perex@suse.cz
  2306. L: alsa-devel@alsa-project.org
  2307. S: Maintained
  2308. SPI SUBSYSTEM
  2309. P: David Brownell
  2310. M: dbrownell@users.sourceforge.net
  2311. L: spi-devel-general@lists.sourceforge.net
  2312. S: Maintained
  2313. STABLE BRANCH:
  2314. P: Greg Kroah-Hartman
  2315. M: greg@kroah.com
  2316. P: Chris Wright
  2317. M: chrisw@sous-sol.org
  2318. L: stable@kernel.org
  2319. S: Maintained
  2320. STABLE BRANCH:
  2321. P: Greg Kroah-Hartman
  2322. M: greg@kroah.com
  2323. P: Chris Wright
  2324. M: chrisw@sous-sol.org
  2325. L: stable@kernel.org
  2326. S: Maintained
  2327. TPM DEVICE DRIVER
  2328. P: Kylene Hall
  2329. M: kjhall@us.ibm.com
  2330. W: http://tpmdd.sourceforge.net
  2331. L: tpmdd-devel@lists.sourceforge.net
  2332. S: Maintained
  2333. Telecom Clock Driver for MCPL0010
  2334. P: Mark Gross
  2335. M: mark.gross@intel.com
  2336. S: Supported
  2337. TENSILICA XTENSA PORT (xtensa):
  2338. P: Chris Zankel
  2339. M: chris@zankel.net
  2340. S: Maintained
  2341. UltraSPARC (sparc64):
  2342. P: David S. Miller
  2343. M: davem@davemloft.net
  2344. P: Eddie C. Dost
  2345. M: ecd@brainaid.de
  2346. P: Jakub Jelinek
  2347. M: jj@sunsite.ms.mff.cuni.cz
  2348. P: Anton Blanchard
  2349. M: anton@samba.org
  2350. L: sparclinux@vger.kernel.org
  2351. L: ultralinux@vger.kernel.org
  2352. T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
  2353. S: Maintained
  2354. SHARP LH SUPPORT (LH7952X & LH7A40X)
  2355. P: Marc Singer
  2356. M: elf@buici.com
  2357. W: http://projects.buici.com/arm
  2358. L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
  2359. S: Maintained
  2360. SHPC HOTPLUG DRIVER
  2361. P: Kristen Carlson Accardi
  2362. M: kristen.c.accardi@intel.com
  2363. L: pcihpd-discuss@lists.sourceforge.net
  2364. S: Maintained
  2365. SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
  2366. P: Pierre Ossman
  2367. M: drzeus-sdhci@drzeus.cx
  2368. L: sdhci-devel@list.drzeus.cx
  2369. W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
  2370. S: Maintained
  2371. SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
  2372. P: Stephen Hemminger
  2373. M: shemminger@osdl.org
  2374. L: netdev@vger.kernel.org
  2375. S: Maintained
  2376. SOEKRIS NET48XX LED SUPPORT
  2377. P: Chris Boot
  2378. M: bootc@bootc.net
  2379. S: Maintained
  2380. SPARC (sparc32):
  2381. P: William L. Irwin
  2382. M: wli@holomorphy.com
  2383. L: sparclinux@vger.kernel.org
  2384. S: Maintained
  2385. SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
  2386. P: Roger Wolff
  2387. M: R.E.Wolff@BitWizard.nl
  2388. L: linux-kernel@vger.kernel.org ?
  2389. S: Supported
  2390. SPIDERNET NETWORK DRIVER for CELL
  2391. P: Jim Lewis
  2392. M: jim@jklewis.com
  2393. L: netdev@vger.kernel.org
  2394. S: Supported
  2395. SRM (Alpha) environment access
  2396. P: Jan-Benedict Glaw
  2397. M: jbglaw@lug-owl.de
  2398. L: linux-kernel@vger.kernel.org
  2399. S: Maintained
  2400. STARFIRE/DURALAN NETWORK DRIVER
  2401. P: Ion Badulescu
  2402. M: ionut@cs.columbia.edu
  2403. S: Maintained
  2404. STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
  2405. W: http://mosquitonet.Stanford.EDU/strip.html
  2406. S: Unsupported ?
  2407. STRADIS MPEG-2 DECODER DRIVER
  2408. P: Nathan Laredo
  2409. M: laredo@gnu.org
  2410. W: http://www.stradis.com/
  2411. S: Maintained
  2412. SUPERH (sh)
  2413. P: Paul Mundt
  2414. M: lethal@linux-sh.org
  2415. L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
  2416. W: http://www.linux-sh.org
  2417. W: http://www.m17n.org/linux-sh/
  2418. S: Maintained
  2419. SUPERH64 (sh64)
  2420. P: Paul Mundt
  2421. M: lethal@linux-sh.org
  2422. P: Richard Curnow
  2423. M: rc@rc0.org.uk
  2424. L: linuxsh-shmedia-dev@lists.sourceforge.net
  2425. W: http://www.linux-sh.org
  2426. W: http://www.rc0.org.uk/sh64
  2427. S: Maintained
  2428. SUN3/3X
  2429. P: Sam Creasey
  2430. M: sammy@sammy.net
  2431. L: sun3-list@redhat.com
  2432. W: http://sammy.net/sun3/
  2433. S: Maintained
  2434. SVGA HANDLING
  2435. P: Martin Mares
  2436. M: mj@ucw.cz
  2437. L: linux-video@atrey.karlin.mff.cuni.cz
  2438. S: Maintained
  2439. SYSV FILESYSTEM
  2440. P: Christoph Hellwig
  2441. M: hch@infradead.org
  2442. S: Maintained
  2443. TC CLASSIFIER
  2444. P: Jamal Hadi Salim
  2445. M: hadi@cyberus.ca
  2446. L: netdev@vger.kernel.org
  2447. S: Maintained
  2448. TCP LOW PRIORITY MODULE
  2449. P: Wong Hoi Sing, Edison
  2450. M: hswong3i@gmail.com
  2451. P: Hung Hing Lun, Mike
  2452. M: hlhung3i@gmail.com
  2453. W: http://tcp-lp-mod.sourceforge.net/
  2454. S: Maintained
  2455. TI OMAP RANDOM NUMBER GENERATOR SUPPORT
  2456. P: Deepak Saxena
  2457. M: dsaxena@plexity.net
  2458. S: Maintained
  2459. TASKSTATS STATISTICS INTERFACE
  2460. P: Shailabh Nagar
  2461. M: nagar@watson.ibm.com
  2462. L: linux-kernel@vger.kernel.org
  2463. S: Maintained
  2464. TI PARALLEL LINK CABLE DRIVER
  2465. P: Romain Lievin
  2466. M: roms@lpg.ticalc.org
  2467. S: Maintained
  2468. TIPC NETWORK LAYER
  2469. P: Per Liden
  2470. M: per.liden@ericsson.com
  2471. P: Jon Maloy
  2472. M: jon.maloy@ericsson.com
  2473. P: Allan Stephens
  2474. M: allan.stephens@windriver.com
  2475. L: tipc-discussion@lists.sourceforge.net
  2476. W: http://tipc.sourceforge.net/
  2477. W: http://tipc.cslab.ericsson.net/
  2478. T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
  2479. S: Maintained
  2480. TLAN NETWORK DRIVER
  2481. P: Samuel Chessman
  2482. M: chessman@tux.org
  2483. L: tlan-devel@lists.sourceforge.net
  2484. W: http://sourceforge.net/projects/tlan/
  2485. S: Maintained
  2486. TOKEN-RING NETWORK DRIVER
  2487. P: Mike Phillips
  2488. M: mikep@linuxtr.net
  2489. L: netdev@vger.kernel.org
  2490. L: linux-tr@linuxtr.net
  2491. W: http://www.linuxtr.net
  2492. S: Maintained
  2493. TOSHIBA ACPI EXTRAS DRIVER
  2494. P: John Belmonte
  2495. M: toshiba_acpi@memebeam.org
  2496. W: http://memebeam.org/toys/ToshibaAcpiDriver
  2497. S: Maintained
  2498. TOSHIBA SMM DRIVER
  2499. P: Jonathan Buzzard
  2500. M: jonathan@buzzard.org.uk
  2501. L: tlinux-users@tce.toshiba-dme.co.jp
  2502. W: http://www.buzzard.org.uk/toshiba/
  2503. S: Maintained
  2504. TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
  2505. P: Muli Ben-Yehuda
  2506. M: mulix@mulix.org
  2507. L: linux-kernel@vger.kernel.org
  2508. S: Maintained
  2509. TRIVIAL PATCHES
  2510. P: Adrian Bunk
  2511. M: trivial@kernel.org
  2512. L: linux-kernel@vger.kernel.org
  2513. W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
  2514. T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
  2515. S: Maintained
  2516. TMS380 TOKEN-RING NETWORK DRIVER
  2517. P: Adam Fritzler
  2518. M: mid@auk.cx
  2519. L: linux-tr@linuxtr.net
  2520. W: http://www.auk.cx/tms380tr/
  2521. S: Maintained
  2522. TULIP NETWORK DRIVER
  2523. P: Valerie Henson
  2524. M: val_henson@linux.intel.com
  2525. L: tulip-users@lists.sourceforge.net
  2526. W: http://sourceforge.net/projects/tulip/
  2527. S: Maintained
  2528. TUN/TAP driver
  2529. P: Maxim Krasnyansky
  2530. M: maxk@qualcomm.com
  2531. L: vtun@office.satix.net
  2532. W: http://vtun.sourceforge.net/tun
  2533. S: Maintained
  2534. U14-34F SCSI DRIVER
  2535. P: Dario Ballabio
  2536. M: ballabio_dario@emc.com
  2537. L: linux-scsi@vger.kernel.org
  2538. S: Maintained
  2539. UDF FILESYSTEM
  2540. P: Ben Fennema
  2541. M: bfennema@falcon.csc.calpoly.edu
  2542. W: http://linux-udf.sourceforge.net
  2543. S: Maintained
  2544. UNIFORM CDROM DRIVER
  2545. P: Jens Axboe
  2546. M: axboe@kernel.dk
  2547. L: linux-kernel@vger.kernel.org
  2548. W: http://www.kernel.dk
  2549. S: Maintained
  2550. USB ACM DRIVER
  2551. P: Oliver Neukum
  2552. M: oliver@neukum.name
  2553. L: linux-usb-users@lists.sourceforge.net
  2554. L: linux-usb-devel@lists.sourceforge.net
  2555. S: Maintained
  2556. USB BLOCK DRIVER (UB ub)
  2557. P: Pete Zaitcev
  2558. M: zaitcev@redhat.com
  2559. L: linux-kernel@vger.kernel.org
  2560. L: linux-usb-devel@lists.sourceforge.net
  2561. S: Supported
  2562. USB CDC ETHERNET DRIVER
  2563. P: Greg Kroah-Hartman
  2564. M: greg@kroah.com
  2565. L: linux-usb-users@lists.sourceforge.net
  2566. L: linux-usb-devel@lists.sourceforge.net
  2567. S: Maintained
  2568. W: http://www.kroah.com/linux-usb/
  2569. USB EHCI DRIVER
  2570. P: David Brownell
  2571. M: dbrownell@users.sourceforge.net
  2572. L: linux-usb-devel@lists.sourceforge.net
  2573. S: Maintained
  2574. USB ET61X[12]51 DRIVER
  2575. P: Luca Risolia
  2576. M: luca.risolia@studio.unibo.it
  2577. L: linux-usb-devel@lists.sourceforge.net
  2578. L: video4linux-list@redhat.com
  2579. W: http://www.linux-projects.org
  2580. S: Maintained
  2581. USB HID/HIDBP DRIVERS
  2582. P: Vojtech Pavlik
  2583. M: vojtech@suse.cz
  2584. L: linux-usb-users@lists.sourceforge.net
  2585. L: linux-usb-devel@lists.sourceforge.net
  2586. S: Maintained
  2587. USB HUB DRIVER
  2588. P: Johannes Erdfelt
  2589. M: johannes@erdfelt.com
  2590. L: linux-usb-users@lists.sourceforge.net
  2591. L: linux-usb-devel@lists.sourceforge.net
  2592. S: Maintained
  2593. USB ISP116X DRIVER
  2594. P: Olav Kongas
  2595. M: ok@artecdesign.ee
  2596. L: linux-usb-devel@lists.sourceforge.net
  2597. S: Maintained
  2598. USB KAWASAKI LSI DRIVER
  2599. P: Oliver Neukum
  2600. M: oliver@neukum.name
  2601. L: linux-usb-users@lists.sourceforge.net
  2602. L: linux-usb-devel@lists.sourceforge.net
  2603. S: Maintained
  2604. USB MASS STORAGE DRIVER
  2605. P: Matthew Dharm
  2606. M: mdharm-usb@one-eyed-alien.net
  2607. L: linux-usb-users@lists.sourceforge.net
  2608. L: usb-storage@lists.one-eyed-alien.net
  2609. S: Maintained
  2610. W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
  2611. USB OHCI DRIVER
  2612. P: Roman Weissgaerber
  2613. M: weissg@vienna.at
  2614. L: linux-usb-users@lists.sourceforge.net
  2615. L: linux-usb-devel@lists.sourceforge.net
  2616. S: Maintained
  2617. USB OPTION-CARD DRIVER
  2618. P: Matthias Urlichs
  2619. M: smurf@smurf.noris.de
  2620. L: linux-usb-devel@lists.sourceforge.net
  2621. S: Maintained
  2622. USB OV511 DRIVER
  2623. P: Mark McClelland
  2624. M: mmcclell@bigfoot.com
  2625. L: linux-usb-users@lists.sourceforge.net
  2626. L: linux-usb-devel@lists.sourceforge.net
  2627. W: http://alpha.dyndns.org/ov511/
  2628. S: Maintained
  2629. USB PEGASUS DRIVER
  2630. P: Petko Manolov
  2631. M: petkan@users.sourceforge.net
  2632. L: linux-usb-users@lists.sourceforge.net
  2633. L: linux-usb-devel@lists.sourceforge.net
  2634. W: http://pegasus2.sourceforge.net/
  2635. S: Maintained
  2636. USB PRINTER DRIVER
  2637. P: Vojtech Pavlik
  2638. M: vojtech@suse.cz
  2639. L: linux-usb-users@lists.sourceforge.net
  2640. L: linux-usb-devel@lists.sourceforge.net
  2641. S: Maintained
  2642. USB RTL8150 DRIVER
  2643. P: Petko Manolov
  2644. M: petkan@users.sourceforge.net
  2645. L: linux-usb-users@lists.sourceforge.net
  2646. L: linux-usb-devel@lists.sourceforge.net
  2647. W: http://pegasus2.sourceforge.net/
  2648. S: Maintained
  2649. USB SE401 DRIVER
  2650. P: Jeroen Vreeken
  2651. M: pe1rxq@amsat.org
  2652. L: linux-usb-users@lists.sourceforge.net
  2653. L: linux-usb-devel@lists.sourceforge.net
  2654. W: http://www.chello.nl/~j.vreeken/se401/
  2655. S: Maintained
  2656. USB SERIAL CYBERJACK DRIVER
  2657. P: Matthias Bruestle and Harald Welte
  2658. M: support@reiner-sct.com
  2659. W: http://www.reiner-sct.de/support/treiber_cyberjack.php
  2660. S: Maintained
  2661. USB SERIAL DIGI ACCELEPORT DRIVER
  2662. P: Peter Berger and Al Borchers
  2663. M: pberger@brimson.com
  2664. M: alborchers@steinerpoint.com
  2665. L: linux-usb-users@lists.sourceforge.net
  2666. L: linux-usb-devel@lists.sourceforge.net
  2667. S: Maintained
  2668. USB SERIAL DRIVER
  2669. P: Greg Kroah-Hartman
  2670. M: gregkh@suse.de
  2671. L: linux-usb-users@lists.sourceforge.net
  2672. L: linux-usb-devel@lists.sourceforge.net
  2673. S: Supported
  2674. USB SERIAL BELKIN F5U103 DRIVER
  2675. P: William Greathouse
  2676. M: wgreathouse@smva.com
  2677. L: linux-usb-users@lists.sourceforge.net
  2678. L: linux-usb-devel@lists.sourceforge.net
  2679. S: Maintained
  2680. USB SERIAL CYPRESS M8 DRIVER
  2681. P: Lonnie Mendez
  2682. M: dignome@gmail.com
  2683. L: linux-usb-users@lists.sourceforge.net
  2684. L: linux-usb-devel@lists.sourceforge.net
  2685. S: Maintained
  2686. W: http://geocities.com/i0xox0i
  2687. W: http://firstlight.net/cvs
  2688. USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
  2689. L: linux-usb-users@lists.sourceforge.net
  2690. L: linux-usb-devel@lists.sourceforge.net
  2691. S: Maintained
  2692. USB AUERSWALD DRIVER
  2693. P: Wolfgang Muees
  2694. M: wolfgang@iksw-muees.de
  2695. L: linux-usb-users@lists.sourceforge.net
  2696. L: linux-usb-devel@lists.sourceforge.net
  2697. S: Maintained
  2698. USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
  2699. P: Gary Brubaker
  2700. M: xavyer@ix.netcom.com
  2701. L: linux-usb-users@lists.sourceforge.net
  2702. L: linux-usb-devel@lists.sourceforge.net
  2703. S: Maintained
  2704. USB SERIAL KEYSPAN DRIVER
  2705. P: Greg Kroah-Hartman
  2706. M: greg@kroah.com
  2707. L: linux-usb-users@lists.sourceforge.net
  2708. L: linux-usb-devel@lists.sourceforge.net
  2709. W: http://www.kroah.com/linux/
  2710. S: Maintained
  2711. USB SERIAL WHITEHEAT DRIVER
  2712. P: Stuart MacDonald
  2713. M: stuartm@connecttech.com
  2714. L: linux-usb-users@lists.sourceforge.net
  2715. L: linux-usb-devel@lists.sourceforge.net
  2716. W: http://www.connecttech.com
  2717. S: Supported
  2718. USB SN9C10x DRIVER
  2719. P: Luca Risolia
  2720. M: luca.risolia@studio.unibo.it
  2721. L: linux-usb-devel@lists.sourceforge.net
  2722. L: video4linux-list@redhat.com
  2723. W: http://www.linux-projects.org
  2724. S: Maintained
  2725. USB SUBSYSTEM
  2726. P: Greg Kroah-Hartman
  2727. M: gregkh@suse.de
  2728. L: linux-usb-users@lists.sourceforge.net
  2729. L: linux-usb-devel@lists.sourceforge.net
  2730. W: http://www.linux-usb.org
  2731. T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
  2732. S: Supported
  2733. USB UHCI DRIVER
  2734. P: Alan Stern
  2735. M: stern@rowland.harvard.edu
  2736. L: linux-usb-users@lists.sourceforge.net
  2737. L: linux-usb-devel@lists.sourceforge.net
  2738. S: Maintained
  2739. USB "USBNET" DRIVER
  2740. P: David Brownell
  2741. M: dbrownell@users.sourceforge.net
  2742. L: linux-usb-devel@lists.sourceforge.net
  2743. S: Maintained
  2744. USB W996[87]CF DRIVER
  2745. P: Luca Risolia
  2746. M: luca.risolia@studio.unibo.it
  2747. L: linux-usb-devel@lists.sourceforge.net
  2748. L: video4linux-list@redhat.com
  2749. W: http://www.linux-projects.org
  2750. S: Maintained
  2751. USB ZC0301 DRIVER
  2752. P: Luca Risolia
  2753. M: luca.risolia@studio.unibo.it
  2754. L: linux-usb-devel@lists.sourceforge.net
  2755. L: video4linux-list@redhat.com
  2756. W: http://www.linux-projects.org
  2757. S: Maintained
  2758. USB ZD1201 DRIVER
  2759. P: Jeroen Vreeken
  2760. M: pe1rxq@amsat.org
  2761. L: linux-usb-users@lists.sourceforge.net
  2762. L: linux-usb-devel@lists.sourceforge.net
  2763. W: http://linux-lc100020.sourceforge.net
  2764. S: Maintained
  2765. USER-MODE LINUX
  2766. P: Jeff Dike
  2767. M: jdike@karaya.com
  2768. L: user-mode-linux-devel@lists.sourceforge.net
  2769. L: user-mode-linux-user@lists.sourceforge.net
  2770. W: http://user-mode-linux.sourceforge.net
  2771. S: Maintained
  2772. FAT/VFAT/MSDOS FILESYSTEM:
  2773. P: OGAWA Hirofumi
  2774. M: hirofumi@mail.parknet.co.jp
  2775. L: linux-kernel@vger.kernel.org
  2776. S: Maintained
  2777. VIA 82Cxxx AUDIO DRIVER (old OSS driver)
  2778. P: Jeff Garzik
  2779. S: Odd fixes
  2780. VIA RHINE NETWORK DRIVER
  2781. P: Roger Luethi
  2782. M: rl@hellgate.ch
  2783. S: Maintained
  2784. VIAPRO SMBUS DRIVER
  2785. P: Jean Delvare
  2786. M: khali@linux-fr.org
  2787. L: i2c@lm-sensors.org
  2788. S: Maintained
  2789. UCLINUX (AND M68KNOMMU)
  2790. P: Greg Ungerer
  2791. M: gerg@uclinux.org
  2792. W: http://www.uclinux.org/
  2793. L: uclinux-dev@uclinux.org (subscribers-only)
  2794. S: Maintained
  2795. UCLINUX FOR NEC V850
  2796. P: Miles Bader
  2797. M: uclinux-v850@lsi.nec.co.jp
  2798. W: http://www.ic.nec.co.jp/micro/uclinux/eng/
  2799. W: http://www.ee.nec.de/uclinux/
  2800. S: Supported
  2801. UCLINUX FOR RENESAS H8/300
  2802. P: Yoshinori Sato
  2803. M: ysato@users.sourceforge.jp
  2804. W: http://uclinux-h8.sourceforge.jp/
  2805. S: Supported
  2806. USB DIAMOND RIO500 DRIVER
  2807. P: Cesar Miquel
  2808. M: miquel@df.uba.ar
  2809. L: rio500-users@lists.sourceforge.net
  2810. W: http://rio500.sourceforge.net
  2811. S: Maintained
  2812. VIDEO FOR LINUX
  2813. P: Mauro Carvalho Chehab
  2814. M: mchehab@infradead.org
  2815. M: v4l-dvb-maintainer@linuxtv.org
  2816. L: video4linux-list@redhat.com
  2817. W: http://linuxtv.org
  2818. T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
  2819. S: Maintained
  2820. VT1211 HARDWARE MONITOR DRIVER
  2821. P: Juerg Haefliger
  2822. M: juergh@gmail.com
  2823. L: lm-sensors@lm-sensors.org
  2824. S: Maintained
  2825. VT8231 HARDWARE MONITOR DRIVER
  2826. P: Roger Lucas
  2827. M: roger@planbit.co.uk
  2828. L: lm-sensors@lm-sensors.org
  2829. S: Maintained
  2830. W1 DALLAS'S 1-WIRE BUS
  2831. P: Evgeniy Polyakov
  2832. M: johnpol@2ka.mipt.ru
  2833. S: Maintained
  2834. W83791D HARDWARE MONITORING DRIVER
  2835. P: Charles Spirakis
  2836. M: bezaur@gmail.com
  2837. L: lm-sensors@lm-sensors.org
  2838. S: Maintained
  2839. W83L51xD SD/MMC CARD INTERFACE DRIVER
  2840. P: Pierre Ossman
  2841. M: drzeus-wbsd@drzeus.cx
  2842. L: wbsd-devel@list.drzeus.cx
  2843. W: http://projects.drzeus.cx/wbsd
  2844. S: Maintained
  2845. WATCHDOG DEVICE DRIVERS
  2846. P: Wim Van Sebroeck
  2847. M: wim@iguana.be
  2848. T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
  2849. S: Maintained
  2850. WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
  2851. P: Jean Tourrilhes
  2852. M: jt@hpl.hp.com
  2853. W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
  2854. S: Maintained
  2855. WD7000 SCSI DRIVER
  2856. P: Miroslav Zagorac
  2857. M: zaga@fly.cc.fer.hr
  2858. L: linux-scsi@vger.kernel.org
  2859. S: Maintained
  2860. WISTRON LAPTOP BUTTON DRIVER
  2861. P: Miloslav Trmac
  2862. M: mitr@volny.cz
  2863. S: Maintained
  2864. WL3501 WIRELESS PCMCIA CARD DRIVER
  2865. P: Arnaldo Carvalho de Melo
  2866. M: acme@conectiva.com.br
  2867. W: http://advogato.org/person/acme
  2868. S: Maintained
  2869. X.25 NETWORK LAYER
  2870. P: Henner Eisen
  2871. M: eis@baty.hanse.de
  2872. L: linux-x25@vger.kernel.org
  2873. S: Maintained
  2874. XFS FILESYSTEM
  2875. P: Silicon Graphics Inc
  2876. P: Tim Shimmin, David Chatterton
  2877. M: xfs-masters@oss.sgi.com
  2878. L: xfs@oss.sgi.com
  2879. W: http://oss.sgi.com/projects/xfs
  2880. T: git git://oss.sgi.com:8090/xfs/xfs-2.6
  2881. S: Supported
  2882. X86 3-LEVEL PAGING (PAE) SUPPORT
  2883. P: Ingo Molnar
  2884. M: mingo@redhat.com
  2885. S: Maintained
  2886. X86-64 port
  2887. P: Andi Kleen
  2888. M: ak@suse.de
  2889. L: discuss@x86-64.org
  2890. W: http://www.x86-64.org
  2891. S: Maintained
  2892. YAM DRIVER FOR AX.25
  2893. P: Jean-Paul Roubelat
  2894. M: jpr@f6fbb.org
  2895. L: linux-hams@vger.kernel.org
  2896. S: Maintained
  2897. YEALINK PHONE DRIVER
  2898. P: Henk Vergonet
  2899. M: Henk.Vergonet@gmail.com
  2900. L: usbb2k-api-dev@nongnu.org
  2901. S: Maintained
  2902. YMFPCI YAMAHA PCI SOUND (Use ALSA instead)
  2903. P: Pete Zaitcev
  2904. M: zaitcev@yahoo.com
  2905. L: linux-kernel@vger.kernel.org
  2906. S: Obsolete
  2907. Z8530 DRIVER FOR AX.25
  2908. P: Joerg Reuter
  2909. M: jreuter@yaina.de
  2910. W: http://yaina.de/jreuter/
  2911. W: http://www.qsl.net/dl1bke/
  2912. L: linux-hams@vger.kernel.org
  2913. S: Maintained
  2914. ZD1211RW WIRELESS DRIVER
  2915. P: Daniel Drake
  2916. M: dsd@gentoo.org
  2917. P: Ulrich Kunitz
  2918. M: kune@deine-taler.de
  2919. W: http://zd1211.ath.cx/wiki/DriverRewrite
  2920. L: zd1211-devs@lists.sourceforge.net (subscribers-only)
  2921. S: Maintained
  2922. ZF MACHZ WATCHDOG
  2923. P: Fernando Fuganti
  2924. M: fuganti@netbank.com.br
  2925. W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
  2926. S: Maintained
  2927. ZR36067 VIDEO FOR LINUX DRIVER
  2928. P: Ronald Bultje
  2929. M: rbultje@ronald.bitfreak.net
  2930. L: mjpeg-users@lists.sourceforge.net
  2931. W: http://mjpeg.sourceforge.net/driver-zoran/
  2932. S: Maintained
  2933. ZR36120 VIDEO FOR LINUX DRIVER
  2934. P: Pauline Middelink
  2935. M: middelin@polyware.nl
  2936. W: http://www.polyware.nl/~middelin/En/hobbies.html
  2937. W: http://www.polyware.nl/~middelin/hobbies.html
  2938. S: Maintained
  2939. THE REST
  2940. P: Linus Torvalds
  2941. S: Buried alive in reporters