MAINTAINERS 65 KB

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