MAINTAINERS 64 KB

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