blob: 953291d08c76ff1cdea0b2c05ee7fb03cd6bfaa6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
33 generalized kernel feature ready for next time. See
34 Documentation/CodingStyle for guidance here.
35
36 PLEASE try to include any credit lines you want added with the
37 patch. It avoids people being missed off by mistake and makes
38 it easier to know who wants adding and who doesn't.
39
40 PLEASE document known bugs. If it doesn't work for everything
41 or does something very odd once a month document it.
42
Alan Coxc9ee1332006-05-20 15:00:12 -070043 PLEASE remember that submissions must be made under the terms
44 of the OSDL certificate of contribution
45 (http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html)
46 and should include a Signed-off-by: line.
47
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486. Make sure you have the right to send any changes you make. If you
49 do changes at work you may find your employer owns the patch
50 not you.
51
Alan Coxc9ee1332006-05-20 15:00:12 -0700527. When sending security related changes or reports to a maintainer
53 please Cc: security@kernel.org, especially if the maintainer
54 does not respond.
55
568. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Antoine Jacquetb7eee612007-04-27 12:30:59 -030058 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60Maintainers List (try to look for most precise areas first)
61
62Note: For the hard of thinking, this list is meant to remain in alphabetical
63order. If you could add yourselves to it in alphabetical order that would be
64so much easier [Ed]
65
66P: Person
67M: Mail patches to
68L: Mailing list that is relevant to this area
69W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080070T: SCM tree type and location. Type is one of: git, hg, quilt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071S: Status, one of the following:
72
73 Supported: Someone is actually paid to look after this.
74 Maintained: Someone actually looks after it.
75 Odd Fixes: It has a maintainer but they don't have time to do
76 much other than throw the odd patch in. See below..
77 Orphan: No current maintainer [but maybe you could take the
78 role as you write your new code].
79 Obsolete: Old code. Something tagged obsolete generally means
80 it has been replaced by a better system and you
81 should be using that.
82
833C359 NETWORK DRIVER
84P: Mike Phillips
85M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -070086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070087L: linux-tr@linuxtr.net
88W: http://www.linuxtr.net
89S: Maintained
90
913C505 NETWORK DRIVER
92P: Philip Blundell
93M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -070094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070095S: Maintained
96
973CR990 NETWORK DRIVER
98P: David Dillow
99M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101S: Maintained
102
1033W-XXXX ATA-RAID CONTROLLER DRIVER
104P: Adam Radford
105M: linuxraid@amcc.com
106L: linux-scsi@vger.kernel.org
107W: http://www.amcc.com
108S: Supported
109
1103W-9XXX SATA-RAID CONTROLLER DRIVER
111P: Adam Radford
112M: linuxraid@amcc.com
113L: linux-scsi@vger.kernel.org
114W: http://www.amcc.com
115S: Supported
116
11753C700 AND 53C700-66 SCSI DRIVER
118P: James E.J. Bottomley
119M: James.Bottomley@HansenPartnership.com
120L: linux-scsi@vger.kernel.org
121S: Maintained
122
1236PACK NETWORK DRIVER FOR AX.25
124P: Andreas Koensgen
125M: ajk@iehk.rwth-aachen.de
126L: linux-hams@vger.kernel.org
127S: Maintained
128
1298139CP 10/100 FAST ETHERNET DRIVER
130P: Jeff Garzik
131M: jgarzik@pobox.com
132S: Maintained
133
1348139TOO 10/100 FAST ETHERNET DRIVER
135P: Jeff Garzik
136M: jgarzik@pobox.com
137W: http://sourceforge.net/projects/gkernel/
138S: Maintained
139
1408169 10/100/1000 GIGABIT ETHERNET DRIVER
141P: Francois Romieu
142M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700143L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Maintained
145
1468250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-serial@vger.kernel.org
148W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100149S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1518390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
152P: Paul Gortmaker
153M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
156
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001579P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100158P: Eric Van Hensbergen
159M: ericvh@gmail.com
160P: Ron Minnich
161M: rminnich@lanl.gov
162P: Latchesar Ionkov
163M: lucho@ionkov.net
164L: v9fs-developer@lists.sourceforge.net
165W: http://v9fs.sf.net
166T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
167S: Maintained
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169A2232 SERIAL BOARD DRIVER
170P: Enver Haase
171M: ehaase@inf.fu-berlin.de
172M: A2232@gmx.net
173L: linux-m68k@lists.linux-m68k.org
174S: Maintained
175
176AIO
177P: Benjamin LaHaise
178M: bcrl@kvack.org
179L: linux-aio@kvack.org
180S: Supported
181
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200182ABIT UGURU HARDWARE MONITOR DRIVER
183P: Hans de Goede
184M: j.w.r.degoede@hhs.nl
185L: lm-sensors@lm-sensors.org
186S: Maintained
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188ACENIC DRIVER
189P: Jes Sorensen
190M: jes@trained-monkey.org
191L: linux-acenic@sunsite.dk
192S: Maintained
193
194ACI MIXER DRIVER
195P: Robert Siemer
196M: Robert.Siemer@gmx.de
197L: linux-sound@vger.kernel.org
198W: http://www.stud.uni-karlsruhe.de/~uh1b/
199S: Maintained
200
Salyzyn, Marke6d1fc32007-03-29 01:20:24 -0700201IPS SCSI RAID DRIVER
202P: Adaptec OEM Raid Solutions
203M: aacraid@adaptec.com
204L: linux-scsi@vger.kernel.org
205W: http://www.adaptec.com/
206S: Maintained
207
208DPT_I2O SCSI RAID DRIVER
209P: Adaptec OEM Raid Solutions
210M: aacraid@adaptec.com
211L: linux-scsi@vger.kernel.org
212W: http://www.adaptec.com/
213S: Maintained
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215AACRAID SCSI RAID DRIVER
216P: Adaptec OEM Raid Solutions
Salyzyn, Marke6d1fc32007-03-29 01:20:24 -0700217M: aacraid@adaptec.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218L: linux-scsi@vger.kernel.org
Salyzyn, Marke6d1fc32007-03-29 01:20:24 -0700219W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220S: Supported
221
222ACPI
223P: Len Brown
224M: len.brown@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500225M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500226L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800228T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500229S: Supported
230
231ACPI BATTERY DRIVERS
232P: Vladimir P. Lebedev
233M: vladimir.p.lebedev@intel.com
234L: linux-acpi@vger.kernel.org
235W: http://acpi.sourceforge.net/
236S: Supported
237
238ACPI EC DRIVER
239P: Alexey Starikovskiy
240M: alexey.y.starikovskiy@linux.intel.com
241L: linux-acpi@vger.kernel.org
242W: http://acpi.sourceforge.net/
243S: Supported
244
245ACPI FAN DRIVER
246P: Konstantin A. Karasyov
247M: konstantin.a.karasyov@intel.com
248L: linux-acpi@vger.kernel.org
249W: http://acpi.sourceforge.net/
250S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700252ACPI PCI HOTPLUG DRIVER
253P: Kristen Carlson Accardi
254M: kristen.c.accardi@intel.com
255L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -0500256S: Supported
257
258ACPI THERMAL DRIVER
259P: Konstantin A. Karasyov
260M: konstantin.a.karasyov@intel.com
261L: linux-acpi@vger.kernel.org
262W: http://acpi.sourceforge.net/
263S: Supported
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700264
Len Brown359acec2007-02-10 01:59:24 -0500265ACPI VIDEO DRIVER
266P: Luming Yu
267M: luming.yu@intel.com
268L: linux-acpi@vger.kernel.org
269W: http://acpi.sourceforge.net/
270S: Supported
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272AD1816 SOUND DRIVER
273P: Thorsten Knabe
274M: Thorsten Knabe <linux@thorsten-knabe.de>
275W: http://linux.thorsten-knabe.de
276S: Maintained
277
Kyle McMartin6958ae32005-10-21 23:11:27 -0400278AD1889 SOUND DRIVER
279P: Kyle McMartin
280M: kyle@parisc-linux.org
281P: Thibaut Varene
282M: T-Bone@parisc-linux.org
283W: http://wiki.parisc-linux.org/AD1889
284L: parisc-linux@lists.parisc-linux.org
285S: Maintained
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287ADM1025 HARDWARE MONITOR DRIVER
288P: Jean Delvare
289M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200290L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291S: Maintained
292
Corentin Labbecae2caa2007-02-14 21:15:04 +0100293ADM1029 HARDWARE MONITOR DRIVER
294P: Corentin Labbe
295M: corentin.labbe@geomatys.fr
296L: lm-sensors@lm-sensors.org
297S: Maintained
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299ADT746X FAN DRIVER
300P: Colin Leroy
301M: colin@colino.net
302S: Maintained
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304AEDSP16 DRIVER
305P: Riccardo Facchetti
306M: fizban@tin.it
307S: Maintained
308
309AFFS FILE SYSTEM
310P: Roman Zippel
311M: zippel@linux-m68k.org
312S: Maintained
313
314AGPGART DRIVER
315P: Dave Jones
316M: davej@codemonkey.org.uk
317W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800318T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319S: Maintained
320
321AHA152X SCSI DRIVER
322P: Juergen E. Fischer
323M: Juergen Fischer <fischer@norbit.de>
324L: linux-scsi@vger.kernel.org
325S: Maintained
326
327ALCATEL SPEEDTOUCH USB DRIVER
328P: Duncan Sands
329M: duncan.sands@free.fr
330L: linux-usb-users@lists.sourceforge.net
331L: linux-usb-devel@lists.sourceforge.net
332W: http://www.linux-usb.org/SpeedTouch/
333S: Maintained
334
Pierre Ossman272f1332007-05-14 21:25:26 +0200335ALCHEMY AU1XX0 MMC DRIVER
336S: Orphan
337
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000338ALI1563 I2C DRIVER
339P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100340M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200341L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000342S: Maintained
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344ALPHA PORT
345P: Richard Henderson
346M: rth@twiddle.net
347S: Odd Fixes for 2.4; Maintained for 2.6.
348P: Ivan Kokshaysky
349M: ink@jurassic.park.msu.ru
350S: Maintained for 2.4; PCI support for 2.6.
351
Jordan Crousef90b8112006-01-06 00:12:14 -0800352AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100353P: Jordan Crouse
354M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800355L: info-linux@geode.amd.com
356W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
357S: Supported
358
Stelian Pop284f42b2006-12-12 18:18:31 +0100359AMS (Apple Motion Sensor) DRIVER
360P: Stelian Pop
361M: stelian@popies.net
362P: Michael Hanselmann
363M: linux-kernel@hansmi.ch
364S: Supported
365
Tom Tuckerf94b5332006-09-22 15:22:48 -0700366AMSO1100 RNIC DRIVER
367P: Tom Tucker
368M: tom@opengridcomputing.com
369P: Steve Wise
370M: swise@opengridcomputing.com
371L: openib-general@openib.org
372S: Maintained
373
Johannes Berg42269062006-07-25 16:15:50 +0200374AOA (Apple Onboard Audio) ALSA DRIVER
375P: Johannes Berg
376M: johannes@sipsolutions.net
377L: linuxppc-dev@ozlabs.org
Takashi Iwai82622042007-04-16 12:32:52 +0200378L: alsa-devel@alsa-project.org (subscribers-only)
Johannes Berg42269062006-07-25 16:15:50 +0200379S: Maintained
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381APM DRIVER
382P: Stephen Rothwell
383M: sfr@canb.auug.org.au
384L: linux-laptop@vger.kernel.org
385W: http://www.canb.auug.org.au/~sfr/
386S: Supported
387
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700388APPLE SMC DRIVER
389P: Nicolas Boichat
390M: nicolas@boichat.ch
391L: mactel-linux-devel@lists.sourceforge.net
392S: Maintained
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394APPLETALK NETWORK LAYER
395P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300396M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397S: Maintained
398
Jaya Kumar1154ea72005-06-21 17:17:04 -0700399ARC FRAMEBUFFER DRIVER
400P: Jaya Kumar
401M: jayalk@intworks.biz
402S: Maintained
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404ARM26 ARCHITECTURE
405P: Ian Molton
406M: spyro@f2s.com
407S: Maintained
408
409ARM26/ARCHIMEDES
410P: Ian Molton
411M: spyro@f2s.com
412S: Maintained
413
414ARM26/A5000
415P: John Appleby
416M: john@dnsworld.co.uk
417S: Maintained
418
419ARM MFM AND FLOPPY DRIVERS
420P: Ian Molton
421M: spyro@f2s.com
422S: Maintained
423
Russell King2761f5c2007-05-24 06:56:08 +0200424ARM PRIMECELL MMCI PL180/1 DRIVER
425P: Russell King
426M: rmk@arm.linux.org.uk
427L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
428S: Maintained
429
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800430ARM/ADI ROADRUNNER MACHINE SUPPORT
431P: Lennert Buytenhek
432M: kernel@wantstofly.org
433L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
434S: Maintained
435
436ARM/ADS SPHERE MACHINE SUPPORT
437P: Lennert Buytenhek
438M: kernel@wantstofly.org
439L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
440S: Maintained
441
442ARM/AJECO 1ARM MACHINE SUPPORT
443P: Lennert Buytenhek
444M: kernel@wantstofly.org
445L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
446S: Maintained
447
Andrew Victord4a89c72006-12-04 13:56:21 +0100448ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
449P: Andrew Victor
450M: andrew@sanpeople.com
451L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
452W: http://maxim.org.za/at91_26.html
453S: Maintained
454
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800455ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
456P: Lennert Buytenhek
457M: kernel@wantstofly.org
458L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
459S: Maintained
460
461ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
462P: Lennert Buytenhek
463M: kernel@wantstofly.org
464L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
465S: Maintained
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467ARM/CORGI MACHINE SUPPORT
468P: Richard Purdie
469M: rpurdie@rpsys.net
470S: Maintained
471
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800472ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
473P: Lennert Buytenhek
474M: kernel@wantstofly.org
475L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
476S: Maintained
477
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100478ARM/HP JORNADA 7XX MACHINE SUPPORT
479P: Kristoffer Ericson
480M: kristoffer_e1@hotmail.com
481W: www.jlime.com
482S: Maintained
483
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800484ARM/INTEL IOP32X ARM ARCHITECTURE
485P: Lennert Buytenhek
486M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100487P: Dan Williams
488M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800489L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100490S: Supported
491
492ARM/INTEL IOP33X ARM ARCHITECTURE
493P: Dan Williams
494M: dan.j.williams@intel.com
495L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
496S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800497
498ARM/INTEL IOP13XX ARM ARCHITECTURE
499P: Lennert Buytenhek
500M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100501P: Dan Williams
502M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800503L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100504S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800505
506ARM/INTEL IQ81342EX MACHINE SUPPORT
507P: Lennert Buytenhek
508M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100509P: Dan Williams
510M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800511L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100512S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800513
514ARM/INTEL IXP2000 ARM ARCHITECTURE
515P: Lennert Buytenhek
516M: kernel@wantstofly.org
517L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
518S: Maintained
519
520ARM/INTEL IXDP2850 MACHINE SUPPORT
521P: Lennert Buytenhek
522M: kernel@wantstofly.org
523L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
524S: Maintained
525
526ARM/INTEL IXP23XX ARM ARCHITECTURE
527P: Lennert Buytenhek
528M: kernel@wantstofly.org
529L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
530S: Maintained
531
532ARM/INTEL XSC3 (MANZANO) ARM CORE
533P: Lennert Buytenhek
534M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100535P: Dan Williams
536M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800537L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100538S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800539
540ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
541P: Lennert Buytenhek
542M: kernel@wantstofly.org
543L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
544S: Maintained
545
546ARM/LOGICPD PXA270 MACHINE SUPPORT
547P: Lennert Buytenhek
548M: kernel@wantstofly.org
549L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
550S: Maintained
551
Dirk Opfer8459c152005-11-06 14:27:52 +0000552ARM/TOSA MACHINE SUPPORT
553P: Dirk Opfer
554M: dirk@opfer-online.de
555S: Maintained
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557ARM/PLEB SUPPORT
558P: Peter Chubb
559M: pleb@gelato.unsw.edu.au
560W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
561S: Maintained
562
563ARM/PT DIGITAL BOARD PORT
564P: Stefan Eletzhofer
565M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700566L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567W: http://www.arm.linux.org.uk/
568S: Maintained
569
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800570ARM/RADISYS ENP2611 MACHINE SUPPORT
571P: Lennert Buytenhek
572M: kernel@wantstofly.org
573L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
574S: Maintained
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576ARM/SHARK MACHINE SUPPORT
577P: Alexander Schulz
578M: alex@shark-linux.de
579W: http://www.shark-linux.de/shark.html
580S: Maintained
581
582ARM/STRONGARM110 PORT
583P: Russell King
584M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700585L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586W: http://www.arm.linux.org.uk/
587S: Maintained
588
589ARM/S3C2410 ARM ARCHITECTURE
590P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800591M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700592L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593W: http://www.fluff.org/ben/linux/
594S: Maintained
595
596ARM/S3C2440 ARM ARCHITECTURE
597P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800598M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700599L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600W: http://www.fluff.org/ben/linux/
601S: Maintained
602
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800603ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
604P: Lennert Buytenhek
605M: kernel@wantstofly.org
606L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
607S: Maintained
608
609ARM/THECUS N2100 MACHINE SUPPORT
610P: Lennert Buytenhek
611M: kernel@wantstofly.org
612L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
613S: Maintained
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615ARPD SUPPORT
616P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700617L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618S: Maintained
619
620ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500621P: Corentin Chary
622M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623P: Karol Kozimor
624M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625L: acpi4asus-user@lists.sourceforge.net
626W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500627W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628S: Maintained
629
Corentin Chary85091b72007-01-26 14:04:30 +0100630ASUS LAPTOP EXTRAS DRIVER
631P: Corentin Chary
632M: corentincj@iksaif.net
633L: acpi4asus-user@lists.sourceforge.net
634W: http://sourceforge.net/projects/acpi4asus
635W: http://xf.iksaif.net/acpi4asus
636S: Maintained
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638ATA OVER ETHERNET DRIVER
639P: Ed L. Cashin
640M: ecashin@coraid.com
641W: http://www.coraid.com/support/linux
642S: Supported
643
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600644ATL1 ETHERNET DRIVER
645P: Jay Cliburn
646M: jcliburn@gmail.com
647P: Chris Snook
648M: csnook@redhat.com
649L: atl1-devel@lists.sourceforge.net
650W: http://sourceforge.net/projects/atl1
651W: http://atl1.sourceforge.net
652S: Maintained
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654ATM
655P: Chas Williams
656M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700657L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658W: http://linux-atm.sourceforge.net
659S: Maintained
660
Pierre Ossman272f1332007-05-14 21:25:26 +0200661ATMEL AT91 MCI DRIVER
662S: Orphan
663
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100664ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100665P: Haavard Skinnemoen
666M: hskinnemoen@atmel.com
667S: Supported
668
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800669ATMEL SPI DRIVER
670P: Haavard Skinnemoen
671M: hskinnemoen@atmel.com
672S: Supported
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674ATMEL WIRELESS DRIVER
675P: Simon Kelley
676M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -0700677L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678W: http://www.thekelleys.org.uk/atmel
679W: http://atmelwlandriver.sourceforge.net/
680S: Maintained
681
Chris Wrighta92b7b82005-07-07 18:12:23 -0700682AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100683P: David Woodhouse
684M: dwmw2@infradead.org
685L: linux-audit@redhat.com
686W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800687T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700688S: Maintained
689
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800690AUXILIARY DISPLAY DRIVERS
691P: Miguel Ojeda Sandonis
692M: maxextreme@gmail.com
693L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -0700694W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800695S: Maintained
696
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700697AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700698P: Haavard Skinnemoen
699M: hskinnemoen@atmel.com
700W: http://www.atmel.com/products/AVR32/
701W: http://avr32linux.org/
702W: http://avrfreaks.net/
703S: Supported
704
705AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700706P: Haavard Skinnemoen
707M: hskinnemoen@atmel.com
708S: Supported
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710AX.25 NETWORK LAYER
711P: Ralf Baechle
712M: ralf@linux-mips.org
713L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200714W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715S: Maintained
716
Richard Purdie300abeb2007-02-07 22:21:07 +0000717BACKLIGHT CLASS/SUBSYSTEM
718P: Richard Purdie
719M: rpurdie@rpsys.net
720S: Maintained
721
Bryan Wu1394f032007-05-06 14:50:22 -0700722BLACKFIN ARCHITECTURE
723P: Aubrey Li
724M: aubrey.li@analog.com
725P: Bernd Schmidt
726M: bernd.schmidt@analog.com
727P: Bryan Wu
728M: bryan.wu@analog.com
729P: Grace Pan
730M: grace.pan@analog.com
731P: Michael Hennerich
732M: michael.hennerich@analog.com
733P: Mike Frysinger
734M: michael.frysinger@analog.com
735P: Jane Lv
736M: jane.lv@analog.com
737P: Jerry Zeng
738M: jerry.zeng@analog.com
739P: Jie Zhang
740M: jie.zhang@analog.com
741P: Robin Getz
742M: robin.getz@analog.com
743P: Roy Huang
744M: roy.huang@analog.com
745P: Sonic Zhang
746M: sonic.zhang@analog.com
747P: Yi Li
748M: yi.li@analog.com
749L: uclinux-dist-devel@blackfin.uclinux.org
750W: http://blackfin.uclinux.org
751S: Supported
752
753BLACKFIN SERIAL DRIVER
754P: Aubrey Li
755M: aubrey.li@analog.com
756L: uclinux-dist-devel@blackfin.uclinux.org
757W: http://blackfin.uclinux.org
758S: Supported
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760BAYCOM/HDLCDRV DRIVERS FOR AX.25
761P: Thomas Sailer
762M: t.sailer@alumni.ethz.ch
763L: linux-hams@vger.kernel.org
764W: http://www.baycom.org/~tom/ham/ham.html
765S: Maintained
766
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200767BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
768P: Larry Finger
769M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200770P: Stefano Brivio
771M: st3@riseup.net
Johannes Berg724c6b32007-04-23 12:18:20 -0700772L: linux-wireless@vger.kernel.org
Michael Buesch9eac8f92006-04-22 17:31:27 +0200773W: http://bcm43xx.berlios.de/
774S: Maintained
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776BEFS FILE SYSTEM
777P: Sergey S. Kostyliov
778M: rathamahata@php4.ru
779L: linux-kernel@vger.kernel.org
780S: Maintained
781
782BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
783P: Kenji Hollis
784W: http://ftp.bitgate.com/pcwd/
785S: Maintained
786
787BFS FILE SYSTEM
788P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800789M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790L: linux-kernel@vger.kernel.org
791S: Maintained
792
Bryan Wud24ecfc2007-05-01 23:26:32 +0200793BLACKFIN I2C TWI DRIVER
794P: Sonic Zhang
795M: sonic.zhang@analog.com
796L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
797W: http://blackfin.uclinux.org/
798S: Supported
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800BLOCK LAYER
801P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200802M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800804T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805S: Maintained
806
807BLUETOOTH SUBSYSTEM
808P: Marcel Holtmann
809M: marcel@holtmann.org
810P: Maxim Krasnyansky
811M: maxk@qualcomm.com
812L: bluez-devel@lists.sf.net
813W: http://bluez.sf.net
814W: http://www.bluez.org
815W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800816T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817S: Maintained
818
819BLUETOOTH RFCOMM LAYER
820P: Marcel Holtmann
821M: marcel@holtmann.org
822P: Maxim Krasnyansky
823M: maxk@qualcomm.com
824S: Maintained
825
826BLUETOOTH BNEP LAYER
827P: Marcel Holtmann
828M: marcel@holtmann.org
829P: Maxim Krasnyansky
830M: maxk@qualcomm.com
831S: Maintained
832
833BLUETOOTH CMTP LAYER
834P: Marcel Holtmann
835M: marcel@holtmann.org
836S: Maintained
837
838BLUETOOTH HIDP LAYER
839P: Marcel Holtmann
840M: marcel@holtmann.org
841S: Maintained
842
843BLUETOOTH HCI UART DRIVER
844P: Marcel Holtmann
845M: marcel@holtmann.org
846P: Maxim Krasnyansky
847M: maxk@qualcomm.com
848S: Maintained
849
850BLUETOOTH HCI USB DRIVER
851P: Marcel Holtmann
852M: marcel@holtmann.org
853P: Maxim Krasnyansky
854M: maxk@qualcomm.com
855S: Maintained
856
857BLUETOOTH HCI BCM203X DRIVER
858P: Marcel Holtmann
859M: marcel@holtmann.org
860S: Maintained
861
862BLUETOOTH HCI BPA10X DRIVER
863P: Marcel Holtmann
864M: marcel@holtmann.org
865S: Maintained
866
867BLUETOOTH HCI BFUSB DRIVER
868P: Marcel Holtmann
869M: marcel@holtmann.org
870S: Maintained
871
872BLUETOOTH HCI DTL1 DRIVER
873P: Marcel Holtmann
874M: marcel@holtmann.org
875S: Maintained
876
877BLUETOOTH HCI BLUECARD DRIVER
878P: Marcel Holtmann
879M: marcel@holtmann.org
880S: Maintained
881
882BLUETOOTH HCI BT3C DRIVER
883P: Marcel Holtmann
884M: marcel@holtmann.org
885S: Maintained
886
887BLUETOOTH HCI BTUART DRIVER
888P: Marcel Holtmann
889M: marcel@holtmann.org
890S: Maintained
891
892BLUETOOTH HCI VHCI DRIVER
893P: Maxim Krasnyansky
894M: maxk@qualcomm.com
895S: Maintained
896
897BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100898P: Chad Tindel
899M: ctindel@users.sourceforge.net
900P: Jay Vosburgh
901M: fubar@us.ibm.com
902L: bonding-devel@lists.sourceforge.net
903W: http://sourceforge.net/projects/bonding/
904S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000906BROADBAND PROCESSOR ARCHITECTURE
907P: Arnd Bergmann
908M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100909L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400910W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000911S: Supported
912
Gary Zambrano39105892006-06-22 17:26:20 -0700913BROADCOM B44 10/100 ETHERNET DRIVER
914P: Gary Zambrano
915M: zambrano@broadcom.com
916L: netdev@vger.kernel.org
917S: Supported
918
Michael Chan948c51e2006-06-04 02:51:39 -0700919BROADCOM BNX2 GIGABIT ETHERNET DRIVER
920P: Michael Chan
921M: mchan@broadcom.com
922L: netdev@vger.kernel.org
923S: Supported
924
925BROADCOM TG3 GIGABIT ETHERNET DRIVER
926P: Michael Chan
927M: mchan@broadcom.com
928L: netdev@vger.kernel.org
929S: Supported
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700932P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200933M: mchehab@infradead.org
934M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700936W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200937T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700938S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Jonathan Corbet77d51402007-03-22 19:44:17 -0300940CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
941P: Jonathan Corbet
942M: corbet@lwn.net
943L: video4linux-list@redhat.com
944S: Maintained
945
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200946CALGARY x86-64 IOMMU
947P: Muli Ben-Yehuda
948M: muli@il.ibm.com
949P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200950M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200951L: linux-kernel@vger.kernel.org
952L: discuss@x86-64.org
953S: Maintained
954
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800955CFAG12864B LCD DRIVER
956P: Miguel Ojeda Sandonis
957M: maxextreme@gmail.com
958L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -0700959W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800960S: Maintained
961
962CFAG12864BFB LCD FRAMEBUFFER DRIVER
963P: Miguel Ojeda Sandonis
964M: maxextreme@gmail.com
965L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -0700966W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800967S: Maintained
968
Johannes Berg704232c2007-04-23 12:20:05 -0700969CFG80211 and NL80211
970P: Johannes Berg
971M: johannes@sipsolutions.net
972L: linux-wireless@vger.kernel.org
973S: Maintained
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975COMMON INTERNET FILE SYSTEM (CIFS)
976P: Steve French
977M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100978L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979L: samba-technical@lists.samba.org
980W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800981T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300982S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Joel Becker7063fbf2005-12-15 14:29:43 -0800984CONFIGFS
985P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800986M: joel.becker@oracle.com
987L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800988S: Supported
989
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800990CIRRUS LOGIC EP93XX ETHERNET DRIVER
991P: Lennert Buytenhek
992M: kernel@wantstofly.org
993L: netdev@vger.kernel.org
994S: Maintained
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996CIRRUS LOGIC GENERIC FBDEV DRIVER
997P: Jeff Garzik
998M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800999L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000S: Odd Fixes
1001
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001002CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1003P: Lennert Buytenhek
1004M: kernel@wantstofly.org
1005L: linux-usb-devel@lists.sourceforge.net
1006S: Maintained
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1009P: Cirrus Logic Corporation (kernel 2.2 driver)
1010M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1011P: Nils Faerber (port to kernel 2.4)
1012M: Nils Faerber <nils@kernelconcepts.de>
1013S: Maintained
1014
1015CODA FILE SYSTEM
1016P: Jan Harkes
1017M: jaharkes@cs.cmu.edu
1018M: coda@cs.cmu.edu
1019L: codalist@coda.cs.cmu.edu
1020W: http://www.coda.cs.cmu.edu/
1021S: Maintained
1022
1023COMPACTPCI HOTPLUG CORE
1024P: Scott Murray
1025M: scottm@somanetworks.com
1026M: scott@spiteful.org
1027L: pcihpd-discuss@lists.sourceforge.net
1028S: Supported
1029
1030COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1031P: Scott Murray
1032M: scottm@somanetworks.com
1033M: scott@spiteful.org
1034L: pcihpd-discuss@lists.sourceforge.net
1035S: Supported
1036
1037COMPACTPCI HOTPLUG GENERIC DRIVER
1038P: Scott Murray
1039M: scottm@somanetworks.com
1040M: scott@spiteful.org
1041L: pcihpd-discuss@lists.sourceforge.net
1042S: Supported
1043
1044COMPUTONE INTELLIPORT MULTIPORT CARD
1045P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001046M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001048S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Simon Arlott949be0f2007-03-06 02:47:46 -08001050CONEXANT ACCESSRUNNER USB DRIVER
1051P: Simon Arlott
1052M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001053L: accessrunner-general@lists.sourceforge.net
1054W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001055S: Maintained
1056
Rudolf Marekbebe4672007-05-08 17:22:02 +02001057CORETEMP HARDWARE MONITORING DRIVER
1058P: Rudolf Marek
1059M: r.marek@assembler.cz
1060L: lm-sensors@lm-sensors.org
1061S: Maintained
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063COSA/SRP SYNC SERIAL DRIVER
1064P: Jan "Yenya" Kasprzak
1065M: kas@fi.muni.cz
1066W: http://www.fi.muni.cz/~kas/cosa/
1067S: Maintained
1068
1069CPU FREQUENCY DRIVERS
1070P: Dave Jones
1071M: davej@codemonkey.org.uk
1072L: cpufreq@lists.linux.org.uk
1073W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -05001074T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075S: Maintained
1076
1077CPUID/MSR DRIVER
1078P: H. Peter Anvin
1079M: hpa@zytor.com
1080S: Maintained
1081
Paul Jacksoned90fb42005-09-27 21:45:37 -07001082CPUSETS
1083P: Paul Jackson
1084P: Simon Derr
1085M: pj@sgi.com
1086M: simon.derr@bull.net
1087L: linux-kernel@vger.kernel.org
1088W: http://www.bullopensource.org/cpuset/
1089S: Supported
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001092W: http://sourceforge.net/projects/cramfs/
1093S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095CRIS PORT
1096P: Mikael Starvik
1097M: starvik@axis.com
1098L: dev-etrax@axis.com
1099W: http://developer.axis.com
1100S: Maintained
1101
1102CRYPTO API
1103P: Herbert Xu
1104M: herbert@gondor.apana.org.au
1105P: David S. Miller
1106M: davem@davemloft.net
1107L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001108T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109S: Maintained
1110
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001111CS5535 Audio ALSA driver
1112P: Jaya Kumar
1113M: jayakumar.alsa@gmail.com
1114S: Maintained
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116CYBERPRO FB DRIVER
1117P: Russell King
1118M: rmk@arm.linux.org.uk
1119W: http://www.arm.linux.org.uk/
1120S: Maintained
1121
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001122CYBLAFB FRAMEBUFFER DRIVER
1123P: Knut Petersen
1124M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001125L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001126S: Maintained
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128CYCLADES 2X SYNC CARD DRIVER
1129P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001130M: acme@ghostprotocols.net
1131W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132S: Maintained
1133
1134CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001136S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001140S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142DAMA SLAVE for AX.25
1143P: Joerg Reuter
1144M: jreuter@yaina.de
1145W: http://yaina.de/jreuter/
1146W: http://www.qsl.net/dl1bke/
1147L: linux-hams@vger.kernel.org
1148S: Maintained
1149
1150DC395x SCSI driver
1151P: Oliver Neukum
1152M: oliver@neukum.name
1153P: Ali Akcaagac
1154M: aliakc@web.de
1155P: Jamie Lenehan
1156M: lenehan@twibble.org
1157W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001158L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159L: http://lists.twibble.org/mailman/listinfo/dc395x/
1160S: Maintained
1161
1162DC390/AM53C974 SCSI driver
1163P: Kurt Garloff
1164M: garloff@suse.de
1165W: http://www.garloff.de/kurt/linux/dc390/
1166P: Guennadi Liakhovetski
1167M: g.liakhovetski@gmx.de
1168S: Maintained
1169
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001170DCCP PROTOCOL
1171P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001172M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001173L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001174W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001175S: Maintained
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177DECnet NETWORK LAYER
1178P: Patrick Caulfield
1179M: patrick@tykepenguin.com
1180W: http://linux-decnet.sourceforge.net
1181L: linux-decnet-user@lists.sourceforge.net
1182S: Maintained
1183
1184DEFXX FDDI NETWORK DRIVER
1185P: Maciej W. Rozycki
1186M: macro@linux-mips.org
1187S: Maintained
1188
1189DELL LAPTOP SMM DRIVER
1190P: Massimo Dal Zotto
1191M: dz@debian.org
1192W: http://www.debian.org/~dz/i8k/
1193S: Maintained
1194
Doug Warzecha90563ec2005-09-06 15:17:15 -07001195DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1196P: Doug Warzecha
1197M: Douglas_Warzecha@dell.com
1198S: Maintained
1199
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001200DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201P: Alasdair Kergon
1202L: dm-devel@redhat.com
1203W: http://sources.redhat.com/dm
1204S: Maintained
1205
1206DEVICE NUMBER REGISTRY
1207P: Torben Mathiasen
1208M: device@lanana.org
1209W: http://lanana.org/docs/device-list/index.html
1210L: linux-kernel@vger.kernel.org
1211S: Maintained
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213DIGI INTL. EPCA DRIVER
1214P: Digi International, Inc
1215M: Eng.Linux@digi.com
1216L: Eng.Linux@digi.com
1217W: http://www.digi.com
1218S: Orphaned
1219
1220DIGI RIGHTSWITCH NETWORK DRIVER
1221P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001222L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223W: http://www.digi.com
1224S: Orphaned
1225
1226DIRECTORY NOTIFICATION
1227P: Stephen Rothwell
1228M: sfr@canb.auug.org.au
1229L: linux-kernel@vger.kernel.org
1230S: Supported
1231
1232DISK GEOMETRY AND PARTITION HANDLING
1233P: Andries Brouwer
1234M: aeb@cwi.nl
1235W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1236W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1237W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1238S: Maintained
1239
1240DISKQUOTA:
1241P: Jan Kara
1242M: jack@suse.cz
1243L: linux-kernel@vger.kernel.org
1244S: Maintained
1245
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001246DISTRIBUTED LOCK MANAGER
1247P: Patrick Caulfield
1248M: pcaulfie@redhat.com
1249P: David Teigland
1250M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001251L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001252W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001253T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1254T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001255S: Supported
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1258P: Tobias Ringstrom
1259M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001260L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261S: Maintained
1262
Martin Waitzba483d52005-06-17 13:20:59 -07001263DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001264P: Randy Dunlap
1265M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001266S: Maintained
1267
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001268DOCKING STATION DRIVER
1269P: Kristen Carlson Accardi
1270M: kristen.c.accardi@intel.com
1271L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001272S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274DOUBLETALK DRIVER
1275P: James R. Van Zandt
1276M: jrv@vanzandt.mv.com
1277L: blinux-list@redhat.com
1278S: Maintained
1279
1280DRIVER CORE, KOBJECTS, AND SYSFS
1281P: Greg Kroah-Hartman
1282M: gregkh@suse.de
1283L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001284T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285S: Supported
1286
1287DRM DRIVERS
1288P: David Airlie
1289M: airlied@linux.ie
1290L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001291T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292S: Maintained
1293
1294DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001295P: Francois Romieu
1296M: romieu@fr.zoreil.com
1297L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298S: Maintained
1299
1300DVB SUBSYSTEM AND DRIVERS
1301P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001302M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001304W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001305T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001306S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308EATA-DMA SCSI DRIVER
1309P: Michael Neuffer
1310L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1311S: Maintained
1312
1313EATA ISA/EISA/PCI SCSI DRIVER
1314P: Dario Ballabio
1315M: ballabio_dario@emc.com
1316L: linux-scsi@vger.kernel.org
1317S: Maintained
1318
1319EATA-PIO SCSI DRIVER
1320P: Michael Neuffer
1321M: mike@i-Connect.Net
1322L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1323S: Maintained
1324
1325EBTABLES
1326P: Bart De Schuymer
1327M: bart.de.schuymer@pandora.be
1328L: ebtables-user@lists.sourceforge.net
1329L: ebtables-devel@lists.sourceforge.net
1330W: http://ebtables.sourceforge.net/
1331S: Maintained
1332
Michael Halcrow237fead2006-10-04 02:16:22 -07001333ECRYPT FILE SYSTEM
1334P: Mike Halcrow, Phillip Hellewell
1335M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1336L: ecryptfs-devel@lists.sourceforge.net
1337W: http://ecryptfs.sourceforge.net/
1338S: Supported
1339
Alan Coxda9bb1d2006-01-18 17:44:13 -08001340EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001341P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001342M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001343L: bluesmoke-devel@lists.sourceforge.net
1344W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001345S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001346
1347EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001348P: Mark Gross
1349M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001350L: bluesmoke-devel@lists.sourceforge.net
1351W: bluesmoke.sourceforge.net
1352S: Maintained
1353
1354EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001355P: Doug Thompson
1356M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001357L: bluesmoke-devel@lists.sourceforge.net
1358W: bluesmoke.sourceforge.net
1359S: Maintained
1360
1361EDAC-R82600
1362P: Tim Small
1363M: tim@buttersideup.com
1364L: bluesmoke-devel@lists.sourceforge.net
1365W: bluesmoke.sourceforge.net
1366S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368EEPRO100 NETWORK DRIVER
1369P: Andrey V. Savochkin
1370M: saw@saw.sw.com.sg
1371S: Maintained
1372
Josh Triplett0bee8d22006-07-30 03:03:58 -07001373EFS FILESYSTEM
1374W: http://aeschi.ch.eu.org/efs/
1375S: Orphan
1376
Heiko J Schickfab97222006-09-22 15:22:22 -07001377EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1378P: Hoang-Nam Nguyen
1379M: hnguyen@de.ibm.com
1380P: Christoph Raisch
1381M: raisch@de.ibm.com
1382L: openib-general@openib.org
1383S: Supported
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385EMU10K1 SOUND DRIVER
1386P: James Courtier-Dutton
1387M: James@superbug.demon.co.uk
1388L: emu10k1-devel@lists.sourceforge.net
1389W: http://sourceforge.net/projects/emu10k1/
1390S: Maintained
1391
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001392EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001393P: James Smart
1394M: james.smart@emulex.com
1395L: linux-scsi@vger.kernel.org
1396W: http://sourceforge.net/projects/lpfcxxxx
1397S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399EPSON 1355 FRAMEBUFFER DRIVER
1400P: Christopher Hoover
1401M: ch@murgatroid.com, ch@hpl.hp.com
1402S: Maintained
1403
1404ETHEREXPRESS-16 NETWORK DRIVER
1405P: Philip Blundell
1406M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001407L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408S: Maintained
1409
1410ETHERNET BRIDGE
1411P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08001412M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07001413L: bridge@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414W: http://bridge.sourceforge.net/
1415S: Maintained
1416
1417ETHERTEAM 16I DRIVER
1418P: Mika Kuoppala
1419M: miku@iki.fi
1420S: Maintained
1421
1422EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001423L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424S: Maintained
1425
1426EXT3 FILE SYSTEM
1427P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001428M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001429L: linux-ext4@vger.kernel.org
1430S: Maintained
1431
1432EXT4 FILE SYSTEM
1433P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001434M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001435L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436S: Maintained
1437
Jean Delvaree53004e2006-01-09 23:26:14 +01001438F71805F HARDWARE MONITORING DRIVER
1439P: Jean Delvare
1440M: khali@linux-fr.org
1441L: lm-sensors@lm-sensors.org
1442S: Maintained
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444FARSYNC SYNCHRONOUS DRIVER
1445P: Kevin Curtis
1446M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447W: http://www.farsite.co.uk/
1448S: Supported
1449
Akinobu Mitac5408b82007-04-23 14:41:20 -07001450FAULT INJECTION SUPPORT
1451P: Akinobu Mita
1452M: akinobu.mita@gmail.com
1453S: Supported
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455FRAMEBUFFER LAYER
1456P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001457M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001458L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459W: http://linux-fbdev.sourceforge.net/
1460S: Maintained
1461
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001462FREESCALE SOC FS_ENET DRIVER
1463P: Pantelis Antoniou
1464M: pantelis.antoniou@gmail.com
1465P: Vitaly Bordug
1466M: vbordug@ru.mvista.com
1467L: linuxppc-embedded@ozlabs.org
1468L: netdev@vger.kernel.org
1469S: Maintained
1470
Li Yanga7205b32007-04-23 10:38:18 -07001471FREESCALE HIGHSPEED USB DEVICE DRIVER
1472P: Li Yang
1473M: leoli@freescale.com
1474L: linux-usb-devel@lists.sourceforge.net
1475L: linuxppc-embedded@ozlabs.org
1476S: Maintained
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478FILE LOCKING (flock() and fcntl()/lockf())
1479P: Matthew Wilcox
1480M: matthew@wil.cx
1481L: linux-fsdevel@vger.kernel.org
1482S: Maintained
1483
1484FILESYSTEMS (VFS and infrastructure)
1485P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001486M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487S: Maintained
1488
1489FIRMWARE LOADER (request_firmware)
1490L: linux-kernel@vger.kernel.org
1491S: Orphan
1492
1493FPU EMULATOR
1494P: Bill Metzenthen
1495M: billm@suburbia.net
1496W: http://suburbia.net/~billm/floating-point/emulator/
1497S: Maintained
1498
1499FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1500P: Mike McLagan
1501M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001502L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503S: Maintained
1504
1505FREEVXFS FILESYSTEM
1506P: Christoph Hellwig
1507M: hch@infradead.org
1508W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1509S: Maintained
1510
David Howells5ab7ffe2007-04-10 15:10:45 +01001511FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512P: David Howells
1513M: dhowells@redhat.com
1514S: Maintained
1515
Miklos Szeredi04578f12005-09-09 13:10:22 -07001516FUSE: FILESYSTEM IN USERSPACE
1517P: Miklos Szeredi
1518M: miklos@szeredi.hu
1519L: fuse-devel@lists.sourceforge.net
1520W: http://fuse.sourceforge.net/
1521S: Maintained
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1524P: Rik Faith
1525M: faith@cs.unc.edu
1526L: linux-scsi@vger.kernel.org
1527S: Odd fixes (e.g., new signatures)
1528
1529GDT SCSI DISK ARRAY CONTROLLER DRIVER
1530P: Achim Leubner
1531M: achim_leubner@adaptec.com
1532L: linux-scsi@vger.kernel.org
1533W: http://www.icp-vortex.com/
1534S: Supported
1535
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02001536GENERIC GPIO I2C DRIVER
1537P: Haavard Skinnemoen
1538M: hskinnemoen@atmel.com
1539S: Supported
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1542P: Krzysztof Halasa
1543M: khc@pm.waw.pl
1544W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1545S: Maintained
1546
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001547GFS2 FILE SYSTEM
1548P: Steven Whitehouse
1549M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001550L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001551W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001552T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1553T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001554S: Supported
1555
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001556GIGASET ISDN DRIVERS
1557P: Hansjoerg Lipp
1558M: hjlipp@web.de
1559P: Tilman Schmidt
1560M: tilman@imap.cc
1561L: gigaset307x-common@lists.sourceforge.net
1562W: http://gigaset307x.sourceforge.net/
1563S: Maintained
1564
Jean Delvare5b543962005-08-15 19:51:02 +02001565HARDWARE MONITORING
1566P: Jean Delvare
1567M: khali@linux-fr.org
1568L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001569W: http://www.lm-sensors.org/
1570T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001571S: Maintained
1572
Michael Buesch844dd052006-06-26 00:24:59 -07001573HARDWARE RANDOM NUMBER GENERATOR CORE
1574P: Michael Buesch
1575M: mb@bu3sch.de
1576S: Maintained
1577
Robert Love860e1d62005-08-31 23:57:59 -04001578HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1579P: Robert Love
1580M: rlove@rlove.org
1581M: linux-kernel@vger.kernel.org
1582W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1583S: Maintained
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585HARMONY SOUND DRIVER
1586P: Kyle McMartin
1587M: kyle@parisc-linux.org
1588W: http://www.parisc-linux.org/~kyle/harmony/
1589L: parisc-linux@lists.parisc-linux.org
1590S: Maintained
1591
1592HAYES ESP SERIAL DRIVER
1593P: Andrew J. Robinson
1594M: arobinso@nyx.net
1595L: linux-kernel@vger.kernel.org
1596W: http://www.nyx.net/~arobinso
1597S: Maintained
1598
1599HFS FILESYSTEM
1600P: Roman Zippel
1601M: zippel@linux-m68k.org
1602L: linux-kernel@vger.kernel.org
1603S: Maintained
1604
1605HGA FRAMEBUFFER DRIVER
1606P: Ferenc Bakonyi
1607M: fero@drama.obuda.kando.hu
1608L: linux-nvidia@lists.surfsouth.com
1609W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1610S: Maintained
1611
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001612HID CORE LAYER
1613P: Jiri Kosina
1614M: jkosina@suse.cz
1615L: linux-input@atrey.karlin.mff.cuni.cz
Jiri Kosinaa4dff392007-02-27 17:40:09 +01001616T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001617S: Maintained
1618
Ingo Molnar38bed542007-02-22 09:09:34 +01001619HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
1620P: Thomas Gleixner
1621M: tglx@linutronix.de
1622L: linux-kernel@vger.kernel.org
1623S: Maintained
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625HIGH-SPEED SCC DRIVER FOR AX.25
1626P: Klaus Kudielka
1627M: klaus.kudielka@ieee.org
1628L: linux-hams@vger.kernel.org
1629W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1630S: Maintained
1631
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001632HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1633P: HighPoint Linux Team
1634M: linux@highpoint-tech.com
1635W: http://www.highpoint-tech.com
1636S: Supported
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638HIPPI
1639P: Jes Sorensen
1640M: jes@trained-monkey.org
1641L: linux-hippi@sunsite.dk
1642S: Maintained
1643
1644HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1645P: Chirag Kantharia
1646M: chirag.kantharia@hp.com
1647L: iss_storagedev@hp.com
1648S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650HEWLETT-PACKARD SMART2 RAID DRIVER
1651P: Chirag Kantharia
1652M: chirag.kantharia@hp.com
1653L: iss_storagedev@hp.com
1654S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1657P: Mike Miller
1658M: mike.miller@hp.com
1659L: iss_storagedev@hp.com
1660S: Supported
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001661
Jouni Malinenff1d2762005-05-12 22:54:16 -04001662HOST AP DRIVER
1663P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07001664M: j@w1.fi
1665L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07001666L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04001667W: http://hostap.epitest.fi/
1668S: Maintained
1669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1671P: Jaroslav Kysela
1672M: perex@suse.cz
1673S: Maintained
1674
Bob Piccob9b03322005-11-07 00:59:19 -08001675HPET: High Precision Event Timers driver (hpet.c)
1676P: Clemens Ladisch
1677M: clemens@ladisch.de
1678S: Maintained
1679
1680HPET: i386
1681P: Venkatesh Pallipadi (Venki)
1682M: venkatesh.pallipadi@intel.com
1683S: Maintained
1684
1685HPET: x86_64
1686P: Andi Kleen and Vojtech Pavlik
Andi Kleen43c3ab32007-05-02 19:27:11 +02001687M: andi@firstfloor.org and vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08001688S: Maintained
1689
1690HPET: ACPI hpet.c
1691P: Bob Picco
1692M: bob.picco@hp.com
1693S: Maintained
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695HPFS FILESYSTEM
1696P: Mikulas Patocka
1697M: mikulas@artax.karlin.mff.cuni.cz
1698W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1699S: Maintained
1700
1701HUGETLB FILESYSTEM
1702P: William Irwin
1703M: wli@holomorphy.com
1704S: Maintained
1705
Jean Delvare5b543962005-08-15 19:51:02 +02001706I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707P: Jean Delvare
1708M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001709L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001710T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711S: Maintained
1712
Till Harbaume8c76ee2007-05-01 23:26:35 +02001713I2C-TINY-USB DRIVER
1714P: Till Harbaum
1715M: till@harbaum.org
1716L: i2c@lm-sensors.org
1717T: http://www.harbaum.org/till/i2c_tiny_usb
1718S: Maintained
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720i386 BOOT CODE
1721P: Riley H. Williams
1722M: Riley@Williams.Name
1723L: Linux-Kernel@vger.kernel.org
1724S: Maintained
1725
1726i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727P: H. Peter Anvin
1728M: hpa@zytor.com
1729S: Maintained
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731IA64 (Itanium) PLATFORM
1732P: Tony Luck
1733M: tony.luck@intel.com
1734L: linux-ia64@vger.kernel.org
1735W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001736T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737S: Maintained
1738
1739SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001740P: Jes Sorensen
1741M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742L: linux-altix@sgi.com
1743L: linux-ia64@vger.kernel.org
1744W: http://www.sgi.com/altix
1745S: Maintained
1746
1747IBM MCA SCSI SUBSYSTEM DRIVER
1748P: Michael Lang
1749M: langa2@kph.uni-mainz.de
1750W: http://www.uni-mainz.de/~langm000/linux.html
1751S: Maintained
1752
1753IBM Power Linux RAID adapter
1754P: Brian King
1755M: brking@us.ibm.com
1756S: Supported
1757
1758IBM ServeRAID RAID DRIVER
1759P: Jack Hammer
1760P: Dave Jeffery
1761M: ipslinux@adaptec.com
1762W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001763S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001765IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001767M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001769T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770S: Maintained
1771
1772IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001773P: Alan Cox
1774M: alan@lxorguk.ukuu.org.uk
1775L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776S: Maintained
1777
1778IDE/ATAPI FLOPPY DRIVERS
1779P: Paul Bristow
1780M: Paul Bristow <paul@paulbristow.net>
1781W: http://paulbristow.net/linux/idefloppy.html
1782L: linux-kernel@vger.kernel.org
1783S: Maintained
1784
1785IDE/ATAPI TAPE DRIVERS
1786P: Gadi Oxman
1787M: Gadi Oxman <gadio@netvision.net.il>
1788L: linux-kernel@vger.kernel.org
1789S: Maintained
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791IEEE 1394 SUBSYSTEM
1792P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07001793M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02001794P: Stefan Richter
1795M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796L: linux1394-devel@lists.sourceforge.net
1797W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001798T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799S: Maintained
1800
Stefan Richterf51a5a92007-04-23 14:41:10 -07001801IEEE 1394 RAW I/O DRIVER (raw1394)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802P: Dan Dennedy
1803M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07001804P: Stefan Richter
1805M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001807S: Maintained
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809IMS TWINTURBO FRAMEBUFFER DRIVER
1810P: Paul Mundt
1811M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001812L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813S: Maintained
1814
1815INFINIBAND SUBSYSTEM
1816P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001817M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818P: Sean Hefty
1819M: mshefty@ichips.intel.com
1820P: Hal Rosenstock
1821M: halr@voltaire.com
1822L: openib-general@openib.org
1823W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001824T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825S: Supported
1826
1827INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001828P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001829M: dmitry.torokhov@gmail.com
1830M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831L: linux-input@atrey.karlin.mff.cuni.cz
1832L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001833T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834S: Maintained
1835
Robert Lovec9f04f52005-07-15 12:21:07 -04001836INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001837P: John McCutchan
1838M: ttb@tentacle.dhs.org
1839P: Robert Love
1840M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001841L: linux-kernel@vger.kernel.org
1842S: Maintained
1843
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001844INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001845P: Sylvain Meyer
1846M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001847L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001848S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001851P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001852M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001853L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001854S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1857P: Ingo Molnar
1858M: mingo@redhat.com
1859S: Maintained
1860
1861INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1862P: Jeff Garzik
1863M: jgarzik@pobox.com
1864W: http://sourceforge.net/projects/gkernel/
1865S: Maintained
1866
1867INTEL IA32 MICROCODE UPDATE SUPPORT
1868P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001869M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870S: Maintained
1871
Michael Buesch844dd052006-06-26 00:24:59 -07001872INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1873P: Deepak Saxena
1874M: dsaxena@plexity.net
1875S: Maintained
1876
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001877INTEL IXP2000 ETHERNET DRIVER
1878P: Lennert Buytenhek
1879M: kernel@wantstofly.org
1880L: netdev@vger.kernel.org
1881S: Maintained
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883INTEL PRO/100 ETHERNET SUPPORT
1884P: John Ronciak
1885M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886P: Jesse Brandeburg
1887M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001888P: Jeff Kirsher
1889M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001890P: Auke Kok
1891M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001892L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893W: http://sourceforge.net/projects/e1000/
1894S: Supported
1895
1896INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1897P: Jeb Cramer
1898M: cramerj@intel.com
1899P: John Ronciak
1900M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001901P: Jesse Brandeburg
1902M: jesse.brandeburg@intel.com
1903P: Jeff Kirsher
1904M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001905P: Auke Kok
1906M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001907L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908W: http://sourceforge.net/projects/e1000/
1909S: Supported
1910
1911INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001912P: Jeff Kirsher
1913M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914P: Ayyappan Veeraiyan
1915M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916P: John Ronciak
1917M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001918P: Jesse Brandeburg
1919M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001920P: Auke Kok
1921M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001922L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923W: http://sourceforge.net/projects/e1000/
1924S: Supported
1925
James Ketrenos826d2ab2005-11-07 18:56:59 -06001926INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1927P: Yi Zhu
1928M: yi.zhu@intel.com
1929P: James Ketrenos
1930M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001931L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001932L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001933L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1934W: http://ipw2100.sourceforge.net
1935S: Supported
1936
1937INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1938P: Yi Zhu
1939M: yi.zhu@intel.com
1940P: James Ketrenos
1941M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001942L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001943L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001944L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1945W: http://ipw2200.sourceforge.net
1946S: Supported
1947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948IOC3 DRIVER
1949P: Ralf Baechle
1950M: ralf@linux-mips.org
1951L: linux-mips@linux-mips.org
1952S: Maintained
1953
1954IP MASQUERADING:
1955P: Juanjo Ciarlante
1956M: jjciarla@raiz.uncu.edu.ar
1957S: Maintained
1958
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001959IPATH DRIVER:
1960P: Bryan O'Sullivan
1961M: support@pathscale.com
1962L: openib-general@openib.org
1963S: Supported
1964
Corey Minyard4409ebe2006-04-20 02:43:12 -07001965IPMI SUBSYSTEM
1966P: Corey Minyard
1967M: minyard@acm.org
1968L: openipmi-developer@lists.sourceforge.net
1969W: http://openipmi.sourceforge.net/
1970S: Supported
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972IPX NETWORK LAYER
1973P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001974M: acme@ghostprotocols.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07001975L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976S: Maintained
1977
1978IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001979P: Samuel Ortiz
1980M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001981L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001983S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985ISAPNP
1986P: Jaroslav Kysela
1987M: perex@suse.cz
1988S: Maintained
1989
1990ISDN SUBSYSTEM
1991P: Karsten Keil
1992M: kkeil@suse.de
1993P: Kai Germaschewski
1994M: kai.germaschewski@gmx.de
1995L: isdn4linux@listserv.isdn4linux.de
1996W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001997T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998S: Maintained
1999
2000ISDN SUBSYSTEM (Eicon active card driver)
2001P: Armin Schindler
2002M: mac@melware.de
2003L: isdn4linux@listserv.isdn4linux.de
2004W: http://www.melware.de
2005S: Maintained
2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
2008P: David Woodhouse
2009M: dwmw2@infradead.org
2010L: jffs-dev@axis.com
2011W: http://sources.redhat.com/jffs2/
2012S: Maintained
2013
2014JFS FILESYSTEM
2015P: Dave Kleikamp
2016M: shaggy@austin.ibm.com
2017L: jfs-discussion@lists.sourceforge.net
2018W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002019T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020S: Supported
2021
Josh Triplettde456d32006-07-30 03:04:00 -07002022JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07002023P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002024M: sct@redhat.com, akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08002025L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07002026S: Maintained
2027
Rudolf Marek4660cb32006-10-08 22:01:26 +02002028K8TEMP HARDWARE MONITORING DRIVER
2029P: Rudolf Marek
2030M: r.marek@assembler.cz
2031L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032S: Maintained
2033
2034KCONFIG
2035P: Roman Zippel
2036M: zippel@linux-m68k.org
2037L: kbuild-devel@lists.sourceforge.net
2038S: Maintained
2039
Vivek Goyalea6c2082006-05-20 14:59:55 -07002040KDUMP
2041P: Vivek Goyal
2042M: vgoyal@in.ibm.com
2043P: Haren Myneni
2044M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07002045L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07002046L: linux-kernel@vger.kernel.org
2047W: http://lse.sourceforge.net/kdump/
2048S: Maintained
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050KERNEL AUTOMOUNTER (AUTOFS)
2051P: H. Peter Anvin
2052M: hpa@zytor.com
2053L: autofs@linux.kernel.org
2054S: Odd Fixes
2055
2056KERNEL AUTOMOUNTER v4 (AUTOFS4)
2057P: Ian Kent
2058M: raven@themaw.net
2059L: autofs@linux.kernel.org
2060S: Maintained
2061
2062KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
2063P: Kai Germaschewski
2064M: kai@germaschewski.name
2065P: Sam Ravnborg
2066M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002067T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002068S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070KERNEL JANITORS
2071P: Several
David Brownellf318a632007-04-23 14:41:06 -07002072L: kernel-janitors@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074S: Maintained
2075
2076KERNEL NFSD
2077P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08002078M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079L: nfs@lists.sourceforge.net
2080W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08002081S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Avi Kivity426d62e2006-12-13 00:34:03 -08002083KERNEL VIRTUAL MACHINE (KVM)
2084P: Avi Kivity
2085M: avi@qumranet.com
2086L: kvm-devel@lists.sourceforge.net
2087W: kvm.sourceforge.net
2088S: Supported
2089
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002090KEXEC
2091P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002092M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002093W: http://www.xmission.com/~ebiederm/files/kexec/
2094L: linux-kernel@vger.kernel.org
Simon Horman34633992007-05-08 00:31:40 -07002095L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002096S: Maintained
2097
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07002098KPROBES
2099P: Prasanna S Panchamukhi
2100M: prasanna@in.ibm.com
2101P: Ananth N Mavinakayanahalli
2102M: ananth@in.ibm.com
2103P: Anil S Keshavamurthy
2104M: anil.s.keshavamurthy@intel.com
2105P: David S. Miller
2106M: davem@davemloft.net
2107L: linux-kernel@vger.kernel.org
2108S: Maintained
2109
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002110KS0108 LCD CONTROLLER DRIVER
2111P: Miguel Ojeda Sandonis
2112M: maxextreme@gmail.com
2113L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -07002114W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002115S: Maintained
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002119S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121LASI 53c700 driver for PARISC
2122P: James E.J. Bottomley
2123M: James.Bottomley@HansenPartnership.com
2124L: linux-scsi@vger.kernel.org
2125S: Maintained
2126
Richard Purdie263de9b2006-05-15 09:44:16 -07002127LED SUBSYSTEM
2128P: Richard Purdie
2129M: rpurdie@rpsys.net
2130S: Maintained
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132LEGO USB Tower driver
2133P: Juergen Stuber
2134M: starblue@users.sourceforge.net
2135L: legousb-devel@lists.sourceforge.net
2136W: http://legousb.sourceforge.net/
2137S: Maintained
2138
2139LINUX FOR IBM pSERIES (RS/6000)
2140P: Paul Mackerras
2141M: paulus@au.ibm.com
2142W: http://www.ibm.com/linux/ltc/projects/ppc
2143S: Supported
2144
2145LINUX FOR NCR VOYAGER
2146P: James Bottomley
2147M: James.Bottomley@HansenPartnership.com
2148W: http://www.hansenpartnership.com/voyager
2149S: Maintained
2150
2151LINUX FOR POWERPC
2152P: Paul Mackerras
2153M: paulus@samba.org
2154W: http://www.penguinppc.org/
2155L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002156T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157S: Supported
2158
2159LINUX FOR POWER MACINTOSH
2160P: Benjamin Herrenschmidt
2161M: benh@kernel.crashing.org
2162W: http://www.penguinppc.org/
2163L: linuxppc-dev@ozlabs.org
2164S: Maintained
2165
2166LINUX FOR POWERPC EMBEDDED MPC52XX
2167P: Sylvain Munaut
2168M: tnt@246tNt.com
2169W: http://www.246tNt.com/mpc52xx/
2170W: http://www.penguinppc.org/
2171L: linuxppc-dev@ozlabs.org
2172L: linuxppc-embedded@ozlabs.org
2173S: Maintained
2174
2175LINUX FOR POWERPC EMBEDDED PPC4XX
2176P: Matt Porter
2177M: mporter@kernel.crashing.org
2178W: http://www.penguinppc.org/
2179L: linuxppc-embedded@ozlabs.org
2180S: Maintained
2181
Tom Rinie93adf12005-07-26 12:49:53 -07002182LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183P: Tom Rini
2184M: trini@kernel.crashing.org
2185W: http://www.penguinppc.org/
2186L: linuxppc-embedded@ozlabs.org
2187S: Maintained
2188
Tom Rinie93adf12005-07-26 12:49:53 -07002189LINUX FOR POWERPC EMBEDDED PPC8XX
2190P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002191M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002192W: http://www.penguinppc.org/
2193L: linuxppc-embedded@ozlabs.org
2194S: Maintained
2195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002197P: Kumar Gala
2198M: galak@kernel.crashing.org
2199W: http://www.penguinppc.org/
2200L: linuxppc-embedded@ozlabs.org
2201S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Olof Johanssonab06ff32006-09-06 14:44:54 -05002203LINUX FOR POWERPC PA SEMI PWRFICIENT
2204P: Olof Johansson
2205M: olof@lixom.net
2206W: http://www.pasemi.com/
2207L: linuxppc-dev@ozlabs.org
2208S: Supported
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210LLC (802.2)
2211P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002212M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213S: Maintained
2214
2215LINUX FOR 64BIT POWERPC
2216P: Paul Mackerras
2217M: paulus@samba.org
2218M: paulus@au.ibm.com
2219P: Anton Blanchard
2220M: anton@samba.org
2221M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002222W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002223L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224S: Supported
2225
2226LINUX SECURITY MODULE (LSM) FRAMEWORK
2227P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002228M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002229L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002231T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232S: Supported
2233
2234LM83 HARDWARE MONITOR DRIVER
2235P: Jean Delvare
2236M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002237L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238S: Maintained
2239
2240LM90 HARDWARE MONITOR DRIVER
2241P: Jean Delvare
2242M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002243L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244S: Maintained
2245
Anton Altaparmakovdde33342007-05-21 09:37:42 +01002246LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247P: Richard Russon (FlatCap)
2248M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01002249L: linux-ntfs-dev@lists.sourceforge.net
2250W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251S: Maintained
2252
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002253LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2254P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002255M: Eric.Moore@lsi.com
2256M: support@lsi.com
2257L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002258L: linux-scsi@vger.kernel.org
2259W: http://www.lsilogic.com/support
2260S: Supported
2261
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2263P: Matthew Wilcox
2264M: matthew@wil.cx
2265L: linux-scsi@vger.kernel.org
2266S: Maintained
2267
2268M68K ARCHITECTURE
2269P: Geert Uytterhoeven
2270M: geert@linux-m68k.org
2271P: Roman Zippel
2272M: zippel@linux-m68k.org
2273L: linux-m68k@lists.linux-m68k.org
2274W: http://www.linux-m68k.org/
2275W: http://linux-m68k-cvs.ubb.ca/
2276S: Maintained
2277
2278M68K ON APPLE MACINTOSH
2279P: Joshua Thompson
2280M: funaho@jurai.org
2281W: http://www.mac.linux-m68k.org/
2282L: linux-mac68k@mac.linux-m68k.org
2283S: Maintained
2284
2285M68K ON HP9000/300
2286P: Philip Blundell
2287M: philb@gnu.org
2288W: http://www.tazenda.demon.co.uk/phil/linux-hp
2289S: Maintained
2290
Jiri Benc64a327a2007-05-05 11:47:08 -07002291MAC80211
2292P: Jiri Benc
2293M: jbenc@suse.cz
2294P: Michael Wu
2295M: flamingice@sourmilk.net
2296L: linux-wireless@vger.kernel.org
2297W: http://linuxwireless.org/
2298T: git kernel.org:/pub/scm/linux/kernel/git/jbenc/mac80211.git
2299S: Maintained
2300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301MARVELL YUKON / SYSKONNECT DRIVER
2302P: Mirko Lindner
2303M: mlindner@syskonnect.de
2304P: Ralph Roesler
2305M: rroesler@syskonnect.de
2306W: http://www.syskonnect.com
2307S: Supported
2308
Michael Kerriskfaf16682005-07-31 22:34:47 -07002309MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002310P: Michael Kerrisk
2311M: mtk-manpages@gmx.net
2312W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2313S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002314
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002315MARVELL MV643XX ETHERNET DRIVER
2316P: Dale Farnsworth
2317M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002319M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002320L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002321S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
2323MATROX FRAMEBUFFER DRIVER
2324P: Petr Vandrovec
2325M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002326L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327S: Maintained
2328
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02002329MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2330P: Hans J. Koch
2331M: hjk@linutronix.de
2332L: lm-sensors@lm-sensors.org
2333S: Maintained
2334
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002335MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002336P: Neela Syam Kolli
2337M: Neela.Kolli@engenio.com
2338S: linux-scsi@vger.kernel.org
2339W: http://megaraid.lsilogic.com
2340S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002341
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002342MEMORY MANAGEMENT
2343L: linux-mm@kvack.org
2344L: linux-kernel@vger.kernel.org
2345W: http://www.linux-mm.org
2346S: Maintained
2347
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002348MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349P: David Woodhouse
2350M: dwmw2@infradead.org
2351W: http://www.linux-mtd.infradead.org/
2352L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002353T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354S: Maintained
2355
Artem Bityutskiy48576402007-02-13 17:11:10 +02002356UNSORTED BLOCK IMAGES (UBI)
2357P: Artem Bityutskiy
2358M: dedekind@infradead.org
2359W: http://www.linux-mtd.infradead.org/
2360L: linux-mtd@lists.infradead.org
2361T: git git://git.infradead.org/ubi-2.6.git
2362S: Maintained
2363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364MICROTEK X6 SCANNER
2365P: Oliver Neukum
2366M: oliver@neukum.name
2367S: Maintained
2368
2369MIPS
2370P: Ralf Baechle
2371M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002372W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002374T: git www.linux-mips.org:/pub/scm/linux.git
2375S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377MISCELLANEOUS MCA-SUPPORT
2378P: James Bottomley
2379M: jejb@steeleye.com
2380L: linux-kernel@vger.kernel.org
2381S: Maintained
2382
2383MODULE SUPPORT
2384P: Rusty Russell
2385M: rusty@rustcorp.com.au
2386L: linux-kernel@vger.kernel.org
2387S: Maintained
2388
2389MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2390P: Stelian Pop
2391M: stelian@popies.net
2392W: http://popies.net/meye/
2393S: Maintained
2394
Pavel Pisac58ff042007-05-16 01:10:41 +02002395MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
2396P: Pavel Pisa
2397M: ppisa@pikron.com
2398L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2399W: http://mmc.drzeus.cx/wiki/Controllers/Freescale/SDHC
2400S: Maintained
2401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402MOUSE AND MISC DEVICES [GENERAL]
2403P: Alessandro Rubini
2404M: rubini@ipvvis.unipv.it
2405L: linux-kernel@vger.kernel.org
2406S: Maintained
2407
Jiri Slabyd7354102006-12-08 02:38:35 -08002408MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2409P: Jiri Slaby
2410M: jirislaby@gmail.com
2411L: linux-kernel@vger.kernel.org
2412S: Maintained
2413
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002414MSI LAPTOP SUPPORT
2415P: Lennart Poettering
2416M: mzxreary@0pointer.de
2417L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2418W: http://0pointer.de/lennart/tchibo.html
2419S: Maintained
2420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421MTRR AND SIMILAR SUPPORT [i386]
2422P: Richard Gooch
2423M: rgooch@atnf.csiro.au
2424L: linux-kernel@vger.kernel.org
2425W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2426S: Maintained
2427
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002428MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2429P: Pierre Ossman
2430M: drzeus-mmc@drzeus.cx
2431L: linux-kernel@vger.kernel.org
2432S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434MULTISOUND SOUND DRIVER
2435P: Andrew Veliath
2436M: andrewtv@usa.net
2437S: Maintained
2438
Jiri Slabyd7354102006-12-08 02:38:35 -08002439MULTITECH MULTIPORT CARD (ISICOM)
2440P: Jiri Slaby
2441M: jirislaby@gmail.com
2442L: linux-kernel@vger.kernel.org
2443S: Maintained
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445NATSEMI ETHERNET DRIVER (DP8381x)
2446P: Tim Hockin
2447M: thockin@hockin.org
2448S: Maintained
2449
2450NCP FILESYSTEM
2451P: Petr Vandrovec
2452M: vandrove@vc.cvut.cz
2453L: linware@sh.cvut.cz
2454S: Maintained
2455
2456NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2457P: James E.J. Bottomley
2458M: James.Bottomley@HansenPartnership.com
2459L: linux-scsi@vger.kernel.org
2460S: Maintained
2461
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002462NETEM NETWORK EMULATOR
2463P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002464M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002465L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002466S: Maintained
2467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468NETFILTER/IPTABLES/IPCHAINS
2469P: Rusty Russell
2470P: Marc Boucher
2471P: James Morris
2472P: Harald Welte
2473P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002474P: Patrick McHardy
2475M: kaber@trash.net
2476L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002477L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002478L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479W: http://www.netfilter.org/
2480W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481S: Supported
2482
Paul Moore4cc67732006-09-25 15:57:13 -07002483NETLABEL
2484P: Paul Moore
2485M: paul.moore@hp.com
2486W: http://netlabel.sf.net
2487L: netdev@vger.kernel.org
2488S: Supported
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490NETROM NETWORK LAYER
2491P: Ralf Baechle
2492M: ralf@linux-mips.org
2493L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002494W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495S: Maintained
2496
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002497NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498P: Paul Clements
2499M: Paul.Clements@steeleye.com
2500S: Maintained
2501
2502NETWORK DEVICE DRIVERS
2503P: Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002504M: akpm@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505P: Jeff Garzik
2506M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002507L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002508T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509S: Maintained
2510
2511NETWORKING [GENERAL]
2512P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002513M: netdev@vger.kernel.org
2514L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002515W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516S: Maintained
2517
2518NETWORKING [IPv4/IPv6]
2519P: David S. Miller
2520M: davem@davemloft.net
2521P: Alexey Kuznetsov
2522M: kuznet@ms2.inr.ac.ru
2523P: Pekka Savola (ipv6)
2524M: pekkas@netcore.fi
2525P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002526M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527P: Hideaki YOSHIFUJI
2528M: yoshfuji@linux-ipv6.org
2529P: Patrick McHardy
2530M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002531L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002532T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533S: Maintained
2534
John W. Linville29f8f632006-01-18 14:52:48 -08002535NETWORKING [WIRELESS]
2536P: John W. Linville
2537M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002538L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002539T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2540S: Maintained
2541
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002542NETXEN (1/10) GbE SUPPORT
2543P: Amit S. Kale
2544M: amitkale@netxen.com
2545L: netdev@vger.kernel.org
2546W: http://www.netxen.com
2547S: Supported
2548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549IPVS
2550P: Wensong Zhang
2551M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002552P: Simon Horman
2553M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554P: Julian Anastasov
2555M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002556L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557S: Maintained
2558
2559NFS CLIENT
2560P: Trond Myklebust
2561M: trond.myklebust@fys.uio.no
2562L: linux-kernel@vger.kernel.org
2563S: Maintained
2564
2565NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002566P: Jan-Pascal van Best
2567M: janpascal@vanbest.org
2568P: Andreas Mohr
2569M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002570L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571S: Maintained
2572
2573NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2574P: YOKOTA Hiroshi
2575M: yokota@netlab.is.tsukuba.ac.jp
2576W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2577S: Maintained
2578
2579NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2580P: GOTO Masanori
2581M: gotom@debian.or.jp
2582P: YOKOTA Hiroshi
2583M: yokota@netlab.is.tsukuba.ac.jp
2584W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2585S: Maintained
2586
2587NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2588P: Eberhard Moenkeberg
2589M: emoenke@gwdg.de
2590L: linux-kernel@vger.kernel.org
2591S: Maintained
2592
2593NTFS FILESYSTEM
2594P: Anton Altaparmakov
2595M: aia21@cantab.net
2596L: linux-ntfs-dev@lists.sourceforge.net
2597L: linux-kernel@vger.kernel.org
2598W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002599T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600S: Maintained
2601
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002602NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002603P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002604M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002605L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002606S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Ramkrishna Vepa3ef34b82007-03-30 18:42:27 -07002608NETERION (S2IO) Xframe 10GbE DRIVER
2609P: Ramkrishna Vepa
2610M: ram.vepa@neterion.com
2611P: Rastapur Santosh
2612M: santosh.rastapur@neterion.com
2613P: Sivakumar Subramani
2614M: sivakumar.subramani@neterion.com
2615P: Sreenivasa Honnur
2616M: sreenivasa.honnur@neterion.com
2617L: netdev@vger.kernel.org
2618W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/TitleIndex?anonymous
2619S: Supported
2620
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002621OPENCORES I2C BUS DRIVER
2622P: Peter Korsgaard
2623M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002624L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002625S: Maintained
2626
Mark Fashehccd979b2005-12-15 14:31:24 -08002627ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2628P: Mark Fasheh
2629M: mark.fasheh@oracle.com
2630P: Kurt Hackel
2631M: kurt.hackel@oracle.com
2632L: ocfs2-devel@oss.oracle.com
2633W: http://oss.oracle.com/projects/ocfs2/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002634S: Supported
Mark Fashehccd979b2005-12-15 14:31:24 -08002635
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636OLYMPIC NETWORK DRIVER
2637P: Peter De Shrijver
2638M: p2@ace.ulyssis.student.kuleuven.ac.be
2639P: Mike Phillips
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002640M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002641L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642L: linux-tr@linuxtr.net
2643W: http://www.linuxtr.net
2644S: Maintained
2645
Harald Weltec1986ee2005-11-13 16:06:29 -08002646OMNIKEY CARDMAN 4000 DRIVER
2647P: Harald Welte
2648M: laforge@gnumonks.org
2649S: Maintained
2650
Harald Welte77c44ab2005-11-13 16:06:26 -08002651OMNIKEY CARDMAN 4040 DRIVER
2652P: Harald Welte
2653M: laforge@gnumonks.org
2654S: Maintained
2655
Jonathan Corbet77d51402007-03-22 19:44:17 -03002656OMNIVISION OV7670 SENSOR DRIVER
2657P: Jonathan Corbet
2658M: corbet@lwn.net
2659L: video4linux-list@redhat.com
2660S: Maintained
2661
Thomas Gleixner431bca72007-05-02 09:31:35 +02002662ONENAND FLASH DRIVER
2663P: Kyungmin Park
2664M: kyungmin.park@samsung.com
2665L: linux-mtd@lists.infradead.org
2666S: Maintained
2667
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668ONSTREAM SCSI TAPE DRIVER
2669P: Willem Riede
2670M: osst@riede.org
2671L: osst-users@lists.sourceforge.net
2672L: linux-scsi@vger.kernel.org
2673S: Maintained
2674
2675OPL3-SA2, SA3, and SAx DRIVER
2676P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002677M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678L: linux-sound@vger.kernel.org
2679S: Maintained
2680
2681OPROFILE
2682P: Philippe Elie
2683M: phil.el@wanadoo.fr
2684L: oprofile-list@lists.sf.net
2685S: Maintained
2686
2687ORINOCO DRIVER
2688P: Pavel Roskin
2689M: proski@gnu.org
2690P: David Gibson
2691M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07002692L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07002693L: orinoco-users@lists.sourceforge.net
2694L: orinoco-devel@lists.sourceforge.net
2695W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696S: Maintained
2697
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002698PA SEMI ETHERNET DRIVER
2699P: Olof Johansson
2700M: olof@lixom.net
2701L: netdev@vger.kernel.org
2702S: Maintained
2703
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002704PA SEMI SMBUS DRIVER
2705P: Olof Johansson
2706M: olof@lixom.net
2707L: i2c@lm-sensors.org
2708S: Maintained
2709
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07002711L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08002712S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
2714PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2715P: Tim Waugh
2716M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07002717L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718W: http://www.torque.net/linux-pp.html
2719S: Maintained
2720
2721PARISC ARCHITECTURE
2722P: Matthew Wilcox
2723M: matthew@wil.cx
2724P: Grant Grundler
2725M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002726P: Kyle McMartin
2727M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728L: parisc-linux@parisc-linux.org
2729W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002730T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2731T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732S: Maintained
2733
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02002734PARAVIRT_OPS INTERFACE
2735P: Jeremy Fitzhardinge
2736M: jeremy@xensource.com
2737P: Chris Wright
2738M: chrisw@sous-sol.org
2739P: Zachary Amsden
2740M: zach@vmware.com
2741P: Rusty Russell
2742M: rusty@rustcorp.com.au
2743L: virtualization@lists.osdl.org
2744L: linux-kernel@vger.kernel.org
2745S: Supported
2746
Jim Cromie1662d322006-10-06 00:43:59 -07002747PC87360 HARDWARE MONITORING DRIVER
2748P: Jim Cromie
2749M: jim.cromie@gmail.com
2750L: lm-sensors@lm-sensors.org
2751S: Maintained
2752
2753PC8736x GPIO DRIVER
2754P: Jim Cromie
2755M: jim.cromie@gmail.com
2756S: Maintained
2757
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002758PCI ERROR RECOVERY
2759P: Linas Vepstas
2760M: linas@austin.ibm.com
2761L: linux-kernel@vger.kernel.org
2762L: linux-pci@atrey.karlin.mff.cuni.cz
2763S: Supported
2764
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2766P: Thomas Sailer
2767M: sailer@ife.ee.ethz.ch
2768L: linux-sound@vger.kernel.org
2769W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2770S: Maintained
2771
2772PCI SUBSYSTEM
2773P: Greg Kroah-Hartman
2774M: gregkh@suse.de
2775L: linux-kernel@vger.kernel.org
2776L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002777T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778S: Supported
2779
2780PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002781P: Kristen Carlson Accardi
2782M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783S: Supported
2784
2785PCI HOTPLUG COMPAQ DRIVER
2786P: Greg Kroah-Hartman
2787M: greg@kroah.com
2788S: Maintained
2789
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002790PCIE HOTPLUG DRIVER
2791P: Kristen Carlson Accardi
2792M: kristen.c.accardi@intel.com
2793L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002794S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002797P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002798L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002800T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002801S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
2803PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002804P: Don Fry
2805M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002806L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807S: Maintained
2808
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002809PER-TASK DELAY ACCOUNTING
2810P: Shailabh Nagar
2811M: nagar@watson.ibm.com
2812L: linux-kernel@vger.kernel.org
2813S: Maintained
2814
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002815PERSONALITY HANDLING
2816P: Christoph Hellwig
2817M: hch@infradead.org
2818L: linux-abi-devel@lists.sourceforge.net
2819S: Maintained
2820
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821PHRAM MTD DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02002822P: Jörn Engel
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823M: joern@wh.fh-wedel.de
2824L: linux-mtd@lists.infradead.org
2825S: Maintained
2826
Peter Osterlund249a6772005-09-27 21:45:30 -07002827PKTCDVD DRIVER
2828P: Peter Osterlund
2829M: petero2@telia.com
2830L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002831S: Maintained
2832
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833POSIX CLOCKS and TIMERS
2834P: George Anzinger
2835M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002836L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837S: Supported
2838
Eugene Surovegin24682972005-10-14 03:00:53 -07002839POWERPC 4xx EMAC DRIVER
2840P: Eugene Surovegin
2841M: ebs@ebshome.net
2842W: http://kernel.ebshome.net/emac/
2843L: linuxppc-embedded@ozlabs.org
2844L: netdev@vger.kernel.org
2845S: Maintained
2846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847PNP SUPPORT
2848P: Adam Belay
2849M: ambx1@neo.rr.com
2850S: Maintained
2851
Vitaly Wool999445d2007-01-04 13:07:03 +01002852PNXxxxx I2C DRIVER
2853P: Vitaly Wool
2854M: vitalywool@gmail.com
2855L: i2c@lm-sensors.org
2856S: Maintained
2857
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858PPP PROTOCOL DRIVERS AND COMPRESSORS
2859P: Paul Mackerras
2860M: paulus@samba.org
2861L: linux-ppp@vger.kernel.org
2862S: Maintained
2863
2864PPP OVER ATM (RFC 2364)
2865P: Mitchell Blank Jr
2866M: mitch@sfgoth.com
2867S: Maintained
2868
2869PPP OVER ETHERNET
2870P: Michal Ostrowski
2871M: mostrows@speakeasy.net
2872S: Maintained
2873
2874PREEMPTIBLE KERNEL
2875P: Robert Love
2876M: rml@tech9.net
2877L: linux-kernel@vger.kernel.org
2878L: kpreempt-tech@lists.sourceforge.net
2879W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2880S: Supported
2881
2882PRISM54 WIRELESS DRIVER
2883P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002884M: developers@islsm.org
Johannes Berg724c6b32007-04-23 12:18:20 -07002885L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886W: http://prism54.org
2887S: Maintained
2888
2889PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2890P: Peter Denison
2891M: promise@pnd-pc.demon.co.uk
2892W: http://www.pnd-pc.demon.co.uk/promise/
2893S: Maintained
2894
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002895PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2896P: Mikael Pettersson
2897M: mikpe@it.uu.se
2898L: linux-ide@vger.kernel.org
2899S: Maintained
2900
Geoff Levandf58a9d12006-11-23 00:46:51 +01002901PS3 PLATFORM SUPPORT
2902P: Geoff Levand
2903M: geoffrey.levand@am.sony.com
2904L: linuxppc-dev@ozlabs.org
2905L: cbe-oss-dev@ozlabs.org
2906S: Supported
2907
Michael Krufky83202042006-07-03 00:24:18 -07002908PVRUSB2 VIDEO4LINUX DRIVER
2909P: Mike Isely
2910M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03002911L: pvrusb2@isely.net (subscribers-only)
Michael Krufky83202042006-07-03 00:24:18 -07002912L: video4linux-list@redhat.com
2913W: http://www.isely.net/pvrusb2/
2914S: Maintained
2915
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916PXA2xx SUPPORT
2917P: Nicolas Pitre
2918M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002919L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920S: Maintained
2921
Pierre Ossman272f1332007-05-14 21:25:26 +02002922PXA MMCI DRIVER
2923S: Orphan
2924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925QLOGIC QLA2XXX FC-SCSI DRIVER
2926P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002927M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928L: linux-scsi@vger.kernel.org
2929S: Supported
2930
Ron Mercer5a4faa82006-07-25 00:40:21 -07002931QLOGIC QLA3XXX NETWORK DRIVER
2932P: Ron Mercer
2933M: linux-driver@qlogic.com
2934L: netdev@vger.kernel.org
2935S: Supported
2936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937QNX4 FILESYSTEM
2938P: Anders Larsen
2939M: al@alarsen.net
2940L: linux-kernel@vger.kernel.org
2941W: http://www.alarsen.net/linux/qnx4fs/
2942S: Maintained
2943
2944RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002945P: Benjamin Herrenschmidt
2946M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002947L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948S: Maintained
2949
2950RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002951P: Paul Mackerras
2952M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002953L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954S: Maintained
2955
2956RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2957P: Corey Thomas
2958M: corey@world.std.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002959L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960S: Maintained
2961
Matt Mackall9e95ce22005-04-16 15:25:56 -07002962RANDOM NUMBER DRIVER
2963P: Matt Mackall
2964M: mpm@selenic.com
2965S: Maintained
2966
Matt Porter394b7012005-11-07 01:00:15 -08002967RAPIDIO SUBSYSTEM
2968P: Matt Porter
2969M: mporter@kernel.crashing.org
2970L: linux-kernel@vger.kernel.org
2971S: Maintained
2972
Josh Triplett595182b2006-10-04 02:17:21 -07002973READ-COPY UPDATE (RCU)
2974P: Dipankar Sarma
2975M: dipankar@in.ibm.com
2976W: http://www.rdrop.com/users/paulmck/rclock/
2977L: linux-kernel@vger.kernel.org
2978S: Supported
2979
2980RCUTORTURE MODULE
2981P: Josh Triplett
2982M: josh@freedesktop.org
2983L: linux-kernel@vger.kernel.org
2984S: Maintained
2985
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986REAL TIME CLOCK DRIVER
2987P: Paul Gortmaker
2988M: p_gortmaker@yahoo.com
2989L: linux-kernel@vger.kernel.org
2990S: Maintained
2991
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002992REAL TIME CLOCK (RTC) SUBSYSTEM
2993P: Alessandro Zummo
2994M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002995L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002996S: Maintained
2997
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998REISERFS FILE SYSTEM
2999P: Hans Reiser
3000M: reiserfs-dev@namesys.com
3001L: reiserfs-list@namesys.com
3002W: http://www.namesys.com
3003S: Supported
3004
3005ROCKETPORT DRIVER
3006P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007W: http://www.comtrol.com
3008S: Maintained
3009
3010ROSE NETWORK LAYER
3011P: Ralf Baechle
3012M: ralf@linux-mips.org
3013L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02003014W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015S: Maintained
3016
3017RISCOM8 DRIVER
3018S: Orphan
3019
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003020S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003021P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08003022M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08003023L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01003024S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026S390
3027P: Martin Schwidefsky
3028M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02003029P: Heiko Carstens
3030M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01003032L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003033W: http://www.ibm.com/developerworks/linux/linux390/
3034S: Supported
3035
3036S390 NETWORK DRIVERS
3037P: Frank Pavlic
3038M: fpavlic@de.ibm.com
3039M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01003040L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003041W: http://www.ibm.com/developerworks/linux/linux390/
3042S: Supported
3043
3044S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02003045P: Swen Schillig
3046M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08003047M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01003048L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003049W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050S: Supported
3051
3052SAA7146 VIDEO4LINUX-2 DRIVER
3053P: Michael Hunold
3054M: michael@mihu.de
3055W: http://www.mihu.de/linux/saa7146
3056S: Maintained
3057
3058SBPCD CDROM DRIVER
3059P: Eberhard Moenkeberg
3060M: emoenke@gwdg.de
3061L: linux-kernel@vger.kernel.org
3062S: Maintained
3063
3064SC1200 WDT DRIVER
3065P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07003066M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067S: Maintained
3068
3069SCHEDULER
3070P: Ingo Molnar
3071M: mingo@elte.hu
3072P: Robert Love [the preemptible kernel bits]
3073M: rml@tech9.net
3074L: linux-kernel@vger.kernel.org
3075S: Maintained
3076
3077SCSI CDROM DRIVER
3078P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003079M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080L: linux-scsi@vger.kernel.org
3081W: http://www.kernel.dk
3082S: Maintained
3083
3084SCSI SG DRIVER
3085P: Doug Gilbert
3086M: dgilbert@interlog.com
3087L: linux-scsi@vger.kernel.org
3088W: http://www.torque.net/sg
3089S: Maintained
3090
3091SCSI SUBSYSTEM
3092P: James E.J. Bottomley
3093M: James.Bottomley@SteelEye.com
3094L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003095T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096S: Maintained
3097
3098SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02003099P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100M: Kai.Makisara@kolumbus.fi
3101L: linux-scsi@vger.kernel.org
3102S: Maintained
3103
3104SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003105P: Vlad Yasevich
3106M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01003107P: Sridhar Samudrala
3108M: sri@us.ibm.com
3109L: lksctp-developers@lists.sourceforge.net
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003110W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01003111S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
3113SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07003114P: Jim Cromie
3115M: jim.cromie@gmail.com
3116S: Odd Fixes
3117
3118SCx200 GPIO DRIVER
3119P: Jim Cromie
3120M: jim.cromie@gmail.com
3121S: Maintained
3122
3123SCx200 HRT CLOCKSOURCE DRIVER
3124P: Jim Cromie
3125M: jim.cromie@gmail.com
3126S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
3128SECURITY CONTACT
3129P: Security Officers
3130M: security@kernel.org
3131S: Supported
3132
3133SELINUX SECURITY MODULE
3134P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08003135M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04003137M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05003138P: Eric Paris
3139M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140L: linux-kernel@vger.kernel.org (kernel issues)
Stephen Smalley588a3152007-02-23 09:20:09 -05003141L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142W: http://www.nsa.gov/selinux
3143S: Supported
3144
Jiri Slabycef2cf02007-05-08 00:31:45 -07003145SENSABLE PHANTOM
3146P: Jiri Slaby
3147M: jirislaby@gmail.com
3148S: Maintained
3149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150SERIAL ATA (SATA) SUBSYSTEM:
3151P: Jeff Garzik
3152M: jgarzik@pobox.com
3153L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003154T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155S: Supported
3156
3157SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
3158P: Pat Gefre
3159M: pfg@sgi.com
3160L: linux-ia64@vger.kernel.org
3161S: Supported
3162
3163SGI VISUAL WORKSTATION 320 AND 540
3164P: Andrey Panin
3165M: pazke@donpac.ru
3166L: linux-visws-devel@lists.sf.net
3167W: http://linux-visws.sf.net
3168S: Maintained for 2.6.
3169
3170SIMTEC EB110ATX (Chalice CATS)
3171P: Ben Dooks
3172P: Vincent Sanders
3173M: support@simtec.co.uk
3174W: http://www.simtec.co.uk/products/EB110ATX/
3175S: Supported
3176
3177SIMTEC EB2410ITX (BAST)
3178P: Ben Dooks
3179P: Vincent Sanders
3180M: support@simtec.co.uk
3181W: http://www.simtec.co.uk/products/EB2410ITX/
3182S: Supported
3183
Francois Romieu92aab3c2005-07-30 13:11:18 +02003184SIS 190 ETHERNET DRIVER
3185P: Francois Romieu
3186M: romieu@fr.zoreil.com
3187L: netdev@vger.kernel.org
3188S: Maintained
3189
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190SIS 5513 IDE CONTROLLER DRIVER
3191P: Lionel Bouton
3192M: Lionel.Bouton@inet6.fr
3193W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3194W: http://gyver.homeip.net/sis5513/index.html
3195S: Maintained
3196
3197SIS 900/7016 FAST ETHERNET DRIVER
3198P: Daniele Venzano
3199M: venza@brownhat.org
3200W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003201L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202S: Maintained
3203
3204SIS FRAMEBUFFER DRIVER
3205P: Thomas Winischhofer
3206M: thomas@winischhofer.net
3207W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003208S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
3210SIS USB2VGA DRIVER
3211P: Thomas Winischhofer
3212M: thomas@winischhofer.net
3213W: http://www.winischhofer.at/linuxsisusbvga.shtml
3214S: Maintained
3215
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216SMC91x ETHERNET DRIVER
3217P: Nicolas Pitre
3218M: nico@cam.org
3219S: Maintained
3220
Daniel Drake8f0f8502006-07-18 22:00:25 +01003221SOFTMAC LAYER (IEEE 802.11)
3222P: Johannes Berg
3223M: johannes@sipsolutions.net
3224P: Joe Jezak
3225M: josejx@gentoo.org
3226P: Daniel Drake
3227M: dsd@gentoo.org
3228W: http://softmac.sipsolutions.net/
Johannes Berg724c6b32007-04-23 12:18:20 -07003229L: linux-wireless@vger.kernel.org
Daniel Drake8f0f8502006-07-18 22:00:25 +01003230S: Maintained
3231
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232SOFTWARE RAID (Multiple Disks) SUPPORT
3233P: Ingo Molnar
3234M: mingo@redhat.com
3235P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003236M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003238S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
3240SOFTWARE SUSPEND:
3241P: Pavel Machek
3242M: pavel@suse.cz
David Brownellf318a632007-04-23 14:41:06 -07003243L: linux-pm@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244S: Maintained
3245
3246SONIC NETWORK DRIVER
3247P: Thomas Bogendoerfer
3248M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003249L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250S: Maintained
3251
3252SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01003253P: Mattia Dongili
3254M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01003255L: linux-acpi@vger.kernel.org
3256W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257S: Maintained
3258
3259SOUND
3260P: Jaroslav Kysela
3261M: perex@suse.cz
Takashi Iwai82622042007-04-16 12:32:52 +02003262L: alsa-devel@alsa-project.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263S: Maintained
3264
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003265SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3266P: Liam Girdwood
3267M: liam.girdwood@wolfsonmicro.com
Takashi Iwai82622042007-04-16 12:32:52 +02003268L: alsa-devel@alsa-project.org (subscribers-only)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003269S: Supported
3270
Kumar Gala025c3982006-04-02 16:05:54 -05003271SPI SUBSYSTEM
3272P: David Brownell
3273M: dbrownell@users.sourceforge.net
3274L: spi-devel-general@lists.sourceforge.net
3275S: Maintained
3276
Steven Rostedt855f46a2006-08-05 12:14:50 -07003277STABLE BRANCH:
3278P: Greg Kroah-Hartman
3279M: greg@kroah.com
3280P: Chris Wright
3281M: chrisw@sous-sol.org
3282L: stable@kernel.org
3283S: Maintained
3284
Kylene Hall1c72d462005-05-01 08:59:13 -07003285TPM DEVICE DRIVER
3286P: Kylene Hall
3287M: kjhall@us.ibm.com
3288W: http://tpmdd.sourceforge.net
Marcel Selhorstd3a7b6d2007-03-16 13:38:31 -08003289P: Marcel Selhorst
3290M: tpm@selhorst.net
3291W: http://www.prosec.rub.de/tpm/
Stephen Rothwell3bd2aad2007-05-15 01:41:36 -07003292L: tpmdd-devel@lists.sourceforge.net
Kylene Hall1c72d462005-05-01 08:59:13 -07003293S: Maintained
3294
Mark Gross1a80ba82005-10-30 15:02:55 -08003295Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003296P: Mark Gross
3297M: mark.gross@intel.com
3298S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003299
Chris Zankel48b415c2005-06-23 22:01:07 -07003300TENSILICA XTENSA PORT (xtensa):
3301P: Chris Zankel
3302M: chris@zankel.net
3303S: Maintained
3304
Henrique de Moraes Holschuh756970a2007-03-29 01:58:44 -03003305THINKPAD ACPI EXTRAS DRIVER
3306P: Henrique de Moraes Holschuh
3307M: ibm-acpi@hmh.eng.br
3308L: ibm-acpi-devel@lists.sourceforge.net
3309W: http://ibm-acpi.sourceforge.net
3310W: http://thinkwiki.org/wiki/Ibm-acpi
3311T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
3312S: Maintained
3313
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314UltraSPARC (sparc64):
3315P: David S. Miller
3316M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003318T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319S: Maintained
3320
3321SHARP LH SUPPORT (LH7952X & LH7A40X)
3322P: Marc Singer
3323M: elf@buici.com
3324W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003325L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326S: Maintained
3327
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003328SHPC HOTPLUG DRIVER
3329P: Kristen Carlson Accardi
3330M: kristen.c.accardi@intel.com
3331L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003332S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003333
Pierre Ossmand129bce2006-03-24 03:18:17 -08003334SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3335P: Pierre Ossman
3336M: drzeus-sdhci@drzeus.cx
3337L: sdhci-devel@list.drzeus.cx
3338W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3339S: Maintained
3340
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003341SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3342P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003343M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003344L: netdev@vger.kernel.org
3345S: Maintained
3346
Chris Boot1a87d942006-07-10 04:45:34 -07003347SOEKRIS NET48XX LED SUPPORT
3348P: Chris Boot
3349M: bootc@bootc.net
3350S: Maintained
3351
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352SPARC (sparc32):
3353P: William L. Irwin
3354M: wli@holomorphy.com
3355L: sparclinux@vger.kernel.org
3356S: Maintained
3357
3358SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3359P: Roger Wolff
3360M: R.E.Wolff@BitWizard.nl
3361L: linux-kernel@vger.kernel.org ?
3362S: Supported
3363
Jim Lewis2752e402006-09-29 02:01:19 -07003364SPIDERNET NETWORK DRIVER for CELL
Linas Vepstasfa302482007-02-20 16:45:27 -06003365P: Linas Vepstas
3366M: linas@austin.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07003367L: netdev@vger.kernel.org
3368S: Supported
3369
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370SRM (Alpha) environment access
3371P: Jan-Benedict Glaw
3372M: jbglaw@lug-owl.de
3373L: linux-kernel@vger.kernel.org
3374S: Maintained
3375
3376STARFIRE/DURALAN NETWORK DRIVER
3377P: Ion Badulescu
3378M: ionut@cs.columbia.edu
3379S: Maintained
3380
3381STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3382W: http://mosquitonet.Stanford.EDU/strip.html
3383S: Unsupported ?
3384
3385STRADIS MPEG-2 DECODER DRIVER
3386P: Nathan Laredo
3387M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388W: http://www.stradis.com/
3389S: Maintained
3390
3391SUPERH (sh)
3392P: Paul Mundt
3393M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003394L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396S: Maintained
3397
3398SUPERH64 (sh64)
3399P: Paul Mundt
3400M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401L: linuxsh-shmedia-dev@lists.sourceforge.net
3402W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403S: Maintained
3404
3405SUN3/3X
3406P: Sam Creasey
3407M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408W: http://sammy.net/sun3/
3409S: Maintained
3410
3411SVGA HANDLING
3412P: Martin Mares
3413M: mj@ucw.cz
3414L: linux-video@atrey.karlin.mff.cuni.cz
3415S: Maintained
3416
3417SYSV FILESYSTEM
3418P: Christoph Hellwig
3419M: hch@infradead.org
3420S: Maintained
3421
Stephen Hemminger781b4562006-07-10 20:25:29 -07003422TC CLASSIFIER
3423P: Jamal Hadi Salim
3424M: hadi@cyberus.ca
3425L: netdev@vger.kernel.org
3426S: Maintained
3427
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003428TCP LOW PRIORITY MODULE
3429P: Wong Hoi Sing, Edison
3430M: hswong3i@gmail.com
3431P: Hung Hing Lun, Mike
3432M: hlhung3i@gmail.com
3433W: http://tcp-lp-mod.sourceforge.net/
3434S: Maintained
3435
Alex Dubov4020f2d2006-10-04 02:15:37 -07003436TI FLASH MEDIA INTERFACE DRIVER
3437P: Alex Dubov
3438M: oakad@yahoo.com
3439S: Maintained
3440
Syed Khasim9f9c24f2007-05-16 01:07:22 +02003441TI OMAP MMC INTERFACE DRIVER
3442P: Carlos Aguiar, Anderson Briglia and Syed Khasim
3443M: linux-omap-open-source@linux.omap.com
3444W: http://linux.omap.com
3445W: http://www.muru.com/linux/omap/
3446S: Maintained
3447
Michael Buesch844dd052006-06-26 00:24:59 -07003448TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3449P: Deepak Saxena
3450M: dsaxena@plexity.net
3451S: Maintained
3452
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003453TASKSTATS STATISTICS INTERFACE
3454P: Shailabh Nagar
3455M: nagar@watson.ibm.com
3456L: linux-kernel@vger.kernel.org
3457S: Maintained
3458
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003460P: Romain Lievin
3461M: roms@lpg.ticalc.org
3462S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
Per Lidene86eaa32006-01-12 16:45:18 +01003464TIPC NETWORK LAYER
3465P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003466M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003467P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003468M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003469P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003470M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003471L: tipc-discussion@lists.sourceforge.net
3472W: http://tipc.sourceforge.net/
3473W: http://tipc.cslab.ericsson.net/
3474T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3475S: Maintained
3476
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477TLAN NETWORK DRIVER
3478P: Samuel Chessman
3479M: chessman@tux.org
3480L: tlan-devel@lists.sourceforge.net
3481W: http://sourceforge.net/projects/tlan/
3482S: Maintained
3483
3484TOKEN-RING NETWORK DRIVER
3485P: Mike Phillips
3486M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003487L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488L: linux-tr@linuxtr.net
3489W: http://www.linuxtr.net
3490S: Maintained
3491
3492TOSHIBA ACPI EXTRAS DRIVER
3493P: John Belmonte
3494M: toshiba_acpi@memebeam.org
3495W: http://memebeam.org/toys/ToshibaAcpiDriver
3496S: Maintained
3497
3498TOSHIBA SMM DRIVER
3499P: Jonathan Buzzard
3500M: jonathan@buzzard.org.uk
3501L: tlinux-users@tce.toshiba-dme.co.jp
3502W: http://www.buzzard.org.uk/toshiba/
3503S: Maintained
3504
3505TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3506P: Muli Ben-Yehuda
3507M: mulix@mulix.org
3508L: linux-kernel@vger.kernel.org
3509S: Maintained
3510
3511TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003512P: Adrian Bunk
3513M: trivial@kernel.org
3514L: linux-kernel@vger.kernel.org
3515W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3516T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3517S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
3519TMS380 TOKEN-RING NETWORK DRIVER
3520P: Adam Fritzler
3521M: mid@auk.cx
3522L: linux-tr@linuxtr.net
3523W: http://www.auk.cx/tms380tr/
3524S: Maintained
3525
3526TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003527P: Valerie Henson
3528M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529L: tulip-users@lists.sourceforge.net
3530W: http://sourceforge.net/projects/tulip/
3531S: Maintained
3532
3533TUN/TAP driver
3534P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003535M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536L: vtun@office.satix.net
3537W: http://vtun.sourceforge.net/tun
3538S: Maintained
3539
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003540TURBOCHANNEL SUBSYSTEM
3541P: Maciej W. Rozycki
3542M: macro@linux-mips.org
3543S: Maintained
3544
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545U14-34F SCSI DRIVER
3546P: Dario Ballabio
3547M: ballabio_dario@emc.com
3548L: linux-scsi@vger.kernel.org
3549S: Maintained
3550
3551UDF FILESYSTEM
3552P: Ben Fennema
3553M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554W: http://linux-udf.sourceforge.net
3555S: Maintained
3556
3557UNIFORM CDROM DRIVER
3558P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003559M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560L: linux-kernel@vger.kernel.org
3561W: http://www.kernel.dk
3562S: Maintained
3563
3564USB ACM DRIVER
3565P: Oliver Neukum
3566M: oliver@neukum.name
3567L: linux-usb-users@lists.sourceforge.net
3568L: linux-usb-devel@lists.sourceforge.net
3569S: Maintained
3570
3571USB BLOCK DRIVER (UB ub)
3572P: Pete Zaitcev
3573M: zaitcev@redhat.com
3574L: linux-kernel@vger.kernel.org
3575L: linux-usb-devel@lists.sourceforge.net
3576S: Supported
3577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578USB CDC ETHERNET DRIVER
3579P: Greg Kroah-Hartman
3580M: greg@kroah.com
3581L: linux-usb-users@lists.sourceforge.net
3582L: linux-usb-devel@lists.sourceforge.net
3583S: Maintained
3584W: http://www.kroah.com/linux-usb/
3585
Peter Korsgaardd0374f42007-02-16 17:03:54 +01003586USB DAVICOM DM9601 DRIVER
3587P: Peter Korsgaard
3588M: jacmet@sunsite.dk
3589L: linux-usb-devel@lists.sourceforge.net
3590W: http://www.linux-usb.org/usbnet
3591S: Maintained
3592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593USB EHCI DRIVER
3594P: David Brownell
3595M: dbrownell@users.sourceforge.net
3596L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003597S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598
Luca Risolia7ce08c92006-01-11 02:06:59 +00003599USB ET61X[12]51 DRIVER
3600P: Luca Risolia
3601M: luca.risolia@studio.unibo.it
3602L: linux-usb-devel@lists.sourceforge.net
3603L: video4linux-list@redhat.com
3604W: http://www.linux-projects.org
3605S: Maintained
3606
David Brownell69ae9e32006-11-14 02:03:31 -08003607USB GADGET/PERIPHERAL SUBSYSTEM
3608P: David Brownell
3609M: dbrownell@users.sourceforge.net
3610L: linux-usb-devel@lists.sourceforge.net
3611W: http://www.linux-usb.org/gadget
3612S: Maintained
3613
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614USB HID/HIDBP DRIVERS
Jiri Kosina641266f2007-01-15 09:56:21 +01003615P: Jiri Kosina
3616M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617L: linux-usb-devel@lists.sourceforge.net
Jiri Kosinaa4dff392007-02-27 17:40:09 +01003618T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619S: Maintained
3620
3621USB HUB DRIVER
3622P: Johannes Erdfelt
3623M: johannes@erdfelt.com
3624L: linux-usb-users@lists.sourceforge.net
3625L: linux-usb-devel@lists.sourceforge.net
3626S: Maintained
3627
Olav Kongas959eea22005-11-03 17:38:14 +02003628USB ISP116X DRIVER
3629P: Olav Kongas
3630M: ok@artecdesign.ee
3631L: linux-usb-devel@lists.sourceforge.net
3632S: Maintained
3633
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634USB KAWASAKI LSI DRIVER
3635P: Oliver Neukum
3636M: oliver@neukum.name
3637L: linux-usb-users@lists.sourceforge.net
3638L: linux-usb-devel@lists.sourceforge.net
3639S: Maintained
3640
3641USB MASS STORAGE DRIVER
3642P: Matthew Dharm
3643M: mdharm-usb@one-eyed-alien.net
3644L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003645L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646S: Maintained
3647W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3648
3649USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003650P: David Brownell
3651M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652L: linux-usb-users@lists.sourceforge.net
3653L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003654S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655
Matthias Urlichsba460e42005-07-14 00:33:47 -07003656USB OPTION-CARD DRIVER
3657P: Matthias Urlichs
3658M: smurf@smurf.noris.de
3659L: linux-usb-devel@lists.sourceforge.net
3660S: Maintained
3661
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662USB OV511 DRIVER
3663P: Mark McClelland
3664M: mmcclell@bigfoot.com
3665L: linux-usb-users@lists.sourceforge.net
3666L: linux-usb-devel@lists.sourceforge.net
3667W: http://alpha.dyndns.org/ov511/
3668S: Maintained
3669
3670USB PEGASUS DRIVER
3671P: Petko Manolov
3672M: petkan@users.sourceforge.net
3673L: linux-usb-users@lists.sourceforge.net
3674L: linux-usb-devel@lists.sourceforge.net
3675W: http://pegasus2.sourceforge.net/
3676S: Maintained
3677
3678USB PRINTER DRIVER
3679P: Vojtech Pavlik
3680M: vojtech@suse.cz
3681L: linux-usb-users@lists.sourceforge.net
3682L: linux-usb-devel@lists.sourceforge.net
3683S: Maintained
3684
3685USB RTL8150 DRIVER
3686P: Petko Manolov
3687M: petkan@users.sourceforge.net
3688L: linux-usb-users@lists.sourceforge.net
3689L: linux-usb-devel@lists.sourceforge.net
3690W: http://pegasus2.sourceforge.net/
3691S: Maintained
3692
3693USB SE401 DRIVER
3694P: Jeroen Vreeken
3695M: pe1rxq@amsat.org
3696L: linux-usb-users@lists.sourceforge.net
3697L: linux-usb-devel@lists.sourceforge.net
3698W: http://www.chello.nl/~j.vreeken/se401/
3699S: Maintained
3700
3701USB SERIAL CYBERJACK DRIVER
3702P: Matthias Bruestle and Harald Welte
3703M: support@reiner-sct.com
3704W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3705S: Maintained
3706
3707USB SERIAL DIGI ACCELEPORT DRIVER
3708P: Peter Berger and Al Borchers
3709M: pberger@brimson.com
3710M: alborchers@steinerpoint.com
3711L: linux-usb-users@lists.sourceforge.net
3712L: linux-usb-devel@lists.sourceforge.net
3713S: Maintained
3714
3715USB SERIAL DRIVER
3716P: Greg Kroah-Hartman
3717M: gregkh@suse.de
3718L: linux-usb-users@lists.sourceforge.net
3719L: linux-usb-devel@lists.sourceforge.net
3720S: Supported
3721
3722USB SERIAL BELKIN F5U103 DRIVER
3723P: William Greathouse
3724M: wgreathouse@smva.com
3725L: linux-usb-users@lists.sourceforge.net
3726L: linux-usb-devel@lists.sourceforge.net
3727S: Maintained
3728
3729USB SERIAL CYPRESS M8 DRIVER
3730P: Lonnie Mendez
3731M: dignome@gmail.com
3732L: linux-usb-users@lists.sourceforge.net
3733L: linux-usb-devel@lists.sourceforge.net
3734S: Maintained
3735W: http://geocities.com/i0xox0i
3736W: http://firstlight.net/cvs
3737
3738USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3739L: linux-usb-users@lists.sourceforge.net
3740L: linux-usb-devel@lists.sourceforge.net
3741S: Maintained
3742
3743USB AUERSWALD DRIVER
3744P: Wolfgang Muees
3745M: wolfgang@iksw-muees.de
3746L: linux-usb-users@lists.sourceforge.net
3747L: linux-usb-devel@lists.sourceforge.net
3748S: Maintained
3749
3750USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3751P: Gary Brubaker
3752M: xavyer@ix.netcom.com
3753L: linux-usb-users@lists.sourceforge.net
3754L: linux-usb-devel@lists.sourceforge.net
3755S: Maintained
3756
3757USB SERIAL KEYSPAN DRIVER
3758P: Greg Kroah-Hartman
3759M: greg@kroah.com
3760L: linux-usb-users@lists.sourceforge.net
3761L: linux-usb-devel@lists.sourceforge.net
3762W: http://www.kroah.com/linux/
3763S: Maintained
3764
3765USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04003766P: Support Department
3767M: support@connecttech.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768L: linux-usb-users@lists.sourceforge.net
3769L: linux-usb-devel@lists.sourceforge.net
3770W: http://www.connecttech.com
3771S: Supported
3772
Luca Risoliaf423b9a2007-03-26 16:12:04 -03003773USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774P: Luca Risolia
3775M: luca.risolia@studio.unibo.it
3776L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003777L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778W: http://www.linux-projects.org
3779S: Maintained
3780
3781USB SUBSYSTEM
3782P: Greg Kroah-Hartman
3783M: gregkh@suse.de
3784L: linux-usb-users@lists.sourceforge.net
3785L: linux-usb-devel@lists.sourceforge.net
3786W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003787T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788S: Supported
3789
3790USB UHCI DRIVER
3791P: Alan Stern
3792M: stern@rowland.harvard.edu
3793L: linux-usb-users@lists.sourceforge.net
3794L: linux-usb-devel@lists.sourceforge.net
3795S: Maintained
3796
David Brownell69ae9e32006-11-14 02:03:31 -08003797USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798P: David Brownell
3799M: dbrownell@users.sourceforge.net
3800L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003801W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802S: Maintained
3803
3804USB W996[87]CF DRIVER
3805P: Luca Risolia
3806M: luca.risolia@studio.unibo.it
3807L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003808L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809W: http://www.linux-projects.org
3810S: Maintained
3811
Luca Risolia60f78052006-02-06 16:29:35 +00003812USB ZC0301 DRIVER
3813P: Luca Risolia
3814M: luca.risolia@studio.unibo.it
3815L: linux-usb-devel@lists.sourceforge.net
3816L: video4linux-list@redhat.com
3817W: http://www.linux-projects.org
3818S: Maintained
3819
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820USB ZD1201 DRIVER
3821P: Jeroen Vreeken
3822M: pe1rxq@amsat.org
3823L: linux-usb-users@lists.sourceforge.net
3824L: linux-usb-devel@lists.sourceforge.net
3825W: http://linux-lc100020.sourceforge.net
3826S: Maintained
3827
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003828USB ZR364XX DRIVER
3829P: Antoine Jacquet
3830M: royale@zerezo.com
3831L: linux-usb-devel@lists.sourceforge.net
3832L: video4linux-list@redhat.com
3833W: http://royale.zerezo.com/zr364xx/
3834S: Maintained
3835
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836USER-MODE LINUX
3837P: Jeff Dike
3838M: jdike@karaya.com
3839L: user-mode-linux-devel@lists.sourceforge.net
3840L: user-mode-linux-user@lists.sourceforge.net
3841W: http://user-mode-linux.sourceforge.net
3842S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844FAT/VFAT/MSDOS FILESYSTEM:
3845P: OGAWA Hirofumi
3846M: hirofumi@mail.parknet.co.jp
3847L: linux-kernel@vger.kernel.org
3848S: Maintained
3849
3850VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3851P: Jeff Garzik
3852S: Odd fixes
3853
3854VIA RHINE NETWORK DRIVER
3855P: Roger Luethi
3856M: rl@hellgate.ch
3857S: Maintained
3858
Jean Delvare32c0a522005-09-22 21:47:58 +02003859VIAPRO SMBUS DRIVER
3860P: Jean Delvare
3861M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003862L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003863S: Maintained
3864
Francois Romieu01f20732007-01-26 00:57:17 -08003865VIA VELOCITY NETWORK DRIVER
3866P: Francois Romieu
3867M: romieu@fr.zoreil.com
3868L: netdev@vger.kernel.org
3869S: Maintained
3870
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871UCLINUX (AND M68KNOMMU)
3872P: Greg Ungerer
3873M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003875L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876S: Maintained
3877
3878UCLINUX FOR NEC V850
3879P: Miles Bader
3880M: uclinux-v850@lsi.nec.co.jp
3881W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3882W: http://www.ee.nec.de/uclinux/
3883S: Supported
3884
3885UCLINUX FOR RENESAS H8/300
3886P: Yoshinori Sato
3887M: ysato@users.sourceforge.jp
3888W: http://uclinux-h8.sourceforge.jp/
3889S: Supported
3890
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003891UFS FILESYSTEM
3892P: Evgeniy Dushistov
3893M: dushistov@mail.ru
3894L: linux-kernel@vger.kernel.org
3895S: Maintained
3896
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897USB DIAMOND RIO500 DRIVER
3898P: Cesar Miquel
3899M: miquel@df.uba.ar
3900L: rio500-users@lists.sourceforge.net
3901W: http://rio500.sourceforge.net
3902S: Maintained
3903
3904VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003905P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003906M: mchehab@infradead.org
3907M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003909W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003910T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003911S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
Juerg Haefligerab413192006-09-24 20:54:04 +02003913VT1211 HARDWARE MONITOR DRIVER
3914P: Juerg Haefliger
3915M: juergh@gmail.com
3916L: lm-sensors@lm-sensors.org
3917S: Maintained
3918
Roger Lucas1de9e372005-11-26 20:20:05 +01003919VT8231 HARDWARE MONITOR DRIVER
3920P: Roger Lucas
3921M: roger@planbit.co.uk
3922L: lm-sensors@lm-sensors.org
3923S: Maintained
3924
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925W1 DALLAS'S 1-WIRE BUS
3926P: Evgeniy Polyakov
3927M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928S: Maintained
3929
Charles Spirakis13927072006-07-05 18:05:15 +02003930W83791D HARDWARE MONITORING DRIVER
3931P: Charles Spirakis
3932M: bezaur@gmail.com
3933L: lm-sensors@lm-sensors.org
3934S: Maintained
3935
Rudolf Marek61db0112006-12-12 18:18:30 +01003936W83793 HARDWARE MONITORING DRIVER
3937P: Rudolf Marek
3938M: r.marek@assembler.cz
3939L: lm-sensors@lm-sensors.org
3940S: Maintained
3941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942W83L51xD SD/MMC CARD INTERFACE DRIVER
3943P: Pierre Ossman
3944M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003945L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946W: http://projects.drzeus.cx/wbsd
3947S: Maintained
3948
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003949WATCHDOG DEVICE DRIVERS
3950P: Wim Van Sebroeck
3951M: wim@iguana.be
3952T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3953S: Maintained
3954
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3956P: Jean Tourrilhes
3957M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003958L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3960S: Maintained
3961
3962WD7000 SCSI DRIVER
3963P: Miroslav Zagorac
3964M: zaga@fly.cc.fer.hr
3965L: linux-scsi@vger.kernel.org
3966S: Maintained
3967
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003968WISTRON LAPTOP BUTTON DRIVER
3969P: Miloslav Trmac
3970M: mitr@volny.cz
3971S: Maintained
3972
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973WL3501 WIRELESS PCMCIA CARD DRIVER
3974P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003975M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07003976L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003977W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978S: Maintained
3979
3980X.25 NETWORK LAYER
3981P: Henner Eisen
3982M: eis@baty.hanse.de
3983L: linux-x25@vger.kernel.org
3984S: Maintained
3985
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02003986XEN HYPERVISOR INTERFACE
3987P: Jeremy Fitzhardinge
3988M: jeremy@xensource.com
3989P: Chris Wright
3990M: chrisw@sous-sol.org
3991L: virtualization@lists.osdl.org
3992L: xen-devel@lists.xensource.com
3993S: Supported
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995XFS FILESYSTEM
3996P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003997P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003999L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10004001T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002S: Supported
4003
Peter Korsgaard238b8722006-12-06 20:35:17 -08004004XILINX UARTLITE SERIAL DRIVER
4005P: Peter Korsgaard
4006M: jacmet@sunsite.dk
4007L: linux-serial@vger.kernel.org
4008S: Maintained
4009
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010X86 3-LEVEL PAGING (PAE) SUPPORT
4011P: Ingo Molnar
4012M: mingo@redhat.com
4013S: Maintained
4014
4015X86-64 port
4016P: Andi Kleen
4017M: ak@suse.de
4018L: discuss@x86-64.org
4019W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01004020T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021S: Maintained
4022
4023YAM DRIVER FOR AX.25
4024P: Jean-Paul Roubelat
4025M: jpr@f6fbb.org
4026L: linux-hams@vger.kernel.org
4027S: Maintained
4028
Henkaf64a5e2005-10-12 15:02:56 +02004029YEALINK PHONE DRIVER
4030P: Henk Vergonet
4031M: Henk.Vergonet@gmail.com
4032L: usbb2k-api-dev@nongnu.org
4033S: Maintained
4034
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035Z8530 DRIVER FOR AX.25
4036P: Joerg Reuter
4037M: jreuter@yaina.de
4038W: http://yaina.de/jreuter/
4039W: http://www.qsl.net/dl1bke/
4040L: linux-hams@vger.kernel.org
4041S: Maintained
4042
Daniel Drake7c0c3af2006-07-16 13:55:17 +01004043ZD1211RW WIRELESS DRIVER
4044P: Daniel Drake
4045M: dsd@gentoo.org
4046P: Ulrich Kunitz
4047M: kune@deine-taler.de
4048W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07004049L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01004050L: zd1211-devs@lists.sourceforge.net (subscribers-only)
4051S: Maintained
4052
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053ZF MACHZ WATCHDOG
4054P: Fernando Fuganti
4055M: fuganti@netbank.com.br
4056W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
4057S: Maintained
4058
4059ZR36067 VIDEO FOR LINUX DRIVER
4060P: Ronald Bultje
4061M: rbultje@ronald.bitfreak.net
4062L: mjpeg-users@lists.sourceforge.net
4063W: http://mjpeg.sourceforge.net/driver-zoran/
4064S: Maintained
4065
4066ZR36120 VIDEO FOR LINUX DRIVER
4067P: Pauline Middelink
4068M: middelin@polyware.nl
4069W: http://www.polyware.nl/~middelin/En/hobbies.html
4070W: http://www.polyware.nl/~middelin/hobbies.html
4071S: Maintained
4072
4073THE REST
4074P: Linus Torvalds
4075S: Buried alive in reporters