blob: ab258c7f46ac49bca527b64cc40c7bac6e4c5216 [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
659W: http://www.thekelleys.org.uk/atmel
660W: http://atmelwlandriver.sourceforge.net/
661S: Maintained
662
Chris Wrighta92b7b82005-07-07 18:12:23 -0700663AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100664P: David Woodhouse
665M: dwmw2@infradead.org
666L: linux-audit@redhat.com
667W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800668T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700669S: Maintained
670
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800671AUXILIARY DISPLAY DRIVERS
672P: Miguel Ojeda Sandonis
673M: maxextreme@gmail.com
674L: linux-kernel@vger.kernel.org
675S: Maintained
676
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700677AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700678P: Haavard Skinnemoen
679M: hskinnemoen@atmel.com
680W: http://www.atmel.com/products/AVR32/
681W: http://avr32linux.org/
682W: http://avrfreaks.net/
683S: Supported
684
685AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700686P: Haavard Skinnemoen
687M: hskinnemoen@atmel.com
688S: Supported
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690AX.25 NETWORK LAYER
691P: Ralf Baechle
692M: ralf@linux-mips.org
693L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200694W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695S: Maintained
696
Richard Purdie300abeb2007-02-07 22:21:07 +0000697BACKLIGHT CLASS/SUBSYSTEM
698P: Richard Purdie
699M: rpurdie@rpsys.net
700S: Maintained
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702BAYCOM/HDLCDRV DRIVERS FOR AX.25
703P: Thomas Sailer
704M: t.sailer@alumni.ethz.ch
705L: linux-hams@vger.kernel.org
706W: http://www.baycom.org/~tom/ham/ham.html
707S: Maintained
708
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200709BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
710P: Larry Finger
711M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200712P: Stefano Brivio
713M: st3@riseup.net
714W: http://bcm43xx.berlios.de/
715S: Maintained
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717BEFS FILE SYSTEM
718P: Sergey S. Kostyliov
719M: rathamahata@php4.ru
720L: linux-kernel@vger.kernel.org
721S: Maintained
722
723BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
724P: Kenji Hollis
725W: http://ftp.bitgate.com/pcwd/
726S: Maintained
727
728BFS FILE SYSTEM
729P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800730M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731L: linux-kernel@vger.kernel.org
732S: Maintained
733
734BLOCK LAYER
735P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200736M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800738T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739S: Maintained
740
741BLUETOOTH SUBSYSTEM
742P: Marcel Holtmann
743M: marcel@holtmann.org
744P: Maxim Krasnyansky
745M: maxk@qualcomm.com
746L: bluez-devel@lists.sf.net
747W: http://bluez.sf.net
748W: http://www.bluez.org
749W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800750T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751S: Maintained
752
753BLUETOOTH RFCOMM LAYER
754P: Marcel Holtmann
755M: marcel@holtmann.org
756P: Maxim Krasnyansky
757M: maxk@qualcomm.com
758S: Maintained
759
760BLUETOOTH BNEP LAYER
761P: Marcel Holtmann
762M: marcel@holtmann.org
763P: Maxim Krasnyansky
764M: maxk@qualcomm.com
765S: Maintained
766
767BLUETOOTH CMTP LAYER
768P: Marcel Holtmann
769M: marcel@holtmann.org
770S: Maintained
771
772BLUETOOTH HIDP LAYER
773P: Marcel Holtmann
774M: marcel@holtmann.org
775S: Maintained
776
777BLUETOOTH HCI UART DRIVER
778P: Marcel Holtmann
779M: marcel@holtmann.org
780P: Maxim Krasnyansky
781M: maxk@qualcomm.com
782S: Maintained
783
784BLUETOOTH HCI USB DRIVER
785P: Marcel Holtmann
786M: marcel@holtmann.org
787P: Maxim Krasnyansky
788M: maxk@qualcomm.com
789S: Maintained
790
791BLUETOOTH HCI BCM203X DRIVER
792P: Marcel Holtmann
793M: marcel@holtmann.org
794S: Maintained
795
796BLUETOOTH HCI BPA10X DRIVER
797P: Marcel Holtmann
798M: marcel@holtmann.org
799S: Maintained
800
801BLUETOOTH HCI BFUSB DRIVER
802P: Marcel Holtmann
803M: marcel@holtmann.org
804S: Maintained
805
806BLUETOOTH HCI DTL1 DRIVER
807P: Marcel Holtmann
808M: marcel@holtmann.org
809S: Maintained
810
811BLUETOOTH HCI BLUECARD DRIVER
812P: Marcel Holtmann
813M: marcel@holtmann.org
814S: Maintained
815
816BLUETOOTH HCI BT3C DRIVER
817P: Marcel Holtmann
818M: marcel@holtmann.org
819S: Maintained
820
821BLUETOOTH HCI BTUART DRIVER
822P: Marcel Holtmann
823M: marcel@holtmann.org
824S: Maintained
825
826BLUETOOTH HCI VHCI DRIVER
827P: Maxim Krasnyansky
828M: maxk@qualcomm.com
829S: Maintained
830
831BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100832P: Chad Tindel
833M: ctindel@users.sourceforge.net
834P: Jay Vosburgh
835M: fubar@us.ibm.com
836L: bonding-devel@lists.sourceforge.net
837W: http://sourceforge.net/projects/bonding/
838S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000840BROADBAND PROCESSOR ARCHITECTURE
841P: Arnd Bergmann
842M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100843L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400844W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000845S: Supported
846
Gary Zambrano39105892006-06-22 17:26:20 -0700847BROADCOM B44 10/100 ETHERNET DRIVER
848P: Gary Zambrano
849M: zambrano@broadcom.com
850L: netdev@vger.kernel.org
851S: Supported
852
Michael Chan948c51e2006-06-04 02:51:39 -0700853BROADCOM BNX2 GIGABIT ETHERNET DRIVER
854P: Michael Chan
855M: mchan@broadcom.com
856L: netdev@vger.kernel.org
857S: Supported
858
859BROADCOM TG3 GIGABIT ETHERNET DRIVER
860P: Michael Chan
861M: mchan@broadcom.com
862L: netdev@vger.kernel.org
863S: Supported
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700866P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200867M: mchehab@infradead.org
868M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700870W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200871T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700872S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200874CALGARY x86-64 IOMMU
875P: Muli Ben-Yehuda
876M: muli@il.ibm.com
877P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200878M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200879L: linux-kernel@vger.kernel.org
880L: discuss@x86-64.org
881S: Maintained
882
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800883CFAG12864B LCD DRIVER
884P: Miguel Ojeda Sandonis
885M: maxextreme@gmail.com
886L: linux-kernel@vger.kernel.org
887S: Maintained
888
889CFAG12864BFB LCD FRAMEBUFFER DRIVER
890P: Miguel Ojeda Sandonis
891M: maxextreme@gmail.com
892L: linux-kernel@vger.kernel.org
893S: Maintained
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895COMMON INTERNET FILE SYSTEM (CIFS)
896P: Steve French
897M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100898L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899L: samba-technical@lists.samba.org
900W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800901T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902S: Supported
903
Joel Becker7063fbf2005-12-15 14:29:43 -0800904CONFIGFS
905P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800906M: joel.becker@oracle.com
907L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800908S: Supported
909
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800910CIRRUS LOGIC EP93XX ETHERNET DRIVER
911P: Lennert Buytenhek
912M: kernel@wantstofly.org
913L: netdev@vger.kernel.org
914S: Maintained
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916CIRRUS LOGIC GENERIC FBDEV DRIVER
917P: Jeff Garzik
918M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800919L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920S: Odd Fixes
921
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800922CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
923P: Lennert Buytenhek
924M: kernel@wantstofly.org
925L: linux-usb-devel@lists.sourceforge.net
926S: Maintained
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
929P: Cirrus Logic Corporation (kernel 2.2 driver)
930M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
931P: Nils Faerber (port to kernel 2.4)
932M: Nils Faerber <nils@kernelconcepts.de>
933S: Maintained
934
935CODA FILE SYSTEM
936P: Jan Harkes
937M: jaharkes@cs.cmu.edu
938M: coda@cs.cmu.edu
939L: codalist@coda.cs.cmu.edu
940W: http://www.coda.cs.cmu.edu/
941S: Maintained
942
943COMPACTPCI HOTPLUG CORE
944P: Scott Murray
945M: scottm@somanetworks.com
946M: scott@spiteful.org
947L: pcihpd-discuss@lists.sourceforge.net
948S: Supported
949
950COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
951P: Scott Murray
952M: scottm@somanetworks.com
953M: scott@spiteful.org
954L: pcihpd-discuss@lists.sourceforge.net
955S: Supported
956
957COMPACTPCI HOTPLUG GENERIC DRIVER
958P: Scott Murray
959M: scottm@somanetworks.com
960M: scott@spiteful.org
961L: pcihpd-discuss@lists.sourceforge.net
962S: Supported
963
964COMPUTONE INTELLIPORT MULTIPORT CARD
965P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700966M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700968S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970COSA/SRP SYNC SERIAL DRIVER
971P: Jan "Yenya" Kasprzak
972M: kas@fi.muni.cz
973W: http://www.fi.muni.cz/~kas/cosa/
974S: Maintained
975
976CPU FREQUENCY DRIVERS
977P: Dave Jones
978M: davej@codemonkey.org.uk
979L: cpufreq@lists.linux.org.uk
980W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500981T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982S: Maintained
983
984CPUID/MSR DRIVER
985P: H. Peter Anvin
986M: hpa@zytor.com
987S: Maintained
988
Paul Jacksoned90fb42005-09-27 21:45:37 -0700989CPUSETS
990P: Paul Jackson
991P: Simon Derr
992M: pj@sgi.com
993M: simon.derr@bull.net
994L: linux-kernel@vger.kernel.org
995W: http://www.bullopensource.org/cpuset/
996S: Supported
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100999W: http://sourceforge.net/projects/cramfs/
1000S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002CRIS PORT
1003P: Mikael Starvik
1004M: starvik@axis.com
1005L: dev-etrax@axis.com
1006W: http://developer.axis.com
1007S: Maintained
1008
1009CRYPTO API
1010P: Herbert Xu
1011M: herbert@gondor.apana.org.au
1012P: David S. Miller
1013M: davem@davemloft.net
1014L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001015T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016S: Maintained
1017
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001018CS5535 Audio ALSA driver
1019P: Jaya Kumar
1020M: jayakumar.alsa@gmail.com
1021S: Maintained
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023CYBERPRO FB DRIVER
1024P: Russell King
1025M: rmk@arm.linux.org.uk
1026W: http://www.arm.linux.org.uk/
1027S: Maintained
1028
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001029CYBLAFB FRAMEBUFFER DRIVER
1030P: Knut Petersen
1031M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001032L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001033S: Maintained
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035CYCLADES 2X SYNC CARD DRIVER
1036P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001037M: acme@ghostprotocols.net
1038W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039S: Maintained
1040
1041CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001043S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001047S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049DAMA SLAVE for AX.25
1050P: Joerg Reuter
1051M: jreuter@yaina.de
1052W: http://yaina.de/jreuter/
1053W: http://www.qsl.net/dl1bke/
1054L: linux-hams@vger.kernel.org
1055S: Maintained
1056
1057DC395x SCSI driver
1058P: Oliver Neukum
1059M: oliver@neukum.name
1060P: Ali Akcaagac
1061M: aliakc@web.de
1062P: Jamie Lenehan
1063M: lenehan@twibble.org
1064W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001065L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066L: http://lists.twibble.org/mailman/listinfo/dc395x/
1067S: Maintained
1068
1069DC390/AM53C974 SCSI driver
1070P: Kurt Garloff
1071M: garloff@suse.de
1072W: http://www.garloff.de/kurt/linux/dc390/
1073P: Guennadi Liakhovetski
1074M: g.liakhovetski@gmx.de
1075S: Maintained
1076
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001077DCCP PROTOCOL
1078P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001079M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001080L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001081W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001082S: Maintained
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084DECnet NETWORK LAYER
1085P: Patrick Caulfield
1086M: patrick@tykepenguin.com
1087W: http://linux-decnet.sourceforge.net
1088L: linux-decnet-user@lists.sourceforge.net
1089S: Maintained
1090
1091DEFXX FDDI NETWORK DRIVER
1092P: Maciej W. Rozycki
1093M: macro@linux-mips.org
1094S: Maintained
1095
1096DELL LAPTOP SMM DRIVER
1097P: Massimo Dal Zotto
1098M: dz@debian.org
1099W: http://www.debian.org/~dz/i8k/
1100S: Maintained
1101
Doug Warzecha90563ec2005-09-06 15:17:15 -07001102DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1103P: Doug Warzecha
1104M: Douglas_Warzecha@dell.com
1105S: Maintained
1106
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001107DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108P: Alasdair Kergon
1109L: dm-devel@redhat.com
1110W: http://sources.redhat.com/dm
1111S: Maintained
1112
1113DEVICE NUMBER REGISTRY
1114P: Torben Mathiasen
1115M: device@lanana.org
1116W: http://lanana.org/docs/device-list/index.html
1117L: linux-kernel@vger.kernel.org
1118S: Maintained
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120DIGI INTL. EPCA DRIVER
1121P: Digi International, Inc
1122M: Eng.Linux@digi.com
1123L: Eng.Linux@digi.com
1124W: http://www.digi.com
1125S: Orphaned
1126
1127DIGI RIGHTSWITCH NETWORK DRIVER
1128P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001129L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130W: http://www.digi.com
1131S: Orphaned
1132
1133DIRECTORY NOTIFICATION
1134P: Stephen Rothwell
1135M: sfr@canb.auug.org.au
1136L: linux-kernel@vger.kernel.org
1137S: Supported
1138
1139DISK GEOMETRY AND PARTITION HANDLING
1140P: Andries Brouwer
1141M: aeb@cwi.nl
1142W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1143W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1144W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1145S: Maintained
1146
1147DISKQUOTA:
1148P: Jan Kara
1149M: jack@suse.cz
1150L: linux-kernel@vger.kernel.org
1151S: Maintained
1152
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001153DISTRIBUTED LOCK MANAGER
1154P: Patrick Caulfield
1155M: pcaulfie@redhat.com
1156P: David Teigland
1157M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001158L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001159W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001160T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1161T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001162S: Supported
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1165P: Tobias Ringstrom
1166M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001167L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168S: Maintained
1169
Martin Waitzba483d52005-06-17 13:20:59 -07001170DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001171P: Randy Dunlap
1172M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001173S: Maintained
1174
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001175DOCKING STATION DRIVER
1176P: Kristen Carlson Accardi
1177M: kristen.c.accardi@intel.com
1178L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001179S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181DOUBLETALK DRIVER
1182P: James R. Van Zandt
1183M: jrv@vanzandt.mv.com
1184L: blinux-list@redhat.com
1185S: Maintained
1186
1187DRIVER CORE, KOBJECTS, AND SYSFS
1188P: Greg Kroah-Hartman
1189M: gregkh@suse.de
1190L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001191T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192S: Supported
1193
1194DRM DRIVERS
1195P: David Airlie
1196M: airlied@linux.ie
1197L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001198T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199S: Maintained
1200
1201DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001202P: Francois Romieu
1203M: romieu@fr.zoreil.com
1204L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205S: Maintained
1206
1207DVB SUBSYSTEM AND DRIVERS
1208P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001209M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001211W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001212T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001213S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215EATA-DMA SCSI DRIVER
1216P: Michael Neuffer
1217L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1218S: Maintained
1219
1220EATA ISA/EISA/PCI SCSI DRIVER
1221P: Dario Ballabio
1222M: ballabio_dario@emc.com
1223L: linux-scsi@vger.kernel.org
1224S: Maintained
1225
1226EATA-PIO SCSI DRIVER
1227P: Michael Neuffer
1228M: mike@i-Connect.Net
1229L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1230S: Maintained
1231
1232EBTABLES
1233P: Bart De Schuymer
1234M: bart.de.schuymer@pandora.be
1235L: ebtables-user@lists.sourceforge.net
1236L: ebtables-devel@lists.sourceforge.net
1237W: http://ebtables.sourceforge.net/
1238S: Maintained
1239
Michael Halcrow237fead2006-10-04 02:16:22 -07001240ECRYPT FILE SYSTEM
1241P: Mike Halcrow, Phillip Hellewell
1242M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1243L: ecryptfs-devel@lists.sourceforge.net
1244W: http://ecryptfs.sourceforge.net/
1245S: Supported
1246
Alan Coxda9bb1d2006-01-18 17:44:13 -08001247EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001248P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001249M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001250L: bluesmoke-devel@lists.sourceforge.net
1251W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001252S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001253
1254EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001255P: Mark Gross
1256M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001257L: bluesmoke-devel@lists.sourceforge.net
1258W: bluesmoke.sourceforge.net
1259S: Maintained
1260
1261EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001262P: Doug Thompson
1263M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001264L: bluesmoke-devel@lists.sourceforge.net
1265W: bluesmoke.sourceforge.net
1266S: Maintained
1267
1268EDAC-R82600
1269P: Tim Small
1270M: tim@buttersideup.com
1271L: bluesmoke-devel@lists.sourceforge.net
1272W: bluesmoke.sourceforge.net
1273S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275EEPRO100 NETWORK DRIVER
1276P: Andrey V. Savochkin
1277M: saw@saw.sw.com.sg
1278S: Maintained
1279
Josh Triplett0bee8d22006-07-30 03:03:58 -07001280EFS FILESYSTEM
1281W: http://aeschi.ch.eu.org/efs/
1282S: Orphan
1283
Heiko J Schickfab97222006-09-22 15:22:22 -07001284EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1285P: Hoang-Nam Nguyen
1286M: hnguyen@de.ibm.com
1287P: Christoph Raisch
1288M: raisch@de.ibm.com
1289L: openib-general@openib.org
1290S: Supported
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292EMU10K1 SOUND DRIVER
1293P: James Courtier-Dutton
1294M: James@superbug.demon.co.uk
1295L: emu10k1-devel@lists.sourceforge.net
1296W: http://sourceforge.net/projects/emu10k1/
1297S: Maintained
1298
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001299EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001300P: James Smart
1301M: james.smart@emulex.com
1302L: linux-scsi@vger.kernel.org
1303W: http://sourceforge.net/projects/lpfcxxxx
1304S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306EPSON 1355 FRAMEBUFFER DRIVER
1307P: Christopher Hoover
1308M: ch@murgatroid.com, ch@hpl.hp.com
1309S: Maintained
1310
1311ETHEREXPRESS-16 NETWORK DRIVER
1312P: Philip Blundell
1313M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001314L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315S: Maintained
1316
1317ETHERNET BRIDGE
1318P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08001319M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07001320L: bridge@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321W: http://bridge.sourceforge.net/
1322S: Maintained
1323
1324ETHERTEAM 16I DRIVER
1325P: Mika Kuoppala
1326M: miku@iki.fi
1327S: Maintained
1328
1329EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001330L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331S: Maintained
1332
1333EXT3 FILE SYSTEM
1334P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001335M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001336L: linux-ext4@vger.kernel.org
1337S: Maintained
1338
1339EXT4 FILE SYSTEM
1340P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001341M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001342L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343S: Maintained
1344
Jean Delvaree53004e2006-01-09 23:26:14 +01001345F71805F HARDWARE MONITORING DRIVER
1346P: Jean Delvare
1347M: khali@linux-fr.org
1348L: lm-sensors@lm-sensors.org
1349S: Maintained
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351FARSYNC SYNCHRONOUS DRIVER
1352P: Kevin Curtis
1353M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354W: http://www.farsite.co.uk/
1355S: Supported
1356
Akinobu Mitac5408b82007-04-23 14:41:20 -07001357FAULT INJECTION SUPPORT
1358P: Akinobu Mita
1359M: akinobu.mita@gmail.com
1360S: Supported
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362FRAMEBUFFER LAYER
1363P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001364M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001365L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366W: http://linux-fbdev.sourceforge.net/
1367S: Maintained
1368
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001369FREESCALE SOC FS_ENET DRIVER
1370P: Pantelis Antoniou
1371M: pantelis.antoniou@gmail.com
1372P: Vitaly Bordug
1373M: vbordug@ru.mvista.com
1374L: linuxppc-embedded@ozlabs.org
1375L: netdev@vger.kernel.org
1376S: Maintained
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378FILE LOCKING (flock() and fcntl()/lockf())
1379P: Matthew Wilcox
1380M: matthew@wil.cx
1381L: linux-fsdevel@vger.kernel.org
1382S: Maintained
1383
1384FILESYSTEMS (VFS and infrastructure)
1385P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001386M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387S: Maintained
1388
1389FIRMWARE LOADER (request_firmware)
1390L: linux-kernel@vger.kernel.org
1391S: Orphan
1392
1393FPU EMULATOR
1394P: Bill Metzenthen
1395M: billm@suburbia.net
1396W: http://suburbia.net/~billm/floating-point/emulator/
1397S: Maintained
1398
1399FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1400P: Mike McLagan
1401M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001402L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403S: Maintained
1404
1405FREEVXFS FILESYSTEM
1406P: Christoph Hellwig
1407M: hch@infradead.org
1408W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1409S: Maintained
1410
David Howells5ab7ffe2007-04-10 15:10:45 +01001411FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412P: David Howells
1413M: dhowells@redhat.com
1414S: Maintained
1415
Miklos Szeredi04578f12005-09-09 13:10:22 -07001416FUSE: FILESYSTEM IN USERSPACE
1417P: Miklos Szeredi
1418M: miklos@szeredi.hu
1419L: fuse-devel@lists.sourceforge.net
1420W: http://fuse.sourceforge.net/
1421S: Maintained
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1424P: Rik Faith
1425M: faith@cs.unc.edu
1426L: linux-scsi@vger.kernel.org
1427S: Odd fixes (e.g., new signatures)
1428
1429GDT SCSI DISK ARRAY CONTROLLER DRIVER
1430P: Achim Leubner
1431M: achim_leubner@adaptec.com
1432L: linux-scsi@vger.kernel.org
1433W: http://www.icp-vortex.com/
1434S: Supported
1435
1436GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1437P: Krzysztof Halasa
1438M: khc@pm.waw.pl
1439W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1440S: Maintained
1441
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001442GFS2 FILE SYSTEM
1443P: Steven Whitehouse
1444M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001445L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001446W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001447T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1448T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001449S: Supported
1450
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001451GIGASET ISDN DRIVERS
1452P: Hansjoerg Lipp
1453M: hjlipp@web.de
1454P: Tilman Schmidt
1455M: tilman@imap.cc
1456L: gigaset307x-common@lists.sourceforge.net
1457W: http://gigaset307x.sourceforge.net/
1458S: Maintained
1459
Jean Delvare5b543962005-08-15 19:51:02 +02001460HARDWARE MONITORING
1461P: Jean Delvare
1462M: khali@linux-fr.org
1463L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001464W: http://www.lm-sensors.org/
1465T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001466S: Maintained
1467
Michael Buesch844dd052006-06-26 00:24:59 -07001468HARDWARE RANDOM NUMBER GENERATOR CORE
1469P: Michael Buesch
1470M: mb@bu3sch.de
1471S: Maintained
1472
Robert Love860e1d62005-08-31 23:57:59 -04001473HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1474P: Robert Love
1475M: rlove@rlove.org
1476M: linux-kernel@vger.kernel.org
1477W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1478S: Maintained
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480HARMONY SOUND DRIVER
1481P: Kyle McMartin
1482M: kyle@parisc-linux.org
1483W: http://www.parisc-linux.org/~kyle/harmony/
1484L: parisc-linux@lists.parisc-linux.org
1485S: Maintained
1486
1487HAYES ESP SERIAL DRIVER
1488P: Andrew J. Robinson
1489M: arobinso@nyx.net
1490L: linux-kernel@vger.kernel.org
1491W: http://www.nyx.net/~arobinso
1492S: Maintained
1493
1494HFS FILESYSTEM
1495P: Roman Zippel
1496M: zippel@linux-m68k.org
1497L: linux-kernel@vger.kernel.org
1498S: Maintained
1499
1500HGA FRAMEBUFFER DRIVER
1501P: Ferenc Bakonyi
1502M: fero@drama.obuda.kando.hu
1503L: linux-nvidia@lists.surfsouth.com
1504W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1505S: Maintained
1506
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001507HID CORE LAYER
1508P: Jiri Kosina
1509M: jkosina@suse.cz
1510L: linux-input@atrey.karlin.mff.cuni.cz
Jiri Kosinaa4dff392007-02-27 17:40:09 +01001511T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001512S: Maintained
1513
Ingo Molnar38bed542007-02-22 09:09:34 +01001514HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
1515P: Thomas Gleixner
1516M: tglx@linutronix.de
1517L: linux-kernel@vger.kernel.org
1518S: Maintained
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520HIGH-SPEED SCC DRIVER FOR AX.25
1521P: Klaus Kudielka
1522M: klaus.kudielka@ieee.org
1523L: linux-hams@vger.kernel.org
1524W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1525S: Maintained
1526
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001527HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1528P: HighPoint Linux Team
1529M: linux@highpoint-tech.com
1530W: http://www.highpoint-tech.com
1531S: Supported
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533HIPPI
1534P: Jes Sorensen
1535M: jes@trained-monkey.org
1536L: linux-hippi@sunsite.dk
1537S: Maintained
1538
1539HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1540P: Chirag Kantharia
1541M: chirag.kantharia@hp.com
1542L: iss_storagedev@hp.com
1543S: Maintained
1544
1545HEWLETT-PACKARD SMART2 RAID DRIVER
1546P: Chirag Kantharia
1547M: chirag.kantharia@hp.com
1548L: iss_storagedev@hp.com
1549S: Maintained
1550
1551HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1552P: Mike Miller
1553M: mike.miller@hp.com
1554L: iss_storagedev@hp.com
1555S: Supported
1556
Jouni Malinenff1d2762005-05-12 22:54:16 -04001557HOST AP DRIVER
1558P: Jouni Malinen
1559M: jkmaline@cc.hut.fi
1560L: hostap@shmoo.com
1561W: http://hostap.epitest.fi/
1562S: Maintained
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1565P: Jaroslav Kysela
1566M: perex@suse.cz
1567S: Maintained
1568
Bob Piccob9b03322005-11-07 00:59:19 -08001569HPET: High Precision Event Timers driver (hpet.c)
1570P: Clemens Ladisch
1571M: clemens@ladisch.de
1572S: Maintained
1573
1574HPET: i386
1575P: Venkatesh Pallipadi (Venki)
1576M: venkatesh.pallipadi@intel.com
1577S: Maintained
1578
1579HPET: x86_64
1580P: Andi Kleen and Vojtech Pavlik
1581M: ak@muc.de and vojtech@suse.cz
1582S: Maintained
1583
1584HPET: ACPI hpet.c
1585P: Bob Picco
1586M: bob.picco@hp.com
1587S: Maintained
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589HPFS FILESYSTEM
1590P: Mikulas Patocka
1591M: mikulas@artax.karlin.mff.cuni.cz
1592W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1593S: Maintained
1594
1595HUGETLB FILESYSTEM
1596P: William Irwin
1597M: wli@holomorphy.com
1598S: Maintained
1599
Jean Delvare5b543962005-08-15 19:51:02 +02001600I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601P: Jean Delvare
1602M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001603L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001604T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605S: Maintained
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607i386 BOOT CODE
1608P: Riley H. Williams
1609M: Riley@Williams.Name
1610L: Linux-Kernel@vger.kernel.org
1611S: Maintained
1612
1613i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1614P: Dave Jones
1615M: davej@codemonkey.org.uk
1616P: H. Peter Anvin
1617M: hpa@zytor.com
1618S: Maintained
1619
1620i810 TCO TIMER WATCHDOG
1621P: Nils Faerber
1622M: nils@kernelconcepts.de
1623W: http://www.kernelconcepts.de/
1624S: Maintained
1625
1626IA64 (Itanium) PLATFORM
1627P: Tony Luck
1628M: tony.luck@intel.com
1629L: linux-ia64@vger.kernel.org
1630W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001631T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632S: Maintained
1633
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001634IBM ACPI EXTRAS DRIVER
1635P: Henrique de Moraes Holschuh
1636M: ibm-acpi@hmh.eng.br
1637L: ibm-acpi-devel@lists.sourceforge.net
1638W: http://ibm-acpi.sourceforge.net
1639W: http://thinkwiki.org/wiki/Ibm-acpi
1640T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1641S: Maintained
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001644P: Jes Sorensen
1645M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646L: linux-altix@sgi.com
1647L: linux-ia64@vger.kernel.org
1648W: http://www.sgi.com/altix
1649S: Maintained
1650
1651IBM MCA SCSI SUBSYSTEM DRIVER
1652P: Michael Lang
1653M: langa2@kph.uni-mainz.de
1654W: http://www.uni-mainz.de/~langm000/linux.html
1655S: Maintained
1656
1657IBM Power Linux RAID adapter
1658P: Brian King
1659M: brking@us.ibm.com
1660S: Supported
1661
1662IBM ServeRAID RAID DRIVER
1663P: Jack Hammer
1664P: Dave Jeffery
1665M: ipslinux@adaptec.com
1666W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1667S: Supported
1668
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001669IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001671M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001673T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674S: Maintained
1675
1676IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001677P: Alan Cox
1678M: alan@lxorguk.ukuu.org.uk
1679L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680S: Maintained
1681
1682IDE/ATAPI FLOPPY DRIVERS
1683P: Paul Bristow
1684M: Paul Bristow <paul@paulbristow.net>
1685W: http://paulbristow.net/linux/idefloppy.html
1686L: linux-kernel@vger.kernel.org
1687S: Maintained
1688
1689IDE/ATAPI TAPE DRIVERS
1690P: Gadi Oxman
1691M: Gadi Oxman <gadio@netvision.net.il>
1692L: linux-kernel@vger.kernel.org
1693S: Maintained
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695IEEE 1394 SUBSYSTEM
1696P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07001697M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02001698P: Stefan Richter
1699M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700L: linux1394-devel@lists.sourceforge.net
1701W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001702T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703S: Maintained
1704
Stefan Richterf51a5a92007-04-23 14:41:10 -07001705IEEE 1394 RAW I/O DRIVER (raw1394)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706P: Dan Dennedy
1707M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07001708P: Stefan Richter
1709M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001711S: Maintained
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713IMS TWINTURBO FRAMEBUFFER DRIVER
1714P: Paul Mundt
1715M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001716L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717S: Maintained
1718
1719INFINIBAND SUBSYSTEM
1720P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001721M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722P: Sean Hefty
1723M: mshefty@ichips.intel.com
1724P: Hal Rosenstock
1725M: halr@voltaire.com
1726L: openib-general@openib.org
1727W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001728T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729S: Supported
1730
1731INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001732P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001733M: dmitry.torokhov@gmail.com
1734M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735L: linux-input@atrey.karlin.mff.cuni.cz
1736L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001737T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738S: Maintained
1739
Robert Lovec9f04f52005-07-15 12:21:07 -04001740INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001741P: John McCutchan
1742M: ttb@tentacle.dhs.org
1743P: Robert Love
1744M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001745L: linux-kernel@vger.kernel.org
1746S: Maintained
1747
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001748INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001749P: Sylvain Meyer
1750M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001751L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001752S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001755P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001756M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001757L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001758S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1761P: Ingo Molnar
1762M: mingo@redhat.com
1763S: Maintained
1764
1765INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1766P: Jeff Garzik
1767M: jgarzik@pobox.com
1768W: http://sourceforge.net/projects/gkernel/
1769S: Maintained
1770
1771INTEL IA32 MICROCODE UPDATE SUPPORT
1772P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001773M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774S: Maintained
1775
Michael Buesch844dd052006-06-26 00:24:59 -07001776INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1777P: Deepak Saxena
1778M: dsaxena@plexity.net
1779S: Maintained
1780
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001781INTEL IXP2000 ETHERNET DRIVER
1782P: Lennert Buytenhek
1783M: kernel@wantstofly.org
1784L: netdev@vger.kernel.org
1785S: Maintained
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787INTEL PRO/100 ETHERNET SUPPORT
1788P: John Ronciak
1789M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790P: Jesse Brandeburg
1791M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001792P: Jeff Kirsher
1793M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001794P: Auke Kok
1795M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796W: http://sourceforge.net/projects/e1000/
1797S: Supported
1798
1799INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1800P: Jeb Cramer
1801M: cramerj@intel.com
1802P: John Ronciak
1803M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001804P: Jesse Brandeburg
1805M: jesse.brandeburg@intel.com
1806P: 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/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001814P: Jeff Kirsher
1815M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816P: Ayyappan Veeraiyan
1817M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818P: John Ronciak
1819M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001820P: Jesse Brandeburg
1821M: jesse.brandeburg@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
James Ketrenos826d2ab2005-11-07 18:56:59 -06001827INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1828P: Yi Zhu
1829M: yi.zhu@intel.com
1830P: James Ketrenos
1831M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001832L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001833L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1834W: http://ipw2100.sourceforge.net
1835S: Supported
1836
1837INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1838P: Yi Zhu
1839M: yi.zhu@intel.com
1840P: James Ketrenos
1841M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001842L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001843L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1844W: http://ipw2200.sourceforge.net
1845S: Supported
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847IOC3 DRIVER
1848P: Ralf Baechle
1849M: ralf@linux-mips.org
1850L: linux-mips@linux-mips.org
1851S: Maintained
1852
1853IP MASQUERADING:
1854P: Juanjo Ciarlante
1855M: jjciarla@raiz.uncu.edu.ar
1856S: Maintained
1857
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001858IPATH DRIVER:
1859P: Bryan O'Sullivan
1860M: support@pathscale.com
1861L: openib-general@openib.org
1862S: Supported
1863
Corey Minyard4409ebe2006-04-20 02:43:12 -07001864IPMI SUBSYSTEM
1865P: Corey Minyard
1866M: minyard@acm.org
1867L: openipmi-developer@lists.sourceforge.net
1868W: http://openipmi.sourceforge.net/
1869S: Supported
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871IPX NETWORK LAYER
1872P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001873M: acme@ghostprotocols.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07001874L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875S: Maintained
1876
1877IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001878P: Samuel Ortiz
1879M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001880L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001882S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884ISAPNP
1885P: Jaroslav Kysela
1886M: perex@suse.cz
1887S: Maintained
1888
1889ISDN SUBSYSTEM
1890P: Karsten Keil
1891M: kkeil@suse.de
1892P: Kai Germaschewski
1893M: kai.germaschewski@gmx.de
1894L: isdn4linux@listserv.isdn4linux.de
1895W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001896T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897S: Maintained
1898
1899ISDN SUBSYSTEM (Eicon active card driver)
1900P: Armin Schindler
1901M: mac@melware.de
1902L: isdn4linux@listserv.isdn4linux.de
1903W: http://www.melware.de
1904S: Maintained
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1907P: David Woodhouse
1908M: dwmw2@infradead.org
1909L: jffs-dev@axis.com
1910W: http://sources.redhat.com/jffs2/
1911S: Maintained
1912
1913JFS FILESYSTEM
1914P: Dave Kleikamp
1915M: shaggy@austin.ibm.com
1916L: jfs-discussion@lists.sourceforge.net
1917W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001918T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919S: Supported
1920
Josh Triplettde456d32006-07-30 03:04:00 -07001921JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001922P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001923M: sct@redhat.com, akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001924L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001925S: Maintained
1926
Rudolf Marek4660cb32006-10-08 22:01:26 +02001927K8TEMP HARDWARE MONITORING DRIVER
1928P: Rudolf Marek
1929M: r.marek@assembler.cz
1930L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931S: Maintained
1932
1933KCONFIG
1934P: Roman Zippel
1935M: zippel@linux-m68k.org
1936L: kbuild-devel@lists.sourceforge.net
1937S: Maintained
1938
Vivek Goyalea6c2082006-05-20 14:59:55 -07001939KDUMP
1940P: Vivek Goyal
1941M: vgoyal@in.ibm.com
1942P: Haren Myneni
1943M: hbabu@us.ibm.com
David Brownellf318a632007-04-23 14:41:06 -07001944L: fastboot@lists.linux-foundation.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07001945L: linux-kernel@vger.kernel.org
1946W: http://lse.sourceforge.net/kdump/
1947S: Maintained
1948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949KERNEL AUTOMOUNTER (AUTOFS)
1950P: H. Peter Anvin
1951M: hpa@zytor.com
1952L: autofs@linux.kernel.org
1953S: Odd Fixes
1954
1955KERNEL AUTOMOUNTER v4 (AUTOFS4)
1956P: Ian Kent
1957M: raven@themaw.net
1958L: autofs@linux.kernel.org
1959S: Maintained
1960
1961KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1962P: Kai Germaschewski
1963M: kai@germaschewski.name
1964P: Sam Ravnborg
1965M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001966T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967S: Maintained
1968
1969KERNEL JANITORS
1970P: Several
David Brownellf318a632007-04-23 14:41:06 -07001971L: kernel-janitors@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973S: Maintained
1974
1975KERNEL NFSD
1976P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001977M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978L: nfs@lists.sourceforge.net
1979W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001980S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
Avi Kivity426d62e2006-12-13 00:34:03 -08001982KERNEL VIRTUAL MACHINE (KVM)
1983P: Avi Kivity
1984M: avi@qumranet.com
1985L: kvm-devel@lists.sourceforge.net
1986W: kvm.sourceforge.net
1987S: Supported
1988
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001989KEXEC
1990P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001991M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001992W: http://www.xmission.com/~ebiederm/files/kexec/
1993L: linux-kernel@vger.kernel.org
David Brownellf318a632007-04-23 14:41:06 -07001994L: fastboot@lists.linux-foundation.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001995S: Maintained
1996
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001997KPROBES
1998P: Prasanna S Panchamukhi
1999M: prasanna@in.ibm.com
2000P: Ananth N Mavinakayanahalli
2001M: ananth@in.ibm.com
2002P: Anil S Keshavamurthy
2003M: anil.s.keshavamurthy@intel.com
2004P: David S. Miller
2005M: davem@davemloft.net
2006L: linux-kernel@vger.kernel.org
2007S: Maintained
2008
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002009KS0108 LCD CONTROLLER DRIVER
2010P: Miguel Ojeda Sandonis
2011M: maxextreme@gmail.com
2012L: linux-kernel@vger.kernel.org
2013S: Maintained
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002017S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019LASI 53c700 driver for PARISC
2020P: James E.J. Bottomley
2021M: James.Bottomley@HansenPartnership.com
2022L: linux-scsi@vger.kernel.org
2023S: Maintained
2024
Richard Purdie263de9b2006-05-15 09:44:16 -07002025LED SUBSYSTEM
2026P: Richard Purdie
2027M: rpurdie@rpsys.net
2028S: Maintained
2029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030LEGO USB Tower driver
2031P: Juergen Stuber
2032M: starblue@users.sourceforge.net
2033L: legousb-devel@lists.sourceforge.net
2034W: http://legousb.sourceforge.net/
2035S: Maintained
2036
2037LINUX FOR IBM pSERIES (RS/6000)
2038P: Paul Mackerras
2039M: paulus@au.ibm.com
2040W: http://www.ibm.com/linux/ltc/projects/ppc
2041S: Supported
2042
2043LINUX FOR NCR VOYAGER
2044P: James Bottomley
2045M: James.Bottomley@HansenPartnership.com
2046W: http://www.hansenpartnership.com/voyager
2047S: Maintained
2048
2049LINUX FOR POWERPC
2050P: Paul Mackerras
2051M: paulus@samba.org
2052W: http://www.penguinppc.org/
2053L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002054T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055S: Supported
2056
2057LINUX FOR POWER MACINTOSH
2058P: Benjamin Herrenschmidt
2059M: benh@kernel.crashing.org
2060W: http://www.penguinppc.org/
2061L: linuxppc-dev@ozlabs.org
2062S: Maintained
2063
2064LINUX FOR POWERPC EMBEDDED MPC52XX
2065P: Sylvain Munaut
2066M: tnt@246tNt.com
2067W: http://www.246tNt.com/mpc52xx/
2068W: http://www.penguinppc.org/
2069L: linuxppc-dev@ozlabs.org
2070L: linuxppc-embedded@ozlabs.org
2071S: Maintained
2072
2073LINUX FOR POWERPC EMBEDDED PPC4XX
2074P: Matt Porter
2075M: mporter@kernel.crashing.org
2076W: http://www.penguinppc.org/
2077L: linuxppc-embedded@ozlabs.org
2078S: Maintained
2079
Tom Rinie93adf12005-07-26 12:49:53 -07002080LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081P: Tom Rini
2082M: trini@kernel.crashing.org
2083W: http://www.penguinppc.org/
2084L: linuxppc-embedded@ozlabs.org
2085S: Maintained
2086
Tom Rinie93adf12005-07-26 12:49:53 -07002087LINUX FOR POWERPC EMBEDDED PPC8XX
2088P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002089M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002090W: http://www.penguinppc.org/
2091L: linuxppc-embedded@ozlabs.org
2092S: Maintained
2093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002095P: Kumar Gala
2096M: galak@kernel.crashing.org
2097W: http://www.penguinppc.org/
2098L: linuxppc-embedded@ozlabs.org
2099S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Olof Johanssonab06ff32006-09-06 14:44:54 -05002101LINUX FOR POWERPC PA SEMI PWRFICIENT
2102P: Olof Johansson
2103M: olof@lixom.net
2104W: http://www.pasemi.com/
2105L: linuxppc-dev@ozlabs.org
2106S: Supported
2107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108LLC (802.2)
2109P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002110M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111S: Maintained
2112
2113LINUX FOR 64BIT POWERPC
2114P: Paul Mackerras
2115M: paulus@samba.org
2116M: paulus@au.ibm.com
2117P: Anton Blanchard
2118M: anton@samba.org
2119M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002120W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002121L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122S: Supported
2123
2124LINUX SECURITY MODULE (LSM) FRAMEWORK
2125P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002126M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002127L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002129T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130S: Supported
2131
2132LM83 HARDWARE MONITOR DRIVER
2133P: Jean Delvare
2134M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002135L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136S: Maintained
2137
2138LM90 HARDWARE MONITOR DRIVER
2139P: Jean Delvare
2140M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002141L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142S: Maintained
2143
2144LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2145P: Richard Russon (FlatCap)
2146M: ldm@flatcap.org
2147L: ldm-devel@lists.sourceforge.net
2148W: http://ldm.sourceforge.net
2149S: Maintained
2150
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002151LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2152P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002153M: Eric.Moore@lsi.com
2154M: support@lsi.com
2155L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002156L: linux-scsi@vger.kernel.org
2157W: http://www.lsilogic.com/support
2158S: Supported
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2161P: Matthew Wilcox
2162M: matthew@wil.cx
2163L: linux-scsi@vger.kernel.org
2164S: Maintained
2165
2166M68K ARCHITECTURE
2167P: Geert Uytterhoeven
2168M: geert@linux-m68k.org
2169P: Roman Zippel
2170M: zippel@linux-m68k.org
2171L: linux-m68k@lists.linux-m68k.org
2172W: http://www.linux-m68k.org/
2173W: http://linux-m68k-cvs.ubb.ca/
2174S: Maintained
2175
2176M68K ON APPLE MACINTOSH
2177P: Joshua Thompson
2178M: funaho@jurai.org
2179W: http://www.mac.linux-m68k.org/
2180L: linux-mac68k@mac.linux-m68k.org
2181S: Maintained
2182
2183M68K ON HP9000/300
2184P: Philip Blundell
2185M: philb@gnu.org
2186W: http://www.tazenda.demon.co.uk/phil/linux-hp
2187S: Maintained
2188
2189MARVELL YUKON / SYSKONNECT DRIVER
2190P: Mirko Lindner
2191M: mlindner@syskonnect.de
2192P: Ralph Roesler
2193M: rroesler@syskonnect.de
2194W: http://www.syskonnect.com
2195S: Supported
2196
Michael Kerriskfaf16682005-07-31 22:34:47 -07002197MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002198P: Michael Kerrisk
2199M: mtk-manpages@gmx.net
2200W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2201S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002202
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002203MARVELL MV643XX ETHERNET DRIVER
2204P: Dale Farnsworth
2205M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002207M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002208L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002209S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
2211MATROX FRAMEBUFFER DRIVER
2212P: Petr Vandrovec
2213M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002214L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215S: Maintained
2216
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002217MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002218P: Neela Syam Kolli
2219M: Neela.Kolli@engenio.com
2220S: linux-scsi@vger.kernel.org
2221W: http://megaraid.lsilogic.com
2222S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002223
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002224MEMORY MANAGEMENT
2225L: linux-mm@kvack.org
2226L: linux-kernel@vger.kernel.org
2227W: http://www.linux-mm.org
2228S: Maintained
2229
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002230MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231P: David Woodhouse
2232M: dwmw2@infradead.org
2233W: http://www.linux-mtd.infradead.org/
2234L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002235T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236S: Maintained
2237
2238MICROTEK X6 SCANNER
2239P: Oliver Neukum
2240M: oliver@neukum.name
2241S: Maintained
2242
2243MIPS
2244P: Ralf Baechle
2245M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002246W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002248T: git www.linux-mips.org:/pub/scm/linux.git
2249S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251MISCELLANEOUS MCA-SUPPORT
2252P: James Bottomley
2253M: jejb@steeleye.com
2254L: linux-kernel@vger.kernel.org
2255S: Maintained
2256
2257MODULE SUPPORT
2258P: Rusty Russell
2259M: rusty@rustcorp.com.au
2260L: linux-kernel@vger.kernel.org
2261S: Maintained
2262
2263MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2264P: Stelian Pop
2265M: stelian@popies.net
2266W: http://popies.net/meye/
2267S: Maintained
2268
2269MOUSE AND MISC DEVICES [GENERAL]
2270P: Alessandro Rubini
2271M: rubini@ipvvis.unipv.it
2272L: linux-kernel@vger.kernel.org
2273S: Maintained
2274
Jiri Slabyd7354102006-12-08 02:38:35 -08002275MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2276P: Jiri Slaby
2277M: jirislaby@gmail.com
2278L: linux-kernel@vger.kernel.org
2279S: Maintained
2280
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002281MSI LAPTOP SUPPORT
2282P: Lennart Poettering
2283M: mzxreary@0pointer.de
2284L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2285W: http://0pointer.de/lennart/tchibo.html
2286S: Maintained
2287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288MTRR AND SIMILAR SUPPORT [i386]
2289P: Richard Gooch
2290M: rgooch@atnf.csiro.au
2291L: linux-kernel@vger.kernel.org
2292W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2293S: Maintained
2294
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002295MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2296P: Pierre Ossman
2297M: drzeus-mmc@drzeus.cx
2298L: linux-kernel@vger.kernel.org
2299S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301MULTISOUND SOUND DRIVER
2302P: Andrew Veliath
2303M: andrewtv@usa.net
2304S: Maintained
2305
Jiri Slabyd7354102006-12-08 02:38:35 -08002306MULTITECH MULTIPORT CARD (ISICOM)
2307P: Jiri Slaby
2308M: jirislaby@gmail.com
2309L: linux-kernel@vger.kernel.org
2310S: Maintained
2311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312NATSEMI ETHERNET DRIVER (DP8381x)
2313P: Tim Hockin
2314M: thockin@hockin.org
2315S: Maintained
2316
2317NCP FILESYSTEM
2318P: Petr Vandrovec
2319M: vandrove@vc.cvut.cz
2320L: linware@sh.cvut.cz
2321S: Maintained
2322
2323NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2324P: James E.J. Bottomley
2325M: James.Bottomley@HansenPartnership.com
2326L: linux-scsi@vger.kernel.org
2327S: Maintained
2328
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002329NETEM NETWORK EMULATOR
2330P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002331M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002332L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002333S: Maintained
2334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335NETFILTER/IPTABLES/IPCHAINS
2336P: Rusty Russell
2337P: Marc Boucher
2338P: James Morris
2339P: Harald Welte
2340P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002341P: Patrick McHardy
2342M: kaber@trash.net
2343L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002344L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002345L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346W: http://www.netfilter.org/
2347W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348S: Supported
2349
Paul Moore4cc67732006-09-25 15:57:13 -07002350NETLABEL
2351P: Paul Moore
2352M: paul.moore@hp.com
2353W: http://netlabel.sf.net
2354L: netdev@vger.kernel.org
2355S: Supported
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357NETROM NETWORK LAYER
2358P: Ralf Baechle
2359M: ralf@linux-mips.org
2360L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002361W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362S: Maintained
2363
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002364NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365P: Paul Clements
2366M: Paul.Clements@steeleye.com
2367S: Maintained
2368
2369NETWORK DEVICE DRIVERS
2370P: Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002371M: akpm@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372P: Jeff Garzik
2373M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002374L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002375T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376S: Maintained
2377
2378NETWORKING [GENERAL]
2379P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002380M: netdev@vger.kernel.org
2381L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002382W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383S: Maintained
2384
2385NETWORKING [IPv4/IPv6]
2386P: David S. Miller
2387M: davem@davemloft.net
2388P: Alexey Kuznetsov
2389M: kuznet@ms2.inr.ac.ru
2390P: Pekka Savola (ipv6)
2391M: pekkas@netcore.fi
2392P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002393M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394P: Hideaki YOSHIFUJI
2395M: yoshfuji@linux-ipv6.org
2396P: Patrick McHardy
2397M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002398L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002399T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400S: Maintained
2401
John W. Linville29f8f632006-01-18 14:52:48 -08002402NETWORKING [WIRELESS]
2403P: John W. Linville
2404M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002405L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002406T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2407S: Maintained
2408
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002409NETXEN (1/10) GbE SUPPORT
2410P: Amit S. Kale
2411M: amitkale@netxen.com
2412L: netdev@vger.kernel.org
2413W: http://www.netxen.com
2414S: Supported
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416IPVS
2417P: Wensong Zhang
2418M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002419P: Simon Horman
2420M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421P: Julian Anastasov
2422M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002423L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424S: Maintained
2425
2426NFS CLIENT
2427P: Trond Myklebust
2428M: trond.myklebust@fys.uio.no
2429L: linux-kernel@vger.kernel.org
2430S: Maintained
2431
2432NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002433P: Jan-Pascal van Best
2434M: janpascal@vanbest.org
2435P: Andreas Mohr
2436M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002437L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438S: Maintained
2439
2440NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2441P: YOKOTA Hiroshi
2442M: yokota@netlab.is.tsukuba.ac.jp
2443W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2444S: Maintained
2445
2446NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2447P: GOTO Masanori
2448M: gotom@debian.or.jp
2449P: YOKOTA Hiroshi
2450M: yokota@netlab.is.tsukuba.ac.jp
2451W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2452S: Maintained
2453
2454NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2455P: Eberhard Moenkeberg
2456M: emoenke@gwdg.de
2457L: linux-kernel@vger.kernel.org
2458S: Maintained
2459
2460NTFS FILESYSTEM
2461P: Anton Altaparmakov
2462M: aia21@cantab.net
2463L: linux-ntfs-dev@lists.sourceforge.net
2464L: linux-kernel@vger.kernel.org
2465W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002466T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467S: Maintained
2468
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002469NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002470P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002471M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002472L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002473S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002475OPENCORES I2C BUS DRIVER
2476P: Peter Korsgaard
2477M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002478L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002479S: Maintained
2480
Mark Fashehccd979b2005-12-15 14:31:24 -08002481ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2482P: Mark Fasheh
2483M: mark.fasheh@oracle.com
2484P: Kurt Hackel
2485M: kurt.hackel@oracle.com
2486L: ocfs2-devel@oss.oracle.com
2487W: http://oss.oracle.com/projects/ocfs2/
2488S: Supported
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490OLYMPIC NETWORK DRIVER
2491P: Peter De Shrijver
2492M: p2@ace.ulyssis.student.kuleuven.ac.be
2493P: Mike Phillips
2494M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002495L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496L: linux-tr@linuxtr.net
2497W: http://www.linuxtr.net
2498S: Maintained
2499
Harald Weltec1986ee2005-11-13 16:06:29 -08002500OMNIKEY CARDMAN 4000 DRIVER
2501P: Harald Welte
2502M: laforge@gnumonks.org
2503S: Maintained
2504
Harald Welte77c44ab2005-11-13 16:06:26 -08002505OMNIKEY CARDMAN 4040 DRIVER
2506P: Harald Welte
2507M: laforge@gnumonks.org
2508S: Maintained
2509
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510ONSTREAM SCSI TAPE DRIVER
2511P: Willem Riede
2512M: osst@riede.org
2513L: osst-users@lists.sourceforge.net
2514L: linux-scsi@vger.kernel.org
2515S: Maintained
2516
2517OPL3-SA2, SA3, and SAx DRIVER
2518P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002519M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520L: linux-sound@vger.kernel.org
2521S: Maintained
2522
2523OPROFILE
2524P: Philippe Elie
2525M: phil.el@wanadoo.fr
2526L: oprofile-list@lists.sf.net
2527S: Maintained
2528
2529ORINOCO DRIVER
2530P: Pavel Roskin
2531M: proski@gnu.org
2532P: David Gibson
2533M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002534L: orinoco-users@lists.sourceforge.net
2535L: orinoco-devel@lists.sourceforge.net
2536W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537S: Maintained
2538
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002539PA SEMI ETHERNET DRIVER
2540P: Olof Johansson
2541M: olof@lixom.net
2542L: netdev@vger.kernel.org
2543S: Maintained
2544
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002545PA SEMI SMBUS DRIVER
2546P: Olof Johansson
2547M: olof@lixom.net
2548L: i2c@lm-sensors.org
2549S: Maintained
2550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551PARALLEL PORT SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552L: linux-parport@lists.infradead.org
David Brownell5fdc2ab2007-03-05 00:30:13 -08002553S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
2555PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2556P: Tim Waugh
2557M: tim@cyberelk.net
2558L: linux-parport@lists.infradead.org
2559W: http://www.torque.net/linux-pp.html
2560S: Maintained
2561
2562PARISC ARCHITECTURE
2563P: Matthew Wilcox
2564M: matthew@wil.cx
2565P: Grant Grundler
2566M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002567P: Kyle McMartin
2568M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569L: parisc-linux@parisc-linux.org
2570W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002571T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2572T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573S: Maintained
2574
Jim Cromie1662d322006-10-06 00:43:59 -07002575PC87360 HARDWARE MONITORING DRIVER
2576P: Jim Cromie
2577M: jim.cromie@gmail.com
2578L: lm-sensors@lm-sensors.org
2579S: Maintained
2580
2581PC8736x GPIO DRIVER
2582P: Jim Cromie
2583M: jim.cromie@gmail.com
2584S: Maintained
2585
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002586PCI ERROR RECOVERY
2587P: Linas Vepstas
2588M: linas@austin.ibm.com
2589L: linux-kernel@vger.kernel.org
2590L: linux-pci@atrey.karlin.mff.cuni.cz
2591S: Supported
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2594P: Thomas Sailer
2595M: sailer@ife.ee.ethz.ch
2596L: linux-sound@vger.kernel.org
2597W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2598S: Maintained
2599
2600PCI SUBSYSTEM
2601P: Greg Kroah-Hartman
2602M: gregkh@suse.de
2603L: linux-kernel@vger.kernel.org
2604L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002605T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606S: Supported
2607
2608PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002609P: Kristen Carlson Accardi
2610M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611S: Supported
2612
2613PCI HOTPLUG COMPAQ DRIVER
2614P: Greg Kroah-Hartman
2615M: greg@kroah.com
2616S: Maintained
2617
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002618PCIE HOTPLUG DRIVER
2619P: Kristen Carlson Accardi
2620M: kristen.c.accardi@intel.com
2621L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002622S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002623
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002625P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002626L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002628T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002629S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
2631PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002632P: Don Fry
2633M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002634L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635S: Maintained
2636
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002637PER-TASK DELAY ACCOUNTING
2638P: Shailabh Nagar
2639M: nagar@watson.ibm.com
2640L: linux-kernel@vger.kernel.org
2641S: Maintained
2642
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002643PERSONALITY HANDLING
2644P: Christoph Hellwig
2645M: hch@infradead.org
2646L: linux-abi-devel@lists.sourceforge.net
2647S: Maintained
2648
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649PHRAM MTD DRIVER
2650P: Jörn Engel
2651M: joern@wh.fh-wedel.de
2652L: linux-mtd@lists.infradead.org
2653S: Maintained
2654
Peter Osterlund249a6772005-09-27 21:45:30 -07002655PKTCDVD DRIVER
2656P: Peter Osterlund
2657M: petero2@telia.com
2658L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002659S: Maintained
2660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661POSIX CLOCKS and TIMERS
2662P: George Anzinger
2663M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002664L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665S: Supported
2666
Eugene Surovegin24682972005-10-14 03:00:53 -07002667POWERPC 4xx EMAC DRIVER
2668P: Eugene Surovegin
2669M: ebs@ebshome.net
2670W: http://kernel.ebshome.net/emac/
2671L: linuxppc-embedded@ozlabs.org
2672L: netdev@vger.kernel.org
2673S: Maintained
2674
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675PNP SUPPORT
2676P: Adam Belay
2677M: ambx1@neo.rr.com
2678S: Maintained
2679
Vitaly Wool999445d2007-01-04 13:07:03 +01002680PNXxxxx I2C DRIVER
2681P: Vitaly Wool
2682M: vitalywool@gmail.com
2683L: i2c@lm-sensors.org
2684S: Maintained
2685
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686PPP PROTOCOL DRIVERS AND COMPRESSORS
2687P: Paul Mackerras
2688M: paulus@samba.org
2689L: linux-ppp@vger.kernel.org
2690S: Maintained
2691
2692PPP OVER ATM (RFC 2364)
2693P: Mitchell Blank Jr
2694M: mitch@sfgoth.com
2695S: Maintained
2696
2697PPP OVER ETHERNET
2698P: Michal Ostrowski
2699M: mostrows@speakeasy.net
2700S: Maintained
2701
2702PREEMPTIBLE KERNEL
2703P: Robert Love
2704M: rml@tech9.net
2705L: linux-kernel@vger.kernel.org
2706L: kpreempt-tech@lists.sourceforge.net
2707W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2708S: Supported
2709
2710PRISM54 WIRELESS DRIVER
2711P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002712M: developers@islsm.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002713L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714W: http://prism54.org
2715S: Maintained
2716
2717PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2718P: Peter Denison
2719M: promise@pnd-pc.demon.co.uk
2720W: http://www.pnd-pc.demon.co.uk/promise/
2721S: Maintained
2722
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002723PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2724P: Mikael Pettersson
2725M: mikpe@it.uu.se
2726L: linux-ide@vger.kernel.org
2727S: Maintained
2728
Geoff Levandf58a9d12006-11-23 00:46:51 +01002729PS3 PLATFORM SUPPORT
2730P: Geoff Levand
2731M: geoffrey.levand@am.sony.com
2732L: linuxppc-dev@ozlabs.org
2733L: cbe-oss-dev@ozlabs.org
2734S: Supported
2735
Michael Krufky83202042006-07-03 00:24:18 -07002736PVRUSB2 VIDEO4LINUX DRIVER
2737P: Mike Isely
2738M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03002739L: pvrusb2@isely.net (subscribers-only)
Michael Krufky83202042006-07-03 00:24:18 -07002740L: video4linux-list@redhat.com
2741W: http://www.isely.net/pvrusb2/
2742S: Maintained
2743
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744PXA2xx SUPPORT
2745P: Nicolas Pitre
2746M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002747L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748S: Maintained
2749
2750QLOGIC QLA2XXX FC-SCSI DRIVER
2751P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002752M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753L: linux-scsi@vger.kernel.org
2754S: Supported
2755
Ron Mercer5a4faa872006-07-25 00:40:21 -07002756QLOGIC QLA3XXX NETWORK DRIVER
2757P: Ron Mercer
2758M: linux-driver@qlogic.com
2759L: netdev@vger.kernel.org
2760S: Supported
2761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762QNX4 FILESYSTEM
2763P: Anders Larsen
2764M: al@alarsen.net
2765L: linux-kernel@vger.kernel.org
2766W: http://www.alarsen.net/linux/qnx4fs/
2767S: Maintained
2768
2769RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002770P: Benjamin Herrenschmidt
2771M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002772L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773S: Maintained
2774
2775RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002776P: Paul Mackerras
2777M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002778L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779S: Maintained
2780
2781RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2782P: Corey Thomas
2783M: corey@world.std.com
2784L: linux-kernel@vger.kernel.org
2785S: Maintained
2786
Matt Mackall9e95ce22005-04-16 15:25:56 -07002787RANDOM NUMBER DRIVER
2788P: Matt Mackall
2789M: mpm@selenic.com
2790S: Maintained
2791
Matt Porter394b7012005-11-07 01:00:15 -08002792RAPIDIO SUBSYSTEM
2793P: Matt Porter
2794M: mporter@kernel.crashing.org
2795L: linux-kernel@vger.kernel.org
2796S: Maintained
2797
Josh Triplett595182b2006-10-04 02:17:21 -07002798READ-COPY UPDATE (RCU)
2799P: Dipankar Sarma
2800M: dipankar@in.ibm.com
2801W: http://www.rdrop.com/users/paulmck/rclock/
2802L: linux-kernel@vger.kernel.org
2803S: Supported
2804
2805RCUTORTURE MODULE
2806P: Josh Triplett
2807M: josh@freedesktop.org
2808L: linux-kernel@vger.kernel.org
2809S: Maintained
2810
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811REAL TIME CLOCK DRIVER
2812P: Paul Gortmaker
2813M: p_gortmaker@yahoo.com
2814L: linux-kernel@vger.kernel.org
2815S: Maintained
2816
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002817REAL TIME CLOCK (RTC) SUBSYSTEM
2818P: Alessandro Zummo
2819M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002820L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002821S: Maintained
2822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823REISERFS FILE SYSTEM
2824P: Hans Reiser
2825M: reiserfs-dev@namesys.com
2826L: reiserfs-list@namesys.com
2827W: http://www.namesys.com
2828S: Supported
2829
2830ROCKETPORT DRIVER
2831P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832W: http://www.comtrol.com
2833S: Maintained
2834
2835ROSE NETWORK LAYER
2836P: Ralf Baechle
2837M: ralf@linux-mips.org
2838L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002839W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840S: Maintained
2841
2842RISCOM8 DRIVER
2843S: Orphan
2844
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002845S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002846P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002847M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002848L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002849S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851S390
2852P: Martin Schwidefsky
2853M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002854P: Heiko Carstens
2855M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002857L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002858W: http://www.ibm.com/developerworks/linux/linux390/
2859S: Supported
2860
2861S390 NETWORK DRIVERS
2862P: Frank Pavlic
2863M: fpavlic@de.ibm.com
2864M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002865L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002866W: http://www.ibm.com/developerworks/linux/linux390/
2867S: Supported
2868
2869S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002870P: Swen Schillig
2871M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002872M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002873L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002874W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875S: Supported
2876
2877SAA7146 VIDEO4LINUX-2 DRIVER
2878P: Michael Hunold
2879M: michael@mihu.de
2880W: http://www.mihu.de/linux/saa7146
2881S: Maintained
2882
2883SBPCD CDROM DRIVER
2884P: Eberhard Moenkeberg
2885M: emoenke@gwdg.de
2886L: linux-kernel@vger.kernel.org
2887S: Maintained
2888
2889SC1200 WDT DRIVER
2890P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002891M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892S: Maintained
2893
2894SCHEDULER
2895P: Ingo Molnar
2896M: mingo@elte.hu
2897P: Robert Love [the preemptible kernel bits]
2898M: rml@tech9.net
2899L: linux-kernel@vger.kernel.org
2900S: Maintained
2901
2902SCSI CDROM DRIVER
2903P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002904M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905L: linux-scsi@vger.kernel.org
2906W: http://www.kernel.dk
2907S: Maintained
2908
2909SCSI SG DRIVER
2910P: Doug Gilbert
2911M: dgilbert@interlog.com
2912L: linux-scsi@vger.kernel.org
2913W: http://www.torque.net/sg
2914S: Maintained
2915
2916SCSI SUBSYSTEM
2917P: James E.J. Bottomley
2918M: James.Bottomley@SteelEye.com
2919L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002920T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921S: Maintained
2922
2923SCSI TAPE DRIVER
2924P: Kai Mäkisara
2925M: Kai.Makisara@kolumbus.fi
2926L: linux-scsi@vger.kernel.org
2927S: Maintained
2928
2929SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07002930P: Vlad Yasevich
2931M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01002932P: Sridhar Samudrala
2933M: sri@us.ibm.com
2934L: lksctp-developers@lists.sourceforge.net
Sridhar Samudrala5f858132007-03-23 11:39:51 -07002935W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01002936S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
2938SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002939P: Jim Cromie
2940M: jim.cromie@gmail.com
2941S: Odd Fixes
2942
2943SCx200 GPIO DRIVER
2944P: Jim Cromie
2945M: jim.cromie@gmail.com
2946S: Maintained
2947
2948SCx200 HRT CLOCKSOURCE DRIVER
2949P: Jim Cromie
2950M: jim.cromie@gmail.com
2951S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953SECURITY CONTACT
2954P: Security Officers
2955M: security@kernel.org
2956S: Supported
2957
2958SELINUX SECURITY MODULE
2959P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002960M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002962M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963L: linux-kernel@vger.kernel.org (kernel issues)
2964L: selinux@tycho.nsa.gov (general discussion)
2965W: http://www.nsa.gov/selinux
2966S: Supported
2967
2968SERIAL ATA (SATA) SUBSYSTEM:
2969P: Jeff Garzik
2970M: jgarzik@pobox.com
2971L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002972T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973S: Supported
2974
2975SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2976P: Pat Gefre
2977M: pfg@sgi.com
2978L: linux-ia64@vger.kernel.org
2979S: Supported
2980
2981SGI VISUAL WORKSTATION 320 AND 540
2982P: Andrey Panin
2983M: pazke@donpac.ru
2984L: linux-visws-devel@lists.sf.net
2985W: http://linux-visws.sf.net
2986S: Maintained for 2.6.
2987
2988SIMTEC EB110ATX (Chalice CATS)
2989P: Ben Dooks
2990P: Vincent Sanders
2991M: support@simtec.co.uk
2992W: http://www.simtec.co.uk/products/EB110ATX/
2993S: Supported
2994
2995SIMTEC EB2410ITX (BAST)
2996P: Ben Dooks
2997P: Vincent Sanders
2998M: support@simtec.co.uk
2999W: http://www.simtec.co.uk/products/EB2410ITX/
3000S: Supported
3001
Francois Romieu92aab3c2005-07-30 13:11:18 +02003002SIS 190 ETHERNET DRIVER
3003P: Francois Romieu
3004M: romieu@fr.zoreil.com
3005L: netdev@vger.kernel.org
3006S: Maintained
3007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008SIS 5513 IDE CONTROLLER DRIVER
3009P: Lionel Bouton
3010M: Lionel.Bouton@inet6.fr
3011W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3012W: http://gyver.homeip.net/sis5513/index.html
3013S: Maintained
3014
3015SIS 900/7016 FAST ETHERNET DRIVER
3016P: Daniele Venzano
3017M: venza@brownhat.org
3018W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003019L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020S: Maintained
3021
3022SIS FRAMEBUFFER DRIVER
3023P: Thomas Winischhofer
3024M: thomas@winischhofer.net
3025W: http://www.winischhofer.net/linuxsisvga.shtml
3026S: Maintained
3027
3028SIS USB2VGA DRIVER
3029P: Thomas Winischhofer
3030M: thomas@winischhofer.net
3031W: http://www.winischhofer.at/linuxsisusbvga.shtml
3032S: Maintained
3033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034SMC91x ETHERNET DRIVER
3035P: Nicolas Pitre
3036M: nico@cam.org
3037S: Maintained
3038
Daniel Drake8f0f8502006-07-18 22:00:25 +01003039SOFTMAC LAYER (IEEE 802.11)
3040P: Johannes Berg
3041M: johannes@sipsolutions.net
3042P: Joe Jezak
3043M: josejx@gentoo.org
3044P: Daniel Drake
3045M: dsd@gentoo.org
3046W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01003047L: netdev@vger.kernel.org
3048S: Maintained
3049
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050SOFTWARE RAID (Multiple Disks) SUPPORT
3051P: Ingo Molnar
3052M: mingo@redhat.com
3053P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003054M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003056S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
3058SOFTWARE SUSPEND:
3059P: Pavel Machek
3060M: pavel@suse.cz
David Brownellf318a632007-04-23 14:41:06 -07003061L: linux-pm@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062S: Maintained
3063
3064SONIC NETWORK DRIVER
3065P: Thomas Bogendoerfer
3066M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003067L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068S: Maintained
3069
3070SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01003071P: Mattia Dongili
3072M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01003073L: linux-acpi@vger.kernel.org
3074W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075S: Maintained
3076
3077SOUND
3078P: Jaroslav Kysela
3079M: perex@suse.cz
3080L: alsa-devel@alsa-project.org
3081S: Maintained
3082
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003083SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3084P: Liam Girdwood
3085M: liam.girdwood@wolfsonmicro.com
3086L: alsa-devel@alsa-project.org
3087S: Supported
3088
Kumar Gala025c3982006-04-02 16:05:54 -05003089SPI SUBSYSTEM
3090P: David Brownell
3091M: dbrownell@users.sourceforge.net
3092L: spi-devel-general@lists.sourceforge.net
3093S: Maintained
3094
Steven Rostedt855f46a2006-08-05 12:14:50 -07003095STABLE BRANCH:
3096P: Greg Kroah-Hartman
3097M: greg@kroah.com
3098P: Chris Wright
3099M: chrisw@sous-sol.org
3100L: stable@kernel.org
3101S: Maintained
3102
Kylene Hall1c72d462005-05-01 08:59:13 -07003103TPM DEVICE DRIVER
3104P: Kylene Hall
3105M: kjhall@us.ibm.com
3106W: http://tpmdd.sourceforge.net
Marcel Selhorstd3a7b6d2007-03-16 13:38:31 -08003107P: Marcel Selhorst
3108M: tpm@selhorst.net
3109W: http://www.prosec.rub.de/tpm/
Kylene Hall1c72d462005-05-01 08:59:13 -07003110L: tpmdd-devel@lists.sourceforge.net
3111S: Maintained
3112
Mark Gross1a80ba82005-10-30 15:02:55 -08003113Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003114P: Mark Gross
3115M: mark.gross@intel.com
3116S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003117
Chris Zankel48b415c2005-06-23 22:01:07 -07003118TENSILICA XTENSA PORT (xtensa):
3119P: Chris Zankel
3120M: chris@zankel.net
3121S: Maintained
3122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123UltraSPARC (sparc64):
3124P: David S. Miller
3125M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003127T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128S: Maintained
3129
3130SHARP LH SUPPORT (LH7952X & LH7A40X)
3131P: Marc Singer
3132M: elf@buici.com
3133W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003134L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135S: Maintained
3136
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003137SHPC HOTPLUG DRIVER
3138P: Kristen Carlson Accardi
3139M: kristen.c.accardi@intel.com
3140L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003141S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003142
Pierre Ossmand129bce2006-03-24 03:18:17 -08003143SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3144P: Pierre Ossman
3145M: drzeus-sdhci@drzeus.cx
3146L: sdhci-devel@list.drzeus.cx
3147W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3148S: Maintained
3149
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003150SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3151P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003152M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003153L: netdev@vger.kernel.org
3154S: Maintained
3155
Chris Boot1a87d942006-07-10 04:45:34 -07003156SOEKRIS NET48XX LED SUPPORT
3157P: Chris Boot
3158M: bootc@bootc.net
3159S: Maintained
3160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161SPARC (sparc32):
3162P: William L. Irwin
3163M: wli@holomorphy.com
3164L: sparclinux@vger.kernel.org
3165S: Maintained
3166
3167SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3168P: Roger Wolff
3169M: R.E.Wolff@BitWizard.nl
3170L: linux-kernel@vger.kernel.org ?
3171S: Supported
3172
Jim Lewis2752e402006-09-29 02:01:19 -07003173SPIDERNET NETWORK DRIVER for CELL
Linas Vepstasfa302482007-02-20 16:45:27 -06003174P: Linas Vepstas
3175M: linas@austin.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07003176L: netdev@vger.kernel.org
3177S: Supported
3178
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179SRM (Alpha) environment access
3180P: Jan-Benedict Glaw
3181M: jbglaw@lug-owl.de
3182L: linux-kernel@vger.kernel.org
3183S: Maintained
3184
3185STARFIRE/DURALAN NETWORK DRIVER
3186P: Ion Badulescu
3187M: ionut@cs.columbia.edu
3188S: Maintained
3189
3190STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3191W: http://mosquitonet.Stanford.EDU/strip.html
3192S: Unsupported ?
3193
3194STRADIS MPEG-2 DECODER DRIVER
3195P: Nathan Laredo
3196M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197W: http://www.stradis.com/
3198S: Maintained
3199
3200SUPERH (sh)
3201P: Paul Mundt
3202M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003203L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205S: Maintained
3206
3207SUPERH64 (sh64)
3208P: Paul Mundt
3209M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210L: linuxsh-shmedia-dev@lists.sourceforge.net
3211W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212S: Maintained
3213
3214SUN3/3X
3215P: Sam Creasey
3216M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217W: http://sammy.net/sun3/
3218S: Maintained
3219
3220SVGA HANDLING
3221P: Martin Mares
3222M: mj@ucw.cz
3223L: linux-video@atrey.karlin.mff.cuni.cz
3224S: Maintained
3225
3226SYSV FILESYSTEM
3227P: Christoph Hellwig
3228M: hch@infradead.org
3229S: Maintained
3230
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003231TC CLASSIFIER
3232P: Jamal Hadi Salim
3233M: hadi@cyberus.ca
3234L: netdev@vger.kernel.org
3235S: Maintained
3236
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003237TCP LOW PRIORITY MODULE
3238P: Wong Hoi Sing, Edison
3239M: hswong3i@gmail.com
3240P: Hung Hing Lun, Mike
3241M: hlhung3i@gmail.com
3242W: http://tcp-lp-mod.sourceforge.net/
3243S: Maintained
3244
Alex Dubov4020f2d2006-10-04 02:15:37 -07003245TI FLASH MEDIA INTERFACE DRIVER
3246P: Alex Dubov
3247M: oakad@yahoo.com
3248S: Maintained
3249
Michael Buesch844dd052006-06-26 00:24:59 -07003250TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3251P: Deepak Saxena
3252M: dsaxena@plexity.net
3253S: Maintained
3254
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003255TASKSTATS STATISTICS INTERFACE
3256P: Shailabh Nagar
3257M: nagar@watson.ibm.com
3258L: linux-kernel@vger.kernel.org
3259S: Maintained
3260
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003262P: Romain Lievin
3263M: roms@lpg.ticalc.org
3264S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
Per Lidene86eaa32006-01-12 16:45:18 +01003266TIPC NETWORK LAYER
3267P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003268M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003269P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003270M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003271P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003272M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003273L: tipc-discussion@lists.sourceforge.net
3274W: http://tipc.sourceforge.net/
3275W: http://tipc.cslab.ericsson.net/
3276T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3277S: Maintained
3278
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279TLAN NETWORK DRIVER
3280P: Samuel Chessman
3281M: chessman@tux.org
3282L: tlan-devel@lists.sourceforge.net
3283W: http://sourceforge.net/projects/tlan/
3284S: Maintained
3285
3286TOKEN-RING NETWORK DRIVER
3287P: Mike Phillips
3288M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003289L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290L: linux-tr@linuxtr.net
3291W: http://www.linuxtr.net
3292S: Maintained
3293
3294TOSHIBA ACPI EXTRAS DRIVER
3295P: John Belmonte
3296M: toshiba_acpi@memebeam.org
3297W: http://memebeam.org/toys/ToshibaAcpiDriver
3298S: Maintained
3299
3300TOSHIBA SMM DRIVER
3301P: Jonathan Buzzard
3302M: jonathan@buzzard.org.uk
3303L: tlinux-users@tce.toshiba-dme.co.jp
3304W: http://www.buzzard.org.uk/toshiba/
3305S: Maintained
3306
3307TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3308P: Muli Ben-Yehuda
3309M: mulix@mulix.org
3310L: linux-kernel@vger.kernel.org
3311S: Maintained
3312
3313TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003314P: Adrian Bunk
3315M: trivial@kernel.org
3316L: linux-kernel@vger.kernel.org
3317W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3318T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3319S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
3321TMS380 TOKEN-RING NETWORK DRIVER
3322P: Adam Fritzler
3323M: mid@auk.cx
3324L: linux-tr@linuxtr.net
3325W: http://www.auk.cx/tms380tr/
3326S: Maintained
3327
3328TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003329P: Valerie Henson
3330M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331L: tulip-users@lists.sourceforge.net
3332W: http://sourceforge.net/projects/tulip/
3333S: Maintained
3334
3335TUN/TAP driver
3336P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003337M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338L: vtun@office.satix.net
3339W: http://vtun.sourceforge.net/tun
3340S: Maintained
3341
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003342TURBOCHANNEL SUBSYSTEM
3343P: Maciej W. Rozycki
3344M: macro@linux-mips.org
3345S: Maintained
3346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347U14-34F SCSI DRIVER
3348P: Dario Ballabio
3349M: ballabio_dario@emc.com
3350L: linux-scsi@vger.kernel.org
3351S: Maintained
3352
3353UDF FILESYSTEM
3354P: Ben Fennema
3355M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356W: http://linux-udf.sourceforge.net
3357S: Maintained
3358
3359UNIFORM CDROM DRIVER
3360P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003361M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362L: linux-kernel@vger.kernel.org
3363W: http://www.kernel.dk
3364S: Maintained
3365
3366USB ACM DRIVER
3367P: Oliver Neukum
3368M: oliver@neukum.name
3369L: linux-usb-users@lists.sourceforge.net
3370L: linux-usb-devel@lists.sourceforge.net
3371S: Maintained
3372
3373USB BLOCK DRIVER (UB ub)
3374P: Pete Zaitcev
3375M: zaitcev@redhat.com
3376L: linux-kernel@vger.kernel.org
3377L: linux-usb-devel@lists.sourceforge.net
3378S: Supported
3379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380USB CDC ETHERNET DRIVER
3381P: Greg Kroah-Hartman
3382M: greg@kroah.com
3383L: linux-usb-users@lists.sourceforge.net
3384L: linux-usb-devel@lists.sourceforge.net
3385S: Maintained
3386W: http://www.kroah.com/linux-usb/
3387
Peter Korsgaardd0374f42007-02-16 17:03:54 +01003388USB DAVICOM DM9601 DRIVER
3389P: Peter Korsgaard
3390M: jacmet@sunsite.dk
3391L: linux-usb-devel@lists.sourceforge.net
3392W: http://www.linux-usb.org/usbnet
3393S: Maintained
3394
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395USB EHCI DRIVER
3396P: David Brownell
3397M: dbrownell@users.sourceforge.net
3398L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003399S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400
Luca Risolia7ce08c92006-01-11 02:06:59 +00003401USB ET61X[12]51 DRIVER
3402P: Luca Risolia
3403M: luca.risolia@studio.unibo.it
3404L: linux-usb-devel@lists.sourceforge.net
3405L: video4linux-list@redhat.com
3406W: http://www.linux-projects.org
3407S: Maintained
3408
David Brownell69ae9e32006-11-14 02:03:31 -08003409USB GADGET/PERIPHERAL SUBSYSTEM
3410P: David Brownell
3411M: dbrownell@users.sourceforge.net
3412L: linux-usb-devel@lists.sourceforge.net
3413W: http://www.linux-usb.org/gadget
3414S: Maintained
3415
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003417P: Jiri Kosina
3418M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419L: linux-usb-devel@lists.sourceforge.net
Jiri Kosinaa4dff392007-02-27 17:40:09 +01003420T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421S: Maintained
3422
3423USB HUB DRIVER
3424P: Johannes Erdfelt
3425M: johannes@erdfelt.com
3426L: linux-usb-users@lists.sourceforge.net
3427L: linux-usb-devel@lists.sourceforge.net
3428S: Maintained
3429
Olav Kongas959eea22005-11-03 17:38:14 +02003430USB ISP116X DRIVER
3431P: Olav Kongas
3432M: ok@artecdesign.ee
3433L: linux-usb-devel@lists.sourceforge.net
3434S: Maintained
3435
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436USB KAWASAKI LSI DRIVER
3437P: Oliver Neukum
3438M: oliver@neukum.name
3439L: linux-usb-users@lists.sourceforge.net
3440L: linux-usb-devel@lists.sourceforge.net
3441S: Maintained
3442
3443USB MASS STORAGE DRIVER
3444P: Matthew Dharm
3445M: mdharm-usb@one-eyed-alien.net
3446L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003447L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448S: Maintained
3449W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3450
3451USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003452P: David Brownell
3453M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454L: linux-usb-users@lists.sourceforge.net
3455L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003456S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
Matthias Urlichsba460e42005-07-14 00:33:47 -07003458USB OPTION-CARD DRIVER
3459P: Matthias Urlichs
3460M: smurf@smurf.noris.de
3461L: linux-usb-devel@lists.sourceforge.net
3462S: Maintained
3463
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464USB OV511 DRIVER
3465P: Mark McClelland
3466M: mmcclell@bigfoot.com
3467L: linux-usb-users@lists.sourceforge.net
3468L: linux-usb-devel@lists.sourceforge.net
3469W: http://alpha.dyndns.org/ov511/
3470S: Maintained
3471
3472USB PEGASUS DRIVER
3473P: Petko Manolov
3474M: petkan@users.sourceforge.net
3475L: linux-usb-users@lists.sourceforge.net
3476L: linux-usb-devel@lists.sourceforge.net
3477W: http://pegasus2.sourceforge.net/
3478S: Maintained
3479
3480USB PRINTER DRIVER
3481P: Vojtech Pavlik
3482M: vojtech@suse.cz
3483L: linux-usb-users@lists.sourceforge.net
3484L: linux-usb-devel@lists.sourceforge.net
3485S: Maintained
3486
3487USB RTL8150 DRIVER
3488P: Petko Manolov
3489M: petkan@users.sourceforge.net
3490L: linux-usb-users@lists.sourceforge.net
3491L: linux-usb-devel@lists.sourceforge.net
3492W: http://pegasus2.sourceforge.net/
3493S: Maintained
3494
3495USB SE401 DRIVER
3496P: Jeroen Vreeken
3497M: pe1rxq@amsat.org
3498L: linux-usb-users@lists.sourceforge.net
3499L: linux-usb-devel@lists.sourceforge.net
3500W: http://www.chello.nl/~j.vreeken/se401/
3501S: Maintained
3502
3503USB SERIAL CYBERJACK DRIVER
3504P: Matthias Bruestle and Harald Welte
3505M: support@reiner-sct.com
3506W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3507S: Maintained
3508
3509USB SERIAL DIGI ACCELEPORT DRIVER
3510P: Peter Berger and Al Borchers
3511M: pberger@brimson.com
3512M: alborchers@steinerpoint.com
3513L: linux-usb-users@lists.sourceforge.net
3514L: linux-usb-devel@lists.sourceforge.net
3515S: Maintained
3516
3517USB SERIAL DRIVER
3518P: Greg Kroah-Hartman
3519M: gregkh@suse.de
3520L: linux-usb-users@lists.sourceforge.net
3521L: linux-usb-devel@lists.sourceforge.net
3522S: Supported
3523
3524USB SERIAL BELKIN F5U103 DRIVER
3525P: William Greathouse
3526M: wgreathouse@smva.com
3527L: linux-usb-users@lists.sourceforge.net
3528L: linux-usb-devel@lists.sourceforge.net
3529S: Maintained
3530
3531USB SERIAL CYPRESS M8 DRIVER
3532P: Lonnie Mendez
3533M: dignome@gmail.com
3534L: linux-usb-users@lists.sourceforge.net
3535L: linux-usb-devel@lists.sourceforge.net
3536S: Maintained
3537W: http://geocities.com/i0xox0i
3538W: http://firstlight.net/cvs
3539
3540USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3541L: linux-usb-users@lists.sourceforge.net
3542L: linux-usb-devel@lists.sourceforge.net
3543S: Maintained
3544
3545USB AUERSWALD DRIVER
3546P: Wolfgang Muees
3547M: wolfgang@iksw-muees.de
3548L: linux-usb-users@lists.sourceforge.net
3549L: linux-usb-devel@lists.sourceforge.net
3550S: Maintained
3551
3552USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3553P: Gary Brubaker
3554M: xavyer@ix.netcom.com
3555L: linux-usb-users@lists.sourceforge.net
3556L: linux-usb-devel@lists.sourceforge.net
3557S: Maintained
3558
3559USB SERIAL KEYSPAN DRIVER
3560P: Greg Kroah-Hartman
3561M: greg@kroah.com
3562L: linux-usb-users@lists.sourceforge.net
3563L: linux-usb-devel@lists.sourceforge.net
3564W: http://www.kroah.com/linux/
3565S: Maintained
3566
3567USB SERIAL WHITEHEAT DRIVER
3568P: Stuart MacDonald
3569M: stuartm@connecttech.com
3570L: linux-usb-users@lists.sourceforge.net
3571L: linux-usb-devel@lists.sourceforge.net
3572W: http://www.connecttech.com
3573S: Supported
3574
3575USB SN9C10x DRIVER
3576P: Luca Risolia
3577M: luca.risolia@studio.unibo.it
3578L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003579L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580W: http://www.linux-projects.org
3581S: Maintained
3582
3583USB SUBSYSTEM
3584P: Greg Kroah-Hartman
3585M: gregkh@suse.de
3586L: linux-usb-users@lists.sourceforge.net
3587L: linux-usb-devel@lists.sourceforge.net
3588W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003589T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590S: Supported
3591
3592USB UHCI DRIVER
3593P: Alan Stern
3594M: stern@rowland.harvard.edu
3595L: linux-usb-users@lists.sourceforge.net
3596L: linux-usb-devel@lists.sourceforge.net
3597S: Maintained
3598
David Brownell69ae9e32006-11-14 02:03:31 -08003599USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600P: David Brownell
3601M: dbrownell@users.sourceforge.net
3602L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003603W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604S: Maintained
3605
3606USB W996[87]CF DRIVER
3607P: Luca Risolia
3608M: luca.risolia@studio.unibo.it
3609L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003610L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611W: http://www.linux-projects.org
3612S: Maintained
3613
Luca Risolia60f78052006-02-06 16:29:35 +00003614USB ZC0301 DRIVER
3615P: Luca Risolia
3616M: luca.risolia@studio.unibo.it
3617L: linux-usb-devel@lists.sourceforge.net
3618L: video4linux-list@redhat.com
3619W: http://www.linux-projects.org
3620S: Maintained
3621
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622USB ZD1201 DRIVER
3623P: Jeroen Vreeken
3624M: pe1rxq@amsat.org
3625L: linux-usb-users@lists.sourceforge.net
3626L: linux-usb-devel@lists.sourceforge.net
3627W: http://linux-lc100020.sourceforge.net
3628S: Maintained
3629
3630USER-MODE LINUX
3631P: Jeff Dike
3632M: jdike@karaya.com
3633L: user-mode-linux-devel@lists.sourceforge.net
3634L: user-mode-linux-user@lists.sourceforge.net
3635W: http://user-mode-linux.sourceforge.net
3636S: Maintained
3637
3638FAT/VFAT/MSDOS FILESYSTEM:
3639P: OGAWA Hirofumi
3640M: hirofumi@mail.parknet.co.jp
3641L: linux-kernel@vger.kernel.org
3642S: Maintained
3643
3644VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3645P: Jeff Garzik
3646S: Odd fixes
3647
3648VIA RHINE NETWORK DRIVER
3649P: Roger Luethi
3650M: rl@hellgate.ch
3651S: Maintained
3652
Jean Delvare32c0a522005-09-22 21:47:58 +02003653VIAPRO SMBUS DRIVER
3654P: Jean Delvare
3655M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003656L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003657S: Maintained
3658
Francois Romieu01f20732007-01-26 00:57:17 -08003659VIA VELOCITY NETWORK DRIVER
3660P: Francois Romieu
3661M: romieu@fr.zoreil.com
3662L: netdev@vger.kernel.org
3663S: Maintained
3664
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665UCLINUX (AND M68KNOMMU)
3666P: Greg Ungerer
3667M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003669L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670S: Maintained
3671
3672UCLINUX FOR NEC V850
3673P: Miles Bader
3674M: uclinux-v850@lsi.nec.co.jp
3675W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3676W: http://www.ee.nec.de/uclinux/
3677S: Supported
3678
3679UCLINUX FOR RENESAS H8/300
3680P: Yoshinori Sato
3681M: ysato@users.sourceforge.jp
3682W: http://uclinux-h8.sourceforge.jp/
3683S: Supported
3684
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003685UFS FILESYSTEM
3686P: Evgeniy Dushistov
3687M: dushistov@mail.ru
3688L: linux-kernel@vger.kernel.org
3689S: Maintained
3690
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691USB DIAMOND RIO500 DRIVER
3692P: Cesar Miquel
3693M: miquel@df.uba.ar
3694L: rio500-users@lists.sourceforge.net
3695W: http://rio500.sourceforge.net
3696S: Maintained
3697
3698VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003699P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003700M: mchehab@infradead.org
3701M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003703W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003704T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003705S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
Juerg Haefligerab413192006-09-24 20:54:04 +02003707VT1211 HARDWARE MONITOR DRIVER
3708P: Juerg Haefliger
3709M: juergh@gmail.com
3710L: lm-sensors@lm-sensors.org
3711S: Maintained
3712
Roger Lucas1de9e372005-11-26 20:20:05 +01003713VT8231 HARDWARE MONITOR DRIVER
3714P: Roger Lucas
3715M: roger@planbit.co.uk
3716L: lm-sensors@lm-sensors.org
3717S: Maintained
3718
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719W1 DALLAS'S 1-WIRE BUS
3720P: Evgeniy Polyakov
3721M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722S: Maintained
3723
Charles Spirakis13927072006-07-05 18:05:15 +02003724W83791D HARDWARE MONITORING DRIVER
3725P: Charles Spirakis
3726M: bezaur@gmail.com
3727L: lm-sensors@lm-sensors.org
3728S: Maintained
3729
Rudolf Marek61db0112006-12-12 18:18:30 +01003730W83793 HARDWARE MONITORING DRIVER
3731P: Rudolf Marek
3732M: r.marek@assembler.cz
3733L: lm-sensors@lm-sensors.org
3734S: Maintained
3735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736W83L51xD SD/MMC CARD INTERFACE DRIVER
3737P: Pierre Ossman
3738M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003739L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740W: http://projects.drzeus.cx/wbsd
3741S: Maintained
3742
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003743WATCHDOG DEVICE DRIVERS
3744P: Wim Van Sebroeck
3745M: wim@iguana.be
3746T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3747S: Maintained
3748
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3750P: Jean Tourrilhes
3751M: jt@hpl.hp.com
3752W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3753S: Maintained
3754
3755WD7000 SCSI DRIVER
3756P: Miroslav Zagorac
3757M: zaga@fly.cc.fer.hr
3758L: linux-scsi@vger.kernel.org
3759S: Maintained
3760
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003761WISTRON LAPTOP BUTTON DRIVER
3762P: Miloslav Trmac
3763M: mitr@volny.cz
3764S: Maintained
3765
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766WL3501 WIRELESS PCMCIA CARD DRIVER
3767P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003768M: acme@ghostprotocols.net
3769W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770S: Maintained
3771
3772X.25 NETWORK LAYER
3773P: Henner Eisen
3774M: eis@baty.hanse.de
3775L: linux-x25@vger.kernel.org
3776S: Maintained
3777
3778XFS FILESYSTEM
3779P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003780P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003782L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003784T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785S: Supported
3786
Peter Korsgaard238b8722006-12-06 20:35:17 -08003787XILINX UARTLITE SERIAL DRIVER
3788P: Peter Korsgaard
3789M: jacmet@sunsite.dk
3790L: linux-serial@vger.kernel.org
3791S: Maintained
3792
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793X86 3-LEVEL PAGING (PAE) SUPPORT
3794P: Ingo Molnar
3795M: mingo@redhat.com
3796S: Maintained
3797
3798X86-64 port
3799P: Andi Kleen
3800M: ak@suse.de
3801L: discuss@x86-64.org
3802W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01003803T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804S: Maintained
3805
3806YAM DRIVER FOR AX.25
3807P: Jean-Paul Roubelat
3808M: jpr@f6fbb.org
3809L: linux-hams@vger.kernel.org
3810S: Maintained
3811
Henkaf64a5e2005-10-12 15:02:56 +02003812YEALINK PHONE DRIVER
3813P: Henk Vergonet
3814M: Henk.Vergonet@gmail.com
3815L: usbb2k-api-dev@nongnu.org
3816S: Maintained
3817
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818Z8530 DRIVER FOR AX.25
3819P: Joerg Reuter
3820M: jreuter@yaina.de
3821W: http://yaina.de/jreuter/
3822W: http://www.qsl.net/dl1bke/
3823L: linux-hams@vger.kernel.org
3824S: Maintained
3825
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003826ZD1211RW WIRELESS DRIVER
3827P: Daniel Drake
3828M: dsd@gentoo.org
3829P: Ulrich Kunitz
3830M: kune@deine-taler.de
3831W: http://zd1211.ath.cx/wiki/DriverRewrite
3832L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3833S: Maintained
3834
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835ZF MACHZ WATCHDOG
3836P: Fernando Fuganti
3837M: fuganti@netbank.com.br
3838W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3839S: Maintained
3840
3841ZR36067 VIDEO FOR LINUX DRIVER
3842P: Ronald Bultje
3843M: rbultje@ronald.bitfreak.net
3844L: mjpeg-users@lists.sourceforge.net
3845W: http://mjpeg.sourceforge.net/driver-zoran/
3846S: Maintained
3847
3848ZR36120 VIDEO FOR LINUX DRIVER
3849P: Pauline Middelink
3850M: middelin@polyware.nl
3851W: http://www.polyware.nl/~middelin/En/hobbies.html
3852W: http://www.polyware.nl/~middelin/hobbies.html
3853S: Maintained
3854
3855THE REST
3856P: Linus Torvalds
3857S: Buried alive in reporters