blob: f63d03a6c86533479a7634c3a7ef7a8589c2d944 [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
Stefan Richterb3274472007-05-30 20:44:52 -04001489FIREWIRE SUBSYSTEM
1490P: Kristian Hoegsberg, Stefan Richter
1491M: krh@redhat.com, stefanr@s5r6.in-berlin.de
1492L: linux1394-devel@lists.sourceforge.net
1493W: http://www.linux1394.org/
1494T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
1495S: Maintained
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497FIRMWARE LOADER (request_firmware)
1498L: linux-kernel@vger.kernel.org
1499S: Orphan
1500
1501FPU EMULATOR
1502P: Bill Metzenthen
1503M: billm@suburbia.net
1504W: http://suburbia.net/~billm/floating-point/emulator/
1505S: Maintained
1506
1507FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1508P: Mike McLagan
1509M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001510L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511S: Maintained
1512
1513FREEVXFS FILESYSTEM
1514P: Christoph Hellwig
1515M: hch@infradead.org
1516W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1517S: Maintained
1518
David Howells5ab7ffe2007-04-10 15:10:45 +01001519FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520P: David Howells
1521M: dhowells@redhat.com
1522S: Maintained
1523
Miklos Szeredi04578f12005-09-09 13:10:22 -07001524FUSE: FILESYSTEM IN USERSPACE
1525P: Miklos Szeredi
1526M: miklos@szeredi.hu
1527L: fuse-devel@lists.sourceforge.net
1528W: http://fuse.sourceforge.net/
1529S: Maintained
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1532P: Rik Faith
1533M: faith@cs.unc.edu
1534L: linux-scsi@vger.kernel.org
1535S: Odd fixes (e.g., new signatures)
1536
1537GDT SCSI DISK ARRAY CONTROLLER DRIVER
1538P: Achim Leubner
1539M: achim_leubner@adaptec.com
1540L: linux-scsi@vger.kernel.org
1541W: http://www.icp-vortex.com/
1542S: Supported
1543
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02001544GENERIC GPIO I2C DRIVER
1545P: Haavard Skinnemoen
1546M: hskinnemoen@atmel.com
1547S: Supported
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1550P: Krzysztof Halasa
1551M: khc@pm.waw.pl
1552W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1553S: Maintained
1554
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001555GFS2 FILE SYSTEM
1556P: Steven Whitehouse
1557M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001558L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001559W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001560T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1561T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001562S: Supported
1563
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001564GIGASET ISDN DRIVERS
1565P: Hansjoerg Lipp
1566M: hjlipp@web.de
1567P: Tilman Schmidt
1568M: tilman@imap.cc
1569L: gigaset307x-common@lists.sourceforge.net
1570W: http://gigaset307x.sourceforge.net/
1571S: Maintained
1572
Jean Delvare5b543962005-08-15 19:51:02 +02001573HARDWARE MONITORING
1574P: Jean Delvare
1575M: khali@linux-fr.org
1576L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001577W: http://www.lm-sensors.org/
1578T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001579S: Maintained
1580
Michael Buesch844dd052006-06-26 00:24:59 -07001581HARDWARE RANDOM NUMBER GENERATOR CORE
1582P: Michael Buesch
1583M: mb@bu3sch.de
1584S: Maintained
1585
Robert Love860e1d62005-08-31 23:57:59 -04001586HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1587P: Robert Love
1588M: rlove@rlove.org
1589M: linux-kernel@vger.kernel.org
1590W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1591S: Maintained
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593HARMONY SOUND DRIVER
1594P: Kyle McMartin
1595M: kyle@parisc-linux.org
1596W: http://www.parisc-linux.org/~kyle/harmony/
1597L: parisc-linux@lists.parisc-linux.org
1598S: Maintained
1599
1600HAYES ESP SERIAL DRIVER
1601P: Andrew J. Robinson
1602M: arobinso@nyx.net
1603L: linux-kernel@vger.kernel.org
1604W: http://www.nyx.net/~arobinso
1605S: Maintained
1606
1607HFS FILESYSTEM
1608P: Roman Zippel
1609M: zippel@linux-m68k.org
1610L: linux-kernel@vger.kernel.org
1611S: Maintained
1612
1613HGA FRAMEBUFFER DRIVER
1614P: Ferenc Bakonyi
1615M: fero@drama.obuda.kando.hu
1616L: linux-nvidia@lists.surfsouth.com
1617W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1618S: Maintained
1619
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001620HID CORE LAYER
1621P: Jiri Kosina
1622M: jkosina@suse.cz
1623L: linux-input@atrey.karlin.mff.cuni.cz
Jiri Kosinaa4dff392007-02-27 17:40:09 +01001624T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001625S: Maintained
1626
Ingo Molnar38bed542007-02-22 09:09:34 +01001627HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
1628P: Thomas Gleixner
1629M: tglx@linutronix.de
1630L: linux-kernel@vger.kernel.org
1631S: Maintained
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633HIGH-SPEED SCC DRIVER FOR AX.25
1634P: Klaus Kudielka
1635M: klaus.kudielka@ieee.org
1636L: linux-hams@vger.kernel.org
1637W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1638S: Maintained
1639
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001640HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1641P: HighPoint Linux Team
1642M: linux@highpoint-tech.com
1643W: http://www.highpoint-tech.com
1644S: Supported
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646HIPPI
1647P: Jes Sorensen
1648M: jes@trained-monkey.org
1649L: linux-hippi@sunsite.dk
1650S: Maintained
1651
1652HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1653P: Chirag Kantharia
1654M: chirag.kantharia@hp.com
1655L: iss_storagedev@hp.com
1656S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658HEWLETT-PACKARD SMART2 RAID DRIVER
1659P: Chirag Kantharia
1660M: chirag.kantharia@hp.com
1661L: iss_storagedev@hp.com
1662S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1665P: Mike Miller
1666M: mike.miller@hp.com
1667L: iss_storagedev@hp.com
1668S: Supported
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001669
Jouni Malinenff1d2762005-05-12 22:54:16 -04001670HOST AP DRIVER
1671P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07001672M: j@w1.fi
1673L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07001674L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04001675W: http://hostap.epitest.fi/
1676S: Maintained
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1679P: Jaroslav Kysela
1680M: perex@suse.cz
1681S: Maintained
1682
Bob Piccob9b03322005-11-07 00:59:19 -08001683HPET: High Precision Event Timers driver (hpet.c)
1684P: Clemens Ladisch
1685M: clemens@ladisch.de
1686S: Maintained
1687
1688HPET: i386
1689P: Venkatesh Pallipadi (Venki)
1690M: venkatesh.pallipadi@intel.com
1691S: Maintained
1692
1693HPET: x86_64
1694P: Andi Kleen and Vojtech Pavlik
Andi Kleen43c3ab32007-05-02 19:27:11 +02001695M: andi@firstfloor.org and vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08001696S: Maintained
1697
1698HPET: ACPI hpet.c
1699P: Bob Picco
1700M: bob.picco@hp.com
1701S: Maintained
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703HPFS FILESYSTEM
1704P: Mikulas Patocka
1705M: mikulas@artax.karlin.mff.cuni.cz
1706W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1707S: Maintained
1708
1709HUGETLB FILESYSTEM
1710P: William Irwin
1711M: wli@holomorphy.com
1712S: Maintained
1713
Jean Delvare5b543962005-08-15 19:51:02 +02001714I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715P: Jean Delvare
1716M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001717L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001718T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719S: Maintained
1720
Till Harbaume8c76ee2007-05-01 23:26:35 +02001721I2C-TINY-USB DRIVER
1722P: Till Harbaum
1723M: till@harbaum.org
1724L: i2c@lm-sensors.org
1725T: http://www.harbaum.org/till/i2c_tiny_usb
1726S: Maintained
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728i386 BOOT CODE
1729P: Riley H. Williams
1730M: Riley@Williams.Name
1731L: Linux-Kernel@vger.kernel.org
1732S: Maintained
1733
1734i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735P: H. Peter Anvin
1736M: hpa@zytor.com
1737S: Maintained
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739IA64 (Itanium) PLATFORM
1740P: Tony Luck
1741M: tony.luck@intel.com
1742L: linux-ia64@vger.kernel.org
1743W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001744T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745S: Maintained
1746
1747SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001748P: Jes Sorensen
1749M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750L: linux-altix@sgi.com
1751L: linux-ia64@vger.kernel.org
1752W: http://www.sgi.com/altix
1753S: Maintained
1754
1755IBM MCA SCSI SUBSYSTEM DRIVER
1756P: Michael Lang
1757M: langa2@kph.uni-mainz.de
1758W: http://www.uni-mainz.de/~langm000/linux.html
1759S: Maintained
1760
1761IBM Power Linux RAID adapter
1762P: Brian King
1763M: brking@us.ibm.com
1764S: Supported
1765
1766IBM ServeRAID RAID DRIVER
1767P: Jack Hammer
1768P: Dave Jeffery
1769M: ipslinux@adaptec.com
1770W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001771S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001773IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001775M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001777T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778S: Maintained
1779
1780IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001781P: Alan Cox
1782M: alan@lxorguk.ukuu.org.uk
1783L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784S: Maintained
1785
1786IDE/ATAPI FLOPPY DRIVERS
1787P: Paul Bristow
1788M: Paul Bristow <paul@paulbristow.net>
1789W: http://paulbristow.net/linux/idefloppy.html
1790L: linux-kernel@vger.kernel.org
1791S: Maintained
1792
1793IDE/ATAPI TAPE DRIVERS
1794P: Gadi Oxman
1795M: Gadi Oxman <gadio@netvision.net.il>
1796L: linux-kernel@vger.kernel.org
1797S: Maintained
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799IEEE 1394 SUBSYSTEM
1800P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07001801M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02001802P: Stefan Richter
1803M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804L: linux1394-devel@lists.sourceforge.net
1805W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001806T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807S: Maintained
1808
Stefan Richterf51a5a92007-04-23 14:41:10 -07001809IEEE 1394 RAW I/O DRIVER (raw1394)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810P: Dan Dennedy
1811M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07001812P: Stefan Richter
1813M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001815S: Maintained
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817IMS TWINTURBO FRAMEBUFFER DRIVER
1818P: Paul Mundt
1819M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001820L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821S: Maintained
1822
1823INFINIBAND SUBSYSTEM
1824P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001825M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826P: Sean Hefty
1827M: mshefty@ichips.intel.com
1828P: Hal Rosenstock
1829M: halr@voltaire.com
1830L: openib-general@openib.org
1831W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001832T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833S: Supported
1834
1835INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001836P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001837M: dmitry.torokhov@gmail.com
1838M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839L: linux-input@atrey.karlin.mff.cuni.cz
1840L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001841T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842S: Maintained
1843
Robert Lovec9f04f52005-07-15 12:21:07 -04001844INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001845P: John McCutchan
1846M: ttb@tentacle.dhs.org
1847P: Robert Love
1848M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001849L: linux-kernel@vger.kernel.org
1850S: Maintained
1851
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001852INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001853P: Sylvain Meyer
1854M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001855L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001856S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001859P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001860M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001861L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001862S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1865P: Ingo Molnar
1866M: mingo@redhat.com
1867S: Maintained
1868
1869INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1870P: Jeff Garzik
1871M: jgarzik@pobox.com
1872W: http://sourceforge.net/projects/gkernel/
1873S: Maintained
1874
1875INTEL IA32 MICROCODE UPDATE SUPPORT
1876P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001877M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878S: Maintained
1879
Michael Buesch844dd052006-06-26 00:24:59 -07001880INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1881P: Deepak Saxena
1882M: dsaxena@plexity.net
1883S: Maintained
1884
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001885INTEL IXP2000 ETHERNET DRIVER
1886P: Lennert Buytenhek
1887M: kernel@wantstofly.org
1888L: netdev@vger.kernel.org
1889S: Maintained
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891INTEL PRO/100 ETHERNET SUPPORT
1892P: John Ronciak
1893M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894P: Jesse Brandeburg
1895M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001896P: Jeff Kirsher
1897M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001898P: Auke Kok
1899M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001900L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901W: http://sourceforge.net/projects/e1000/
1902S: Supported
1903
1904INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1905P: Jeb Cramer
1906M: cramerj@intel.com
1907P: John Ronciak
1908M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001909P: Jesse Brandeburg
1910M: jesse.brandeburg@intel.com
1911P: Jeff Kirsher
1912M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001913P: Auke Kok
1914M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001915L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916W: http://sourceforge.net/projects/e1000/
1917S: Supported
1918
1919INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001920P: Jeff Kirsher
1921M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922P: Ayyappan Veeraiyan
1923M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924P: John Ronciak
1925M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001926P: Jesse Brandeburg
1927M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001928P: Auke Kok
1929M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001930L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931W: http://sourceforge.net/projects/e1000/
1932S: Supported
1933
James Ketrenos826d2ab2005-11-07 18:56:59 -06001934INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1935P: Yi Zhu
1936M: yi.zhu@intel.com
1937P: James Ketrenos
1938M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001939L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001940L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001941L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1942W: http://ipw2100.sourceforge.net
1943S: Supported
1944
1945INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1946P: Yi Zhu
1947M: yi.zhu@intel.com
1948P: James Ketrenos
1949M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001950L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001951L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001952L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1953W: http://ipw2200.sourceforge.net
1954S: Supported
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956IOC3 DRIVER
1957P: Ralf Baechle
1958M: ralf@linux-mips.org
1959L: linux-mips@linux-mips.org
1960S: Maintained
1961
1962IP MASQUERADING:
1963P: Juanjo Ciarlante
1964M: jjciarla@raiz.uncu.edu.ar
1965S: Maintained
1966
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001967IPATH DRIVER:
1968P: Bryan O'Sullivan
1969M: support@pathscale.com
1970L: openib-general@openib.org
1971S: Supported
1972
Corey Minyard4409ebe2006-04-20 02:43:12 -07001973IPMI SUBSYSTEM
1974P: Corey Minyard
1975M: minyard@acm.org
1976L: openipmi-developer@lists.sourceforge.net
1977W: http://openipmi.sourceforge.net/
1978S: Supported
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980IPX NETWORK LAYER
1981P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001982M: acme@ghostprotocols.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07001983L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984S: Maintained
1985
1986IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001987P: Samuel Ortiz
1988M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001989L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001991S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
1993ISAPNP
1994P: Jaroslav Kysela
1995M: perex@suse.cz
1996S: Maintained
1997
1998ISDN SUBSYSTEM
1999P: Karsten Keil
2000M: kkeil@suse.de
2001P: Kai Germaschewski
2002M: kai.germaschewski@gmx.de
2003L: isdn4linux@listserv.isdn4linux.de
2004W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08002005T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006S: Maintained
2007
2008ISDN SUBSYSTEM (Eicon active card driver)
2009P: Armin Schindler
2010M: mac@melware.de
2011L: isdn4linux@listserv.isdn4linux.de
2012W: http://www.melware.de
2013S: Maintained
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
2016P: David Woodhouse
2017M: dwmw2@infradead.org
2018L: jffs-dev@axis.com
2019W: http://sources.redhat.com/jffs2/
2020S: Maintained
2021
2022JFS FILESYSTEM
2023P: Dave Kleikamp
2024M: shaggy@austin.ibm.com
2025L: jfs-discussion@lists.sourceforge.net
2026W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002027T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028S: Supported
2029
Josh Triplettde456d32006-07-30 03:04:00 -07002030JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07002031P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002032M: sct@redhat.com, akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08002033L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07002034S: Maintained
2035
Rudolf Marek4660cb32006-10-08 22:01:26 +02002036K8TEMP HARDWARE MONITORING DRIVER
2037P: Rudolf Marek
2038M: r.marek@assembler.cz
2039L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040S: Maintained
2041
2042KCONFIG
2043P: Roman Zippel
2044M: zippel@linux-m68k.org
2045L: kbuild-devel@lists.sourceforge.net
2046S: Maintained
2047
Vivek Goyalea6c2082006-05-20 14:59:55 -07002048KDUMP
2049P: Vivek Goyal
2050M: vgoyal@in.ibm.com
2051P: Haren Myneni
2052M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07002053L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07002054L: linux-kernel@vger.kernel.org
2055W: http://lse.sourceforge.net/kdump/
2056S: Maintained
2057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058KERNEL AUTOMOUNTER (AUTOFS)
2059P: H. Peter Anvin
2060M: hpa@zytor.com
2061L: autofs@linux.kernel.org
2062S: Odd Fixes
2063
2064KERNEL AUTOMOUNTER v4 (AUTOFS4)
2065P: Ian Kent
2066M: raven@themaw.net
2067L: autofs@linux.kernel.org
2068S: Maintained
2069
2070KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
2071P: Kai Germaschewski
2072M: kai@germaschewski.name
2073P: Sam Ravnborg
2074M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002075T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002076S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078KERNEL JANITORS
2079P: Several
David Brownellf318a632007-04-23 14:41:06 -07002080L: kernel-janitors@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082S: Maintained
2083
2084KERNEL NFSD
2085P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08002086M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087L: nfs@lists.sourceforge.net
2088W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08002089S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Avi Kivity426d62e2006-12-13 00:34:03 -08002091KERNEL VIRTUAL MACHINE (KVM)
2092P: Avi Kivity
2093M: avi@qumranet.com
2094L: kvm-devel@lists.sourceforge.net
2095W: kvm.sourceforge.net
2096S: Supported
2097
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002098KEXEC
2099P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002100M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002101W: http://www.xmission.com/~ebiederm/files/kexec/
2102L: linux-kernel@vger.kernel.org
Simon Horman34633992007-05-08 00:31:40 -07002103L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002104S: Maintained
2105
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07002106KPROBES
2107P: Prasanna S Panchamukhi
2108M: prasanna@in.ibm.com
2109P: Ananth N Mavinakayanahalli
2110M: ananth@in.ibm.com
2111P: Anil S Keshavamurthy
2112M: anil.s.keshavamurthy@intel.com
2113P: David S. Miller
2114M: davem@davemloft.net
2115L: linux-kernel@vger.kernel.org
2116S: Maintained
2117
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002118KS0108 LCD CONTROLLER DRIVER
2119P: Miguel Ojeda Sandonis
2120M: maxextreme@gmail.com
2121L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -07002122W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002123S: Maintained
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002127S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129LASI 53c700 driver for PARISC
2130P: James E.J. Bottomley
2131M: James.Bottomley@HansenPartnership.com
2132L: linux-scsi@vger.kernel.org
2133S: Maintained
2134
Richard Purdie263de9b2006-05-15 09:44:16 -07002135LED SUBSYSTEM
2136P: Richard Purdie
2137M: rpurdie@rpsys.net
2138S: Maintained
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140LEGO USB Tower driver
2141P: Juergen Stuber
2142M: starblue@users.sourceforge.net
2143L: legousb-devel@lists.sourceforge.net
2144W: http://legousb.sourceforge.net/
2145S: Maintained
2146
2147LINUX FOR IBM pSERIES (RS/6000)
2148P: Paul Mackerras
2149M: paulus@au.ibm.com
2150W: http://www.ibm.com/linux/ltc/projects/ppc
2151S: Supported
2152
2153LINUX FOR NCR VOYAGER
2154P: James Bottomley
2155M: James.Bottomley@HansenPartnership.com
2156W: http://www.hansenpartnership.com/voyager
2157S: Maintained
2158
2159LINUX FOR POWERPC
2160P: Paul Mackerras
2161M: paulus@samba.org
2162W: http://www.penguinppc.org/
2163L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002164T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165S: Supported
2166
2167LINUX FOR POWER MACINTOSH
2168P: Benjamin Herrenschmidt
2169M: benh@kernel.crashing.org
2170W: http://www.penguinppc.org/
2171L: linuxppc-dev@ozlabs.org
2172S: Maintained
2173
2174LINUX FOR POWERPC EMBEDDED MPC52XX
2175P: Sylvain Munaut
2176M: tnt@246tNt.com
2177W: http://www.246tNt.com/mpc52xx/
2178W: http://www.penguinppc.org/
2179L: linuxppc-dev@ozlabs.org
2180L: linuxppc-embedded@ozlabs.org
2181S: Maintained
2182
2183LINUX FOR POWERPC EMBEDDED PPC4XX
2184P: Matt Porter
2185M: mporter@kernel.crashing.org
2186W: http://www.penguinppc.org/
2187L: linuxppc-embedded@ozlabs.org
2188S: Maintained
2189
Tom Rinie93adf12005-07-26 12:49:53 -07002190LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191P: Tom Rini
2192M: trini@kernel.crashing.org
2193W: http://www.penguinppc.org/
2194L: linuxppc-embedded@ozlabs.org
2195S: Maintained
2196
Tom Rinie93adf12005-07-26 12:49:53 -07002197LINUX FOR POWERPC EMBEDDED PPC8XX
2198P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002199M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002200W: http://www.penguinppc.org/
2201L: linuxppc-embedded@ozlabs.org
2202S: Maintained
2203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002205P: Kumar Gala
2206M: galak@kernel.crashing.org
2207W: http://www.penguinppc.org/
2208L: linuxppc-embedded@ozlabs.org
2209S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Olof Johanssonab06ff32006-09-06 14:44:54 -05002211LINUX FOR POWERPC PA SEMI PWRFICIENT
2212P: Olof Johansson
2213M: olof@lixom.net
2214W: http://www.pasemi.com/
2215L: linuxppc-dev@ozlabs.org
2216S: Supported
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218LLC (802.2)
2219P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002220M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221S: Maintained
2222
2223LINUX FOR 64BIT POWERPC
2224P: Paul Mackerras
2225M: paulus@samba.org
2226M: paulus@au.ibm.com
2227P: Anton Blanchard
2228M: anton@samba.org
2229M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002230W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002231L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232S: Supported
2233
2234LINUX SECURITY MODULE (LSM) FRAMEWORK
2235P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002236M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002237L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002239T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240S: Supported
2241
2242LM83 HARDWARE MONITOR DRIVER
2243P: Jean Delvare
2244M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002245L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246S: Maintained
2247
2248LM90 HARDWARE MONITOR DRIVER
2249P: Jean Delvare
2250M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002251L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252S: Maintained
2253
Anton Altaparmakovdde33342007-05-21 09:37:42 +01002254LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255P: Richard Russon (FlatCap)
2256M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01002257L: linux-ntfs-dev@lists.sourceforge.net
2258W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259S: Maintained
2260
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002261LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2262P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002263M: Eric.Moore@lsi.com
2264M: support@lsi.com
2265L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002266L: linux-scsi@vger.kernel.org
2267W: http://www.lsilogic.com/support
2268S: Supported
2269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2271P: Matthew Wilcox
2272M: matthew@wil.cx
2273L: linux-scsi@vger.kernel.org
2274S: Maintained
2275
2276M68K ARCHITECTURE
2277P: Geert Uytterhoeven
2278M: geert@linux-m68k.org
2279P: Roman Zippel
2280M: zippel@linux-m68k.org
2281L: linux-m68k@lists.linux-m68k.org
2282W: http://www.linux-m68k.org/
2283W: http://linux-m68k-cvs.ubb.ca/
2284S: Maintained
2285
2286M68K ON APPLE MACINTOSH
2287P: Joshua Thompson
2288M: funaho@jurai.org
2289W: http://www.mac.linux-m68k.org/
2290L: linux-mac68k@mac.linux-m68k.org
2291S: Maintained
2292
2293M68K ON HP9000/300
2294P: Philip Blundell
2295M: philb@gnu.org
2296W: http://www.tazenda.demon.co.uk/phil/linux-hp
2297S: Maintained
2298
Jiri Benc64a327a2007-05-05 11:47:08 -07002299MAC80211
2300P: Jiri Benc
2301M: jbenc@suse.cz
2302P: Michael Wu
2303M: flamingice@sourmilk.net
2304L: linux-wireless@vger.kernel.org
2305W: http://linuxwireless.org/
2306T: git kernel.org:/pub/scm/linux/kernel/git/jbenc/mac80211.git
2307S: Maintained
2308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309MARVELL YUKON / SYSKONNECT DRIVER
2310P: Mirko Lindner
2311M: mlindner@syskonnect.de
2312P: Ralph Roesler
2313M: rroesler@syskonnect.de
2314W: http://www.syskonnect.com
2315S: Supported
2316
Michael Kerriskfaf16682005-07-31 22:34:47 -07002317MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002318P: Michael Kerrisk
2319M: mtk-manpages@gmx.net
2320W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2321S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002322
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002323MARVELL MV643XX ETHERNET DRIVER
2324P: Dale Farnsworth
2325M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002327M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002328L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002329S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
2331MATROX FRAMEBUFFER DRIVER
2332P: Petr Vandrovec
2333M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002334L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335S: Maintained
2336
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02002337MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2338P: Hans J. Koch
2339M: hjk@linutronix.de
2340L: lm-sensors@lm-sensors.org
2341S: Maintained
2342
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002343MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002344P: Neela Syam Kolli
Sumant Patrobdd0d752007-05-10 07:22:35 -07002345M: megaraidlinux@lsi.com
Jim Cromiece00f852006-11-30 04:49:44 +01002346S: linux-scsi@vger.kernel.org
2347W: http://megaraid.lsilogic.com
2348S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002349
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002350MEMORY MANAGEMENT
2351L: linux-mm@kvack.org
2352L: linux-kernel@vger.kernel.org
2353W: http://www.linux-mm.org
2354S: Maintained
2355
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002356MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357P: David Woodhouse
2358M: dwmw2@infradead.org
2359W: http://www.linux-mtd.infradead.org/
2360L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002361T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362S: Maintained
2363
Artem Bityutskiy48576402007-02-13 17:11:10 +02002364UNSORTED BLOCK IMAGES (UBI)
2365P: Artem Bityutskiy
2366M: dedekind@infradead.org
2367W: http://www.linux-mtd.infradead.org/
2368L: linux-mtd@lists.infradead.org
2369T: git git://git.infradead.org/ubi-2.6.git
2370S: Maintained
2371
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372MICROTEK X6 SCANNER
2373P: Oliver Neukum
2374M: oliver@neukum.name
2375S: Maintained
2376
2377MIPS
2378P: Ralf Baechle
2379M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002380W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002382T: git www.linux-mips.org:/pub/scm/linux.git
2383S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385MISCELLANEOUS MCA-SUPPORT
2386P: James Bottomley
2387M: jejb@steeleye.com
2388L: linux-kernel@vger.kernel.org
2389S: Maintained
2390
2391MODULE SUPPORT
2392P: Rusty Russell
2393M: rusty@rustcorp.com.au
2394L: linux-kernel@vger.kernel.org
2395S: Maintained
2396
2397MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2398P: Stelian Pop
2399M: stelian@popies.net
2400W: http://popies.net/meye/
2401S: Maintained
2402
Pavel Pisac58ff042007-05-16 01:10:41 +02002403MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
2404P: Pavel Pisa
2405M: ppisa@pikron.com
2406L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2407W: http://mmc.drzeus.cx/wiki/Controllers/Freescale/SDHC
2408S: Maintained
2409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410MOUSE AND MISC DEVICES [GENERAL]
2411P: Alessandro Rubini
2412M: rubini@ipvvis.unipv.it
2413L: linux-kernel@vger.kernel.org
2414S: Maintained
2415
Jiri Slabyd7354102006-12-08 02:38:35 -08002416MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2417P: Jiri Slaby
2418M: jirislaby@gmail.com
2419L: linux-kernel@vger.kernel.org
2420S: Maintained
2421
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002422MSI LAPTOP SUPPORT
2423P: Lennart Poettering
2424M: mzxreary@0pointer.de
2425L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2426W: http://0pointer.de/lennart/tchibo.html
2427S: Maintained
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429MTRR AND SIMILAR SUPPORT [i386]
2430P: Richard Gooch
2431M: rgooch@atnf.csiro.au
2432L: linux-kernel@vger.kernel.org
2433W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2434S: Maintained
2435
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002436MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2437P: Pierre Ossman
2438M: drzeus-mmc@drzeus.cx
2439L: linux-kernel@vger.kernel.org
2440S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442MULTISOUND SOUND DRIVER
2443P: Andrew Veliath
2444M: andrewtv@usa.net
2445S: Maintained
2446
Jiri Slabyd7354102006-12-08 02:38:35 -08002447MULTITECH MULTIPORT CARD (ISICOM)
2448P: Jiri Slaby
2449M: jirislaby@gmail.com
2450L: linux-kernel@vger.kernel.org
2451S: Maintained
2452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453NATSEMI ETHERNET DRIVER (DP8381x)
2454P: Tim Hockin
2455M: thockin@hockin.org
2456S: Maintained
2457
2458NCP FILESYSTEM
2459P: Petr Vandrovec
2460M: vandrove@vc.cvut.cz
2461L: linware@sh.cvut.cz
2462S: Maintained
2463
2464NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2465P: James E.J. Bottomley
2466M: James.Bottomley@HansenPartnership.com
2467L: linux-scsi@vger.kernel.org
2468S: Maintained
2469
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002470NETEM NETWORK EMULATOR
2471P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002472M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002473L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002474S: Maintained
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476NETFILTER/IPTABLES/IPCHAINS
2477P: Rusty Russell
2478P: Marc Boucher
2479P: James Morris
2480P: Harald Welte
2481P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002482P: Patrick McHardy
2483M: kaber@trash.net
2484L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002485L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002486L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487W: http://www.netfilter.org/
2488W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489S: Supported
2490
Paul Moore4cc67732006-09-25 15:57:13 -07002491NETLABEL
2492P: Paul Moore
2493M: paul.moore@hp.com
2494W: http://netlabel.sf.net
2495L: netdev@vger.kernel.org
2496S: Supported
2497
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498NETROM NETWORK LAYER
2499P: Ralf Baechle
2500M: ralf@linux-mips.org
2501L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002502W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503S: Maintained
2504
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002505NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506P: Paul Clements
2507M: Paul.Clements@steeleye.com
2508S: Maintained
2509
2510NETWORK DEVICE DRIVERS
2511P: Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002512M: akpm@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513P: Jeff Garzik
2514M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002515L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002516T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517S: Maintained
2518
2519NETWORKING [GENERAL]
2520P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002521M: netdev@vger.kernel.org
2522L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002523W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524S: Maintained
2525
2526NETWORKING [IPv4/IPv6]
2527P: David S. Miller
2528M: davem@davemloft.net
2529P: Alexey Kuznetsov
2530M: kuznet@ms2.inr.ac.ru
2531P: Pekka Savola (ipv6)
2532M: pekkas@netcore.fi
2533P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002534M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535P: Hideaki YOSHIFUJI
2536M: yoshfuji@linux-ipv6.org
2537P: Patrick McHardy
2538M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002539L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002540T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541S: Maintained
2542
John W. Linville29f8f632006-01-18 14:52:48 -08002543NETWORKING [WIRELESS]
2544P: John W. Linville
2545M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002546L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002547T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2548S: Maintained
2549
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002550NETXEN (1/10) GbE SUPPORT
2551P: Amit S. Kale
2552M: amitkale@netxen.com
2553L: netdev@vger.kernel.org
2554W: http://www.netxen.com
2555S: Supported
2556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557IPVS
2558P: Wensong Zhang
2559M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002560P: Simon Horman
2561M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562P: Julian Anastasov
2563M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002564L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565S: Maintained
2566
2567NFS CLIENT
2568P: Trond Myklebust
2569M: trond.myklebust@fys.uio.no
2570L: linux-kernel@vger.kernel.org
2571S: Maintained
2572
2573NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002574P: Jan-Pascal van Best
2575M: janpascal@vanbest.org
2576P: Andreas Mohr
2577M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002578L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579S: Maintained
2580
2581NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2582P: YOKOTA Hiroshi
2583M: yokota@netlab.is.tsukuba.ac.jp
2584W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2585S: Maintained
2586
2587NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2588P: GOTO Masanori
2589M: gotom@debian.or.jp
2590P: YOKOTA Hiroshi
2591M: yokota@netlab.is.tsukuba.ac.jp
2592W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2593S: Maintained
2594
2595NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2596P: Eberhard Moenkeberg
2597M: emoenke@gwdg.de
2598L: linux-kernel@vger.kernel.org
2599S: Maintained
2600
2601NTFS FILESYSTEM
2602P: Anton Altaparmakov
2603M: aia21@cantab.net
2604L: linux-ntfs-dev@lists.sourceforge.net
2605L: linux-kernel@vger.kernel.org
2606W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002607T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608S: Maintained
2609
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002610NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002611P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002612M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002613L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002614S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Ramkrishna Vepa3ef34b82007-03-30 18:42:27 -07002616NETERION (S2IO) Xframe 10GbE DRIVER
2617P: Ramkrishna Vepa
2618M: ram.vepa@neterion.com
2619P: Rastapur Santosh
2620M: santosh.rastapur@neterion.com
2621P: Sivakumar Subramani
2622M: sivakumar.subramani@neterion.com
2623P: Sreenivasa Honnur
2624M: sreenivasa.honnur@neterion.com
2625L: netdev@vger.kernel.org
2626W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/TitleIndex?anonymous
2627S: Supported
2628
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002629OPENCORES I2C BUS DRIVER
2630P: Peter Korsgaard
2631M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002632L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002633S: Maintained
2634
Mark Fashehccd979b2005-12-15 14:31:24 -08002635ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2636P: Mark Fasheh
2637M: mark.fasheh@oracle.com
2638P: Kurt Hackel
2639M: kurt.hackel@oracle.com
2640L: ocfs2-devel@oss.oracle.com
2641W: http://oss.oracle.com/projects/ocfs2/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002642S: Supported
Mark Fashehccd979b2005-12-15 14:31:24 -08002643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644OLYMPIC NETWORK DRIVER
2645P: Peter De Shrijver
2646M: p2@ace.ulyssis.student.kuleuven.ac.be
2647P: Mike Phillips
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002648M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002649L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650L: linux-tr@linuxtr.net
2651W: http://www.linuxtr.net
2652S: Maintained
2653
Harald Weltec1986ee2005-11-13 16:06:29 -08002654OMNIKEY CARDMAN 4000 DRIVER
2655P: Harald Welte
2656M: laforge@gnumonks.org
2657S: Maintained
2658
Harald Welte77c44ab2005-11-13 16:06:26 -08002659OMNIKEY CARDMAN 4040 DRIVER
2660P: Harald Welte
2661M: laforge@gnumonks.org
2662S: Maintained
2663
Jonathan Corbet77d51402007-03-22 19:44:17 -03002664OMNIVISION OV7670 SENSOR DRIVER
2665P: Jonathan Corbet
2666M: corbet@lwn.net
2667L: video4linux-list@redhat.com
2668S: Maintained
2669
Thomas Gleixner431bca72007-05-02 09:31:35 +02002670ONENAND FLASH DRIVER
2671P: Kyungmin Park
2672M: kyungmin.park@samsung.com
2673L: linux-mtd@lists.infradead.org
2674S: Maintained
2675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676ONSTREAM SCSI TAPE DRIVER
2677P: Willem Riede
2678M: osst@riede.org
2679L: osst-users@lists.sourceforge.net
2680L: linux-scsi@vger.kernel.org
2681S: Maintained
2682
2683OPL3-SA2, SA3, and SAx DRIVER
2684P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002685M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686L: linux-sound@vger.kernel.org
2687S: Maintained
2688
2689OPROFILE
2690P: Philippe Elie
2691M: phil.el@wanadoo.fr
2692L: oprofile-list@lists.sf.net
2693S: Maintained
2694
2695ORINOCO DRIVER
2696P: Pavel Roskin
2697M: proski@gnu.org
2698P: David Gibson
2699M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07002700L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07002701L: orinoco-users@lists.sourceforge.net
2702L: orinoco-devel@lists.sourceforge.net
2703W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704S: Maintained
2705
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002706PA SEMI ETHERNET DRIVER
2707P: Olof Johansson
2708M: olof@lixom.net
2709L: netdev@vger.kernel.org
2710S: Maintained
2711
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002712PA SEMI SMBUS DRIVER
2713P: Olof Johansson
2714M: olof@lixom.net
2715L: i2c@lm-sensors.org
2716S: Maintained
2717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07002719L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08002720S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2723P: Tim Waugh
2724M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07002725L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726W: http://www.torque.net/linux-pp.html
2727S: Maintained
2728
2729PARISC ARCHITECTURE
2730P: Matthew Wilcox
2731M: matthew@wil.cx
2732P: Grant Grundler
2733M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002734P: Kyle McMartin
2735M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736L: parisc-linux@parisc-linux.org
2737W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002738T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2739T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740S: Maintained
2741
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02002742PARAVIRT_OPS INTERFACE
2743P: Jeremy Fitzhardinge
2744M: jeremy@xensource.com
2745P: Chris Wright
2746M: chrisw@sous-sol.org
2747P: Zachary Amsden
2748M: zach@vmware.com
2749P: Rusty Russell
2750M: rusty@rustcorp.com.au
2751L: virtualization@lists.osdl.org
2752L: linux-kernel@vger.kernel.org
2753S: Supported
2754
Jim Cromie1662d322006-10-06 00:43:59 -07002755PC87360 HARDWARE MONITORING DRIVER
2756P: Jim Cromie
2757M: jim.cromie@gmail.com
2758L: lm-sensors@lm-sensors.org
2759S: Maintained
2760
2761PC8736x GPIO DRIVER
2762P: Jim Cromie
2763M: jim.cromie@gmail.com
2764S: Maintained
2765
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002766PCI ERROR RECOVERY
2767P: Linas Vepstas
2768M: linas@austin.ibm.com
2769L: linux-kernel@vger.kernel.org
2770L: linux-pci@atrey.karlin.mff.cuni.cz
2771S: Supported
2772
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2774P: Thomas Sailer
2775M: sailer@ife.ee.ethz.ch
2776L: linux-sound@vger.kernel.org
2777W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2778S: Maintained
2779
2780PCI SUBSYSTEM
2781P: Greg Kroah-Hartman
2782M: gregkh@suse.de
2783L: linux-kernel@vger.kernel.org
2784L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002785T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786S: Supported
2787
2788PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002789P: Kristen Carlson Accardi
2790M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791S: Supported
2792
2793PCI HOTPLUG COMPAQ DRIVER
2794P: Greg Kroah-Hartman
2795M: greg@kroah.com
2796S: Maintained
2797
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002798PCIE HOTPLUG DRIVER
2799P: Kristen Carlson Accardi
2800M: kristen.c.accardi@intel.com
2801L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002802S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002805P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002806L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002808T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002809S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
2811PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002812P: Don Fry
2813M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002814L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815S: Maintained
2816
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002817PER-TASK DELAY ACCOUNTING
2818P: Shailabh Nagar
2819M: nagar@watson.ibm.com
2820L: linux-kernel@vger.kernel.org
2821S: Maintained
2822
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002823PERSONALITY HANDLING
2824P: Christoph Hellwig
2825M: hch@infradead.org
2826L: linux-abi-devel@lists.sourceforge.net
2827S: Maintained
2828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829PHRAM MTD DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02002830P: Jörn Engel
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831M: joern@wh.fh-wedel.de
2832L: linux-mtd@lists.infradead.org
2833S: Maintained
2834
Peter Osterlund249a6772005-09-27 21:45:30 -07002835PKTCDVD DRIVER
2836P: Peter Osterlund
2837M: petero2@telia.com
2838L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002839S: Maintained
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841POSIX CLOCKS and TIMERS
2842P: George Anzinger
2843M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002844L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845S: Supported
2846
Eugene Surovegin24682972005-10-14 03:00:53 -07002847POWERPC 4xx EMAC DRIVER
2848P: Eugene Surovegin
2849M: ebs@ebshome.net
2850W: http://kernel.ebshome.net/emac/
2851L: linuxppc-embedded@ozlabs.org
2852L: netdev@vger.kernel.org
2853S: Maintained
2854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855PNP SUPPORT
2856P: Adam Belay
2857M: ambx1@neo.rr.com
2858S: Maintained
2859
Vitaly Wool999445d2007-01-04 13:07:03 +01002860PNXxxxx I2C DRIVER
2861P: Vitaly Wool
2862M: vitalywool@gmail.com
2863L: i2c@lm-sensors.org
2864S: Maintained
2865
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866PPP PROTOCOL DRIVERS AND COMPRESSORS
2867P: Paul Mackerras
2868M: paulus@samba.org
2869L: linux-ppp@vger.kernel.org
2870S: Maintained
2871
2872PPP OVER ATM (RFC 2364)
2873P: Mitchell Blank Jr
2874M: mitch@sfgoth.com
2875S: Maintained
2876
2877PPP OVER ETHERNET
2878P: Michal Ostrowski
2879M: mostrows@speakeasy.net
2880S: Maintained
2881
2882PREEMPTIBLE KERNEL
2883P: Robert Love
2884M: rml@tech9.net
2885L: linux-kernel@vger.kernel.org
2886L: kpreempt-tech@lists.sourceforge.net
2887W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2888S: Supported
2889
2890PRISM54 WIRELESS DRIVER
2891P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002892M: developers@islsm.org
Johannes Berg724c6b32007-04-23 12:18:20 -07002893L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894W: http://prism54.org
2895S: Maintained
2896
2897PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2898P: Peter Denison
2899M: promise@pnd-pc.demon.co.uk
2900W: http://www.pnd-pc.demon.co.uk/promise/
2901S: Maintained
2902
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002903PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2904P: Mikael Pettersson
2905M: mikpe@it.uu.se
2906L: linux-ide@vger.kernel.org
2907S: Maintained
2908
Geoff Levandf58a9d12006-11-23 00:46:51 +01002909PS3 PLATFORM SUPPORT
2910P: Geoff Levand
2911M: geoffrey.levand@am.sony.com
2912L: linuxppc-dev@ozlabs.org
2913L: cbe-oss-dev@ozlabs.org
2914S: Supported
2915
Michael Krufky83202042006-07-03 00:24:18 -07002916PVRUSB2 VIDEO4LINUX DRIVER
2917P: Mike Isely
2918M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03002919L: pvrusb2@isely.net (subscribers-only)
Michael Krufky83202042006-07-03 00:24:18 -07002920L: video4linux-list@redhat.com
2921W: http://www.isely.net/pvrusb2/
2922S: Maintained
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924PXA2xx SUPPORT
2925P: Nicolas Pitre
2926M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002927L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928S: Maintained
2929
Pierre Ossman272f1332007-05-14 21:25:26 +02002930PXA MMCI DRIVER
2931S: Orphan
2932
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933QLOGIC QLA2XXX FC-SCSI DRIVER
2934P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002935M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936L: linux-scsi@vger.kernel.org
2937S: Supported
2938
Ron Mercer5a4faa82006-07-25 00:40:21 -07002939QLOGIC QLA3XXX NETWORK DRIVER
2940P: Ron Mercer
2941M: linux-driver@qlogic.com
2942L: netdev@vger.kernel.org
2943S: Supported
2944
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945QNX4 FILESYSTEM
2946P: Anders Larsen
2947M: al@alarsen.net
2948L: linux-kernel@vger.kernel.org
2949W: http://www.alarsen.net/linux/qnx4fs/
2950S: Maintained
2951
2952RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002953P: Benjamin Herrenschmidt
2954M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002955L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956S: Maintained
2957
2958RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002959P: Paul Mackerras
2960M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002961L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962S: Maintained
2963
2964RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2965P: Corey Thomas
2966M: corey@world.std.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002967L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968S: Maintained
2969
Matt Mackall9e95ce22005-04-16 15:25:56 -07002970RANDOM NUMBER DRIVER
2971P: Matt Mackall
2972M: mpm@selenic.com
2973S: Maintained
2974
Matt Porter394b7012005-11-07 01:00:15 -08002975RAPIDIO SUBSYSTEM
2976P: Matt Porter
2977M: mporter@kernel.crashing.org
2978L: linux-kernel@vger.kernel.org
2979S: Maintained
2980
Josh Triplett595182b2006-10-04 02:17:21 -07002981READ-COPY UPDATE (RCU)
2982P: Dipankar Sarma
2983M: dipankar@in.ibm.com
2984W: http://www.rdrop.com/users/paulmck/rclock/
2985L: linux-kernel@vger.kernel.org
2986S: Supported
2987
2988RCUTORTURE MODULE
2989P: Josh Triplett
2990M: josh@freedesktop.org
2991L: linux-kernel@vger.kernel.org
2992S: Maintained
2993
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994REAL TIME CLOCK DRIVER
2995P: Paul Gortmaker
2996M: p_gortmaker@yahoo.com
2997L: linux-kernel@vger.kernel.org
2998S: Maintained
2999
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08003000REAL TIME CLOCK (RTC) SUBSYSTEM
3001P: Alessandro Zummo
3002M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08003003L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08003004S: Maintained
3005
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006REISERFS FILE SYSTEM
3007P: Hans Reiser
3008M: reiserfs-dev@namesys.com
3009L: reiserfs-list@namesys.com
3010W: http://www.namesys.com
3011S: Supported
3012
3013ROCKETPORT DRIVER
3014P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015W: http://www.comtrol.com
3016S: Maintained
3017
3018ROSE NETWORK LAYER
3019P: Ralf Baechle
3020M: ralf@linux-mips.org
3021L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02003022W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023S: Maintained
3024
3025RISCOM8 DRIVER
3026S: Orphan
3027
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003028S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003029P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08003030M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08003031L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01003032S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034S390
3035P: Martin Schwidefsky
3036M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02003037P: Heiko Carstens
3038M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039M: 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 NETWORK DRIVERS
3045P: Frank Pavlic
3046M: fpavlic@de.ibm.com
3047M: 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/
3050S: Supported
3051
3052S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02003053P: Swen Schillig
3054M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08003055M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01003056L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003057W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058S: Supported
3059
3060SAA7146 VIDEO4LINUX-2 DRIVER
3061P: Michael Hunold
3062M: michael@mihu.de
3063W: http://www.mihu.de/linux/saa7146
3064S: Maintained
3065
3066SBPCD CDROM DRIVER
3067P: Eberhard Moenkeberg
3068M: emoenke@gwdg.de
3069L: linux-kernel@vger.kernel.org
3070S: Maintained
3071
3072SC1200 WDT DRIVER
3073P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07003074M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075S: Maintained
3076
3077SCHEDULER
3078P: Ingo Molnar
3079M: mingo@elte.hu
3080P: Robert Love [the preemptible kernel bits]
3081M: rml@tech9.net
3082L: linux-kernel@vger.kernel.org
3083S: Maintained
3084
3085SCSI CDROM DRIVER
3086P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003087M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088L: linux-scsi@vger.kernel.org
3089W: http://www.kernel.dk
3090S: Maintained
3091
3092SCSI SG DRIVER
3093P: Doug Gilbert
3094M: dgilbert@interlog.com
3095L: linux-scsi@vger.kernel.org
3096W: http://www.torque.net/sg
3097S: Maintained
3098
3099SCSI SUBSYSTEM
3100P: James E.J. Bottomley
3101M: James.Bottomley@SteelEye.com
3102L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003103T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104S: Maintained
3105
3106SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02003107P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108M: Kai.Makisara@kolumbus.fi
3109L: linux-scsi@vger.kernel.org
3110S: Maintained
3111
3112SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003113P: Vlad Yasevich
3114M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01003115P: Sridhar Samudrala
3116M: sri@us.ibm.com
3117L: lksctp-developers@lists.sourceforge.net
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003118W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01003119S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
3121SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07003122P: Jim Cromie
3123M: jim.cromie@gmail.com
3124S: Odd Fixes
3125
3126SCx200 GPIO DRIVER
3127P: Jim Cromie
3128M: jim.cromie@gmail.com
3129S: Maintained
3130
3131SCx200 HRT CLOCKSOURCE DRIVER
3132P: Jim Cromie
3133M: jim.cromie@gmail.com
3134S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
3136SECURITY CONTACT
3137P: Security Officers
3138M: security@kernel.org
3139S: Supported
3140
3141SELINUX SECURITY MODULE
3142P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08003143M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04003145M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05003146P: Eric Paris
3147M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148L: linux-kernel@vger.kernel.org (kernel issues)
Stephen Smalley588a3152007-02-23 09:20:09 -05003149L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150W: http://www.nsa.gov/selinux
3151S: Supported
3152
Jiri Slabycef2cf02007-05-08 00:31:45 -07003153SENSABLE PHANTOM
3154P: Jiri Slaby
3155M: jirislaby@gmail.com
3156S: Maintained
3157
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158SERIAL ATA (SATA) SUBSYSTEM:
3159P: Jeff Garzik
3160M: jgarzik@pobox.com
3161L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003162T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163S: Supported
3164
3165SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
3166P: Pat Gefre
3167M: pfg@sgi.com
3168L: linux-ia64@vger.kernel.org
3169S: Supported
3170
3171SGI VISUAL WORKSTATION 320 AND 540
3172P: Andrey Panin
3173M: pazke@donpac.ru
3174L: linux-visws-devel@lists.sf.net
3175W: http://linux-visws.sf.net
3176S: Maintained for 2.6.
3177
3178SIMTEC EB110ATX (Chalice CATS)
3179P: Ben Dooks
3180P: Vincent Sanders
3181M: support@simtec.co.uk
3182W: http://www.simtec.co.uk/products/EB110ATX/
3183S: Supported
3184
3185SIMTEC EB2410ITX (BAST)
3186P: Ben Dooks
3187P: Vincent Sanders
3188M: support@simtec.co.uk
3189W: http://www.simtec.co.uk/products/EB2410ITX/
3190S: Supported
3191
Francois Romieu92aab3c2005-07-30 13:11:18 +02003192SIS 190 ETHERNET DRIVER
3193P: Francois Romieu
3194M: romieu@fr.zoreil.com
3195L: netdev@vger.kernel.org
3196S: Maintained
3197
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198SIS 5513 IDE CONTROLLER DRIVER
3199P: Lionel Bouton
3200M: Lionel.Bouton@inet6.fr
3201W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3202W: http://gyver.homeip.net/sis5513/index.html
3203S: Maintained
3204
3205SIS 900/7016 FAST ETHERNET DRIVER
3206P: Daniele Venzano
3207M: venza@brownhat.org
3208W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003209L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210S: Maintained
3211
3212SIS FRAMEBUFFER DRIVER
3213P: Thomas Winischhofer
3214M: thomas@winischhofer.net
3215W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003216S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
3218SIS USB2VGA DRIVER
3219P: Thomas Winischhofer
3220M: thomas@winischhofer.net
3221W: http://www.winischhofer.at/linuxsisusbvga.shtml
3222S: Maintained
3223
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224SMC91x ETHERNET DRIVER
3225P: Nicolas Pitre
3226M: nico@cam.org
3227S: Maintained
3228
Daniel Drake8f0f8502006-07-18 22:00:25 +01003229SOFTMAC LAYER (IEEE 802.11)
3230P: Johannes Berg
3231M: johannes@sipsolutions.net
3232P: Joe Jezak
3233M: josejx@gentoo.org
3234P: Daniel Drake
3235M: dsd@gentoo.org
3236W: http://softmac.sipsolutions.net/
Johannes Berg724c6b32007-04-23 12:18:20 -07003237L: linux-wireless@vger.kernel.org
Daniel Drake8f0f8502006-07-18 22:00:25 +01003238S: Maintained
3239
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240SOFTWARE RAID (Multiple Disks) SUPPORT
3241P: Ingo Molnar
3242M: mingo@redhat.com
3243P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003244M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003246S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
3248SOFTWARE SUSPEND:
3249P: Pavel Machek
3250M: pavel@suse.cz
David Brownellf318a632007-04-23 14:41:06 -07003251L: linux-pm@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252S: Maintained
3253
3254SONIC NETWORK DRIVER
3255P: Thomas Bogendoerfer
3256M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003257L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258S: Maintained
3259
3260SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01003261P: Mattia Dongili
3262M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01003263L: linux-acpi@vger.kernel.org
3264W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265S: Maintained
3266
3267SOUND
3268P: Jaroslav Kysela
3269M: perex@suse.cz
Takashi Iwai82622042007-04-16 12:32:52 +02003270L: alsa-devel@alsa-project.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271S: Maintained
3272
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003273SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3274P: Liam Girdwood
3275M: liam.girdwood@wolfsonmicro.com
Takashi Iwai82622042007-04-16 12:32:52 +02003276L: alsa-devel@alsa-project.org (subscribers-only)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003277S: Supported
3278
Kumar Gala025c3982006-04-02 16:05:54 -05003279SPI SUBSYSTEM
3280P: David Brownell
3281M: dbrownell@users.sourceforge.net
3282L: spi-devel-general@lists.sourceforge.net
3283S: Maintained
3284
Steven Rostedt855f46a2006-08-05 12:14:50 -07003285STABLE BRANCH:
3286P: Greg Kroah-Hartman
3287M: greg@kroah.com
3288P: Chris Wright
3289M: chrisw@sous-sol.org
3290L: stable@kernel.org
3291S: Maintained
3292
Kylene Hall1c72d462005-05-01 08:59:13 -07003293TPM DEVICE DRIVER
3294P: Kylene Hall
3295M: kjhall@us.ibm.com
3296W: http://tpmdd.sourceforge.net
Marcel Selhorstd3a7b6d2007-03-16 13:38:31 -08003297P: Marcel Selhorst
3298M: tpm@selhorst.net
3299W: http://www.prosec.rub.de/tpm/
Stephen Rothwell3bd2aad2007-05-15 01:41:36 -07003300L: tpmdd-devel@lists.sourceforge.net
Kylene Hall1c72d462005-05-01 08:59:13 -07003301S: Maintained
3302
Mark Gross1a80ba82005-10-30 15:02:55 -08003303Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003304P: Mark Gross
3305M: mark.gross@intel.com
3306S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003307
Chris Zankel48b415c2005-06-23 22:01:07 -07003308TENSILICA XTENSA PORT (xtensa):
3309P: Chris Zankel
3310M: chris@zankel.net
3311S: Maintained
3312
Henrique de Moraes Holschuh756970a2007-03-29 01:58:44 -03003313THINKPAD ACPI EXTRAS DRIVER
3314P: Henrique de Moraes Holschuh
3315M: ibm-acpi@hmh.eng.br
3316L: ibm-acpi-devel@lists.sourceforge.net
3317W: http://ibm-acpi.sourceforge.net
3318W: http://thinkwiki.org/wiki/Ibm-acpi
3319T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
3320S: Maintained
3321
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322UltraSPARC (sparc64):
3323P: David S. Miller
3324M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003326T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327S: Maintained
3328
3329SHARP LH SUPPORT (LH7952X & LH7A40X)
3330P: Marc Singer
3331M: elf@buici.com
3332W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003333L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334S: Maintained
3335
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003336SHPC HOTPLUG DRIVER
3337P: Kristen Carlson Accardi
3338M: kristen.c.accardi@intel.com
3339L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003340S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003341
Pierre Ossmand129bce2006-03-24 03:18:17 -08003342SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3343P: Pierre Ossman
3344M: drzeus-sdhci@drzeus.cx
3345L: sdhci-devel@list.drzeus.cx
3346W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3347S: Maintained
3348
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003349SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3350P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003351M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003352L: netdev@vger.kernel.org
3353S: Maintained
3354
Chris Boot1a87d942006-07-10 04:45:34 -07003355SOEKRIS NET48XX LED SUPPORT
3356P: Chris Boot
3357M: bootc@bootc.net
3358S: Maintained
3359
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360SPARC (sparc32):
3361P: William L. Irwin
3362M: wli@holomorphy.com
3363L: sparclinux@vger.kernel.org
3364S: Maintained
3365
3366SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3367P: Roger Wolff
3368M: R.E.Wolff@BitWizard.nl
3369L: linux-kernel@vger.kernel.org ?
3370S: Supported
3371
Jim Lewis2752e402006-09-29 02:01:19 -07003372SPIDERNET NETWORK DRIVER for CELL
Linas Vepstasfa302482007-02-20 16:45:27 -06003373P: Linas Vepstas
3374M: linas@austin.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07003375L: netdev@vger.kernel.org
3376S: Supported
3377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378SRM (Alpha) environment access
3379P: Jan-Benedict Glaw
3380M: jbglaw@lug-owl.de
3381L: linux-kernel@vger.kernel.org
3382S: Maintained
3383
3384STARFIRE/DURALAN NETWORK DRIVER
3385P: Ion Badulescu
3386M: ionut@cs.columbia.edu
3387S: Maintained
3388
3389STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3390W: http://mosquitonet.Stanford.EDU/strip.html
3391S: Unsupported ?
3392
3393STRADIS MPEG-2 DECODER DRIVER
3394P: Nathan Laredo
3395M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396W: http://www.stradis.com/
3397S: Maintained
3398
3399SUPERH (sh)
3400P: Paul Mundt
3401M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003402L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404S: Maintained
3405
3406SUPERH64 (sh64)
3407P: Paul Mundt
3408M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409L: linuxsh-shmedia-dev@lists.sourceforge.net
3410W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411S: Maintained
3412
3413SUN3/3X
3414P: Sam Creasey
3415M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416W: http://sammy.net/sun3/
3417S: Maintained
3418
3419SVGA HANDLING
3420P: Martin Mares
3421M: mj@ucw.cz
3422L: linux-video@atrey.karlin.mff.cuni.cz
3423S: Maintained
3424
3425SYSV FILESYSTEM
3426P: Christoph Hellwig
3427M: hch@infradead.org
3428S: Maintained
3429
Stephen Hemminger781b4562006-07-10 20:25:29 -07003430TC CLASSIFIER
3431P: Jamal Hadi Salim
3432M: hadi@cyberus.ca
3433L: netdev@vger.kernel.org
3434S: Maintained
3435
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003436TCP LOW PRIORITY MODULE
3437P: Wong Hoi Sing, Edison
3438M: hswong3i@gmail.com
3439P: Hung Hing Lun, Mike
3440M: hlhung3i@gmail.com
3441W: http://tcp-lp-mod.sourceforge.net/
3442S: Maintained
3443
Alex Dubov4020f2d2006-10-04 02:15:37 -07003444TI FLASH MEDIA INTERFACE DRIVER
3445P: Alex Dubov
3446M: oakad@yahoo.com
3447S: Maintained
3448
Syed Khasim9f9c24f2007-05-16 01:07:22 +02003449TI OMAP MMC INTERFACE DRIVER
3450P: Carlos Aguiar, Anderson Briglia and Syed Khasim
3451M: linux-omap-open-source@linux.omap.com
3452W: http://linux.omap.com
3453W: http://www.muru.com/linux/omap/
3454S: Maintained
3455
Michael Buesch844dd052006-06-26 00:24:59 -07003456TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3457P: Deepak Saxena
3458M: dsaxena@plexity.net
3459S: Maintained
3460
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003461TASKSTATS STATISTICS INTERFACE
3462P: Shailabh Nagar
3463M: nagar@watson.ibm.com
3464L: linux-kernel@vger.kernel.org
3465S: Maintained
3466
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003468P: Romain Lievin
3469M: roms@lpg.ticalc.org
3470S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Per Lidene86eaa32006-01-12 16:45:18 +01003472TIPC NETWORK LAYER
3473P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003474M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003475P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003476M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003477P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003478M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003479L: tipc-discussion@lists.sourceforge.net
3480W: http://tipc.sourceforge.net/
3481W: http://tipc.cslab.ericsson.net/
3482T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3483S: Maintained
3484
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485TLAN NETWORK DRIVER
3486P: Samuel Chessman
3487M: chessman@tux.org
3488L: tlan-devel@lists.sourceforge.net
3489W: http://sourceforge.net/projects/tlan/
3490S: Maintained
3491
3492TOKEN-RING NETWORK DRIVER
3493P: Mike Phillips
3494M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003495L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496L: linux-tr@linuxtr.net
3497W: http://www.linuxtr.net
3498S: Maintained
3499
3500TOSHIBA ACPI EXTRAS DRIVER
3501P: John Belmonte
3502M: toshiba_acpi@memebeam.org
3503W: http://memebeam.org/toys/ToshibaAcpiDriver
3504S: Maintained
3505
3506TOSHIBA SMM DRIVER
3507P: Jonathan Buzzard
3508M: jonathan@buzzard.org.uk
3509L: tlinux-users@tce.toshiba-dme.co.jp
3510W: http://www.buzzard.org.uk/toshiba/
3511S: Maintained
3512
3513TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3514P: Muli Ben-Yehuda
3515M: mulix@mulix.org
3516L: linux-kernel@vger.kernel.org
3517S: Maintained
3518
3519TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003520P: Adrian Bunk
3521M: trivial@kernel.org
3522L: linux-kernel@vger.kernel.org
3523W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3524T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3525S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
3527TMS380 TOKEN-RING NETWORK DRIVER
3528P: Adam Fritzler
3529M: mid@auk.cx
3530L: linux-tr@linuxtr.net
3531W: http://www.auk.cx/tms380tr/
3532S: Maintained
3533
3534TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003535P: Valerie Henson
3536M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537L: tulip-users@lists.sourceforge.net
3538W: http://sourceforge.net/projects/tulip/
3539S: Maintained
3540
3541TUN/TAP driver
3542P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003543M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544L: vtun@office.satix.net
3545W: http://vtun.sourceforge.net/tun
3546S: Maintained
3547
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003548TURBOCHANNEL SUBSYSTEM
3549P: Maciej W. Rozycki
3550M: macro@linux-mips.org
3551S: Maintained
3552
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553U14-34F SCSI DRIVER
3554P: Dario Ballabio
3555M: ballabio_dario@emc.com
3556L: linux-scsi@vger.kernel.org
3557S: Maintained
3558
3559UDF FILESYSTEM
3560P: Ben Fennema
3561M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562W: http://linux-udf.sourceforge.net
3563S: Maintained
3564
3565UNIFORM CDROM DRIVER
3566P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003567M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568L: linux-kernel@vger.kernel.org
3569W: http://www.kernel.dk
3570S: Maintained
3571
3572USB ACM DRIVER
3573P: Oliver Neukum
3574M: oliver@neukum.name
3575L: linux-usb-users@lists.sourceforge.net
3576L: linux-usb-devel@lists.sourceforge.net
3577S: Maintained
3578
3579USB BLOCK DRIVER (UB ub)
3580P: Pete Zaitcev
3581M: zaitcev@redhat.com
3582L: linux-kernel@vger.kernel.org
3583L: linux-usb-devel@lists.sourceforge.net
3584S: Supported
3585
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586USB CDC ETHERNET DRIVER
3587P: Greg Kroah-Hartman
3588M: greg@kroah.com
3589L: linux-usb-users@lists.sourceforge.net
3590L: linux-usb-devel@lists.sourceforge.net
3591S: Maintained
3592W: http://www.kroah.com/linux-usb/
3593
Peter Korsgaardd0374f42007-02-16 17:03:54 +01003594USB DAVICOM DM9601 DRIVER
3595P: Peter Korsgaard
3596M: jacmet@sunsite.dk
3597L: linux-usb-devel@lists.sourceforge.net
3598W: http://www.linux-usb.org/usbnet
3599S: Maintained
3600
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601USB EHCI DRIVER
3602P: David Brownell
3603M: dbrownell@users.sourceforge.net
3604L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003605S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606
Luca Risolia7ce08c92006-01-11 02:06:59 +00003607USB ET61X[12]51 DRIVER
3608P: Luca Risolia
3609M: luca.risolia@studio.unibo.it
3610L: linux-usb-devel@lists.sourceforge.net
3611L: video4linux-list@redhat.com
3612W: http://www.linux-projects.org
3613S: Maintained
3614
David Brownell69ae9e32006-11-14 02:03:31 -08003615USB GADGET/PERIPHERAL SUBSYSTEM
3616P: David Brownell
3617M: dbrownell@users.sourceforge.net
3618L: linux-usb-devel@lists.sourceforge.net
3619W: http://www.linux-usb.org/gadget
3620S: Maintained
3621
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622USB HID/HIDBP DRIVERS
Jiri Kosina641266f2007-01-15 09:56:21 +01003623P: Jiri Kosina
3624M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625L: linux-usb-devel@lists.sourceforge.net
Jiri Kosinaa4dff392007-02-27 17:40:09 +01003626T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627S: Maintained
3628
3629USB HUB DRIVER
3630P: Johannes Erdfelt
3631M: johannes@erdfelt.com
3632L: linux-usb-users@lists.sourceforge.net
3633L: linux-usb-devel@lists.sourceforge.net
3634S: Maintained
3635
Olav Kongas959eea22005-11-03 17:38:14 +02003636USB ISP116X DRIVER
3637P: Olav Kongas
3638M: ok@artecdesign.ee
3639L: linux-usb-devel@lists.sourceforge.net
3640S: Maintained
3641
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642USB KAWASAKI LSI DRIVER
3643P: Oliver Neukum
3644M: oliver@neukum.name
3645L: linux-usb-users@lists.sourceforge.net
3646L: linux-usb-devel@lists.sourceforge.net
3647S: Maintained
3648
3649USB MASS STORAGE DRIVER
3650P: Matthew Dharm
3651M: mdharm-usb@one-eyed-alien.net
3652L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003653L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654S: Maintained
3655W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3656
3657USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003658P: David Brownell
3659M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660L: linux-usb-users@lists.sourceforge.net
3661L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003662S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663
Matthias Urlichsba460e42005-07-14 00:33:47 -07003664USB OPTION-CARD DRIVER
3665P: Matthias Urlichs
3666M: smurf@smurf.noris.de
3667L: linux-usb-devel@lists.sourceforge.net
3668S: Maintained
3669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670USB OV511 DRIVER
3671P: Mark McClelland
3672M: mmcclell@bigfoot.com
3673L: linux-usb-users@lists.sourceforge.net
3674L: linux-usb-devel@lists.sourceforge.net
3675W: http://alpha.dyndns.org/ov511/
3676S: Maintained
3677
3678USB PEGASUS DRIVER
3679P: Petko Manolov
3680M: petkan@users.sourceforge.net
3681L: linux-usb-users@lists.sourceforge.net
3682L: linux-usb-devel@lists.sourceforge.net
3683W: http://pegasus2.sourceforge.net/
3684S: Maintained
3685
3686USB PRINTER DRIVER
3687P: Vojtech Pavlik
3688M: vojtech@suse.cz
3689L: linux-usb-users@lists.sourceforge.net
3690L: linux-usb-devel@lists.sourceforge.net
3691S: Maintained
3692
3693USB RTL8150 DRIVER
3694P: Petko Manolov
3695M: petkan@users.sourceforge.net
3696L: linux-usb-users@lists.sourceforge.net
3697L: linux-usb-devel@lists.sourceforge.net
3698W: http://pegasus2.sourceforge.net/
3699S: Maintained
3700
3701USB SE401 DRIVER
3702P: Jeroen Vreeken
3703M: pe1rxq@amsat.org
3704L: linux-usb-users@lists.sourceforge.net
3705L: linux-usb-devel@lists.sourceforge.net
3706W: http://www.chello.nl/~j.vreeken/se401/
3707S: Maintained
3708
3709USB SERIAL CYBERJACK DRIVER
3710P: Matthias Bruestle and Harald Welte
3711M: support@reiner-sct.com
3712W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3713S: Maintained
3714
3715USB SERIAL DIGI ACCELEPORT DRIVER
3716P: Peter Berger and Al Borchers
3717M: pberger@brimson.com
3718M: alborchers@steinerpoint.com
3719L: linux-usb-users@lists.sourceforge.net
3720L: linux-usb-devel@lists.sourceforge.net
3721S: Maintained
3722
3723USB SERIAL DRIVER
3724P: Greg Kroah-Hartman
3725M: gregkh@suse.de
3726L: linux-usb-users@lists.sourceforge.net
3727L: linux-usb-devel@lists.sourceforge.net
3728S: Supported
3729
3730USB SERIAL BELKIN F5U103 DRIVER
3731P: William Greathouse
3732M: wgreathouse@smva.com
3733L: linux-usb-users@lists.sourceforge.net
3734L: linux-usb-devel@lists.sourceforge.net
3735S: Maintained
3736
3737USB SERIAL CYPRESS M8 DRIVER
3738P: Lonnie Mendez
3739M: dignome@gmail.com
3740L: linux-usb-users@lists.sourceforge.net
3741L: linux-usb-devel@lists.sourceforge.net
3742S: Maintained
3743W: http://geocities.com/i0xox0i
3744W: http://firstlight.net/cvs
3745
3746USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3747L: linux-usb-users@lists.sourceforge.net
3748L: linux-usb-devel@lists.sourceforge.net
3749S: Maintained
3750
3751USB AUERSWALD DRIVER
3752P: Wolfgang Muees
3753M: wolfgang@iksw-muees.de
3754L: linux-usb-users@lists.sourceforge.net
3755L: linux-usb-devel@lists.sourceforge.net
3756S: Maintained
3757
3758USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3759P: Gary Brubaker
3760M: xavyer@ix.netcom.com
3761L: linux-usb-users@lists.sourceforge.net
3762L: linux-usb-devel@lists.sourceforge.net
3763S: Maintained
3764
3765USB SERIAL KEYSPAN DRIVER
3766P: Greg Kroah-Hartman
3767M: greg@kroah.com
3768L: linux-usb-users@lists.sourceforge.net
3769L: linux-usb-devel@lists.sourceforge.net
3770W: http://www.kroah.com/linux/
3771S: Maintained
3772
3773USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04003774P: Support Department
3775M: support@connecttech.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776L: linux-usb-users@lists.sourceforge.net
3777L: linux-usb-devel@lists.sourceforge.net
3778W: http://www.connecttech.com
3779S: Supported
3780
Luca Risoliaf423b9a2007-03-26 16:12:04 -03003781USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782P: Luca Risolia
3783M: luca.risolia@studio.unibo.it
3784L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003785L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786W: http://www.linux-projects.org
3787S: Maintained
3788
3789USB SUBSYSTEM
3790P: Greg Kroah-Hartman
3791M: gregkh@suse.de
3792L: linux-usb-users@lists.sourceforge.net
3793L: linux-usb-devel@lists.sourceforge.net
3794W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003795T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796S: Supported
3797
3798USB UHCI DRIVER
3799P: Alan Stern
3800M: stern@rowland.harvard.edu
3801L: linux-usb-users@lists.sourceforge.net
3802L: linux-usb-devel@lists.sourceforge.net
3803S: Maintained
3804
David Brownell69ae9e32006-11-14 02:03:31 -08003805USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806P: David Brownell
3807M: dbrownell@users.sourceforge.net
3808L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003809W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810S: Maintained
3811
3812USB W996[87]CF DRIVER
3813P: Luca Risolia
3814M: luca.risolia@studio.unibo.it
3815L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003816L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817W: http://www.linux-projects.org
3818S: Maintained
3819
Luca Risolia60f78052006-02-06 16:29:35 +00003820USB ZC0301 DRIVER
3821P: Luca Risolia
3822M: luca.risolia@studio.unibo.it
3823L: linux-usb-devel@lists.sourceforge.net
3824L: video4linux-list@redhat.com
3825W: http://www.linux-projects.org
3826S: Maintained
3827
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828USB ZD1201 DRIVER
3829P: Jeroen Vreeken
3830M: pe1rxq@amsat.org
3831L: linux-usb-users@lists.sourceforge.net
3832L: linux-usb-devel@lists.sourceforge.net
3833W: http://linux-lc100020.sourceforge.net
3834S: Maintained
3835
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003836USB ZR364XX DRIVER
3837P: Antoine Jacquet
3838M: royale@zerezo.com
3839L: linux-usb-devel@lists.sourceforge.net
3840L: video4linux-list@redhat.com
3841W: http://royale.zerezo.com/zr364xx/
3842S: Maintained
3843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844USER-MODE LINUX
3845P: Jeff Dike
3846M: jdike@karaya.com
3847L: user-mode-linux-devel@lists.sourceforge.net
3848L: user-mode-linux-user@lists.sourceforge.net
3849W: http://user-mode-linux.sourceforge.net
3850S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003851
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852FAT/VFAT/MSDOS FILESYSTEM:
3853P: OGAWA Hirofumi
3854M: hirofumi@mail.parknet.co.jp
3855L: linux-kernel@vger.kernel.org
3856S: Maintained
3857
3858VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3859P: Jeff Garzik
3860S: Odd fixes
3861
3862VIA RHINE NETWORK DRIVER
3863P: Roger Luethi
3864M: rl@hellgate.ch
3865S: Maintained
3866
Jean Delvare32c0a522005-09-22 21:47:58 +02003867VIAPRO SMBUS DRIVER
3868P: Jean Delvare
3869M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003870L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003871S: Maintained
3872
Francois Romieu01f20732007-01-26 00:57:17 -08003873VIA VELOCITY NETWORK DRIVER
3874P: Francois Romieu
3875M: romieu@fr.zoreil.com
3876L: netdev@vger.kernel.org
3877S: Maintained
3878
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879UCLINUX (AND M68KNOMMU)
3880P: Greg Ungerer
3881M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003883L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884S: Maintained
3885
3886UCLINUX FOR NEC V850
3887P: Miles Bader
3888M: uclinux-v850@lsi.nec.co.jp
3889W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3890W: http://www.ee.nec.de/uclinux/
3891S: Supported
3892
3893UCLINUX FOR RENESAS H8/300
3894P: Yoshinori Sato
3895M: ysato@users.sourceforge.jp
3896W: http://uclinux-h8.sourceforge.jp/
3897S: Supported
3898
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003899UFS FILESYSTEM
3900P: Evgeniy Dushistov
3901M: dushistov@mail.ru
3902L: linux-kernel@vger.kernel.org
3903S: Maintained
3904
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905USB DIAMOND RIO500 DRIVER
3906P: Cesar Miquel
3907M: miquel@df.uba.ar
3908L: rio500-users@lists.sourceforge.net
3909W: http://rio500.sourceforge.net
3910S: Maintained
3911
3912VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003913P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003914M: mchehab@infradead.org
3915M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003917W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003918T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003919S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
Juerg Haefligerab413192006-09-24 20:54:04 +02003921VT1211 HARDWARE MONITOR DRIVER
3922P: Juerg Haefliger
3923M: juergh@gmail.com
3924L: lm-sensors@lm-sensors.org
3925S: Maintained
3926
Roger Lucas1de9e372005-11-26 20:20:05 +01003927VT8231 HARDWARE MONITOR DRIVER
3928P: Roger Lucas
3929M: roger@planbit.co.uk
3930L: lm-sensors@lm-sensors.org
3931S: Maintained
3932
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933W1 DALLAS'S 1-WIRE BUS
3934P: Evgeniy Polyakov
3935M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936S: Maintained
3937
Charles Spirakis13927072006-07-05 18:05:15 +02003938W83791D HARDWARE MONITORING DRIVER
3939P: Charles Spirakis
3940M: bezaur@gmail.com
3941L: lm-sensors@lm-sensors.org
3942S: Maintained
3943
Rudolf Marek61db0112006-12-12 18:18:30 +01003944W83793 HARDWARE MONITORING DRIVER
3945P: Rudolf Marek
3946M: r.marek@assembler.cz
3947L: lm-sensors@lm-sensors.org
3948S: Maintained
3949
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950W83L51xD SD/MMC CARD INTERFACE DRIVER
3951P: Pierre Ossman
3952M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003953L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954W: http://projects.drzeus.cx/wbsd
3955S: Maintained
3956
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003957WATCHDOG DEVICE DRIVERS
3958P: Wim Van Sebroeck
3959M: wim@iguana.be
3960T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3961S: Maintained
3962
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3964P: Jean Tourrilhes
3965M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003966L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3968S: Maintained
3969
3970WD7000 SCSI DRIVER
3971P: Miroslav Zagorac
3972M: zaga@fly.cc.fer.hr
3973L: linux-scsi@vger.kernel.org
3974S: Maintained
3975
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003976WISTRON LAPTOP BUTTON DRIVER
3977P: Miloslav Trmac
3978M: mitr@volny.cz
3979S: Maintained
3980
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981WL3501 WIRELESS PCMCIA CARD DRIVER
3982P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003983M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07003984L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003985W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986S: Maintained
3987
3988X.25 NETWORK LAYER
3989P: Henner Eisen
3990M: eis@baty.hanse.de
3991L: linux-x25@vger.kernel.org
3992S: Maintained
3993
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02003994XEN HYPERVISOR INTERFACE
3995P: Jeremy Fitzhardinge
3996M: jeremy@xensource.com
3997P: Chris Wright
3998M: chrisw@sous-sol.org
3999L: virtualization@lists.osdl.org
4000L: xen-devel@lists.xensource.com
4001S: Supported
4002
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003XFS FILESYSTEM
4004P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10004005P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10004007L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10004009T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010S: Supported
4011
Peter Korsgaard238b8722006-12-06 20:35:17 -08004012XILINX UARTLITE SERIAL DRIVER
4013P: Peter Korsgaard
4014M: jacmet@sunsite.dk
4015L: linux-serial@vger.kernel.org
4016S: Maintained
4017
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018X86 3-LEVEL PAGING (PAE) SUPPORT
4019P: Ingo Molnar
4020M: mingo@redhat.com
4021S: Maintained
4022
4023X86-64 port
4024P: Andi Kleen
4025M: ak@suse.de
4026L: discuss@x86-64.org
4027W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01004028T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029S: Maintained
4030
4031YAM DRIVER FOR AX.25
4032P: Jean-Paul Roubelat
4033M: jpr@f6fbb.org
4034L: linux-hams@vger.kernel.org
4035S: Maintained
4036
Henkaf64a5e2005-10-12 15:02:56 +02004037YEALINK PHONE DRIVER
4038P: Henk Vergonet
4039M: Henk.Vergonet@gmail.com
4040L: usbb2k-api-dev@nongnu.org
4041S: Maintained
4042
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043Z8530 DRIVER FOR AX.25
4044P: Joerg Reuter
4045M: jreuter@yaina.de
4046W: http://yaina.de/jreuter/
4047W: http://www.qsl.net/dl1bke/
4048L: linux-hams@vger.kernel.org
4049S: Maintained
4050
Daniel Drake7c0c3af2006-07-16 13:55:17 +01004051ZD1211RW WIRELESS DRIVER
4052P: Daniel Drake
4053M: dsd@gentoo.org
4054P: Ulrich Kunitz
4055M: kune@deine-taler.de
4056W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07004057L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01004058L: zd1211-devs@lists.sourceforge.net (subscribers-only)
4059S: Maintained
4060
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061ZF MACHZ WATCHDOG
4062P: Fernando Fuganti
4063M: fuganti@netbank.com.br
4064W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
4065S: Maintained
4066
4067ZR36067 VIDEO FOR LINUX DRIVER
4068P: Ronald Bultje
4069M: rbultje@ronald.bitfreak.net
4070L: mjpeg-users@lists.sourceforge.net
4071W: http://mjpeg.sourceforge.net/driver-zoran/
4072S: Maintained
4073
4074ZR36120 VIDEO FOR LINUX DRIVER
4075P: Pauline Middelink
4076M: middelin@polyware.nl
4077W: http://www.polyware.nl/~middelin/En/hobbies.html
4078W: http://www.polyware.nl/~middelin/hobbies.html
4079S: Maintained
4080
4081THE REST
4082P: Linus Torvalds
4083S: Buried alive in reporters