MAINTAINERS 68 KB

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