MAINTAINERS 68 KB

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