blob: 6a8924d2c71837ecfd1115eb10aace0b4b514c5d [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
58 -----------------------------------
59
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
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000335ALI1563 I2C DRIVER
336P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100337M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200338L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000339S: Maintained
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341ALPHA PORT
342P: Richard Henderson
343M: rth@twiddle.net
344S: Odd Fixes for 2.4; Maintained for 2.6.
345P: Ivan Kokshaysky
346M: ink@jurassic.park.msu.ru
347S: Maintained for 2.4; PCI support for 2.6.
348
Jordan Crousef90b8112006-01-06 00:12:14 -0800349AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100350P: Jordan Crouse
351M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800352L: info-linux@geode.amd.com
353W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
354S: Supported
355
Stelian Pop284f42b2006-12-12 18:18:31 +0100356AMS (Apple Motion Sensor) DRIVER
357P: Stelian Pop
358M: stelian@popies.net
359P: Michael Hanselmann
360M: linux-kernel@hansmi.ch
361S: Supported
362
Tom Tuckerf94b5332006-09-22 15:22:48 -0700363AMSO1100 RNIC DRIVER
364P: Tom Tucker
365M: tom@opengridcomputing.com
366P: Steve Wise
367M: swise@opengridcomputing.com
368L: openib-general@openib.org
369S: Maintained
370
Johannes Berg42269062006-07-25 16:15:50 +0200371AOA (Apple Onboard Audio) ALSA DRIVER
372P: Johannes Berg
373M: johannes@sipsolutions.net
374L: linuxppc-dev@ozlabs.org
375L: alsa-devel@alsa-project.org
376S: Maintained
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378APM DRIVER
379P: Stephen Rothwell
380M: sfr@canb.auug.org.au
381L: linux-laptop@vger.kernel.org
382W: http://www.canb.auug.org.au/~sfr/
383S: Supported
384
385APPLETALK NETWORK LAYER
386P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300387M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388S: Maintained
389
Jaya Kumar1154ea72005-06-21 17:17:04 -0700390ARC FRAMEBUFFER DRIVER
391P: Jaya Kumar
392M: jayalk@intworks.biz
393S: Maintained
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395ARM26 ARCHITECTURE
396P: Ian Molton
397M: spyro@f2s.com
398S: Maintained
399
400ARM26/ARCHIMEDES
401P: Ian Molton
402M: spyro@f2s.com
403S: Maintained
404
405ARM26/A5000
406P: John Appleby
407M: john@dnsworld.co.uk
408S: Maintained
409
410ARM MFM AND FLOPPY DRIVERS
411P: Ian Molton
412M: spyro@f2s.com
413S: Maintained
414
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800415ARM/ADI ROADRUNNER MACHINE SUPPORT
416P: Lennert Buytenhek
417M: kernel@wantstofly.org
418L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
419S: Maintained
420
421ARM/ADS SPHERE MACHINE SUPPORT
422P: Lennert Buytenhek
423M: kernel@wantstofly.org
424L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
425S: Maintained
426
427ARM/AJECO 1ARM MACHINE SUPPORT
428P: Lennert Buytenhek
429M: kernel@wantstofly.org
430L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
431S: Maintained
432
Andrew Victord4a89c72006-12-04 13:56:21 +0100433ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
434P: Andrew Victor
435M: andrew@sanpeople.com
436L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
437W: http://maxim.org.za/at91_26.html
438S: Maintained
439
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800440ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
441P: Lennert Buytenhek
442M: kernel@wantstofly.org
443L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
444S: Maintained
445
446ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
447P: Lennert Buytenhek
448M: kernel@wantstofly.org
449L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
450S: Maintained
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452ARM/CORGI MACHINE SUPPORT
453P: Richard Purdie
454M: rpurdie@rpsys.net
455S: Maintained
456
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800457ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
458P: Lennert Buytenhek
459M: kernel@wantstofly.org
460L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
461S: Maintained
462
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100463ARM/HP JORNADA 7XX MACHINE SUPPORT
464P: Kristoffer Ericson
465M: kristoffer_e1@hotmail.com
466W: www.jlime.com
467S: Maintained
468
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800469ARM/INTEL IOP32X ARM ARCHITECTURE
470P: Lennert Buytenhek
471M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100472P: Dan Williams
473M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800474L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100475S: Supported
476
477ARM/INTEL IOP33X ARM ARCHITECTURE
478P: Dan Williams
479M: dan.j.williams@intel.com
480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
481S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800482
483ARM/INTEL IOP13XX ARM ARCHITECTURE
484P: Lennert Buytenhek
485M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100486P: Dan Williams
487M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800488L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100489S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800490
491ARM/INTEL IQ81342EX MACHINE SUPPORT
492P: Lennert Buytenhek
493M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100494P: Dan Williams
495M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800496L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100497S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800498
499ARM/INTEL IXP2000 ARM ARCHITECTURE
500P: Lennert Buytenhek
501M: kernel@wantstofly.org
502L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
503S: Maintained
504
505ARM/INTEL IXDP2850 MACHINE SUPPORT
506P: Lennert Buytenhek
507M: kernel@wantstofly.org
508L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
509S: Maintained
510
511ARM/INTEL IXP23XX ARM ARCHITECTURE
512P: Lennert Buytenhek
513M: kernel@wantstofly.org
514L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
515S: Maintained
516
517ARM/INTEL XSC3 (MANZANO) ARM CORE
518P: Lennert Buytenhek
519M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100520P: Dan Williams
521M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800522L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100523S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800524
525ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
526P: Lennert Buytenhek
527M: kernel@wantstofly.org
528L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
529S: Maintained
530
531ARM/LOGICPD PXA270 MACHINE SUPPORT
532P: Lennert Buytenhek
533M: kernel@wantstofly.org
534L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
535S: Maintained
536
Dirk Opfer8459c152005-11-06 14:27:52 +0000537ARM/TOSA MACHINE SUPPORT
538P: Dirk Opfer
539M: dirk@opfer-online.de
540S: Maintained
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542ARM/PLEB SUPPORT
543P: Peter Chubb
544M: pleb@gelato.unsw.edu.au
545W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
546S: Maintained
547
548ARM/PT DIGITAL BOARD PORT
549P: Stefan Eletzhofer
550M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700551L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552W: http://www.arm.linux.org.uk/
553S: Maintained
554
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800555ARM/RADISYS ENP2611 MACHINE SUPPORT
556P: Lennert Buytenhek
557M: kernel@wantstofly.org
558L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
559S: Maintained
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561ARM/SHARK MACHINE SUPPORT
562P: Alexander Schulz
563M: alex@shark-linux.de
564W: http://www.shark-linux.de/shark.html
565S: Maintained
566
567ARM/STRONGARM110 PORT
568P: Russell King
569M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700570L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571W: http://www.arm.linux.org.uk/
572S: Maintained
573
574ARM/S3C2410 ARM ARCHITECTURE
575P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800576M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700577L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578W: http://www.fluff.org/ben/linux/
579S: Maintained
580
581ARM/S3C2440 ARM ARCHITECTURE
582P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800583M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700584L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585W: http://www.fluff.org/ben/linux/
586S: Maintained
587
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800588ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
589P: Lennert Buytenhek
590M: kernel@wantstofly.org
591L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
592S: Maintained
593
594ARM/THECUS N2100 MACHINE SUPPORT
595P: Lennert Buytenhek
596M: kernel@wantstofly.org
597L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
598S: Maintained
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600ARPD SUPPORT
601P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700602L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603S: Maintained
604
605ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500606P: Corentin Chary
607M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608P: Karol Kozimor
609M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610L: acpi4asus-user@lists.sourceforge.net
611W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500612W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613S: Maintained
614
Corentin Chary85091b72007-01-26 14:04:30 +0100615ASUS LAPTOP EXTRAS DRIVER
616P: Corentin Chary
617M: corentincj@iksaif.net
618L: acpi4asus-user@lists.sourceforge.net
619W: http://sourceforge.net/projects/acpi4asus
620W: http://xf.iksaif.net/acpi4asus
621S: Maintained
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623ATA OVER ETHERNET DRIVER
624P: Ed L. Cashin
625M: ecashin@coraid.com
626W: http://www.coraid.com/support/linux
627S: Supported
628
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600629ATL1 ETHERNET DRIVER
630P: Jay Cliburn
631M: jcliburn@gmail.com
632P: Chris Snook
633M: csnook@redhat.com
634L: atl1-devel@lists.sourceforge.net
635W: http://sourceforge.net/projects/atl1
636W: http://atl1.sourceforge.net
637S: Maintained
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639ATM
640P: Chas Williams
641M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700642L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643W: http://linux-atm.sourceforge.net
644S: Maintained
645
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100646ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100647P: Haavard Skinnemoen
648M: hskinnemoen@atmel.com
649S: Supported
650
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800651ATMEL SPI DRIVER
652P: Haavard Skinnemoen
653M: hskinnemoen@atmel.com
654S: Supported
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656ATMEL WIRELESS DRIVER
657P: Simon Kelley
658M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -0700659L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660W: http://www.thekelleys.org.uk/atmel
661W: http://atmelwlandriver.sourceforge.net/
662S: Maintained
663
Chris Wrighta92b7b82005-07-07 18:12:23 -0700664AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100665P: David Woodhouse
666M: dwmw2@infradead.org
667L: linux-audit@redhat.com
668W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800669T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700670S: Maintained
671
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800672AUXILIARY DISPLAY DRIVERS
673P: Miguel Ojeda Sandonis
674M: maxextreme@gmail.com
675L: linux-kernel@vger.kernel.org
676S: Maintained
677
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700678AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700679P: Haavard Skinnemoen
680M: hskinnemoen@atmel.com
681W: http://www.atmel.com/products/AVR32/
682W: http://avr32linux.org/
683W: http://avrfreaks.net/
684S: Supported
685
686AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700687P: Haavard Skinnemoen
688M: hskinnemoen@atmel.com
689S: Supported
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691AX.25 NETWORK LAYER
692P: Ralf Baechle
693M: ralf@linux-mips.org
694L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200695W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696S: Maintained
697
Richard Purdie300abeb2007-02-07 22:21:07 +0000698BACKLIGHT CLASS/SUBSYSTEM
699P: Richard Purdie
700M: rpurdie@rpsys.net
701S: Maintained
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703BAYCOM/HDLCDRV DRIVERS FOR AX.25
704P: Thomas Sailer
705M: t.sailer@alumni.ethz.ch
706L: linux-hams@vger.kernel.org
707W: http://www.baycom.org/~tom/ham/ham.html
708S: Maintained
709
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200710BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
711P: Larry Finger
712M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200713P: Stefano Brivio
714M: st3@riseup.net
Johannes Berg724c6b32007-04-23 12:18:20 -0700715L: linux-wireless@vger.kernel.org
Michael Buesch9eac8f92006-04-22 17:31:27 +0200716W: http://bcm43xx.berlios.de/
717S: Maintained
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719BEFS FILE SYSTEM
720P: Sergey S. Kostyliov
721M: rathamahata@php4.ru
722L: linux-kernel@vger.kernel.org
723S: Maintained
724
725BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
726P: Kenji Hollis
727W: http://ftp.bitgate.com/pcwd/
728S: Maintained
729
730BFS FILE SYSTEM
731P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800732M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733L: linux-kernel@vger.kernel.org
734S: Maintained
735
736BLOCK LAYER
737P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200738M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800740T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741S: Maintained
742
743BLUETOOTH SUBSYSTEM
744P: Marcel Holtmann
745M: marcel@holtmann.org
746P: Maxim Krasnyansky
747M: maxk@qualcomm.com
748L: bluez-devel@lists.sf.net
749W: http://bluez.sf.net
750W: http://www.bluez.org
751W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800752T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753S: Maintained
754
755BLUETOOTH RFCOMM LAYER
756P: Marcel Holtmann
757M: marcel@holtmann.org
758P: Maxim Krasnyansky
759M: maxk@qualcomm.com
760S: Maintained
761
762BLUETOOTH BNEP LAYER
763P: Marcel Holtmann
764M: marcel@holtmann.org
765P: Maxim Krasnyansky
766M: maxk@qualcomm.com
767S: Maintained
768
769BLUETOOTH CMTP LAYER
770P: Marcel Holtmann
771M: marcel@holtmann.org
772S: Maintained
773
774BLUETOOTH HIDP LAYER
775P: Marcel Holtmann
776M: marcel@holtmann.org
777S: Maintained
778
779BLUETOOTH HCI UART DRIVER
780P: Marcel Holtmann
781M: marcel@holtmann.org
782P: Maxim Krasnyansky
783M: maxk@qualcomm.com
784S: Maintained
785
786BLUETOOTH HCI USB DRIVER
787P: Marcel Holtmann
788M: marcel@holtmann.org
789P: Maxim Krasnyansky
790M: maxk@qualcomm.com
791S: Maintained
792
793BLUETOOTH HCI BCM203X DRIVER
794P: Marcel Holtmann
795M: marcel@holtmann.org
796S: Maintained
797
798BLUETOOTH HCI BPA10X DRIVER
799P: Marcel Holtmann
800M: marcel@holtmann.org
801S: Maintained
802
803BLUETOOTH HCI BFUSB DRIVER
804P: Marcel Holtmann
805M: marcel@holtmann.org
806S: Maintained
807
808BLUETOOTH HCI DTL1 DRIVER
809P: Marcel Holtmann
810M: marcel@holtmann.org
811S: Maintained
812
813BLUETOOTH HCI BLUECARD DRIVER
814P: Marcel Holtmann
815M: marcel@holtmann.org
816S: Maintained
817
818BLUETOOTH HCI BT3C DRIVER
819P: Marcel Holtmann
820M: marcel@holtmann.org
821S: Maintained
822
823BLUETOOTH HCI BTUART DRIVER
824P: Marcel Holtmann
825M: marcel@holtmann.org
826S: Maintained
827
828BLUETOOTH HCI VHCI DRIVER
829P: Maxim Krasnyansky
830M: maxk@qualcomm.com
831S: Maintained
832
833BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100834P: Chad Tindel
835M: ctindel@users.sourceforge.net
836P: Jay Vosburgh
837M: fubar@us.ibm.com
838L: bonding-devel@lists.sourceforge.net
839W: http://sourceforge.net/projects/bonding/
840S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000842BROADBAND PROCESSOR ARCHITECTURE
843P: Arnd Bergmann
844M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100845L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400846W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000847S: Supported
848
Gary Zambrano39105892006-06-22 17:26:20 -0700849BROADCOM B44 10/100 ETHERNET DRIVER
850P: Gary Zambrano
851M: zambrano@broadcom.com
852L: netdev@vger.kernel.org
853S: Supported
854
Michael Chan948c51e2006-06-04 02:51:39 -0700855BROADCOM BNX2 GIGABIT ETHERNET DRIVER
856P: Michael Chan
857M: mchan@broadcom.com
858L: netdev@vger.kernel.org
859S: Supported
860
861BROADCOM TG3 GIGABIT ETHERNET DRIVER
862P: Michael Chan
863M: mchan@broadcom.com
864L: netdev@vger.kernel.org
865S: Supported
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700868P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200869M: mchehab@infradead.org
870M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700872W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200873T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700874S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200876CALGARY x86-64 IOMMU
877P: Muli Ben-Yehuda
878M: muli@il.ibm.com
879P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200880M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200881L: linux-kernel@vger.kernel.org
882L: discuss@x86-64.org
883S: Maintained
884
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800885CFAG12864B LCD DRIVER
886P: Miguel Ojeda Sandonis
887M: maxextreme@gmail.com
888L: linux-kernel@vger.kernel.org
889S: Maintained
890
891CFAG12864BFB LCD FRAMEBUFFER DRIVER
892P: Miguel Ojeda Sandonis
893M: maxextreme@gmail.com
894L: linux-kernel@vger.kernel.org
895S: Maintained
896
Johannes Berg704232c2007-04-23 12:20:05 -0700897CFG80211 and NL80211
898P: Johannes Berg
899M: johannes@sipsolutions.net
900L: linux-wireless@vger.kernel.org
901S: Maintained
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903COMMON INTERNET FILE SYSTEM (CIFS)
904P: Steve French
905M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100906L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907L: samba-technical@lists.samba.org
908W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800909T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910S: Supported
911
Joel Becker7063fbf2005-12-15 14:29:43 -0800912CONFIGFS
913P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800914M: joel.becker@oracle.com
915L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800916S: Supported
917
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800918CIRRUS LOGIC EP93XX ETHERNET DRIVER
919P: Lennert Buytenhek
920M: kernel@wantstofly.org
921L: netdev@vger.kernel.org
922S: Maintained
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924CIRRUS LOGIC GENERIC FBDEV DRIVER
925P: Jeff Garzik
926M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800927L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928S: Odd Fixes
929
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800930CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
931P: Lennert Buytenhek
932M: kernel@wantstofly.org
933L: linux-usb-devel@lists.sourceforge.net
934S: Maintained
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
937P: Cirrus Logic Corporation (kernel 2.2 driver)
938M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
939P: Nils Faerber (port to kernel 2.4)
940M: Nils Faerber <nils@kernelconcepts.de>
941S: Maintained
942
943CODA FILE SYSTEM
944P: Jan Harkes
945M: jaharkes@cs.cmu.edu
946M: coda@cs.cmu.edu
947L: codalist@coda.cs.cmu.edu
948W: http://www.coda.cs.cmu.edu/
949S: Maintained
950
951COMPACTPCI HOTPLUG CORE
952P: Scott Murray
953M: scottm@somanetworks.com
954M: scott@spiteful.org
955L: pcihpd-discuss@lists.sourceforge.net
956S: Supported
957
958COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
959P: Scott Murray
960M: scottm@somanetworks.com
961M: scott@spiteful.org
962L: pcihpd-discuss@lists.sourceforge.net
963S: Supported
964
965COMPACTPCI HOTPLUG GENERIC DRIVER
966P: Scott Murray
967M: scottm@somanetworks.com
968M: scott@spiteful.org
969L: pcihpd-discuss@lists.sourceforge.net
970S: Supported
971
972COMPUTONE INTELLIPORT MULTIPORT CARD
973P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700974M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700976S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Simon Arlott949be0f2007-03-06 02:47:46 -0800978CONEXANT ACCESSRUNNER USB DRIVER
979P: Simon Arlott
980M: cxacru@fire.lp0.eu
981S: Maintained
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983COSA/SRP SYNC SERIAL DRIVER
984P: Jan "Yenya" Kasprzak
985M: kas@fi.muni.cz
986W: http://www.fi.muni.cz/~kas/cosa/
987S: Maintained
988
989CPU FREQUENCY DRIVERS
990P: Dave Jones
991M: davej@codemonkey.org.uk
992L: cpufreq@lists.linux.org.uk
993W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500994T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995S: Maintained
996
997CPUID/MSR DRIVER
998P: H. Peter Anvin
999M: hpa@zytor.com
1000S: Maintained
1001
Paul Jacksoned90fb42005-09-27 21:45:37 -07001002CPUSETS
1003P: Paul Jackson
1004P: Simon Derr
1005M: pj@sgi.com
1006M: simon.derr@bull.net
1007L: linux-kernel@vger.kernel.org
1008W: http://www.bullopensource.org/cpuset/
1009S: Supported
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001012W: http://sourceforge.net/projects/cramfs/
1013S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015CRIS PORT
1016P: Mikael Starvik
1017M: starvik@axis.com
1018L: dev-etrax@axis.com
1019W: http://developer.axis.com
1020S: Maintained
1021
1022CRYPTO API
1023P: Herbert Xu
1024M: herbert@gondor.apana.org.au
1025P: David S. Miller
1026M: davem@davemloft.net
1027L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001028T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029S: Maintained
1030
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001031CS5535 Audio ALSA driver
1032P: Jaya Kumar
1033M: jayakumar.alsa@gmail.com
1034S: Maintained
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036CYBERPRO FB DRIVER
1037P: Russell King
1038M: rmk@arm.linux.org.uk
1039W: http://www.arm.linux.org.uk/
1040S: Maintained
1041
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001042CYBLAFB FRAMEBUFFER DRIVER
1043P: Knut Petersen
1044M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001045L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001046S: Maintained
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048CYCLADES 2X SYNC CARD DRIVER
1049P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001050M: acme@ghostprotocols.net
1051W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052S: Maintained
1053
1054CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001056S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001060S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062DAMA SLAVE for AX.25
1063P: Joerg Reuter
1064M: jreuter@yaina.de
1065W: http://yaina.de/jreuter/
1066W: http://www.qsl.net/dl1bke/
1067L: linux-hams@vger.kernel.org
1068S: Maintained
1069
1070DC395x SCSI driver
1071P: Oliver Neukum
1072M: oliver@neukum.name
1073P: Ali Akcaagac
1074M: aliakc@web.de
1075P: Jamie Lenehan
1076M: lenehan@twibble.org
1077W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001078L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079L: http://lists.twibble.org/mailman/listinfo/dc395x/
1080S: Maintained
1081
1082DC390/AM53C974 SCSI driver
1083P: Kurt Garloff
1084M: garloff@suse.de
1085W: http://www.garloff.de/kurt/linux/dc390/
1086P: Guennadi Liakhovetski
1087M: g.liakhovetski@gmx.de
1088S: Maintained
1089
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001090DCCP PROTOCOL
1091P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001092M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001093L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001094W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001095S: Maintained
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097DECnet NETWORK LAYER
1098P: Patrick Caulfield
1099M: patrick@tykepenguin.com
1100W: http://linux-decnet.sourceforge.net
1101L: linux-decnet-user@lists.sourceforge.net
1102S: Maintained
1103
1104DEFXX FDDI NETWORK DRIVER
1105P: Maciej W. Rozycki
1106M: macro@linux-mips.org
1107S: Maintained
1108
1109DELL LAPTOP SMM DRIVER
1110P: Massimo Dal Zotto
1111M: dz@debian.org
1112W: http://www.debian.org/~dz/i8k/
1113S: Maintained
1114
Doug Warzecha90563ec2005-09-06 15:17:15 -07001115DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1116P: Doug Warzecha
1117M: Douglas_Warzecha@dell.com
1118S: Maintained
1119
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001120DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121P: Alasdair Kergon
1122L: dm-devel@redhat.com
1123W: http://sources.redhat.com/dm
1124S: Maintained
1125
1126DEVICE NUMBER REGISTRY
1127P: Torben Mathiasen
1128M: device@lanana.org
1129W: http://lanana.org/docs/device-list/index.html
1130L: linux-kernel@vger.kernel.org
1131S: Maintained
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133DIGI INTL. EPCA DRIVER
1134P: Digi International, Inc
1135M: Eng.Linux@digi.com
1136L: Eng.Linux@digi.com
1137W: http://www.digi.com
1138S: Orphaned
1139
1140DIGI RIGHTSWITCH NETWORK DRIVER
1141P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001142L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143W: http://www.digi.com
1144S: Orphaned
1145
1146DIRECTORY NOTIFICATION
1147P: Stephen Rothwell
1148M: sfr@canb.auug.org.au
1149L: linux-kernel@vger.kernel.org
1150S: Supported
1151
1152DISK GEOMETRY AND PARTITION HANDLING
1153P: Andries Brouwer
1154M: aeb@cwi.nl
1155W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1156W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1157W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1158S: Maintained
1159
1160DISKQUOTA:
1161P: Jan Kara
1162M: jack@suse.cz
1163L: linux-kernel@vger.kernel.org
1164S: Maintained
1165
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001166DISTRIBUTED LOCK MANAGER
1167P: Patrick Caulfield
1168M: pcaulfie@redhat.com
1169P: David Teigland
1170M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001171L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001172W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001173T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1174T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001175S: Supported
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1178P: Tobias Ringstrom
1179M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001180L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181S: Maintained
1182
Martin Waitzba483d52005-06-17 13:20:59 -07001183DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001184P: Randy Dunlap
1185M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001186S: Maintained
1187
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001188DOCKING STATION DRIVER
1189P: Kristen Carlson Accardi
1190M: kristen.c.accardi@intel.com
1191L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001192S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194DOUBLETALK DRIVER
1195P: James R. Van Zandt
1196M: jrv@vanzandt.mv.com
1197L: blinux-list@redhat.com
1198S: Maintained
1199
1200DRIVER CORE, KOBJECTS, AND SYSFS
1201P: Greg Kroah-Hartman
1202M: gregkh@suse.de
1203L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001204T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205S: Supported
1206
1207DRM DRIVERS
1208P: David Airlie
1209M: airlied@linux.ie
1210L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001211T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212S: Maintained
1213
1214DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001215P: Francois Romieu
1216M: romieu@fr.zoreil.com
1217L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218S: Maintained
1219
1220DVB SUBSYSTEM AND DRIVERS
1221P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001222M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001224W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001225T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001226S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228EATA-DMA SCSI DRIVER
1229P: Michael Neuffer
1230L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1231S: Maintained
1232
1233EATA ISA/EISA/PCI SCSI DRIVER
1234P: Dario Ballabio
1235M: ballabio_dario@emc.com
1236L: linux-scsi@vger.kernel.org
1237S: Maintained
1238
1239EATA-PIO SCSI DRIVER
1240P: Michael Neuffer
1241M: mike@i-Connect.Net
1242L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1243S: Maintained
1244
1245EBTABLES
1246P: Bart De Schuymer
1247M: bart.de.schuymer@pandora.be
1248L: ebtables-user@lists.sourceforge.net
1249L: ebtables-devel@lists.sourceforge.net
1250W: http://ebtables.sourceforge.net/
1251S: Maintained
1252
Michael Halcrow237fead2006-10-04 02:16:22 -07001253ECRYPT FILE SYSTEM
1254P: Mike Halcrow, Phillip Hellewell
1255M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1256L: ecryptfs-devel@lists.sourceforge.net
1257W: http://ecryptfs.sourceforge.net/
1258S: Supported
1259
Alan Coxda9bb1d2006-01-18 17:44:13 -08001260EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001261P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001262M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001263L: bluesmoke-devel@lists.sourceforge.net
1264W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001265S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001266
1267EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001268P: Mark Gross
1269M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001270L: bluesmoke-devel@lists.sourceforge.net
1271W: bluesmoke.sourceforge.net
1272S: Maintained
1273
1274EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001275P: Doug Thompson
1276M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001277L: bluesmoke-devel@lists.sourceforge.net
1278W: bluesmoke.sourceforge.net
1279S: Maintained
1280
1281EDAC-R82600
1282P: Tim Small
1283M: tim@buttersideup.com
1284L: bluesmoke-devel@lists.sourceforge.net
1285W: bluesmoke.sourceforge.net
1286S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288EEPRO100 NETWORK DRIVER
1289P: Andrey V. Savochkin
1290M: saw@saw.sw.com.sg
1291S: Maintained
1292
Josh Triplett0bee8d22006-07-30 03:03:58 -07001293EFS FILESYSTEM
1294W: http://aeschi.ch.eu.org/efs/
1295S: Orphan
1296
Heiko J Schickfab97222006-09-22 15:22:22 -07001297EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1298P: Hoang-Nam Nguyen
1299M: hnguyen@de.ibm.com
1300P: Christoph Raisch
1301M: raisch@de.ibm.com
1302L: openib-general@openib.org
1303S: Supported
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305EMU10K1 SOUND DRIVER
1306P: James Courtier-Dutton
1307M: James@superbug.demon.co.uk
1308L: emu10k1-devel@lists.sourceforge.net
1309W: http://sourceforge.net/projects/emu10k1/
1310S: Maintained
1311
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001312EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001313P: James Smart
1314M: james.smart@emulex.com
1315L: linux-scsi@vger.kernel.org
1316W: http://sourceforge.net/projects/lpfcxxxx
1317S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319EPSON 1355 FRAMEBUFFER DRIVER
1320P: Christopher Hoover
1321M: ch@murgatroid.com, ch@hpl.hp.com
1322S: Maintained
1323
1324ETHEREXPRESS-16 NETWORK DRIVER
1325P: Philip Blundell
1326M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001327L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328S: Maintained
1329
1330ETHERNET BRIDGE
1331P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08001332M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07001333L: bridge@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334W: http://bridge.sourceforge.net/
1335S: Maintained
1336
1337ETHERTEAM 16I DRIVER
1338P: Mika Kuoppala
1339M: miku@iki.fi
1340S: Maintained
1341
1342EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001343L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344S: Maintained
1345
1346EXT3 FILE SYSTEM
1347P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001348M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001349L: linux-ext4@vger.kernel.org
1350S: Maintained
1351
1352EXT4 FILE SYSTEM
1353P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001354M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001355L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356S: Maintained
1357
Jean Delvaree53004e2006-01-09 23:26:14 +01001358F71805F HARDWARE MONITORING DRIVER
1359P: Jean Delvare
1360M: khali@linux-fr.org
1361L: lm-sensors@lm-sensors.org
1362S: Maintained
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364FARSYNC SYNCHRONOUS DRIVER
1365P: Kevin Curtis
1366M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367W: http://www.farsite.co.uk/
1368S: Supported
1369
Akinobu Mitac5408b82007-04-23 14:41:20 -07001370FAULT INJECTION SUPPORT
1371P: Akinobu Mita
1372M: akinobu.mita@gmail.com
1373S: Supported
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375FRAMEBUFFER LAYER
1376P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001377M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001378L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379W: http://linux-fbdev.sourceforge.net/
1380S: Maintained
1381
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001382FREESCALE SOC FS_ENET DRIVER
1383P: Pantelis Antoniou
1384M: pantelis.antoniou@gmail.com
1385P: Vitaly Bordug
1386M: vbordug@ru.mvista.com
1387L: linuxppc-embedded@ozlabs.org
1388L: netdev@vger.kernel.org
1389S: Maintained
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391FILE LOCKING (flock() and fcntl()/lockf())
1392P: Matthew Wilcox
1393M: matthew@wil.cx
1394L: linux-fsdevel@vger.kernel.org
1395S: Maintained
1396
1397FILESYSTEMS (VFS and infrastructure)
1398P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001399M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400S: Maintained
1401
1402FIRMWARE LOADER (request_firmware)
1403L: linux-kernel@vger.kernel.org
1404S: Orphan
1405
1406FPU EMULATOR
1407P: Bill Metzenthen
1408M: billm@suburbia.net
1409W: http://suburbia.net/~billm/floating-point/emulator/
1410S: Maintained
1411
1412FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1413P: Mike McLagan
1414M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001415L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416S: Maintained
1417
1418FREEVXFS FILESYSTEM
1419P: Christoph Hellwig
1420M: hch@infradead.org
1421W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1422S: Maintained
1423
David Howells5ab7ffe2007-04-10 15:10:45 +01001424FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425P: David Howells
1426M: dhowells@redhat.com
1427S: Maintained
1428
Miklos Szeredi04578f12005-09-09 13:10:22 -07001429FUSE: FILESYSTEM IN USERSPACE
1430P: Miklos Szeredi
1431M: miklos@szeredi.hu
1432L: fuse-devel@lists.sourceforge.net
1433W: http://fuse.sourceforge.net/
1434S: Maintained
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1437P: Rik Faith
1438M: faith@cs.unc.edu
1439L: linux-scsi@vger.kernel.org
1440S: Odd fixes (e.g., new signatures)
1441
1442GDT SCSI DISK ARRAY CONTROLLER DRIVER
1443P: Achim Leubner
1444M: achim_leubner@adaptec.com
1445L: linux-scsi@vger.kernel.org
1446W: http://www.icp-vortex.com/
1447S: Supported
1448
1449GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1450P: Krzysztof Halasa
1451M: khc@pm.waw.pl
1452W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1453S: Maintained
1454
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001455GFS2 FILE SYSTEM
1456P: Steven Whitehouse
1457M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001458L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001459W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001460T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1461T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001462S: Supported
1463
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001464GIGASET ISDN DRIVERS
1465P: Hansjoerg Lipp
1466M: hjlipp@web.de
1467P: Tilman Schmidt
1468M: tilman@imap.cc
1469L: gigaset307x-common@lists.sourceforge.net
1470W: http://gigaset307x.sourceforge.net/
1471S: Maintained
1472
Jean Delvare5b543962005-08-15 19:51:02 +02001473HARDWARE MONITORING
1474P: Jean Delvare
1475M: khali@linux-fr.org
1476L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001477W: http://www.lm-sensors.org/
1478T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001479S: Maintained
1480
Michael Buesch844dd052006-06-26 00:24:59 -07001481HARDWARE RANDOM NUMBER GENERATOR CORE
1482P: Michael Buesch
1483M: mb@bu3sch.de
1484S: Maintained
1485
Robert Love860e1d62005-08-31 23:57:59 -04001486HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1487P: Robert Love
1488M: rlove@rlove.org
1489M: linux-kernel@vger.kernel.org
1490W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1491S: Maintained
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493HARMONY SOUND DRIVER
1494P: Kyle McMartin
1495M: kyle@parisc-linux.org
1496W: http://www.parisc-linux.org/~kyle/harmony/
1497L: parisc-linux@lists.parisc-linux.org
1498S: Maintained
1499
1500HAYES ESP SERIAL DRIVER
1501P: Andrew J. Robinson
1502M: arobinso@nyx.net
1503L: linux-kernel@vger.kernel.org
1504W: http://www.nyx.net/~arobinso
1505S: Maintained
1506
1507HFS FILESYSTEM
1508P: Roman Zippel
1509M: zippel@linux-m68k.org
1510L: linux-kernel@vger.kernel.org
1511S: Maintained
1512
1513HGA FRAMEBUFFER DRIVER
1514P: Ferenc Bakonyi
1515M: fero@drama.obuda.kando.hu
1516L: linux-nvidia@lists.surfsouth.com
1517W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1518S: Maintained
1519
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001520HID CORE LAYER
1521P: Jiri Kosina
1522M: jkosina@suse.cz
1523L: linux-input@atrey.karlin.mff.cuni.cz
Jiri Kosinaa4dff392007-02-27 17:40:09 +01001524T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001525S: Maintained
1526
Ingo Molnar38bed542007-02-22 09:09:34 +01001527HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
1528P: Thomas Gleixner
1529M: tglx@linutronix.de
1530L: linux-kernel@vger.kernel.org
1531S: Maintained
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533HIGH-SPEED SCC DRIVER FOR AX.25
1534P: Klaus Kudielka
1535M: klaus.kudielka@ieee.org
1536L: linux-hams@vger.kernel.org
1537W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1538S: Maintained
1539
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001540HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1541P: HighPoint Linux Team
1542M: linux@highpoint-tech.com
1543W: http://www.highpoint-tech.com
1544S: Supported
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546HIPPI
1547P: Jes Sorensen
1548M: jes@trained-monkey.org
1549L: linux-hippi@sunsite.dk
1550S: Maintained
1551
1552HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1553P: Chirag Kantharia
1554M: chirag.kantharia@hp.com
1555L: iss_storagedev@hp.com
1556S: Maintained
1557
1558HEWLETT-PACKARD SMART2 RAID DRIVER
1559P: Chirag Kantharia
1560M: chirag.kantharia@hp.com
1561L: iss_storagedev@hp.com
1562S: Maintained
1563
1564HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1565P: Mike Miller
1566M: mike.miller@hp.com
1567L: iss_storagedev@hp.com
1568S: Supported
1569
Jouni Malinenff1d2762005-05-12 22:54:16 -04001570HOST AP DRIVER
1571P: Jouni Malinen
1572M: jkmaline@cc.hut.fi
Johannes Berg724c6b32007-04-23 12:18:20 -07001573L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04001574L: hostap@shmoo.com
1575W: http://hostap.epitest.fi/
1576S: Maintained
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1579P: Jaroslav Kysela
1580M: perex@suse.cz
1581S: Maintained
1582
Bob Piccob9b03322005-11-07 00:59:19 -08001583HPET: High Precision Event Timers driver (hpet.c)
1584P: Clemens Ladisch
1585M: clemens@ladisch.de
1586S: Maintained
1587
1588HPET: i386
1589P: Venkatesh Pallipadi (Venki)
1590M: venkatesh.pallipadi@intel.com
1591S: Maintained
1592
1593HPET: x86_64
1594P: Andi Kleen and Vojtech Pavlik
1595M: ak@muc.de and vojtech@suse.cz
1596S: Maintained
1597
1598HPET: ACPI hpet.c
1599P: Bob Picco
1600M: bob.picco@hp.com
1601S: Maintained
1602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603HPFS FILESYSTEM
1604P: Mikulas Patocka
1605M: mikulas@artax.karlin.mff.cuni.cz
1606W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1607S: Maintained
1608
1609HUGETLB FILESYSTEM
1610P: William Irwin
1611M: wli@holomorphy.com
1612S: Maintained
1613
Jean Delvare5b543962005-08-15 19:51:02 +02001614I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615P: Jean Delvare
1616M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001617L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001618T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619S: Maintained
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621i386 BOOT CODE
1622P: Riley H. Williams
1623M: Riley@Williams.Name
1624L: Linux-Kernel@vger.kernel.org
1625S: Maintained
1626
1627i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1628P: Dave Jones
1629M: davej@codemonkey.org.uk
1630P: H. Peter Anvin
1631M: hpa@zytor.com
1632S: Maintained
1633
1634i810 TCO TIMER WATCHDOG
1635P: Nils Faerber
1636M: nils@kernelconcepts.de
1637W: http://www.kernelconcepts.de/
1638S: Maintained
1639
1640IA64 (Itanium) PLATFORM
1641P: Tony Luck
1642M: tony.luck@intel.com
1643L: linux-ia64@vger.kernel.org
1644W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001645T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646S: Maintained
1647
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001648IBM ACPI EXTRAS DRIVER
1649P: Henrique de Moraes Holschuh
1650M: ibm-acpi@hmh.eng.br
1651L: ibm-acpi-devel@lists.sourceforge.net
1652W: http://ibm-acpi.sourceforge.net
1653W: http://thinkwiki.org/wiki/Ibm-acpi
1654T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1655S: Maintained
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001658P: Jes Sorensen
1659M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660L: linux-altix@sgi.com
1661L: linux-ia64@vger.kernel.org
1662W: http://www.sgi.com/altix
1663S: Maintained
1664
1665IBM MCA SCSI SUBSYSTEM DRIVER
1666P: Michael Lang
1667M: langa2@kph.uni-mainz.de
1668W: http://www.uni-mainz.de/~langm000/linux.html
1669S: Maintained
1670
1671IBM Power Linux RAID adapter
1672P: Brian King
1673M: brking@us.ibm.com
1674S: Supported
1675
1676IBM ServeRAID RAID DRIVER
1677P: Jack Hammer
1678P: Dave Jeffery
1679M: ipslinux@adaptec.com
1680W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1681S: Supported
1682
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001683IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001685M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001687T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688S: Maintained
1689
1690IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001691P: Alan Cox
1692M: alan@lxorguk.ukuu.org.uk
1693L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694S: Maintained
1695
1696IDE/ATAPI FLOPPY DRIVERS
1697P: Paul Bristow
1698M: Paul Bristow <paul@paulbristow.net>
1699W: http://paulbristow.net/linux/idefloppy.html
1700L: linux-kernel@vger.kernel.org
1701S: Maintained
1702
1703IDE/ATAPI TAPE DRIVERS
1704P: Gadi Oxman
1705M: Gadi Oxman <gadio@netvision.net.il>
1706L: linux-kernel@vger.kernel.org
1707S: Maintained
1708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709IEEE 1394 SUBSYSTEM
1710P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07001711M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02001712P: Stefan Richter
1713M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714L: linux1394-devel@lists.sourceforge.net
1715W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001716T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717S: Maintained
1718
Stefan Richterf51a5a92007-04-23 14:41:10 -07001719IEEE 1394 RAW I/O DRIVER (raw1394)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720P: Dan Dennedy
1721M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07001722P: Stefan Richter
1723M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001725S: Maintained
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727IMS TWINTURBO FRAMEBUFFER DRIVER
1728P: Paul Mundt
1729M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001730L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731S: Maintained
1732
1733INFINIBAND SUBSYSTEM
1734P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001735M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736P: Sean Hefty
1737M: mshefty@ichips.intel.com
1738P: Hal Rosenstock
1739M: halr@voltaire.com
1740L: openib-general@openib.org
1741W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001742T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743S: Supported
1744
1745INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001746P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001747M: dmitry.torokhov@gmail.com
1748M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749L: linux-input@atrey.karlin.mff.cuni.cz
1750L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001751T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752S: Maintained
1753
Robert Lovec9f04f52005-07-15 12:21:07 -04001754INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001755P: John McCutchan
1756M: ttb@tentacle.dhs.org
1757P: Robert Love
1758M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001759L: linux-kernel@vger.kernel.org
1760S: Maintained
1761
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001762INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001763P: Sylvain Meyer
1764M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001765L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001766S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001769P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001770M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001771L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001772S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1775P: Ingo Molnar
1776M: mingo@redhat.com
1777S: Maintained
1778
1779INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1780P: Jeff Garzik
1781M: jgarzik@pobox.com
1782W: http://sourceforge.net/projects/gkernel/
1783S: Maintained
1784
1785INTEL IA32 MICROCODE UPDATE SUPPORT
1786P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001787M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788S: Maintained
1789
Michael Buesch844dd052006-06-26 00:24:59 -07001790INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1791P: Deepak Saxena
1792M: dsaxena@plexity.net
1793S: Maintained
1794
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001795INTEL IXP2000 ETHERNET DRIVER
1796P: Lennert Buytenhek
1797M: kernel@wantstofly.org
1798L: netdev@vger.kernel.org
1799S: Maintained
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801INTEL PRO/100 ETHERNET SUPPORT
1802P: John Ronciak
1803M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804P: Jesse Brandeburg
1805M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001806P: Jeff Kirsher
1807M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001808P: Auke Kok
1809M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810W: http://sourceforge.net/projects/e1000/
1811S: Supported
1812
1813INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1814P: Jeb Cramer
1815M: cramerj@intel.com
1816P: John Ronciak
1817M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001818P: Jesse Brandeburg
1819M: jesse.brandeburg@intel.com
1820P: Jeff Kirsher
1821M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001822P: Auke Kok
1823M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824W: http://sourceforge.net/projects/e1000/
1825S: Supported
1826
1827INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001828P: Jeff Kirsher
1829M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830P: Ayyappan Veeraiyan
1831M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832P: John Ronciak
1833M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001834P: Jesse Brandeburg
1835M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001836P: Auke Kok
1837M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838W: http://sourceforge.net/projects/e1000/
1839S: Supported
1840
James Ketrenos826d2ab2005-11-07 18:56:59 -06001841INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1842P: Yi Zhu
1843M: yi.zhu@intel.com
1844P: James Ketrenos
1845M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001846L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001847L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001848L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1849W: http://ipw2100.sourceforge.net
1850S: Supported
1851
1852INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1853P: Yi Zhu
1854M: yi.zhu@intel.com
1855P: James Ketrenos
1856M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001857L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001858L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001859L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1860W: http://ipw2200.sourceforge.net
1861S: Supported
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863IOC3 DRIVER
1864P: Ralf Baechle
1865M: ralf@linux-mips.org
1866L: linux-mips@linux-mips.org
1867S: Maintained
1868
1869IP MASQUERADING:
1870P: Juanjo Ciarlante
1871M: jjciarla@raiz.uncu.edu.ar
1872S: Maintained
1873
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001874IPATH DRIVER:
1875P: Bryan O'Sullivan
1876M: support@pathscale.com
1877L: openib-general@openib.org
1878S: Supported
1879
Corey Minyard4409ebe2006-04-20 02:43:12 -07001880IPMI SUBSYSTEM
1881P: Corey Minyard
1882M: minyard@acm.org
1883L: openipmi-developer@lists.sourceforge.net
1884W: http://openipmi.sourceforge.net/
1885S: Supported
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887IPX NETWORK LAYER
1888P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001889M: acme@ghostprotocols.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07001890L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891S: Maintained
1892
1893IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001894P: Samuel Ortiz
1895M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001896L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001898S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900ISAPNP
1901P: Jaroslav Kysela
1902M: perex@suse.cz
1903S: Maintained
1904
1905ISDN SUBSYSTEM
1906P: Karsten Keil
1907M: kkeil@suse.de
1908P: Kai Germaschewski
1909M: kai.germaschewski@gmx.de
1910L: isdn4linux@listserv.isdn4linux.de
1911W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001912T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913S: Maintained
1914
1915ISDN SUBSYSTEM (Eicon active card driver)
1916P: Armin Schindler
1917M: mac@melware.de
1918L: isdn4linux@listserv.isdn4linux.de
1919W: http://www.melware.de
1920S: Maintained
1921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1923P: David Woodhouse
1924M: dwmw2@infradead.org
1925L: jffs-dev@axis.com
1926W: http://sources.redhat.com/jffs2/
1927S: Maintained
1928
1929JFS FILESYSTEM
1930P: Dave Kleikamp
1931M: shaggy@austin.ibm.com
1932L: jfs-discussion@lists.sourceforge.net
1933W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001934T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935S: Supported
1936
Josh Triplettde456d32006-07-30 03:04:00 -07001937JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001938P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001939M: sct@redhat.com, akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001940L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001941S: Maintained
1942
Rudolf Marek4660cb32006-10-08 22:01:26 +02001943K8TEMP HARDWARE MONITORING DRIVER
1944P: Rudolf Marek
1945M: r.marek@assembler.cz
1946L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947S: Maintained
1948
1949KCONFIG
1950P: Roman Zippel
1951M: zippel@linux-m68k.org
1952L: kbuild-devel@lists.sourceforge.net
1953S: Maintained
1954
Vivek Goyalea6c2082006-05-20 14:59:55 -07001955KDUMP
1956P: Vivek Goyal
1957M: vgoyal@in.ibm.com
1958P: Haren Myneni
1959M: hbabu@us.ibm.com
David Brownellf318a632007-04-23 14:41:06 -07001960L: fastboot@lists.linux-foundation.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07001961L: linux-kernel@vger.kernel.org
1962W: http://lse.sourceforge.net/kdump/
1963S: Maintained
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965KERNEL AUTOMOUNTER (AUTOFS)
1966P: H. Peter Anvin
1967M: hpa@zytor.com
1968L: autofs@linux.kernel.org
1969S: Odd Fixes
1970
1971KERNEL AUTOMOUNTER v4 (AUTOFS4)
1972P: Ian Kent
1973M: raven@themaw.net
1974L: autofs@linux.kernel.org
1975S: Maintained
1976
1977KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1978P: Kai Germaschewski
1979M: kai@germaschewski.name
1980P: Sam Ravnborg
1981M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001982T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983S: Maintained
1984
1985KERNEL JANITORS
1986P: Several
David Brownellf318a632007-04-23 14:41:06 -07001987L: kernel-janitors@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989S: Maintained
1990
1991KERNEL NFSD
1992P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001993M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994L: nfs@lists.sourceforge.net
1995W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001996S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Avi Kivity426d62e2006-12-13 00:34:03 -08001998KERNEL VIRTUAL MACHINE (KVM)
1999P: Avi Kivity
2000M: avi@qumranet.com
2001L: kvm-devel@lists.sourceforge.net
2002W: kvm.sourceforge.net
2003S: Supported
2004
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002005KEXEC
2006P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002007M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002008W: http://www.xmission.com/~ebiederm/files/kexec/
2009L: linux-kernel@vger.kernel.org
David Brownellf318a632007-04-23 14:41:06 -07002010L: fastboot@lists.linux-foundation.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002011S: Maintained
2012
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07002013KPROBES
2014P: Prasanna S Panchamukhi
2015M: prasanna@in.ibm.com
2016P: Ananth N Mavinakayanahalli
2017M: ananth@in.ibm.com
2018P: Anil S Keshavamurthy
2019M: anil.s.keshavamurthy@intel.com
2020P: David S. Miller
2021M: davem@davemloft.net
2022L: linux-kernel@vger.kernel.org
2023S: Maintained
2024
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002025KS0108 LCD CONTROLLER DRIVER
2026P: Miguel Ojeda Sandonis
2027M: maxextreme@gmail.com
2028L: linux-kernel@vger.kernel.org
2029S: Maintained
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002033S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035LASI 53c700 driver for PARISC
2036P: James E.J. Bottomley
2037M: James.Bottomley@HansenPartnership.com
2038L: linux-scsi@vger.kernel.org
2039S: Maintained
2040
Richard Purdie263de9b2006-05-15 09:44:16 -07002041LED SUBSYSTEM
2042P: Richard Purdie
2043M: rpurdie@rpsys.net
2044S: Maintained
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046LEGO USB Tower driver
2047P: Juergen Stuber
2048M: starblue@users.sourceforge.net
2049L: legousb-devel@lists.sourceforge.net
2050W: http://legousb.sourceforge.net/
2051S: Maintained
2052
2053LINUX FOR IBM pSERIES (RS/6000)
2054P: Paul Mackerras
2055M: paulus@au.ibm.com
2056W: http://www.ibm.com/linux/ltc/projects/ppc
2057S: Supported
2058
2059LINUX FOR NCR VOYAGER
2060P: James Bottomley
2061M: James.Bottomley@HansenPartnership.com
2062W: http://www.hansenpartnership.com/voyager
2063S: Maintained
2064
2065LINUX FOR POWERPC
2066P: Paul Mackerras
2067M: paulus@samba.org
2068W: http://www.penguinppc.org/
2069L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002070T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071S: Supported
2072
2073LINUX FOR POWER MACINTOSH
2074P: Benjamin Herrenschmidt
2075M: benh@kernel.crashing.org
2076W: http://www.penguinppc.org/
2077L: linuxppc-dev@ozlabs.org
2078S: Maintained
2079
2080LINUX FOR POWERPC EMBEDDED MPC52XX
2081P: Sylvain Munaut
2082M: tnt@246tNt.com
2083W: http://www.246tNt.com/mpc52xx/
2084W: http://www.penguinppc.org/
2085L: linuxppc-dev@ozlabs.org
2086L: linuxppc-embedded@ozlabs.org
2087S: Maintained
2088
2089LINUX FOR POWERPC EMBEDDED PPC4XX
2090P: Matt Porter
2091M: mporter@kernel.crashing.org
2092W: http://www.penguinppc.org/
2093L: linuxppc-embedded@ozlabs.org
2094S: Maintained
2095
Tom Rinie93adf12005-07-26 12:49:53 -07002096LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097P: Tom Rini
2098M: trini@kernel.crashing.org
2099W: http://www.penguinppc.org/
2100L: linuxppc-embedded@ozlabs.org
2101S: Maintained
2102
Tom Rinie93adf12005-07-26 12:49:53 -07002103LINUX FOR POWERPC EMBEDDED PPC8XX
2104P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002105M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002106W: http://www.penguinppc.org/
2107L: linuxppc-embedded@ozlabs.org
2108S: Maintained
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002111P: Kumar Gala
2112M: galak@kernel.crashing.org
2113W: http://www.penguinppc.org/
2114L: linuxppc-embedded@ozlabs.org
2115S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Olof Johanssonab06ff32006-09-06 14:44:54 -05002117LINUX FOR POWERPC PA SEMI PWRFICIENT
2118P: Olof Johansson
2119M: olof@lixom.net
2120W: http://www.pasemi.com/
2121L: linuxppc-dev@ozlabs.org
2122S: Supported
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124LLC (802.2)
2125P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002126M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127S: Maintained
2128
2129LINUX FOR 64BIT POWERPC
2130P: Paul Mackerras
2131M: paulus@samba.org
2132M: paulus@au.ibm.com
2133P: Anton Blanchard
2134M: anton@samba.org
2135M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002136W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002137L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138S: Supported
2139
2140LINUX SECURITY MODULE (LSM) FRAMEWORK
2141P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002142M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002143L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002145T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146S: Supported
2147
2148LM83 HARDWARE MONITOR DRIVER
2149P: Jean Delvare
2150M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002151L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152S: Maintained
2153
2154LM90 HARDWARE MONITOR DRIVER
2155P: Jean Delvare
2156M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002157L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158S: Maintained
2159
2160LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2161P: Richard Russon (FlatCap)
2162M: ldm@flatcap.org
2163L: ldm-devel@lists.sourceforge.net
2164W: http://ldm.sourceforge.net
2165S: Maintained
2166
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002167LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2168P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002169M: Eric.Moore@lsi.com
2170M: support@lsi.com
2171L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002172L: linux-scsi@vger.kernel.org
2173W: http://www.lsilogic.com/support
2174S: Supported
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2177P: Matthew Wilcox
2178M: matthew@wil.cx
2179L: linux-scsi@vger.kernel.org
2180S: Maintained
2181
2182M68K ARCHITECTURE
2183P: Geert Uytterhoeven
2184M: geert@linux-m68k.org
2185P: Roman Zippel
2186M: zippel@linux-m68k.org
2187L: linux-m68k@lists.linux-m68k.org
2188W: http://www.linux-m68k.org/
2189W: http://linux-m68k-cvs.ubb.ca/
2190S: Maintained
2191
2192M68K ON APPLE MACINTOSH
2193P: Joshua Thompson
2194M: funaho@jurai.org
2195W: http://www.mac.linux-m68k.org/
2196L: linux-mac68k@mac.linux-m68k.org
2197S: Maintained
2198
2199M68K ON HP9000/300
2200P: Philip Blundell
2201M: philb@gnu.org
2202W: http://www.tazenda.demon.co.uk/phil/linux-hp
2203S: Maintained
2204
2205MARVELL YUKON / SYSKONNECT DRIVER
2206P: Mirko Lindner
2207M: mlindner@syskonnect.de
2208P: Ralph Roesler
2209M: rroesler@syskonnect.de
2210W: http://www.syskonnect.com
2211S: Supported
2212
Michael Kerriskfaf16682005-07-31 22:34:47 -07002213MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002214P: Michael Kerrisk
2215M: mtk-manpages@gmx.net
2216W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2217S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002218
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002219MARVELL MV643XX ETHERNET DRIVER
2220P: Dale Farnsworth
2221M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002223M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002224L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002225S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227MATROX FRAMEBUFFER DRIVER
2228P: Petr Vandrovec
2229M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002230L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231S: Maintained
2232
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002233MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002234P: Neela Syam Kolli
2235M: Neela.Kolli@engenio.com
2236S: linux-scsi@vger.kernel.org
2237W: http://megaraid.lsilogic.com
2238S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002239
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002240MEMORY MANAGEMENT
2241L: linux-mm@kvack.org
2242L: linux-kernel@vger.kernel.org
2243W: http://www.linux-mm.org
2244S: Maintained
2245
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002246MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247P: David Woodhouse
2248M: dwmw2@infradead.org
2249W: http://www.linux-mtd.infradead.org/
2250L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002251T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252S: Maintained
2253
Artem Bityutskiy48576402007-02-13 17:11:10 +02002254UNSORTED BLOCK IMAGES (UBI)
2255P: Artem Bityutskiy
2256M: dedekind@infradead.org
2257W: http://www.linux-mtd.infradead.org/
2258L: linux-mtd@lists.infradead.org
2259T: git git://git.infradead.org/ubi-2.6.git
2260S: Maintained
2261
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262MICROTEK X6 SCANNER
2263P: Oliver Neukum
2264M: oliver@neukum.name
2265S: Maintained
2266
2267MIPS
2268P: Ralf Baechle
2269M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002270W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002272T: git www.linux-mips.org:/pub/scm/linux.git
2273S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275MISCELLANEOUS MCA-SUPPORT
2276P: James Bottomley
2277M: jejb@steeleye.com
2278L: linux-kernel@vger.kernel.org
2279S: Maintained
2280
2281MODULE SUPPORT
2282P: Rusty Russell
2283M: rusty@rustcorp.com.au
2284L: linux-kernel@vger.kernel.org
2285S: Maintained
2286
2287MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2288P: Stelian Pop
2289M: stelian@popies.net
2290W: http://popies.net/meye/
2291S: Maintained
2292
2293MOUSE AND MISC DEVICES [GENERAL]
2294P: Alessandro Rubini
2295M: rubini@ipvvis.unipv.it
2296L: linux-kernel@vger.kernel.org
2297S: Maintained
2298
Jiri Slabyd7354102006-12-08 02:38:35 -08002299MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2300P: Jiri Slaby
2301M: jirislaby@gmail.com
2302L: linux-kernel@vger.kernel.org
2303S: Maintained
2304
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002305MSI LAPTOP SUPPORT
2306P: Lennart Poettering
2307M: mzxreary@0pointer.de
2308L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2309W: http://0pointer.de/lennart/tchibo.html
2310S: Maintained
2311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312MTRR AND SIMILAR SUPPORT [i386]
2313P: Richard Gooch
2314M: rgooch@atnf.csiro.au
2315L: linux-kernel@vger.kernel.org
2316W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2317S: Maintained
2318
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002319MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2320P: Pierre Ossman
2321M: drzeus-mmc@drzeus.cx
2322L: linux-kernel@vger.kernel.org
2323S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325MULTISOUND SOUND DRIVER
2326P: Andrew Veliath
2327M: andrewtv@usa.net
2328S: Maintained
2329
Jiri Slabyd7354102006-12-08 02:38:35 -08002330MULTITECH MULTIPORT CARD (ISICOM)
2331P: Jiri Slaby
2332M: jirislaby@gmail.com
2333L: linux-kernel@vger.kernel.org
2334S: Maintained
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336NATSEMI ETHERNET DRIVER (DP8381x)
2337P: Tim Hockin
2338M: thockin@hockin.org
2339S: Maintained
2340
2341NCP FILESYSTEM
2342P: Petr Vandrovec
2343M: vandrove@vc.cvut.cz
2344L: linware@sh.cvut.cz
2345S: Maintained
2346
2347NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2348P: James E.J. Bottomley
2349M: James.Bottomley@HansenPartnership.com
2350L: linux-scsi@vger.kernel.org
2351S: Maintained
2352
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002353NETEM NETWORK EMULATOR
2354P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002355M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002356L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002357S: Maintained
2358
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359NETFILTER/IPTABLES/IPCHAINS
2360P: Rusty Russell
2361P: Marc Boucher
2362P: James Morris
2363P: Harald Welte
2364P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002365P: Patrick McHardy
2366M: kaber@trash.net
2367L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002368L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002369L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370W: http://www.netfilter.org/
2371W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372S: Supported
2373
Paul Moore4cc67732006-09-25 15:57:13 -07002374NETLABEL
2375P: Paul Moore
2376M: paul.moore@hp.com
2377W: http://netlabel.sf.net
2378L: netdev@vger.kernel.org
2379S: Supported
2380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381NETROM NETWORK LAYER
2382P: Ralf Baechle
2383M: ralf@linux-mips.org
2384L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002385W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386S: Maintained
2387
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002388NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389P: Paul Clements
2390M: Paul.Clements@steeleye.com
2391S: Maintained
2392
2393NETWORK DEVICE DRIVERS
2394P: Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002395M: akpm@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396P: Jeff Garzik
2397M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002398L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002399T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400S: Maintained
2401
2402NETWORKING [GENERAL]
2403P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002404M: netdev@vger.kernel.org
2405L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002406W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407S: Maintained
2408
2409NETWORKING [IPv4/IPv6]
2410P: David S. Miller
2411M: davem@davemloft.net
2412P: Alexey Kuznetsov
2413M: kuznet@ms2.inr.ac.ru
2414P: Pekka Savola (ipv6)
2415M: pekkas@netcore.fi
2416P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002417M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418P: Hideaki YOSHIFUJI
2419M: yoshfuji@linux-ipv6.org
2420P: Patrick McHardy
2421M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002422L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002423T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424S: Maintained
2425
John W. Linville29f8f632006-01-18 14:52:48 -08002426NETWORKING [WIRELESS]
2427P: John W. Linville
2428M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002429L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002430T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2431S: Maintained
2432
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002433NETXEN (1/10) GbE SUPPORT
2434P: Amit S. Kale
2435M: amitkale@netxen.com
2436L: netdev@vger.kernel.org
2437W: http://www.netxen.com
2438S: Supported
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440IPVS
2441P: Wensong Zhang
2442M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002443P: Simon Horman
2444M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445P: Julian Anastasov
2446M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002447L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448S: Maintained
2449
2450NFS CLIENT
2451P: Trond Myklebust
2452M: trond.myklebust@fys.uio.no
2453L: linux-kernel@vger.kernel.org
2454S: Maintained
2455
2456NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002457P: Jan-Pascal van Best
2458M: janpascal@vanbest.org
2459P: Andreas Mohr
2460M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002461L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462S: Maintained
2463
2464NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2465P: YOKOTA Hiroshi
2466M: yokota@netlab.is.tsukuba.ac.jp
2467W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2468S: Maintained
2469
2470NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2471P: GOTO Masanori
2472M: gotom@debian.or.jp
2473P: YOKOTA Hiroshi
2474M: yokota@netlab.is.tsukuba.ac.jp
2475W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2476S: Maintained
2477
2478NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2479P: Eberhard Moenkeberg
2480M: emoenke@gwdg.de
2481L: linux-kernel@vger.kernel.org
2482S: Maintained
2483
2484NTFS FILESYSTEM
2485P: Anton Altaparmakov
2486M: aia21@cantab.net
2487L: linux-ntfs-dev@lists.sourceforge.net
2488L: linux-kernel@vger.kernel.org
2489W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002490T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491S: Maintained
2492
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002493NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002494P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002495M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002496L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002497S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002499OPENCORES I2C BUS DRIVER
2500P: Peter Korsgaard
2501M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002502L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002503S: Maintained
2504
Mark Fashehccd979b2005-12-15 14:31:24 -08002505ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2506P: Mark Fasheh
2507M: mark.fasheh@oracle.com
2508P: Kurt Hackel
2509M: kurt.hackel@oracle.com
2510L: ocfs2-devel@oss.oracle.com
2511W: http://oss.oracle.com/projects/ocfs2/
2512S: Supported
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514OLYMPIC NETWORK DRIVER
2515P: Peter De Shrijver
2516M: p2@ace.ulyssis.student.kuleuven.ac.be
2517P: Mike Phillips
2518M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002519L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520L: linux-tr@linuxtr.net
2521W: http://www.linuxtr.net
2522S: Maintained
2523
Harald Weltec1986ee2005-11-13 16:06:29 -08002524OMNIKEY CARDMAN 4000 DRIVER
2525P: Harald Welte
2526M: laforge@gnumonks.org
2527S: Maintained
2528
Harald Welte77c44ab2005-11-13 16:06:26 -08002529OMNIKEY CARDMAN 4040 DRIVER
2530P: Harald Welte
2531M: laforge@gnumonks.org
2532S: Maintained
2533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534ONSTREAM SCSI TAPE DRIVER
2535P: Willem Riede
2536M: osst@riede.org
2537L: osst-users@lists.sourceforge.net
2538L: linux-scsi@vger.kernel.org
2539S: Maintained
2540
2541OPL3-SA2, SA3, and SAx DRIVER
2542P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002543M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544L: linux-sound@vger.kernel.org
2545S: Maintained
2546
2547OPROFILE
2548P: Philippe Elie
2549M: phil.el@wanadoo.fr
2550L: oprofile-list@lists.sf.net
2551S: Maintained
2552
2553ORINOCO DRIVER
2554P: Pavel Roskin
2555M: proski@gnu.org
2556P: David Gibson
2557M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07002558L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07002559L: orinoco-users@lists.sourceforge.net
2560L: orinoco-devel@lists.sourceforge.net
2561W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562S: Maintained
2563
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002564PA SEMI ETHERNET DRIVER
2565P: Olof Johansson
2566M: olof@lixom.net
2567L: netdev@vger.kernel.org
2568S: Maintained
2569
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002570PA SEMI SMBUS DRIVER
2571P: Olof Johansson
2572M: olof@lixom.net
2573L: i2c@lm-sensors.org
2574S: Maintained
2575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576PARALLEL PORT SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577L: linux-parport@lists.infradead.org
David Brownell5fdc2ab2007-03-05 00:30:13 -08002578S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
2580PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2581P: Tim Waugh
2582M: tim@cyberelk.net
2583L: linux-parport@lists.infradead.org
2584W: http://www.torque.net/linux-pp.html
2585S: Maintained
2586
2587PARISC ARCHITECTURE
2588P: Matthew Wilcox
2589M: matthew@wil.cx
2590P: Grant Grundler
2591M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002592P: Kyle McMartin
2593M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594L: parisc-linux@parisc-linux.org
2595W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002596T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2597T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598S: Maintained
2599
Jim Cromie1662d322006-10-06 00:43:59 -07002600PC87360 HARDWARE MONITORING DRIVER
2601P: Jim Cromie
2602M: jim.cromie@gmail.com
2603L: lm-sensors@lm-sensors.org
2604S: Maintained
2605
2606PC8736x GPIO DRIVER
2607P: Jim Cromie
2608M: jim.cromie@gmail.com
2609S: Maintained
2610
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002611PCI ERROR RECOVERY
2612P: Linas Vepstas
2613M: linas@austin.ibm.com
2614L: linux-kernel@vger.kernel.org
2615L: linux-pci@atrey.karlin.mff.cuni.cz
2616S: Supported
2617
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2619P: Thomas Sailer
2620M: sailer@ife.ee.ethz.ch
2621L: linux-sound@vger.kernel.org
2622W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2623S: Maintained
2624
2625PCI SUBSYSTEM
2626P: Greg Kroah-Hartman
2627M: gregkh@suse.de
2628L: linux-kernel@vger.kernel.org
2629L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002630T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631S: Supported
2632
2633PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002634P: Kristen Carlson Accardi
2635M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636S: Supported
2637
2638PCI HOTPLUG COMPAQ DRIVER
2639P: Greg Kroah-Hartman
2640M: greg@kroah.com
2641S: Maintained
2642
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002643PCIE HOTPLUG DRIVER
2644P: Kristen Carlson Accardi
2645M: kristen.c.accardi@intel.com
2646L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002647S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002648
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002650P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002651L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002653T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002654S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
2656PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002657P: Don Fry
2658M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002659L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660S: Maintained
2661
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002662PER-TASK DELAY ACCOUNTING
2663P: Shailabh Nagar
2664M: nagar@watson.ibm.com
2665L: linux-kernel@vger.kernel.org
2666S: Maintained
2667
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002668PERSONALITY HANDLING
2669P: Christoph Hellwig
2670M: hch@infradead.org
2671L: linux-abi-devel@lists.sourceforge.net
2672S: Maintained
2673
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674PHRAM MTD DRIVER
2675P: Jörn Engel
2676M: joern@wh.fh-wedel.de
2677L: linux-mtd@lists.infradead.org
2678S: Maintained
2679
Peter Osterlund249a6772005-09-27 21:45:30 -07002680PKTCDVD DRIVER
2681P: Peter Osterlund
2682M: petero2@telia.com
2683L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002684S: Maintained
2685
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686POSIX CLOCKS and TIMERS
2687P: George Anzinger
2688M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002689L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690S: Supported
2691
Eugene Surovegin24682972005-10-14 03:00:53 -07002692POWERPC 4xx EMAC DRIVER
2693P: Eugene Surovegin
2694M: ebs@ebshome.net
2695W: http://kernel.ebshome.net/emac/
2696L: linuxppc-embedded@ozlabs.org
2697L: netdev@vger.kernel.org
2698S: Maintained
2699
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700PNP SUPPORT
2701P: Adam Belay
2702M: ambx1@neo.rr.com
2703S: Maintained
2704
Vitaly Wool999445d2007-01-04 13:07:03 +01002705PNXxxxx I2C DRIVER
2706P: Vitaly Wool
2707M: vitalywool@gmail.com
2708L: i2c@lm-sensors.org
2709S: Maintained
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711PPP PROTOCOL DRIVERS AND COMPRESSORS
2712P: Paul Mackerras
2713M: paulus@samba.org
2714L: linux-ppp@vger.kernel.org
2715S: Maintained
2716
2717PPP OVER ATM (RFC 2364)
2718P: Mitchell Blank Jr
2719M: mitch@sfgoth.com
2720S: Maintained
2721
2722PPP OVER ETHERNET
2723P: Michal Ostrowski
2724M: mostrows@speakeasy.net
2725S: Maintained
2726
2727PREEMPTIBLE KERNEL
2728P: Robert Love
2729M: rml@tech9.net
2730L: linux-kernel@vger.kernel.org
2731L: kpreempt-tech@lists.sourceforge.net
2732W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2733S: Supported
2734
2735PRISM54 WIRELESS DRIVER
2736P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002737M: developers@islsm.org
Johannes Berg724c6b32007-04-23 12:18:20 -07002738L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739W: http://prism54.org
2740S: Maintained
2741
2742PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2743P: Peter Denison
2744M: promise@pnd-pc.demon.co.uk
2745W: http://www.pnd-pc.demon.co.uk/promise/
2746S: Maintained
2747
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002748PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2749P: Mikael Pettersson
2750M: mikpe@it.uu.se
2751L: linux-ide@vger.kernel.org
2752S: Maintained
2753
Geoff Levandf58a9d12006-11-23 00:46:51 +01002754PS3 PLATFORM SUPPORT
2755P: Geoff Levand
2756M: geoffrey.levand@am.sony.com
2757L: linuxppc-dev@ozlabs.org
2758L: cbe-oss-dev@ozlabs.org
2759S: Supported
2760
Michael Krufky83202042006-07-03 00:24:18 -07002761PVRUSB2 VIDEO4LINUX DRIVER
2762P: Mike Isely
2763M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03002764L: pvrusb2@isely.net (subscribers-only)
Michael Krufky83202042006-07-03 00:24:18 -07002765L: video4linux-list@redhat.com
2766W: http://www.isely.net/pvrusb2/
2767S: Maintained
2768
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769PXA2xx SUPPORT
2770P: Nicolas Pitre
2771M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002772L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773S: Maintained
2774
2775QLOGIC QLA2XXX FC-SCSI DRIVER
2776P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002777M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778L: linux-scsi@vger.kernel.org
2779S: Supported
2780
Ron Mercer5a4faa872006-07-25 00:40:21 -07002781QLOGIC QLA3XXX NETWORK DRIVER
2782P: Ron Mercer
2783M: linux-driver@qlogic.com
2784L: netdev@vger.kernel.org
2785S: Supported
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787QNX4 FILESYSTEM
2788P: Anders Larsen
2789M: al@alarsen.net
2790L: linux-kernel@vger.kernel.org
2791W: http://www.alarsen.net/linux/qnx4fs/
2792S: Maintained
2793
2794RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002795P: Benjamin Herrenschmidt
2796M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002797L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798S: Maintained
2799
2800RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002801P: Paul Mackerras
2802M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002803L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804S: Maintained
2805
2806RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2807P: Corey Thomas
2808M: corey@world.std.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002809L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810S: Maintained
2811
Matt Mackall9e95ce22005-04-16 15:25:56 -07002812RANDOM NUMBER DRIVER
2813P: Matt Mackall
2814M: mpm@selenic.com
2815S: Maintained
2816
Matt Porter394b7012005-11-07 01:00:15 -08002817RAPIDIO SUBSYSTEM
2818P: Matt Porter
2819M: mporter@kernel.crashing.org
2820L: linux-kernel@vger.kernel.org
2821S: Maintained
2822
Josh Triplett595182b2006-10-04 02:17:21 -07002823READ-COPY UPDATE (RCU)
2824P: Dipankar Sarma
2825M: dipankar@in.ibm.com
2826W: http://www.rdrop.com/users/paulmck/rclock/
2827L: linux-kernel@vger.kernel.org
2828S: Supported
2829
2830RCUTORTURE MODULE
2831P: Josh Triplett
2832M: josh@freedesktop.org
2833L: linux-kernel@vger.kernel.org
2834S: Maintained
2835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836REAL TIME CLOCK DRIVER
2837P: Paul Gortmaker
2838M: p_gortmaker@yahoo.com
2839L: linux-kernel@vger.kernel.org
2840S: Maintained
2841
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002842REAL TIME CLOCK (RTC) SUBSYSTEM
2843P: Alessandro Zummo
2844M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002845L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002846S: Maintained
2847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848REISERFS FILE SYSTEM
2849P: Hans Reiser
2850M: reiserfs-dev@namesys.com
2851L: reiserfs-list@namesys.com
2852W: http://www.namesys.com
2853S: Supported
2854
2855ROCKETPORT DRIVER
2856P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857W: http://www.comtrol.com
2858S: Maintained
2859
2860ROSE NETWORK LAYER
2861P: Ralf Baechle
2862M: ralf@linux-mips.org
2863L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002864W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865S: Maintained
2866
2867RISCOM8 DRIVER
2868S: Orphan
2869
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002870S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002871P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002872M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002873L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002874S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002875
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876S390
2877P: Martin Schwidefsky
2878M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002879P: Heiko Carstens
2880M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002882L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002883W: http://www.ibm.com/developerworks/linux/linux390/
2884S: Supported
2885
2886S390 NETWORK DRIVERS
2887P: Frank Pavlic
2888M: fpavlic@de.ibm.com
2889M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002890L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002891W: http://www.ibm.com/developerworks/linux/linux390/
2892S: Supported
2893
2894S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002895P: Swen Schillig
2896M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002897M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002898L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002899W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900S: Supported
2901
2902SAA7146 VIDEO4LINUX-2 DRIVER
2903P: Michael Hunold
2904M: michael@mihu.de
2905W: http://www.mihu.de/linux/saa7146
2906S: Maintained
2907
2908SBPCD CDROM DRIVER
2909P: Eberhard Moenkeberg
2910M: emoenke@gwdg.de
2911L: linux-kernel@vger.kernel.org
2912S: Maintained
2913
2914SC1200 WDT DRIVER
2915P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002916M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917S: Maintained
2918
2919SCHEDULER
2920P: Ingo Molnar
2921M: mingo@elte.hu
2922P: Robert Love [the preemptible kernel bits]
2923M: rml@tech9.net
2924L: linux-kernel@vger.kernel.org
2925S: Maintained
2926
2927SCSI CDROM DRIVER
2928P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002929M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930L: linux-scsi@vger.kernel.org
2931W: http://www.kernel.dk
2932S: Maintained
2933
2934SCSI SG DRIVER
2935P: Doug Gilbert
2936M: dgilbert@interlog.com
2937L: linux-scsi@vger.kernel.org
2938W: http://www.torque.net/sg
2939S: Maintained
2940
2941SCSI SUBSYSTEM
2942P: James E.J. Bottomley
2943M: James.Bottomley@SteelEye.com
2944L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002945T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946S: Maintained
2947
2948SCSI TAPE DRIVER
2949P: Kai Mäkisara
2950M: Kai.Makisara@kolumbus.fi
2951L: linux-scsi@vger.kernel.org
2952S: Maintained
2953
2954SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07002955P: Vlad Yasevich
2956M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01002957P: Sridhar Samudrala
2958M: sri@us.ibm.com
2959L: lksctp-developers@lists.sourceforge.net
Sridhar Samudrala5f858132007-03-23 11:39:51 -07002960W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01002961S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
2963SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002964P: Jim Cromie
2965M: jim.cromie@gmail.com
2966S: Odd Fixes
2967
2968SCx200 GPIO DRIVER
2969P: Jim Cromie
2970M: jim.cromie@gmail.com
2971S: Maintained
2972
2973SCx200 HRT CLOCKSOURCE DRIVER
2974P: Jim Cromie
2975M: jim.cromie@gmail.com
2976S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978SECURITY CONTACT
2979P: Security Officers
2980M: security@kernel.org
2981S: Supported
2982
2983SELINUX SECURITY MODULE
2984P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002985M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002987M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05002988P: Eric Paris
2989M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990L: linux-kernel@vger.kernel.org (kernel issues)
Stephen Smalley588a3152007-02-23 09:20:09 -05002991L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992W: http://www.nsa.gov/selinux
2993S: Supported
2994
2995SERIAL ATA (SATA) SUBSYSTEM:
2996P: Jeff Garzik
2997M: jgarzik@pobox.com
2998L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002999T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000S: Supported
3001
3002SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
3003P: Pat Gefre
3004M: pfg@sgi.com
3005L: linux-ia64@vger.kernel.org
3006S: Supported
3007
3008SGI VISUAL WORKSTATION 320 AND 540
3009P: Andrey Panin
3010M: pazke@donpac.ru
3011L: linux-visws-devel@lists.sf.net
3012W: http://linux-visws.sf.net
3013S: Maintained for 2.6.
3014
3015SIMTEC EB110ATX (Chalice CATS)
3016P: Ben Dooks
3017P: Vincent Sanders
3018M: support@simtec.co.uk
3019W: http://www.simtec.co.uk/products/EB110ATX/
3020S: Supported
3021
3022SIMTEC EB2410ITX (BAST)
3023P: Ben Dooks
3024P: Vincent Sanders
3025M: support@simtec.co.uk
3026W: http://www.simtec.co.uk/products/EB2410ITX/
3027S: Supported
3028
Francois Romieu92aab3c2005-07-30 13:11:18 +02003029SIS 190 ETHERNET DRIVER
3030P: Francois Romieu
3031M: romieu@fr.zoreil.com
3032L: netdev@vger.kernel.org
3033S: Maintained
3034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035SIS 5513 IDE CONTROLLER DRIVER
3036P: Lionel Bouton
3037M: Lionel.Bouton@inet6.fr
3038W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3039W: http://gyver.homeip.net/sis5513/index.html
3040S: Maintained
3041
3042SIS 900/7016 FAST ETHERNET DRIVER
3043P: Daniele Venzano
3044M: venza@brownhat.org
3045W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003046L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047S: Maintained
3048
3049SIS FRAMEBUFFER DRIVER
3050P: Thomas Winischhofer
3051M: thomas@winischhofer.net
3052W: http://www.winischhofer.net/linuxsisvga.shtml
3053S: Maintained
3054
3055SIS USB2VGA DRIVER
3056P: Thomas Winischhofer
3057M: thomas@winischhofer.net
3058W: http://www.winischhofer.at/linuxsisusbvga.shtml
3059S: Maintained
3060
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061SMC91x ETHERNET DRIVER
3062P: Nicolas Pitre
3063M: nico@cam.org
3064S: Maintained
3065
Daniel Drake8f0f8502006-07-18 22:00:25 +01003066SOFTMAC LAYER (IEEE 802.11)
3067P: Johannes Berg
3068M: johannes@sipsolutions.net
3069P: Joe Jezak
3070M: josejx@gentoo.org
3071P: Daniel Drake
3072M: dsd@gentoo.org
3073W: http://softmac.sipsolutions.net/
Johannes Berg724c6b32007-04-23 12:18:20 -07003074L: linux-wireless@vger.kernel.org
Daniel Drake8f0f8502006-07-18 22:00:25 +01003075S: Maintained
3076
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077SOFTWARE RAID (Multiple Disks) SUPPORT
3078P: Ingo Molnar
3079M: mingo@redhat.com
3080P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003081M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003083S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
3085SOFTWARE SUSPEND:
3086P: Pavel Machek
3087M: pavel@suse.cz
David Brownellf318a632007-04-23 14:41:06 -07003088L: linux-pm@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089S: Maintained
3090
3091SONIC NETWORK DRIVER
3092P: Thomas Bogendoerfer
3093M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095S: Maintained
3096
3097SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01003098P: Mattia Dongili
3099M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01003100L: linux-acpi@vger.kernel.org
3101W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102S: Maintained
3103
3104SOUND
3105P: Jaroslav Kysela
3106M: perex@suse.cz
3107L: alsa-devel@alsa-project.org
3108S: Maintained
3109
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003110SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3111P: Liam Girdwood
3112M: liam.girdwood@wolfsonmicro.com
3113L: alsa-devel@alsa-project.org
3114S: Supported
3115
Kumar Gala025c3982006-04-02 16:05:54 -05003116SPI SUBSYSTEM
3117P: David Brownell
3118M: dbrownell@users.sourceforge.net
3119L: spi-devel-general@lists.sourceforge.net
3120S: Maintained
3121
Steven Rostedt855f46a2006-08-05 12:14:50 -07003122STABLE BRANCH:
3123P: Greg Kroah-Hartman
3124M: greg@kroah.com
3125P: Chris Wright
3126M: chrisw@sous-sol.org
3127L: stable@kernel.org
3128S: Maintained
3129
Kylene Hall1c72d462005-05-01 08:59:13 -07003130TPM DEVICE DRIVER
3131P: Kylene Hall
3132M: kjhall@us.ibm.com
3133W: http://tpmdd.sourceforge.net
Marcel Selhorstd3a7b6d2007-03-16 13:38:31 -08003134P: Marcel Selhorst
3135M: tpm@selhorst.net
3136W: http://www.prosec.rub.de/tpm/
Kylene Hall1c72d462005-05-01 08:59:13 -07003137L: tpmdd-devel@lists.sourceforge.net
3138S: Maintained
3139
Mark Gross1a80ba82005-10-30 15:02:55 -08003140Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003141P: Mark Gross
3142M: mark.gross@intel.com
3143S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003144
Chris Zankel48b415c2005-06-23 22:01:07 -07003145TENSILICA XTENSA PORT (xtensa):
3146P: Chris Zankel
3147M: chris@zankel.net
3148S: Maintained
3149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150UltraSPARC (sparc64):
3151P: David S. Miller
3152M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003154T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155S: Maintained
3156
3157SHARP LH SUPPORT (LH7952X & LH7A40X)
3158P: Marc Singer
3159M: elf@buici.com
3160W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003161L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162S: Maintained
3163
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003164SHPC HOTPLUG DRIVER
3165P: Kristen Carlson Accardi
3166M: kristen.c.accardi@intel.com
3167L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003168S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003169
Pierre Ossmand129bce2006-03-24 03:18:17 -08003170SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3171P: Pierre Ossman
3172M: drzeus-sdhci@drzeus.cx
3173L: sdhci-devel@list.drzeus.cx
3174W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3175S: Maintained
3176
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003177SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3178P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003179M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003180L: netdev@vger.kernel.org
3181S: Maintained
3182
Chris Boot1a87d942006-07-10 04:45:34 -07003183SOEKRIS NET48XX LED SUPPORT
3184P: Chris Boot
3185M: bootc@bootc.net
3186S: Maintained
3187
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188SPARC (sparc32):
3189P: William L. Irwin
3190M: wli@holomorphy.com
3191L: sparclinux@vger.kernel.org
3192S: Maintained
3193
3194SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3195P: Roger Wolff
3196M: R.E.Wolff@BitWizard.nl
3197L: linux-kernel@vger.kernel.org ?
3198S: Supported
3199
Jim Lewis2752e402006-09-29 02:01:19 -07003200SPIDERNET NETWORK DRIVER for CELL
Linas Vepstasfa302482007-02-20 16:45:27 -06003201P: Linas Vepstas
3202M: linas@austin.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07003203L: netdev@vger.kernel.org
3204S: Supported
3205
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206SRM (Alpha) environment access
3207P: Jan-Benedict Glaw
3208M: jbglaw@lug-owl.de
3209L: linux-kernel@vger.kernel.org
3210S: Maintained
3211
3212STARFIRE/DURALAN NETWORK DRIVER
3213P: Ion Badulescu
3214M: ionut@cs.columbia.edu
3215S: Maintained
3216
3217STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3218W: http://mosquitonet.Stanford.EDU/strip.html
3219S: Unsupported ?
3220
3221STRADIS MPEG-2 DECODER DRIVER
3222P: Nathan Laredo
3223M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224W: http://www.stradis.com/
3225S: Maintained
3226
3227SUPERH (sh)
3228P: Paul Mundt
3229M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003230L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232S: Maintained
3233
3234SUPERH64 (sh64)
3235P: Paul Mundt
3236M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237L: linuxsh-shmedia-dev@lists.sourceforge.net
3238W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239S: Maintained
3240
3241SUN3/3X
3242P: Sam Creasey
3243M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244W: http://sammy.net/sun3/
3245S: Maintained
3246
3247SVGA HANDLING
3248P: Martin Mares
3249M: mj@ucw.cz
3250L: linux-video@atrey.karlin.mff.cuni.cz
3251S: Maintained
3252
3253SYSV FILESYSTEM
3254P: Christoph Hellwig
3255M: hch@infradead.org
3256S: Maintained
3257
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003258TC CLASSIFIER
3259P: Jamal Hadi Salim
3260M: hadi@cyberus.ca
3261L: netdev@vger.kernel.org
3262S: Maintained
3263
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003264TCP LOW PRIORITY MODULE
3265P: Wong Hoi Sing, Edison
3266M: hswong3i@gmail.com
3267P: Hung Hing Lun, Mike
3268M: hlhung3i@gmail.com
3269W: http://tcp-lp-mod.sourceforge.net/
3270S: Maintained
3271
Alex Dubov4020f2d2006-10-04 02:15:37 -07003272TI FLASH MEDIA INTERFACE DRIVER
3273P: Alex Dubov
3274M: oakad@yahoo.com
3275S: Maintained
3276
Michael Buesch844dd052006-06-26 00:24:59 -07003277TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3278P: Deepak Saxena
3279M: dsaxena@plexity.net
3280S: Maintained
3281
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003282TASKSTATS STATISTICS INTERFACE
3283P: Shailabh Nagar
3284M: nagar@watson.ibm.com
3285L: linux-kernel@vger.kernel.org
3286S: Maintained
3287
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003289P: Romain Lievin
3290M: roms@lpg.ticalc.org
3291S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
Per Lidene86eaa32006-01-12 16:45:18 +01003293TIPC NETWORK LAYER
3294P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003295M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003296P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003297M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003298P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003299M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003300L: tipc-discussion@lists.sourceforge.net
3301W: http://tipc.sourceforge.net/
3302W: http://tipc.cslab.ericsson.net/
3303T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3304S: Maintained
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306TLAN NETWORK DRIVER
3307P: Samuel Chessman
3308M: chessman@tux.org
3309L: tlan-devel@lists.sourceforge.net
3310W: http://sourceforge.net/projects/tlan/
3311S: Maintained
3312
3313TOKEN-RING NETWORK DRIVER
3314P: Mike Phillips
3315M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003316L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317L: linux-tr@linuxtr.net
3318W: http://www.linuxtr.net
3319S: Maintained
3320
3321TOSHIBA ACPI EXTRAS DRIVER
3322P: John Belmonte
3323M: toshiba_acpi@memebeam.org
3324W: http://memebeam.org/toys/ToshibaAcpiDriver
3325S: Maintained
3326
3327TOSHIBA SMM DRIVER
3328P: Jonathan Buzzard
3329M: jonathan@buzzard.org.uk
3330L: tlinux-users@tce.toshiba-dme.co.jp
3331W: http://www.buzzard.org.uk/toshiba/
3332S: Maintained
3333
3334TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3335P: Muli Ben-Yehuda
3336M: mulix@mulix.org
3337L: linux-kernel@vger.kernel.org
3338S: Maintained
3339
3340TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003341P: Adrian Bunk
3342M: trivial@kernel.org
3343L: linux-kernel@vger.kernel.org
3344W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3345T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3346S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
3348TMS380 TOKEN-RING NETWORK DRIVER
3349P: Adam Fritzler
3350M: mid@auk.cx
3351L: linux-tr@linuxtr.net
3352W: http://www.auk.cx/tms380tr/
3353S: Maintained
3354
3355TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003356P: Valerie Henson
3357M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358L: tulip-users@lists.sourceforge.net
3359W: http://sourceforge.net/projects/tulip/
3360S: Maintained
3361
3362TUN/TAP driver
3363P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003364M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365L: vtun@office.satix.net
3366W: http://vtun.sourceforge.net/tun
3367S: Maintained
3368
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003369TURBOCHANNEL SUBSYSTEM
3370P: Maciej W. Rozycki
3371M: macro@linux-mips.org
3372S: Maintained
3373
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374U14-34F SCSI DRIVER
3375P: Dario Ballabio
3376M: ballabio_dario@emc.com
3377L: linux-scsi@vger.kernel.org
3378S: Maintained
3379
3380UDF FILESYSTEM
3381P: Ben Fennema
3382M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383W: http://linux-udf.sourceforge.net
3384S: Maintained
3385
3386UNIFORM CDROM DRIVER
3387P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003388M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389L: linux-kernel@vger.kernel.org
3390W: http://www.kernel.dk
3391S: Maintained
3392
3393USB ACM DRIVER
3394P: Oliver Neukum
3395M: oliver@neukum.name
3396L: linux-usb-users@lists.sourceforge.net
3397L: linux-usb-devel@lists.sourceforge.net
3398S: Maintained
3399
3400USB BLOCK DRIVER (UB ub)
3401P: Pete Zaitcev
3402M: zaitcev@redhat.com
3403L: linux-kernel@vger.kernel.org
3404L: linux-usb-devel@lists.sourceforge.net
3405S: Supported
3406
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407USB CDC ETHERNET DRIVER
3408P: Greg Kroah-Hartman
3409M: greg@kroah.com
3410L: linux-usb-users@lists.sourceforge.net
3411L: linux-usb-devel@lists.sourceforge.net
3412S: Maintained
3413W: http://www.kroah.com/linux-usb/
3414
Peter Korsgaardd0374f42007-02-16 17:03:54 +01003415USB DAVICOM DM9601 DRIVER
3416P: Peter Korsgaard
3417M: jacmet@sunsite.dk
3418L: linux-usb-devel@lists.sourceforge.net
3419W: http://www.linux-usb.org/usbnet
3420S: Maintained
3421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422USB EHCI DRIVER
3423P: David Brownell
3424M: dbrownell@users.sourceforge.net
3425L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003426S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
Luca Risolia7ce08c92006-01-11 02:06:59 +00003428USB ET61X[12]51 DRIVER
3429P: Luca Risolia
3430M: luca.risolia@studio.unibo.it
3431L: linux-usb-devel@lists.sourceforge.net
3432L: video4linux-list@redhat.com
3433W: http://www.linux-projects.org
3434S: Maintained
3435
David Brownell69ae9e32006-11-14 02:03:31 -08003436USB GADGET/PERIPHERAL SUBSYSTEM
3437P: David Brownell
3438M: dbrownell@users.sourceforge.net
3439L: linux-usb-devel@lists.sourceforge.net
3440W: http://www.linux-usb.org/gadget
3441S: Maintained
3442
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003444P: Jiri Kosina
3445M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446L: linux-usb-devel@lists.sourceforge.net
Jiri Kosinaa4dff392007-02-27 17:40:09 +01003447T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448S: Maintained
3449
3450USB HUB DRIVER
3451P: Johannes Erdfelt
3452M: johannes@erdfelt.com
3453L: linux-usb-users@lists.sourceforge.net
3454L: linux-usb-devel@lists.sourceforge.net
3455S: Maintained
3456
Olav Kongas959eea22005-11-03 17:38:14 +02003457USB ISP116X DRIVER
3458P: Olav Kongas
3459M: ok@artecdesign.ee
3460L: linux-usb-devel@lists.sourceforge.net
3461S: Maintained
3462
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463USB KAWASAKI LSI DRIVER
3464P: Oliver Neukum
3465M: oliver@neukum.name
3466L: linux-usb-users@lists.sourceforge.net
3467L: linux-usb-devel@lists.sourceforge.net
3468S: Maintained
3469
3470USB MASS STORAGE DRIVER
3471P: Matthew Dharm
3472M: mdharm-usb@one-eyed-alien.net
3473L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003474L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475S: Maintained
3476W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3477
3478USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003479P: David Brownell
3480M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481L: linux-usb-users@lists.sourceforge.net
3482L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003483S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
Matthias Urlichsba460e42005-07-14 00:33:47 -07003485USB OPTION-CARD DRIVER
3486P: Matthias Urlichs
3487M: smurf@smurf.noris.de
3488L: linux-usb-devel@lists.sourceforge.net
3489S: Maintained
3490
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491USB OV511 DRIVER
3492P: Mark McClelland
3493M: mmcclell@bigfoot.com
3494L: linux-usb-users@lists.sourceforge.net
3495L: linux-usb-devel@lists.sourceforge.net
3496W: http://alpha.dyndns.org/ov511/
3497S: Maintained
3498
3499USB PEGASUS DRIVER
3500P: Petko Manolov
3501M: petkan@users.sourceforge.net
3502L: linux-usb-users@lists.sourceforge.net
3503L: linux-usb-devel@lists.sourceforge.net
3504W: http://pegasus2.sourceforge.net/
3505S: Maintained
3506
3507USB PRINTER DRIVER
3508P: Vojtech Pavlik
3509M: vojtech@suse.cz
3510L: linux-usb-users@lists.sourceforge.net
3511L: linux-usb-devel@lists.sourceforge.net
3512S: Maintained
3513
3514USB RTL8150 DRIVER
3515P: Petko Manolov
3516M: petkan@users.sourceforge.net
3517L: linux-usb-users@lists.sourceforge.net
3518L: linux-usb-devel@lists.sourceforge.net
3519W: http://pegasus2.sourceforge.net/
3520S: Maintained
3521
3522USB SE401 DRIVER
3523P: Jeroen Vreeken
3524M: pe1rxq@amsat.org
3525L: linux-usb-users@lists.sourceforge.net
3526L: linux-usb-devel@lists.sourceforge.net
3527W: http://www.chello.nl/~j.vreeken/se401/
3528S: Maintained
3529
3530USB SERIAL CYBERJACK DRIVER
3531P: Matthias Bruestle and Harald Welte
3532M: support@reiner-sct.com
3533W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3534S: Maintained
3535
3536USB SERIAL DIGI ACCELEPORT DRIVER
3537P: Peter Berger and Al Borchers
3538M: pberger@brimson.com
3539M: alborchers@steinerpoint.com
3540L: linux-usb-users@lists.sourceforge.net
3541L: linux-usb-devel@lists.sourceforge.net
3542S: Maintained
3543
3544USB SERIAL DRIVER
3545P: Greg Kroah-Hartman
3546M: gregkh@suse.de
3547L: linux-usb-users@lists.sourceforge.net
3548L: linux-usb-devel@lists.sourceforge.net
3549S: Supported
3550
3551USB SERIAL BELKIN F5U103 DRIVER
3552P: William Greathouse
3553M: wgreathouse@smva.com
3554L: linux-usb-users@lists.sourceforge.net
3555L: linux-usb-devel@lists.sourceforge.net
3556S: Maintained
3557
3558USB SERIAL CYPRESS M8 DRIVER
3559P: Lonnie Mendez
3560M: dignome@gmail.com
3561L: linux-usb-users@lists.sourceforge.net
3562L: linux-usb-devel@lists.sourceforge.net
3563S: Maintained
3564W: http://geocities.com/i0xox0i
3565W: http://firstlight.net/cvs
3566
3567USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3568L: linux-usb-users@lists.sourceforge.net
3569L: linux-usb-devel@lists.sourceforge.net
3570S: Maintained
3571
3572USB AUERSWALD DRIVER
3573P: Wolfgang Muees
3574M: wolfgang@iksw-muees.de
3575L: linux-usb-users@lists.sourceforge.net
3576L: linux-usb-devel@lists.sourceforge.net
3577S: Maintained
3578
3579USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3580P: Gary Brubaker
3581M: xavyer@ix.netcom.com
3582L: linux-usb-users@lists.sourceforge.net
3583L: linux-usb-devel@lists.sourceforge.net
3584S: Maintained
3585
3586USB SERIAL KEYSPAN DRIVER
3587P: Greg Kroah-Hartman
3588M: greg@kroah.com
3589L: linux-usb-users@lists.sourceforge.net
3590L: linux-usb-devel@lists.sourceforge.net
3591W: http://www.kroah.com/linux/
3592S: Maintained
3593
3594USB SERIAL WHITEHEAT DRIVER
3595P: Stuart MacDonald
3596M: stuartm@connecttech.com
3597L: linux-usb-users@lists.sourceforge.net
3598L: linux-usb-devel@lists.sourceforge.net
3599W: http://www.connecttech.com
3600S: Supported
3601
3602USB SN9C10x DRIVER
3603P: Luca Risolia
3604M: luca.risolia@studio.unibo.it
3605L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003606L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607W: http://www.linux-projects.org
3608S: Maintained
3609
3610USB SUBSYSTEM
3611P: Greg Kroah-Hartman
3612M: gregkh@suse.de
3613L: linux-usb-users@lists.sourceforge.net
3614L: linux-usb-devel@lists.sourceforge.net
3615W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003616T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617S: Supported
3618
3619USB UHCI DRIVER
3620P: Alan Stern
3621M: stern@rowland.harvard.edu
3622L: linux-usb-users@lists.sourceforge.net
3623L: linux-usb-devel@lists.sourceforge.net
3624S: Maintained
3625
David Brownell69ae9e32006-11-14 02:03:31 -08003626USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627P: David Brownell
3628M: dbrownell@users.sourceforge.net
3629L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003630W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631S: Maintained
3632
3633USB W996[87]CF DRIVER
3634P: Luca Risolia
3635M: luca.risolia@studio.unibo.it
3636L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003637L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638W: http://www.linux-projects.org
3639S: Maintained
3640
Luca Risolia60f78052006-02-06 16:29:35 +00003641USB ZC0301 DRIVER
3642P: Luca Risolia
3643M: luca.risolia@studio.unibo.it
3644L: linux-usb-devel@lists.sourceforge.net
3645L: video4linux-list@redhat.com
3646W: http://www.linux-projects.org
3647S: Maintained
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649USB ZD1201 DRIVER
3650P: Jeroen Vreeken
3651M: pe1rxq@amsat.org
3652L: linux-usb-users@lists.sourceforge.net
3653L: linux-usb-devel@lists.sourceforge.net
3654W: http://linux-lc100020.sourceforge.net
3655S: Maintained
3656
3657USER-MODE LINUX
3658P: Jeff Dike
3659M: jdike@karaya.com
3660L: user-mode-linux-devel@lists.sourceforge.net
3661L: user-mode-linux-user@lists.sourceforge.net
3662W: http://user-mode-linux.sourceforge.net
3663S: Maintained
3664
3665FAT/VFAT/MSDOS FILESYSTEM:
3666P: OGAWA Hirofumi
3667M: hirofumi@mail.parknet.co.jp
3668L: linux-kernel@vger.kernel.org
3669S: Maintained
3670
3671VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3672P: Jeff Garzik
3673S: Odd fixes
3674
3675VIA RHINE NETWORK DRIVER
3676P: Roger Luethi
3677M: rl@hellgate.ch
3678S: Maintained
3679
Jean Delvare32c0a522005-09-22 21:47:58 +02003680VIAPRO SMBUS DRIVER
3681P: Jean Delvare
3682M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003683L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003684S: Maintained
3685
Francois Romieu01f20732007-01-26 00:57:17 -08003686VIA VELOCITY NETWORK DRIVER
3687P: Francois Romieu
3688M: romieu@fr.zoreil.com
3689L: netdev@vger.kernel.org
3690S: Maintained
3691
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692UCLINUX (AND M68KNOMMU)
3693P: Greg Ungerer
3694M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003696L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697S: Maintained
3698
3699UCLINUX FOR NEC V850
3700P: Miles Bader
3701M: uclinux-v850@lsi.nec.co.jp
3702W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3703W: http://www.ee.nec.de/uclinux/
3704S: Supported
3705
3706UCLINUX FOR RENESAS H8/300
3707P: Yoshinori Sato
3708M: ysato@users.sourceforge.jp
3709W: http://uclinux-h8.sourceforge.jp/
3710S: Supported
3711
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003712UFS FILESYSTEM
3713P: Evgeniy Dushistov
3714M: dushistov@mail.ru
3715L: linux-kernel@vger.kernel.org
3716S: Maintained
3717
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718USB DIAMOND RIO500 DRIVER
3719P: Cesar Miquel
3720M: miquel@df.uba.ar
3721L: rio500-users@lists.sourceforge.net
3722W: http://rio500.sourceforge.net
3723S: Maintained
3724
3725VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003726P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003727M: mchehab@infradead.org
3728M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003730W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003731T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003732S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
Juerg Haefligerab413192006-09-24 20:54:04 +02003734VT1211 HARDWARE MONITOR DRIVER
3735P: Juerg Haefliger
3736M: juergh@gmail.com
3737L: lm-sensors@lm-sensors.org
3738S: Maintained
3739
Roger Lucas1de9e372005-11-26 20:20:05 +01003740VT8231 HARDWARE MONITOR DRIVER
3741P: Roger Lucas
3742M: roger@planbit.co.uk
3743L: lm-sensors@lm-sensors.org
3744S: Maintained
3745
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746W1 DALLAS'S 1-WIRE BUS
3747P: Evgeniy Polyakov
3748M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749S: Maintained
3750
Charles Spirakis13927072006-07-05 18:05:15 +02003751W83791D HARDWARE MONITORING DRIVER
3752P: Charles Spirakis
3753M: bezaur@gmail.com
3754L: lm-sensors@lm-sensors.org
3755S: Maintained
3756
Rudolf Marek61db0112006-12-12 18:18:30 +01003757W83793 HARDWARE MONITORING DRIVER
3758P: Rudolf Marek
3759M: r.marek@assembler.cz
3760L: lm-sensors@lm-sensors.org
3761S: Maintained
3762
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763W83L51xD SD/MMC CARD INTERFACE DRIVER
3764P: Pierre Ossman
3765M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003766L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767W: http://projects.drzeus.cx/wbsd
3768S: Maintained
3769
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003770WATCHDOG DEVICE DRIVERS
3771P: Wim Van Sebroeck
3772M: wim@iguana.be
3773T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3774S: Maintained
3775
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3777P: Jean Tourrilhes
3778M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003779L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3781S: Maintained
3782
3783WD7000 SCSI DRIVER
3784P: Miroslav Zagorac
3785M: zaga@fly.cc.fer.hr
3786L: linux-scsi@vger.kernel.org
3787S: Maintained
3788
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003789WISTRON LAPTOP BUTTON DRIVER
3790P: Miloslav Trmac
3791M: mitr@volny.cz
3792S: Maintained
3793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794WL3501 WIRELESS PCMCIA CARD DRIVER
3795P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003796M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07003797L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003798W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799S: Maintained
3800
3801X.25 NETWORK LAYER
3802P: Henner Eisen
3803M: eis@baty.hanse.de
3804L: linux-x25@vger.kernel.org
3805S: Maintained
3806
3807XFS FILESYSTEM
3808P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003809P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003811L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003813T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814S: Supported
3815
Peter Korsgaard238b8722006-12-06 20:35:17 -08003816XILINX UARTLITE SERIAL DRIVER
3817P: Peter Korsgaard
3818M: jacmet@sunsite.dk
3819L: linux-serial@vger.kernel.org
3820S: Maintained
3821
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822X86 3-LEVEL PAGING (PAE) SUPPORT
3823P: Ingo Molnar
3824M: mingo@redhat.com
3825S: Maintained
3826
3827X86-64 port
3828P: Andi Kleen
3829M: ak@suse.de
3830L: discuss@x86-64.org
3831W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01003832T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833S: Maintained
3834
3835YAM DRIVER FOR AX.25
3836P: Jean-Paul Roubelat
3837M: jpr@f6fbb.org
3838L: linux-hams@vger.kernel.org
3839S: Maintained
3840
Henkaf64a5e2005-10-12 15:02:56 +02003841YEALINK PHONE DRIVER
3842P: Henk Vergonet
3843M: Henk.Vergonet@gmail.com
3844L: usbb2k-api-dev@nongnu.org
3845S: Maintained
3846
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847Z8530 DRIVER FOR AX.25
3848P: Joerg Reuter
3849M: jreuter@yaina.de
3850W: http://yaina.de/jreuter/
3851W: http://www.qsl.net/dl1bke/
3852L: linux-hams@vger.kernel.org
3853S: Maintained
3854
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003855ZD1211RW WIRELESS DRIVER
3856P: Daniel Drake
3857M: dsd@gentoo.org
3858P: Ulrich Kunitz
3859M: kune@deine-taler.de
3860W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07003861L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003862L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3863S: Maintained
3864
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865ZF MACHZ WATCHDOG
3866P: Fernando Fuganti
3867M: fuganti@netbank.com.br
3868W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3869S: Maintained
3870
3871ZR36067 VIDEO FOR LINUX DRIVER
3872P: Ronald Bultje
3873M: rbultje@ronald.bitfreak.net
3874L: mjpeg-users@lists.sourceforge.net
3875W: http://mjpeg.sourceforge.net/driver-zoran/
3876S: Maintained
3877
3878ZR36120 VIDEO FOR LINUX DRIVER
3879P: Pauline Middelink
3880M: middelin@polyware.nl
3881W: http://www.polyware.nl/~middelin/En/hobbies.html
3882W: http://www.polyware.nl/~middelin/hobbies.html
3883S: Maintained
3884
3885THE REST
3886P: Linus Torvalds
3887S: Buried alive in reporters