MAINTAINERS 69 KB

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