MAINTAINERS 71 KB

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