blob: 69f3f66091b4f00b6dde89e73f5af982ce302684 [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
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700385APPLE SMC DRIVER
386P: Nicolas Boichat
387M: nicolas@boichat.ch
388L: mactel-linux-devel@lists.sourceforge.net
389S: Maintained
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391APPLETALK NETWORK LAYER
392P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300393M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394S: Maintained
395
Jaya Kumar1154ea72005-06-21 17:17:04 -0700396ARC FRAMEBUFFER DRIVER
397P: Jaya Kumar
398M: jayalk@intworks.biz
399S: Maintained
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401ARM26 ARCHITECTURE
402P: Ian Molton
403M: spyro@f2s.com
404S: Maintained
405
406ARM26/ARCHIMEDES
407P: Ian Molton
408M: spyro@f2s.com
409S: Maintained
410
411ARM26/A5000
412P: John Appleby
413M: john@dnsworld.co.uk
414S: Maintained
415
416ARM MFM AND FLOPPY DRIVERS
417P: Ian Molton
418M: spyro@f2s.com
419S: Maintained
420
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800421ARM/ADI ROADRUNNER MACHINE SUPPORT
422P: Lennert Buytenhek
423M: kernel@wantstofly.org
424L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
425S: Maintained
426
427ARM/ADS SPHERE MACHINE SUPPORT
428P: Lennert Buytenhek
429M: kernel@wantstofly.org
430L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
431S: Maintained
432
433ARM/AJECO 1ARM MACHINE SUPPORT
434P: Lennert Buytenhek
435M: kernel@wantstofly.org
436L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
437S: Maintained
438
Andrew Victord4a89c72006-12-04 13:56:21 +0100439ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
440P: Andrew Victor
441M: andrew@sanpeople.com
442L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
443W: http://maxim.org.za/at91_26.html
444S: Maintained
445
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800446ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
447P: Lennert Buytenhek
448M: kernel@wantstofly.org
449L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
450S: Maintained
451
452ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
453P: Lennert Buytenhek
454M: kernel@wantstofly.org
455L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
456S: Maintained
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458ARM/CORGI MACHINE SUPPORT
459P: Richard Purdie
460M: rpurdie@rpsys.net
461S: Maintained
462
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800463ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
464P: Lennert Buytenhek
465M: kernel@wantstofly.org
466L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
467S: Maintained
468
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100469ARM/HP JORNADA 7XX MACHINE SUPPORT
470P: Kristoffer Ericson
471M: kristoffer_e1@hotmail.com
472W: www.jlime.com
473S: Maintained
474
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800475ARM/INTEL IOP32X ARM ARCHITECTURE
476P: Lennert Buytenhek
477M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100478P: Dan Williams
479M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100481S: Supported
482
483ARM/INTEL IOP33X ARM ARCHITECTURE
484P: Dan Williams
485M: dan.j.williams@intel.com
486L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
487S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800488
489ARM/INTEL IOP13XX ARM ARCHITECTURE
490P: Lennert Buytenhek
491M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100492P: Dan Williams
493M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800494L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100495S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800496
497ARM/INTEL IQ81342EX MACHINE SUPPORT
498P: Lennert Buytenhek
499M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100500P: Dan Williams
501M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800502L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100503S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800504
505ARM/INTEL IXP2000 ARM ARCHITECTURE
506P: Lennert Buytenhek
507M: kernel@wantstofly.org
508L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
509S: Maintained
510
511ARM/INTEL IXDP2850 MACHINE SUPPORT
512P: Lennert Buytenhek
513M: kernel@wantstofly.org
514L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
515S: Maintained
516
517ARM/INTEL IXP23XX ARM ARCHITECTURE
518P: Lennert Buytenhek
519M: kernel@wantstofly.org
520L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
521S: Maintained
522
523ARM/INTEL XSC3 (MANZANO) ARM CORE
524P: Lennert Buytenhek
525M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100526P: Dan Williams
527M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800528L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100529S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800530
531ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
532P: Lennert Buytenhek
533M: kernel@wantstofly.org
534L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
535S: Maintained
536
537ARM/LOGICPD PXA270 MACHINE SUPPORT
538P: Lennert Buytenhek
539M: kernel@wantstofly.org
540L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
541S: Maintained
542
Dirk Opfer8459c152005-11-06 14:27:52 +0000543ARM/TOSA MACHINE SUPPORT
544P: Dirk Opfer
545M: dirk@opfer-online.de
546S: Maintained
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548ARM/PLEB SUPPORT
549P: Peter Chubb
550M: pleb@gelato.unsw.edu.au
551W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
552S: Maintained
553
554ARM/PT DIGITAL BOARD PORT
555P: Stefan Eletzhofer
556M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700557L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558W: http://www.arm.linux.org.uk/
559S: Maintained
560
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800561ARM/RADISYS ENP2611 MACHINE SUPPORT
562P: Lennert Buytenhek
563M: kernel@wantstofly.org
564L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
565S: Maintained
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567ARM/SHARK MACHINE SUPPORT
568P: Alexander Schulz
569M: alex@shark-linux.de
570W: http://www.shark-linux.de/shark.html
571S: Maintained
572
573ARM/STRONGARM110 PORT
574P: Russell King
575M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700576L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577W: http://www.arm.linux.org.uk/
578S: Maintained
579
580ARM/S3C2410 ARM ARCHITECTURE
581P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800582M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700583L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584W: http://www.fluff.org/ben/linux/
585S: Maintained
586
587ARM/S3C2440 ARM ARCHITECTURE
588P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800589M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700590L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591W: http://www.fluff.org/ben/linux/
592S: Maintained
593
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800594ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
595P: Lennert Buytenhek
596M: kernel@wantstofly.org
597L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
598S: Maintained
599
600ARM/THECUS N2100 MACHINE SUPPORT
601P: Lennert Buytenhek
602M: kernel@wantstofly.org
603L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
604S: Maintained
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606ARPD SUPPORT
607P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700608L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609S: Maintained
610
611ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500612P: Corentin Chary
613M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614P: Karol Kozimor
615M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616L: acpi4asus-user@lists.sourceforge.net
617W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500618W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619S: Maintained
620
Corentin Chary85091b72007-01-26 14:04:30 +0100621ASUS LAPTOP EXTRAS DRIVER
622P: Corentin Chary
623M: corentincj@iksaif.net
624L: acpi4asus-user@lists.sourceforge.net
625W: http://sourceforge.net/projects/acpi4asus
626W: http://xf.iksaif.net/acpi4asus
627S: Maintained
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629ATA OVER ETHERNET DRIVER
630P: Ed L. Cashin
631M: ecashin@coraid.com
632W: http://www.coraid.com/support/linux
633S: Supported
634
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600635ATL1 ETHERNET DRIVER
636P: Jay Cliburn
637M: jcliburn@gmail.com
638P: Chris Snook
639M: csnook@redhat.com
640L: atl1-devel@lists.sourceforge.net
641W: http://sourceforge.net/projects/atl1
642W: http://atl1.sourceforge.net
643S: Maintained
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645ATM
646P: Chas Williams
647M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700648L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649W: http://linux-atm.sourceforge.net
650S: Maintained
651
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100652ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100653P: Haavard Skinnemoen
654M: hskinnemoen@atmel.com
655S: Supported
656
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800657ATMEL SPI DRIVER
658P: Haavard Skinnemoen
659M: hskinnemoen@atmel.com
660S: Supported
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662ATMEL WIRELESS DRIVER
663P: Simon Kelley
664M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -0700665L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666W: http://www.thekelleys.org.uk/atmel
667W: http://atmelwlandriver.sourceforge.net/
668S: Maintained
669
Chris Wrighta92b7b82005-07-07 18:12:23 -0700670AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100671P: David Woodhouse
672M: dwmw2@infradead.org
673L: linux-audit@redhat.com
674W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800675T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700676S: Maintained
677
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800678AUXILIARY DISPLAY DRIVERS
679P: Miguel Ojeda Sandonis
680M: maxextreme@gmail.com
681L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -0700682W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800683S: Maintained
684
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700685AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700686P: Haavard Skinnemoen
687M: hskinnemoen@atmel.com
688W: http://www.atmel.com/products/AVR32/
689W: http://avr32linux.org/
690W: http://avrfreaks.net/
691S: Supported
692
693AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700694P: Haavard Skinnemoen
695M: hskinnemoen@atmel.com
696S: Supported
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698AX.25 NETWORK LAYER
699P: Ralf Baechle
700M: ralf@linux-mips.org
701L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200702W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703S: Maintained
704
Richard Purdie300abeb2007-02-07 22:21:07 +0000705BACKLIGHT CLASS/SUBSYSTEM
706P: Richard Purdie
707M: rpurdie@rpsys.net
708S: Maintained
709
Bryan Wu1394f032007-05-06 14:50:22 -0700710BLACKFIN ARCHITECTURE
711P: Aubrey Li
712M: aubrey.li@analog.com
713P: Bernd Schmidt
714M: bernd.schmidt@analog.com
715P: Bryan Wu
716M: bryan.wu@analog.com
717P: Grace Pan
718M: grace.pan@analog.com
719P: Michael Hennerich
720M: michael.hennerich@analog.com
721P: Mike Frysinger
722M: michael.frysinger@analog.com
723P: Jane Lv
724M: jane.lv@analog.com
725P: Jerry Zeng
726M: jerry.zeng@analog.com
727P: Jie Zhang
728M: jie.zhang@analog.com
729P: Robin Getz
730M: robin.getz@analog.com
731P: Roy Huang
732M: roy.huang@analog.com
733P: Sonic Zhang
734M: sonic.zhang@analog.com
735P: Yi Li
736M: yi.li@analog.com
737L: uclinux-dist-devel@blackfin.uclinux.org
738W: http://blackfin.uclinux.org
739S: Supported
740
741BLACKFIN SERIAL DRIVER
742P: Aubrey Li
743M: aubrey.li@analog.com
744L: uclinux-dist-devel@blackfin.uclinux.org
745W: http://blackfin.uclinux.org
746S: Supported
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748BAYCOM/HDLCDRV DRIVERS FOR AX.25
749P: Thomas Sailer
750M: t.sailer@alumni.ethz.ch
751L: linux-hams@vger.kernel.org
752W: http://www.baycom.org/~tom/ham/ham.html
753S: Maintained
754
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200755BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
756P: Larry Finger
757M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200758P: Stefano Brivio
759M: st3@riseup.net
Johannes Berg724c6b32007-04-23 12:18:20 -0700760L: linux-wireless@vger.kernel.org
Michael Buesch9eac8f92006-04-22 17:31:27 +0200761W: http://bcm43xx.berlios.de/
762S: Maintained
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764BEFS FILE SYSTEM
765P: Sergey S. Kostyliov
766M: rathamahata@php4.ru
767L: linux-kernel@vger.kernel.org
768S: Maintained
769
770BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
771P: Kenji Hollis
772W: http://ftp.bitgate.com/pcwd/
773S: Maintained
774
775BFS FILE SYSTEM
776P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800777M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778L: linux-kernel@vger.kernel.org
779S: Maintained
780
Bryan Wud24ecfc2007-05-01 23:26:32 +0200781BLACKFIN I2C TWI DRIVER
782P: Sonic Zhang
783M: sonic.zhang@analog.com
784L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
785W: http://blackfin.uclinux.org/
786S: Supported
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788BLOCK LAYER
789P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200790M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800792T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793S: Maintained
794
795BLUETOOTH SUBSYSTEM
796P: Marcel Holtmann
797M: marcel@holtmann.org
798P: Maxim Krasnyansky
799M: maxk@qualcomm.com
800L: bluez-devel@lists.sf.net
801W: http://bluez.sf.net
802W: http://www.bluez.org
803W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800804T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805S: Maintained
806
807BLUETOOTH RFCOMM LAYER
808P: Marcel Holtmann
809M: marcel@holtmann.org
810P: Maxim Krasnyansky
811M: maxk@qualcomm.com
812S: Maintained
813
814BLUETOOTH BNEP LAYER
815P: Marcel Holtmann
816M: marcel@holtmann.org
817P: Maxim Krasnyansky
818M: maxk@qualcomm.com
819S: Maintained
820
821BLUETOOTH CMTP LAYER
822P: Marcel Holtmann
823M: marcel@holtmann.org
824S: Maintained
825
826BLUETOOTH HIDP LAYER
827P: Marcel Holtmann
828M: marcel@holtmann.org
829S: Maintained
830
831BLUETOOTH HCI UART DRIVER
832P: Marcel Holtmann
833M: marcel@holtmann.org
834P: Maxim Krasnyansky
835M: maxk@qualcomm.com
836S: Maintained
837
838BLUETOOTH HCI USB DRIVER
839P: Marcel Holtmann
840M: marcel@holtmann.org
841P: Maxim Krasnyansky
842M: maxk@qualcomm.com
843S: Maintained
844
845BLUETOOTH HCI BCM203X DRIVER
846P: Marcel Holtmann
847M: marcel@holtmann.org
848S: Maintained
849
850BLUETOOTH HCI BPA10X DRIVER
851P: Marcel Holtmann
852M: marcel@holtmann.org
853S: Maintained
854
855BLUETOOTH HCI BFUSB DRIVER
856P: Marcel Holtmann
857M: marcel@holtmann.org
858S: Maintained
859
860BLUETOOTH HCI DTL1 DRIVER
861P: Marcel Holtmann
862M: marcel@holtmann.org
863S: Maintained
864
865BLUETOOTH HCI BLUECARD DRIVER
866P: Marcel Holtmann
867M: marcel@holtmann.org
868S: Maintained
869
870BLUETOOTH HCI BT3C DRIVER
871P: Marcel Holtmann
872M: marcel@holtmann.org
873S: Maintained
874
875BLUETOOTH HCI BTUART DRIVER
876P: Marcel Holtmann
877M: marcel@holtmann.org
878S: Maintained
879
880BLUETOOTH HCI VHCI DRIVER
881P: Maxim Krasnyansky
882M: maxk@qualcomm.com
883S: Maintained
884
885BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100886P: Chad Tindel
887M: ctindel@users.sourceforge.net
888P: Jay Vosburgh
889M: fubar@us.ibm.com
890L: bonding-devel@lists.sourceforge.net
891W: http://sourceforge.net/projects/bonding/
892S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000894BROADBAND PROCESSOR ARCHITECTURE
895P: Arnd Bergmann
896M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100897L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400898W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000899S: Supported
900
Gary Zambrano39105892006-06-22 17:26:20 -0700901BROADCOM B44 10/100 ETHERNET DRIVER
902P: Gary Zambrano
903M: zambrano@broadcom.com
904L: netdev@vger.kernel.org
905S: Supported
906
Michael Chan948c51e2006-06-04 02:51:39 -0700907BROADCOM BNX2 GIGABIT ETHERNET DRIVER
908P: Michael Chan
909M: mchan@broadcom.com
910L: netdev@vger.kernel.org
911S: Supported
912
913BROADCOM TG3 GIGABIT ETHERNET DRIVER
914P: Michael Chan
915M: mchan@broadcom.com
916L: netdev@vger.kernel.org
917S: Supported
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700920P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200921M: mchehab@infradead.org
922M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700924W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200925T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700926S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Jonathan Corbet77d51402007-03-22 19:44:17 -0300928CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
929P: Jonathan Corbet
930M: corbet@lwn.net
931L: video4linux-list@redhat.com
932S: Maintained
933
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200934CALGARY x86-64 IOMMU
935P: Muli Ben-Yehuda
936M: muli@il.ibm.com
937P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200938M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200939L: linux-kernel@vger.kernel.org
940L: discuss@x86-64.org
941S: Maintained
942
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800943CFAG12864B LCD DRIVER
944P: Miguel Ojeda Sandonis
945M: maxextreme@gmail.com
946L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -0700947W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800948S: Maintained
949
950CFAG12864BFB LCD FRAMEBUFFER DRIVER
951P: Miguel Ojeda Sandonis
952M: maxextreme@gmail.com
953L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -0700954W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800955S: Maintained
956
Johannes Berg704232c2007-04-23 12:20:05 -0700957CFG80211 and NL80211
958P: Johannes Berg
959M: johannes@sipsolutions.net
960L: linux-wireless@vger.kernel.org
961S: Maintained
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963COMMON INTERNET FILE SYSTEM (CIFS)
964P: Steve French
965M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100966L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967L: samba-technical@lists.samba.org
968W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800969T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300970S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Joel Becker7063fbf2005-12-15 14:29:43 -0800972CONFIGFS
973P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800974M: joel.becker@oracle.com
975L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800976S: Supported
977
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800978CIRRUS LOGIC EP93XX ETHERNET DRIVER
979P: Lennert Buytenhek
980M: kernel@wantstofly.org
981L: netdev@vger.kernel.org
982S: Maintained
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984CIRRUS LOGIC GENERIC FBDEV DRIVER
985P: Jeff Garzik
986M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800987L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988S: Odd Fixes
989
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800990CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
991P: Lennert Buytenhek
992M: kernel@wantstofly.org
993L: linux-usb-devel@lists.sourceforge.net
994S: Maintained
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
997P: Cirrus Logic Corporation (kernel 2.2 driver)
998M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
999P: Nils Faerber (port to kernel 2.4)
1000M: Nils Faerber <nils@kernelconcepts.de>
1001S: Maintained
1002
1003CODA FILE SYSTEM
1004P: Jan Harkes
1005M: jaharkes@cs.cmu.edu
1006M: coda@cs.cmu.edu
1007L: codalist@coda.cs.cmu.edu
1008W: http://www.coda.cs.cmu.edu/
1009S: Maintained
1010
1011COMPACTPCI HOTPLUG CORE
1012P: Scott Murray
1013M: scottm@somanetworks.com
1014M: scott@spiteful.org
1015L: pcihpd-discuss@lists.sourceforge.net
1016S: Supported
1017
1018COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1019P: Scott Murray
1020M: scottm@somanetworks.com
1021M: scott@spiteful.org
1022L: pcihpd-discuss@lists.sourceforge.net
1023S: Supported
1024
1025COMPACTPCI HOTPLUG GENERIC DRIVER
1026P: Scott Murray
1027M: scottm@somanetworks.com
1028M: scott@spiteful.org
1029L: pcihpd-discuss@lists.sourceforge.net
1030S: Supported
1031
1032COMPUTONE INTELLIPORT MULTIPORT CARD
1033P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001034M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001036S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Simon Arlott949be0f2007-03-06 02:47:46 -08001038CONEXANT ACCESSRUNNER USB DRIVER
1039P: Simon Arlott
1040M: cxacru@fire.lp0.eu
1041S: Maintained
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043COSA/SRP SYNC SERIAL DRIVER
1044P: Jan "Yenya" Kasprzak
1045M: kas@fi.muni.cz
1046W: http://www.fi.muni.cz/~kas/cosa/
1047S: Maintained
1048
1049CPU FREQUENCY DRIVERS
1050P: Dave Jones
1051M: davej@codemonkey.org.uk
1052L: cpufreq@lists.linux.org.uk
1053W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -05001054T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055S: Maintained
1056
1057CPUID/MSR DRIVER
1058P: H. Peter Anvin
1059M: hpa@zytor.com
1060S: Maintained
1061
Paul Jacksoned90fb42005-09-27 21:45:37 -07001062CPUSETS
1063P: Paul Jackson
1064P: Simon Derr
1065M: pj@sgi.com
1066M: simon.derr@bull.net
1067L: linux-kernel@vger.kernel.org
1068W: http://www.bullopensource.org/cpuset/
1069S: Supported
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001072W: http://sourceforge.net/projects/cramfs/
1073S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075CRIS PORT
1076P: Mikael Starvik
1077M: starvik@axis.com
1078L: dev-etrax@axis.com
1079W: http://developer.axis.com
1080S: Maintained
1081
1082CRYPTO API
1083P: Herbert Xu
1084M: herbert@gondor.apana.org.au
1085P: David S. Miller
1086M: davem@davemloft.net
1087L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001088T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089S: Maintained
1090
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001091CS5535 Audio ALSA driver
1092P: Jaya Kumar
1093M: jayakumar.alsa@gmail.com
1094S: Maintained
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096CYBERPRO FB DRIVER
1097P: Russell King
1098M: rmk@arm.linux.org.uk
1099W: http://www.arm.linux.org.uk/
1100S: Maintained
1101
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001102CYBLAFB FRAMEBUFFER DRIVER
1103P: Knut Petersen
1104M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001105L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001106S: Maintained
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108CYCLADES 2X SYNC CARD DRIVER
1109P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001110M: acme@ghostprotocols.net
1111W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112S: Maintained
1113
1114CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001116S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001120S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122DAMA SLAVE for AX.25
1123P: Joerg Reuter
1124M: jreuter@yaina.de
1125W: http://yaina.de/jreuter/
1126W: http://www.qsl.net/dl1bke/
1127L: linux-hams@vger.kernel.org
1128S: Maintained
1129
1130DC395x SCSI driver
1131P: Oliver Neukum
1132M: oliver@neukum.name
1133P: Ali Akcaagac
1134M: aliakc@web.de
1135P: Jamie Lenehan
1136M: lenehan@twibble.org
1137W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001138L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139L: http://lists.twibble.org/mailman/listinfo/dc395x/
1140S: Maintained
1141
1142DC390/AM53C974 SCSI driver
1143P: Kurt Garloff
1144M: garloff@suse.de
1145W: http://www.garloff.de/kurt/linux/dc390/
1146P: Guennadi Liakhovetski
1147M: g.liakhovetski@gmx.de
1148S: Maintained
1149
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001150DCCP PROTOCOL
1151P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001152M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001153L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001154W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001155S: Maintained
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157DECnet NETWORK LAYER
1158P: Patrick Caulfield
1159M: patrick@tykepenguin.com
1160W: http://linux-decnet.sourceforge.net
1161L: linux-decnet-user@lists.sourceforge.net
1162S: Maintained
1163
1164DEFXX FDDI NETWORK DRIVER
1165P: Maciej W. Rozycki
1166M: macro@linux-mips.org
1167S: Maintained
1168
1169DELL LAPTOP SMM DRIVER
1170P: Massimo Dal Zotto
1171M: dz@debian.org
1172W: http://www.debian.org/~dz/i8k/
1173S: Maintained
1174
Doug Warzecha90563ec2005-09-06 15:17:15 -07001175DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1176P: Doug Warzecha
1177M: Douglas_Warzecha@dell.com
1178S: Maintained
1179
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001180DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181P: Alasdair Kergon
1182L: dm-devel@redhat.com
1183W: http://sources.redhat.com/dm
1184S: Maintained
1185
1186DEVICE NUMBER REGISTRY
1187P: Torben Mathiasen
1188M: device@lanana.org
1189W: http://lanana.org/docs/device-list/index.html
1190L: linux-kernel@vger.kernel.org
1191S: Maintained
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193DIGI INTL. EPCA DRIVER
1194P: Digi International, Inc
1195M: Eng.Linux@digi.com
1196L: Eng.Linux@digi.com
1197W: http://www.digi.com
1198S: Orphaned
1199
1200DIGI RIGHTSWITCH NETWORK DRIVER
1201P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001202L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203W: http://www.digi.com
1204S: Orphaned
1205
1206DIRECTORY NOTIFICATION
1207P: Stephen Rothwell
1208M: sfr@canb.auug.org.au
1209L: linux-kernel@vger.kernel.org
1210S: Supported
1211
1212DISK GEOMETRY AND PARTITION HANDLING
1213P: Andries Brouwer
1214M: aeb@cwi.nl
1215W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1216W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1217W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1218S: Maintained
1219
1220DISKQUOTA:
1221P: Jan Kara
1222M: jack@suse.cz
1223L: linux-kernel@vger.kernel.org
1224S: Maintained
1225
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001226DISTRIBUTED LOCK MANAGER
1227P: Patrick Caulfield
1228M: pcaulfie@redhat.com
1229P: David Teigland
1230M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001231L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001232W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001233T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1234T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001235S: Supported
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1238P: Tobias Ringstrom
1239M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001240L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241S: Maintained
1242
Martin Waitzba483d52005-06-17 13:20:59 -07001243DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001244P: Randy Dunlap
1245M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001246S: Maintained
1247
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001248DOCKING STATION DRIVER
1249P: Kristen Carlson Accardi
1250M: kristen.c.accardi@intel.com
1251L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001252S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254DOUBLETALK DRIVER
1255P: James R. Van Zandt
1256M: jrv@vanzandt.mv.com
1257L: blinux-list@redhat.com
1258S: Maintained
1259
1260DRIVER CORE, KOBJECTS, AND SYSFS
1261P: Greg Kroah-Hartman
1262M: gregkh@suse.de
1263L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001264T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265S: Supported
1266
1267DRM DRIVERS
1268P: David Airlie
1269M: airlied@linux.ie
1270L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001271T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272S: Maintained
1273
1274DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001275P: Francois Romieu
1276M: romieu@fr.zoreil.com
1277L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278S: Maintained
1279
1280DVB SUBSYSTEM AND DRIVERS
1281P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001282M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001284W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001285T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001286S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288EATA-DMA SCSI DRIVER
1289P: Michael Neuffer
1290L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1291S: Maintained
1292
1293EATA ISA/EISA/PCI SCSI DRIVER
1294P: Dario Ballabio
1295M: ballabio_dario@emc.com
1296L: linux-scsi@vger.kernel.org
1297S: Maintained
1298
1299EATA-PIO SCSI DRIVER
1300P: Michael Neuffer
1301M: mike@i-Connect.Net
1302L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1303S: Maintained
1304
1305EBTABLES
1306P: Bart De Schuymer
1307M: bart.de.schuymer@pandora.be
1308L: ebtables-user@lists.sourceforge.net
1309L: ebtables-devel@lists.sourceforge.net
1310W: http://ebtables.sourceforge.net/
1311S: Maintained
1312
Michael Halcrow237fead2006-10-04 02:16:22 -07001313ECRYPT FILE SYSTEM
1314P: Mike Halcrow, Phillip Hellewell
1315M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1316L: ecryptfs-devel@lists.sourceforge.net
1317W: http://ecryptfs.sourceforge.net/
1318S: Supported
1319
Alan Coxda9bb1d2006-01-18 17:44:13 -08001320EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001321P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001322M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001323L: bluesmoke-devel@lists.sourceforge.net
1324W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001325S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001326
1327EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001328P: Mark Gross
1329M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001330L: bluesmoke-devel@lists.sourceforge.net
1331W: bluesmoke.sourceforge.net
1332S: Maintained
1333
1334EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001335P: Doug Thompson
1336M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001337L: bluesmoke-devel@lists.sourceforge.net
1338W: bluesmoke.sourceforge.net
1339S: Maintained
1340
1341EDAC-R82600
1342P: Tim Small
1343M: tim@buttersideup.com
1344L: bluesmoke-devel@lists.sourceforge.net
1345W: bluesmoke.sourceforge.net
1346S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348EEPRO100 NETWORK DRIVER
1349P: Andrey V. Savochkin
1350M: saw@saw.sw.com.sg
1351S: Maintained
1352
Josh Triplett0bee8d22006-07-30 03:03:58 -07001353EFS FILESYSTEM
1354W: http://aeschi.ch.eu.org/efs/
1355S: Orphan
1356
Heiko J Schickfab97222006-09-22 15:22:22 -07001357EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1358P: Hoang-Nam Nguyen
1359M: hnguyen@de.ibm.com
1360P: Christoph Raisch
1361M: raisch@de.ibm.com
1362L: openib-general@openib.org
1363S: Supported
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365EMU10K1 SOUND DRIVER
1366P: James Courtier-Dutton
1367M: James@superbug.demon.co.uk
1368L: emu10k1-devel@lists.sourceforge.net
1369W: http://sourceforge.net/projects/emu10k1/
1370S: Maintained
1371
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001372EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001373P: James Smart
1374M: james.smart@emulex.com
1375L: linux-scsi@vger.kernel.org
1376W: http://sourceforge.net/projects/lpfcxxxx
1377S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379EPSON 1355 FRAMEBUFFER DRIVER
1380P: Christopher Hoover
1381M: ch@murgatroid.com, ch@hpl.hp.com
1382S: Maintained
1383
1384ETHEREXPRESS-16 NETWORK DRIVER
1385P: Philip Blundell
1386M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001387L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388S: Maintained
1389
1390ETHERNET BRIDGE
1391P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08001392M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07001393L: bridge@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394W: http://bridge.sourceforge.net/
1395S: Maintained
1396
1397ETHERTEAM 16I DRIVER
1398P: Mika Kuoppala
1399M: miku@iki.fi
1400S: Maintained
1401
1402EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001403L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404S: Maintained
1405
1406EXT3 FILE SYSTEM
1407P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001408M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001409L: linux-ext4@vger.kernel.org
1410S: Maintained
1411
1412EXT4 FILE SYSTEM
1413P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001414M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001415L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416S: Maintained
1417
Jean Delvaree53004e2006-01-09 23:26:14 +01001418F71805F HARDWARE MONITORING DRIVER
1419P: Jean Delvare
1420M: khali@linux-fr.org
1421L: lm-sensors@lm-sensors.org
1422S: Maintained
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424FARSYNC SYNCHRONOUS DRIVER
1425P: Kevin Curtis
1426M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427W: http://www.farsite.co.uk/
1428S: Supported
1429
Akinobu Mitac5408b82007-04-23 14:41:20 -07001430FAULT INJECTION SUPPORT
1431P: Akinobu Mita
1432M: akinobu.mita@gmail.com
1433S: Supported
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435FRAMEBUFFER LAYER
1436P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001437M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001438L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439W: http://linux-fbdev.sourceforge.net/
1440S: Maintained
1441
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001442FREESCALE SOC FS_ENET DRIVER
1443P: Pantelis Antoniou
1444M: pantelis.antoniou@gmail.com
1445P: Vitaly Bordug
1446M: vbordug@ru.mvista.com
1447L: linuxppc-embedded@ozlabs.org
1448L: netdev@vger.kernel.org
1449S: Maintained
1450
Li Yanga7205b32007-04-23 10:38:18 -07001451FREESCALE HIGHSPEED USB DEVICE DRIVER
1452P: Li Yang
1453M: leoli@freescale.com
1454L: linux-usb-devel@lists.sourceforge.net
1455L: linuxppc-embedded@ozlabs.org
1456S: Maintained
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458FILE LOCKING (flock() and fcntl()/lockf())
1459P: Matthew Wilcox
1460M: matthew@wil.cx
1461L: linux-fsdevel@vger.kernel.org
1462S: Maintained
1463
1464FILESYSTEMS (VFS and infrastructure)
1465P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001466M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467S: Maintained
1468
1469FIRMWARE LOADER (request_firmware)
1470L: linux-kernel@vger.kernel.org
1471S: Orphan
1472
1473FPU EMULATOR
1474P: Bill Metzenthen
1475M: billm@suburbia.net
1476W: http://suburbia.net/~billm/floating-point/emulator/
1477S: Maintained
1478
1479FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1480P: Mike McLagan
1481M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001482L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483S: Maintained
1484
1485FREEVXFS FILESYSTEM
1486P: Christoph Hellwig
1487M: hch@infradead.org
1488W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1489S: Maintained
1490
David Howells5ab7ffe2007-04-10 15:10:45 +01001491FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492P: David Howells
1493M: dhowells@redhat.com
1494S: Maintained
1495
Miklos Szeredi04578f12005-09-09 13:10:22 -07001496FUSE: FILESYSTEM IN USERSPACE
1497P: Miklos Szeredi
1498M: miklos@szeredi.hu
1499L: fuse-devel@lists.sourceforge.net
1500W: http://fuse.sourceforge.net/
1501S: Maintained
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1504P: Rik Faith
1505M: faith@cs.unc.edu
1506L: linux-scsi@vger.kernel.org
1507S: Odd fixes (e.g., new signatures)
1508
1509GDT SCSI DISK ARRAY CONTROLLER DRIVER
1510P: Achim Leubner
1511M: achim_leubner@adaptec.com
1512L: linux-scsi@vger.kernel.org
1513W: http://www.icp-vortex.com/
1514S: Supported
1515
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02001516GENERIC GPIO I2C DRIVER
1517P: Haavard Skinnemoen
1518M: hskinnemoen@atmel.com
1519S: Supported
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1522P: Krzysztof Halasa
1523M: khc@pm.waw.pl
1524W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1525S: Maintained
1526
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001527GFS2 FILE SYSTEM
1528P: Steven Whitehouse
1529M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001530L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001531W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001532T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1533T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001534S: Supported
1535
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001536GIGASET ISDN DRIVERS
1537P: Hansjoerg Lipp
1538M: hjlipp@web.de
1539P: Tilman Schmidt
1540M: tilman@imap.cc
1541L: gigaset307x-common@lists.sourceforge.net
1542W: http://gigaset307x.sourceforge.net/
1543S: Maintained
1544
Jean Delvare5b543962005-08-15 19:51:02 +02001545HARDWARE MONITORING
1546P: Jean Delvare
1547M: khali@linux-fr.org
1548L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001549W: http://www.lm-sensors.org/
1550T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001551S: Maintained
1552
Michael Buesch844dd052006-06-26 00:24:59 -07001553HARDWARE RANDOM NUMBER GENERATOR CORE
1554P: Michael Buesch
1555M: mb@bu3sch.de
1556S: Maintained
1557
Robert Love860e1d62005-08-31 23:57:59 -04001558HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1559P: Robert Love
1560M: rlove@rlove.org
1561M: linux-kernel@vger.kernel.org
1562W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1563S: Maintained
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565HARMONY SOUND DRIVER
1566P: Kyle McMartin
1567M: kyle@parisc-linux.org
1568W: http://www.parisc-linux.org/~kyle/harmony/
1569L: parisc-linux@lists.parisc-linux.org
1570S: Maintained
1571
1572HAYES ESP SERIAL DRIVER
1573P: Andrew J. Robinson
1574M: arobinso@nyx.net
1575L: linux-kernel@vger.kernel.org
1576W: http://www.nyx.net/~arobinso
1577S: Maintained
1578
1579HFS FILESYSTEM
1580P: Roman Zippel
1581M: zippel@linux-m68k.org
1582L: linux-kernel@vger.kernel.org
1583S: Maintained
1584
1585HGA FRAMEBUFFER DRIVER
1586P: Ferenc Bakonyi
1587M: fero@drama.obuda.kando.hu
1588L: linux-nvidia@lists.surfsouth.com
1589W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1590S: Maintained
1591
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001592HID CORE LAYER
1593P: Jiri Kosina
1594M: jkosina@suse.cz
1595L: linux-input@atrey.karlin.mff.cuni.cz
Jiri Kosinaa4dff392007-02-27 17:40:09 +01001596T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001597S: Maintained
1598
Ingo Molnar38bed542007-02-22 09:09:34 +01001599HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
1600P: Thomas Gleixner
1601M: tglx@linutronix.de
1602L: linux-kernel@vger.kernel.org
1603S: Maintained
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605HIGH-SPEED SCC DRIVER FOR AX.25
1606P: Klaus Kudielka
1607M: klaus.kudielka@ieee.org
1608L: linux-hams@vger.kernel.org
1609W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1610S: Maintained
1611
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001612HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1613P: HighPoint Linux Team
1614M: linux@highpoint-tech.com
1615W: http://www.highpoint-tech.com
1616S: Supported
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618HIPPI
1619P: Jes Sorensen
1620M: jes@trained-monkey.org
1621L: linux-hippi@sunsite.dk
1622S: Maintained
1623
1624HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1625P: Chirag Kantharia
1626M: chirag.kantharia@hp.com
1627L: iss_storagedev@hp.com
1628S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630HEWLETT-PACKARD SMART2 RAID DRIVER
1631P: Chirag Kantharia
1632M: chirag.kantharia@hp.com
1633L: iss_storagedev@hp.com
1634S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1637P: Mike Miller
1638M: mike.miller@hp.com
1639L: iss_storagedev@hp.com
1640S: Supported
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001641
Jouni Malinenff1d2762005-05-12 22:54:16 -04001642HOST AP DRIVER
1643P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07001644M: j@w1.fi
1645L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07001646L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04001647W: http://hostap.epitest.fi/
1648S: Maintained
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1651P: Jaroslav Kysela
1652M: perex@suse.cz
1653S: Maintained
1654
Bob Piccob9b03322005-11-07 00:59:19 -08001655HPET: High Precision Event Timers driver (hpet.c)
1656P: Clemens Ladisch
1657M: clemens@ladisch.de
1658S: Maintained
1659
1660HPET: i386
1661P: Venkatesh Pallipadi (Venki)
1662M: venkatesh.pallipadi@intel.com
1663S: Maintained
1664
1665HPET: x86_64
1666P: Andi Kleen and Vojtech Pavlik
Andi Kleen43c3ab32007-05-02 19:27:11 +02001667M: andi@firstfloor.org and vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08001668S: Maintained
1669
1670HPET: ACPI hpet.c
1671P: Bob Picco
1672M: bob.picco@hp.com
1673S: Maintained
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675HPFS FILESYSTEM
1676P: Mikulas Patocka
1677M: mikulas@artax.karlin.mff.cuni.cz
1678W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1679S: Maintained
1680
1681HUGETLB FILESYSTEM
1682P: William Irwin
1683M: wli@holomorphy.com
1684S: Maintained
1685
Jean Delvare5b543962005-08-15 19:51:02 +02001686I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687P: Jean Delvare
1688M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001689L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001690T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691S: Maintained
1692
Till Harbaume8c76ee2007-05-01 23:26:35 +02001693I2C-TINY-USB DRIVER
1694P: Till Harbaum
1695M: till@harbaum.org
1696L: i2c@lm-sensors.org
1697T: http://www.harbaum.org/till/i2c_tiny_usb
1698S: Maintained
1699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700i386 BOOT CODE
1701P: Riley H. Williams
1702M: Riley@Williams.Name
1703L: Linux-Kernel@vger.kernel.org
1704S: Maintained
1705
1706i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1707P: Dave Jones
1708M: davej@codemonkey.org.uk
1709P: H. Peter Anvin
1710M: hpa@zytor.com
1711S: Maintained
1712
1713i810 TCO TIMER WATCHDOG
1714P: Nils Faerber
1715M: nils@kernelconcepts.de
1716W: http://www.kernelconcepts.de/
1717S: Maintained
1718
1719IA64 (Itanium) PLATFORM
1720P: Tony Luck
1721M: tony.luck@intel.com
1722L: linux-ia64@vger.kernel.org
1723W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001724T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725S: Maintained
1726
1727SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001728P: Jes Sorensen
1729M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730L: linux-altix@sgi.com
1731L: linux-ia64@vger.kernel.org
1732W: http://www.sgi.com/altix
1733S: Maintained
1734
1735IBM MCA SCSI SUBSYSTEM DRIVER
1736P: Michael Lang
1737M: langa2@kph.uni-mainz.de
1738W: http://www.uni-mainz.de/~langm000/linux.html
1739S: Maintained
1740
1741IBM Power Linux RAID adapter
1742P: Brian King
1743M: brking@us.ibm.com
1744S: Supported
1745
1746IBM ServeRAID RAID DRIVER
1747P: Jack Hammer
1748P: Dave Jeffery
1749M: ipslinux@adaptec.com
1750W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001751S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001753IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001755M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001757T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758S: Maintained
1759
1760IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001761P: Alan Cox
1762M: alan@lxorguk.ukuu.org.uk
1763L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764S: Maintained
1765
1766IDE/ATAPI FLOPPY DRIVERS
1767P: Paul Bristow
1768M: Paul Bristow <paul@paulbristow.net>
1769W: http://paulbristow.net/linux/idefloppy.html
1770L: linux-kernel@vger.kernel.org
1771S: Maintained
1772
1773IDE/ATAPI TAPE DRIVERS
1774P: Gadi Oxman
1775M: Gadi Oxman <gadio@netvision.net.il>
1776L: linux-kernel@vger.kernel.org
1777S: Maintained
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779IEEE 1394 SUBSYSTEM
1780P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07001781M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02001782P: Stefan Richter
1783M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784L: linux1394-devel@lists.sourceforge.net
1785W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001786T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787S: Maintained
1788
Stefan Richterf51a5a92007-04-23 14:41:10 -07001789IEEE 1394 RAW I/O DRIVER (raw1394)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790P: Dan Dennedy
1791M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07001792P: Stefan Richter
1793M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001795S: Maintained
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797IMS TWINTURBO FRAMEBUFFER DRIVER
1798P: Paul Mundt
1799M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001800L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801S: Maintained
1802
1803INFINIBAND SUBSYSTEM
1804P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001805M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806P: Sean Hefty
1807M: mshefty@ichips.intel.com
1808P: Hal Rosenstock
1809M: halr@voltaire.com
1810L: openib-general@openib.org
1811W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001812T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813S: Supported
1814
1815INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001816P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001817M: dmitry.torokhov@gmail.com
1818M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819L: linux-input@atrey.karlin.mff.cuni.cz
1820L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001821T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822S: Maintained
1823
Robert Lovec9f04f52005-07-15 12:21:07 -04001824INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001825P: John McCutchan
1826M: ttb@tentacle.dhs.org
1827P: Robert Love
1828M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001829L: linux-kernel@vger.kernel.org
1830S: Maintained
1831
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001832INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001833P: Sylvain Meyer
1834M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001835L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001836S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001839P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001840M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001841L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001842S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1845P: Ingo Molnar
1846M: mingo@redhat.com
1847S: Maintained
1848
1849INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1850P: Jeff Garzik
1851M: jgarzik@pobox.com
1852W: http://sourceforge.net/projects/gkernel/
1853S: Maintained
1854
1855INTEL IA32 MICROCODE UPDATE SUPPORT
1856P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001857M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858S: Maintained
1859
Michael Buesch844dd052006-06-26 00:24:59 -07001860INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1861P: Deepak Saxena
1862M: dsaxena@plexity.net
1863S: Maintained
1864
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001865INTEL IXP2000 ETHERNET DRIVER
1866P: Lennert Buytenhek
1867M: kernel@wantstofly.org
1868L: netdev@vger.kernel.org
1869S: Maintained
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871INTEL PRO/100 ETHERNET SUPPORT
1872P: John Ronciak
1873M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874P: Jesse Brandeburg
1875M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001876P: Jeff Kirsher
1877M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001878P: Auke Kok
1879M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001880L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881W: http://sourceforge.net/projects/e1000/
1882S: Supported
1883
1884INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1885P: Jeb Cramer
1886M: cramerj@intel.com
1887P: John Ronciak
1888M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001889P: Jesse Brandeburg
1890M: jesse.brandeburg@intel.com
1891P: Jeff Kirsher
1892M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001893P: Auke Kok
1894M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001895L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896W: http://sourceforge.net/projects/e1000/
1897S: Supported
1898
1899INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001900P: Jeff Kirsher
1901M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902P: Ayyappan Veeraiyan
1903M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904P: John Ronciak
1905M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001906P: Jesse Brandeburg
1907M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001908P: Auke Kok
1909M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001910L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911W: http://sourceforge.net/projects/e1000/
1912S: Supported
1913
James Ketrenos826d2ab2005-11-07 18:56:59 -06001914INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1915P: Yi Zhu
1916M: yi.zhu@intel.com
1917P: James Ketrenos
1918M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001919L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001920L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001921L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1922W: http://ipw2100.sourceforge.net
1923S: Supported
1924
1925INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1926P: Yi Zhu
1927M: yi.zhu@intel.com
1928P: James Ketrenos
1929M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001930L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001931L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001932L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1933W: http://ipw2200.sourceforge.net
1934S: Supported
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936IOC3 DRIVER
1937P: Ralf Baechle
1938M: ralf@linux-mips.org
1939L: linux-mips@linux-mips.org
1940S: Maintained
1941
1942IP MASQUERADING:
1943P: Juanjo Ciarlante
1944M: jjciarla@raiz.uncu.edu.ar
1945S: Maintained
1946
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001947IPATH DRIVER:
1948P: Bryan O'Sullivan
1949M: support@pathscale.com
1950L: openib-general@openib.org
1951S: Supported
1952
Corey Minyard4409ebe2006-04-20 02:43:12 -07001953IPMI SUBSYSTEM
1954P: Corey Minyard
1955M: minyard@acm.org
1956L: openipmi-developer@lists.sourceforge.net
1957W: http://openipmi.sourceforge.net/
1958S: Supported
1959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960IPX NETWORK LAYER
1961P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001962M: acme@ghostprotocols.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07001963L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964S: Maintained
1965
1966IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001967P: Samuel Ortiz
1968M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001969L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001971S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973ISAPNP
1974P: Jaroslav Kysela
1975M: perex@suse.cz
1976S: Maintained
1977
1978ISDN SUBSYSTEM
1979P: Karsten Keil
1980M: kkeil@suse.de
1981P: Kai Germaschewski
1982M: kai.germaschewski@gmx.de
1983L: isdn4linux@listserv.isdn4linux.de
1984W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001985T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986S: Maintained
1987
1988ISDN SUBSYSTEM (Eicon active card driver)
1989P: Armin Schindler
1990M: mac@melware.de
1991L: isdn4linux@listserv.isdn4linux.de
1992W: http://www.melware.de
1993S: Maintained
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1996P: David Woodhouse
1997M: dwmw2@infradead.org
1998L: jffs-dev@axis.com
1999W: http://sources.redhat.com/jffs2/
2000S: Maintained
2001
2002JFS FILESYSTEM
2003P: Dave Kleikamp
2004M: shaggy@austin.ibm.com
2005L: jfs-discussion@lists.sourceforge.net
2006W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002007T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008S: Supported
2009
Josh Triplettde456d32006-07-30 03:04:00 -07002010JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07002011P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002012M: sct@redhat.com, akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08002013L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07002014S: Maintained
2015
Rudolf Marek4660cb32006-10-08 22:01:26 +02002016K8TEMP HARDWARE MONITORING DRIVER
2017P: Rudolf Marek
2018M: r.marek@assembler.cz
2019L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020S: Maintained
2021
2022KCONFIG
2023P: Roman Zippel
2024M: zippel@linux-m68k.org
2025L: kbuild-devel@lists.sourceforge.net
2026S: Maintained
2027
Vivek Goyalea6c2082006-05-20 14:59:55 -07002028KDUMP
2029P: Vivek Goyal
2030M: vgoyal@in.ibm.com
2031P: Haren Myneni
2032M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07002033L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07002034L: linux-kernel@vger.kernel.org
2035W: http://lse.sourceforge.net/kdump/
2036S: Maintained
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038KERNEL AUTOMOUNTER (AUTOFS)
2039P: H. Peter Anvin
2040M: hpa@zytor.com
2041L: autofs@linux.kernel.org
2042S: Odd Fixes
2043
2044KERNEL AUTOMOUNTER v4 (AUTOFS4)
2045P: Ian Kent
2046M: raven@themaw.net
2047L: autofs@linux.kernel.org
2048S: Maintained
2049
2050KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
2051P: Kai Germaschewski
2052M: kai@germaschewski.name
2053P: Sam Ravnborg
2054M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002055T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002056S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058KERNEL JANITORS
2059P: Several
David Brownellf318a632007-04-23 14:41:06 -07002060L: kernel-janitors@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062S: Maintained
2063
2064KERNEL NFSD
2065P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08002066M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067L: nfs@lists.sourceforge.net
2068W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08002069S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Avi Kivity426d62e2006-12-13 00:34:03 -08002071KERNEL VIRTUAL MACHINE (KVM)
2072P: Avi Kivity
2073M: avi@qumranet.com
2074L: kvm-devel@lists.sourceforge.net
2075W: kvm.sourceforge.net
2076S: Supported
2077
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002078KEXEC
2079P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002080M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002081W: http://www.xmission.com/~ebiederm/files/kexec/
2082L: linux-kernel@vger.kernel.org
Simon Horman34633992007-05-08 00:31:40 -07002083L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002084S: Maintained
2085
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07002086KPROBES
2087P: Prasanna S Panchamukhi
2088M: prasanna@in.ibm.com
2089P: Ananth N Mavinakayanahalli
2090M: ananth@in.ibm.com
2091P: Anil S Keshavamurthy
2092M: anil.s.keshavamurthy@intel.com
2093P: David S. Miller
2094M: davem@davemloft.net
2095L: linux-kernel@vger.kernel.org
2096S: Maintained
2097
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002098KS0108 LCD CONTROLLER DRIVER
2099P: Miguel Ojeda Sandonis
2100M: maxextreme@gmail.com
2101L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -07002102W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002103S: Maintained
2104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002107S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109LASI 53c700 driver for PARISC
2110P: James E.J. Bottomley
2111M: James.Bottomley@HansenPartnership.com
2112L: linux-scsi@vger.kernel.org
2113S: Maintained
2114
Richard Purdie263de9b2006-05-15 09:44:16 -07002115LED SUBSYSTEM
2116P: Richard Purdie
2117M: rpurdie@rpsys.net
2118S: Maintained
2119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120LEGO USB Tower driver
2121P: Juergen Stuber
2122M: starblue@users.sourceforge.net
2123L: legousb-devel@lists.sourceforge.net
2124W: http://legousb.sourceforge.net/
2125S: Maintained
2126
2127LINUX FOR IBM pSERIES (RS/6000)
2128P: Paul Mackerras
2129M: paulus@au.ibm.com
2130W: http://www.ibm.com/linux/ltc/projects/ppc
2131S: Supported
2132
2133LINUX FOR NCR VOYAGER
2134P: James Bottomley
2135M: James.Bottomley@HansenPartnership.com
2136W: http://www.hansenpartnership.com/voyager
2137S: Maintained
2138
2139LINUX FOR POWERPC
2140P: Paul Mackerras
2141M: paulus@samba.org
2142W: http://www.penguinppc.org/
2143L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002144T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145S: Supported
2146
2147LINUX FOR POWER MACINTOSH
2148P: Benjamin Herrenschmidt
2149M: benh@kernel.crashing.org
2150W: http://www.penguinppc.org/
2151L: linuxppc-dev@ozlabs.org
2152S: Maintained
2153
2154LINUX FOR POWERPC EMBEDDED MPC52XX
2155P: Sylvain Munaut
2156M: tnt@246tNt.com
2157W: http://www.246tNt.com/mpc52xx/
2158W: http://www.penguinppc.org/
2159L: linuxppc-dev@ozlabs.org
2160L: linuxppc-embedded@ozlabs.org
2161S: Maintained
2162
2163LINUX FOR POWERPC EMBEDDED PPC4XX
2164P: Matt Porter
2165M: mporter@kernel.crashing.org
2166W: http://www.penguinppc.org/
2167L: linuxppc-embedded@ozlabs.org
2168S: Maintained
2169
Tom Rinie93adf12005-07-26 12:49:53 -07002170LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171P: Tom Rini
2172M: trini@kernel.crashing.org
2173W: http://www.penguinppc.org/
2174L: linuxppc-embedded@ozlabs.org
2175S: Maintained
2176
Tom Rinie93adf12005-07-26 12:49:53 -07002177LINUX FOR POWERPC EMBEDDED PPC8XX
2178P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002179M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002180W: http://www.penguinppc.org/
2181L: linuxppc-embedded@ozlabs.org
2182S: Maintained
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002185P: Kumar Gala
2186M: galak@kernel.crashing.org
2187W: http://www.penguinppc.org/
2188L: linuxppc-embedded@ozlabs.org
2189S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Olof Johanssonab06ff32006-09-06 14:44:54 -05002191LINUX FOR POWERPC PA SEMI PWRFICIENT
2192P: Olof Johansson
2193M: olof@lixom.net
2194W: http://www.pasemi.com/
2195L: linuxppc-dev@ozlabs.org
2196S: Supported
2197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198LLC (802.2)
2199P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002200M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201S: Maintained
2202
2203LINUX FOR 64BIT POWERPC
2204P: Paul Mackerras
2205M: paulus@samba.org
2206M: paulus@au.ibm.com
2207P: Anton Blanchard
2208M: anton@samba.org
2209M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002210W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002211L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212S: Supported
2213
2214LINUX SECURITY MODULE (LSM) FRAMEWORK
2215P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002216M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002217L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002219T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220S: Supported
2221
2222LM83 HARDWARE MONITOR DRIVER
2223P: Jean Delvare
2224M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002225L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226S: Maintained
2227
2228LM90 HARDWARE MONITOR DRIVER
2229P: Jean Delvare
2230M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002231L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232S: Maintained
2233
2234LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2235P: Richard Russon (FlatCap)
2236M: ldm@flatcap.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002237L: ldm-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238W: http://ldm.sourceforge.net
2239S: Maintained
2240
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002241LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2242P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002243M: Eric.Moore@lsi.com
2244M: support@lsi.com
2245L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002246L: linux-scsi@vger.kernel.org
2247W: http://www.lsilogic.com/support
2248S: Supported
2249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2251P: Matthew Wilcox
2252M: matthew@wil.cx
2253L: linux-scsi@vger.kernel.org
2254S: Maintained
2255
2256M68K ARCHITECTURE
2257P: Geert Uytterhoeven
2258M: geert@linux-m68k.org
2259P: Roman Zippel
2260M: zippel@linux-m68k.org
2261L: linux-m68k@lists.linux-m68k.org
2262W: http://www.linux-m68k.org/
2263W: http://linux-m68k-cvs.ubb.ca/
2264S: Maintained
2265
2266M68K ON APPLE MACINTOSH
2267P: Joshua Thompson
2268M: funaho@jurai.org
2269W: http://www.mac.linux-m68k.org/
2270L: linux-mac68k@mac.linux-m68k.org
2271S: Maintained
2272
2273M68K ON HP9000/300
2274P: Philip Blundell
2275M: philb@gnu.org
2276W: http://www.tazenda.demon.co.uk/phil/linux-hp
2277S: Maintained
2278
Jiri Benc64a327a2007-05-05 11:47:08 -07002279MAC80211
2280P: Jiri Benc
2281M: jbenc@suse.cz
2282P: Michael Wu
2283M: flamingice@sourmilk.net
2284L: linux-wireless@vger.kernel.org
2285W: http://linuxwireless.org/
2286T: git kernel.org:/pub/scm/linux/kernel/git/jbenc/mac80211.git
2287S: Maintained
2288
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289MARVELL YUKON / SYSKONNECT DRIVER
2290P: Mirko Lindner
2291M: mlindner@syskonnect.de
2292P: Ralph Roesler
2293M: rroesler@syskonnect.de
2294W: http://www.syskonnect.com
2295S: Supported
2296
Michael Kerriskfaf16682005-07-31 22:34:47 -07002297MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002298P: Michael Kerrisk
2299M: mtk-manpages@gmx.net
2300W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2301S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002302
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002303MARVELL MV643XX ETHERNET DRIVER
2304P: Dale Farnsworth
2305M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002307M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002308L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002309S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311MATROX FRAMEBUFFER DRIVER
2312P: Petr Vandrovec
2313M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002314L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315S: Maintained
2316
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002317MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002318P: Neela Syam Kolli
2319M: Neela.Kolli@engenio.com
2320S: linux-scsi@vger.kernel.org
2321W: http://megaraid.lsilogic.com
2322S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002323
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002324MEMORY MANAGEMENT
2325L: linux-mm@kvack.org
2326L: linux-kernel@vger.kernel.org
2327W: http://www.linux-mm.org
2328S: Maintained
2329
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002330MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331P: David Woodhouse
2332M: dwmw2@infradead.org
2333W: http://www.linux-mtd.infradead.org/
2334L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002335T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336S: Maintained
2337
Artem Bityutskiy48576402007-02-13 17:11:10 +02002338UNSORTED BLOCK IMAGES (UBI)
2339P: Artem Bityutskiy
2340M: dedekind@infradead.org
2341W: http://www.linux-mtd.infradead.org/
2342L: linux-mtd@lists.infradead.org
2343T: git git://git.infradead.org/ubi-2.6.git
2344S: Maintained
2345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346MICROTEK X6 SCANNER
2347P: Oliver Neukum
2348M: oliver@neukum.name
2349S: Maintained
2350
2351MIPS
2352P: Ralf Baechle
2353M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002354W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002356T: git www.linux-mips.org:/pub/scm/linux.git
2357S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359MISCELLANEOUS MCA-SUPPORT
2360P: James Bottomley
2361M: jejb@steeleye.com
2362L: linux-kernel@vger.kernel.org
2363S: Maintained
2364
2365MODULE SUPPORT
2366P: Rusty Russell
2367M: rusty@rustcorp.com.au
2368L: linux-kernel@vger.kernel.org
2369S: Maintained
2370
2371MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2372P: Stelian Pop
2373M: stelian@popies.net
2374W: http://popies.net/meye/
2375S: Maintained
2376
2377MOUSE AND MISC DEVICES [GENERAL]
2378P: Alessandro Rubini
2379M: rubini@ipvvis.unipv.it
2380L: linux-kernel@vger.kernel.org
2381S: Maintained
2382
Jiri Slabyd7354102006-12-08 02:38:35 -08002383MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2384P: Jiri Slaby
2385M: jirislaby@gmail.com
2386L: linux-kernel@vger.kernel.org
2387S: Maintained
2388
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002389MSI LAPTOP SUPPORT
2390P: Lennart Poettering
2391M: mzxreary@0pointer.de
2392L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2393W: http://0pointer.de/lennart/tchibo.html
2394S: Maintained
2395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396MTRR AND SIMILAR SUPPORT [i386]
2397P: Richard Gooch
2398M: rgooch@atnf.csiro.au
2399L: linux-kernel@vger.kernel.org
2400W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2401S: Maintained
2402
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002403MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2404P: Pierre Ossman
2405M: drzeus-mmc@drzeus.cx
2406L: linux-kernel@vger.kernel.org
2407S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409MULTISOUND SOUND DRIVER
2410P: Andrew Veliath
2411M: andrewtv@usa.net
2412S: Maintained
2413
Jiri Slabyd7354102006-12-08 02:38:35 -08002414MULTITECH MULTIPORT CARD (ISICOM)
2415P: Jiri Slaby
2416M: jirislaby@gmail.com
2417L: linux-kernel@vger.kernel.org
2418S: Maintained
2419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420NATSEMI ETHERNET DRIVER (DP8381x)
2421P: Tim Hockin
2422M: thockin@hockin.org
2423S: Maintained
2424
2425NCP FILESYSTEM
2426P: Petr Vandrovec
2427M: vandrove@vc.cvut.cz
2428L: linware@sh.cvut.cz
2429S: Maintained
2430
2431NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2432P: James E.J. Bottomley
2433M: James.Bottomley@HansenPartnership.com
2434L: linux-scsi@vger.kernel.org
2435S: Maintained
2436
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002437NETEM NETWORK EMULATOR
2438P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002439M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002440L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002441S: Maintained
2442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443NETFILTER/IPTABLES/IPCHAINS
2444P: Rusty Russell
2445P: Marc Boucher
2446P: James Morris
2447P: Harald Welte
2448P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002449P: Patrick McHardy
2450M: kaber@trash.net
2451L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002452L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002453L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454W: http://www.netfilter.org/
2455W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456S: Supported
2457
Paul Moore4cc67732006-09-25 15:57:13 -07002458NETLABEL
2459P: Paul Moore
2460M: paul.moore@hp.com
2461W: http://netlabel.sf.net
2462L: netdev@vger.kernel.org
2463S: Supported
2464
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465NETROM NETWORK LAYER
2466P: Ralf Baechle
2467M: ralf@linux-mips.org
2468L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002469W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470S: Maintained
2471
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002472NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473P: Paul Clements
2474M: Paul.Clements@steeleye.com
2475S: Maintained
2476
2477NETWORK DEVICE DRIVERS
2478P: Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002479M: akpm@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480P: Jeff Garzik
2481M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002482L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002483T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484S: Maintained
2485
2486NETWORKING [GENERAL]
2487P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002488M: netdev@vger.kernel.org
2489L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002490W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491S: Maintained
2492
2493NETWORKING [IPv4/IPv6]
2494P: David S. Miller
2495M: davem@davemloft.net
2496P: Alexey Kuznetsov
2497M: kuznet@ms2.inr.ac.ru
2498P: Pekka Savola (ipv6)
2499M: pekkas@netcore.fi
2500P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002501M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502P: Hideaki YOSHIFUJI
2503M: yoshfuji@linux-ipv6.org
2504P: Patrick McHardy
2505M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002506L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002507T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508S: Maintained
2509
John W. Linville29f8f632006-01-18 14:52:48 -08002510NETWORKING [WIRELESS]
2511P: John W. Linville
2512M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002513L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002514T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2515S: Maintained
2516
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002517NETXEN (1/10) GbE SUPPORT
2518P: Amit S. Kale
2519M: amitkale@netxen.com
2520L: netdev@vger.kernel.org
2521W: http://www.netxen.com
2522S: Supported
2523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524IPVS
2525P: Wensong Zhang
2526M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002527P: Simon Horman
2528M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529P: Julian Anastasov
2530M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002531L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532S: Maintained
2533
2534NFS CLIENT
2535P: Trond Myklebust
2536M: trond.myklebust@fys.uio.no
2537L: linux-kernel@vger.kernel.org
2538S: Maintained
2539
2540NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002541P: Jan-Pascal van Best
2542M: janpascal@vanbest.org
2543P: Andreas Mohr
2544M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002545L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546S: Maintained
2547
2548NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2549P: YOKOTA Hiroshi
2550M: yokota@netlab.is.tsukuba.ac.jp
2551W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2552S: Maintained
2553
2554NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2555P: GOTO Masanori
2556M: gotom@debian.or.jp
2557P: YOKOTA Hiroshi
2558M: yokota@netlab.is.tsukuba.ac.jp
2559W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2560S: Maintained
2561
2562NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2563P: Eberhard Moenkeberg
2564M: emoenke@gwdg.de
2565L: linux-kernel@vger.kernel.org
2566S: Maintained
2567
2568NTFS FILESYSTEM
2569P: Anton Altaparmakov
2570M: aia21@cantab.net
2571L: linux-ntfs-dev@lists.sourceforge.net
2572L: linux-kernel@vger.kernel.org
2573W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002574T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575S: Maintained
2576
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002577NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002578P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002579M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002580L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002581S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Ramkrishna Vepa3ef34b82007-03-30 18:42:27 -07002583NETERION (S2IO) Xframe 10GbE DRIVER
2584P: Ramkrishna Vepa
2585M: ram.vepa@neterion.com
2586P: Rastapur Santosh
2587M: santosh.rastapur@neterion.com
2588P: Sivakumar Subramani
2589M: sivakumar.subramani@neterion.com
2590P: Sreenivasa Honnur
2591M: sreenivasa.honnur@neterion.com
2592L: netdev@vger.kernel.org
2593W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/TitleIndex?anonymous
2594S: Supported
2595
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002596OPENCORES I2C BUS DRIVER
2597P: Peter Korsgaard
2598M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002599L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002600S: Maintained
2601
Mark Fashehccd979b2005-12-15 14:31:24 -08002602ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2603P: Mark Fasheh
2604M: mark.fasheh@oracle.com
2605P: Kurt Hackel
2606M: kurt.hackel@oracle.com
2607L: ocfs2-devel@oss.oracle.com
2608W: http://oss.oracle.com/projects/ocfs2/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002609S: Supported
Mark Fashehccd979b2005-12-15 14:31:24 -08002610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611OLYMPIC NETWORK DRIVER
2612P: Peter De Shrijver
2613M: p2@ace.ulyssis.student.kuleuven.ac.be
2614P: Mike Phillips
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002615M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002616L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617L: linux-tr@linuxtr.net
2618W: http://www.linuxtr.net
2619S: Maintained
2620
Harald Weltec1986ee2005-11-13 16:06:29 -08002621OMNIKEY CARDMAN 4000 DRIVER
2622P: Harald Welte
2623M: laforge@gnumonks.org
2624S: Maintained
2625
Harald Welte77c44ab2005-11-13 16:06:26 -08002626OMNIKEY CARDMAN 4040 DRIVER
2627P: Harald Welte
2628M: laforge@gnumonks.org
2629S: Maintained
2630
Jonathan Corbet77d51402007-03-22 19:44:17 -03002631OMNIVISION OV7670 SENSOR DRIVER
2632P: Jonathan Corbet
2633M: corbet@lwn.net
2634L: video4linux-list@redhat.com
2635S: Maintained
2636
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637ONSTREAM SCSI TAPE DRIVER
2638P: Willem Riede
2639M: osst@riede.org
2640L: osst-users@lists.sourceforge.net
2641L: linux-scsi@vger.kernel.org
2642S: Maintained
2643
2644OPL3-SA2, SA3, and SAx DRIVER
2645P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002646M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647L: linux-sound@vger.kernel.org
2648S: Maintained
2649
2650OPROFILE
2651P: Philippe Elie
2652M: phil.el@wanadoo.fr
2653L: oprofile-list@lists.sf.net
2654S: Maintained
2655
2656ORINOCO DRIVER
2657P: Pavel Roskin
2658M: proski@gnu.org
2659P: David Gibson
2660M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07002661L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07002662L: orinoco-users@lists.sourceforge.net
2663L: orinoco-devel@lists.sourceforge.net
2664W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665S: Maintained
2666
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002667PA SEMI ETHERNET DRIVER
2668P: Olof Johansson
2669M: olof@lixom.net
2670L: netdev@vger.kernel.org
2671S: Maintained
2672
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002673PA SEMI SMBUS DRIVER
2674P: Olof Johansson
2675M: olof@lixom.net
2676L: i2c@lm-sensors.org
2677S: Maintained
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679PARALLEL PORT SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680L: linux-parport@lists.infradead.org
David Brownell5fdc2ab2007-03-05 00:30:13 -08002681S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
2683PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2684P: Tim Waugh
2685M: tim@cyberelk.net
2686L: linux-parport@lists.infradead.org
2687W: http://www.torque.net/linux-pp.html
2688S: Maintained
2689
2690PARISC ARCHITECTURE
2691P: Matthew Wilcox
2692M: matthew@wil.cx
2693P: Grant Grundler
2694M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002695P: Kyle McMartin
2696M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697L: parisc-linux@parisc-linux.org
2698W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002699T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2700T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701S: Maintained
2702
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02002703PARAVIRT_OPS INTERFACE
2704P: Jeremy Fitzhardinge
2705M: jeremy@xensource.com
2706P: Chris Wright
2707M: chrisw@sous-sol.org
2708P: Zachary Amsden
2709M: zach@vmware.com
2710P: Rusty Russell
2711M: rusty@rustcorp.com.au
2712L: virtualization@lists.osdl.org
2713L: linux-kernel@vger.kernel.org
2714S: Supported
2715
Jim Cromie1662d322006-10-06 00:43:59 -07002716PC87360 HARDWARE MONITORING DRIVER
2717P: Jim Cromie
2718M: jim.cromie@gmail.com
2719L: lm-sensors@lm-sensors.org
2720S: Maintained
2721
2722PC8736x GPIO DRIVER
2723P: Jim Cromie
2724M: jim.cromie@gmail.com
2725S: Maintained
2726
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002727PCI ERROR RECOVERY
2728P: Linas Vepstas
2729M: linas@austin.ibm.com
2730L: linux-kernel@vger.kernel.org
2731L: linux-pci@atrey.karlin.mff.cuni.cz
2732S: Supported
2733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2735P: Thomas Sailer
2736M: sailer@ife.ee.ethz.ch
2737L: linux-sound@vger.kernel.org
2738W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2739S: Maintained
2740
2741PCI SUBSYSTEM
2742P: Greg Kroah-Hartman
2743M: gregkh@suse.de
2744L: linux-kernel@vger.kernel.org
2745L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002746T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747S: Supported
2748
2749PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002750P: Kristen Carlson Accardi
2751M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752S: Supported
2753
2754PCI HOTPLUG COMPAQ DRIVER
2755P: Greg Kroah-Hartman
2756M: greg@kroah.com
2757S: Maintained
2758
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002759PCIE HOTPLUG DRIVER
2760P: Kristen Carlson Accardi
2761M: kristen.c.accardi@intel.com
2762L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002763S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002764
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002766P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002767L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002769T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002770S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
2772PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002773P: Don Fry
2774M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002775L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776S: Maintained
2777
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002778PER-TASK DELAY ACCOUNTING
2779P: Shailabh Nagar
2780M: nagar@watson.ibm.com
2781L: linux-kernel@vger.kernel.org
2782S: Maintained
2783
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002784PERSONALITY HANDLING
2785P: Christoph Hellwig
2786M: hch@infradead.org
2787L: linux-abi-devel@lists.sourceforge.net
2788S: Maintained
2789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790PHRAM MTD DRIVER
2791P: Jörn Engel
2792M: joern@wh.fh-wedel.de
2793L: linux-mtd@lists.infradead.org
2794S: Maintained
2795
Peter Osterlund249a6772005-09-27 21:45:30 -07002796PKTCDVD DRIVER
2797P: Peter Osterlund
2798M: petero2@telia.com
2799L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002800S: Maintained
2801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802POSIX CLOCKS and TIMERS
2803P: George Anzinger
2804M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002805L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806S: Supported
2807
Eugene Surovegin24682972005-10-14 03:00:53 -07002808POWERPC 4xx EMAC DRIVER
2809P: Eugene Surovegin
2810M: ebs@ebshome.net
2811W: http://kernel.ebshome.net/emac/
2812L: linuxppc-embedded@ozlabs.org
2813L: netdev@vger.kernel.org
2814S: Maintained
2815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816PNP SUPPORT
2817P: Adam Belay
2818M: ambx1@neo.rr.com
2819S: Maintained
2820
Vitaly Wool999445d2007-01-04 13:07:03 +01002821PNXxxxx I2C DRIVER
2822P: Vitaly Wool
2823M: vitalywool@gmail.com
2824L: i2c@lm-sensors.org
2825S: Maintained
2826
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827PPP PROTOCOL DRIVERS AND COMPRESSORS
2828P: Paul Mackerras
2829M: paulus@samba.org
2830L: linux-ppp@vger.kernel.org
2831S: Maintained
2832
2833PPP OVER ATM (RFC 2364)
2834P: Mitchell Blank Jr
2835M: mitch@sfgoth.com
2836S: Maintained
2837
2838PPP OVER ETHERNET
2839P: Michal Ostrowski
2840M: mostrows@speakeasy.net
2841S: Maintained
2842
2843PREEMPTIBLE KERNEL
2844P: Robert Love
2845M: rml@tech9.net
2846L: linux-kernel@vger.kernel.org
2847L: kpreempt-tech@lists.sourceforge.net
2848W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2849S: Supported
2850
2851PRISM54 WIRELESS DRIVER
2852P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002853M: developers@islsm.org
Johannes Berg724c6b32007-04-23 12:18:20 -07002854L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855W: http://prism54.org
2856S: Maintained
2857
2858PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2859P: Peter Denison
2860M: promise@pnd-pc.demon.co.uk
2861W: http://www.pnd-pc.demon.co.uk/promise/
2862S: Maintained
2863
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002864PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2865P: Mikael Pettersson
2866M: mikpe@it.uu.se
2867L: linux-ide@vger.kernel.org
2868S: Maintained
2869
Geoff Levandf58a9d12006-11-23 00:46:51 +01002870PS3 PLATFORM SUPPORT
2871P: Geoff Levand
2872M: geoffrey.levand@am.sony.com
2873L: linuxppc-dev@ozlabs.org
2874L: cbe-oss-dev@ozlabs.org
2875S: Supported
2876
Michael Krufky83202042006-07-03 00:24:18 -07002877PVRUSB2 VIDEO4LINUX DRIVER
2878P: Mike Isely
2879M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03002880L: pvrusb2@isely.net (subscribers-only)
Michael Krufky83202042006-07-03 00:24:18 -07002881L: video4linux-list@redhat.com
2882W: http://www.isely.net/pvrusb2/
2883S: Maintained
2884
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885PXA2xx SUPPORT
2886P: Nicolas Pitre
2887M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002888L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889S: Maintained
2890
2891QLOGIC QLA2XXX FC-SCSI DRIVER
2892P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002893M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894L: linux-scsi@vger.kernel.org
2895S: Supported
2896
Ron Mercer5a4faa872006-07-25 00:40:21 -07002897QLOGIC QLA3XXX NETWORK DRIVER
2898P: Ron Mercer
2899M: linux-driver@qlogic.com
2900L: netdev@vger.kernel.org
2901S: Supported
2902
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903QNX4 FILESYSTEM
2904P: Anders Larsen
2905M: al@alarsen.net
2906L: linux-kernel@vger.kernel.org
2907W: http://www.alarsen.net/linux/qnx4fs/
2908S: Maintained
2909
2910RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002911P: Benjamin Herrenschmidt
2912M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002913L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914S: Maintained
2915
2916RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002917P: Paul Mackerras
2918M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002919L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920S: Maintained
2921
2922RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2923P: Corey Thomas
2924M: corey@world.std.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002925L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926S: Maintained
2927
Matt Mackall9e95ce22005-04-16 15:25:56 -07002928RANDOM NUMBER DRIVER
2929P: Matt Mackall
2930M: mpm@selenic.com
2931S: Maintained
2932
Matt Porter394b7012005-11-07 01:00:15 -08002933RAPIDIO SUBSYSTEM
2934P: Matt Porter
2935M: mporter@kernel.crashing.org
2936L: linux-kernel@vger.kernel.org
2937S: Maintained
2938
Josh Triplett595182b2006-10-04 02:17:21 -07002939READ-COPY UPDATE (RCU)
2940P: Dipankar Sarma
2941M: dipankar@in.ibm.com
2942W: http://www.rdrop.com/users/paulmck/rclock/
2943L: linux-kernel@vger.kernel.org
2944S: Supported
2945
2946RCUTORTURE MODULE
2947P: Josh Triplett
2948M: josh@freedesktop.org
2949L: linux-kernel@vger.kernel.org
2950S: Maintained
2951
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952REAL TIME CLOCK DRIVER
2953P: Paul Gortmaker
2954M: p_gortmaker@yahoo.com
2955L: linux-kernel@vger.kernel.org
2956S: Maintained
2957
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002958REAL TIME CLOCK (RTC) SUBSYSTEM
2959P: Alessandro Zummo
2960M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002961L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002962S: Maintained
2963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964REISERFS FILE SYSTEM
2965P: Hans Reiser
2966M: reiserfs-dev@namesys.com
2967L: reiserfs-list@namesys.com
2968W: http://www.namesys.com
2969S: Supported
2970
2971ROCKETPORT DRIVER
2972P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973W: http://www.comtrol.com
2974S: Maintained
2975
2976ROSE NETWORK LAYER
2977P: Ralf Baechle
2978M: ralf@linux-mips.org
2979L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002980W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981S: Maintained
2982
2983RISCOM8 DRIVER
2984S: Orphan
2985
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002986S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002987P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002988M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002989L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002990S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992S390
2993P: Martin Schwidefsky
2994M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002995P: Heiko Carstens
2996M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002998L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002999W: http://www.ibm.com/developerworks/linux/linux390/
3000S: Supported
3001
3002S390 NETWORK DRIVERS
3003P: Frank Pavlic
3004M: fpavlic@de.ibm.com
3005M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01003006L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003007W: http://www.ibm.com/developerworks/linux/linux390/
3008S: Supported
3009
3010S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02003011P: Swen Schillig
3012M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08003013M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01003014L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003015W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016S: Supported
3017
3018SAA7146 VIDEO4LINUX-2 DRIVER
3019P: Michael Hunold
3020M: michael@mihu.de
3021W: http://www.mihu.de/linux/saa7146
3022S: Maintained
3023
3024SBPCD CDROM DRIVER
3025P: Eberhard Moenkeberg
3026M: emoenke@gwdg.de
3027L: linux-kernel@vger.kernel.org
3028S: Maintained
3029
3030SC1200 WDT DRIVER
3031P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07003032M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033S: Maintained
3034
3035SCHEDULER
3036P: Ingo Molnar
3037M: mingo@elte.hu
3038P: Robert Love [the preemptible kernel bits]
3039M: rml@tech9.net
3040L: linux-kernel@vger.kernel.org
3041S: Maintained
3042
3043SCSI CDROM DRIVER
3044P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003045M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046L: linux-scsi@vger.kernel.org
3047W: http://www.kernel.dk
3048S: Maintained
3049
3050SCSI SG DRIVER
3051P: Doug Gilbert
3052M: dgilbert@interlog.com
3053L: linux-scsi@vger.kernel.org
3054W: http://www.torque.net/sg
3055S: Maintained
3056
3057SCSI SUBSYSTEM
3058P: James E.J. Bottomley
3059M: James.Bottomley@SteelEye.com
3060L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003061T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062S: Maintained
3063
3064SCSI TAPE DRIVER
3065P: Kai Mäkisara
3066M: Kai.Makisara@kolumbus.fi
3067L: linux-scsi@vger.kernel.org
3068S: Maintained
3069
3070SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003071P: Vlad Yasevich
3072M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01003073P: Sridhar Samudrala
3074M: sri@us.ibm.com
3075L: lksctp-developers@lists.sourceforge.net
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003076W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01003077S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078
3079SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07003080P: Jim Cromie
3081M: jim.cromie@gmail.com
3082S: Odd Fixes
3083
3084SCx200 GPIO DRIVER
3085P: Jim Cromie
3086M: jim.cromie@gmail.com
3087S: Maintained
3088
3089SCx200 HRT CLOCKSOURCE DRIVER
3090P: Jim Cromie
3091M: jim.cromie@gmail.com
3092S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
3094SECURITY CONTACT
3095P: Security Officers
3096M: security@kernel.org
3097S: Supported
3098
3099SELINUX SECURITY MODULE
3100P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08003101M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04003103M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05003104P: Eric Paris
3105M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106L: linux-kernel@vger.kernel.org (kernel issues)
Stephen Smalley588a3152007-02-23 09:20:09 -05003107L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108W: http://www.nsa.gov/selinux
3109S: Supported
3110
Jiri Slabycef2cf02007-05-08 00:31:45 -07003111SENSABLE PHANTOM
3112P: Jiri Slaby
3113M: jirislaby@gmail.com
3114S: Maintained
3115
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116SERIAL ATA (SATA) SUBSYSTEM:
3117P: Jeff Garzik
3118M: jgarzik@pobox.com
3119L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003120T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121S: Supported
3122
3123SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
3124P: Pat Gefre
3125M: pfg@sgi.com
3126L: linux-ia64@vger.kernel.org
3127S: Supported
3128
3129SGI VISUAL WORKSTATION 320 AND 540
3130P: Andrey Panin
3131M: pazke@donpac.ru
3132L: linux-visws-devel@lists.sf.net
3133W: http://linux-visws.sf.net
3134S: Maintained for 2.6.
3135
3136SIMTEC EB110ATX (Chalice CATS)
3137P: Ben Dooks
3138P: Vincent Sanders
3139M: support@simtec.co.uk
3140W: http://www.simtec.co.uk/products/EB110ATX/
3141S: Supported
3142
3143SIMTEC EB2410ITX (BAST)
3144P: Ben Dooks
3145P: Vincent Sanders
3146M: support@simtec.co.uk
3147W: http://www.simtec.co.uk/products/EB2410ITX/
3148S: Supported
3149
Francois Romieu92aab3c2005-07-30 13:11:18 +02003150SIS 190 ETHERNET DRIVER
3151P: Francois Romieu
3152M: romieu@fr.zoreil.com
3153L: netdev@vger.kernel.org
3154S: Maintained
3155
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156SIS 5513 IDE CONTROLLER DRIVER
3157P: Lionel Bouton
3158M: Lionel.Bouton@inet6.fr
3159W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3160W: http://gyver.homeip.net/sis5513/index.html
3161S: Maintained
3162
3163SIS 900/7016 FAST ETHERNET DRIVER
3164P: Daniele Venzano
3165M: venza@brownhat.org
3166W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003167L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168S: Maintained
3169
3170SIS FRAMEBUFFER DRIVER
3171P: Thomas Winischhofer
3172M: thomas@winischhofer.net
3173W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003174S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
3176SIS USB2VGA DRIVER
3177P: Thomas Winischhofer
3178M: thomas@winischhofer.net
3179W: http://www.winischhofer.at/linuxsisusbvga.shtml
3180S: Maintained
3181
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182SMC91x ETHERNET DRIVER
3183P: Nicolas Pitre
3184M: nico@cam.org
3185S: Maintained
3186
Daniel Drake8f0f8502006-07-18 22:00:25 +01003187SOFTMAC LAYER (IEEE 802.11)
3188P: Johannes Berg
3189M: johannes@sipsolutions.net
3190P: Joe Jezak
3191M: josejx@gentoo.org
3192P: Daniel Drake
3193M: dsd@gentoo.org
3194W: http://softmac.sipsolutions.net/
Johannes Berg724c6b32007-04-23 12:18:20 -07003195L: linux-wireless@vger.kernel.org
Daniel Drake8f0f8502006-07-18 22:00:25 +01003196S: Maintained
3197
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198SOFTWARE RAID (Multiple Disks) SUPPORT
3199P: Ingo Molnar
3200M: mingo@redhat.com
3201P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003202M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003204S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
3206SOFTWARE SUSPEND:
3207P: Pavel Machek
3208M: pavel@suse.cz
David Brownellf318a632007-04-23 14:41:06 -07003209L: linux-pm@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210S: Maintained
3211
3212SONIC NETWORK DRIVER
3213P: Thomas Bogendoerfer
3214M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003215L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216S: Maintained
3217
3218SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01003219P: Mattia Dongili
3220M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01003221L: linux-acpi@vger.kernel.org
3222W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223S: Maintained
3224
3225SOUND
3226P: Jaroslav Kysela
3227M: perex@suse.cz
3228L: alsa-devel@alsa-project.org
3229S: Maintained
3230
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003231SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3232P: Liam Girdwood
3233M: liam.girdwood@wolfsonmicro.com
3234L: alsa-devel@alsa-project.org
3235S: Supported
3236
Kumar Gala025c3982006-04-02 16:05:54 -05003237SPI SUBSYSTEM
3238P: David Brownell
3239M: dbrownell@users.sourceforge.net
3240L: spi-devel-general@lists.sourceforge.net
3241S: Maintained
3242
Steven Rostedt855f46a2006-08-05 12:14:50 -07003243STABLE BRANCH:
3244P: Greg Kroah-Hartman
3245M: greg@kroah.com
3246P: Chris Wright
3247M: chrisw@sous-sol.org
3248L: stable@kernel.org
3249S: Maintained
3250
Kylene Hall1c72d462005-05-01 08:59:13 -07003251TPM DEVICE DRIVER
3252P: Kylene Hall
3253M: kjhall@us.ibm.com
3254W: http://tpmdd.sourceforge.net
Marcel Selhorstd3a7b6d2007-03-16 13:38:31 -08003255P: Marcel Selhorst
3256M: tpm@selhorst.net
3257W: http://www.prosec.rub.de/tpm/
Kylene Hall1c72d462005-05-01 08:59:13 -07003258L: tpmdd-devel@lists.sourceforge.net
3259S: Maintained
3260
Mark Gross1a80ba82005-10-30 15:02:55 -08003261Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003262P: Mark Gross
3263M: mark.gross@intel.com
3264S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003265
Chris Zankel48b415c2005-06-23 22:01:07 -07003266TENSILICA XTENSA PORT (xtensa):
3267P: Chris Zankel
3268M: chris@zankel.net
3269S: Maintained
3270
Henrique de Moraes Holschuh756970a2007-03-29 01:58:44 -03003271THINKPAD ACPI EXTRAS DRIVER
3272P: Henrique de Moraes Holschuh
3273M: ibm-acpi@hmh.eng.br
3274L: ibm-acpi-devel@lists.sourceforge.net
3275W: http://ibm-acpi.sourceforge.net
3276W: http://thinkwiki.org/wiki/Ibm-acpi
3277T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
3278S: Maintained
3279
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280UltraSPARC (sparc64):
3281P: David S. Miller
3282M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003284T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285S: Maintained
3286
3287SHARP LH SUPPORT (LH7952X & LH7A40X)
3288P: Marc Singer
3289M: elf@buici.com
3290W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003291L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292S: Maintained
3293
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003294SHPC HOTPLUG DRIVER
3295P: Kristen Carlson Accardi
3296M: kristen.c.accardi@intel.com
3297L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003298S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003299
Pierre Ossmand129bce2006-03-24 03:18:17 -08003300SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3301P: Pierre Ossman
3302M: drzeus-sdhci@drzeus.cx
3303L: sdhci-devel@list.drzeus.cx
3304W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3305S: Maintained
3306
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003307SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3308P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003309M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003310L: netdev@vger.kernel.org
3311S: Maintained
3312
Chris Boot1a87d942006-07-10 04:45:34 -07003313SOEKRIS NET48XX LED SUPPORT
3314P: Chris Boot
3315M: bootc@bootc.net
3316S: Maintained
3317
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318SPARC (sparc32):
3319P: William L. Irwin
3320M: wli@holomorphy.com
3321L: sparclinux@vger.kernel.org
3322S: Maintained
3323
3324SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3325P: Roger Wolff
3326M: R.E.Wolff@BitWizard.nl
3327L: linux-kernel@vger.kernel.org ?
3328S: Supported
3329
Jim Lewis2752e402006-09-29 02:01:19 -07003330SPIDERNET NETWORK DRIVER for CELL
Linas Vepstasfa302482007-02-20 16:45:27 -06003331P: Linas Vepstas
3332M: linas@austin.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07003333L: netdev@vger.kernel.org
3334S: Supported
3335
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336SRM (Alpha) environment access
3337P: Jan-Benedict Glaw
3338M: jbglaw@lug-owl.de
3339L: linux-kernel@vger.kernel.org
3340S: Maintained
3341
3342STARFIRE/DURALAN NETWORK DRIVER
3343P: Ion Badulescu
3344M: ionut@cs.columbia.edu
3345S: Maintained
3346
3347STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3348W: http://mosquitonet.Stanford.EDU/strip.html
3349S: Unsupported ?
3350
3351STRADIS MPEG-2 DECODER DRIVER
3352P: Nathan Laredo
3353M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354W: http://www.stradis.com/
3355S: Maintained
3356
3357SUPERH (sh)
3358P: Paul Mundt
3359M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003360L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362S: Maintained
3363
3364SUPERH64 (sh64)
3365P: Paul Mundt
3366M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367L: linuxsh-shmedia-dev@lists.sourceforge.net
3368W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369S: Maintained
3370
3371SUN3/3X
3372P: Sam Creasey
3373M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374W: http://sammy.net/sun3/
3375S: Maintained
3376
3377SVGA HANDLING
3378P: Martin Mares
3379M: mj@ucw.cz
3380L: linux-video@atrey.karlin.mff.cuni.cz
3381S: Maintained
3382
3383SYSV FILESYSTEM
3384P: Christoph Hellwig
3385M: hch@infradead.org
3386S: Maintained
3387
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003388TC CLASSIFIER
3389P: Jamal Hadi Salim
3390M: hadi@cyberus.ca
3391L: netdev@vger.kernel.org
3392S: Maintained
3393
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003394TCP LOW PRIORITY MODULE
3395P: Wong Hoi Sing, Edison
3396M: hswong3i@gmail.com
3397P: Hung Hing Lun, Mike
3398M: hlhung3i@gmail.com
3399W: http://tcp-lp-mod.sourceforge.net/
3400S: Maintained
3401
Alex Dubov4020f2d2006-10-04 02:15:37 -07003402TI FLASH MEDIA INTERFACE DRIVER
3403P: Alex Dubov
3404M: oakad@yahoo.com
3405S: Maintained
3406
Michael Buesch844dd052006-06-26 00:24:59 -07003407TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3408P: Deepak Saxena
3409M: dsaxena@plexity.net
3410S: Maintained
3411
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003412TASKSTATS STATISTICS INTERFACE
3413P: Shailabh Nagar
3414M: nagar@watson.ibm.com
3415L: linux-kernel@vger.kernel.org
3416S: Maintained
3417
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003419P: Romain Lievin
3420M: roms@lpg.ticalc.org
3421S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422
Per Lidene86eaa32006-01-12 16:45:18 +01003423TIPC NETWORK LAYER
3424P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003425M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003426P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003427M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003428P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003429M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003430L: tipc-discussion@lists.sourceforge.net
3431W: http://tipc.sourceforge.net/
3432W: http://tipc.cslab.ericsson.net/
3433T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3434S: Maintained
3435
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436TLAN NETWORK DRIVER
3437P: Samuel Chessman
3438M: chessman@tux.org
3439L: tlan-devel@lists.sourceforge.net
3440W: http://sourceforge.net/projects/tlan/
3441S: Maintained
3442
3443TOKEN-RING NETWORK DRIVER
3444P: Mike Phillips
3445M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003446L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447L: linux-tr@linuxtr.net
3448W: http://www.linuxtr.net
3449S: Maintained
3450
3451TOSHIBA ACPI EXTRAS DRIVER
3452P: John Belmonte
3453M: toshiba_acpi@memebeam.org
3454W: http://memebeam.org/toys/ToshibaAcpiDriver
3455S: Maintained
3456
3457TOSHIBA SMM DRIVER
3458P: Jonathan Buzzard
3459M: jonathan@buzzard.org.uk
3460L: tlinux-users@tce.toshiba-dme.co.jp
3461W: http://www.buzzard.org.uk/toshiba/
3462S: Maintained
3463
3464TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3465P: Muli Ben-Yehuda
3466M: mulix@mulix.org
3467L: linux-kernel@vger.kernel.org
3468S: Maintained
3469
3470TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003471P: Adrian Bunk
3472M: trivial@kernel.org
3473L: linux-kernel@vger.kernel.org
3474W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3475T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3476S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
3478TMS380 TOKEN-RING NETWORK DRIVER
3479P: Adam Fritzler
3480M: mid@auk.cx
3481L: linux-tr@linuxtr.net
3482W: http://www.auk.cx/tms380tr/
3483S: Maintained
3484
3485TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003486P: Valerie Henson
3487M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488L: tulip-users@lists.sourceforge.net
3489W: http://sourceforge.net/projects/tulip/
3490S: Maintained
3491
3492TUN/TAP driver
3493P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003494M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495L: vtun@office.satix.net
3496W: http://vtun.sourceforge.net/tun
3497S: Maintained
3498
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003499TURBOCHANNEL SUBSYSTEM
3500P: Maciej W. Rozycki
3501M: macro@linux-mips.org
3502S: Maintained
3503
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504U14-34F SCSI DRIVER
3505P: Dario Ballabio
3506M: ballabio_dario@emc.com
3507L: linux-scsi@vger.kernel.org
3508S: Maintained
3509
3510UDF FILESYSTEM
3511P: Ben Fennema
3512M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513W: http://linux-udf.sourceforge.net
3514S: Maintained
3515
3516UNIFORM CDROM DRIVER
3517P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003518M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519L: linux-kernel@vger.kernel.org
3520W: http://www.kernel.dk
3521S: Maintained
3522
3523USB ACM DRIVER
3524P: Oliver Neukum
3525M: oliver@neukum.name
3526L: linux-usb-users@lists.sourceforge.net
3527L: linux-usb-devel@lists.sourceforge.net
3528S: Maintained
3529
3530USB BLOCK DRIVER (UB ub)
3531P: Pete Zaitcev
3532M: zaitcev@redhat.com
3533L: linux-kernel@vger.kernel.org
3534L: linux-usb-devel@lists.sourceforge.net
3535S: Supported
3536
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537USB CDC ETHERNET DRIVER
3538P: Greg Kroah-Hartman
3539M: greg@kroah.com
3540L: linux-usb-users@lists.sourceforge.net
3541L: linux-usb-devel@lists.sourceforge.net
3542S: Maintained
3543W: http://www.kroah.com/linux-usb/
3544
Peter Korsgaardd0374f42007-02-16 17:03:54 +01003545USB DAVICOM DM9601 DRIVER
3546P: Peter Korsgaard
3547M: jacmet@sunsite.dk
3548L: linux-usb-devel@lists.sourceforge.net
3549W: http://www.linux-usb.org/usbnet
3550S: Maintained
3551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552USB EHCI DRIVER
3553P: David Brownell
3554M: dbrownell@users.sourceforge.net
3555L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003556S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Luca Risolia7ce08c92006-01-11 02:06:59 +00003558USB ET61X[12]51 DRIVER
3559P: Luca Risolia
3560M: luca.risolia@studio.unibo.it
3561L: linux-usb-devel@lists.sourceforge.net
3562L: video4linux-list@redhat.com
3563W: http://www.linux-projects.org
3564S: Maintained
3565
David Brownell69ae9e32006-11-14 02:03:31 -08003566USB GADGET/PERIPHERAL SUBSYSTEM
3567P: David Brownell
3568M: dbrownell@users.sourceforge.net
3569L: linux-usb-devel@lists.sourceforge.net
3570W: http://www.linux-usb.org/gadget
3571S: Maintained
3572
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003574P: Jiri Kosina
3575M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576L: linux-usb-devel@lists.sourceforge.net
Jiri Kosinaa4dff392007-02-27 17:40:09 +01003577T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578S: Maintained
3579
3580USB HUB DRIVER
3581P: Johannes Erdfelt
3582M: johannes@erdfelt.com
3583L: linux-usb-users@lists.sourceforge.net
3584L: linux-usb-devel@lists.sourceforge.net
3585S: Maintained
3586
Olav Kongas959eea22005-11-03 17:38:14 +02003587USB ISP116X DRIVER
3588P: Olav Kongas
3589M: ok@artecdesign.ee
3590L: linux-usb-devel@lists.sourceforge.net
3591S: Maintained
3592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593USB KAWASAKI LSI DRIVER
3594P: Oliver Neukum
3595M: oliver@neukum.name
3596L: linux-usb-users@lists.sourceforge.net
3597L: linux-usb-devel@lists.sourceforge.net
3598S: Maintained
3599
3600USB MASS STORAGE DRIVER
3601P: Matthew Dharm
3602M: mdharm-usb@one-eyed-alien.net
3603L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003604L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605S: Maintained
3606W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3607
3608USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003609P: David Brownell
3610M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611L: linux-usb-users@lists.sourceforge.net
3612L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003613S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Matthias Urlichsba460e42005-07-14 00:33:47 -07003615USB OPTION-CARD DRIVER
3616P: Matthias Urlichs
3617M: smurf@smurf.noris.de
3618L: linux-usb-devel@lists.sourceforge.net
3619S: Maintained
3620
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621USB OV511 DRIVER
3622P: Mark McClelland
3623M: mmcclell@bigfoot.com
3624L: linux-usb-users@lists.sourceforge.net
3625L: linux-usb-devel@lists.sourceforge.net
3626W: http://alpha.dyndns.org/ov511/
3627S: Maintained
3628
3629USB PEGASUS DRIVER
3630P: Petko Manolov
3631M: petkan@users.sourceforge.net
3632L: linux-usb-users@lists.sourceforge.net
3633L: linux-usb-devel@lists.sourceforge.net
3634W: http://pegasus2.sourceforge.net/
3635S: Maintained
3636
3637USB PRINTER DRIVER
3638P: Vojtech Pavlik
3639M: vojtech@suse.cz
3640L: linux-usb-users@lists.sourceforge.net
3641L: linux-usb-devel@lists.sourceforge.net
3642S: Maintained
3643
3644USB RTL8150 DRIVER
3645P: Petko Manolov
3646M: petkan@users.sourceforge.net
3647L: linux-usb-users@lists.sourceforge.net
3648L: linux-usb-devel@lists.sourceforge.net
3649W: http://pegasus2.sourceforge.net/
3650S: Maintained
3651
3652USB SE401 DRIVER
3653P: Jeroen Vreeken
3654M: pe1rxq@amsat.org
3655L: linux-usb-users@lists.sourceforge.net
3656L: linux-usb-devel@lists.sourceforge.net
3657W: http://www.chello.nl/~j.vreeken/se401/
3658S: Maintained
3659
3660USB SERIAL CYBERJACK DRIVER
3661P: Matthias Bruestle and Harald Welte
3662M: support@reiner-sct.com
3663W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3664S: Maintained
3665
3666USB SERIAL DIGI ACCELEPORT DRIVER
3667P: Peter Berger and Al Borchers
3668M: pberger@brimson.com
3669M: alborchers@steinerpoint.com
3670L: linux-usb-users@lists.sourceforge.net
3671L: linux-usb-devel@lists.sourceforge.net
3672S: Maintained
3673
3674USB SERIAL DRIVER
3675P: Greg Kroah-Hartman
3676M: gregkh@suse.de
3677L: linux-usb-users@lists.sourceforge.net
3678L: linux-usb-devel@lists.sourceforge.net
3679S: Supported
3680
3681USB SERIAL BELKIN F5U103 DRIVER
3682P: William Greathouse
3683M: wgreathouse@smva.com
3684L: linux-usb-users@lists.sourceforge.net
3685L: linux-usb-devel@lists.sourceforge.net
3686S: Maintained
3687
3688USB SERIAL CYPRESS M8 DRIVER
3689P: Lonnie Mendez
3690M: dignome@gmail.com
3691L: linux-usb-users@lists.sourceforge.net
3692L: linux-usb-devel@lists.sourceforge.net
3693S: Maintained
3694W: http://geocities.com/i0xox0i
3695W: http://firstlight.net/cvs
3696
3697USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3698L: linux-usb-users@lists.sourceforge.net
3699L: linux-usb-devel@lists.sourceforge.net
3700S: Maintained
3701
3702USB AUERSWALD DRIVER
3703P: Wolfgang Muees
3704M: wolfgang@iksw-muees.de
3705L: linux-usb-users@lists.sourceforge.net
3706L: linux-usb-devel@lists.sourceforge.net
3707S: Maintained
3708
3709USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3710P: Gary Brubaker
3711M: xavyer@ix.netcom.com
3712L: linux-usb-users@lists.sourceforge.net
3713L: linux-usb-devel@lists.sourceforge.net
3714S: Maintained
3715
3716USB SERIAL KEYSPAN DRIVER
3717P: Greg Kroah-Hartman
3718M: greg@kroah.com
3719L: linux-usb-users@lists.sourceforge.net
3720L: linux-usb-devel@lists.sourceforge.net
3721W: http://www.kroah.com/linux/
3722S: Maintained
3723
3724USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04003725P: Support Department
3726M: support@connecttech.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727L: linux-usb-users@lists.sourceforge.net
3728L: linux-usb-devel@lists.sourceforge.net
3729W: http://www.connecttech.com
3730S: Supported
3731
Luca Risoliaf423b9a2007-03-26 16:12:04 -03003732USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733P: Luca Risolia
3734M: luca.risolia@studio.unibo.it
3735L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003736L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737W: http://www.linux-projects.org
3738S: Maintained
3739
3740USB SUBSYSTEM
3741P: Greg Kroah-Hartman
3742M: gregkh@suse.de
3743L: linux-usb-users@lists.sourceforge.net
3744L: linux-usb-devel@lists.sourceforge.net
3745W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003746T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747S: Supported
3748
3749USB UHCI DRIVER
3750P: Alan Stern
3751M: stern@rowland.harvard.edu
3752L: linux-usb-users@lists.sourceforge.net
3753L: linux-usb-devel@lists.sourceforge.net
3754S: Maintained
3755
David Brownell69ae9e32006-11-14 02:03:31 -08003756USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757P: David Brownell
3758M: dbrownell@users.sourceforge.net
3759L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003760W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761S: Maintained
3762
3763USB W996[87]CF DRIVER
3764P: Luca Risolia
3765M: luca.risolia@studio.unibo.it
3766L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003767L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768W: http://www.linux-projects.org
3769S: Maintained
3770
Luca Risolia60f78052006-02-06 16:29:35 +00003771USB ZC0301 DRIVER
3772P: Luca Risolia
3773M: luca.risolia@studio.unibo.it
3774L: linux-usb-devel@lists.sourceforge.net
3775L: video4linux-list@redhat.com
3776W: http://www.linux-projects.org
3777S: Maintained
3778
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779USB ZD1201 DRIVER
3780P: Jeroen Vreeken
3781M: pe1rxq@amsat.org
3782L: linux-usb-users@lists.sourceforge.net
3783L: linux-usb-devel@lists.sourceforge.net
3784W: http://linux-lc100020.sourceforge.net
3785S: Maintained
3786
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003787USB ZR364XX DRIVER
3788P: Antoine Jacquet
3789M: royale@zerezo.com
3790L: linux-usb-devel@lists.sourceforge.net
3791L: video4linux-list@redhat.com
3792W: http://royale.zerezo.com/zr364xx/
3793S: Maintained
3794
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795USER-MODE LINUX
3796P: Jeff Dike
3797M: jdike@karaya.com
3798L: user-mode-linux-devel@lists.sourceforge.net
3799L: user-mode-linux-user@lists.sourceforge.net
3800W: http://user-mode-linux.sourceforge.net
3801S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003802
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803FAT/VFAT/MSDOS FILESYSTEM:
3804P: OGAWA Hirofumi
3805M: hirofumi@mail.parknet.co.jp
3806L: linux-kernel@vger.kernel.org
3807S: Maintained
3808
3809VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3810P: Jeff Garzik
3811S: Odd fixes
3812
3813VIA RHINE NETWORK DRIVER
3814P: Roger Luethi
3815M: rl@hellgate.ch
3816S: Maintained
3817
Jean Delvare32c0a522005-09-22 21:47:58 +02003818VIAPRO SMBUS DRIVER
3819P: Jean Delvare
3820M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003821L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003822S: Maintained
3823
Francois Romieu01f20732007-01-26 00:57:17 -08003824VIA VELOCITY NETWORK DRIVER
3825P: Francois Romieu
3826M: romieu@fr.zoreil.com
3827L: netdev@vger.kernel.org
3828S: Maintained
3829
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830UCLINUX (AND M68KNOMMU)
3831P: Greg Ungerer
3832M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003834L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835S: Maintained
3836
3837UCLINUX FOR NEC V850
3838P: Miles Bader
3839M: uclinux-v850@lsi.nec.co.jp
3840W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3841W: http://www.ee.nec.de/uclinux/
3842S: Supported
3843
3844UCLINUX FOR RENESAS H8/300
3845P: Yoshinori Sato
3846M: ysato@users.sourceforge.jp
3847W: http://uclinux-h8.sourceforge.jp/
3848S: Supported
3849
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003850UFS FILESYSTEM
3851P: Evgeniy Dushistov
3852M: dushistov@mail.ru
3853L: linux-kernel@vger.kernel.org
3854S: Maintained
3855
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856USB DIAMOND RIO500 DRIVER
3857P: Cesar Miquel
3858M: miquel@df.uba.ar
3859L: rio500-users@lists.sourceforge.net
3860W: http://rio500.sourceforge.net
3861S: Maintained
3862
3863VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003864P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003865M: mchehab@infradead.org
3866M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003868W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003869T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003870S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
Juerg Haefligerab413192006-09-24 20:54:04 +02003872VT1211 HARDWARE MONITOR DRIVER
3873P: Juerg Haefliger
3874M: juergh@gmail.com
3875L: lm-sensors@lm-sensors.org
3876S: Maintained
3877
Roger Lucas1de9e372005-11-26 20:20:05 +01003878VT8231 HARDWARE MONITOR DRIVER
3879P: Roger Lucas
3880M: roger@planbit.co.uk
3881L: lm-sensors@lm-sensors.org
3882S: Maintained
3883
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884W1 DALLAS'S 1-WIRE BUS
3885P: Evgeniy Polyakov
3886M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887S: Maintained
3888
Charles Spirakis13927072006-07-05 18:05:15 +02003889W83791D HARDWARE MONITORING DRIVER
3890P: Charles Spirakis
3891M: bezaur@gmail.com
3892L: lm-sensors@lm-sensors.org
3893S: Maintained
3894
Rudolf Marek61db0112006-12-12 18:18:30 +01003895W83793 HARDWARE MONITORING DRIVER
3896P: Rudolf Marek
3897M: r.marek@assembler.cz
3898L: lm-sensors@lm-sensors.org
3899S: Maintained
3900
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901W83L51xD SD/MMC CARD INTERFACE DRIVER
3902P: Pierre Ossman
3903M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003904L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905W: http://projects.drzeus.cx/wbsd
3906S: Maintained
3907
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003908WATCHDOG DEVICE DRIVERS
3909P: Wim Van Sebroeck
3910M: wim@iguana.be
3911T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3912S: Maintained
3913
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3915P: Jean Tourrilhes
3916M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003917L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3919S: Maintained
3920
3921WD7000 SCSI DRIVER
3922P: Miroslav Zagorac
3923M: zaga@fly.cc.fer.hr
3924L: linux-scsi@vger.kernel.org
3925S: Maintained
3926
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003927WISTRON LAPTOP BUTTON DRIVER
3928P: Miloslav Trmac
3929M: mitr@volny.cz
3930S: Maintained
3931
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932WL3501 WIRELESS PCMCIA CARD DRIVER
3933P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003934M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07003935L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003936W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937S: Maintained
3938
3939X.25 NETWORK LAYER
3940P: Henner Eisen
3941M: eis@baty.hanse.de
3942L: linux-x25@vger.kernel.org
3943S: Maintained
3944
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02003945XEN HYPERVISOR INTERFACE
3946P: Jeremy Fitzhardinge
3947M: jeremy@xensource.com
3948P: Chris Wright
3949M: chrisw@sous-sol.org
3950L: virtualization@lists.osdl.org
3951L: xen-devel@lists.xensource.com
3952S: Supported
3953
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954XFS FILESYSTEM
3955P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003956P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003958L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003960T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961S: Supported
3962
Peter Korsgaard238b8722006-12-06 20:35:17 -08003963XILINX UARTLITE SERIAL DRIVER
3964P: Peter Korsgaard
3965M: jacmet@sunsite.dk
3966L: linux-serial@vger.kernel.org
3967S: Maintained
3968
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969X86 3-LEVEL PAGING (PAE) SUPPORT
3970P: Ingo Molnar
3971M: mingo@redhat.com
3972S: Maintained
3973
3974X86-64 port
3975P: Andi Kleen
3976M: ak@suse.de
3977L: discuss@x86-64.org
3978W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01003979T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980S: Maintained
3981
3982YAM DRIVER FOR AX.25
3983P: Jean-Paul Roubelat
3984M: jpr@f6fbb.org
3985L: linux-hams@vger.kernel.org
3986S: Maintained
3987
Henkaf64a5e2005-10-12 15:02:56 +02003988YEALINK PHONE DRIVER
3989P: Henk Vergonet
3990M: Henk.Vergonet@gmail.com
3991L: usbb2k-api-dev@nongnu.org
3992S: Maintained
3993
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994Z8530 DRIVER FOR AX.25
3995P: Joerg Reuter
3996M: jreuter@yaina.de
3997W: http://yaina.de/jreuter/
3998W: http://www.qsl.net/dl1bke/
3999L: linux-hams@vger.kernel.org
4000S: Maintained
4001
Daniel Drake7c0c3af2006-07-16 13:55:17 +01004002ZD1211RW WIRELESS DRIVER
4003P: Daniel Drake
4004M: dsd@gentoo.org
4005P: Ulrich Kunitz
4006M: kune@deine-taler.de
4007W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07004008L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01004009L: zd1211-devs@lists.sourceforge.net (subscribers-only)
4010S: Maintained
4011
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012ZF MACHZ WATCHDOG
4013P: Fernando Fuganti
4014M: fuganti@netbank.com.br
4015W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
4016S: Maintained
4017
4018ZR36067 VIDEO FOR LINUX DRIVER
4019P: Ronald Bultje
4020M: rbultje@ronald.bitfreak.net
4021L: mjpeg-users@lists.sourceforge.net
4022W: http://mjpeg.sourceforge.net/driver-zoran/
4023S: Maintained
4024
4025ZR36120 VIDEO FOR LINUX DRIVER
4026P: Pauline Middelink
4027M: middelin@polyware.nl
4028W: http://www.polyware.nl/~middelin/En/hobbies.html
4029W: http://www.polyware.nl/~middelin/hobbies.html
4030S: Maintained
4031
4032THE REST
4033P: Linus Torvalds
4034S: Buried alive in reporters