blob: 4da6785057889c62a37d1a8770e7c146bc7fe2b8 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703BAYCOM/HDLCDRV DRIVERS FOR AX.25
704P: Thomas Sailer
705M: t.sailer@alumni.ethz.ch
706L: linux-hams@vger.kernel.org
707W: http://www.baycom.org/~tom/ham/ham.html
708S: Maintained
709
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200710BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
711P: Larry Finger
712M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200713P: Stefano Brivio
714M: st3@riseup.net
Johannes Berg724c6b32007-04-23 12:18:20 -0700715L: linux-wireless@vger.kernel.org
Michael Buesch9eac8f92006-04-22 17:31:27 +0200716W: http://bcm43xx.berlios.de/
717S: Maintained
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719BEFS FILE SYSTEM
720P: Sergey S. Kostyliov
721M: rathamahata@php4.ru
722L: linux-kernel@vger.kernel.org
723S: Maintained
724
725BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
726P: Kenji Hollis
727W: http://ftp.bitgate.com/pcwd/
728S: Maintained
729
730BFS FILE SYSTEM
731P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800732M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733L: linux-kernel@vger.kernel.org
734S: Maintained
735
Bryan Wud24ecfc2007-05-01 23:26:32 +0200736BLACKFIN I2C TWI DRIVER
737P: Sonic Zhang
738M: sonic.zhang@analog.com
739L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
740W: http://blackfin.uclinux.org/
741S: Supported
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743BLOCK LAYER
744P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200745M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800747T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748S: Maintained
749
750BLUETOOTH SUBSYSTEM
751P: Marcel Holtmann
752M: marcel@holtmann.org
753P: Maxim Krasnyansky
754M: maxk@qualcomm.com
755L: bluez-devel@lists.sf.net
756W: http://bluez.sf.net
757W: http://www.bluez.org
758W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800759T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760S: Maintained
761
762BLUETOOTH RFCOMM LAYER
763P: Marcel Holtmann
764M: marcel@holtmann.org
765P: Maxim Krasnyansky
766M: maxk@qualcomm.com
767S: Maintained
768
769BLUETOOTH BNEP LAYER
770P: Marcel Holtmann
771M: marcel@holtmann.org
772P: Maxim Krasnyansky
773M: maxk@qualcomm.com
774S: Maintained
775
776BLUETOOTH CMTP LAYER
777P: Marcel Holtmann
778M: marcel@holtmann.org
779S: Maintained
780
781BLUETOOTH HIDP LAYER
782P: Marcel Holtmann
783M: marcel@holtmann.org
784S: Maintained
785
786BLUETOOTH HCI UART DRIVER
787P: Marcel Holtmann
788M: marcel@holtmann.org
789P: Maxim Krasnyansky
790M: maxk@qualcomm.com
791S: Maintained
792
793BLUETOOTH HCI USB DRIVER
794P: Marcel Holtmann
795M: marcel@holtmann.org
796P: Maxim Krasnyansky
797M: maxk@qualcomm.com
798S: Maintained
799
800BLUETOOTH HCI BCM203X DRIVER
801P: Marcel Holtmann
802M: marcel@holtmann.org
803S: Maintained
804
805BLUETOOTH HCI BPA10X DRIVER
806P: Marcel Holtmann
807M: marcel@holtmann.org
808S: Maintained
809
810BLUETOOTH HCI BFUSB DRIVER
811P: Marcel Holtmann
812M: marcel@holtmann.org
813S: Maintained
814
815BLUETOOTH HCI DTL1 DRIVER
816P: Marcel Holtmann
817M: marcel@holtmann.org
818S: Maintained
819
820BLUETOOTH HCI BLUECARD DRIVER
821P: Marcel Holtmann
822M: marcel@holtmann.org
823S: Maintained
824
825BLUETOOTH HCI BT3C DRIVER
826P: Marcel Holtmann
827M: marcel@holtmann.org
828S: Maintained
829
830BLUETOOTH HCI BTUART DRIVER
831P: Marcel Holtmann
832M: marcel@holtmann.org
833S: Maintained
834
835BLUETOOTH HCI VHCI DRIVER
836P: Maxim Krasnyansky
837M: maxk@qualcomm.com
838S: Maintained
839
840BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100841P: Chad Tindel
842M: ctindel@users.sourceforge.net
843P: Jay Vosburgh
844M: fubar@us.ibm.com
845L: bonding-devel@lists.sourceforge.net
846W: http://sourceforge.net/projects/bonding/
847S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000849BROADBAND PROCESSOR ARCHITECTURE
850P: Arnd Bergmann
851M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100852L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400853W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000854S: Supported
855
Gary Zambrano39105892006-06-22 17:26:20 -0700856BROADCOM B44 10/100 ETHERNET DRIVER
857P: Gary Zambrano
858M: zambrano@broadcom.com
859L: netdev@vger.kernel.org
860S: Supported
861
Michael Chan948c51e2006-06-04 02:51:39 -0700862BROADCOM BNX2 GIGABIT ETHERNET DRIVER
863P: Michael Chan
864M: mchan@broadcom.com
865L: netdev@vger.kernel.org
866S: Supported
867
868BROADCOM TG3 GIGABIT ETHERNET DRIVER
869P: Michael Chan
870M: mchan@broadcom.com
871L: netdev@vger.kernel.org
872S: Supported
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700875P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200876M: mchehab@infradead.org
877M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700879W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200880T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700881S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Jonathan Corbet77d51402007-03-22 19:44:17 -0300883CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
884P: Jonathan Corbet
885M: corbet@lwn.net
886L: video4linux-list@redhat.com
887S: Maintained
888
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200889CALGARY x86-64 IOMMU
890P: Muli Ben-Yehuda
891M: muli@il.ibm.com
892P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200893M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200894L: linux-kernel@vger.kernel.org
895L: discuss@x86-64.org
896S: Maintained
897
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800898CFAG12864B LCD DRIVER
899P: Miguel Ojeda Sandonis
900M: maxextreme@gmail.com
901L: linux-kernel@vger.kernel.org
902S: Maintained
903
904CFAG12864BFB LCD FRAMEBUFFER DRIVER
905P: Miguel Ojeda Sandonis
906M: maxextreme@gmail.com
907L: linux-kernel@vger.kernel.org
908S: Maintained
909
Johannes Berg704232c2007-04-23 12:20:05 -0700910CFG80211 and NL80211
911P: Johannes Berg
912M: johannes@sipsolutions.net
913L: linux-wireless@vger.kernel.org
914S: Maintained
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916COMMON INTERNET FILE SYSTEM (CIFS)
917P: Steve French
918M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100919L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920L: samba-technical@lists.samba.org
921W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800922T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300923S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Joel Becker7063fbf2005-12-15 14:29:43 -0800925CONFIGFS
926P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800927M: joel.becker@oracle.com
928L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800929S: Supported
930
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800931CIRRUS LOGIC EP93XX ETHERNET DRIVER
932P: Lennert Buytenhek
933M: kernel@wantstofly.org
934L: netdev@vger.kernel.org
935S: Maintained
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937CIRRUS LOGIC GENERIC FBDEV DRIVER
938P: Jeff Garzik
939M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800940L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941S: Odd Fixes
942
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800943CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
944P: Lennert Buytenhek
945M: kernel@wantstofly.org
946L: linux-usb-devel@lists.sourceforge.net
947S: Maintained
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
950P: Cirrus Logic Corporation (kernel 2.2 driver)
951M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
952P: Nils Faerber (port to kernel 2.4)
953M: Nils Faerber <nils@kernelconcepts.de>
954S: Maintained
955
956CODA FILE SYSTEM
957P: Jan Harkes
958M: jaharkes@cs.cmu.edu
959M: coda@cs.cmu.edu
960L: codalist@coda.cs.cmu.edu
961W: http://www.coda.cs.cmu.edu/
962S: Maintained
963
964COMPACTPCI HOTPLUG CORE
965P: Scott Murray
966M: scottm@somanetworks.com
967M: scott@spiteful.org
968L: pcihpd-discuss@lists.sourceforge.net
969S: Supported
970
971COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
972P: Scott Murray
973M: scottm@somanetworks.com
974M: scott@spiteful.org
975L: pcihpd-discuss@lists.sourceforge.net
976S: Supported
977
978COMPACTPCI HOTPLUG GENERIC DRIVER
979P: Scott Murray
980M: scottm@somanetworks.com
981M: scott@spiteful.org
982L: pcihpd-discuss@lists.sourceforge.net
983S: Supported
984
985COMPUTONE INTELLIPORT MULTIPORT CARD
986P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700987M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700989S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Simon Arlott949be0f2007-03-06 02:47:46 -0800991CONEXANT ACCESSRUNNER USB DRIVER
992P: Simon Arlott
993M: cxacru@fire.lp0.eu
994S: Maintained
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996COSA/SRP SYNC SERIAL DRIVER
997P: Jan "Yenya" Kasprzak
998M: kas@fi.muni.cz
999W: http://www.fi.muni.cz/~kas/cosa/
1000S: Maintained
1001
1002CPU FREQUENCY DRIVERS
1003P: Dave Jones
1004M: davej@codemonkey.org.uk
1005L: cpufreq@lists.linux.org.uk
1006W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -05001007T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008S: Maintained
1009
1010CPUID/MSR DRIVER
1011P: H. Peter Anvin
1012M: hpa@zytor.com
1013S: Maintained
1014
Paul Jacksoned90fb42005-09-27 21:45:37 -07001015CPUSETS
1016P: Paul Jackson
1017P: Simon Derr
1018M: pj@sgi.com
1019M: simon.derr@bull.net
1020L: linux-kernel@vger.kernel.org
1021W: http://www.bullopensource.org/cpuset/
1022S: Supported
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001025W: http://sourceforge.net/projects/cramfs/
1026S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028CRIS PORT
1029P: Mikael Starvik
1030M: starvik@axis.com
1031L: dev-etrax@axis.com
1032W: http://developer.axis.com
1033S: Maintained
1034
1035CRYPTO API
1036P: Herbert Xu
1037M: herbert@gondor.apana.org.au
1038P: David S. Miller
1039M: davem@davemloft.net
1040L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001041T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042S: Maintained
1043
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001044CS5535 Audio ALSA driver
1045P: Jaya Kumar
1046M: jayakumar.alsa@gmail.com
1047S: Maintained
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049CYBERPRO FB DRIVER
1050P: Russell King
1051M: rmk@arm.linux.org.uk
1052W: http://www.arm.linux.org.uk/
1053S: Maintained
1054
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001055CYBLAFB FRAMEBUFFER DRIVER
1056P: Knut Petersen
1057M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001058L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001059S: Maintained
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061CYCLADES 2X SYNC CARD DRIVER
1062P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001063M: acme@ghostprotocols.net
1064W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065S: Maintained
1066
1067CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001069S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001073S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075DAMA SLAVE for AX.25
1076P: Joerg Reuter
1077M: jreuter@yaina.de
1078W: http://yaina.de/jreuter/
1079W: http://www.qsl.net/dl1bke/
1080L: linux-hams@vger.kernel.org
1081S: Maintained
1082
1083DC395x SCSI driver
1084P: Oliver Neukum
1085M: oliver@neukum.name
1086P: Ali Akcaagac
1087M: aliakc@web.de
1088P: Jamie Lenehan
1089M: lenehan@twibble.org
1090W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001091L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092L: http://lists.twibble.org/mailman/listinfo/dc395x/
1093S: Maintained
1094
1095DC390/AM53C974 SCSI driver
1096P: Kurt Garloff
1097M: garloff@suse.de
1098W: http://www.garloff.de/kurt/linux/dc390/
1099P: Guennadi Liakhovetski
1100M: g.liakhovetski@gmx.de
1101S: Maintained
1102
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001103DCCP PROTOCOL
1104P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001105M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001106L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001107W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001108S: Maintained
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110DECnet NETWORK LAYER
1111P: Patrick Caulfield
1112M: patrick@tykepenguin.com
1113W: http://linux-decnet.sourceforge.net
1114L: linux-decnet-user@lists.sourceforge.net
1115S: Maintained
1116
1117DEFXX FDDI NETWORK DRIVER
1118P: Maciej W. Rozycki
1119M: macro@linux-mips.org
1120S: Maintained
1121
1122DELL LAPTOP SMM DRIVER
1123P: Massimo Dal Zotto
1124M: dz@debian.org
1125W: http://www.debian.org/~dz/i8k/
1126S: Maintained
1127
Doug Warzecha90563ec2005-09-06 15:17:15 -07001128DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1129P: Doug Warzecha
1130M: Douglas_Warzecha@dell.com
1131S: Maintained
1132
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001133DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134P: Alasdair Kergon
1135L: dm-devel@redhat.com
1136W: http://sources.redhat.com/dm
1137S: Maintained
1138
1139DEVICE NUMBER REGISTRY
1140P: Torben Mathiasen
1141M: device@lanana.org
1142W: http://lanana.org/docs/device-list/index.html
1143L: linux-kernel@vger.kernel.org
1144S: Maintained
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146DIGI INTL. EPCA DRIVER
1147P: Digi International, Inc
1148M: Eng.Linux@digi.com
1149L: Eng.Linux@digi.com
1150W: http://www.digi.com
1151S: Orphaned
1152
1153DIGI RIGHTSWITCH NETWORK DRIVER
1154P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001155L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156W: http://www.digi.com
1157S: Orphaned
1158
1159DIRECTORY NOTIFICATION
1160P: Stephen Rothwell
1161M: sfr@canb.auug.org.au
1162L: linux-kernel@vger.kernel.org
1163S: Supported
1164
1165DISK GEOMETRY AND PARTITION HANDLING
1166P: Andries Brouwer
1167M: aeb@cwi.nl
1168W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1169W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1170W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1171S: Maintained
1172
1173DISKQUOTA:
1174P: Jan Kara
1175M: jack@suse.cz
1176L: linux-kernel@vger.kernel.org
1177S: Maintained
1178
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001179DISTRIBUTED LOCK MANAGER
1180P: Patrick Caulfield
1181M: pcaulfie@redhat.com
1182P: David Teigland
1183M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001184L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001185W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001186T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1187T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001188S: Supported
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1191P: Tobias Ringstrom
1192M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001193L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194S: Maintained
1195
Martin Waitzba483d52005-06-17 13:20:59 -07001196DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001197P: Randy Dunlap
1198M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001199S: Maintained
1200
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001201DOCKING STATION DRIVER
1202P: Kristen Carlson Accardi
1203M: kristen.c.accardi@intel.com
1204L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001205S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207DOUBLETALK DRIVER
1208P: James R. Van Zandt
1209M: jrv@vanzandt.mv.com
1210L: blinux-list@redhat.com
1211S: Maintained
1212
1213DRIVER CORE, KOBJECTS, AND SYSFS
1214P: Greg Kroah-Hartman
1215M: gregkh@suse.de
1216L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001217T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218S: Supported
1219
1220DRM DRIVERS
1221P: David Airlie
1222M: airlied@linux.ie
1223L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001224T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225S: Maintained
1226
1227DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001228P: Francois Romieu
1229M: romieu@fr.zoreil.com
1230L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231S: Maintained
1232
1233DVB SUBSYSTEM AND DRIVERS
1234P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001235M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001237W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001238T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001239S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241EATA-DMA SCSI DRIVER
1242P: Michael Neuffer
1243L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1244S: Maintained
1245
1246EATA ISA/EISA/PCI SCSI DRIVER
1247P: Dario Ballabio
1248M: ballabio_dario@emc.com
1249L: linux-scsi@vger.kernel.org
1250S: Maintained
1251
1252EATA-PIO SCSI DRIVER
1253P: Michael Neuffer
1254M: mike@i-Connect.Net
1255L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1256S: Maintained
1257
1258EBTABLES
1259P: Bart De Schuymer
1260M: bart.de.schuymer@pandora.be
1261L: ebtables-user@lists.sourceforge.net
1262L: ebtables-devel@lists.sourceforge.net
1263W: http://ebtables.sourceforge.net/
1264S: Maintained
1265
Michael Halcrow237fead2006-10-04 02:16:22 -07001266ECRYPT FILE SYSTEM
1267P: Mike Halcrow, Phillip Hellewell
1268M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1269L: ecryptfs-devel@lists.sourceforge.net
1270W: http://ecryptfs.sourceforge.net/
1271S: Supported
1272
Alan Coxda9bb1d2006-01-18 17:44:13 -08001273EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001274P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001275M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001276L: bluesmoke-devel@lists.sourceforge.net
1277W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001278S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001279
1280EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001281P: Mark Gross
1282M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001283L: bluesmoke-devel@lists.sourceforge.net
1284W: bluesmoke.sourceforge.net
1285S: Maintained
1286
1287EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001288P: Doug Thompson
1289M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001290L: bluesmoke-devel@lists.sourceforge.net
1291W: bluesmoke.sourceforge.net
1292S: Maintained
1293
1294EDAC-R82600
1295P: Tim Small
1296M: tim@buttersideup.com
1297L: bluesmoke-devel@lists.sourceforge.net
1298W: bluesmoke.sourceforge.net
1299S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301EEPRO100 NETWORK DRIVER
1302P: Andrey V. Savochkin
1303M: saw@saw.sw.com.sg
1304S: Maintained
1305
Josh Triplett0bee8d22006-07-30 03:03:58 -07001306EFS FILESYSTEM
1307W: http://aeschi.ch.eu.org/efs/
1308S: Orphan
1309
Heiko J Schickfab97222006-09-22 15:22:22 -07001310EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1311P: Hoang-Nam Nguyen
1312M: hnguyen@de.ibm.com
1313P: Christoph Raisch
1314M: raisch@de.ibm.com
1315L: openib-general@openib.org
1316S: Supported
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318EMU10K1 SOUND DRIVER
1319P: James Courtier-Dutton
1320M: James@superbug.demon.co.uk
1321L: emu10k1-devel@lists.sourceforge.net
1322W: http://sourceforge.net/projects/emu10k1/
1323S: Maintained
1324
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001325EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001326P: James Smart
1327M: james.smart@emulex.com
1328L: linux-scsi@vger.kernel.org
1329W: http://sourceforge.net/projects/lpfcxxxx
1330S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332EPSON 1355 FRAMEBUFFER DRIVER
1333P: Christopher Hoover
1334M: ch@murgatroid.com, ch@hpl.hp.com
1335S: Maintained
1336
1337ETHEREXPRESS-16 NETWORK DRIVER
1338P: Philip Blundell
1339M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001340L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341S: Maintained
1342
1343ETHERNET BRIDGE
1344P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08001345M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07001346L: bridge@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347W: http://bridge.sourceforge.net/
1348S: Maintained
1349
1350ETHERTEAM 16I DRIVER
1351P: Mika Kuoppala
1352M: miku@iki.fi
1353S: Maintained
1354
1355EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001356L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357S: Maintained
1358
1359EXT3 FILE SYSTEM
1360P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001361M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001362L: linux-ext4@vger.kernel.org
1363S: Maintained
1364
1365EXT4 FILE SYSTEM
1366P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001367M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001368L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369S: Maintained
1370
Jean Delvaree53004e2006-01-09 23:26:14 +01001371F71805F HARDWARE MONITORING DRIVER
1372P: Jean Delvare
1373M: khali@linux-fr.org
1374L: lm-sensors@lm-sensors.org
1375S: Maintained
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377FARSYNC SYNCHRONOUS DRIVER
1378P: Kevin Curtis
1379M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380W: http://www.farsite.co.uk/
1381S: Supported
1382
Akinobu Mitac5408b82007-04-23 14:41:20 -07001383FAULT INJECTION SUPPORT
1384P: Akinobu Mita
1385M: akinobu.mita@gmail.com
1386S: Supported
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388FRAMEBUFFER LAYER
1389P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001390M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001391L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392W: http://linux-fbdev.sourceforge.net/
1393S: Maintained
1394
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001395FREESCALE SOC FS_ENET DRIVER
1396P: Pantelis Antoniou
1397M: pantelis.antoniou@gmail.com
1398P: Vitaly Bordug
1399M: vbordug@ru.mvista.com
1400L: linuxppc-embedded@ozlabs.org
1401L: netdev@vger.kernel.org
1402S: Maintained
1403
Li Yanga7205b32007-04-23 10:38:18 -07001404FREESCALE HIGHSPEED USB DEVICE DRIVER
1405P: Li Yang
1406M: leoli@freescale.com
1407L: linux-usb-devel@lists.sourceforge.net
1408L: linuxppc-embedded@ozlabs.org
1409S: Maintained
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411FILE LOCKING (flock() and fcntl()/lockf())
1412P: Matthew Wilcox
1413M: matthew@wil.cx
1414L: linux-fsdevel@vger.kernel.org
1415S: Maintained
1416
1417FILESYSTEMS (VFS and infrastructure)
1418P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001419M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420S: Maintained
1421
1422FIRMWARE LOADER (request_firmware)
1423L: linux-kernel@vger.kernel.org
1424S: Orphan
1425
1426FPU EMULATOR
1427P: Bill Metzenthen
1428M: billm@suburbia.net
1429W: http://suburbia.net/~billm/floating-point/emulator/
1430S: Maintained
1431
1432FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1433P: Mike McLagan
1434M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001435L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436S: Maintained
1437
1438FREEVXFS FILESYSTEM
1439P: Christoph Hellwig
1440M: hch@infradead.org
1441W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1442S: Maintained
1443
David Howells5ab7ffe2007-04-10 15:10:45 +01001444FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445P: David Howells
1446M: dhowells@redhat.com
1447S: Maintained
1448
Miklos Szeredi04578f12005-09-09 13:10:22 -07001449FUSE: FILESYSTEM IN USERSPACE
1450P: Miklos Szeredi
1451M: miklos@szeredi.hu
1452L: fuse-devel@lists.sourceforge.net
1453W: http://fuse.sourceforge.net/
1454S: Maintained
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1457P: Rik Faith
1458M: faith@cs.unc.edu
1459L: linux-scsi@vger.kernel.org
1460S: Odd fixes (e.g., new signatures)
1461
1462GDT SCSI DISK ARRAY CONTROLLER DRIVER
1463P: Achim Leubner
1464M: achim_leubner@adaptec.com
1465L: linux-scsi@vger.kernel.org
1466W: http://www.icp-vortex.com/
1467S: Supported
1468
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02001469GENERIC GPIO I2C DRIVER
1470P: Haavard Skinnemoen
1471M: hskinnemoen@atmel.com
1472S: Supported
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1475P: Krzysztof Halasa
1476M: khc@pm.waw.pl
1477W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1478S: Maintained
1479
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001480GFS2 FILE SYSTEM
1481P: Steven Whitehouse
1482M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001483L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001484W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001485T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1486T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001487S: Supported
1488
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001489GIGASET ISDN DRIVERS
1490P: Hansjoerg Lipp
1491M: hjlipp@web.de
1492P: Tilman Schmidt
1493M: tilman@imap.cc
1494L: gigaset307x-common@lists.sourceforge.net
1495W: http://gigaset307x.sourceforge.net/
1496S: Maintained
1497
Jean Delvare5b543962005-08-15 19:51:02 +02001498HARDWARE MONITORING
1499P: Jean Delvare
1500M: khali@linux-fr.org
1501L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001502W: http://www.lm-sensors.org/
1503T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001504S: Maintained
1505
Michael Buesch844dd052006-06-26 00:24:59 -07001506HARDWARE RANDOM NUMBER GENERATOR CORE
1507P: Michael Buesch
1508M: mb@bu3sch.de
1509S: Maintained
1510
Robert Love860e1d62005-08-31 23:57:59 -04001511HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1512P: Robert Love
1513M: rlove@rlove.org
1514M: linux-kernel@vger.kernel.org
1515W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1516S: Maintained
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518HARMONY SOUND DRIVER
1519P: Kyle McMartin
1520M: kyle@parisc-linux.org
1521W: http://www.parisc-linux.org/~kyle/harmony/
1522L: parisc-linux@lists.parisc-linux.org
1523S: Maintained
1524
1525HAYES ESP SERIAL DRIVER
1526P: Andrew J. Robinson
1527M: arobinso@nyx.net
1528L: linux-kernel@vger.kernel.org
1529W: http://www.nyx.net/~arobinso
1530S: Maintained
1531
1532HFS FILESYSTEM
1533P: Roman Zippel
1534M: zippel@linux-m68k.org
1535L: linux-kernel@vger.kernel.org
1536S: Maintained
1537
1538HGA FRAMEBUFFER DRIVER
1539P: Ferenc Bakonyi
1540M: fero@drama.obuda.kando.hu
1541L: linux-nvidia@lists.surfsouth.com
1542W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1543S: Maintained
1544
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001545HID CORE LAYER
1546P: Jiri Kosina
1547M: jkosina@suse.cz
1548L: linux-input@atrey.karlin.mff.cuni.cz
Jiri Kosinaa4dff392007-02-27 17:40:09 +01001549T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001550S: Maintained
1551
Ingo Molnar38bed542007-02-22 09:09:34 +01001552HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
1553P: Thomas Gleixner
1554M: tglx@linutronix.de
1555L: linux-kernel@vger.kernel.org
1556S: Maintained
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558HIGH-SPEED SCC DRIVER FOR AX.25
1559P: Klaus Kudielka
1560M: klaus.kudielka@ieee.org
1561L: linux-hams@vger.kernel.org
1562W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1563S: Maintained
1564
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001565HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1566P: HighPoint Linux Team
1567M: linux@highpoint-tech.com
1568W: http://www.highpoint-tech.com
1569S: Supported
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571HIPPI
1572P: Jes Sorensen
1573M: jes@trained-monkey.org
1574L: linux-hippi@sunsite.dk
1575S: Maintained
1576
1577HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1578P: Chirag Kantharia
1579M: chirag.kantharia@hp.com
1580L: iss_storagedev@hp.com
1581S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583HEWLETT-PACKARD SMART2 RAID DRIVER
1584P: Chirag Kantharia
1585M: chirag.kantharia@hp.com
1586L: iss_storagedev@hp.com
1587S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1590P: Mike Miller
1591M: mike.miller@hp.com
1592L: iss_storagedev@hp.com
1593S: Supported
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001594
Jouni Malinenff1d2762005-05-12 22:54:16 -04001595HOST AP DRIVER
1596P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07001597M: j@w1.fi
1598L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07001599L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04001600W: http://hostap.epitest.fi/
1601S: Maintained
1602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1604P: Jaroslav Kysela
1605M: perex@suse.cz
1606S: Maintained
1607
Bob Piccob9b03322005-11-07 00:59:19 -08001608HPET: High Precision Event Timers driver (hpet.c)
1609P: Clemens Ladisch
1610M: clemens@ladisch.de
1611S: Maintained
1612
1613HPET: i386
1614P: Venkatesh Pallipadi (Venki)
1615M: venkatesh.pallipadi@intel.com
1616S: Maintained
1617
1618HPET: x86_64
1619P: Andi Kleen and Vojtech Pavlik
1620M: ak@muc.de and vojtech@suse.cz
1621S: Maintained
1622
1623HPET: ACPI hpet.c
1624P: Bob Picco
1625M: bob.picco@hp.com
1626S: Maintained
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628HPFS FILESYSTEM
1629P: Mikulas Patocka
1630M: mikulas@artax.karlin.mff.cuni.cz
1631W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1632S: Maintained
1633
1634HUGETLB FILESYSTEM
1635P: William Irwin
1636M: wli@holomorphy.com
1637S: Maintained
1638
Jean Delvare5b543962005-08-15 19:51:02 +02001639I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640P: Jean Delvare
1641M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001642L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001643T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644S: Maintained
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646i386 BOOT CODE
1647P: Riley H. Williams
1648M: Riley@Williams.Name
1649L: Linux-Kernel@vger.kernel.org
1650S: Maintained
1651
1652i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1653P: Dave Jones
1654M: davej@codemonkey.org.uk
1655P: H. Peter Anvin
1656M: hpa@zytor.com
1657S: Maintained
1658
1659i810 TCO TIMER WATCHDOG
1660P: Nils Faerber
1661M: nils@kernelconcepts.de
1662W: http://www.kernelconcepts.de/
1663S: Maintained
1664
1665IA64 (Itanium) PLATFORM
1666P: Tony Luck
1667M: tony.luck@intel.com
1668L: linux-ia64@vger.kernel.org
1669W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001670T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671S: Maintained
1672
1673SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001674P: Jes Sorensen
1675M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676L: linux-altix@sgi.com
1677L: linux-ia64@vger.kernel.org
1678W: http://www.sgi.com/altix
1679S: Maintained
1680
1681IBM MCA SCSI SUBSYSTEM DRIVER
1682P: Michael Lang
1683M: langa2@kph.uni-mainz.de
1684W: http://www.uni-mainz.de/~langm000/linux.html
1685S: Maintained
1686
1687IBM Power Linux RAID adapter
1688P: Brian King
1689M: brking@us.ibm.com
1690S: Supported
1691
1692IBM ServeRAID RAID DRIVER
1693P: Jack Hammer
1694P: Dave Jeffery
1695M: ipslinux@adaptec.com
1696W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001697S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001699IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001701M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001703T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704S: Maintained
1705
1706IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001707P: Alan Cox
1708M: alan@lxorguk.ukuu.org.uk
1709L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710S: Maintained
1711
1712IDE/ATAPI FLOPPY DRIVERS
1713P: Paul Bristow
1714M: Paul Bristow <paul@paulbristow.net>
1715W: http://paulbristow.net/linux/idefloppy.html
1716L: linux-kernel@vger.kernel.org
1717S: Maintained
1718
1719IDE/ATAPI TAPE DRIVERS
1720P: Gadi Oxman
1721M: Gadi Oxman <gadio@netvision.net.il>
1722L: linux-kernel@vger.kernel.org
1723S: Maintained
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725IEEE 1394 SUBSYSTEM
1726P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07001727M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02001728P: Stefan Richter
1729M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730L: linux1394-devel@lists.sourceforge.net
1731W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001732T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733S: Maintained
1734
Stefan Richterf51a5a92007-04-23 14:41:10 -07001735IEEE 1394 RAW I/O DRIVER (raw1394)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736P: Dan Dennedy
1737M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07001738P: Stefan Richter
1739M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001741S: Maintained
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743IMS TWINTURBO FRAMEBUFFER DRIVER
1744P: Paul Mundt
1745M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001746L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747S: Maintained
1748
1749INFINIBAND SUBSYSTEM
1750P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001751M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752P: Sean Hefty
1753M: mshefty@ichips.intel.com
1754P: Hal Rosenstock
1755M: halr@voltaire.com
1756L: openib-general@openib.org
1757W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001758T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759S: Supported
1760
1761INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001762P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001763M: dmitry.torokhov@gmail.com
1764M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765L: linux-input@atrey.karlin.mff.cuni.cz
1766L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001767T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768S: Maintained
1769
Robert Lovec9f04f52005-07-15 12:21:07 -04001770INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001771P: John McCutchan
1772M: ttb@tentacle.dhs.org
1773P: Robert Love
1774M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001775L: linux-kernel@vger.kernel.org
1776S: Maintained
1777
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001778INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001779P: Sylvain Meyer
1780M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001781L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001782S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001785P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001786M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001787L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001788S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1791P: Ingo Molnar
1792M: mingo@redhat.com
1793S: Maintained
1794
1795INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1796P: Jeff Garzik
1797M: jgarzik@pobox.com
1798W: http://sourceforge.net/projects/gkernel/
1799S: Maintained
1800
1801INTEL IA32 MICROCODE UPDATE SUPPORT
1802P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001803M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804S: Maintained
1805
Michael Buesch844dd052006-06-26 00:24:59 -07001806INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1807P: Deepak Saxena
1808M: dsaxena@plexity.net
1809S: Maintained
1810
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001811INTEL IXP2000 ETHERNET DRIVER
1812P: Lennert Buytenhek
1813M: kernel@wantstofly.org
1814L: netdev@vger.kernel.org
1815S: Maintained
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817INTEL PRO/100 ETHERNET SUPPORT
1818P: John Ronciak
1819M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820P: Jesse Brandeburg
1821M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001822P: Jeff Kirsher
1823M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001824P: Auke Kok
1825M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001826L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827W: http://sourceforge.net/projects/e1000/
1828S: Supported
1829
1830INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1831P: Jeb Cramer
1832M: cramerj@intel.com
1833P: John Ronciak
1834M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001835P: Jesse Brandeburg
1836M: jesse.brandeburg@intel.com
1837P: Jeff Kirsher
1838M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001839P: Auke Kok
1840M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001841L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842W: http://sourceforge.net/projects/e1000/
1843S: Supported
1844
1845INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001846P: Jeff Kirsher
1847M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848P: Ayyappan Veeraiyan
1849M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850P: John Ronciak
1851M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001852P: Jesse Brandeburg
1853M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001854P: Auke Kok
1855M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001856L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857W: http://sourceforge.net/projects/e1000/
1858S: Supported
1859
James Ketrenos826d2ab2005-11-07 18:56:59 -06001860INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1861P: Yi Zhu
1862M: yi.zhu@intel.com
1863P: James Ketrenos
1864M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001865L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001866L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001867L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1868W: http://ipw2100.sourceforge.net
1869S: Supported
1870
1871INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1872P: Yi Zhu
1873M: yi.zhu@intel.com
1874P: James Ketrenos
1875M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001876L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001877L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001878L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1879W: http://ipw2200.sourceforge.net
1880S: Supported
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882IOC3 DRIVER
1883P: Ralf Baechle
1884M: ralf@linux-mips.org
1885L: linux-mips@linux-mips.org
1886S: Maintained
1887
1888IP MASQUERADING:
1889P: Juanjo Ciarlante
1890M: jjciarla@raiz.uncu.edu.ar
1891S: Maintained
1892
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001893IPATH DRIVER:
1894P: Bryan O'Sullivan
1895M: support@pathscale.com
1896L: openib-general@openib.org
1897S: Supported
1898
Corey Minyard4409ebe2006-04-20 02:43:12 -07001899IPMI SUBSYSTEM
1900P: Corey Minyard
1901M: minyard@acm.org
1902L: openipmi-developer@lists.sourceforge.net
1903W: http://openipmi.sourceforge.net/
1904S: Supported
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906IPX NETWORK LAYER
1907P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001908M: acme@ghostprotocols.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07001909L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910S: Maintained
1911
1912IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001913P: Samuel Ortiz
1914M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001915L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001917S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919ISAPNP
1920P: Jaroslav Kysela
1921M: perex@suse.cz
1922S: Maintained
1923
1924ISDN SUBSYSTEM
1925P: Karsten Keil
1926M: kkeil@suse.de
1927P: Kai Germaschewski
1928M: kai.germaschewski@gmx.de
1929L: isdn4linux@listserv.isdn4linux.de
1930W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001931T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932S: Maintained
1933
1934ISDN SUBSYSTEM (Eicon active card driver)
1935P: Armin Schindler
1936M: mac@melware.de
1937L: isdn4linux@listserv.isdn4linux.de
1938W: http://www.melware.de
1939S: Maintained
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1942P: David Woodhouse
1943M: dwmw2@infradead.org
1944L: jffs-dev@axis.com
1945W: http://sources.redhat.com/jffs2/
1946S: Maintained
1947
1948JFS FILESYSTEM
1949P: Dave Kleikamp
1950M: shaggy@austin.ibm.com
1951L: jfs-discussion@lists.sourceforge.net
1952W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001953T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954S: Supported
1955
Josh Triplettde456d32006-07-30 03:04:00 -07001956JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001957P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001958M: sct@redhat.com, akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001959L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001960S: Maintained
1961
Rudolf Marek4660cb32006-10-08 22:01:26 +02001962K8TEMP HARDWARE MONITORING DRIVER
1963P: Rudolf Marek
1964M: r.marek@assembler.cz
1965L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966S: Maintained
1967
1968KCONFIG
1969P: Roman Zippel
1970M: zippel@linux-m68k.org
1971L: kbuild-devel@lists.sourceforge.net
1972S: Maintained
1973
Vivek Goyalea6c2082006-05-20 14:59:55 -07001974KDUMP
1975P: Vivek Goyal
1976M: vgoyal@in.ibm.com
1977P: Haren Myneni
1978M: hbabu@us.ibm.com
David Brownellf318a632007-04-23 14:41:06 -07001979L: fastboot@lists.linux-foundation.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07001980L: linux-kernel@vger.kernel.org
1981W: http://lse.sourceforge.net/kdump/
1982S: Maintained
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984KERNEL AUTOMOUNTER (AUTOFS)
1985P: H. Peter Anvin
1986M: hpa@zytor.com
1987L: autofs@linux.kernel.org
1988S: Odd Fixes
1989
1990KERNEL AUTOMOUNTER v4 (AUTOFS4)
1991P: Ian Kent
1992M: raven@themaw.net
1993L: autofs@linux.kernel.org
1994S: Maintained
1995
1996KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1997P: Kai Germaschewski
1998M: kai@germaschewski.name
1999P: Sam Ravnborg
2000M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002001T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002002S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004KERNEL JANITORS
2005P: Several
David Brownellf318a632007-04-23 14:41:06 -07002006L: kernel-janitors@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008S: Maintained
2009
2010KERNEL NFSD
2011P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08002012M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013L: nfs@lists.sourceforge.net
2014W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08002015S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Avi Kivity426d62e2006-12-13 00:34:03 -08002017KERNEL VIRTUAL MACHINE (KVM)
2018P: Avi Kivity
2019M: avi@qumranet.com
2020L: kvm-devel@lists.sourceforge.net
2021W: kvm.sourceforge.net
2022S: Supported
2023
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002024KEXEC
2025P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002026M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002027W: http://www.xmission.com/~ebiederm/files/kexec/
2028L: linux-kernel@vger.kernel.org
David Brownellf318a632007-04-23 14:41:06 -07002029L: fastboot@lists.linux-foundation.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002030S: Maintained
2031
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07002032KPROBES
2033P: Prasanna S Panchamukhi
2034M: prasanna@in.ibm.com
2035P: Ananth N Mavinakayanahalli
2036M: ananth@in.ibm.com
2037P: Anil S Keshavamurthy
2038M: anil.s.keshavamurthy@intel.com
2039P: David S. Miller
2040M: davem@davemloft.net
2041L: linux-kernel@vger.kernel.org
2042S: Maintained
2043
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002044KS0108 LCD CONTROLLER DRIVER
2045P: Miguel Ojeda Sandonis
2046M: maxextreme@gmail.com
2047L: linux-kernel@vger.kernel.org
2048S: Maintained
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002052S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
2054LASI 53c700 driver for PARISC
2055P: James E.J. Bottomley
2056M: James.Bottomley@HansenPartnership.com
2057L: linux-scsi@vger.kernel.org
2058S: Maintained
2059
Richard Purdie263de9b2006-05-15 09:44:16 -07002060LED SUBSYSTEM
2061P: Richard Purdie
2062M: rpurdie@rpsys.net
2063S: Maintained
2064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065LEGO USB Tower driver
2066P: Juergen Stuber
2067M: starblue@users.sourceforge.net
2068L: legousb-devel@lists.sourceforge.net
2069W: http://legousb.sourceforge.net/
2070S: Maintained
2071
2072LINUX FOR IBM pSERIES (RS/6000)
2073P: Paul Mackerras
2074M: paulus@au.ibm.com
2075W: http://www.ibm.com/linux/ltc/projects/ppc
2076S: Supported
2077
2078LINUX FOR NCR VOYAGER
2079P: James Bottomley
2080M: James.Bottomley@HansenPartnership.com
2081W: http://www.hansenpartnership.com/voyager
2082S: Maintained
2083
2084LINUX FOR POWERPC
2085P: Paul Mackerras
2086M: paulus@samba.org
2087W: http://www.penguinppc.org/
2088L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002089T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090S: Supported
2091
2092LINUX FOR POWER MACINTOSH
2093P: Benjamin Herrenschmidt
2094M: benh@kernel.crashing.org
2095W: http://www.penguinppc.org/
2096L: linuxppc-dev@ozlabs.org
2097S: Maintained
2098
2099LINUX FOR POWERPC EMBEDDED MPC52XX
2100P: Sylvain Munaut
2101M: tnt@246tNt.com
2102W: http://www.246tNt.com/mpc52xx/
2103W: http://www.penguinppc.org/
2104L: linuxppc-dev@ozlabs.org
2105L: linuxppc-embedded@ozlabs.org
2106S: Maintained
2107
2108LINUX FOR POWERPC EMBEDDED PPC4XX
2109P: Matt Porter
2110M: mporter@kernel.crashing.org
2111W: http://www.penguinppc.org/
2112L: linuxppc-embedded@ozlabs.org
2113S: Maintained
2114
Tom Rinie93adf12005-07-26 12:49:53 -07002115LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116P: Tom Rini
2117M: trini@kernel.crashing.org
2118W: http://www.penguinppc.org/
2119L: linuxppc-embedded@ozlabs.org
2120S: Maintained
2121
Tom Rinie93adf12005-07-26 12:49:53 -07002122LINUX FOR POWERPC EMBEDDED PPC8XX
2123P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002124M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002125W: http://www.penguinppc.org/
2126L: linuxppc-embedded@ozlabs.org
2127S: Maintained
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002130P: Kumar Gala
2131M: galak@kernel.crashing.org
2132W: http://www.penguinppc.org/
2133L: linuxppc-embedded@ozlabs.org
2134S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Olof Johanssonab06ff32006-09-06 14:44:54 -05002136LINUX FOR POWERPC PA SEMI PWRFICIENT
2137P: Olof Johansson
2138M: olof@lixom.net
2139W: http://www.pasemi.com/
2140L: linuxppc-dev@ozlabs.org
2141S: Supported
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143LLC (802.2)
2144P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002145M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146S: Maintained
2147
2148LINUX FOR 64BIT POWERPC
2149P: Paul Mackerras
2150M: paulus@samba.org
2151M: paulus@au.ibm.com
2152P: Anton Blanchard
2153M: anton@samba.org
2154M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002155W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002156L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157S: Supported
2158
2159LINUX SECURITY MODULE (LSM) FRAMEWORK
2160P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002161M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002162L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002164T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165S: Supported
2166
2167LM83 HARDWARE MONITOR DRIVER
2168P: Jean Delvare
2169M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002170L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171S: Maintained
2172
2173LM90 HARDWARE MONITOR DRIVER
2174P: Jean Delvare
2175M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002176L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177S: Maintained
2178
2179LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2180P: Richard Russon (FlatCap)
2181M: ldm@flatcap.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002182L: ldm-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183W: http://ldm.sourceforge.net
2184S: Maintained
2185
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002186LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2187P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002188M: Eric.Moore@lsi.com
2189M: support@lsi.com
2190L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002191L: linux-scsi@vger.kernel.org
2192W: http://www.lsilogic.com/support
2193S: Supported
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2196P: Matthew Wilcox
2197M: matthew@wil.cx
2198L: linux-scsi@vger.kernel.org
2199S: Maintained
2200
2201M68K ARCHITECTURE
2202P: Geert Uytterhoeven
2203M: geert@linux-m68k.org
2204P: Roman Zippel
2205M: zippel@linux-m68k.org
2206L: linux-m68k@lists.linux-m68k.org
2207W: http://www.linux-m68k.org/
2208W: http://linux-m68k-cvs.ubb.ca/
2209S: Maintained
2210
2211M68K ON APPLE MACINTOSH
2212P: Joshua Thompson
2213M: funaho@jurai.org
2214W: http://www.mac.linux-m68k.org/
2215L: linux-mac68k@mac.linux-m68k.org
2216S: Maintained
2217
2218M68K ON HP9000/300
2219P: Philip Blundell
2220M: philb@gnu.org
2221W: http://www.tazenda.demon.co.uk/phil/linux-hp
2222S: Maintained
2223
2224MARVELL YUKON / SYSKONNECT DRIVER
2225P: Mirko Lindner
2226M: mlindner@syskonnect.de
2227P: Ralph Roesler
2228M: rroesler@syskonnect.de
2229W: http://www.syskonnect.com
2230S: Supported
2231
Michael Kerriskfaf16682005-07-31 22:34:47 -07002232MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002233P: Michael Kerrisk
2234M: mtk-manpages@gmx.net
2235W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2236S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002237
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002238MARVELL MV643XX ETHERNET DRIVER
2239P: Dale Farnsworth
2240M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002242M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002243L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002244S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
2246MATROX FRAMEBUFFER DRIVER
2247P: Petr Vandrovec
2248M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002249L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250S: Maintained
2251
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002252MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002253P: Neela Syam Kolli
2254M: Neela.Kolli@engenio.com
2255S: linux-scsi@vger.kernel.org
2256W: http://megaraid.lsilogic.com
2257S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002258
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002259MEMORY MANAGEMENT
2260L: linux-mm@kvack.org
2261L: linux-kernel@vger.kernel.org
2262W: http://www.linux-mm.org
2263S: Maintained
2264
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002265MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266P: David Woodhouse
2267M: dwmw2@infradead.org
2268W: http://www.linux-mtd.infradead.org/
2269L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002270T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271S: Maintained
2272
Artem Bityutskiy48576402007-02-13 17:11:10 +02002273UNSORTED BLOCK IMAGES (UBI)
2274P: Artem Bityutskiy
2275M: dedekind@infradead.org
2276W: http://www.linux-mtd.infradead.org/
2277L: linux-mtd@lists.infradead.org
2278T: git git://git.infradead.org/ubi-2.6.git
2279S: Maintained
2280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281MICROTEK X6 SCANNER
2282P: Oliver Neukum
2283M: oliver@neukum.name
2284S: Maintained
2285
2286MIPS
2287P: Ralf Baechle
2288M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002289W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002291T: git www.linux-mips.org:/pub/scm/linux.git
2292S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
2294MISCELLANEOUS MCA-SUPPORT
2295P: James Bottomley
2296M: jejb@steeleye.com
2297L: linux-kernel@vger.kernel.org
2298S: Maintained
2299
2300MODULE SUPPORT
2301P: Rusty Russell
2302M: rusty@rustcorp.com.au
2303L: linux-kernel@vger.kernel.org
2304S: Maintained
2305
2306MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2307P: Stelian Pop
2308M: stelian@popies.net
2309W: http://popies.net/meye/
2310S: Maintained
2311
2312MOUSE AND MISC DEVICES [GENERAL]
2313P: Alessandro Rubini
2314M: rubini@ipvvis.unipv.it
2315L: linux-kernel@vger.kernel.org
2316S: Maintained
2317
Jiri Slabyd7354102006-12-08 02:38:35 -08002318MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2319P: Jiri Slaby
2320M: jirislaby@gmail.com
2321L: linux-kernel@vger.kernel.org
2322S: Maintained
2323
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002324MSI LAPTOP SUPPORT
2325P: Lennart Poettering
2326M: mzxreary@0pointer.de
2327L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2328W: http://0pointer.de/lennart/tchibo.html
2329S: Maintained
2330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331MTRR AND SIMILAR SUPPORT [i386]
2332P: Richard Gooch
2333M: rgooch@atnf.csiro.au
2334L: linux-kernel@vger.kernel.org
2335W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2336S: Maintained
2337
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002338MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2339P: Pierre Ossman
2340M: drzeus-mmc@drzeus.cx
2341L: linux-kernel@vger.kernel.org
2342S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344MULTISOUND SOUND DRIVER
2345P: Andrew Veliath
2346M: andrewtv@usa.net
2347S: Maintained
2348
Jiri Slabyd7354102006-12-08 02:38:35 -08002349MULTITECH MULTIPORT CARD (ISICOM)
2350P: Jiri Slaby
2351M: jirislaby@gmail.com
2352L: linux-kernel@vger.kernel.org
2353S: Maintained
2354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355NATSEMI ETHERNET DRIVER (DP8381x)
2356P: Tim Hockin
2357M: thockin@hockin.org
2358S: Maintained
2359
2360NCP FILESYSTEM
2361P: Petr Vandrovec
2362M: vandrove@vc.cvut.cz
2363L: linware@sh.cvut.cz
2364S: Maintained
2365
2366NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2367P: James E.J. Bottomley
2368M: James.Bottomley@HansenPartnership.com
2369L: linux-scsi@vger.kernel.org
2370S: Maintained
2371
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002372NETEM NETWORK EMULATOR
2373P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002374M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002375L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002376S: Maintained
2377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378NETFILTER/IPTABLES/IPCHAINS
2379P: Rusty Russell
2380P: Marc Boucher
2381P: James Morris
2382P: Harald Welte
2383P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002384P: Patrick McHardy
2385M: kaber@trash.net
2386L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002387L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002388L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389W: http://www.netfilter.org/
2390W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391S: Supported
2392
Paul Moore4cc67732006-09-25 15:57:13 -07002393NETLABEL
2394P: Paul Moore
2395M: paul.moore@hp.com
2396W: http://netlabel.sf.net
2397L: netdev@vger.kernel.org
2398S: Supported
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400NETROM NETWORK LAYER
2401P: Ralf Baechle
2402M: ralf@linux-mips.org
2403L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002404W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405S: Maintained
2406
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002407NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408P: Paul Clements
2409M: Paul.Clements@steeleye.com
2410S: Maintained
2411
2412NETWORK DEVICE DRIVERS
2413P: Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002414M: akpm@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415P: Jeff Garzik
2416M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002417L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002418T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419S: Maintained
2420
2421NETWORKING [GENERAL]
2422P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002423M: netdev@vger.kernel.org
2424L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002425W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426S: Maintained
2427
2428NETWORKING [IPv4/IPv6]
2429P: David S. Miller
2430M: davem@davemloft.net
2431P: Alexey Kuznetsov
2432M: kuznet@ms2.inr.ac.ru
2433P: Pekka Savola (ipv6)
2434M: pekkas@netcore.fi
2435P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002436M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437P: Hideaki YOSHIFUJI
2438M: yoshfuji@linux-ipv6.org
2439P: Patrick McHardy
2440M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002441L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002442T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443S: Maintained
2444
John W. Linville29f8f632006-01-18 14:52:48 -08002445NETWORKING [WIRELESS]
2446P: John W. Linville
2447M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002448L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002449T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2450S: Maintained
2451
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002452NETXEN (1/10) GbE SUPPORT
2453P: Amit S. Kale
2454M: amitkale@netxen.com
2455L: netdev@vger.kernel.org
2456W: http://www.netxen.com
2457S: Supported
2458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459IPVS
2460P: Wensong Zhang
2461M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002462P: Simon Horman
2463M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464P: Julian Anastasov
2465M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002466L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467S: Maintained
2468
2469NFS CLIENT
2470P: Trond Myklebust
2471M: trond.myklebust@fys.uio.no
2472L: linux-kernel@vger.kernel.org
2473S: Maintained
2474
2475NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002476P: Jan-Pascal van Best
2477M: janpascal@vanbest.org
2478P: Andreas Mohr
2479M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002480L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481S: Maintained
2482
2483NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2484P: YOKOTA Hiroshi
2485M: yokota@netlab.is.tsukuba.ac.jp
2486W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2487S: Maintained
2488
2489NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2490P: GOTO Masanori
2491M: gotom@debian.or.jp
2492P: YOKOTA Hiroshi
2493M: yokota@netlab.is.tsukuba.ac.jp
2494W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2495S: Maintained
2496
2497NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2498P: Eberhard Moenkeberg
2499M: emoenke@gwdg.de
2500L: linux-kernel@vger.kernel.org
2501S: Maintained
2502
2503NTFS FILESYSTEM
2504P: Anton Altaparmakov
2505M: aia21@cantab.net
2506L: linux-ntfs-dev@lists.sourceforge.net
2507L: linux-kernel@vger.kernel.org
2508W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002509T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510S: Maintained
2511
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002512NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002513P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002514M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002515L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002516S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Ramkrishna Vepa3ef34b82007-03-30 18:42:27 -07002518NETERION (S2IO) Xframe 10GbE DRIVER
2519P: Ramkrishna Vepa
2520M: ram.vepa@neterion.com
2521P: Rastapur Santosh
2522M: santosh.rastapur@neterion.com
2523P: Sivakumar Subramani
2524M: sivakumar.subramani@neterion.com
2525P: Sreenivasa Honnur
2526M: sreenivasa.honnur@neterion.com
2527L: netdev@vger.kernel.org
2528W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/TitleIndex?anonymous
2529S: Supported
2530
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002531OPENCORES I2C BUS DRIVER
2532P: Peter Korsgaard
2533M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002534L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002535S: Maintained
2536
Mark Fashehccd979b2005-12-15 14:31:24 -08002537ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2538P: Mark Fasheh
2539M: mark.fasheh@oracle.com
2540P: Kurt Hackel
2541M: kurt.hackel@oracle.com
2542L: ocfs2-devel@oss.oracle.com
2543W: http://oss.oracle.com/projects/ocfs2/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002544S: Supported
Mark Fashehccd979b2005-12-15 14:31:24 -08002545
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546OLYMPIC NETWORK DRIVER
2547P: Peter De Shrijver
2548M: p2@ace.ulyssis.student.kuleuven.ac.be
2549P: Mike Phillips
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002550M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002551L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552L: linux-tr@linuxtr.net
2553W: http://www.linuxtr.net
2554S: Maintained
2555
Harald Weltec1986ee2005-11-13 16:06:29 -08002556OMNIKEY CARDMAN 4000 DRIVER
2557P: Harald Welte
2558M: laforge@gnumonks.org
2559S: Maintained
2560
Harald Welte77c44ab2005-11-13 16:06:26 -08002561OMNIKEY CARDMAN 4040 DRIVER
2562P: Harald Welte
2563M: laforge@gnumonks.org
2564S: Maintained
2565
Jonathan Corbet77d51402007-03-22 19:44:17 -03002566OMNIVISION OV7670 SENSOR DRIVER
2567P: Jonathan Corbet
2568M: corbet@lwn.net
2569L: video4linux-list@redhat.com
2570S: Maintained
2571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572ONSTREAM SCSI TAPE DRIVER
2573P: Willem Riede
2574M: osst@riede.org
2575L: osst-users@lists.sourceforge.net
2576L: linux-scsi@vger.kernel.org
2577S: Maintained
2578
2579OPL3-SA2, SA3, and SAx DRIVER
2580P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002581M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582L: linux-sound@vger.kernel.org
2583S: Maintained
2584
2585OPROFILE
2586P: Philippe Elie
2587M: phil.el@wanadoo.fr
2588L: oprofile-list@lists.sf.net
2589S: Maintained
2590
2591ORINOCO DRIVER
2592P: Pavel Roskin
2593M: proski@gnu.org
2594P: David Gibson
2595M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07002596L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07002597L: orinoco-users@lists.sourceforge.net
2598L: orinoco-devel@lists.sourceforge.net
2599W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600S: Maintained
2601
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002602PA SEMI ETHERNET DRIVER
2603P: Olof Johansson
2604M: olof@lixom.net
2605L: netdev@vger.kernel.org
2606S: Maintained
2607
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002608PA SEMI SMBUS DRIVER
2609P: Olof Johansson
2610M: olof@lixom.net
2611L: i2c@lm-sensors.org
2612S: Maintained
2613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614PARALLEL PORT SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615L: linux-parport@lists.infradead.org
David Brownell5fdc2ab2007-03-05 00:30:13 -08002616S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
2618PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2619P: Tim Waugh
2620M: tim@cyberelk.net
2621L: linux-parport@lists.infradead.org
2622W: http://www.torque.net/linux-pp.html
2623S: Maintained
2624
2625PARISC ARCHITECTURE
2626P: Matthew Wilcox
2627M: matthew@wil.cx
2628P: Grant Grundler
2629M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002630P: Kyle McMartin
2631M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632L: parisc-linux@parisc-linux.org
2633W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002634T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2635T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636S: Maintained
2637
Jim Cromie1662d322006-10-06 00:43:59 -07002638PC87360 HARDWARE MONITORING DRIVER
2639P: Jim Cromie
2640M: jim.cromie@gmail.com
2641L: lm-sensors@lm-sensors.org
2642S: Maintained
2643
2644PC8736x GPIO DRIVER
2645P: Jim Cromie
2646M: jim.cromie@gmail.com
2647S: Maintained
2648
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002649PCI ERROR RECOVERY
2650P: Linas Vepstas
2651M: linas@austin.ibm.com
2652L: linux-kernel@vger.kernel.org
2653L: linux-pci@atrey.karlin.mff.cuni.cz
2654S: Supported
2655
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2657P: Thomas Sailer
2658M: sailer@ife.ee.ethz.ch
2659L: linux-sound@vger.kernel.org
2660W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2661S: Maintained
2662
2663PCI SUBSYSTEM
2664P: Greg Kroah-Hartman
2665M: gregkh@suse.de
2666L: linux-kernel@vger.kernel.org
2667L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002668T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669S: Supported
2670
2671PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002672P: Kristen Carlson Accardi
2673M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674S: Supported
2675
2676PCI HOTPLUG COMPAQ DRIVER
2677P: Greg Kroah-Hartman
2678M: greg@kroah.com
2679S: Maintained
2680
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002681PCIE HOTPLUG DRIVER
2682P: Kristen Carlson Accardi
2683M: kristen.c.accardi@intel.com
2684L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002685S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002688P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002689L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002691T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002692S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
2694PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002695P: Don Fry
2696M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002697L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698S: Maintained
2699
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002700PER-TASK DELAY ACCOUNTING
2701P: Shailabh Nagar
2702M: nagar@watson.ibm.com
2703L: linux-kernel@vger.kernel.org
2704S: Maintained
2705
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002706PERSONALITY HANDLING
2707P: Christoph Hellwig
2708M: hch@infradead.org
2709L: linux-abi-devel@lists.sourceforge.net
2710S: Maintained
2711
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712PHRAM MTD DRIVER
2713P: Jörn Engel
2714M: joern@wh.fh-wedel.de
2715L: linux-mtd@lists.infradead.org
2716S: Maintained
2717
Peter Osterlund249a6772005-09-27 21:45:30 -07002718PKTCDVD DRIVER
2719P: Peter Osterlund
2720M: petero2@telia.com
2721L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002722S: Maintained
2723
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724POSIX CLOCKS and TIMERS
2725P: George Anzinger
2726M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002727L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728S: Supported
2729
Eugene Surovegin24682972005-10-14 03:00:53 -07002730POWERPC 4xx EMAC DRIVER
2731P: Eugene Surovegin
2732M: ebs@ebshome.net
2733W: http://kernel.ebshome.net/emac/
2734L: linuxppc-embedded@ozlabs.org
2735L: netdev@vger.kernel.org
2736S: Maintained
2737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738PNP SUPPORT
2739P: Adam Belay
2740M: ambx1@neo.rr.com
2741S: Maintained
2742
Vitaly Wool999445d2007-01-04 13:07:03 +01002743PNXxxxx I2C DRIVER
2744P: Vitaly Wool
2745M: vitalywool@gmail.com
2746L: i2c@lm-sensors.org
2747S: Maintained
2748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749PPP PROTOCOL DRIVERS AND COMPRESSORS
2750P: Paul Mackerras
2751M: paulus@samba.org
2752L: linux-ppp@vger.kernel.org
2753S: Maintained
2754
2755PPP OVER ATM (RFC 2364)
2756P: Mitchell Blank Jr
2757M: mitch@sfgoth.com
2758S: Maintained
2759
2760PPP OVER ETHERNET
2761P: Michal Ostrowski
2762M: mostrows@speakeasy.net
2763S: Maintained
2764
2765PREEMPTIBLE KERNEL
2766P: Robert Love
2767M: rml@tech9.net
2768L: linux-kernel@vger.kernel.org
2769L: kpreempt-tech@lists.sourceforge.net
2770W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2771S: Supported
2772
2773PRISM54 WIRELESS DRIVER
2774P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002775M: developers@islsm.org
Johannes Berg724c6b32007-04-23 12:18:20 -07002776L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777W: http://prism54.org
2778S: Maintained
2779
2780PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2781P: Peter Denison
2782M: promise@pnd-pc.demon.co.uk
2783W: http://www.pnd-pc.demon.co.uk/promise/
2784S: Maintained
2785
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002786PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2787P: Mikael Pettersson
2788M: mikpe@it.uu.se
2789L: linux-ide@vger.kernel.org
2790S: Maintained
2791
Geoff Levandf58a9d12006-11-23 00:46:51 +01002792PS3 PLATFORM SUPPORT
2793P: Geoff Levand
2794M: geoffrey.levand@am.sony.com
2795L: linuxppc-dev@ozlabs.org
2796L: cbe-oss-dev@ozlabs.org
2797S: Supported
2798
Michael Krufky83202042006-07-03 00:24:18 -07002799PVRUSB2 VIDEO4LINUX DRIVER
2800P: Mike Isely
2801M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03002802L: pvrusb2@isely.net (subscribers-only)
Michael Krufky83202042006-07-03 00:24:18 -07002803L: video4linux-list@redhat.com
2804W: http://www.isely.net/pvrusb2/
2805S: Maintained
2806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807PXA2xx SUPPORT
2808P: Nicolas Pitre
2809M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002810L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811S: Maintained
2812
2813QLOGIC QLA2XXX FC-SCSI DRIVER
2814P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002815M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816L: linux-scsi@vger.kernel.org
2817S: Supported
2818
Ron Mercer5a4faa82006-07-25 00:40:21 -07002819QLOGIC QLA3XXX NETWORK DRIVER
2820P: Ron Mercer
2821M: linux-driver@qlogic.com
2822L: netdev@vger.kernel.org
2823S: Supported
2824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825QNX4 FILESYSTEM
2826P: Anders Larsen
2827M: al@alarsen.net
2828L: linux-kernel@vger.kernel.org
2829W: http://www.alarsen.net/linux/qnx4fs/
2830S: Maintained
2831
2832RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002833P: Benjamin Herrenschmidt
2834M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002835L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836S: Maintained
2837
2838RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002839P: Paul Mackerras
2840M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002841L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842S: Maintained
2843
2844RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2845P: Corey Thomas
2846M: corey@world.std.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002847L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848S: Maintained
2849
Matt Mackall9e95ce22005-04-16 15:25:56 -07002850RANDOM NUMBER DRIVER
2851P: Matt Mackall
2852M: mpm@selenic.com
2853S: Maintained
2854
Matt Porter394b7012005-11-07 01:00:15 -08002855RAPIDIO SUBSYSTEM
2856P: Matt Porter
2857M: mporter@kernel.crashing.org
2858L: linux-kernel@vger.kernel.org
2859S: Maintained
2860
Josh Triplett595182b2006-10-04 02:17:21 -07002861READ-COPY UPDATE (RCU)
2862P: Dipankar Sarma
2863M: dipankar@in.ibm.com
2864W: http://www.rdrop.com/users/paulmck/rclock/
2865L: linux-kernel@vger.kernel.org
2866S: Supported
2867
2868RCUTORTURE MODULE
2869P: Josh Triplett
2870M: josh@freedesktop.org
2871L: linux-kernel@vger.kernel.org
2872S: Maintained
2873
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874REAL TIME CLOCK DRIVER
2875P: Paul Gortmaker
2876M: p_gortmaker@yahoo.com
2877L: linux-kernel@vger.kernel.org
2878S: Maintained
2879
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002880REAL TIME CLOCK (RTC) SUBSYSTEM
2881P: Alessandro Zummo
2882M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002883L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002884S: Maintained
2885
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886REISERFS FILE SYSTEM
2887P: Hans Reiser
2888M: reiserfs-dev@namesys.com
2889L: reiserfs-list@namesys.com
2890W: http://www.namesys.com
2891S: Supported
2892
2893ROCKETPORT DRIVER
2894P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895W: http://www.comtrol.com
2896S: Maintained
2897
2898ROSE NETWORK LAYER
2899P: Ralf Baechle
2900M: ralf@linux-mips.org
2901L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002902W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903S: Maintained
2904
2905RISCOM8 DRIVER
2906S: Orphan
2907
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002908S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002909P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002910M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002911L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002912S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914S390
2915P: Martin Schwidefsky
2916M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002917P: Heiko Carstens
2918M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002920L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002921W: http://www.ibm.com/developerworks/linux/linux390/
2922S: Supported
2923
2924S390 NETWORK DRIVERS
2925P: Frank Pavlic
2926M: fpavlic@de.ibm.com
2927M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002928L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002929W: http://www.ibm.com/developerworks/linux/linux390/
2930S: Supported
2931
2932S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002933P: Swen Schillig
2934M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002935M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002936L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002937W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938S: Supported
2939
2940SAA7146 VIDEO4LINUX-2 DRIVER
2941P: Michael Hunold
2942M: michael@mihu.de
2943W: http://www.mihu.de/linux/saa7146
2944S: Maintained
2945
2946SBPCD CDROM DRIVER
2947P: Eberhard Moenkeberg
2948M: emoenke@gwdg.de
2949L: linux-kernel@vger.kernel.org
2950S: Maintained
2951
2952SC1200 WDT DRIVER
2953P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002954M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955S: Maintained
2956
2957SCHEDULER
2958P: Ingo Molnar
2959M: mingo@elte.hu
2960P: Robert Love [the preemptible kernel bits]
2961M: rml@tech9.net
2962L: linux-kernel@vger.kernel.org
2963S: Maintained
2964
2965SCSI CDROM DRIVER
2966P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002967M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968L: linux-scsi@vger.kernel.org
2969W: http://www.kernel.dk
2970S: Maintained
2971
2972SCSI SG DRIVER
2973P: Doug Gilbert
2974M: dgilbert@interlog.com
2975L: linux-scsi@vger.kernel.org
2976W: http://www.torque.net/sg
2977S: Maintained
2978
2979SCSI SUBSYSTEM
2980P: James E.J. Bottomley
2981M: James.Bottomley@SteelEye.com
2982L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002983T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984S: Maintained
2985
2986SCSI TAPE DRIVER
2987P: Kai Mäkisara
2988M: Kai.Makisara@kolumbus.fi
2989L: linux-scsi@vger.kernel.org
2990S: Maintained
2991
2992SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07002993P: Vlad Yasevich
2994M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01002995P: Sridhar Samudrala
2996M: sri@us.ibm.com
2997L: lksctp-developers@lists.sourceforge.net
Sridhar Samudrala5f858132007-03-23 11:39:51 -07002998W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01002999S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
3001SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07003002P: Jim Cromie
3003M: jim.cromie@gmail.com
3004S: Odd Fixes
3005
3006SCx200 GPIO DRIVER
3007P: Jim Cromie
3008M: jim.cromie@gmail.com
3009S: Maintained
3010
3011SCx200 HRT CLOCKSOURCE DRIVER
3012P: Jim Cromie
3013M: jim.cromie@gmail.com
3014S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
3016SECURITY CONTACT
3017P: Security Officers
3018M: security@kernel.org
3019S: Supported
3020
3021SELINUX SECURITY MODULE
3022P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08003023M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04003025M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05003026P: Eric Paris
3027M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028L: linux-kernel@vger.kernel.org (kernel issues)
Stephen Smalley588a3152007-02-23 09:20:09 -05003029L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030W: http://www.nsa.gov/selinux
3031S: Supported
3032
3033SERIAL ATA (SATA) SUBSYSTEM:
3034P: Jeff Garzik
3035M: jgarzik@pobox.com
3036L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003037T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038S: Supported
3039
3040SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
3041P: Pat Gefre
3042M: pfg@sgi.com
3043L: linux-ia64@vger.kernel.org
3044S: Supported
3045
3046SGI VISUAL WORKSTATION 320 AND 540
3047P: Andrey Panin
3048M: pazke@donpac.ru
3049L: linux-visws-devel@lists.sf.net
3050W: http://linux-visws.sf.net
3051S: Maintained for 2.6.
3052
3053SIMTEC EB110ATX (Chalice CATS)
3054P: Ben Dooks
3055P: Vincent Sanders
3056M: support@simtec.co.uk
3057W: http://www.simtec.co.uk/products/EB110ATX/
3058S: Supported
3059
3060SIMTEC EB2410ITX (BAST)
3061P: Ben Dooks
3062P: Vincent Sanders
3063M: support@simtec.co.uk
3064W: http://www.simtec.co.uk/products/EB2410ITX/
3065S: Supported
3066
Francois Romieu92aab3c2005-07-30 13:11:18 +02003067SIS 190 ETHERNET DRIVER
3068P: Francois Romieu
3069M: romieu@fr.zoreil.com
3070L: netdev@vger.kernel.org
3071S: Maintained
3072
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073SIS 5513 IDE CONTROLLER DRIVER
3074P: Lionel Bouton
3075M: Lionel.Bouton@inet6.fr
3076W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3077W: http://gyver.homeip.net/sis5513/index.html
3078S: Maintained
3079
3080SIS 900/7016 FAST ETHERNET DRIVER
3081P: Daniele Venzano
3082M: venza@brownhat.org
3083W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003084L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085S: Maintained
3086
3087SIS FRAMEBUFFER DRIVER
3088P: Thomas Winischhofer
3089M: thomas@winischhofer.net
3090W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003091S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
3093SIS USB2VGA DRIVER
3094P: Thomas Winischhofer
3095M: thomas@winischhofer.net
3096W: http://www.winischhofer.at/linuxsisusbvga.shtml
3097S: Maintained
3098
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099SMC91x ETHERNET DRIVER
3100P: Nicolas Pitre
3101M: nico@cam.org
3102S: Maintained
3103
Daniel Drake8f0f8502006-07-18 22:00:25 +01003104SOFTMAC LAYER (IEEE 802.11)
3105P: Johannes Berg
3106M: johannes@sipsolutions.net
3107P: Joe Jezak
3108M: josejx@gentoo.org
3109P: Daniel Drake
3110M: dsd@gentoo.org
3111W: http://softmac.sipsolutions.net/
Johannes Berg724c6b32007-04-23 12:18:20 -07003112L: linux-wireless@vger.kernel.org
Daniel Drake8f0f8502006-07-18 22:00:25 +01003113S: Maintained
3114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115SOFTWARE RAID (Multiple Disks) SUPPORT
3116P: Ingo Molnar
3117M: mingo@redhat.com
3118P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003119M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003121S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
3123SOFTWARE SUSPEND:
3124P: Pavel Machek
3125M: pavel@suse.cz
David Brownellf318a632007-04-23 14:41:06 -07003126L: linux-pm@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127S: Maintained
3128
3129SONIC NETWORK DRIVER
3130P: Thomas Bogendoerfer
3131M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003132L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133S: Maintained
3134
3135SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01003136P: Mattia Dongili
3137M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01003138L: linux-acpi@vger.kernel.org
3139W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140S: Maintained
3141
3142SOUND
3143P: Jaroslav Kysela
3144M: perex@suse.cz
3145L: alsa-devel@alsa-project.org
3146S: Maintained
3147
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003148SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3149P: Liam Girdwood
3150M: liam.girdwood@wolfsonmicro.com
3151L: alsa-devel@alsa-project.org
3152S: Supported
3153
Kumar Gala025c3982006-04-02 16:05:54 -05003154SPI SUBSYSTEM
3155P: David Brownell
3156M: dbrownell@users.sourceforge.net
3157L: spi-devel-general@lists.sourceforge.net
3158S: Maintained
3159
Steven Rostedt855f46a2006-08-05 12:14:50 -07003160STABLE BRANCH:
3161P: Greg Kroah-Hartman
3162M: greg@kroah.com
3163P: Chris Wright
3164M: chrisw@sous-sol.org
3165L: stable@kernel.org
3166S: Maintained
3167
Kylene Hall1c72d462005-05-01 08:59:13 -07003168TPM DEVICE DRIVER
3169P: Kylene Hall
3170M: kjhall@us.ibm.com
3171W: http://tpmdd.sourceforge.net
Marcel Selhorstd3a7b6d2007-03-16 13:38:31 -08003172P: Marcel Selhorst
3173M: tpm@selhorst.net
3174W: http://www.prosec.rub.de/tpm/
Kylene Hall1c72d462005-05-01 08:59:13 -07003175L: tpmdd-devel@lists.sourceforge.net
3176S: Maintained
3177
Mark Gross1a80ba82005-10-30 15:02:55 -08003178Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003179P: Mark Gross
3180M: mark.gross@intel.com
3181S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003182
Chris Zankel48b415c2005-06-23 22:01:07 -07003183TENSILICA XTENSA PORT (xtensa):
3184P: Chris Zankel
3185M: chris@zankel.net
3186S: Maintained
3187
Henrique de Moraes Holschuh756970a2007-03-29 01:58:44 -03003188THINKPAD ACPI EXTRAS DRIVER
3189P: Henrique de Moraes Holschuh
3190M: ibm-acpi@hmh.eng.br
3191L: ibm-acpi-devel@lists.sourceforge.net
3192W: http://ibm-acpi.sourceforge.net
3193W: http://thinkwiki.org/wiki/Ibm-acpi
3194T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
3195S: Maintained
3196
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197UltraSPARC (sparc64):
3198P: David S. Miller
3199M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003201T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202S: Maintained
3203
3204SHARP LH SUPPORT (LH7952X & LH7A40X)
3205P: Marc Singer
3206M: elf@buici.com
3207W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003208L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209S: Maintained
3210
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003211SHPC HOTPLUG DRIVER
3212P: Kristen Carlson Accardi
3213M: kristen.c.accardi@intel.com
3214L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003215S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003216
Pierre Ossmand129bce2006-03-24 03:18:17 -08003217SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3218P: Pierre Ossman
3219M: drzeus-sdhci@drzeus.cx
3220L: sdhci-devel@list.drzeus.cx
3221W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3222S: Maintained
3223
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003224SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3225P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003226M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003227L: netdev@vger.kernel.org
3228S: Maintained
3229
Chris Boot1a87d942006-07-10 04:45:34 -07003230SOEKRIS NET48XX LED SUPPORT
3231P: Chris Boot
3232M: bootc@bootc.net
3233S: Maintained
3234
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235SPARC (sparc32):
3236P: William L. Irwin
3237M: wli@holomorphy.com
3238L: sparclinux@vger.kernel.org
3239S: Maintained
3240
3241SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3242P: Roger Wolff
3243M: R.E.Wolff@BitWizard.nl
3244L: linux-kernel@vger.kernel.org ?
3245S: Supported
3246
Jim Lewis2752e402006-09-29 02:01:19 -07003247SPIDERNET NETWORK DRIVER for CELL
Linas Vepstasfa302482007-02-20 16:45:27 -06003248P: Linas Vepstas
3249M: linas@austin.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07003250L: netdev@vger.kernel.org
3251S: Supported
3252
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253SRM (Alpha) environment access
3254P: Jan-Benedict Glaw
3255M: jbglaw@lug-owl.de
3256L: linux-kernel@vger.kernel.org
3257S: Maintained
3258
3259STARFIRE/DURALAN NETWORK DRIVER
3260P: Ion Badulescu
3261M: ionut@cs.columbia.edu
3262S: Maintained
3263
3264STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3265W: http://mosquitonet.Stanford.EDU/strip.html
3266S: Unsupported ?
3267
3268STRADIS MPEG-2 DECODER DRIVER
3269P: Nathan Laredo
3270M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271W: http://www.stradis.com/
3272S: Maintained
3273
3274SUPERH (sh)
3275P: Paul Mundt
3276M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003277L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279S: Maintained
3280
3281SUPERH64 (sh64)
3282P: Paul Mundt
3283M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284L: linuxsh-shmedia-dev@lists.sourceforge.net
3285W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286S: Maintained
3287
3288SUN3/3X
3289P: Sam Creasey
3290M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291W: http://sammy.net/sun3/
3292S: Maintained
3293
3294SVGA HANDLING
3295P: Martin Mares
3296M: mj@ucw.cz
3297L: linux-video@atrey.karlin.mff.cuni.cz
3298S: Maintained
3299
3300SYSV FILESYSTEM
3301P: Christoph Hellwig
3302M: hch@infradead.org
3303S: Maintained
3304
Stephen Hemminger781b4562006-07-10 20:25:29 -07003305TC CLASSIFIER
3306P: Jamal Hadi Salim
3307M: hadi@cyberus.ca
3308L: netdev@vger.kernel.org
3309S: Maintained
3310
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003311TCP LOW PRIORITY MODULE
3312P: Wong Hoi Sing, Edison
3313M: hswong3i@gmail.com
3314P: Hung Hing Lun, Mike
3315M: hlhung3i@gmail.com
3316W: http://tcp-lp-mod.sourceforge.net/
3317S: Maintained
3318
Alex Dubov4020f2d2006-10-04 02:15:37 -07003319TI FLASH MEDIA INTERFACE DRIVER
3320P: Alex Dubov
3321M: oakad@yahoo.com
3322S: Maintained
3323
Michael Buesch844dd052006-06-26 00:24:59 -07003324TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3325P: Deepak Saxena
3326M: dsaxena@plexity.net
3327S: Maintained
3328
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003329TASKSTATS STATISTICS INTERFACE
3330P: Shailabh Nagar
3331M: nagar@watson.ibm.com
3332L: linux-kernel@vger.kernel.org
3333S: Maintained
3334
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003336P: Romain Lievin
3337M: roms@lpg.ticalc.org
3338S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Per Lidene86eaa32006-01-12 16:45:18 +01003340TIPC NETWORK LAYER
3341P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003342M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003343P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003344M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003345P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003346M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003347L: tipc-discussion@lists.sourceforge.net
3348W: http://tipc.sourceforge.net/
3349W: http://tipc.cslab.ericsson.net/
3350T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3351S: Maintained
3352
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353TLAN NETWORK DRIVER
3354P: Samuel Chessman
3355M: chessman@tux.org
3356L: tlan-devel@lists.sourceforge.net
3357W: http://sourceforge.net/projects/tlan/
3358S: Maintained
3359
3360TOKEN-RING NETWORK DRIVER
3361P: Mike Phillips
3362M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003363L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364L: linux-tr@linuxtr.net
3365W: http://www.linuxtr.net
3366S: Maintained
3367
3368TOSHIBA ACPI EXTRAS DRIVER
3369P: John Belmonte
3370M: toshiba_acpi@memebeam.org
3371W: http://memebeam.org/toys/ToshibaAcpiDriver
3372S: Maintained
3373
3374TOSHIBA SMM DRIVER
3375P: Jonathan Buzzard
3376M: jonathan@buzzard.org.uk
3377L: tlinux-users@tce.toshiba-dme.co.jp
3378W: http://www.buzzard.org.uk/toshiba/
3379S: Maintained
3380
3381TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3382P: Muli Ben-Yehuda
3383M: mulix@mulix.org
3384L: linux-kernel@vger.kernel.org
3385S: Maintained
3386
3387TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003388P: Adrian Bunk
3389M: trivial@kernel.org
3390L: linux-kernel@vger.kernel.org
3391W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3392T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3393S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
3395TMS380 TOKEN-RING NETWORK DRIVER
3396P: Adam Fritzler
3397M: mid@auk.cx
3398L: linux-tr@linuxtr.net
3399W: http://www.auk.cx/tms380tr/
3400S: Maintained
3401
3402TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003403P: Valerie Henson
3404M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405L: tulip-users@lists.sourceforge.net
3406W: http://sourceforge.net/projects/tulip/
3407S: Maintained
3408
3409TUN/TAP driver
3410P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003411M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412L: vtun@office.satix.net
3413W: http://vtun.sourceforge.net/tun
3414S: Maintained
3415
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003416TURBOCHANNEL SUBSYSTEM
3417P: Maciej W. Rozycki
3418M: macro@linux-mips.org
3419S: Maintained
3420
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421U14-34F SCSI DRIVER
3422P: Dario Ballabio
3423M: ballabio_dario@emc.com
3424L: linux-scsi@vger.kernel.org
3425S: Maintained
3426
3427UDF FILESYSTEM
3428P: Ben Fennema
3429M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430W: http://linux-udf.sourceforge.net
3431S: Maintained
3432
3433UNIFORM CDROM DRIVER
3434P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003435M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436L: linux-kernel@vger.kernel.org
3437W: http://www.kernel.dk
3438S: Maintained
3439
3440USB ACM DRIVER
3441P: Oliver Neukum
3442M: oliver@neukum.name
3443L: linux-usb-users@lists.sourceforge.net
3444L: linux-usb-devel@lists.sourceforge.net
3445S: Maintained
3446
3447USB BLOCK DRIVER (UB ub)
3448P: Pete Zaitcev
3449M: zaitcev@redhat.com
3450L: linux-kernel@vger.kernel.org
3451L: linux-usb-devel@lists.sourceforge.net
3452S: Supported
3453
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454USB CDC ETHERNET DRIVER
3455P: Greg Kroah-Hartman
3456M: greg@kroah.com
3457L: linux-usb-users@lists.sourceforge.net
3458L: linux-usb-devel@lists.sourceforge.net
3459S: Maintained
3460W: http://www.kroah.com/linux-usb/
3461
Peter Korsgaardd0374f42007-02-16 17:03:54 +01003462USB DAVICOM DM9601 DRIVER
3463P: Peter Korsgaard
3464M: jacmet@sunsite.dk
3465L: linux-usb-devel@lists.sourceforge.net
3466W: http://www.linux-usb.org/usbnet
3467S: Maintained
3468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469USB EHCI DRIVER
3470P: David Brownell
3471M: dbrownell@users.sourceforge.net
3472L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003473S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Luca Risolia7ce08c92006-01-11 02:06:59 +00003475USB ET61X[12]51 DRIVER
3476P: Luca Risolia
3477M: luca.risolia@studio.unibo.it
3478L: linux-usb-devel@lists.sourceforge.net
3479L: video4linux-list@redhat.com
3480W: http://www.linux-projects.org
3481S: Maintained
3482
David Brownell69ae9e32006-11-14 02:03:31 -08003483USB GADGET/PERIPHERAL SUBSYSTEM
3484P: David Brownell
3485M: dbrownell@users.sourceforge.net
3486L: linux-usb-devel@lists.sourceforge.net
3487W: http://www.linux-usb.org/gadget
3488S: Maintained
3489
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490USB HID/HIDBP DRIVERS
Jiri Kosina641266f2007-01-15 09:56:21 +01003491P: Jiri Kosina
3492M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493L: linux-usb-devel@lists.sourceforge.net
Jiri Kosinaa4dff392007-02-27 17:40:09 +01003494T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495S: Maintained
3496
3497USB HUB DRIVER
3498P: Johannes Erdfelt
3499M: johannes@erdfelt.com
3500L: linux-usb-users@lists.sourceforge.net
3501L: linux-usb-devel@lists.sourceforge.net
3502S: Maintained
3503
Olav Kongas959eea22005-11-03 17:38:14 +02003504USB ISP116X DRIVER
3505P: Olav Kongas
3506M: ok@artecdesign.ee
3507L: linux-usb-devel@lists.sourceforge.net
3508S: Maintained
3509
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510USB KAWASAKI LSI DRIVER
3511P: Oliver Neukum
3512M: oliver@neukum.name
3513L: linux-usb-users@lists.sourceforge.net
3514L: linux-usb-devel@lists.sourceforge.net
3515S: Maintained
3516
3517USB MASS STORAGE DRIVER
3518P: Matthew Dharm
3519M: mdharm-usb@one-eyed-alien.net
3520L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003521L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522S: Maintained
3523W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3524
3525USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003526P: David Brownell
3527M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528L: linux-usb-users@lists.sourceforge.net
3529L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003530S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
Matthias Urlichsba460e42005-07-14 00:33:47 -07003532USB OPTION-CARD DRIVER
3533P: Matthias Urlichs
3534M: smurf@smurf.noris.de
3535L: linux-usb-devel@lists.sourceforge.net
3536S: Maintained
3537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538USB OV511 DRIVER
3539P: Mark McClelland
3540M: mmcclell@bigfoot.com
3541L: linux-usb-users@lists.sourceforge.net
3542L: linux-usb-devel@lists.sourceforge.net
3543W: http://alpha.dyndns.org/ov511/
3544S: Maintained
3545
3546USB PEGASUS DRIVER
3547P: Petko Manolov
3548M: petkan@users.sourceforge.net
3549L: linux-usb-users@lists.sourceforge.net
3550L: linux-usb-devel@lists.sourceforge.net
3551W: http://pegasus2.sourceforge.net/
3552S: Maintained
3553
3554USB PRINTER DRIVER
3555P: Vojtech Pavlik
3556M: vojtech@suse.cz
3557L: linux-usb-users@lists.sourceforge.net
3558L: linux-usb-devel@lists.sourceforge.net
3559S: Maintained
3560
3561USB RTL8150 DRIVER
3562P: Petko Manolov
3563M: petkan@users.sourceforge.net
3564L: linux-usb-users@lists.sourceforge.net
3565L: linux-usb-devel@lists.sourceforge.net
3566W: http://pegasus2.sourceforge.net/
3567S: Maintained
3568
3569USB SE401 DRIVER
3570P: Jeroen Vreeken
3571M: pe1rxq@amsat.org
3572L: linux-usb-users@lists.sourceforge.net
3573L: linux-usb-devel@lists.sourceforge.net
3574W: http://www.chello.nl/~j.vreeken/se401/
3575S: Maintained
3576
3577USB SERIAL CYBERJACK DRIVER
3578P: Matthias Bruestle and Harald Welte
3579M: support@reiner-sct.com
3580W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3581S: Maintained
3582
3583USB SERIAL DIGI ACCELEPORT DRIVER
3584P: Peter Berger and Al Borchers
3585M: pberger@brimson.com
3586M: alborchers@steinerpoint.com
3587L: linux-usb-users@lists.sourceforge.net
3588L: linux-usb-devel@lists.sourceforge.net
3589S: Maintained
3590
3591USB SERIAL DRIVER
3592P: Greg Kroah-Hartman
3593M: gregkh@suse.de
3594L: linux-usb-users@lists.sourceforge.net
3595L: linux-usb-devel@lists.sourceforge.net
3596S: Supported
3597
3598USB SERIAL BELKIN F5U103 DRIVER
3599P: William Greathouse
3600M: wgreathouse@smva.com
3601L: linux-usb-users@lists.sourceforge.net
3602L: linux-usb-devel@lists.sourceforge.net
3603S: Maintained
3604
3605USB SERIAL CYPRESS M8 DRIVER
3606P: Lonnie Mendez
3607M: dignome@gmail.com
3608L: linux-usb-users@lists.sourceforge.net
3609L: linux-usb-devel@lists.sourceforge.net
3610S: Maintained
3611W: http://geocities.com/i0xox0i
3612W: http://firstlight.net/cvs
3613
3614USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3615L: linux-usb-users@lists.sourceforge.net
3616L: linux-usb-devel@lists.sourceforge.net
3617S: Maintained
3618
3619USB AUERSWALD DRIVER
3620P: Wolfgang Muees
3621M: wolfgang@iksw-muees.de
3622L: linux-usb-users@lists.sourceforge.net
3623L: linux-usb-devel@lists.sourceforge.net
3624S: Maintained
3625
3626USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3627P: Gary Brubaker
3628M: xavyer@ix.netcom.com
3629L: linux-usb-users@lists.sourceforge.net
3630L: linux-usb-devel@lists.sourceforge.net
3631S: Maintained
3632
3633USB SERIAL KEYSPAN DRIVER
3634P: Greg Kroah-Hartman
3635M: greg@kroah.com
3636L: linux-usb-users@lists.sourceforge.net
3637L: linux-usb-devel@lists.sourceforge.net
3638W: http://www.kroah.com/linux/
3639S: Maintained
3640
3641USB SERIAL WHITEHEAT DRIVER
3642P: Stuart MacDonald
3643M: stuartm@connecttech.com
3644L: linux-usb-users@lists.sourceforge.net
3645L: linux-usb-devel@lists.sourceforge.net
3646W: http://www.connecttech.com
3647S: Supported
3648
Luca Risoliaf423b9a2007-03-26 16:12:04 -03003649USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650P: Luca Risolia
3651M: luca.risolia@studio.unibo.it
3652L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003653L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654W: http://www.linux-projects.org
3655S: Maintained
3656
3657USB SUBSYSTEM
3658P: Greg Kroah-Hartman
3659M: gregkh@suse.de
3660L: linux-usb-users@lists.sourceforge.net
3661L: linux-usb-devel@lists.sourceforge.net
3662W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003663T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664S: Supported
3665
3666USB UHCI DRIVER
3667P: Alan Stern
3668M: stern@rowland.harvard.edu
3669L: linux-usb-users@lists.sourceforge.net
3670L: linux-usb-devel@lists.sourceforge.net
3671S: Maintained
3672
David Brownell69ae9e32006-11-14 02:03:31 -08003673USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674P: David Brownell
3675M: dbrownell@users.sourceforge.net
3676L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003677W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678S: Maintained
3679
3680USB W996[87]CF DRIVER
3681P: Luca Risolia
3682M: luca.risolia@studio.unibo.it
3683L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003684L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685W: http://www.linux-projects.org
3686S: Maintained
3687
Luca Risolia60f78052006-02-06 16:29:35 +00003688USB ZC0301 DRIVER
3689P: Luca Risolia
3690M: luca.risolia@studio.unibo.it
3691L: linux-usb-devel@lists.sourceforge.net
3692L: video4linux-list@redhat.com
3693W: http://www.linux-projects.org
3694S: Maintained
3695
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696USB ZD1201 DRIVER
3697P: Jeroen Vreeken
3698M: pe1rxq@amsat.org
3699L: linux-usb-users@lists.sourceforge.net
3700L: linux-usb-devel@lists.sourceforge.net
3701W: http://linux-lc100020.sourceforge.net
3702S: Maintained
3703
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003704USB ZR364XX DRIVER
3705P: Antoine Jacquet
3706M: royale@zerezo.com
3707L: linux-usb-devel@lists.sourceforge.net
3708L: video4linux-list@redhat.com
3709W: http://royale.zerezo.com/zr364xx/
3710S: Maintained
3711
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712USER-MODE LINUX
3713P: Jeff Dike
3714M: jdike@karaya.com
3715L: user-mode-linux-devel@lists.sourceforge.net
3716L: user-mode-linux-user@lists.sourceforge.net
3717W: http://user-mode-linux.sourceforge.net
3718S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003719
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720FAT/VFAT/MSDOS FILESYSTEM:
3721P: OGAWA Hirofumi
3722M: hirofumi@mail.parknet.co.jp
3723L: linux-kernel@vger.kernel.org
3724S: Maintained
3725
3726VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3727P: Jeff Garzik
3728S: Odd fixes
3729
3730VIA RHINE NETWORK DRIVER
3731P: Roger Luethi
3732M: rl@hellgate.ch
3733S: Maintained
3734
Jean Delvare32c0a522005-09-22 21:47:58 +02003735VIAPRO SMBUS DRIVER
3736P: Jean Delvare
3737M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003738L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003739S: Maintained
3740
Francois Romieu01f20732007-01-26 00:57:17 -08003741VIA VELOCITY NETWORK DRIVER
3742P: Francois Romieu
3743M: romieu@fr.zoreil.com
3744L: netdev@vger.kernel.org
3745S: Maintained
3746
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747UCLINUX (AND M68KNOMMU)
3748P: Greg Ungerer
3749M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003751L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752S: Maintained
3753
3754UCLINUX FOR NEC V850
3755P: Miles Bader
3756M: uclinux-v850@lsi.nec.co.jp
3757W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3758W: http://www.ee.nec.de/uclinux/
3759S: Supported
3760
3761UCLINUX FOR RENESAS H8/300
3762P: Yoshinori Sato
3763M: ysato@users.sourceforge.jp
3764W: http://uclinux-h8.sourceforge.jp/
3765S: Supported
3766
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003767UFS FILESYSTEM
3768P: Evgeniy Dushistov
3769M: dushistov@mail.ru
3770L: linux-kernel@vger.kernel.org
3771S: Maintained
3772
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773USB DIAMOND RIO500 DRIVER
3774P: Cesar Miquel
3775M: miquel@df.uba.ar
3776L: rio500-users@lists.sourceforge.net
3777W: http://rio500.sourceforge.net
3778S: Maintained
3779
3780VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003781P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003782M: mchehab@infradead.org
3783M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003785W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003786T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003787S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788
Juerg Haefligerab413192006-09-24 20:54:04 +02003789VT1211 HARDWARE MONITOR DRIVER
3790P: Juerg Haefliger
3791M: juergh@gmail.com
3792L: lm-sensors@lm-sensors.org
3793S: Maintained
3794
Roger Lucas1de9e372005-11-26 20:20:05 +01003795VT8231 HARDWARE MONITOR DRIVER
3796P: Roger Lucas
3797M: roger@planbit.co.uk
3798L: lm-sensors@lm-sensors.org
3799S: Maintained
3800
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801W1 DALLAS'S 1-WIRE BUS
3802P: Evgeniy Polyakov
3803M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804S: Maintained
3805
Charles Spirakis13927072006-07-05 18:05:15 +02003806W83791D HARDWARE MONITORING DRIVER
3807P: Charles Spirakis
3808M: bezaur@gmail.com
3809L: lm-sensors@lm-sensors.org
3810S: Maintained
3811
Rudolf Marek61db0112006-12-12 18:18:30 +01003812W83793 HARDWARE MONITORING DRIVER
3813P: Rudolf Marek
3814M: r.marek@assembler.cz
3815L: lm-sensors@lm-sensors.org
3816S: Maintained
3817
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818W83L51xD SD/MMC CARD INTERFACE DRIVER
3819P: Pierre Ossman
3820M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003821L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822W: http://projects.drzeus.cx/wbsd
3823S: Maintained
3824
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003825WATCHDOG DEVICE DRIVERS
3826P: Wim Van Sebroeck
3827M: wim@iguana.be
3828T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3829S: Maintained
3830
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3832P: Jean Tourrilhes
3833M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003834L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3836S: Maintained
3837
3838WD7000 SCSI DRIVER
3839P: Miroslav Zagorac
3840M: zaga@fly.cc.fer.hr
3841L: linux-scsi@vger.kernel.org
3842S: Maintained
3843
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003844WISTRON LAPTOP BUTTON DRIVER
3845P: Miloslav Trmac
3846M: mitr@volny.cz
3847S: Maintained
3848
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849WL3501 WIRELESS PCMCIA CARD DRIVER
3850P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003851M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07003852L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003853W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854S: Maintained
3855
3856X.25 NETWORK LAYER
3857P: Henner Eisen
3858M: eis@baty.hanse.de
3859L: linux-x25@vger.kernel.org
3860S: Maintained
3861
3862XFS FILESYSTEM
3863P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003864P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003866L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003868T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869S: Supported
3870
Peter Korsgaard238b8722006-12-06 20:35:17 -08003871XILINX UARTLITE SERIAL DRIVER
3872P: Peter Korsgaard
3873M: jacmet@sunsite.dk
3874L: linux-serial@vger.kernel.org
3875S: Maintained
3876
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877X86 3-LEVEL PAGING (PAE) SUPPORT
3878P: Ingo Molnar
3879M: mingo@redhat.com
3880S: Maintained
3881
3882X86-64 port
3883P: Andi Kleen
3884M: ak@suse.de
3885L: discuss@x86-64.org
3886W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01003887T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888S: Maintained
3889
3890YAM DRIVER FOR AX.25
3891P: Jean-Paul Roubelat
3892M: jpr@f6fbb.org
3893L: linux-hams@vger.kernel.org
3894S: Maintained
3895
Henkaf64a5e2005-10-12 15:02:56 +02003896YEALINK PHONE DRIVER
3897P: Henk Vergonet
3898M: Henk.Vergonet@gmail.com
3899L: usbb2k-api-dev@nongnu.org
3900S: Maintained
3901
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902Z8530 DRIVER FOR AX.25
3903P: Joerg Reuter
3904M: jreuter@yaina.de
3905W: http://yaina.de/jreuter/
3906W: http://www.qsl.net/dl1bke/
3907L: linux-hams@vger.kernel.org
3908S: Maintained
3909
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003910ZD1211RW WIRELESS DRIVER
3911P: Daniel Drake
3912M: dsd@gentoo.org
3913P: Ulrich Kunitz
3914M: kune@deine-taler.de
3915W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07003916L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003917L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3918S: Maintained
3919
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920ZF MACHZ WATCHDOG
3921P: Fernando Fuganti
3922M: fuganti@netbank.com.br
3923W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3924S: Maintained
3925
3926ZR36067 VIDEO FOR LINUX DRIVER
3927P: Ronald Bultje
3928M: rbultje@ronald.bitfreak.net
3929L: mjpeg-users@lists.sourceforge.net
3930W: http://mjpeg.sourceforge.net/driver-zoran/
3931S: Maintained
3932
3933ZR36120 VIDEO FOR LINUX DRIVER
3934P: Pauline Middelink
3935M: middelin@polyware.nl
3936W: http://www.polyware.nl/~middelin/En/hobbies.html
3937W: http://www.polyware.nl/~middelin/hobbies.html
3938S: Maintained
3939
3940THE REST
3941P: Linus Torvalds
3942S: Buried alive in reporters