blob: 1561f33e15b994b8e1983250a2e97d202747e7f0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
33 generalized kernel feature ready for next time. See
34 Documentation/CodingStyle for guidance here.
35
36 PLEASE try to include any credit lines you want added with the
37 patch. It avoids people being missed off by mistake and makes
38 it easier to know who wants adding and who doesn't.
39
40 PLEASE document known bugs. If it doesn't work for everything
41 or does something very odd once a month document it.
42
Alan Coxc9ee1332006-05-20 15:00:12 -070043 PLEASE remember that submissions must be made under the terms
44 of the OSDL certificate of contribution
45 (http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html)
46 and should include a Signed-off-by: line.
47
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486. Make sure you have the right to send any changes you make. If you
49 do changes at work you may find your employer owns the patch
50 not you.
51
Alan Coxc9ee1332006-05-20 15:00:12 -0700527. When sending security related changes or reports to a maintainer
53 please Cc: security@kernel.org, especially if the maintainer
54 does not respond.
55
568. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Antoine Jacquetb7eee612007-04-27 12:30:59 -030058 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60Maintainers List (try to look for most precise areas first)
61
62Note: For the hard of thinking, this list is meant to remain in alphabetical
63order. If you could add yourselves to it in alphabetical order that would be
64so much easier [Ed]
65
66P: Person
67M: Mail patches to
68L: Mailing list that is relevant to this area
69W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080070T: SCM tree type and location. Type is one of: git, hg, quilt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071S: Status, one of the following:
72
73 Supported: Someone is actually paid to look after this.
74 Maintained: Someone actually looks after it.
75 Odd Fixes: It has a maintainer but they don't have time to do
76 much other than throw the odd patch in. See below..
77 Orphan: No current maintainer [but maybe you could take the
78 role as you write your new code].
79 Obsolete: Old code. Something tagged obsolete generally means
80 it has been replaced by a better system and you
81 should be using that.
82
833C359 NETWORK DRIVER
84P: Mike Phillips
85M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -070086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070087L: linux-tr@linuxtr.net
88W: http://www.linuxtr.net
89S: Maintained
90
913C505 NETWORK DRIVER
92P: Philip Blundell
93M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -070094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070095S: Maintained
96
973CR990 NETWORK DRIVER
98P: David Dillow
99M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101S: Maintained
102
1033W-XXXX ATA-RAID CONTROLLER DRIVER
104P: Adam Radford
105M: linuxraid@amcc.com
106L: linux-scsi@vger.kernel.org
107W: http://www.amcc.com
108S: Supported
109
1103W-9XXX SATA-RAID CONTROLLER DRIVER
111P: Adam Radford
112M: linuxraid@amcc.com
113L: linux-scsi@vger.kernel.org
114W: http://www.amcc.com
115S: Supported
116
11753C700 AND 53C700-66 SCSI DRIVER
118P: James E.J. Bottomley
119M: James.Bottomley@HansenPartnership.com
120L: linux-scsi@vger.kernel.org
121S: Maintained
122
1236PACK NETWORK DRIVER FOR AX.25
124P: Andreas Koensgen
125M: ajk@iehk.rwth-aachen.de
126L: linux-hams@vger.kernel.org
127S: Maintained
128
1298139CP 10/100 FAST ETHERNET DRIVER
130P: Jeff Garzik
131M: jgarzik@pobox.com
132S: Maintained
133
1348139TOO 10/100 FAST ETHERNET DRIVER
135P: Jeff Garzik
136M: jgarzik@pobox.com
137W: http://sourceforge.net/projects/gkernel/
138S: Maintained
139
1408169 10/100/1000 GIGABIT ETHERNET DRIVER
141P: Francois Romieu
142M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700143L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Maintained
145
1468250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-serial@vger.kernel.org
148W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100149S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1518390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
152P: Paul Gortmaker
153M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
156
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001579P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100158P: Eric Van Hensbergen
159M: ericvh@gmail.com
160P: Ron Minnich
161M: rminnich@lanl.gov
162P: Latchesar Ionkov
163M: lucho@ionkov.net
164L: v9fs-developer@lists.sourceforge.net
165W: http://v9fs.sf.net
166T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
167S: Maintained
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169A2232 SERIAL BOARD DRIVER
170P: Enver Haase
171M: ehaase@inf.fu-berlin.de
172M: A2232@gmx.net
173L: linux-m68k@lists.linux-m68k.org
174S: Maintained
175
176AIO
177P: Benjamin LaHaise
178M: bcrl@kvack.org
179L: linux-aio@kvack.org
180S: Supported
181
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200182ABIT UGURU HARDWARE MONITOR DRIVER
183P: Hans de Goede
184M: j.w.r.degoede@hhs.nl
185L: lm-sensors@lm-sensors.org
186S: Maintained
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188ACENIC DRIVER
189P: Jes Sorensen
190M: jes@trained-monkey.org
191L: linux-acenic@sunsite.dk
192S: Maintained
193
194ACI MIXER DRIVER
195P: Robert Siemer
196M: Robert.Siemer@gmx.de
197L: linux-sound@vger.kernel.org
198W: http://www.stud.uni-karlsruhe.de/~uh1b/
199S: Maintained
200
Salyzyn, Marke6d1fc32007-03-29 01:20:24 -0700201IPS SCSI RAID DRIVER
202P: Adaptec OEM Raid Solutions
203M: aacraid@adaptec.com
204L: linux-scsi@vger.kernel.org
205W: http://www.adaptec.com/
206S: Maintained
207
208DPT_I2O SCSI RAID DRIVER
209P: Adaptec OEM Raid Solutions
210M: aacraid@adaptec.com
211L: linux-scsi@vger.kernel.org
212W: http://www.adaptec.com/
213S: Maintained
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215AACRAID SCSI RAID DRIVER
216P: Adaptec OEM Raid Solutions
Salyzyn, Marke6d1fc32007-03-29 01:20:24 -0700217M: aacraid@adaptec.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218L: linux-scsi@vger.kernel.org
Salyzyn, Marke6d1fc32007-03-29 01:20:24 -0700219W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220S: Supported
221
222ACPI
223P: Len Brown
224M: len.brown@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500225M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500226L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800228T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500229S: Supported
230
231ACPI BATTERY DRIVERS
232P: Vladimir P. Lebedev
233M: vladimir.p.lebedev@intel.com
234L: linux-acpi@vger.kernel.org
235W: http://acpi.sourceforge.net/
236S: Supported
237
238ACPI EC DRIVER
239P: Alexey Starikovskiy
240M: alexey.y.starikovskiy@linux.intel.com
241L: linux-acpi@vger.kernel.org
242W: http://acpi.sourceforge.net/
243S: Supported
244
245ACPI FAN DRIVER
246P: Konstantin A. Karasyov
247M: konstantin.a.karasyov@intel.com
248L: linux-acpi@vger.kernel.org
249W: http://acpi.sourceforge.net/
250S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700252ACPI PCI HOTPLUG DRIVER
253P: Kristen Carlson Accardi
254M: kristen.c.accardi@intel.com
255L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -0500256S: Supported
257
258ACPI THERMAL DRIVER
259P: Konstantin A. Karasyov
260M: konstantin.a.karasyov@intel.com
261L: linux-acpi@vger.kernel.org
262W: http://acpi.sourceforge.net/
263S: Supported
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700264
Len Brown359acec2007-02-10 01:59:24 -0500265ACPI VIDEO DRIVER
266P: Luming Yu
267M: luming.yu@intel.com
268L: linux-acpi@vger.kernel.org
269W: http://acpi.sourceforge.net/
270S: Supported
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272AD1816 SOUND DRIVER
273P: Thorsten Knabe
274M: Thorsten Knabe <linux@thorsten-knabe.de>
275W: http://linux.thorsten-knabe.de
276S: Maintained
277
Kyle McMartin6958ae32005-10-21 23:11:27 -0400278AD1889 SOUND DRIVER
279P: Kyle McMartin
280M: kyle@parisc-linux.org
281P: Thibaut Varene
282M: T-Bone@parisc-linux.org
283W: http://wiki.parisc-linux.org/AD1889
284L: parisc-linux@lists.parisc-linux.org
285S: Maintained
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287ADM1025 HARDWARE MONITOR DRIVER
288P: Jean Delvare
289M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200290L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291S: Maintained
292
Corentin Labbecae2caa2007-02-14 21:15:04 +0100293ADM1029 HARDWARE MONITOR DRIVER
294P: Corentin Labbe
295M: corentin.labbe@geomatys.fr
296L: lm-sensors@lm-sensors.org
297S: Maintained
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299ADT746X FAN DRIVER
300P: Colin Leroy
301M: colin@colino.net
302S: Maintained
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304AEDSP16 DRIVER
305P: Riccardo Facchetti
306M: fizban@tin.it
307S: Maintained
308
309AFFS FILE SYSTEM
310P: Roman Zippel
311M: zippel@linux-m68k.org
312S: Maintained
313
314AGPGART DRIVER
315P: Dave Jones
316M: davej@codemonkey.org.uk
317W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800318T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319S: Maintained
320
321AHA152X SCSI DRIVER
322P: Juergen E. Fischer
323M: Juergen Fischer <fischer@norbit.de>
324L: linux-scsi@vger.kernel.org
325S: Maintained
326
327ALCATEL SPEEDTOUCH USB DRIVER
328P: Duncan Sands
329M: duncan.sands@free.fr
330L: linux-usb-users@lists.sourceforge.net
331L: linux-usb-devel@lists.sourceforge.net
332W: http://www.linux-usb.org/SpeedTouch/
333S: Maintained
334
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000335ALI1563 I2C DRIVER
336P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100337M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200338L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000339S: Maintained
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341ALPHA PORT
342P: Richard Henderson
343M: rth@twiddle.net
344S: Odd Fixes for 2.4; Maintained for 2.6.
345P: Ivan Kokshaysky
346M: ink@jurassic.park.msu.ru
347S: Maintained for 2.4; PCI support for 2.6.
348
Jordan Crousef90b8112006-01-06 00:12:14 -0800349AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100350P: Jordan Crouse
351M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800352L: info-linux@geode.amd.com
353W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
354S: Supported
355
Stelian Pop284f42b2006-12-12 18:18:31 +0100356AMS (Apple Motion Sensor) DRIVER
357P: Stelian Pop
358M: stelian@popies.net
359P: Michael Hanselmann
360M: linux-kernel@hansmi.ch
361S: Supported
362
Tom Tuckerf94b5332006-09-22 15:22:48 -0700363AMSO1100 RNIC DRIVER
364P: Tom Tucker
365M: tom@opengridcomputing.com
366P: Steve Wise
367M: swise@opengridcomputing.com
368L: openib-general@openib.org
369S: Maintained
370
Johannes Berg42269062006-07-25 16:15:50 +0200371AOA (Apple Onboard Audio) ALSA DRIVER
372P: Johannes Berg
373M: johannes@sipsolutions.net
374L: linuxppc-dev@ozlabs.org
375L: alsa-devel@alsa-project.org
376S: Maintained
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378APM DRIVER
379P: Stephen Rothwell
380M: sfr@canb.auug.org.au
381L: linux-laptop@vger.kernel.org
382W: http://www.canb.auug.org.au/~sfr/
383S: Supported
384
385APPLETALK NETWORK LAYER
386P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300387M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388S: Maintained
389
Jaya Kumar1154ea72005-06-21 17:17:04 -0700390ARC FRAMEBUFFER DRIVER
391P: Jaya Kumar
392M: jayalk@intworks.biz
393S: Maintained
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395ARM26 ARCHITECTURE
396P: Ian Molton
397M: spyro@f2s.com
398S: Maintained
399
400ARM26/ARCHIMEDES
401P: Ian Molton
402M: spyro@f2s.com
403S: Maintained
404
405ARM26/A5000
406P: John Appleby
407M: john@dnsworld.co.uk
408S: Maintained
409
410ARM MFM AND FLOPPY DRIVERS
411P: Ian Molton
412M: spyro@f2s.com
413S: Maintained
414
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800415ARM/ADI ROADRUNNER MACHINE SUPPORT
416P: Lennert Buytenhek
417M: kernel@wantstofly.org
418L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
419S: Maintained
420
421ARM/ADS SPHERE MACHINE SUPPORT
422P: Lennert Buytenhek
423M: kernel@wantstofly.org
424L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
425S: Maintained
426
427ARM/AJECO 1ARM MACHINE SUPPORT
428P: Lennert Buytenhek
429M: kernel@wantstofly.org
430L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
431S: Maintained
432
Andrew Victord4a89c72006-12-04 13:56:21 +0100433ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
434P: Andrew Victor
435M: andrew@sanpeople.com
436L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
437W: http://maxim.org.za/at91_26.html
438S: Maintained
439
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800440ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
441P: Lennert Buytenhek
442M: kernel@wantstofly.org
443L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
444S: Maintained
445
446ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
447P: Lennert Buytenhek
448M: kernel@wantstofly.org
449L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
450S: Maintained
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452ARM/CORGI MACHINE SUPPORT
453P: Richard Purdie
454M: rpurdie@rpsys.net
455S: Maintained
456
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800457ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
458P: Lennert Buytenhek
459M: kernel@wantstofly.org
460L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
461S: Maintained
462
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100463ARM/HP JORNADA 7XX MACHINE SUPPORT
464P: Kristoffer Ericson
465M: kristoffer_e1@hotmail.com
466W: www.jlime.com
467S: Maintained
468
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800469ARM/INTEL IOP32X ARM ARCHITECTURE
470P: Lennert Buytenhek
471M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100472P: Dan Williams
473M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800474L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100475S: Supported
476
477ARM/INTEL IOP33X ARM ARCHITECTURE
478P: Dan Williams
479M: dan.j.williams@intel.com
480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
481S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800482
483ARM/INTEL IOP13XX ARM ARCHITECTURE
484P: Lennert Buytenhek
485M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100486P: Dan Williams
487M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800488L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100489S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800490
491ARM/INTEL IQ81342EX MACHINE SUPPORT
492P: Lennert Buytenhek
493M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100494P: Dan Williams
495M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800496L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100497S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800498
499ARM/INTEL IXP2000 ARM ARCHITECTURE
500P: Lennert Buytenhek
501M: kernel@wantstofly.org
502L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
503S: Maintained
504
505ARM/INTEL IXDP2850 MACHINE SUPPORT
506P: Lennert Buytenhek
507M: kernel@wantstofly.org
508L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
509S: Maintained
510
511ARM/INTEL IXP23XX ARM ARCHITECTURE
512P: Lennert Buytenhek
513M: kernel@wantstofly.org
514L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
515S: Maintained
516
517ARM/INTEL XSC3 (MANZANO) ARM CORE
518P: Lennert Buytenhek
519M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100520P: Dan Williams
521M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800522L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100523S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800524
525ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
526P: Lennert Buytenhek
527M: kernel@wantstofly.org
528L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
529S: Maintained
530
531ARM/LOGICPD PXA270 MACHINE SUPPORT
532P: Lennert Buytenhek
533M: kernel@wantstofly.org
534L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
535S: Maintained
536
Dirk Opfer8459c152005-11-06 14:27:52 +0000537ARM/TOSA MACHINE SUPPORT
538P: Dirk Opfer
539M: dirk@opfer-online.de
540S: Maintained
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542ARM/PLEB SUPPORT
543P: Peter Chubb
544M: pleb@gelato.unsw.edu.au
545W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
546S: Maintained
547
548ARM/PT DIGITAL BOARD PORT
549P: Stefan Eletzhofer
550M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700551L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552W: http://www.arm.linux.org.uk/
553S: Maintained
554
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800555ARM/RADISYS ENP2611 MACHINE SUPPORT
556P: Lennert Buytenhek
557M: kernel@wantstofly.org
558L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
559S: Maintained
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561ARM/SHARK MACHINE SUPPORT
562P: Alexander Schulz
563M: alex@shark-linux.de
564W: http://www.shark-linux.de/shark.html
565S: Maintained
566
567ARM/STRONGARM110 PORT
568P: Russell King
569M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700570L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571W: http://www.arm.linux.org.uk/
572S: Maintained
573
574ARM/S3C2410 ARM ARCHITECTURE
575P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800576M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700577L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578W: http://www.fluff.org/ben/linux/
579S: Maintained
580
581ARM/S3C2440 ARM ARCHITECTURE
582P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800583M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700584L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585W: http://www.fluff.org/ben/linux/
586S: Maintained
587
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800588ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
589P: Lennert Buytenhek
590M: kernel@wantstofly.org
591L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
592S: Maintained
593
594ARM/THECUS N2100 MACHINE SUPPORT
595P: Lennert Buytenhek
596M: kernel@wantstofly.org
597L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
598S: Maintained
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600ARPD SUPPORT
601P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700602L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603S: Maintained
604
605ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500606P: Corentin Chary
607M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608P: Karol Kozimor
609M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610L: acpi4asus-user@lists.sourceforge.net
611W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500612W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613S: Maintained
614
Corentin Chary85091b72007-01-26 14:04:30 +0100615ASUS LAPTOP EXTRAS DRIVER
616P: Corentin Chary
617M: corentincj@iksaif.net
618L: acpi4asus-user@lists.sourceforge.net
619W: http://sourceforge.net/projects/acpi4asus
620W: http://xf.iksaif.net/acpi4asus
621S: Maintained
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623ATA OVER ETHERNET DRIVER
624P: Ed L. Cashin
625M: ecashin@coraid.com
626W: http://www.coraid.com/support/linux
627S: Supported
628
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600629ATL1 ETHERNET DRIVER
630P: Jay Cliburn
631M: jcliburn@gmail.com
632P: Chris Snook
633M: csnook@redhat.com
634L: atl1-devel@lists.sourceforge.net
635W: http://sourceforge.net/projects/atl1
636W: http://atl1.sourceforge.net
637S: Maintained
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639ATM
640P: Chas Williams
641M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700642L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643W: http://linux-atm.sourceforge.net
644S: Maintained
645
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100646ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100647P: Haavard Skinnemoen
648M: hskinnemoen@atmel.com
649S: Supported
650
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800651ATMEL SPI DRIVER
652P: Haavard Skinnemoen
653M: hskinnemoen@atmel.com
654S: Supported
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656ATMEL WIRELESS DRIVER
657P: Simon Kelley
658M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -0700659L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660W: http://www.thekelleys.org.uk/atmel
661W: http://atmelwlandriver.sourceforge.net/
662S: Maintained
663
Chris Wrighta92b7b82005-07-07 18:12:23 -0700664AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100665P: David Woodhouse
666M: dwmw2@infradead.org
667L: linux-audit@redhat.com
668W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800669T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700670S: Maintained
671
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800672AUXILIARY DISPLAY DRIVERS
673P: Miguel Ojeda Sandonis
674M: maxextreme@gmail.com
675L: linux-kernel@vger.kernel.org
676S: Maintained
677
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700678AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700679P: Haavard Skinnemoen
680M: hskinnemoen@atmel.com
681W: http://www.atmel.com/products/AVR32/
682W: http://avr32linux.org/
683W: http://avrfreaks.net/
684S: Supported
685
686AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700687P: Haavard Skinnemoen
688M: hskinnemoen@atmel.com
689S: Supported
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691AX.25 NETWORK LAYER
692P: Ralf Baechle
693M: ralf@linux-mips.org
694L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200695W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696S: Maintained
697
Richard Purdie300abeb2007-02-07 22:21:07 +0000698BACKLIGHT CLASS/SUBSYSTEM
699P: Richard Purdie
700M: rpurdie@rpsys.net
701S: Maintained
702
Bryan Wu1394f032007-05-06 14:50:22 -0700703BLACKFIN ARCHITECTURE
704P: Aubrey Li
705M: aubrey.li@analog.com
706P: Bernd Schmidt
707M: bernd.schmidt@analog.com
708P: Bryan Wu
709M: bryan.wu@analog.com
710P: Grace Pan
711M: grace.pan@analog.com
712P: Michael Hennerich
713M: michael.hennerich@analog.com
714P: Mike Frysinger
715M: michael.frysinger@analog.com
716P: Jane Lv
717M: jane.lv@analog.com
718P: Jerry Zeng
719M: jerry.zeng@analog.com
720P: Jie Zhang
721M: jie.zhang@analog.com
722P: Robin Getz
723M: robin.getz@analog.com
724P: Roy Huang
725M: roy.huang@analog.com
726P: Sonic Zhang
727M: sonic.zhang@analog.com
728P: Yi Li
729M: yi.li@analog.com
730L: uclinux-dist-devel@blackfin.uclinux.org
731W: http://blackfin.uclinux.org
732S: Supported
733
734BLACKFIN SERIAL DRIVER
735P: Aubrey Li
736M: aubrey.li@analog.com
737L: uclinux-dist-devel@blackfin.uclinux.org
738W: http://blackfin.uclinux.org
739S: Supported
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741BAYCOM/HDLCDRV DRIVERS FOR AX.25
742P: Thomas Sailer
743M: t.sailer@alumni.ethz.ch
744L: linux-hams@vger.kernel.org
745W: http://www.baycom.org/~tom/ham/ham.html
746S: Maintained
747
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200748BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
749P: Larry Finger
750M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200751P: Stefano Brivio
752M: st3@riseup.net
Johannes Berg724c6b32007-04-23 12:18:20 -0700753L: linux-wireless@vger.kernel.org
Michael Buesch9eac8f92006-04-22 17:31:27 +0200754W: http://bcm43xx.berlios.de/
755S: Maintained
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757BEFS FILE SYSTEM
758P: Sergey S. Kostyliov
759M: rathamahata@php4.ru
760L: linux-kernel@vger.kernel.org
761S: Maintained
762
763BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
764P: Kenji Hollis
765W: http://ftp.bitgate.com/pcwd/
766S: Maintained
767
768BFS FILE SYSTEM
769P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800770M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771L: linux-kernel@vger.kernel.org
772S: Maintained
773
Bryan Wud24ecfc2007-05-01 23:26:32 +0200774BLACKFIN I2C TWI DRIVER
775P: Sonic Zhang
776M: sonic.zhang@analog.com
777L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
778W: http://blackfin.uclinux.org/
779S: Supported
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781BLOCK LAYER
782P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200783M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800785T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786S: Maintained
787
788BLUETOOTH SUBSYSTEM
789P: Marcel Holtmann
790M: marcel@holtmann.org
791P: Maxim Krasnyansky
792M: maxk@qualcomm.com
793L: bluez-devel@lists.sf.net
794W: http://bluez.sf.net
795W: http://www.bluez.org
796W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800797T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798S: Maintained
799
800BLUETOOTH RFCOMM LAYER
801P: Marcel Holtmann
802M: marcel@holtmann.org
803P: Maxim Krasnyansky
804M: maxk@qualcomm.com
805S: Maintained
806
807BLUETOOTH BNEP LAYER
808P: Marcel Holtmann
809M: marcel@holtmann.org
810P: Maxim Krasnyansky
811M: maxk@qualcomm.com
812S: Maintained
813
814BLUETOOTH CMTP LAYER
815P: Marcel Holtmann
816M: marcel@holtmann.org
817S: Maintained
818
819BLUETOOTH HIDP LAYER
820P: Marcel Holtmann
821M: marcel@holtmann.org
822S: Maintained
823
824BLUETOOTH HCI UART DRIVER
825P: Marcel Holtmann
826M: marcel@holtmann.org
827P: Maxim Krasnyansky
828M: maxk@qualcomm.com
829S: Maintained
830
831BLUETOOTH HCI USB DRIVER
832P: Marcel Holtmann
833M: marcel@holtmann.org
834P: Maxim Krasnyansky
835M: maxk@qualcomm.com
836S: Maintained
837
838BLUETOOTH HCI BCM203X DRIVER
839P: Marcel Holtmann
840M: marcel@holtmann.org
841S: Maintained
842
843BLUETOOTH HCI BPA10X DRIVER
844P: Marcel Holtmann
845M: marcel@holtmann.org
846S: Maintained
847
848BLUETOOTH HCI BFUSB DRIVER
849P: Marcel Holtmann
850M: marcel@holtmann.org
851S: Maintained
852
853BLUETOOTH HCI DTL1 DRIVER
854P: Marcel Holtmann
855M: marcel@holtmann.org
856S: Maintained
857
858BLUETOOTH HCI BLUECARD DRIVER
859P: Marcel Holtmann
860M: marcel@holtmann.org
861S: Maintained
862
863BLUETOOTH HCI BT3C DRIVER
864P: Marcel Holtmann
865M: marcel@holtmann.org
866S: Maintained
867
868BLUETOOTH HCI BTUART DRIVER
869P: Marcel Holtmann
870M: marcel@holtmann.org
871S: Maintained
872
873BLUETOOTH HCI VHCI DRIVER
874P: Maxim Krasnyansky
875M: maxk@qualcomm.com
876S: Maintained
877
878BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100879P: Chad Tindel
880M: ctindel@users.sourceforge.net
881P: Jay Vosburgh
882M: fubar@us.ibm.com
883L: bonding-devel@lists.sourceforge.net
884W: http://sourceforge.net/projects/bonding/
885S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000887BROADBAND PROCESSOR ARCHITECTURE
888P: Arnd Bergmann
889M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100890L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400891W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000892S: Supported
893
Gary Zambrano39105892006-06-22 17:26:20 -0700894BROADCOM B44 10/100 ETHERNET DRIVER
895P: Gary Zambrano
896M: zambrano@broadcom.com
897L: netdev@vger.kernel.org
898S: Supported
899
Michael Chan948c51e2006-06-04 02:51:39 -0700900BROADCOM BNX2 GIGABIT ETHERNET DRIVER
901P: Michael Chan
902M: mchan@broadcom.com
903L: netdev@vger.kernel.org
904S: Supported
905
906BROADCOM TG3 GIGABIT ETHERNET DRIVER
907P: Michael Chan
908M: mchan@broadcom.com
909L: netdev@vger.kernel.org
910S: Supported
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700913P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200914M: mchehab@infradead.org
915M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700917W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200918T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700919S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Jonathan Corbet77d51402007-03-22 19:44:17 -0300921CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
922P: Jonathan Corbet
923M: corbet@lwn.net
924L: video4linux-list@redhat.com
925S: Maintained
926
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200927CALGARY x86-64 IOMMU
928P: Muli Ben-Yehuda
929M: muli@il.ibm.com
930P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200931M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200932L: linux-kernel@vger.kernel.org
933L: discuss@x86-64.org
934S: Maintained
935
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800936CFAG12864B LCD DRIVER
937P: Miguel Ojeda Sandonis
938M: maxextreme@gmail.com
939L: linux-kernel@vger.kernel.org
940S: Maintained
941
942CFAG12864BFB LCD FRAMEBUFFER DRIVER
943P: Miguel Ojeda Sandonis
944M: maxextreme@gmail.com
945L: linux-kernel@vger.kernel.org
946S: Maintained
947
Johannes Berg704232c2007-04-23 12:20:05 -0700948CFG80211 and NL80211
949P: Johannes Berg
950M: johannes@sipsolutions.net
951L: linux-wireless@vger.kernel.org
952S: Maintained
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954COMMON INTERNET FILE SYSTEM (CIFS)
955P: Steve French
956M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100957L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958L: samba-technical@lists.samba.org
959W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800960T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300961S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Joel Becker7063fbf2005-12-15 14:29:43 -0800963CONFIGFS
964P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800965M: joel.becker@oracle.com
966L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800967S: Supported
968
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800969CIRRUS LOGIC EP93XX ETHERNET DRIVER
970P: Lennert Buytenhek
971M: kernel@wantstofly.org
972L: netdev@vger.kernel.org
973S: Maintained
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975CIRRUS LOGIC GENERIC FBDEV DRIVER
976P: Jeff Garzik
977M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800978L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979S: Odd Fixes
980
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800981CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
982P: Lennert Buytenhek
983M: kernel@wantstofly.org
984L: linux-usb-devel@lists.sourceforge.net
985S: Maintained
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
988P: Cirrus Logic Corporation (kernel 2.2 driver)
989M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
990P: Nils Faerber (port to kernel 2.4)
991M: Nils Faerber <nils@kernelconcepts.de>
992S: Maintained
993
994CODA FILE SYSTEM
995P: Jan Harkes
996M: jaharkes@cs.cmu.edu
997M: coda@cs.cmu.edu
998L: codalist@coda.cs.cmu.edu
999W: http://www.coda.cs.cmu.edu/
1000S: Maintained
1001
1002COMPACTPCI HOTPLUG CORE
1003P: Scott Murray
1004M: scottm@somanetworks.com
1005M: scott@spiteful.org
1006L: pcihpd-discuss@lists.sourceforge.net
1007S: Supported
1008
1009COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1010P: Scott Murray
1011M: scottm@somanetworks.com
1012M: scott@spiteful.org
1013L: pcihpd-discuss@lists.sourceforge.net
1014S: Supported
1015
1016COMPACTPCI HOTPLUG GENERIC DRIVER
1017P: Scott Murray
1018M: scottm@somanetworks.com
1019M: scott@spiteful.org
1020L: pcihpd-discuss@lists.sourceforge.net
1021S: Supported
1022
1023COMPUTONE INTELLIPORT MULTIPORT CARD
1024P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001025M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001027S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Simon Arlott949be0f2007-03-06 02:47:46 -08001029CONEXANT ACCESSRUNNER USB DRIVER
1030P: Simon Arlott
1031M: cxacru@fire.lp0.eu
1032S: Maintained
1033
Rudolf Marekbebe4672007-05-08 17:22:02 +02001034CORETEMP HARDWARE MONITORING DRIVER
1035P: Rudolf Marek
1036M: r.marek@assembler.cz
1037L: lm-sensors@lm-sensors.org
1038S: Maintained
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040COSA/SRP SYNC SERIAL DRIVER
1041P: Jan "Yenya" Kasprzak
1042M: kas@fi.muni.cz
1043W: http://www.fi.muni.cz/~kas/cosa/
1044S: Maintained
1045
1046CPU FREQUENCY DRIVERS
1047P: Dave Jones
1048M: davej@codemonkey.org.uk
1049L: cpufreq@lists.linux.org.uk
1050W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -05001051T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052S: Maintained
1053
1054CPUID/MSR DRIVER
1055P: H. Peter Anvin
1056M: hpa@zytor.com
1057S: Maintained
1058
Paul Jacksoned90fb42005-09-27 21:45:37 -07001059CPUSETS
1060P: Paul Jackson
1061P: Simon Derr
1062M: pj@sgi.com
1063M: simon.derr@bull.net
1064L: linux-kernel@vger.kernel.org
1065W: http://www.bullopensource.org/cpuset/
1066S: Supported
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001069W: http://sourceforge.net/projects/cramfs/
1070S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072CRIS PORT
1073P: Mikael Starvik
1074M: starvik@axis.com
1075L: dev-etrax@axis.com
1076W: http://developer.axis.com
1077S: Maintained
1078
1079CRYPTO API
1080P: Herbert Xu
1081M: herbert@gondor.apana.org.au
1082P: David S. Miller
1083M: davem@davemloft.net
1084L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001085T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086S: Maintained
1087
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001088CS5535 Audio ALSA driver
1089P: Jaya Kumar
1090M: jayakumar.alsa@gmail.com
1091S: Maintained
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093CYBERPRO FB DRIVER
1094P: Russell King
1095M: rmk@arm.linux.org.uk
1096W: http://www.arm.linux.org.uk/
1097S: Maintained
1098
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001099CYBLAFB FRAMEBUFFER DRIVER
1100P: Knut Petersen
1101M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001102L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001103S: Maintained
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105CYCLADES 2X SYNC CARD DRIVER
1106P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001107M: acme@ghostprotocols.net
1108W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109S: Maintained
1110
1111CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001113S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001117S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119DAMA SLAVE for AX.25
1120P: Joerg Reuter
1121M: jreuter@yaina.de
1122W: http://yaina.de/jreuter/
1123W: http://www.qsl.net/dl1bke/
1124L: linux-hams@vger.kernel.org
1125S: Maintained
1126
1127DC395x SCSI driver
1128P: Oliver Neukum
1129M: oliver@neukum.name
1130P: Ali Akcaagac
1131M: aliakc@web.de
1132P: Jamie Lenehan
1133M: lenehan@twibble.org
1134W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001135L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136L: http://lists.twibble.org/mailman/listinfo/dc395x/
1137S: Maintained
1138
1139DC390/AM53C974 SCSI driver
1140P: Kurt Garloff
1141M: garloff@suse.de
1142W: http://www.garloff.de/kurt/linux/dc390/
1143P: Guennadi Liakhovetski
1144M: g.liakhovetski@gmx.de
1145S: Maintained
1146
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001147DCCP PROTOCOL
1148P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001149M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001150L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001151W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001152S: Maintained
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154DECnet NETWORK LAYER
1155P: Patrick Caulfield
1156M: patrick@tykepenguin.com
1157W: http://linux-decnet.sourceforge.net
1158L: linux-decnet-user@lists.sourceforge.net
1159S: Maintained
1160
1161DEFXX FDDI NETWORK DRIVER
1162P: Maciej W. Rozycki
1163M: macro@linux-mips.org
1164S: Maintained
1165
1166DELL LAPTOP SMM DRIVER
1167P: Massimo Dal Zotto
1168M: dz@debian.org
1169W: http://www.debian.org/~dz/i8k/
1170S: Maintained
1171
Doug Warzecha90563ec2005-09-06 15:17:15 -07001172DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1173P: Doug Warzecha
1174M: Douglas_Warzecha@dell.com
1175S: Maintained
1176
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001177DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178P: Alasdair Kergon
1179L: dm-devel@redhat.com
1180W: http://sources.redhat.com/dm
1181S: Maintained
1182
1183DEVICE NUMBER REGISTRY
1184P: Torben Mathiasen
1185M: device@lanana.org
1186W: http://lanana.org/docs/device-list/index.html
1187L: linux-kernel@vger.kernel.org
1188S: Maintained
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190DIGI INTL. EPCA DRIVER
1191P: Digi International, Inc
1192M: Eng.Linux@digi.com
1193L: Eng.Linux@digi.com
1194W: http://www.digi.com
1195S: Orphaned
1196
1197DIGI RIGHTSWITCH NETWORK DRIVER
1198P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001199L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200W: http://www.digi.com
1201S: Orphaned
1202
1203DIRECTORY NOTIFICATION
1204P: Stephen Rothwell
1205M: sfr@canb.auug.org.au
1206L: linux-kernel@vger.kernel.org
1207S: Supported
1208
1209DISK GEOMETRY AND PARTITION HANDLING
1210P: Andries Brouwer
1211M: aeb@cwi.nl
1212W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1213W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1214W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1215S: Maintained
1216
1217DISKQUOTA:
1218P: Jan Kara
1219M: jack@suse.cz
1220L: linux-kernel@vger.kernel.org
1221S: Maintained
1222
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001223DISTRIBUTED LOCK MANAGER
1224P: Patrick Caulfield
1225M: pcaulfie@redhat.com
1226P: David Teigland
1227M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001228L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001229W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001230T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1231T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001232S: Supported
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1235P: Tobias Ringstrom
1236M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001237L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238S: Maintained
1239
Martin Waitzba483d52005-06-17 13:20:59 -07001240DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001241P: Randy Dunlap
1242M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001243S: Maintained
1244
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001245DOCKING STATION DRIVER
1246P: Kristen Carlson Accardi
1247M: kristen.c.accardi@intel.com
1248L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001249S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251DOUBLETALK DRIVER
1252P: James R. Van Zandt
1253M: jrv@vanzandt.mv.com
1254L: blinux-list@redhat.com
1255S: Maintained
1256
1257DRIVER CORE, KOBJECTS, AND SYSFS
1258P: Greg Kroah-Hartman
1259M: gregkh@suse.de
1260L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001261T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262S: Supported
1263
1264DRM DRIVERS
1265P: David Airlie
1266M: airlied@linux.ie
1267L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001268T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269S: Maintained
1270
1271DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001272P: Francois Romieu
1273M: romieu@fr.zoreil.com
1274L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275S: Maintained
1276
1277DVB SUBSYSTEM AND DRIVERS
1278P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001279M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001281W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001282T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001283S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285EATA-DMA SCSI DRIVER
1286P: Michael Neuffer
1287L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1288S: Maintained
1289
1290EATA ISA/EISA/PCI SCSI DRIVER
1291P: Dario Ballabio
1292M: ballabio_dario@emc.com
1293L: linux-scsi@vger.kernel.org
1294S: Maintained
1295
1296EATA-PIO SCSI DRIVER
1297P: Michael Neuffer
1298M: mike@i-Connect.Net
1299L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1300S: Maintained
1301
1302EBTABLES
1303P: Bart De Schuymer
1304M: bart.de.schuymer@pandora.be
1305L: ebtables-user@lists.sourceforge.net
1306L: ebtables-devel@lists.sourceforge.net
1307W: http://ebtables.sourceforge.net/
1308S: Maintained
1309
Michael Halcrow237fead2006-10-04 02:16:22 -07001310ECRYPT FILE SYSTEM
1311P: Mike Halcrow, Phillip Hellewell
1312M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1313L: ecryptfs-devel@lists.sourceforge.net
1314W: http://ecryptfs.sourceforge.net/
1315S: Supported
1316
Alan Coxda9bb1d2006-01-18 17:44:13 -08001317EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001318P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001319M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001320L: bluesmoke-devel@lists.sourceforge.net
1321W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001322S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001323
1324EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001325P: Mark Gross
1326M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001327L: bluesmoke-devel@lists.sourceforge.net
1328W: bluesmoke.sourceforge.net
1329S: Maintained
1330
1331EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001332P: Doug Thompson
1333M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001334L: bluesmoke-devel@lists.sourceforge.net
1335W: bluesmoke.sourceforge.net
1336S: Maintained
1337
1338EDAC-R82600
1339P: Tim Small
1340M: tim@buttersideup.com
1341L: bluesmoke-devel@lists.sourceforge.net
1342W: bluesmoke.sourceforge.net
1343S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345EEPRO100 NETWORK DRIVER
1346P: Andrey V. Savochkin
1347M: saw@saw.sw.com.sg
1348S: Maintained
1349
Josh Triplett0bee8d22006-07-30 03:03:58 -07001350EFS FILESYSTEM
1351W: http://aeschi.ch.eu.org/efs/
1352S: Orphan
1353
Heiko J Schickfab97222006-09-22 15:22:22 -07001354EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1355P: Hoang-Nam Nguyen
1356M: hnguyen@de.ibm.com
1357P: Christoph Raisch
1358M: raisch@de.ibm.com
1359L: openib-general@openib.org
1360S: Supported
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362EMU10K1 SOUND DRIVER
1363P: James Courtier-Dutton
1364M: James@superbug.demon.co.uk
1365L: emu10k1-devel@lists.sourceforge.net
1366W: http://sourceforge.net/projects/emu10k1/
1367S: Maintained
1368
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001369EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001370P: James Smart
1371M: james.smart@emulex.com
1372L: linux-scsi@vger.kernel.org
1373W: http://sourceforge.net/projects/lpfcxxxx
1374S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376EPSON 1355 FRAMEBUFFER DRIVER
1377P: Christopher Hoover
1378M: ch@murgatroid.com, ch@hpl.hp.com
1379S: Maintained
1380
1381ETHEREXPRESS-16 NETWORK DRIVER
1382P: Philip Blundell
1383M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001384L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385S: Maintained
1386
1387ETHERNET BRIDGE
1388P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08001389M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07001390L: bridge@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391W: http://bridge.sourceforge.net/
1392S: Maintained
1393
1394ETHERTEAM 16I DRIVER
1395P: Mika Kuoppala
1396M: miku@iki.fi
1397S: Maintained
1398
1399EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001400L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401S: Maintained
1402
1403EXT3 FILE SYSTEM
1404P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001405M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001406L: linux-ext4@vger.kernel.org
1407S: Maintained
1408
1409EXT4 FILE SYSTEM
1410P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001411M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001412L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413S: Maintained
1414
Jean Delvaree53004e2006-01-09 23:26:14 +01001415F71805F HARDWARE MONITORING DRIVER
1416P: Jean Delvare
1417M: khali@linux-fr.org
1418L: lm-sensors@lm-sensors.org
1419S: Maintained
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421FARSYNC SYNCHRONOUS DRIVER
1422P: Kevin Curtis
1423M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424W: http://www.farsite.co.uk/
1425S: Supported
1426
Akinobu Mitac5408b82007-04-23 14:41:20 -07001427FAULT INJECTION SUPPORT
1428P: Akinobu Mita
1429M: akinobu.mita@gmail.com
1430S: Supported
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432FRAMEBUFFER LAYER
1433P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001434M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001435L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436W: http://linux-fbdev.sourceforge.net/
1437S: Maintained
1438
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001439FREESCALE SOC FS_ENET DRIVER
1440P: Pantelis Antoniou
1441M: pantelis.antoniou@gmail.com
1442P: Vitaly Bordug
1443M: vbordug@ru.mvista.com
1444L: linuxppc-embedded@ozlabs.org
1445L: netdev@vger.kernel.org
1446S: Maintained
1447
Li Yanga7205b32007-04-23 10:38:18 -07001448FREESCALE HIGHSPEED USB DEVICE DRIVER
1449P: Li Yang
1450M: leoli@freescale.com
1451L: linux-usb-devel@lists.sourceforge.net
1452L: linuxppc-embedded@ozlabs.org
1453S: Maintained
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455FILE LOCKING (flock() and fcntl()/lockf())
1456P: Matthew Wilcox
1457M: matthew@wil.cx
1458L: linux-fsdevel@vger.kernel.org
1459S: Maintained
1460
1461FILESYSTEMS (VFS and infrastructure)
1462P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001463M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464S: Maintained
1465
1466FIRMWARE LOADER (request_firmware)
1467L: linux-kernel@vger.kernel.org
1468S: Orphan
1469
1470FPU EMULATOR
1471P: Bill Metzenthen
1472M: billm@suburbia.net
1473W: http://suburbia.net/~billm/floating-point/emulator/
1474S: Maintained
1475
1476FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1477P: Mike McLagan
1478M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001479L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480S: Maintained
1481
1482FREEVXFS FILESYSTEM
1483P: Christoph Hellwig
1484M: hch@infradead.org
1485W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1486S: Maintained
1487
David Howells5ab7ffe2007-04-10 15:10:45 +01001488FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489P: David Howells
1490M: dhowells@redhat.com
1491S: Maintained
1492
Miklos Szeredi04578f12005-09-09 13:10:22 -07001493FUSE: FILESYSTEM IN USERSPACE
1494P: Miklos Szeredi
1495M: miklos@szeredi.hu
1496L: fuse-devel@lists.sourceforge.net
1497W: http://fuse.sourceforge.net/
1498S: Maintained
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1501P: Rik Faith
1502M: faith@cs.unc.edu
1503L: linux-scsi@vger.kernel.org
1504S: Odd fixes (e.g., new signatures)
1505
1506GDT SCSI DISK ARRAY CONTROLLER DRIVER
1507P: Achim Leubner
1508M: achim_leubner@adaptec.com
1509L: linux-scsi@vger.kernel.org
1510W: http://www.icp-vortex.com/
1511S: Supported
1512
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02001513GENERIC GPIO I2C DRIVER
1514P: Haavard Skinnemoen
1515M: hskinnemoen@atmel.com
1516S: Supported
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1519P: Krzysztof Halasa
1520M: khc@pm.waw.pl
1521W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1522S: Maintained
1523
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001524GFS2 FILE SYSTEM
1525P: Steven Whitehouse
1526M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001527L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001528W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001529T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1530T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001531S: Supported
1532
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001533GIGASET ISDN DRIVERS
1534P: Hansjoerg Lipp
1535M: hjlipp@web.de
1536P: Tilman Schmidt
1537M: tilman@imap.cc
1538L: gigaset307x-common@lists.sourceforge.net
1539W: http://gigaset307x.sourceforge.net/
1540S: Maintained
1541
Jean Delvare5b543962005-08-15 19:51:02 +02001542HARDWARE MONITORING
1543P: Jean Delvare
1544M: khali@linux-fr.org
1545L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001546W: http://www.lm-sensors.org/
1547T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001548S: Maintained
1549
Michael Buesch844dd052006-06-26 00:24:59 -07001550HARDWARE RANDOM NUMBER GENERATOR CORE
1551P: Michael Buesch
1552M: mb@bu3sch.de
1553S: Maintained
1554
Robert Love860e1d62005-08-31 23:57:59 -04001555HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1556P: Robert Love
1557M: rlove@rlove.org
1558M: linux-kernel@vger.kernel.org
1559W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1560S: Maintained
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562HARMONY SOUND DRIVER
1563P: Kyle McMartin
1564M: kyle@parisc-linux.org
1565W: http://www.parisc-linux.org/~kyle/harmony/
1566L: parisc-linux@lists.parisc-linux.org
1567S: Maintained
1568
1569HAYES ESP SERIAL DRIVER
1570P: Andrew J. Robinson
1571M: arobinso@nyx.net
1572L: linux-kernel@vger.kernel.org
1573W: http://www.nyx.net/~arobinso
1574S: Maintained
1575
1576HFS FILESYSTEM
1577P: Roman Zippel
1578M: zippel@linux-m68k.org
1579L: linux-kernel@vger.kernel.org
1580S: Maintained
1581
1582HGA FRAMEBUFFER DRIVER
1583P: Ferenc Bakonyi
1584M: fero@drama.obuda.kando.hu
1585L: linux-nvidia@lists.surfsouth.com
1586W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1587S: Maintained
1588
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001589HID CORE LAYER
1590P: Jiri Kosina
1591M: jkosina@suse.cz
1592L: linux-input@atrey.karlin.mff.cuni.cz
Jiri Kosinaa4dff392007-02-27 17:40:09 +01001593T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001594S: Maintained
1595
Ingo Molnar38bed542007-02-22 09:09:34 +01001596HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
1597P: Thomas Gleixner
1598M: tglx@linutronix.de
1599L: linux-kernel@vger.kernel.org
1600S: Maintained
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602HIGH-SPEED SCC DRIVER FOR AX.25
1603P: Klaus Kudielka
1604M: klaus.kudielka@ieee.org
1605L: linux-hams@vger.kernel.org
1606W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1607S: Maintained
1608
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001609HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1610P: HighPoint Linux Team
1611M: linux@highpoint-tech.com
1612W: http://www.highpoint-tech.com
1613S: Supported
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615HIPPI
1616P: Jes Sorensen
1617M: jes@trained-monkey.org
1618L: linux-hippi@sunsite.dk
1619S: Maintained
1620
1621HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1622P: Chirag Kantharia
1623M: chirag.kantharia@hp.com
1624L: iss_storagedev@hp.com
1625S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627HEWLETT-PACKARD SMART2 RAID DRIVER
1628P: Chirag Kantharia
1629M: chirag.kantharia@hp.com
1630L: iss_storagedev@hp.com
1631S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1634P: Mike Miller
1635M: mike.miller@hp.com
1636L: iss_storagedev@hp.com
1637S: Supported
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001638
Jouni Malinenff1d2762005-05-12 22:54:16 -04001639HOST AP DRIVER
1640P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07001641M: j@w1.fi
1642L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07001643L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04001644W: http://hostap.epitest.fi/
1645S: Maintained
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1648P: Jaroslav Kysela
1649M: perex@suse.cz
1650S: Maintained
1651
Bob Piccob9b03322005-11-07 00:59:19 -08001652HPET: High Precision Event Timers driver (hpet.c)
1653P: Clemens Ladisch
1654M: clemens@ladisch.de
1655S: Maintained
1656
1657HPET: i386
1658P: Venkatesh Pallipadi (Venki)
1659M: venkatesh.pallipadi@intel.com
1660S: Maintained
1661
1662HPET: x86_64
1663P: Andi Kleen and Vojtech Pavlik
Andi Kleen43c3ab32007-05-02 19:27:11 +02001664M: andi@firstfloor.org and vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08001665S: Maintained
1666
1667HPET: ACPI hpet.c
1668P: Bob Picco
1669M: bob.picco@hp.com
1670S: Maintained
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672HPFS FILESYSTEM
1673P: Mikulas Patocka
1674M: mikulas@artax.karlin.mff.cuni.cz
1675W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1676S: Maintained
1677
1678HUGETLB FILESYSTEM
1679P: William Irwin
1680M: wli@holomorphy.com
1681S: Maintained
1682
Jean Delvare5b543962005-08-15 19:51:02 +02001683I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684P: Jean Delvare
1685M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001686L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001687T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688S: Maintained
1689
Till Harbaume8c76ee2007-05-01 23:26:35 +02001690I2C-TINY-USB DRIVER
1691P: Till Harbaum
1692M: till@harbaum.org
1693L: i2c@lm-sensors.org
1694T: http://www.harbaum.org/till/i2c_tiny_usb
1695S: Maintained
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697i386 BOOT CODE
1698P: Riley H. Williams
1699M: Riley@Williams.Name
1700L: Linux-Kernel@vger.kernel.org
1701S: Maintained
1702
1703i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1704P: Dave Jones
1705M: davej@codemonkey.org.uk
1706P: H. Peter Anvin
1707M: hpa@zytor.com
1708S: Maintained
1709
1710i810 TCO TIMER WATCHDOG
1711P: Nils Faerber
1712M: nils@kernelconcepts.de
1713W: http://www.kernelconcepts.de/
1714S: Maintained
1715
1716IA64 (Itanium) PLATFORM
1717P: Tony Luck
1718M: tony.luck@intel.com
1719L: linux-ia64@vger.kernel.org
1720W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001721T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722S: Maintained
1723
1724SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001725P: Jes Sorensen
1726M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727L: linux-altix@sgi.com
1728L: linux-ia64@vger.kernel.org
1729W: http://www.sgi.com/altix
1730S: Maintained
1731
1732IBM MCA SCSI SUBSYSTEM DRIVER
1733P: Michael Lang
1734M: langa2@kph.uni-mainz.de
1735W: http://www.uni-mainz.de/~langm000/linux.html
1736S: Maintained
1737
1738IBM Power Linux RAID adapter
1739P: Brian King
1740M: brking@us.ibm.com
1741S: Supported
1742
1743IBM ServeRAID RAID DRIVER
1744P: Jack Hammer
1745P: Dave Jeffery
1746M: ipslinux@adaptec.com
1747W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001748S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001750IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001752M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001754T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755S: Maintained
1756
1757IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001758P: Alan Cox
1759M: alan@lxorguk.ukuu.org.uk
1760L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761S: Maintained
1762
1763IDE/ATAPI FLOPPY DRIVERS
1764P: Paul Bristow
1765M: Paul Bristow <paul@paulbristow.net>
1766W: http://paulbristow.net/linux/idefloppy.html
1767L: linux-kernel@vger.kernel.org
1768S: Maintained
1769
1770IDE/ATAPI TAPE DRIVERS
1771P: Gadi Oxman
1772M: Gadi Oxman <gadio@netvision.net.il>
1773L: linux-kernel@vger.kernel.org
1774S: Maintained
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776IEEE 1394 SUBSYSTEM
1777P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07001778M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02001779P: Stefan Richter
1780M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781L: linux1394-devel@lists.sourceforge.net
1782W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001783T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784S: Maintained
1785
Stefan Richterf51a5a92007-04-23 14:41:10 -07001786IEEE 1394 RAW I/O DRIVER (raw1394)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787P: Dan Dennedy
1788M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07001789P: Stefan Richter
1790M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001792S: Maintained
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794IMS TWINTURBO FRAMEBUFFER DRIVER
1795P: Paul Mundt
1796M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001797L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798S: Maintained
1799
1800INFINIBAND SUBSYSTEM
1801P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001802M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803P: Sean Hefty
1804M: mshefty@ichips.intel.com
1805P: Hal Rosenstock
1806M: halr@voltaire.com
1807L: openib-general@openib.org
1808W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001809T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810S: Supported
1811
1812INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001813P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001814M: dmitry.torokhov@gmail.com
1815M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816L: linux-input@atrey.karlin.mff.cuni.cz
1817L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001818T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819S: Maintained
1820
Robert Lovec9f04f52005-07-15 12:21:07 -04001821INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001822P: John McCutchan
1823M: ttb@tentacle.dhs.org
1824P: Robert Love
1825M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001826L: linux-kernel@vger.kernel.org
1827S: Maintained
1828
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001829INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001830P: Sylvain Meyer
1831M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001832L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001833S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001836P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001837M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001838L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001839S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1842P: Ingo Molnar
1843M: mingo@redhat.com
1844S: Maintained
1845
1846INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1847P: Jeff Garzik
1848M: jgarzik@pobox.com
1849W: http://sourceforge.net/projects/gkernel/
1850S: Maintained
1851
1852INTEL IA32 MICROCODE UPDATE SUPPORT
1853P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001854M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855S: Maintained
1856
Michael Buesch844dd052006-06-26 00:24:59 -07001857INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1858P: Deepak Saxena
1859M: dsaxena@plexity.net
1860S: Maintained
1861
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001862INTEL IXP2000 ETHERNET DRIVER
1863P: Lennert Buytenhek
1864M: kernel@wantstofly.org
1865L: netdev@vger.kernel.org
1866S: Maintained
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868INTEL PRO/100 ETHERNET SUPPORT
1869P: John Ronciak
1870M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871P: Jesse Brandeburg
1872M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001873P: Jeff Kirsher
1874M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001875P: Auke Kok
1876M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001877L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878W: http://sourceforge.net/projects/e1000/
1879S: Supported
1880
1881INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1882P: Jeb Cramer
1883M: cramerj@intel.com
1884P: John Ronciak
1885M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001886P: Jesse Brandeburg
1887M: jesse.brandeburg@intel.com
1888P: Jeff Kirsher
1889M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001890P: Auke Kok
1891M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001892L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893W: http://sourceforge.net/projects/e1000/
1894S: Supported
1895
1896INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001897P: Jeff Kirsher
1898M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899P: Ayyappan Veeraiyan
1900M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901P: John Ronciak
1902M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001903P: Jesse Brandeburg
1904M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001905P: Auke Kok
1906M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001907L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908W: http://sourceforge.net/projects/e1000/
1909S: Supported
1910
James Ketrenos826d2ab2005-11-07 18:56:59 -06001911INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1912P: Yi Zhu
1913M: yi.zhu@intel.com
1914P: James Ketrenos
1915M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001916L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001917L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001918L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1919W: http://ipw2100.sourceforge.net
1920S: Supported
1921
1922INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1923P: Yi Zhu
1924M: yi.zhu@intel.com
1925P: James Ketrenos
1926M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001927L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001928L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001929L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1930W: http://ipw2200.sourceforge.net
1931S: Supported
1932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933IOC3 DRIVER
1934P: Ralf Baechle
1935M: ralf@linux-mips.org
1936L: linux-mips@linux-mips.org
1937S: Maintained
1938
1939IP MASQUERADING:
1940P: Juanjo Ciarlante
1941M: jjciarla@raiz.uncu.edu.ar
1942S: Maintained
1943
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001944IPATH DRIVER:
1945P: Bryan O'Sullivan
1946M: support@pathscale.com
1947L: openib-general@openib.org
1948S: Supported
1949
Corey Minyard4409ebe2006-04-20 02:43:12 -07001950IPMI SUBSYSTEM
1951P: Corey Minyard
1952M: minyard@acm.org
1953L: openipmi-developer@lists.sourceforge.net
1954W: http://openipmi.sourceforge.net/
1955S: Supported
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957IPX NETWORK LAYER
1958P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001959M: acme@ghostprotocols.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07001960L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961S: Maintained
1962
1963IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001964P: Samuel Ortiz
1965M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001966L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001968S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970ISAPNP
1971P: Jaroslav Kysela
1972M: perex@suse.cz
1973S: Maintained
1974
1975ISDN SUBSYSTEM
1976P: Karsten Keil
1977M: kkeil@suse.de
1978P: Kai Germaschewski
1979M: kai.germaschewski@gmx.de
1980L: isdn4linux@listserv.isdn4linux.de
1981W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001982T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983S: Maintained
1984
1985ISDN SUBSYSTEM (Eicon active card driver)
1986P: Armin Schindler
1987M: mac@melware.de
1988L: isdn4linux@listserv.isdn4linux.de
1989W: http://www.melware.de
1990S: Maintained
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1993P: David Woodhouse
1994M: dwmw2@infradead.org
1995L: jffs-dev@axis.com
1996W: http://sources.redhat.com/jffs2/
1997S: Maintained
1998
1999JFS FILESYSTEM
2000P: Dave Kleikamp
2001M: shaggy@austin.ibm.com
2002L: jfs-discussion@lists.sourceforge.net
2003W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002004T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005S: Supported
2006
Josh Triplettde456d32006-07-30 03:04:00 -07002007JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07002008P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002009M: sct@redhat.com, akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08002010L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07002011S: Maintained
2012
Rudolf Marek4660cb32006-10-08 22:01:26 +02002013K8TEMP HARDWARE MONITORING DRIVER
2014P: Rudolf Marek
2015M: r.marek@assembler.cz
2016L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017S: Maintained
2018
2019KCONFIG
2020P: Roman Zippel
2021M: zippel@linux-m68k.org
2022L: kbuild-devel@lists.sourceforge.net
2023S: Maintained
2024
Vivek Goyalea6c2082006-05-20 14:59:55 -07002025KDUMP
2026P: Vivek Goyal
2027M: vgoyal@in.ibm.com
2028P: Haren Myneni
2029M: hbabu@us.ibm.com
David Brownellf318a632007-04-23 14:41:06 -07002030L: fastboot@lists.linux-foundation.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07002031L: linux-kernel@vger.kernel.org
2032W: http://lse.sourceforge.net/kdump/
2033S: Maintained
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035KERNEL AUTOMOUNTER (AUTOFS)
2036P: H. Peter Anvin
2037M: hpa@zytor.com
2038L: autofs@linux.kernel.org
2039S: Odd Fixes
2040
2041KERNEL AUTOMOUNTER v4 (AUTOFS4)
2042P: Ian Kent
2043M: raven@themaw.net
2044L: autofs@linux.kernel.org
2045S: Maintained
2046
2047KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
2048P: Kai Germaschewski
2049M: kai@germaschewski.name
2050P: Sam Ravnborg
2051M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002052T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002053S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055KERNEL JANITORS
2056P: Several
David Brownellf318a632007-04-23 14:41:06 -07002057L: kernel-janitors@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059S: Maintained
2060
2061KERNEL NFSD
2062P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08002063M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064L: nfs@lists.sourceforge.net
2065W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08002066S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Avi Kivity426d62e2006-12-13 00:34:03 -08002068KERNEL VIRTUAL MACHINE (KVM)
2069P: Avi Kivity
2070M: avi@qumranet.com
2071L: kvm-devel@lists.sourceforge.net
2072W: kvm.sourceforge.net
2073S: Supported
2074
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002075KEXEC
2076P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002077M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002078W: http://www.xmission.com/~ebiederm/files/kexec/
2079L: linux-kernel@vger.kernel.org
David Brownellf318a632007-04-23 14:41:06 -07002080L: fastboot@lists.linux-foundation.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002081S: Maintained
2082
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07002083KPROBES
2084P: Prasanna S Panchamukhi
2085M: prasanna@in.ibm.com
2086P: Ananth N Mavinakayanahalli
2087M: ananth@in.ibm.com
2088P: Anil S Keshavamurthy
2089M: anil.s.keshavamurthy@intel.com
2090P: David S. Miller
2091M: davem@davemloft.net
2092L: linux-kernel@vger.kernel.org
2093S: Maintained
2094
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002095KS0108 LCD CONTROLLER DRIVER
2096P: Miguel Ojeda Sandonis
2097M: maxextreme@gmail.com
2098L: linux-kernel@vger.kernel.org
2099S: Maintained
2100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002103S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105LASI 53c700 driver for PARISC
2106P: James E.J. Bottomley
2107M: James.Bottomley@HansenPartnership.com
2108L: linux-scsi@vger.kernel.org
2109S: Maintained
2110
Richard Purdie263de9b2006-05-15 09:44:16 -07002111LED SUBSYSTEM
2112P: Richard Purdie
2113M: rpurdie@rpsys.net
2114S: Maintained
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116LEGO USB Tower driver
2117P: Juergen Stuber
2118M: starblue@users.sourceforge.net
2119L: legousb-devel@lists.sourceforge.net
2120W: http://legousb.sourceforge.net/
2121S: Maintained
2122
2123LINUX FOR IBM pSERIES (RS/6000)
2124P: Paul Mackerras
2125M: paulus@au.ibm.com
2126W: http://www.ibm.com/linux/ltc/projects/ppc
2127S: Supported
2128
2129LINUX FOR NCR VOYAGER
2130P: James Bottomley
2131M: James.Bottomley@HansenPartnership.com
2132W: http://www.hansenpartnership.com/voyager
2133S: Maintained
2134
2135LINUX FOR POWERPC
2136P: Paul Mackerras
2137M: paulus@samba.org
2138W: http://www.penguinppc.org/
2139L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002140T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141S: Supported
2142
2143LINUX FOR POWER MACINTOSH
2144P: Benjamin Herrenschmidt
2145M: benh@kernel.crashing.org
2146W: http://www.penguinppc.org/
2147L: linuxppc-dev@ozlabs.org
2148S: Maintained
2149
2150LINUX FOR POWERPC EMBEDDED MPC52XX
2151P: Sylvain Munaut
2152M: tnt@246tNt.com
2153W: http://www.246tNt.com/mpc52xx/
2154W: http://www.penguinppc.org/
2155L: linuxppc-dev@ozlabs.org
2156L: linuxppc-embedded@ozlabs.org
2157S: Maintained
2158
2159LINUX FOR POWERPC EMBEDDED PPC4XX
2160P: Matt Porter
2161M: mporter@kernel.crashing.org
2162W: http://www.penguinppc.org/
2163L: linuxppc-embedded@ozlabs.org
2164S: Maintained
2165
Tom Rinie93adf12005-07-26 12:49:53 -07002166LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167P: Tom Rini
2168M: trini@kernel.crashing.org
2169W: http://www.penguinppc.org/
2170L: linuxppc-embedded@ozlabs.org
2171S: Maintained
2172
Tom Rinie93adf12005-07-26 12:49:53 -07002173LINUX FOR POWERPC EMBEDDED PPC8XX
2174P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002175M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002176W: http://www.penguinppc.org/
2177L: linuxppc-embedded@ozlabs.org
2178S: Maintained
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002181P: Kumar Gala
2182M: galak@kernel.crashing.org
2183W: http://www.penguinppc.org/
2184L: linuxppc-embedded@ozlabs.org
2185S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Olof Johanssonab06ff32006-09-06 14:44:54 -05002187LINUX FOR POWERPC PA SEMI PWRFICIENT
2188P: Olof Johansson
2189M: olof@lixom.net
2190W: http://www.pasemi.com/
2191L: linuxppc-dev@ozlabs.org
2192S: Supported
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194LLC (802.2)
2195P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002196M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197S: Maintained
2198
2199LINUX FOR 64BIT POWERPC
2200P: Paul Mackerras
2201M: paulus@samba.org
2202M: paulus@au.ibm.com
2203P: Anton Blanchard
2204M: anton@samba.org
2205M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002206W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002207L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208S: Supported
2209
2210LINUX SECURITY MODULE (LSM) FRAMEWORK
2211P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002212M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002213L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002215T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216S: Supported
2217
2218LM83 HARDWARE MONITOR DRIVER
2219P: Jean Delvare
2220M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002221L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222S: Maintained
2223
2224LM90 HARDWARE MONITOR DRIVER
2225P: Jean Delvare
2226M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002227L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228S: Maintained
2229
2230LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2231P: Richard Russon (FlatCap)
2232M: ldm@flatcap.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002233L: ldm-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234W: http://ldm.sourceforge.net
2235S: Maintained
2236
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002237LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2238P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002239M: Eric.Moore@lsi.com
2240M: support@lsi.com
2241L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002242L: linux-scsi@vger.kernel.org
2243W: http://www.lsilogic.com/support
2244S: Supported
2245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2247P: Matthew Wilcox
2248M: matthew@wil.cx
2249L: linux-scsi@vger.kernel.org
2250S: Maintained
2251
2252M68K ARCHITECTURE
2253P: Geert Uytterhoeven
2254M: geert@linux-m68k.org
2255P: Roman Zippel
2256M: zippel@linux-m68k.org
2257L: linux-m68k@lists.linux-m68k.org
2258W: http://www.linux-m68k.org/
2259W: http://linux-m68k-cvs.ubb.ca/
2260S: Maintained
2261
2262M68K ON APPLE MACINTOSH
2263P: Joshua Thompson
2264M: funaho@jurai.org
2265W: http://www.mac.linux-m68k.org/
2266L: linux-mac68k@mac.linux-m68k.org
2267S: Maintained
2268
2269M68K ON HP9000/300
2270P: Philip Blundell
2271M: philb@gnu.org
2272W: http://www.tazenda.demon.co.uk/phil/linux-hp
2273S: Maintained
2274
Jiri Benc64a327a2007-05-05 11:47:08 -07002275MAC80211
2276P: Jiri Benc
2277M: jbenc@suse.cz
2278P: Michael Wu
2279M: flamingice@sourmilk.net
2280L: linux-wireless@vger.kernel.org
2281W: http://linuxwireless.org/
2282T: git kernel.org:/pub/scm/linux/kernel/git/jbenc/mac80211.git
2283S: Maintained
2284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285MARVELL YUKON / SYSKONNECT DRIVER
2286P: Mirko Lindner
2287M: mlindner@syskonnect.de
2288P: Ralph Roesler
2289M: rroesler@syskonnect.de
2290W: http://www.syskonnect.com
2291S: Supported
2292
Michael Kerriskfaf16682005-07-31 22:34:47 -07002293MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002294P: Michael Kerrisk
2295M: mtk-manpages@gmx.net
2296W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2297S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002298
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002299MARVELL MV643XX ETHERNET DRIVER
2300P: Dale Farnsworth
2301M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002303M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002304L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002305S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307MATROX FRAMEBUFFER DRIVER
2308P: Petr Vandrovec
2309M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002310L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311S: Maintained
2312
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02002313MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2314P: Hans J. Koch
2315M: hjk@linutronix.de
2316L: lm-sensors@lm-sensors.org
2317S: Maintained
2318
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002319MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002320P: Neela Syam Kolli
2321M: Neela.Kolli@engenio.com
2322S: linux-scsi@vger.kernel.org
2323W: http://megaraid.lsilogic.com
2324S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002325
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002326MEMORY MANAGEMENT
2327L: linux-mm@kvack.org
2328L: linux-kernel@vger.kernel.org
2329W: http://www.linux-mm.org
2330S: Maintained
2331
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002332MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333P: David Woodhouse
2334M: dwmw2@infradead.org
2335W: http://www.linux-mtd.infradead.org/
2336L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002337T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338S: Maintained
2339
Artem Bityutskiy48576402007-02-13 17:11:10 +02002340UNSORTED BLOCK IMAGES (UBI)
2341P: Artem Bityutskiy
2342M: dedekind@infradead.org
2343W: http://www.linux-mtd.infradead.org/
2344L: linux-mtd@lists.infradead.org
2345T: git git://git.infradead.org/ubi-2.6.git
2346S: Maintained
2347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348MICROTEK X6 SCANNER
2349P: Oliver Neukum
2350M: oliver@neukum.name
2351S: Maintained
2352
2353MIPS
2354P: Ralf Baechle
2355M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002356W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002358T: git www.linux-mips.org:/pub/scm/linux.git
2359S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361MISCELLANEOUS MCA-SUPPORT
2362P: James Bottomley
2363M: jejb@steeleye.com
2364L: linux-kernel@vger.kernel.org
2365S: Maintained
2366
2367MODULE SUPPORT
2368P: Rusty Russell
2369M: rusty@rustcorp.com.au
2370L: linux-kernel@vger.kernel.org
2371S: Maintained
2372
2373MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2374P: Stelian Pop
2375M: stelian@popies.net
2376W: http://popies.net/meye/
2377S: Maintained
2378
2379MOUSE AND MISC DEVICES [GENERAL]
2380P: Alessandro Rubini
2381M: rubini@ipvvis.unipv.it
2382L: linux-kernel@vger.kernel.org
2383S: Maintained
2384
Jiri Slabyd7354102006-12-08 02:38:35 -08002385MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2386P: Jiri Slaby
2387M: jirislaby@gmail.com
2388L: linux-kernel@vger.kernel.org
2389S: Maintained
2390
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002391MSI LAPTOP SUPPORT
2392P: Lennart Poettering
2393M: mzxreary@0pointer.de
2394L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2395W: http://0pointer.de/lennart/tchibo.html
2396S: Maintained
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398MTRR AND SIMILAR SUPPORT [i386]
2399P: Richard Gooch
2400M: rgooch@atnf.csiro.au
2401L: linux-kernel@vger.kernel.org
2402W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2403S: Maintained
2404
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002405MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2406P: Pierre Ossman
2407M: drzeus-mmc@drzeus.cx
2408L: linux-kernel@vger.kernel.org
2409S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411MULTISOUND SOUND DRIVER
2412P: Andrew Veliath
2413M: andrewtv@usa.net
2414S: Maintained
2415
Jiri Slabyd7354102006-12-08 02:38:35 -08002416MULTITECH MULTIPORT CARD (ISICOM)
2417P: Jiri Slaby
2418M: jirislaby@gmail.com
2419L: linux-kernel@vger.kernel.org
2420S: Maintained
2421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422NATSEMI ETHERNET DRIVER (DP8381x)
2423P: Tim Hockin
2424M: thockin@hockin.org
2425S: Maintained
2426
2427NCP FILESYSTEM
2428P: Petr Vandrovec
2429M: vandrove@vc.cvut.cz
2430L: linware@sh.cvut.cz
2431S: Maintained
2432
2433NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2434P: James E.J. Bottomley
2435M: James.Bottomley@HansenPartnership.com
2436L: linux-scsi@vger.kernel.org
2437S: Maintained
2438
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002439NETEM NETWORK EMULATOR
2440P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002441M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002442L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002443S: Maintained
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445NETFILTER/IPTABLES/IPCHAINS
2446P: Rusty Russell
2447P: Marc Boucher
2448P: James Morris
2449P: Harald Welte
2450P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002451P: Patrick McHardy
2452M: kaber@trash.net
2453L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002454L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002455L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456W: http://www.netfilter.org/
2457W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458S: Supported
2459
Paul Moore4cc67732006-09-25 15:57:13 -07002460NETLABEL
2461P: Paul Moore
2462M: paul.moore@hp.com
2463W: http://netlabel.sf.net
2464L: netdev@vger.kernel.org
2465S: Supported
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467NETROM NETWORK LAYER
2468P: Ralf Baechle
2469M: ralf@linux-mips.org
2470L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002471W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472S: Maintained
2473
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002474NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475P: Paul Clements
2476M: Paul.Clements@steeleye.com
2477S: Maintained
2478
2479NETWORK DEVICE DRIVERS
2480P: Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002481M: akpm@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482P: Jeff Garzik
2483M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002484L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002485T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486S: Maintained
2487
2488NETWORKING [GENERAL]
2489P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002490M: netdev@vger.kernel.org
2491L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002492W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493S: Maintained
2494
2495NETWORKING [IPv4/IPv6]
2496P: David S. Miller
2497M: davem@davemloft.net
2498P: Alexey Kuznetsov
2499M: kuznet@ms2.inr.ac.ru
2500P: Pekka Savola (ipv6)
2501M: pekkas@netcore.fi
2502P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002503M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504P: Hideaki YOSHIFUJI
2505M: yoshfuji@linux-ipv6.org
2506P: Patrick McHardy
2507M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002508L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002509T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510S: Maintained
2511
John W. Linville29f8f632006-01-18 14:52:48 -08002512NETWORKING [WIRELESS]
2513P: John W. Linville
2514M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002515L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002516T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2517S: Maintained
2518
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002519NETXEN (1/10) GbE SUPPORT
2520P: Amit S. Kale
2521M: amitkale@netxen.com
2522L: netdev@vger.kernel.org
2523W: http://www.netxen.com
2524S: Supported
2525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526IPVS
2527P: Wensong Zhang
2528M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002529P: Simon Horman
2530M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531P: Julian Anastasov
2532M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002533L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534S: Maintained
2535
2536NFS CLIENT
2537P: Trond Myklebust
2538M: trond.myklebust@fys.uio.no
2539L: linux-kernel@vger.kernel.org
2540S: Maintained
2541
2542NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002543P: Jan-Pascal van Best
2544M: janpascal@vanbest.org
2545P: Andreas Mohr
2546M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002547L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548S: Maintained
2549
2550NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2551P: YOKOTA Hiroshi
2552M: yokota@netlab.is.tsukuba.ac.jp
2553W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2554S: Maintained
2555
2556NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2557P: GOTO Masanori
2558M: gotom@debian.or.jp
2559P: YOKOTA Hiroshi
2560M: yokota@netlab.is.tsukuba.ac.jp
2561W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2562S: Maintained
2563
2564NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2565P: Eberhard Moenkeberg
2566M: emoenke@gwdg.de
2567L: linux-kernel@vger.kernel.org
2568S: Maintained
2569
2570NTFS FILESYSTEM
2571P: Anton Altaparmakov
2572M: aia21@cantab.net
2573L: linux-ntfs-dev@lists.sourceforge.net
2574L: linux-kernel@vger.kernel.org
2575W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002576T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577S: Maintained
2578
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002579NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002580P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002581M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002582L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002583S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Ramkrishna Vepa3ef34b82007-03-30 18:42:27 -07002585NETERION (S2IO) Xframe 10GbE DRIVER
2586P: Ramkrishna Vepa
2587M: ram.vepa@neterion.com
2588P: Rastapur Santosh
2589M: santosh.rastapur@neterion.com
2590P: Sivakumar Subramani
2591M: sivakumar.subramani@neterion.com
2592P: Sreenivasa Honnur
2593M: sreenivasa.honnur@neterion.com
2594L: netdev@vger.kernel.org
2595W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/TitleIndex?anonymous
2596S: Supported
2597
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002598OPENCORES I2C BUS DRIVER
2599P: Peter Korsgaard
2600M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002601L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002602S: Maintained
2603
Mark Fashehccd979b2005-12-15 14:31:24 -08002604ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2605P: Mark Fasheh
2606M: mark.fasheh@oracle.com
2607P: Kurt Hackel
2608M: kurt.hackel@oracle.com
2609L: ocfs2-devel@oss.oracle.com
2610W: http://oss.oracle.com/projects/ocfs2/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002611S: Supported
Mark Fashehccd979b2005-12-15 14:31:24 -08002612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613OLYMPIC NETWORK DRIVER
2614P: Peter De Shrijver
2615M: p2@ace.ulyssis.student.kuleuven.ac.be
2616P: Mike Phillips
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002617M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002618L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619L: linux-tr@linuxtr.net
2620W: http://www.linuxtr.net
2621S: Maintained
2622
Harald Weltec1986ee2005-11-13 16:06:29 -08002623OMNIKEY CARDMAN 4000 DRIVER
2624P: Harald Welte
2625M: laforge@gnumonks.org
2626S: Maintained
2627
Harald Welte77c44ab2005-11-13 16:06:26 -08002628OMNIKEY CARDMAN 4040 DRIVER
2629P: Harald Welte
2630M: laforge@gnumonks.org
2631S: Maintained
2632
Jonathan Corbet77d51402007-03-22 19:44:17 -03002633OMNIVISION OV7670 SENSOR DRIVER
2634P: Jonathan Corbet
2635M: corbet@lwn.net
2636L: video4linux-list@redhat.com
2637S: Maintained
2638
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639ONSTREAM SCSI TAPE DRIVER
2640P: Willem Riede
2641M: osst@riede.org
2642L: osst-users@lists.sourceforge.net
2643L: linux-scsi@vger.kernel.org
2644S: Maintained
2645
2646OPL3-SA2, SA3, and SAx DRIVER
2647P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002648M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649L: linux-sound@vger.kernel.org
2650S: Maintained
2651
2652OPROFILE
2653P: Philippe Elie
2654M: phil.el@wanadoo.fr
2655L: oprofile-list@lists.sf.net
2656S: Maintained
2657
2658ORINOCO DRIVER
2659P: Pavel Roskin
2660M: proski@gnu.org
2661P: David Gibson
2662M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07002663L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07002664L: orinoco-users@lists.sourceforge.net
2665L: orinoco-devel@lists.sourceforge.net
2666W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667S: Maintained
2668
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002669PA SEMI ETHERNET DRIVER
2670P: Olof Johansson
2671M: olof@lixom.net
2672L: netdev@vger.kernel.org
2673S: Maintained
2674
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002675PA SEMI SMBUS DRIVER
2676P: Olof Johansson
2677M: olof@lixom.net
2678L: i2c@lm-sensors.org
2679S: Maintained
2680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681PARALLEL PORT SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682L: linux-parport@lists.infradead.org
David Brownell5fdc2ab2007-03-05 00:30:13 -08002683S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
2685PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2686P: Tim Waugh
2687M: tim@cyberelk.net
2688L: linux-parport@lists.infradead.org
2689W: http://www.torque.net/linux-pp.html
2690S: Maintained
2691
2692PARISC ARCHITECTURE
2693P: Matthew Wilcox
2694M: matthew@wil.cx
2695P: Grant Grundler
2696M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002697P: Kyle McMartin
2698M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699L: parisc-linux@parisc-linux.org
2700W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002701T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2702T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703S: Maintained
2704
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02002705PARAVIRT_OPS INTERFACE
2706P: Jeremy Fitzhardinge
2707M: jeremy@xensource.com
2708P: Chris Wright
2709M: chrisw@sous-sol.org
2710P: Zachary Amsden
2711M: zach@vmware.com
2712P: Rusty Russell
2713M: rusty@rustcorp.com.au
2714L: virtualization@lists.osdl.org
2715L: linux-kernel@vger.kernel.org
2716S: Supported
2717
Jim Cromie1662d322006-10-06 00:43:59 -07002718PC87360 HARDWARE MONITORING DRIVER
2719P: Jim Cromie
2720M: jim.cromie@gmail.com
2721L: lm-sensors@lm-sensors.org
2722S: Maintained
2723
2724PC8736x GPIO DRIVER
2725P: Jim Cromie
2726M: jim.cromie@gmail.com
2727S: Maintained
2728
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002729PCI ERROR RECOVERY
2730P: Linas Vepstas
2731M: linas@austin.ibm.com
2732L: linux-kernel@vger.kernel.org
2733L: linux-pci@atrey.karlin.mff.cuni.cz
2734S: Supported
2735
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2737P: Thomas Sailer
2738M: sailer@ife.ee.ethz.ch
2739L: linux-sound@vger.kernel.org
2740W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2741S: Maintained
2742
2743PCI SUBSYSTEM
2744P: Greg Kroah-Hartman
2745M: gregkh@suse.de
2746L: linux-kernel@vger.kernel.org
2747L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002748T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749S: Supported
2750
2751PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002752P: Kristen Carlson Accardi
2753M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754S: Supported
2755
2756PCI HOTPLUG COMPAQ DRIVER
2757P: Greg Kroah-Hartman
2758M: greg@kroah.com
2759S: Maintained
2760
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002761PCIE HOTPLUG DRIVER
2762P: Kristen Carlson Accardi
2763M: kristen.c.accardi@intel.com
2764L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002765S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002768P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002769L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002771T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002772S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002775P: Don Fry
2776M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002777L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778S: Maintained
2779
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002780PER-TASK DELAY ACCOUNTING
2781P: Shailabh Nagar
2782M: nagar@watson.ibm.com
2783L: linux-kernel@vger.kernel.org
2784S: Maintained
2785
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002786PERSONALITY HANDLING
2787P: Christoph Hellwig
2788M: hch@infradead.org
2789L: linux-abi-devel@lists.sourceforge.net
2790S: Maintained
2791
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792PHRAM MTD DRIVER
2793P: Jörn Engel
2794M: joern@wh.fh-wedel.de
2795L: linux-mtd@lists.infradead.org
2796S: Maintained
2797
Peter Osterlund249a6772005-09-27 21:45:30 -07002798PKTCDVD DRIVER
2799P: Peter Osterlund
2800M: petero2@telia.com
2801L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002802S: Maintained
2803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804POSIX CLOCKS and TIMERS
2805P: George Anzinger
2806M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002807L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808S: Supported
2809
Eugene Surovegin24682972005-10-14 03:00:53 -07002810POWERPC 4xx EMAC DRIVER
2811P: Eugene Surovegin
2812M: ebs@ebshome.net
2813W: http://kernel.ebshome.net/emac/
2814L: linuxppc-embedded@ozlabs.org
2815L: netdev@vger.kernel.org
2816S: Maintained
2817
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818PNP SUPPORT
2819P: Adam Belay
2820M: ambx1@neo.rr.com
2821S: Maintained
2822
Vitaly Wool999445d2007-01-04 13:07:03 +01002823PNXxxxx I2C DRIVER
2824P: Vitaly Wool
2825M: vitalywool@gmail.com
2826L: i2c@lm-sensors.org
2827S: Maintained
2828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829PPP PROTOCOL DRIVERS AND COMPRESSORS
2830P: Paul Mackerras
2831M: paulus@samba.org
2832L: linux-ppp@vger.kernel.org
2833S: Maintained
2834
2835PPP OVER ATM (RFC 2364)
2836P: Mitchell Blank Jr
2837M: mitch@sfgoth.com
2838S: Maintained
2839
2840PPP OVER ETHERNET
2841P: Michal Ostrowski
2842M: mostrows@speakeasy.net
2843S: Maintained
2844
2845PREEMPTIBLE KERNEL
2846P: Robert Love
2847M: rml@tech9.net
2848L: linux-kernel@vger.kernel.org
2849L: kpreempt-tech@lists.sourceforge.net
2850W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2851S: Supported
2852
2853PRISM54 WIRELESS DRIVER
2854P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002855M: developers@islsm.org
Johannes Berg724c6b32007-04-23 12:18:20 -07002856L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857W: http://prism54.org
2858S: Maintained
2859
2860PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2861P: Peter Denison
2862M: promise@pnd-pc.demon.co.uk
2863W: http://www.pnd-pc.demon.co.uk/promise/
2864S: Maintained
2865
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002866PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2867P: Mikael Pettersson
2868M: mikpe@it.uu.se
2869L: linux-ide@vger.kernel.org
2870S: Maintained
2871
Geoff Levandf58a9d12006-11-23 00:46:51 +01002872PS3 PLATFORM SUPPORT
2873P: Geoff Levand
2874M: geoffrey.levand@am.sony.com
2875L: linuxppc-dev@ozlabs.org
2876L: cbe-oss-dev@ozlabs.org
2877S: Supported
2878
Michael Krufky83202042006-07-03 00:24:18 -07002879PVRUSB2 VIDEO4LINUX DRIVER
2880P: Mike Isely
2881M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03002882L: pvrusb2@isely.net (subscribers-only)
Michael Krufky83202042006-07-03 00:24:18 -07002883L: video4linux-list@redhat.com
2884W: http://www.isely.net/pvrusb2/
2885S: Maintained
2886
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887PXA2xx SUPPORT
2888P: Nicolas Pitre
2889M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002890L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891S: Maintained
2892
2893QLOGIC QLA2XXX FC-SCSI DRIVER
2894P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002895M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896L: linux-scsi@vger.kernel.org
2897S: Supported
2898
Ron Mercer5a4faa82006-07-25 00:40:21 -07002899QLOGIC QLA3XXX NETWORK DRIVER
2900P: Ron Mercer
2901M: linux-driver@qlogic.com
2902L: netdev@vger.kernel.org
2903S: Supported
2904
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905QNX4 FILESYSTEM
2906P: Anders Larsen
2907M: al@alarsen.net
2908L: linux-kernel@vger.kernel.org
2909W: http://www.alarsen.net/linux/qnx4fs/
2910S: Maintained
2911
2912RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002913P: Benjamin Herrenschmidt
2914M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002915L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916S: Maintained
2917
2918RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002919P: Paul Mackerras
2920M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002921L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922S: Maintained
2923
2924RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2925P: Corey Thomas
2926M: corey@world.std.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002927L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928S: Maintained
2929
Matt Mackall9e95ce22005-04-16 15:25:56 -07002930RANDOM NUMBER DRIVER
2931P: Matt Mackall
2932M: mpm@selenic.com
2933S: Maintained
2934
Matt Porter394b7012005-11-07 01:00:15 -08002935RAPIDIO SUBSYSTEM
2936P: Matt Porter
2937M: mporter@kernel.crashing.org
2938L: linux-kernel@vger.kernel.org
2939S: Maintained
2940
Josh Triplett595182b2006-10-04 02:17:21 -07002941READ-COPY UPDATE (RCU)
2942P: Dipankar Sarma
2943M: dipankar@in.ibm.com
2944W: http://www.rdrop.com/users/paulmck/rclock/
2945L: linux-kernel@vger.kernel.org
2946S: Supported
2947
2948RCUTORTURE MODULE
2949P: Josh Triplett
2950M: josh@freedesktop.org
2951L: linux-kernel@vger.kernel.org
2952S: Maintained
2953
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954REAL TIME CLOCK DRIVER
2955P: Paul Gortmaker
2956M: p_gortmaker@yahoo.com
2957L: linux-kernel@vger.kernel.org
2958S: Maintained
2959
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002960REAL TIME CLOCK (RTC) SUBSYSTEM
2961P: Alessandro Zummo
2962M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002963L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002964S: Maintained
2965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966REISERFS FILE SYSTEM
2967P: Hans Reiser
2968M: reiserfs-dev@namesys.com
2969L: reiserfs-list@namesys.com
2970W: http://www.namesys.com
2971S: Supported
2972
2973ROCKETPORT DRIVER
2974P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975W: http://www.comtrol.com
2976S: Maintained
2977
2978ROSE NETWORK LAYER
2979P: Ralf Baechle
2980M: ralf@linux-mips.org
2981L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002982W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983S: Maintained
2984
2985RISCOM8 DRIVER
2986S: Orphan
2987
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002988S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002989P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002990M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002991L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002992S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002993
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994S390
2995P: Martin Schwidefsky
2996M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002997P: Heiko Carstens
2998M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01003000L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003001W: http://www.ibm.com/developerworks/linux/linux390/
3002S: Supported
3003
3004S390 NETWORK DRIVERS
3005P: Frank Pavlic
3006M: fpavlic@de.ibm.com
3007M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01003008L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003009W: http://www.ibm.com/developerworks/linux/linux390/
3010S: Supported
3011
3012S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02003013P: Swen Schillig
3014M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08003015M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01003016L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003017W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018S: Supported
3019
3020SAA7146 VIDEO4LINUX-2 DRIVER
3021P: Michael Hunold
3022M: michael@mihu.de
3023W: http://www.mihu.de/linux/saa7146
3024S: Maintained
3025
3026SBPCD CDROM DRIVER
3027P: Eberhard Moenkeberg
3028M: emoenke@gwdg.de
3029L: linux-kernel@vger.kernel.org
3030S: Maintained
3031
3032SC1200 WDT DRIVER
3033P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07003034M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035S: Maintained
3036
3037SCHEDULER
3038P: Ingo Molnar
3039M: mingo@elte.hu
3040P: Robert Love [the preemptible kernel bits]
3041M: rml@tech9.net
3042L: linux-kernel@vger.kernel.org
3043S: Maintained
3044
3045SCSI CDROM DRIVER
3046P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003047M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048L: linux-scsi@vger.kernel.org
3049W: http://www.kernel.dk
3050S: Maintained
3051
3052SCSI SG DRIVER
3053P: Doug Gilbert
3054M: dgilbert@interlog.com
3055L: linux-scsi@vger.kernel.org
3056W: http://www.torque.net/sg
3057S: Maintained
3058
3059SCSI SUBSYSTEM
3060P: James E.J. Bottomley
3061M: James.Bottomley@SteelEye.com
3062L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003063T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064S: Maintained
3065
3066SCSI TAPE DRIVER
3067P: Kai Mäkisara
3068M: Kai.Makisara@kolumbus.fi
3069L: linux-scsi@vger.kernel.org
3070S: Maintained
3071
3072SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003073P: Vlad Yasevich
3074M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01003075P: Sridhar Samudrala
3076M: sri@us.ibm.com
3077L: lksctp-developers@lists.sourceforge.net
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003078W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01003079S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080
3081SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07003082P: Jim Cromie
3083M: jim.cromie@gmail.com
3084S: Odd Fixes
3085
3086SCx200 GPIO DRIVER
3087P: Jim Cromie
3088M: jim.cromie@gmail.com
3089S: Maintained
3090
3091SCx200 HRT CLOCKSOURCE DRIVER
3092P: Jim Cromie
3093M: jim.cromie@gmail.com
3094S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
3096SECURITY CONTACT
3097P: Security Officers
3098M: security@kernel.org
3099S: Supported
3100
3101SELINUX SECURITY MODULE
3102P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08003103M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04003105M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05003106P: Eric Paris
3107M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108L: linux-kernel@vger.kernel.org (kernel issues)
Stephen Smalley588a3152007-02-23 09:20:09 -05003109L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110W: http://www.nsa.gov/selinux
3111S: Supported
3112
3113SERIAL ATA (SATA) SUBSYSTEM:
3114P: Jeff Garzik
3115M: jgarzik@pobox.com
3116L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003117T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118S: Supported
3119
3120SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
3121P: Pat Gefre
3122M: pfg@sgi.com
3123L: linux-ia64@vger.kernel.org
3124S: Supported
3125
3126SGI VISUAL WORKSTATION 320 AND 540
3127P: Andrey Panin
3128M: pazke@donpac.ru
3129L: linux-visws-devel@lists.sf.net
3130W: http://linux-visws.sf.net
3131S: Maintained for 2.6.
3132
3133SIMTEC EB110ATX (Chalice CATS)
3134P: Ben Dooks
3135P: Vincent Sanders
3136M: support@simtec.co.uk
3137W: http://www.simtec.co.uk/products/EB110ATX/
3138S: Supported
3139
3140SIMTEC EB2410ITX (BAST)
3141P: Ben Dooks
3142P: Vincent Sanders
3143M: support@simtec.co.uk
3144W: http://www.simtec.co.uk/products/EB2410ITX/
3145S: Supported
3146
Francois Romieu92aab3c2005-07-30 13:11:18 +02003147SIS 190 ETHERNET DRIVER
3148P: Francois Romieu
3149M: romieu@fr.zoreil.com
3150L: netdev@vger.kernel.org
3151S: Maintained
3152
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153SIS 5513 IDE CONTROLLER DRIVER
3154P: Lionel Bouton
3155M: Lionel.Bouton@inet6.fr
3156W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3157W: http://gyver.homeip.net/sis5513/index.html
3158S: Maintained
3159
3160SIS 900/7016 FAST ETHERNET DRIVER
3161P: Daniele Venzano
3162M: venza@brownhat.org
3163W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003164L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165S: Maintained
3166
3167SIS FRAMEBUFFER DRIVER
3168P: Thomas Winischhofer
3169M: thomas@winischhofer.net
3170W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003171S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
3173SIS USB2VGA DRIVER
3174P: Thomas Winischhofer
3175M: thomas@winischhofer.net
3176W: http://www.winischhofer.at/linuxsisusbvga.shtml
3177S: Maintained
3178
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179SMC91x ETHERNET DRIVER
3180P: Nicolas Pitre
3181M: nico@cam.org
3182S: Maintained
3183
Daniel Drake8f0f8502006-07-18 22:00:25 +01003184SOFTMAC LAYER (IEEE 802.11)
3185P: Johannes Berg
3186M: johannes@sipsolutions.net
3187P: Joe Jezak
3188M: josejx@gentoo.org
3189P: Daniel Drake
3190M: dsd@gentoo.org
3191W: http://softmac.sipsolutions.net/
Johannes Berg724c6b32007-04-23 12:18:20 -07003192L: linux-wireless@vger.kernel.org
Daniel Drake8f0f8502006-07-18 22:00:25 +01003193S: Maintained
3194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195SOFTWARE RAID (Multiple Disks) SUPPORT
3196P: Ingo Molnar
3197M: mingo@redhat.com
3198P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003199M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003201S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
3203SOFTWARE SUSPEND:
3204P: Pavel Machek
3205M: pavel@suse.cz
David Brownellf318a632007-04-23 14:41:06 -07003206L: linux-pm@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207S: Maintained
3208
3209SONIC NETWORK DRIVER
3210P: Thomas Bogendoerfer
3211M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003212L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213S: Maintained
3214
3215SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01003216P: Mattia Dongili
3217M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01003218L: linux-acpi@vger.kernel.org
3219W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220S: Maintained
3221
3222SOUND
3223P: Jaroslav Kysela
3224M: perex@suse.cz
3225L: alsa-devel@alsa-project.org
3226S: Maintained
3227
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003228SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3229P: Liam Girdwood
3230M: liam.girdwood@wolfsonmicro.com
3231L: alsa-devel@alsa-project.org
3232S: Supported
3233
Kumar Gala025c3982006-04-02 16:05:54 -05003234SPI SUBSYSTEM
3235P: David Brownell
3236M: dbrownell@users.sourceforge.net
3237L: spi-devel-general@lists.sourceforge.net
3238S: Maintained
3239
Steven Rostedt855f46a2006-08-05 12:14:50 -07003240STABLE BRANCH:
3241P: Greg Kroah-Hartman
3242M: greg@kroah.com
3243P: Chris Wright
3244M: chrisw@sous-sol.org
3245L: stable@kernel.org
3246S: Maintained
3247
Kylene Hall1c72d462005-05-01 08:59:13 -07003248TPM DEVICE DRIVER
3249P: Kylene Hall
3250M: kjhall@us.ibm.com
3251W: http://tpmdd.sourceforge.net
Marcel Selhorstd3a7b6d2007-03-16 13:38:31 -08003252P: Marcel Selhorst
3253M: tpm@selhorst.net
3254W: http://www.prosec.rub.de/tpm/
Kylene Hall1c72d462005-05-01 08:59:13 -07003255L: tpmdd-devel@lists.sourceforge.net
3256S: Maintained
3257
Mark Gross1a80ba82005-10-30 15:02:55 -08003258Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003259P: Mark Gross
3260M: mark.gross@intel.com
3261S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003262
Chris Zankel48b415c2005-06-23 22:01:07 -07003263TENSILICA XTENSA PORT (xtensa):
3264P: Chris Zankel
3265M: chris@zankel.net
3266S: Maintained
3267
Henrique de Moraes Holschuh756970a2007-03-29 01:58:44 -03003268THINKPAD ACPI EXTRAS DRIVER
3269P: Henrique de Moraes Holschuh
3270M: ibm-acpi@hmh.eng.br
3271L: ibm-acpi-devel@lists.sourceforge.net
3272W: http://ibm-acpi.sourceforge.net
3273W: http://thinkwiki.org/wiki/Ibm-acpi
3274T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
3275S: Maintained
3276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277UltraSPARC (sparc64):
3278P: David S. Miller
3279M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003281T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282S: Maintained
3283
3284SHARP LH SUPPORT (LH7952X & LH7A40X)
3285P: Marc Singer
3286M: elf@buici.com
3287W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003288L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289S: Maintained
3290
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003291SHPC HOTPLUG DRIVER
3292P: Kristen Carlson Accardi
3293M: kristen.c.accardi@intel.com
3294L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003295S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003296
Pierre Ossmand129bce2006-03-24 03:18:17 -08003297SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3298P: Pierre Ossman
3299M: drzeus-sdhci@drzeus.cx
3300L: sdhci-devel@list.drzeus.cx
3301W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3302S: Maintained
3303
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003304SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3305P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003306M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003307L: netdev@vger.kernel.org
3308S: Maintained
3309
Chris Boot1a87d942006-07-10 04:45:34 -07003310SOEKRIS NET48XX LED SUPPORT
3311P: Chris Boot
3312M: bootc@bootc.net
3313S: Maintained
3314
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315SPARC (sparc32):
3316P: William L. Irwin
3317M: wli@holomorphy.com
3318L: sparclinux@vger.kernel.org
3319S: Maintained
3320
3321SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3322P: Roger Wolff
3323M: R.E.Wolff@BitWizard.nl
3324L: linux-kernel@vger.kernel.org ?
3325S: Supported
3326
Jim Lewis2752e402006-09-29 02:01:19 -07003327SPIDERNET NETWORK DRIVER for CELL
Linas Vepstasfa302482007-02-20 16:45:27 -06003328P: Linas Vepstas
3329M: linas@austin.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07003330L: netdev@vger.kernel.org
3331S: Supported
3332
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333SRM (Alpha) environment access
3334P: Jan-Benedict Glaw
3335M: jbglaw@lug-owl.de
3336L: linux-kernel@vger.kernel.org
3337S: Maintained
3338
3339STARFIRE/DURALAN NETWORK DRIVER
3340P: Ion Badulescu
3341M: ionut@cs.columbia.edu
3342S: Maintained
3343
3344STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3345W: http://mosquitonet.Stanford.EDU/strip.html
3346S: Unsupported ?
3347
3348STRADIS MPEG-2 DECODER DRIVER
3349P: Nathan Laredo
3350M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351W: http://www.stradis.com/
3352S: Maintained
3353
3354SUPERH (sh)
3355P: Paul Mundt
3356M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003357L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359S: Maintained
3360
3361SUPERH64 (sh64)
3362P: Paul Mundt
3363M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364L: linuxsh-shmedia-dev@lists.sourceforge.net
3365W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366S: Maintained
3367
3368SUN3/3X
3369P: Sam Creasey
3370M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371W: http://sammy.net/sun3/
3372S: Maintained
3373
3374SVGA HANDLING
3375P: Martin Mares
3376M: mj@ucw.cz
3377L: linux-video@atrey.karlin.mff.cuni.cz
3378S: Maintained
3379
3380SYSV FILESYSTEM
3381P: Christoph Hellwig
3382M: hch@infradead.org
3383S: Maintained
3384
Stephen Hemminger781b4562006-07-10 20:25:29 -07003385TC CLASSIFIER
3386P: Jamal Hadi Salim
3387M: hadi@cyberus.ca
3388L: netdev@vger.kernel.org
3389S: Maintained
3390
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003391TCP LOW PRIORITY MODULE
3392P: Wong Hoi Sing, Edison
3393M: hswong3i@gmail.com
3394P: Hung Hing Lun, Mike
3395M: hlhung3i@gmail.com
3396W: http://tcp-lp-mod.sourceforge.net/
3397S: Maintained
3398
Alex Dubov4020f2d2006-10-04 02:15:37 -07003399TI FLASH MEDIA INTERFACE DRIVER
3400P: Alex Dubov
3401M: oakad@yahoo.com
3402S: Maintained
3403
Michael Buesch844dd052006-06-26 00:24:59 -07003404TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3405P: Deepak Saxena
3406M: dsaxena@plexity.net
3407S: Maintained
3408
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003409TASKSTATS STATISTICS INTERFACE
3410P: Shailabh Nagar
3411M: nagar@watson.ibm.com
3412L: linux-kernel@vger.kernel.org
3413S: Maintained
3414
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003416P: Romain Lievin
3417M: roms@lpg.ticalc.org
3418S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
Per Lidene86eaa32006-01-12 16:45:18 +01003420TIPC NETWORK LAYER
3421P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003422M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003423P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003424M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003425P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003426M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003427L: tipc-discussion@lists.sourceforge.net
3428W: http://tipc.sourceforge.net/
3429W: http://tipc.cslab.ericsson.net/
3430T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3431S: Maintained
3432
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433TLAN NETWORK DRIVER
3434P: Samuel Chessman
3435M: chessman@tux.org
3436L: tlan-devel@lists.sourceforge.net
3437W: http://sourceforge.net/projects/tlan/
3438S: Maintained
3439
3440TOKEN-RING NETWORK DRIVER
3441P: Mike Phillips
3442M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003443L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444L: linux-tr@linuxtr.net
3445W: http://www.linuxtr.net
3446S: Maintained
3447
3448TOSHIBA ACPI EXTRAS DRIVER
3449P: John Belmonte
3450M: toshiba_acpi@memebeam.org
3451W: http://memebeam.org/toys/ToshibaAcpiDriver
3452S: Maintained
3453
3454TOSHIBA SMM DRIVER
3455P: Jonathan Buzzard
3456M: jonathan@buzzard.org.uk
3457L: tlinux-users@tce.toshiba-dme.co.jp
3458W: http://www.buzzard.org.uk/toshiba/
3459S: Maintained
3460
3461TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3462P: Muli Ben-Yehuda
3463M: mulix@mulix.org
3464L: linux-kernel@vger.kernel.org
3465S: Maintained
3466
3467TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003468P: Adrian Bunk
3469M: trivial@kernel.org
3470L: linux-kernel@vger.kernel.org
3471W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3472T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3473S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
3475TMS380 TOKEN-RING NETWORK DRIVER
3476P: Adam Fritzler
3477M: mid@auk.cx
3478L: linux-tr@linuxtr.net
3479W: http://www.auk.cx/tms380tr/
3480S: Maintained
3481
3482TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003483P: Valerie Henson
3484M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485L: tulip-users@lists.sourceforge.net
3486W: http://sourceforge.net/projects/tulip/
3487S: Maintained
3488
3489TUN/TAP driver
3490P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003491M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492L: vtun@office.satix.net
3493W: http://vtun.sourceforge.net/tun
3494S: Maintained
3495
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003496TURBOCHANNEL SUBSYSTEM
3497P: Maciej W. Rozycki
3498M: macro@linux-mips.org
3499S: Maintained
3500
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501U14-34F SCSI DRIVER
3502P: Dario Ballabio
3503M: ballabio_dario@emc.com
3504L: linux-scsi@vger.kernel.org
3505S: Maintained
3506
3507UDF FILESYSTEM
3508P: Ben Fennema
3509M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510W: http://linux-udf.sourceforge.net
3511S: Maintained
3512
3513UNIFORM CDROM DRIVER
3514P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003515M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516L: linux-kernel@vger.kernel.org
3517W: http://www.kernel.dk
3518S: Maintained
3519
3520USB ACM DRIVER
3521P: Oliver Neukum
3522M: oliver@neukum.name
3523L: linux-usb-users@lists.sourceforge.net
3524L: linux-usb-devel@lists.sourceforge.net
3525S: Maintained
3526
3527USB BLOCK DRIVER (UB ub)
3528P: Pete Zaitcev
3529M: zaitcev@redhat.com
3530L: linux-kernel@vger.kernel.org
3531L: linux-usb-devel@lists.sourceforge.net
3532S: Supported
3533
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534USB CDC ETHERNET DRIVER
3535P: Greg Kroah-Hartman
3536M: greg@kroah.com
3537L: linux-usb-users@lists.sourceforge.net
3538L: linux-usb-devel@lists.sourceforge.net
3539S: Maintained
3540W: http://www.kroah.com/linux-usb/
3541
Peter Korsgaardd0374f42007-02-16 17:03:54 +01003542USB DAVICOM DM9601 DRIVER
3543P: Peter Korsgaard
3544M: jacmet@sunsite.dk
3545L: linux-usb-devel@lists.sourceforge.net
3546W: http://www.linux-usb.org/usbnet
3547S: Maintained
3548
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549USB EHCI DRIVER
3550P: David Brownell
3551M: dbrownell@users.sourceforge.net
3552L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003553S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
Luca Risolia7ce08c92006-01-11 02:06:59 +00003555USB ET61X[12]51 DRIVER
3556P: Luca Risolia
3557M: luca.risolia@studio.unibo.it
3558L: linux-usb-devel@lists.sourceforge.net
3559L: video4linux-list@redhat.com
3560W: http://www.linux-projects.org
3561S: Maintained
3562
David Brownell69ae9e32006-11-14 02:03:31 -08003563USB GADGET/PERIPHERAL SUBSYSTEM
3564P: David Brownell
3565M: dbrownell@users.sourceforge.net
3566L: linux-usb-devel@lists.sourceforge.net
3567W: http://www.linux-usb.org/gadget
3568S: Maintained
3569
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570USB HID/HIDBP DRIVERS
Jiri Kosina641266f2007-01-15 09:56:21 +01003571P: Jiri Kosina
3572M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573L: linux-usb-devel@lists.sourceforge.net
Jiri Kosinaa4dff392007-02-27 17:40:09 +01003574T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575S: Maintained
3576
3577USB HUB DRIVER
3578P: Johannes Erdfelt
3579M: johannes@erdfelt.com
3580L: linux-usb-users@lists.sourceforge.net
3581L: linux-usb-devel@lists.sourceforge.net
3582S: Maintained
3583
Olav Kongas959eea22005-11-03 17:38:14 +02003584USB ISP116X DRIVER
3585P: Olav Kongas
3586M: ok@artecdesign.ee
3587L: linux-usb-devel@lists.sourceforge.net
3588S: Maintained
3589
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590USB KAWASAKI LSI DRIVER
3591P: Oliver Neukum
3592M: oliver@neukum.name
3593L: linux-usb-users@lists.sourceforge.net
3594L: linux-usb-devel@lists.sourceforge.net
3595S: Maintained
3596
3597USB MASS STORAGE DRIVER
3598P: Matthew Dharm
3599M: mdharm-usb@one-eyed-alien.net
3600L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003601L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602S: Maintained
3603W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3604
3605USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003606P: David Brownell
3607M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608L: linux-usb-users@lists.sourceforge.net
3609L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003610S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
Matthias Urlichsba460e42005-07-14 00:33:47 -07003612USB OPTION-CARD DRIVER
3613P: Matthias Urlichs
3614M: smurf@smurf.noris.de
3615L: linux-usb-devel@lists.sourceforge.net
3616S: Maintained
3617
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618USB OV511 DRIVER
3619P: Mark McClelland
3620M: mmcclell@bigfoot.com
3621L: linux-usb-users@lists.sourceforge.net
3622L: linux-usb-devel@lists.sourceforge.net
3623W: http://alpha.dyndns.org/ov511/
3624S: Maintained
3625
3626USB PEGASUS DRIVER
3627P: Petko Manolov
3628M: petkan@users.sourceforge.net
3629L: linux-usb-users@lists.sourceforge.net
3630L: linux-usb-devel@lists.sourceforge.net
3631W: http://pegasus2.sourceforge.net/
3632S: Maintained
3633
3634USB PRINTER DRIVER
3635P: Vojtech Pavlik
3636M: vojtech@suse.cz
3637L: linux-usb-users@lists.sourceforge.net
3638L: linux-usb-devel@lists.sourceforge.net
3639S: Maintained
3640
3641USB RTL8150 DRIVER
3642P: Petko Manolov
3643M: petkan@users.sourceforge.net
3644L: linux-usb-users@lists.sourceforge.net
3645L: linux-usb-devel@lists.sourceforge.net
3646W: http://pegasus2.sourceforge.net/
3647S: Maintained
3648
3649USB SE401 DRIVER
3650P: Jeroen Vreeken
3651M: pe1rxq@amsat.org
3652L: linux-usb-users@lists.sourceforge.net
3653L: linux-usb-devel@lists.sourceforge.net
3654W: http://www.chello.nl/~j.vreeken/se401/
3655S: Maintained
3656
3657USB SERIAL CYBERJACK DRIVER
3658P: Matthias Bruestle and Harald Welte
3659M: support@reiner-sct.com
3660W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3661S: Maintained
3662
3663USB SERIAL DIGI ACCELEPORT DRIVER
3664P: Peter Berger and Al Borchers
3665M: pberger@brimson.com
3666M: alborchers@steinerpoint.com
3667L: linux-usb-users@lists.sourceforge.net
3668L: linux-usb-devel@lists.sourceforge.net
3669S: Maintained
3670
3671USB SERIAL DRIVER
3672P: Greg Kroah-Hartman
3673M: gregkh@suse.de
3674L: linux-usb-users@lists.sourceforge.net
3675L: linux-usb-devel@lists.sourceforge.net
3676S: Supported
3677
3678USB SERIAL BELKIN F5U103 DRIVER
3679P: William Greathouse
3680M: wgreathouse@smva.com
3681L: linux-usb-users@lists.sourceforge.net
3682L: linux-usb-devel@lists.sourceforge.net
3683S: Maintained
3684
3685USB SERIAL CYPRESS M8 DRIVER
3686P: Lonnie Mendez
3687M: dignome@gmail.com
3688L: linux-usb-users@lists.sourceforge.net
3689L: linux-usb-devel@lists.sourceforge.net
3690S: Maintained
3691W: http://geocities.com/i0xox0i
3692W: http://firstlight.net/cvs
3693
3694USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3695L: linux-usb-users@lists.sourceforge.net
3696L: linux-usb-devel@lists.sourceforge.net
3697S: Maintained
3698
3699USB AUERSWALD DRIVER
3700P: Wolfgang Muees
3701M: wolfgang@iksw-muees.de
3702L: linux-usb-users@lists.sourceforge.net
3703L: linux-usb-devel@lists.sourceforge.net
3704S: Maintained
3705
3706USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3707P: Gary Brubaker
3708M: xavyer@ix.netcom.com
3709L: linux-usb-users@lists.sourceforge.net
3710L: linux-usb-devel@lists.sourceforge.net
3711S: Maintained
3712
3713USB SERIAL KEYSPAN DRIVER
3714P: Greg Kroah-Hartman
3715M: greg@kroah.com
3716L: linux-usb-users@lists.sourceforge.net
3717L: linux-usb-devel@lists.sourceforge.net
3718W: http://www.kroah.com/linux/
3719S: Maintained
3720
3721USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04003722P: Support Department
3723M: support@connecttech.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724L: linux-usb-users@lists.sourceforge.net
3725L: linux-usb-devel@lists.sourceforge.net
3726W: http://www.connecttech.com
3727S: Supported
3728
Luca Risoliaf423b9a2007-03-26 16:12:04 -03003729USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730P: Luca Risolia
3731M: luca.risolia@studio.unibo.it
3732L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003733L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734W: http://www.linux-projects.org
3735S: Maintained
3736
3737USB SUBSYSTEM
3738P: Greg Kroah-Hartman
3739M: gregkh@suse.de
3740L: linux-usb-users@lists.sourceforge.net
3741L: linux-usb-devel@lists.sourceforge.net
3742W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003743T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744S: Supported
3745
3746USB UHCI DRIVER
3747P: Alan Stern
3748M: stern@rowland.harvard.edu
3749L: linux-usb-users@lists.sourceforge.net
3750L: linux-usb-devel@lists.sourceforge.net
3751S: Maintained
3752
David Brownell69ae9e32006-11-14 02:03:31 -08003753USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754P: David Brownell
3755M: dbrownell@users.sourceforge.net
3756L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003757W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758S: Maintained
3759
3760USB W996[87]CF DRIVER
3761P: Luca Risolia
3762M: luca.risolia@studio.unibo.it
3763L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003764L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765W: http://www.linux-projects.org
3766S: Maintained
3767
Luca Risolia60f78052006-02-06 16:29:35 +00003768USB ZC0301 DRIVER
3769P: Luca Risolia
3770M: luca.risolia@studio.unibo.it
3771L: linux-usb-devel@lists.sourceforge.net
3772L: video4linux-list@redhat.com
3773W: http://www.linux-projects.org
3774S: Maintained
3775
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776USB ZD1201 DRIVER
3777P: Jeroen Vreeken
3778M: pe1rxq@amsat.org
3779L: linux-usb-users@lists.sourceforge.net
3780L: linux-usb-devel@lists.sourceforge.net
3781W: http://linux-lc100020.sourceforge.net
3782S: Maintained
3783
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003784USB ZR364XX DRIVER
3785P: Antoine Jacquet
3786M: royale@zerezo.com
3787L: linux-usb-devel@lists.sourceforge.net
3788L: video4linux-list@redhat.com
3789W: http://royale.zerezo.com/zr364xx/
3790S: Maintained
3791
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792USER-MODE LINUX
3793P: Jeff Dike
3794M: jdike@karaya.com
3795L: user-mode-linux-devel@lists.sourceforge.net
3796L: user-mode-linux-user@lists.sourceforge.net
3797W: http://user-mode-linux.sourceforge.net
3798S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003799
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800FAT/VFAT/MSDOS FILESYSTEM:
3801P: OGAWA Hirofumi
3802M: hirofumi@mail.parknet.co.jp
3803L: linux-kernel@vger.kernel.org
3804S: Maintained
3805
3806VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3807P: Jeff Garzik
3808S: Odd fixes
3809
3810VIA RHINE NETWORK DRIVER
3811P: Roger Luethi
3812M: rl@hellgate.ch
3813S: Maintained
3814
Jean Delvare32c0a522005-09-22 21:47:58 +02003815VIAPRO SMBUS DRIVER
3816P: Jean Delvare
3817M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003818L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003819S: Maintained
3820
Francois Romieu01f20732007-01-26 00:57:17 -08003821VIA VELOCITY NETWORK DRIVER
3822P: Francois Romieu
3823M: romieu@fr.zoreil.com
3824L: netdev@vger.kernel.org
3825S: Maintained
3826
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827UCLINUX (AND M68KNOMMU)
3828P: Greg Ungerer
3829M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003831L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832S: Maintained
3833
3834UCLINUX FOR NEC V850
3835P: Miles Bader
3836M: uclinux-v850@lsi.nec.co.jp
3837W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3838W: http://www.ee.nec.de/uclinux/
3839S: Supported
3840
3841UCLINUX FOR RENESAS H8/300
3842P: Yoshinori Sato
3843M: ysato@users.sourceforge.jp
3844W: http://uclinux-h8.sourceforge.jp/
3845S: Supported
3846
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003847UFS FILESYSTEM
3848P: Evgeniy Dushistov
3849M: dushistov@mail.ru
3850L: linux-kernel@vger.kernel.org
3851S: Maintained
3852
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853USB DIAMOND RIO500 DRIVER
3854P: Cesar Miquel
3855M: miquel@df.uba.ar
3856L: rio500-users@lists.sourceforge.net
3857W: http://rio500.sourceforge.net
3858S: Maintained
3859
3860VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003861P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003862M: mchehab@infradead.org
3863M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003865W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003866T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003867S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
Juerg Haefligerab413192006-09-24 20:54:04 +02003869VT1211 HARDWARE MONITOR DRIVER
3870P: Juerg Haefliger
3871M: juergh@gmail.com
3872L: lm-sensors@lm-sensors.org
3873S: Maintained
3874
Roger Lucas1de9e372005-11-26 20:20:05 +01003875VT8231 HARDWARE MONITOR DRIVER
3876P: Roger Lucas
3877M: roger@planbit.co.uk
3878L: lm-sensors@lm-sensors.org
3879S: Maintained
3880
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881W1 DALLAS'S 1-WIRE BUS
3882P: Evgeniy Polyakov
3883M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884S: Maintained
3885
Charles Spirakis13927072006-07-05 18:05:15 +02003886W83791D HARDWARE MONITORING DRIVER
3887P: Charles Spirakis
3888M: bezaur@gmail.com
3889L: lm-sensors@lm-sensors.org
3890S: Maintained
3891
Rudolf Marek61db0112006-12-12 18:18:30 +01003892W83793 HARDWARE MONITORING DRIVER
3893P: Rudolf Marek
3894M: r.marek@assembler.cz
3895L: lm-sensors@lm-sensors.org
3896S: Maintained
3897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898W83L51xD SD/MMC CARD INTERFACE DRIVER
3899P: Pierre Ossman
3900M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003901L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902W: http://projects.drzeus.cx/wbsd
3903S: Maintained
3904
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003905WATCHDOG DEVICE DRIVERS
3906P: Wim Van Sebroeck
3907M: wim@iguana.be
3908T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3909S: Maintained
3910
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3912P: Jean Tourrilhes
3913M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003914L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3916S: Maintained
3917
3918WD7000 SCSI DRIVER
3919P: Miroslav Zagorac
3920M: zaga@fly.cc.fer.hr
3921L: linux-scsi@vger.kernel.org
3922S: Maintained
3923
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003924WISTRON LAPTOP BUTTON DRIVER
3925P: Miloslav Trmac
3926M: mitr@volny.cz
3927S: Maintained
3928
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929WL3501 WIRELESS PCMCIA CARD DRIVER
3930P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003931M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07003932L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003933W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934S: Maintained
3935
3936X.25 NETWORK LAYER
3937P: Henner Eisen
3938M: eis@baty.hanse.de
3939L: linux-x25@vger.kernel.org
3940S: Maintained
3941
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02003942XEN HYPERVISOR INTERFACE
3943P: Jeremy Fitzhardinge
3944M: jeremy@xensource.com
3945P: Chris Wright
3946M: chrisw@sous-sol.org
3947L: virtualization@lists.osdl.org
3948L: xen-devel@lists.xensource.com
3949S: Supported
3950
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951XFS FILESYSTEM
3952P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003953P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003955L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003957T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958S: Supported
3959
Peter Korsgaard238b8722006-12-06 20:35:17 -08003960XILINX UARTLITE SERIAL DRIVER
3961P: Peter Korsgaard
3962M: jacmet@sunsite.dk
3963L: linux-serial@vger.kernel.org
3964S: Maintained
3965
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966X86 3-LEVEL PAGING (PAE) SUPPORT
3967P: Ingo Molnar
3968M: mingo@redhat.com
3969S: Maintained
3970
3971X86-64 port
3972P: Andi Kleen
3973M: ak@suse.de
3974L: discuss@x86-64.org
3975W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01003976T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977S: Maintained
3978
3979YAM DRIVER FOR AX.25
3980P: Jean-Paul Roubelat
3981M: jpr@f6fbb.org
3982L: linux-hams@vger.kernel.org
3983S: Maintained
3984
Henkaf64a5e2005-10-12 15:02:56 +02003985YEALINK PHONE DRIVER
3986P: Henk Vergonet
3987M: Henk.Vergonet@gmail.com
3988L: usbb2k-api-dev@nongnu.org
3989S: Maintained
3990
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991Z8530 DRIVER FOR AX.25
3992P: Joerg Reuter
3993M: jreuter@yaina.de
3994W: http://yaina.de/jreuter/
3995W: http://www.qsl.net/dl1bke/
3996L: linux-hams@vger.kernel.org
3997S: Maintained
3998
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003999ZD1211RW WIRELESS DRIVER
4000P: Daniel Drake
4001M: dsd@gentoo.org
4002P: Ulrich Kunitz
4003M: kune@deine-taler.de
4004W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07004005L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01004006L: zd1211-devs@lists.sourceforge.net (subscribers-only)
4007S: Maintained
4008
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009ZF MACHZ WATCHDOG
4010P: Fernando Fuganti
4011M: fuganti@netbank.com.br
4012W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
4013S: Maintained
4014
4015ZR36067 VIDEO FOR LINUX DRIVER
4016P: Ronald Bultje
4017M: rbultje@ronald.bitfreak.net
4018L: mjpeg-users@lists.sourceforge.net
4019W: http://mjpeg.sourceforge.net/driver-zoran/
4020S: Maintained
4021
4022ZR36120 VIDEO FOR LINUX DRIVER
4023P: Pauline Middelink
4024M: middelin@polyware.nl
4025W: http://www.polyware.nl/~middelin/En/hobbies.html
4026W: http://www.polyware.nl/~middelin/hobbies.html
4027S: Maintained
4028
4029THE REST
4030P: Linus Torvalds
4031S: Buried alive in reporters