MAINTAINERS 66 KB

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