blob: bb0e832c36ff5827d602a825c591554b1772d517 [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
682S: Maintained
683
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700684AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700685P: Haavard Skinnemoen
686M: hskinnemoen@atmel.com
687W: http://www.atmel.com/products/AVR32/
688W: http://avr32linux.org/
689W: http://avrfreaks.net/
690S: Supported
691
692AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700693P: Haavard Skinnemoen
694M: hskinnemoen@atmel.com
695S: Supported
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697AX.25 NETWORK LAYER
698P: Ralf Baechle
699M: ralf@linux-mips.org
700L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200701W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702S: Maintained
703
Richard Purdie300abeb2007-02-07 22:21:07 +0000704BACKLIGHT CLASS/SUBSYSTEM
705P: Richard Purdie
706M: rpurdie@rpsys.net
707S: Maintained
708
Bryan Wu1394f032007-05-06 14:50:22 -0700709BLACKFIN ARCHITECTURE
710P: Aubrey Li
711M: aubrey.li@analog.com
712P: Bernd Schmidt
713M: bernd.schmidt@analog.com
714P: Bryan Wu
715M: bryan.wu@analog.com
716P: Grace Pan
717M: grace.pan@analog.com
718P: Michael Hennerich
719M: michael.hennerich@analog.com
720P: Mike Frysinger
721M: michael.frysinger@analog.com
722P: Jane Lv
723M: jane.lv@analog.com
724P: Jerry Zeng
725M: jerry.zeng@analog.com
726P: Jie Zhang
727M: jie.zhang@analog.com
728P: Robin Getz
729M: robin.getz@analog.com
730P: Roy Huang
731M: roy.huang@analog.com
732P: Sonic Zhang
733M: sonic.zhang@analog.com
734P: Yi Li
735M: yi.li@analog.com
736L: uclinux-dist-devel@blackfin.uclinux.org
737W: http://blackfin.uclinux.org
738S: Supported
739
740BLACKFIN SERIAL DRIVER
741P: Aubrey Li
742M: aubrey.li@analog.com
743L: uclinux-dist-devel@blackfin.uclinux.org
744W: http://blackfin.uclinux.org
745S: Supported
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747BAYCOM/HDLCDRV DRIVERS FOR AX.25
748P: Thomas Sailer
749M: t.sailer@alumni.ethz.ch
750L: linux-hams@vger.kernel.org
751W: http://www.baycom.org/~tom/ham/ham.html
752S: Maintained
753
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200754BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
755P: Larry Finger
756M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200757P: Stefano Brivio
758M: st3@riseup.net
Johannes Berg724c6b32007-04-23 12:18:20 -0700759L: linux-wireless@vger.kernel.org
Michael Buesch9eac8f92006-04-22 17:31:27 +0200760W: http://bcm43xx.berlios.de/
761S: Maintained
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763BEFS FILE SYSTEM
764P: Sergey S. Kostyliov
765M: rathamahata@php4.ru
766L: linux-kernel@vger.kernel.org
767S: Maintained
768
769BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
770P: Kenji Hollis
771W: http://ftp.bitgate.com/pcwd/
772S: Maintained
773
774BFS FILE SYSTEM
775P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800776M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777L: linux-kernel@vger.kernel.org
778S: Maintained
779
Bryan Wud24ecfc2007-05-01 23:26:32 +0200780BLACKFIN I2C TWI DRIVER
781P: Sonic Zhang
782M: sonic.zhang@analog.com
783L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
784W: http://blackfin.uclinux.org/
785S: Supported
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787BLOCK LAYER
788P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200789M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800791T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792S: Maintained
793
794BLUETOOTH SUBSYSTEM
795P: Marcel Holtmann
796M: marcel@holtmann.org
797P: Maxim Krasnyansky
798M: maxk@qualcomm.com
799L: bluez-devel@lists.sf.net
800W: http://bluez.sf.net
801W: http://www.bluez.org
802W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800803T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804S: Maintained
805
806BLUETOOTH RFCOMM LAYER
807P: Marcel Holtmann
808M: marcel@holtmann.org
809P: Maxim Krasnyansky
810M: maxk@qualcomm.com
811S: Maintained
812
813BLUETOOTH BNEP LAYER
814P: Marcel Holtmann
815M: marcel@holtmann.org
816P: Maxim Krasnyansky
817M: maxk@qualcomm.com
818S: Maintained
819
820BLUETOOTH CMTP LAYER
821P: Marcel Holtmann
822M: marcel@holtmann.org
823S: Maintained
824
825BLUETOOTH HIDP LAYER
826P: Marcel Holtmann
827M: marcel@holtmann.org
828S: Maintained
829
830BLUETOOTH HCI UART DRIVER
831P: Marcel Holtmann
832M: marcel@holtmann.org
833P: Maxim Krasnyansky
834M: maxk@qualcomm.com
835S: Maintained
836
837BLUETOOTH HCI USB DRIVER
838P: Marcel Holtmann
839M: marcel@holtmann.org
840P: Maxim Krasnyansky
841M: maxk@qualcomm.com
842S: Maintained
843
844BLUETOOTH HCI BCM203X DRIVER
845P: Marcel Holtmann
846M: marcel@holtmann.org
847S: Maintained
848
849BLUETOOTH HCI BPA10X DRIVER
850P: Marcel Holtmann
851M: marcel@holtmann.org
852S: Maintained
853
854BLUETOOTH HCI BFUSB DRIVER
855P: Marcel Holtmann
856M: marcel@holtmann.org
857S: Maintained
858
859BLUETOOTH HCI DTL1 DRIVER
860P: Marcel Holtmann
861M: marcel@holtmann.org
862S: Maintained
863
864BLUETOOTH HCI BLUECARD DRIVER
865P: Marcel Holtmann
866M: marcel@holtmann.org
867S: Maintained
868
869BLUETOOTH HCI BT3C DRIVER
870P: Marcel Holtmann
871M: marcel@holtmann.org
872S: Maintained
873
874BLUETOOTH HCI BTUART DRIVER
875P: Marcel Holtmann
876M: marcel@holtmann.org
877S: Maintained
878
879BLUETOOTH HCI VHCI DRIVER
880P: Maxim Krasnyansky
881M: maxk@qualcomm.com
882S: Maintained
883
884BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100885P: Chad Tindel
886M: ctindel@users.sourceforge.net
887P: Jay Vosburgh
888M: fubar@us.ibm.com
889L: bonding-devel@lists.sourceforge.net
890W: http://sourceforge.net/projects/bonding/
891S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000893BROADBAND PROCESSOR ARCHITECTURE
894P: Arnd Bergmann
895M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100896L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400897W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000898S: Supported
899
Gary Zambrano39105892006-06-22 17:26:20 -0700900BROADCOM B44 10/100 ETHERNET DRIVER
901P: Gary Zambrano
902M: zambrano@broadcom.com
903L: netdev@vger.kernel.org
904S: Supported
905
Michael Chan948c51e2006-06-04 02:51:39 -0700906BROADCOM BNX2 GIGABIT ETHERNET DRIVER
907P: Michael Chan
908M: mchan@broadcom.com
909L: netdev@vger.kernel.org
910S: Supported
911
912BROADCOM TG3 GIGABIT ETHERNET DRIVER
913P: Michael Chan
914M: mchan@broadcom.com
915L: netdev@vger.kernel.org
916S: Supported
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700919P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200920M: mchehab@infradead.org
921M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700923W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200924T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700925S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Jonathan Corbet77d51402007-03-22 19:44:17 -0300927CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
928P: Jonathan Corbet
929M: corbet@lwn.net
930L: video4linux-list@redhat.com
931S: Maintained
932
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200933CALGARY x86-64 IOMMU
934P: Muli Ben-Yehuda
935M: muli@il.ibm.com
936P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200937M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200938L: linux-kernel@vger.kernel.org
939L: discuss@x86-64.org
940S: Maintained
941
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800942CFAG12864B LCD DRIVER
943P: Miguel Ojeda Sandonis
944M: maxextreme@gmail.com
945L: linux-kernel@vger.kernel.org
946S: Maintained
947
948CFAG12864BFB LCD FRAMEBUFFER DRIVER
949P: Miguel Ojeda Sandonis
950M: maxextreme@gmail.com
951L: linux-kernel@vger.kernel.org
952S: Maintained
953
Johannes Berg704232c2007-04-23 12:20:05 -0700954CFG80211 and NL80211
955P: Johannes Berg
956M: johannes@sipsolutions.net
957L: linux-wireless@vger.kernel.org
958S: Maintained
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960COMMON INTERNET FILE SYSTEM (CIFS)
961P: Steve French
962M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100963L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964L: samba-technical@lists.samba.org
965W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800966T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300967S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Joel Becker7063fbf2005-12-15 14:29:43 -0800969CONFIGFS
970P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800971M: joel.becker@oracle.com
972L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800973S: Supported
974
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800975CIRRUS LOGIC EP93XX ETHERNET DRIVER
976P: Lennert Buytenhek
977M: kernel@wantstofly.org
978L: netdev@vger.kernel.org
979S: Maintained
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981CIRRUS LOGIC GENERIC FBDEV DRIVER
982P: Jeff Garzik
983M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800984L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985S: Odd Fixes
986
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800987CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
988P: Lennert Buytenhek
989M: kernel@wantstofly.org
990L: linux-usb-devel@lists.sourceforge.net
991S: Maintained
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
994P: Cirrus Logic Corporation (kernel 2.2 driver)
995M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
996P: Nils Faerber (port to kernel 2.4)
997M: Nils Faerber <nils@kernelconcepts.de>
998S: Maintained
999
1000CODA FILE SYSTEM
1001P: Jan Harkes
1002M: jaharkes@cs.cmu.edu
1003M: coda@cs.cmu.edu
1004L: codalist@coda.cs.cmu.edu
1005W: http://www.coda.cs.cmu.edu/
1006S: Maintained
1007
1008COMPACTPCI HOTPLUG CORE
1009P: Scott Murray
1010M: scottm@somanetworks.com
1011M: scott@spiteful.org
1012L: pcihpd-discuss@lists.sourceforge.net
1013S: Supported
1014
1015COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1016P: Scott Murray
1017M: scottm@somanetworks.com
1018M: scott@spiteful.org
1019L: pcihpd-discuss@lists.sourceforge.net
1020S: Supported
1021
1022COMPACTPCI HOTPLUG GENERIC DRIVER
1023P: Scott Murray
1024M: scottm@somanetworks.com
1025M: scott@spiteful.org
1026L: pcihpd-discuss@lists.sourceforge.net
1027S: Supported
1028
1029COMPUTONE INTELLIPORT MULTIPORT CARD
1030P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001031M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001033S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Simon Arlott949be0f2007-03-06 02:47:46 -08001035CONEXANT ACCESSRUNNER USB DRIVER
1036P: Simon Arlott
1037M: cxacru@fire.lp0.eu
1038S: Maintained
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040COSA/SRP SYNC SERIAL DRIVER
1041P: Jan "Yenya" Kasprzak
1042M: kas@fi.muni.cz
1043W: http://www.fi.muni.cz/~kas/cosa/
1044S: Maintained
1045
1046CPU FREQUENCY DRIVERS
1047P: Dave Jones
1048M: davej@codemonkey.org.uk
1049L: cpufreq@lists.linux.org.uk
1050W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -05001051T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052S: Maintained
1053
1054CPUID/MSR DRIVER
1055P: H. Peter Anvin
1056M: hpa@zytor.com
1057S: Maintained
1058
Paul Jacksoned90fb42005-09-27 21:45:37 -07001059CPUSETS
1060P: Paul Jackson
1061P: Simon Derr
1062M: pj@sgi.com
1063M: simon.derr@bull.net
1064L: linux-kernel@vger.kernel.org
1065W: http://www.bullopensource.org/cpuset/
1066S: Supported
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001069W: http://sourceforge.net/projects/cramfs/
1070S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072CRIS PORT
1073P: Mikael Starvik
1074M: starvik@axis.com
1075L: dev-etrax@axis.com
1076W: http://developer.axis.com
1077S: Maintained
1078
1079CRYPTO API
1080P: Herbert Xu
1081M: herbert@gondor.apana.org.au
1082P: David S. Miller
1083M: davem@davemloft.net
1084L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001085T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086S: Maintained
1087
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001088CS5535 Audio ALSA driver
1089P: Jaya Kumar
1090M: jayakumar.alsa@gmail.com
1091S: Maintained
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093CYBERPRO FB DRIVER
1094P: Russell King
1095M: rmk@arm.linux.org.uk
1096W: http://www.arm.linux.org.uk/
1097S: Maintained
1098
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001099CYBLAFB FRAMEBUFFER DRIVER
1100P: Knut Petersen
1101M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001102L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001103S: Maintained
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105CYCLADES 2X SYNC CARD DRIVER
1106P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001107M: acme@ghostprotocols.net
1108W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109S: Maintained
1110
1111CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001113S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001117S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119DAMA SLAVE for AX.25
1120P: Joerg Reuter
1121M: jreuter@yaina.de
1122W: http://yaina.de/jreuter/
1123W: http://www.qsl.net/dl1bke/
1124L: linux-hams@vger.kernel.org
1125S: Maintained
1126
1127DC395x SCSI driver
1128P: Oliver Neukum
1129M: oliver@neukum.name
1130P: Ali Akcaagac
1131M: aliakc@web.de
1132P: Jamie Lenehan
1133M: lenehan@twibble.org
1134W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001135L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136L: http://lists.twibble.org/mailman/listinfo/dc395x/
1137S: Maintained
1138
1139DC390/AM53C974 SCSI driver
1140P: Kurt Garloff
1141M: garloff@suse.de
1142W: http://www.garloff.de/kurt/linux/dc390/
1143P: Guennadi Liakhovetski
1144M: g.liakhovetski@gmx.de
1145S: Maintained
1146
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001147DCCP PROTOCOL
1148P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001149M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001150L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001151W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001152S: Maintained
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154DECnet NETWORK LAYER
1155P: Patrick Caulfield
1156M: patrick@tykepenguin.com
1157W: http://linux-decnet.sourceforge.net
1158L: linux-decnet-user@lists.sourceforge.net
1159S: Maintained
1160
1161DEFXX FDDI NETWORK DRIVER
1162P: Maciej W. Rozycki
1163M: macro@linux-mips.org
1164S: Maintained
1165
1166DELL LAPTOP SMM DRIVER
1167P: Massimo Dal Zotto
1168M: dz@debian.org
1169W: http://www.debian.org/~dz/i8k/
1170S: Maintained
1171
Doug Warzecha90563ec2005-09-06 15:17:15 -07001172DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1173P: Doug Warzecha
1174M: Douglas_Warzecha@dell.com
1175S: Maintained
1176
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001177DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178P: Alasdair Kergon
1179L: dm-devel@redhat.com
1180W: http://sources.redhat.com/dm
1181S: Maintained
1182
1183DEVICE NUMBER REGISTRY
1184P: Torben Mathiasen
1185M: device@lanana.org
1186W: http://lanana.org/docs/device-list/index.html
1187L: linux-kernel@vger.kernel.org
1188S: Maintained
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190DIGI INTL. EPCA DRIVER
1191P: Digi International, Inc
1192M: Eng.Linux@digi.com
1193L: Eng.Linux@digi.com
1194W: http://www.digi.com
1195S: Orphaned
1196
1197DIGI RIGHTSWITCH NETWORK DRIVER
1198P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001199L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200W: http://www.digi.com
1201S: Orphaned
1202
1203DIRECTORY NOTIFICATION
1204P: Stephen Rothwell
1205M: sfr@canb.auug.org.au
1206L: linux-kernel@vger.kernel.org
1207S: Supported
1208
1209DISK GEOMETRY AND PARTITION HANDLING
1210P: Andries Brouwer
1211M: aeb@cwi.nl
1212W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1213W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1214W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1215S: Maintained
1216
1217DISKQUOTA:
1218P: Jan Kara
1219M: jack@suse.cz
1220L: linux-kernel@vger.kernel.org
1221S: Maintained
1222
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001223DISTRIBUTED LOCK MANAGER
1224P: Patrick Caulfield
1225M: pcaulfie@redhat.com
1226P: David Teigland
1227M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001228L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001229W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001230T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1231T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001232S: Supported
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1235P: Tobias Ringstrom
1236M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001237L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238S: Maintained
1239
Martin Waitzba483d52005-06-17 13:20:59 -07001240DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001241P: Randy Dunlap
1242M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001243S: Maintained
1244
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001245DOCKING STATION DRIVER
1246P: Kristen Carlson Accardi
1247M: kristen.c.accardi@intel.com
1248L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001249S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251DOUBLETALK DRIVER
1252P: James R. Van Zandt
1253M: jrv@vanzandt.mv.com
1254L: blinux-list@redhat.com
1255S: Maintained
1256
1257DRIVER CORE, KOBJECTS, AND SYSFS
1258P: Greg Kroah-Hartman
1259M: gregkh@suse.de
1260L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001261T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262S: Supported
1263
1264DRM DRIVERS
1265P: David Airlie
1266M: airlied@linux.ie
1267L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001268T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269S: Maintained
1270
1271DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001272P: Francois Romieu
1273M: romieu@fr.zoreil.com
1274L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275S: Maintained
1276
1277DVB SUBSYSTEM AND DRIVERS
1278P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001279M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001281W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001282T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001283S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285EATA-DMA SCSI DRIVER
1286P: Michael Neuffer
1287L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1288S: Maintained
1289
1290EATA ISA/EISA/PCI SCSI DRIVER
1291P: Dario Ballabio
1292M: ballabio_dario@emc.com
1293L: linux-scsi@vger.kernel.org
1294S: Maintained
1295
1296EATA-PIO SCSI DRIVER
1297P: Michael Neuffer
1298M: mike@i-Connect.Net
1299L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1300S: Maintained
1301
1302EBTABLES
1303P: Bart De Schuymer
1304M: bart.de.schuymer@pandora.be
1305L: ebtables-user@lists.sourceforge.net
1306L: ebtables-devel@lists.sourceforge.net
1307W: http://ebtables.sourceforge.net/
1308S: Maintained
1309
Michael Halcrow237fead2006-10-04 02:16:22 -07001310ECRYPT FILE SYSTEM
1311P: Mike Halcrow, Phillip Hellewell
1312M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1313L: ecryptfs-devel@lists.sourceforge.net
1314W: http://ecryptfs.sourceforge.net/
1315S: Supported
1316
Alan Coxda9bb1d2006-01-18 17:44:13 -08001317EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001318P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001319M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001320L: bluesmoke-devel@lists.sourceforge.net
1321W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001322S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001323
1324EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001325P: Mark Gross
1326M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001327L: bluesmoke-devel@lists.sourceforge.net
1328W: bluesmoke.sourceforge.net
1329S: Maintained
1330
1331EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001332P: Doug Thompson
1333M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001334L: bluesmoke-devel@lists.sourceforge.net
1335W: bluesmoke.sourceforge.net
1336S: Maintained
1337
1338EDAC-R82600
1339P: Tim Small
1340M: tim@buttersideup.com
1341L: bluesmoke-devel@lists.sourceforge.net
1342W: bluesmoke.sourceforge.net
1343S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345EEPRO100 NETWORK DRIVER
1346P: Andrey V. Savochkin
1347M: saw@saw.sw.com.sg
1348S: Maintained
1349
Josh Triplett0bee8d22006-07-30 03:03:58 -07001350EFS FILESYSTEM
1351W: http://aeschi.ch.eu.org/efs/
1352S: Orphan
1353
Heiko J Schickfab97222006-09-22 15:22:22 -07001354EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1355P: Hoang-Nam Nguyen
1356M: hnguyen@de.ibm.com
1357P: Christoph Raisch
1358M: raisch@de.ibm.com
1359L: openib-general@openib.org
1360S: Supported
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362EMU10K1 SOUND DRIVER
1363P: James Courtier-Dutton
1364M: James@superbug.demon.co.uk
1365L: emu10k1-devel@lists.sourceforge.net
1366W: http://sourceforge.net/projects/emu10k1/
1367S: Maintained
1368
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001369EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001370P: James Smart
1371M: james.smart@emulex.com
1372L: linux-scsi@vger.kernel.org
1373W: http://sourceforge.net/projects/lpfcxxxx
1374S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376EPSON 1355 FRAMEBUFFER DRIVER
1377P: Christopher Hoover
1378M: ch@murgatroid.com, ch@hpl.hp.com
1379S: Maintained
1380
1381ETHEREXPRESS-16 NETWORK DRIVER
1382P: Philip Blundell
1383M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001384L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385S: Maintained
1386
1387ETHERNET BRIDGE
1388P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08001389M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07001390L: bridge@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391W: http://bridge.sourceforge.net/
1392S: Maintained
1393
1394ETHERTEAM 16I DRIVER
1395P: Mika Kuoppala
1396M: miku@iki.fi
1397S: Maintained
1398
1399EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001400L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401S: Maintained
1402
1403EXT3 FILE SYSTEM
1404P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001405M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001406L: linux-ext4@vger.kernel.org
1407S: Maintained
1408
1409EXT4 FILE SYSTEM
1410P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001411M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001412L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413S: Maintained
1414
Jean Delvaree53004e2006-01-09 23:26:14 +01001415F71805F HARDWARE MONITORING DRIVER
1416P: Jean Delvare
1417M: khali@linux-fr.org
1418L: lm-sensors@lm-sensors.org
1419S: Maintained
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421FARSYNC SYNCHRONOUS DRIVER
1422P: Kevin Curtis
1423M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424W: http://www.farsite.co.uk/
1425S: Supported
1426
Akinobu Mitac5408b82007-04-23 14:41:20 -07001427FAULT INJECTION SUPPORT
1428P: Akinobu Mita
1429M: akinobu.mita@gmail.com
1430S: Supported
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432FRAMEBUFFER LAYER
1433P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001434M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001435L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436W: http://linux-fbdev.sourceforge.net/
1437S: Maintained
1438
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001439FREESCALE SOC FS_ENET DRIVER
1440P: Pantelis Antoniou
1441M: pantelis.antoniou@gmail.com
1442P: Vitaly Bordug
1443M: vbordug@ru.mvista.com
1444L: linuxppc-embedded@ozlabs.org
1445L: netdev@vger.kernel.org
1446S: Maintained
1447
Li Yanga7205b32007-04-23 10:38:18 -07001448FREESCALE HIGHSPEED USB DEVICE DRIVER
1449P: Li Yang
1450M: leoli@freescale.com
1451L: linux-usb-devel@lists.sourceforge.net
1452L: linuxppc-embedded@ozlabs.org
1453S: Maintained
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455FILE LOCKING (flock() and fcntl()/lockf())
1456P: Matthew Wilcox
1457M: matthew@wil.cx
1458L: linux-fsdevel@vger.kernel.org
1459S: Maintained
1460
1461FILESYSTEMS (VFS and infrastructure)
1462P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001463M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464S: Maintained
1465
1466FIRMWARE LOADER (request_firmware)
1467L: linux-kernel@vger.kernel.org
1468S: Orphan
1469
1470FPU EMULATOR
1471P: Bill Metzenthen
1472M: billm@suburbia.net
1473W: http://suburbia.net/~billm/floating-point/emulator/
1474S: Maintained
1475
1476FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1477P: Mike McLagan
1478M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001479L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480S: Maintained
1481
1482FREEVXFS FILESYSTEM
1483P: Christoph Hellwig
1484M: hch@infradead.org
1485W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1486S: Maintained
1487
David Howells5ab7ffe2007-04-10 15:10:45 +01001488FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489P: David Howells
1490M: dhowells@redhat.com
1491S: Maintained
1492
Miklos Szeredi04578f12005-09-09 13:10:22 -07001493FUSE: FILESYSTEM IN USERSPACE
1494P: Miklos Szeredi
1495M: miklos@szeredi.hu
1496L: fuse-devel@lists.sourceforge.net
1497W: http://fuse.sourceforge.net/
1498S: Maintained
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1501P: Rik Faith
1502M: faith@cs.unc.edu
1503L: linux-scsi@vger.kernel.org
1504S: Odd fixes (e.g., new signatures)
1505
1506GDT SCSI DISK ARRAY CONTROLLER DRIVER
1507P: Achim Leubner
1508M: achim_leubner@adaptec.com
1509L: linux-scsi@vger.kernel.org
1510W: http://www.icp-vortex.com/
1511S: Supported
1512
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02001513GENERIC GPIO I2C DRIVER
1514P: Haavard Skinnemoen
1515M: hskinnemoen@atmel.com
1516S: Supported
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1519P: Krzysztof Halasa
1520M: khc@pm.waw.pl
1521W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1522S: Maintained
1523
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001524GFS2 FILE SYSTEM
1525P: Steven Whitehouse
1526M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001527L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001528W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001529T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1530T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001531S: Supported
1532
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001533GIGASET ISDN DRIVERS
1534P: Hansjoerg Lipp
1535M: hjlipp@web.de
1536P: Tilman Schmidt
1537M: tilman@imap.cc
1538L: gigaset307x-common@lists.sourceforge.net
1539W: http://gigaset307x.sourceforge.net/
1540S: Maintained
1541
Jean Delvare5b543962005-08-15 19:51:02 +02001542HARDWARE MONITORING
1543P: Jean Delvare
1544M: khali@linux-fr.org
1545L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001546W: http://www.lm-sensors.org/
1547T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001548S: Maintained
1549
Michael Buesch844dd052006-06-26 00:24:59 -07001550HARDWARE RANDOM NUMBER GENERATOR CORE
1551P: Michael Buesch
1552M: mb@bu3sch.de
1553S: Maintained
1554
Robert Love860e1d62005-08-31 23:57:59 -04001555HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1556P: Robert Love
1557M: rlove@rlove.org
1558M: linux-kernel@vger.kernel.org
1559W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1560S: Maintained
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562HARMONY SOUND DRIVER
1563P: Kyle McMartin
1564M: kyle@parisc-linux.org
1565W: http://www.parisc-linux.org/~kyle/harmony/
1566L: parisc-linux@lists.parisc-linux.org
1567S: Maintained
1568
1569HAYES ESP SERIAL DRIVER
1570P: Andrew J. Robinson
1571M: arobinso@nyx.net
1572L: linux-kernel@vger.kernel.org
1573W: http://www.nyx.net/~arobinso
1574S: Maintained
1575
1576HFS FILESYSTEM
1577P: Roman Zippel
1578M: zippel@linux-m68k.org
1579L: linux-kernel@vger.kernel.org
1580S: Maintained
1581
1582HGA FRAMEBUFFER DRIVER
1583P: Ferenc Bakonyi
1584M: fero@drama.obuda.kando.hu
1585L: linux-nvidia@lists.surfsouth.com
1586W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1587S: Maintained
1588
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001589HID CORE LAYER
1590P: Jiri Kosina
1591M: jkosina@suse.cz
1592L: linux-input@atrey.karlin.mff.cuni.cz
Jiri Kosinaa4dff392007-02-27 17:40:09 +01001593T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001594S: Maintained
1595
Ingo Molnar38bed542007-02-22 09:09:34 +01001596HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
1597P: Thomas Gleixner
1598M: tglx@linutronix.de
1599L: linux-kernel@vger.kernel.org
1600S: Maintained
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602HIGH-SPEED SCC DRIVER FOR AX.25
1603P: Klaus Kudielka
1604M: klaus.kudielka@ieee.org
1605L: linux-hams@vger.kernel.org
1606W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1607S: Maintained
1608
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001609HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1610P: HighPoint Linux Team
1611M: linux@highpoint-tech.com
1612W: http://www.highpoint-tech.com
1613S: Supported
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615HIPPI
1616P: Jes Sorensen
1617M: jes@trained-monkey.org
1618L: linux-hippi@sunsite.dk
1619S: Maintained
1620
1621HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1622P: Chirag Kantharia
1623M: chirag.kantharia@hp.com
1624L: iss_storagedev@hp.com
1625S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627HEWLETT-PACKARD SMART2 RAID DRIVER
1628P: Chirag Kantharia
1629M: chirag.kantharia@hp.com
1630L: iss_storagedev@hp.com
1631S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1634P: Mike Miller
1635M: mike.miller@hp.com
1636L: iss_storagedev@hp.com
1637S: Supported
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001638
Jouni Malinenff1d2762005-05-12 22:54:16 -04001639HOST AP DRIVER
1640P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07001641M: j@w1.fi
1642L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07001643L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04001644W: http://hostap.epitest.fi/
1645S: Maintained
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1648P: Jaroslav Kysela
1649M: perex@suse.cz
1650S: Maintained
1651
Bob Piccob9b03322005-11-07 00:59:19 -08001652HPET: High Precision Event Timers driver (hpet.c)
1653P: Clemens Ladisch
1654M: clemens@ladisch.de
1655S: Maintained
1656
1657HPET: i386
1658P: Venkatesh Pallipadi (Venki)
1659M: venkatesh.pallipadi@intel.com
1660S: Maintained
1661
1662HPET: x86_64
1663P: Andi Kleen and Vojtech Pavlik
Andi Kleen43c3ab32007-05-02 19:27:11 +02001664M: andi@firstfloor.org and vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08001665S: Maintained
1666
1667HPET: ACPI hpet.c
1668P: Bob Picco
1669M: bob.picco@hp.com
1670S: Maintained
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672HPFS FILESYSTEM
1673P: Mikulas Patocka
1674M: mikulas@artax.karlin.mff.cuni.cz
1675W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1676S: Maintained
1677
1678HUGETLB FILESYSTEM
1679P: William Irwin
1680M: wli@holomorphy.com
1681S: Maintained
1682
Jean Delvare5b543962005-08-15 19:51:02 +02001683I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684P: Jean Delvare
1685M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001686L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001687T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688S: Maintained
1689
Till Harbaume8c76ee2007-05-01 23:26:35 +02001690I2C-TINY-USB DRIVER
1691P: Till Harbaum
1692M: till@harbaum.org
1693L: i2c@lm-sensors.org
1694T: http://www.harbaum.org/till/i2c_tiny_usb
1695S: Maintained
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697i386 BOOT CODE
1698P: Riley H. Williams
1699M: Riley@Williams.Name
1700L: Linux-Kernel@vger.kernel.org
1701S: Maintained
1702
1703i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1704P: Dave Jones
1705M: davej@codemonkey.org.uk
1706P: H. Peter Anvin
1707M: hpa@zytor.com
1708S: Maintained
1709
1710i810 TCO TIMER WATCHDOG
1711P: Nils Faerber
1712M: nils@kernelconcepts.de
1713W: http://www.kernelconcepts.de/
1714S: Maintained
1715
1716IA64 (Itanium) PLATFORM
1717P: Tony Luck
1718M: tony.luck@intel.com
1719L: linux-ia64@vger.kernel.org
1720W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001721T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722S: Maintained
1723
1724SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001725P: Jes Sorensen
1726M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727L: linux-altix@sgi.com
1728L: linux-ia64@vger.kernel.org
1729W: http://www.sgi.com/altix
1730S: Maintained
1731
1732IBM MCA SCSI SUBSYSTEM DRIVER
1733P: Michael Lang
1734M: langa2@kph.uni-mainz.de
1735W: http://www.uni-mainz.de/~langm000/linux.html
1736S: Maintained
1737
1738IBM Power Linux RAID adapter
1739P: Brian King
1740M: brking@us.ibm.com
1741S: Supported
1742
1743IBM ServeRAID RAID DRIVER
1744P: Jack Hammer
1745P: Dave Jeffery
1746M: ipslinux@adaptec.com
1747W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001748S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001750IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001752M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001754T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755S: Maintained
1756
1757IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001758P: Alan Cox
1759M: alan@lxorguk.ukuu.org.uk
1760L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761S: Maintained
1762
1763IDE/ATAPI FLOPPY DRIVERS
1764P: Paul Bristow
1765M: Paul Bristow <paul@paulbristow.net>
1766W: http://paulbristow.net/linux/idefloppy.html
1767L: linux-kernel@vger.kernel.org
1768S: Maintained
1769
1770IDE/ATAPI TAPE DRIVERS
1771P: Gadi Oxman
1772M: Gadi Oxman <gadio@netvision.net.il>
1773L: linux-kernel@vger.kernel.org
1774S: Maintained
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776IEEE 1394 SUBSYSTEM
1777P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07001778M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02001779P: Stefan Richter
1780M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781L: linux1394-devel@lists.sourceforge.net
1782W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001783T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784S: Maintained
1785
Stefan Richterf51a5a92007-04-23 14:41:10 -07001786IEEE 1394 RAW I/O DRIVER (raw1394)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787P: Dan Dennedy
1788M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07001789P: Stefan Richter
1790M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001792S: Maintained
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794IMS TWINTURBO FRAMEBUFFER DRIVER
1795P: Paul Mundt
1796M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001797L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798S: Maintained
1799
1800INFINIBAND SUBSYSTEM
1801P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001802M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803P: Sean Hefty
1804M: mshefty@ichips.intel.com
1805P: Hal Rosenstock
1806M: halr@voltaire.com
1807L: openib-general@openib.org
1808W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001809T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810S: Supported
1811
1812INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001813P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001814M: dmitry.torokhov@gmail.com
1815M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816L: linux-input@atrey.karlin.mff.cuni.cz
1817L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001818T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819S: Maintained
1820
Robert Lovec9f04f52005-07-15 12:21:07 -04001821INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001822P: John McCutchan
1823M: ttb@tentacle.dhs.org
1824P: Robert Love
1825M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001826L: linux-kernel@vger.kernel.org
1827S: Maintained
1828
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001829INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001830P: Sylvain Meyer
1831M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001832L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001833S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001836P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001837M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001838L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001839S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1842P: Ingo Molnar
1843M: mingo@redhat.com
1844S: Maintained
1845
1846INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1847P: Jeff Garzik
1848M: jgarzik@pobox.com
1849W: http://sourceforge.net/projects/gkernel/
1850S: Maintained
1851
1852INTEL IA32 MICROCODE UPDATE SUPPORT
1853P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001854M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855S: Maintained
1856
Michael Buesch844dd052006-06-26 00:24:59 -07001857INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1858P: Deepak Saxena
1859M: dsaxena@plexity.net
1860S: Maintained
1861
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001862INTEL IXP2000 ETHERNET DRIVER
1863P: Lennert Buytenhek
1864M: kernel@wantstofly.org
1865L: netdev@vger.kernel.org
1866S: Maintained
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868INTEL PRO/100 ETHERNET SUPPORT
1869P: John Ronciak
1870M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871P: Jesse Brandeburg
1872M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001873P: Jeff Kirsher
1874M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001875P: Auke Kok
1876M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001877L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878W: http://sourceforge.net/projects/e1000/
1879S: Supported
1880
1881INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1882P: Jeb Cramer
1883M: cramerj@intel.com
1884P: John Ronciak
1885M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001886P: Jesse Brandeburg
1887M: jesse.brandeburg@intel.com
1888P: Jeff Kirsher
1889M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001890P: Auke Kok
1891M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001892L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893W: http://sourceforge.net/projects/e1000/
1894S: Supported
1895
1896INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001897P: Jeff Kirsher
1898M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899P: Ayyappan Veeraiyan
1900M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901P: John Ronciak
1902M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001903P: Jesse Brandeburg
1904M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001905P: Auke Kok
1906M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001907L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908W: http://sourceforge.net/projects/e1000/
1909S: Supported
1910
James Ketrenos826d2ab2005-11-07 18:56:59 -06001911INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1912P: Yi Zhu
1913M: yi.zhu@intel.com
1914P: James Ketrenos
1915M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001916L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001917L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001918L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1919W: http://ipw2100.sourceforge.net
1920S: Supported
1921
1922INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1923P: Yi Zhu
1924M: yi.zhu@intel.com
1925P: James Ketrenos
1926M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001927L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001928L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001929L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1930W: http://ipw2200.sourceforge.net
1931S: Supported
1932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933IOC3 DRIVER
1934P: Ralf Baechle
1935M: ralf@linux-mips.org
1936L: linux-mips@linux-mips.org
1937S: Maintained
1938
1939IP MASQUERADING:
1940P: Juanjo Ciarlante
1941M: jjciarla@raiz.uncu.edu.ar
1942S: Maintained
1943
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001944IPATH DRIVER:
1945P: Bryan O'Sullivan
1946M: support@pathscale.com
1947L: openib-general@openib.org
1948S: Supported
1949
Corey Minyard4409ebe2006-04-20 02:43:12 -07001950IPMI SUBSYSTEM
1951P: Corey Minyard
1952M: minyard@acm.org
1953L: openipmi-developer@lists.sourceforge.net
1954W: http://openipmi.sourceforge.net/
1955S: Supported
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957IPX NETWORK LAYER
1958P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001959M: acme@ghostprotocols.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07001960L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961S: Maintained
1962
1963IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001964P: Samuel Ortiz
1965M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001966L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001968S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970ISAPNP
1971P: Jaroslav Kysela
1972M: perex@suse.cz
1973S: Maintained
1974
1975ISDN SUBSYSTEM
1976P: Karsten Keil
1977M: kkeil@suse.de
1978P: Kai Germaschewski
1979M: kai.germaschewski@gmx.de
1980L: isdn4linux@listserv.isdn4linux.de
1981W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001982T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983S: Maintained
1984
1985ISDN SUBSYSTEM (Eicon active card driver)
1986P: Armin Schindler
1987M: mac@melware.de
1988L: isdn4linux@listserv.isdn4linux.de
1989W: http://www.melware.de
1990S: Maintained
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1993P: David Woodhouse
1994M: dwmw2@infradead.org
1995L: jffs-dev@axis.com
1996W: http://sources.redhat.com/jffs2/
1997S: Maintained
1998
1999JFS FILESYSTEM
2000P: Dave Kleikamp
2001M: shaggy@austin.ibm.com
2002L: jfs-discussion@lists.sourceforge.net
2003W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002004T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005S: Supported
2006
Josh Triplettde456d32006-07-30 03:04:00 -07002007JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07002008P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002009M: sct@redhat.com, akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08002010L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07002011S: Maintained
2012
Rudolf Marek4660cb32006-10-08 22:01:26 +02002013K8TEMP HARDWARE MONITORING DRIVER
2014P: Rudolf Marek
2015M: r.marek@assembler.cz
2016L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017S: Maintained
2018
2019KCONFIG
2020P: Roman Zippel
2021M: zippel@linux-m68k.org
2022L: kbuild-devel@lists.sourceforge.net
2023S: Maintained
2024
Vivek Goyalea6c2082006-05-20 14:59:55 -07002025KDUMP
2026P: Vivek Goyal
2027M: vgoyal@in.ibm.com
2028P: Haren Myneni
2029M: hbabu@us.ibm.com
David Brownellf318a632007-04-23 14:41:06 -07002030L: fastboot@lists.linux-foundation.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07002031L: linux-kernel@vger.kernel.org
2032W: http://lse.sourceforge.net/kdump/
2033S: Maintained
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035KERNEL AUTOMOUNTER (AUTOFS)
2036P: H. Peter Anvin
2037M: hpa@zytor.com
2038L: autofs@linux.kernel.org
2039S: Odd Fixes
2040
2041KERNEL AUTOMOUNTER v4 (AUTOFS4)
2042P: Ian Kent
2043M: raven@themaw.net
2044L: autofs@linux.kernel.org
2045S: Maintained
2046
2047KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
2048P: Kai Germaschewski
2049M: kai@germaschewski.name
2050P: Sam Ravnborg
2051M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002052T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002053S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055KERNEL JANITORS
2056P: Several
David Brownellf318a632007-04-23 14:41:06 -07002057L: kernel-janitors@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059S: Maintained
2060
2061KERNEL NFSD
2062P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08002063M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064L: nfs@lists.sourceforge.net
2065W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08002066S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Avi Kivity426d62e2006-12-13 00:34:03 -08002068KERNEL VIRTUAL MACHINE (KVM)
2069P: Avi Kivity
2070M: avi@qumranet.com
2071L: kvm-devel@lists.sourceforge.net
2072W: kvm.sourceforge.net
2073S: Supported
2074
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002075KEXEC
2076P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002077M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002078W: http://www.xmission.com/~ebiederm/files/kexec/
2079L: linux-kernel@vger.kernel.org
David Brownellf318a632007-04-23 14:41:06 -07002080L: fastboot@lists.linux-foundation.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002081S: Maintained
2082
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07002083KPROBES
2084P: Prasanna S Panchamukhi
2085M: prasanna@in.ibm.com
2086P: Ananth N Mavinakayanahalli
2087M: ananth@in.ibm.com
2088P: Anil S Keshavamurthy
2089M: anil.s.keshavamurthy@intel.com
2090P: David S. Miller
2091M: davem@davemloft.net
2092L: linux-kernel@vger.kernel.org
2093S: Maintained
2094
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002095KS0108 LCD CONTROLLER DRIVER
2096P: Miguel Ojeda Sandonis
2097M: maxextreme@gmail.com
2098L: linux-kernel@vger.kernel.org
2099S: Maintained
2100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002103S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105LASI 53c700 driver for PARISC
2106P: James E.J. Bottomley
2107M: James.Bottomley@HansenPartnership.com
2108L: linux-scsi@vger.kernel.org
2109S: Maintained
2110
Richard Purdie263de9b2006-05-15 09:44:16 -07002111LED SUBSYSTEM
2112P: Richard Purdie
2113M: rpurdie@rpsys.net
2114S: Maintained
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116LEGO USB Tower driver
2117P: Juergen Stuber
2118M: starblue@users.sourceforge.net
2119L: legousb-devel@lists.sourceforge.net
2120W: http://legousb.sourceforge.net/
2121S: Maintained
2122
2123LINUX FOR IBM pSERIES (RS/6000)
2124P: Paul Mackerras
2125M: paulus@au.ibm.com
2126W: http://www.ibm.com/linux/ltc/projects/ppc
2127S: Supported
2128
2129LINUX FOR NCR VOYAGER
2130P: James Bottomley
2131M: James.Bottomley@HansenPartnership.com
2132W: http://www.hansenpartnership.com/voyager
2133S: Maintained
2134
2135LINUX FOR POWERPC
2136P: Paul Mackerras
2137M: paulus@samba.org
2138W: http://www.penguinppc.org/
2139L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002140T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141S: Supported
2142
2143LINUX FOR POWER MACINTOSH
2144P: Benjamin Herrenschmidt
2145M: benh@kernel.crashing.org
2146W: http://www.penguinppc.org/
2147L: linuxppc-dev@ozlabs.org
2148S: Maintained
2149
2150LINUX FOR POWERPC EMBEDDED MPC52XX
2151P: Sylvain Munaut
2152M: tnt@246tNt.com
2153W: http://www.246tNt.com/mpc52xx/
2154W: http://www.penguinppc.org/
2155L: linuxppc-dev@ozlabs.org
2156L: linuxppc-embedded@ozlabs.org
2157S: Maintained
2158
2159LINUX FOR POWERPC EMBEDDED PPC4XX
2160P: Matt Porter
2161M: mporter@kernel.crashing.org
2162W: http://www.penguinppc.org/
2163L: linuxppc-embedded@ozlabs.org
2164S: Maintained
2165
Tom Rinie93adf12005-07-26 12:49:53 -07002166LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167P: Tom Rini
2168M: trini@kernel.crashing.org
2169W: http://www.penguinppc.org/
2170L: linuxppc-embedded@ozlabs.org
2171S: Maintained
2172
Tom Rinie93adf12005-07-26 12:49:53 -07002173LINUX FOR POWERPC EMBEDDED PPC8XX
2174P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002175M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002176W: http://www.penguinppc.org/
2177L: linuxppc-embedded@ozlabs.org
2178S: Maintained
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002181P: Kumar Gala
2182M: galak@kernel.crashing.org
2183W: http://www.penguinppc.org/
2184L: linuxppc-embedded@ozlabs.org
2185S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Olof Johanssonab06ff32006-09-06 14:44:54 -05002187LINUX FOR POWERPC PA SEMI PWRFICIENT
2188P: Olof Johansson
2189M: olof@lixom.net
2190W: http://www.pasemi.com/
2191L: linuxppc-dev@ozlabs.org
2192S: Supported
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194LLC (802.2)
2195P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002196M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197S: Maintained
2198
2199LINUX FOR 64BIT POWERPC
2200P: Paul Mackerras
2201M: paulus@samba.org
2202M: paulus@au.ibm.com
2203P: Anton Blanchard
2204M: anton@samba.org
2205M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002206W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002207L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208S: Supported
2209
2210LINUX SECURITY MODULE (LSM) FRAMEWORK
2211P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002212M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002213L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002215T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216S: Supported
2217
2218LM83 HARDWARE MONITOR DRIVER
2219P: Jean Delvare
2220M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002221L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222S: Maintained
2223
2224LM90 HARDWARE MONITOR DRIVER
2225P: Jean Delvare
2226M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002227L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228S: Maintained
2229
2230LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2231P: Richard Russon (FlatCap)
2232M: ldm@flatcap.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002233L: ldm-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234W: http://ldm.sourceforge.net
2235S: Maintained
2236
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002237LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2238P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002239M: Eric.Moore@lsi.com
2240M: support@lsi.com
2241L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002242L: linux-scsi@vger.kernel.org
2243W: http://www.lsilogic.com/support
2244S: Supported
2245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2247P: Matthew Wilcox
2248M: matthew@wil.cx
2249L: linux-scsi@vger.kernel.org
2250S: Maintained
2251
2252M68K ARCHITECTURE
2253P: Geert Uytterhoeven
2254M: geert@linux-m68k.org
2255P: Roman Zippel
2256M: zippel@linux-m68k.org
2257L: linux-m68k@lists.linux-m68k.org
2258W: http://www.linux-m68k.org/
2259W: http://linux-m68k-cvs.ubb.ca/
2260S: Maintained
2261
2262M68K ON APPLE MACINTOSH
2263P: Joshua Thompson
2264M: funaho@jurai.org
2265W: http://www.mac.linux-m68k.org/
2266L: linux-mac68k@mac.linux-m68k.org
2267S: Maintained
2268
2269M68K ON HP9000/300
2270P: Philip Blundell
2271M: philb@gnu.org
2272W: http://www.tazenda.demon.co.uk/phil/linux-hp
2273S: Maintained
2274
Jiri Benc64a327a2007-05-05 11:47:08 -07002275MAC80211
2276P: Jiri Benc
2277M: jbenc@suse.cz
2278P: Michael Wu
2279M: flamingice@sourmilk.net
2280L: linux-wireless@vger.kernel.org
2281W: http://linuxwireless.org/
2282T: git kernel.org:/pub/scm/linux/kernel/git/jbenc/mac80211.git
2283S: Maintained
2284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285MARVELL YUKON / SYSKONNECT DRIVER
2286P: Mirko Lindner
2287M: mlindner@syskonnect.de
2288P: Ralph Roesler
2289M: rroesler@syskonnect.de
2290W: http://www.syskonnect.com
2291S: Supported
2292
Michael Kerriskfaf16682005-07-31 22:34:47 -07002293MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002294P: Michael Kerrisk
2295M: mtk-manpages@gmx.net
2296W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2297S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002298
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002299MARVELL MV643XX ETHERNET DRIVER
2300P: Dale Farnsworth
2301M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002303M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002304L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002305S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307MATROX FRAMEBUFFER DRIVER
2308P: Petr Vandrovec
2309M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002310L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311S: Maintained
2312
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002313MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002314P: Neela Syam Kolli
2315M: Neela.Kolli@engenio.com
2316S: linux-scsi@vger.kernel.org
2317W: http://megaraid.lsilogic.com
2318S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002319
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002320MEMORY MANAGEMENT
2321L: linux-mm@kvack.org
2322L: linux-kernel@vger.kernel.org
2323W: http://www.linux-mm.org
2324S: Maintained
2325
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002326MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327P: David Woodhouse
2328M: dwmw2@infradead.org
2329W: http://www.linux-mtd.infradead.org/
2330L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002331T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332S: Maintained
2333
Artem Bityutskiy48576402007-02-13 17:11:10 +02002334UNSORTED BLOCK IMAGES (UBI)
2335P: Artem Bityutskiy
2336M: dedekind@infradead.org
2337W: http://www.linux-mtd.infradead.org/
2338L: linux-mtd@lists.infradead.org
2339T: git git://git.infradead.org/ubi-2.6.git
2340S: Maintained
2341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342MICROTEK X6 SCANNER
2343P: Oliver Neukum
2344M: oliver@neukum.name
2345S: Maintained
2346
2347MIPS
2348P: Ralf Baechle
2349M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002350W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002352T: git www.linux-mips.org:/pub/scm/linux.git
2353S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355MISCELLANEOUS MCA-SUPPORT
2356P: James Bottomley
2357M: jejb@steeleye.com
2358L: linux-kernel@vger.kernel.org
2359S: Maintained
2360
2361MODULE SUPPORT
2362P: Rusty Russell
2363M: rusty@rustcorp.com.au
2364L: linux-kernel@vger.kernel.org
2365S: Maintained
2366
2367MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2368P: Stelian Pop
2369M: stelian@popies.net
2370W: http://popies.net/meye/
2371S: Maintained
2372
2373MOUSE AND MISC DEVICES [GENERAL]
2374P: Alessandro Rubini
2375M: rubini@ipvvis.unipv.it
2376L: linux-kernel@vger.kernel.org
2377S: Maintained
2378
Jiri Slabyd7354102006-12-08 02:38:35 -08002379MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2380P: Jiri Slaby
2381M: jirislaby@gmail.com
2382L: linux-kernel@vger.kernel.org
2383S: Maintained
2384
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002385MSI LAPTOP SUPPORT
2386P: Lennart Poettering
2387M: mzxreary@0pointer.de
2388L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2389W: http://0pointer.de/lennart/tchibo.html
2390S: Maintained
2391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392MTRR AND SIMILAR SUPPORT [i386]
2393P: Richard Gooch
2394M: rgooch@atnf.csiro.au
2395L: linux-kernel@vger.kernel.org
2396W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2397S: Maintained
2398
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002399MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2400P: Pierre Ossman
2401M: drzeus-mmc@drzeus.cx
2402L: linux-kernel@vger.kernel.org
2403S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405MULTISOUND SOUND DRIVER
2406P: Andrew Veliath
2407M: andrewtv@usa.net
2408S: Maintained
2409
Jiri Slabyd7354102006-12-08 02:38:35 -08002410MULTITECH MULTIPORT CARD (ISICOM)
2411P: Jiri Slaby
2412M: jirislaby@gmail.com
2413L: linux-kernel@vger.kernel.org
2414S: Maintained
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416NATSEMI ETHERNET DRIVER (DP8381x)
2417P: Tim Hockin
2418M: thockin@hockin.org
2419S: Maintained
2420
2421NCP FILESYSTEM
2422P: Petr Vandrovec
2423M: vandrove@vc.cvut.cz
2424L: linware@sh.cvut.cz
2425S: Maintained
2426
2427NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2428P: James E.J. Bottomley
2429M: James.Bottomley@HansenPartnership.com
2430L: linux-scsi@vger.kernel.org
2431S: Maintained
2432
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002433NETEM NETWORK EMULATOR
2434P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002435M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002436L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002437S: Maintained
2438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439NETFILTER/IPTABLES/IPCHAINS
2440P: Rusty Russell
2441P: Marc Boucher
2442P: James Morris
2443P: Harald Welte
2444P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002445P: Patrick McHardy
2446M: kaber@trash.net
2447L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002448L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002449L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450W: http://www.netfilter.org/
2451W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452S: Supported
2453
Paul Moore4cc67732006-09-25 15:57:13 -07002454NETLABEL
2455P: Paul Moore
2456M: paul.moore@hp.com
2457W: http://netlabel.sf.net
2458L: netdev@vger.kernel.org
2459S: Supported
2460
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461NETROM NETWORK LAYER
2462P: Ralf Baechle
2463M: ralf@linux-mips.org
2464L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002465W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466S: Maintained
2467
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002468NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469P: Paul Clements
2470M: Paul.Clements@steeleye.com
2471S: Maintained
2472
2473NETWORK DEVICE DRIVERS
2474P: Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002475M: akpm@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476P: Jeff Garzik
2477M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002478L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002479T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480S: Maintained
2481
2482NETWORKING [GENERAL]
2483P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002484M: netdev@vger.kernel.org
2485L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002486W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487S: Maintained
2488
2489NETWORKING [IPv4/IPv6]
2490P: David S. Miller
2491M: davem@davemloft.net
2492P: Alexey Kuznetsov
2493M: kuznet@ms2.inr.ac.ru
2494P: Pekka Savola (ipv6)
2495M: pekkas@netcore.fi
2496P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002497M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498P: Hideaki YOSHIFUJI
2499M: yoshfuji@linux-ipv6.org
2500P: Patrick McHardy
2501M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002502L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002503T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504S: Maintained
2505
John W. Linville29f8f632006-01-18 14:52:48 -08002506NETWORKING [WIRELESS]
2507P: John W. Linville
2508M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002509L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002510T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2511S: Maintained
2512
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002513NETXEN (1/10) GbE SUPPORT
2514P: Amit S. Kale
2515M: amitkale@netxen.com
2516L: netdev@vger.kernel.org
2517W: http://www.netxen.com
2518S: Supported
2519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520IPVS
2521P: Wensong Zhang
2522M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002523P: Simon Horman
2524M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525P: Julian Anastasov
2526M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002527L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528S: Maintained
2529
2530NFS CLIENT
2531P: Trond Myklebust
2532M: trond.myklebust@fys.uio.no
2533L: linux-kernel@vger.kernel.org
2534S: Maintained
2535
2536NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002537P: Jan-Pascal van Best
2538M: janpascal@vanbest.org
2539P: Andreas Mohr
2540M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002541L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542S: Maintained
2543
2544NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2545P: YOKOTA Hiroshi
2546M: yokota@netlab.is.tsukuba.ac.jp
2547W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2548S: Maintained
2549
2550NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2551P: GOTO Masanori
2552M: gotom@debian.or.jp
2553P: YOKOTA Hiroshi
2554M: yokota@netlab.is.tsukuba.ac.jp
2555W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2556S: Maintained
2557
2558NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2559P: Eberhard Moenkeberg
2560M: emoenke@gwdg.de
2561L: linux-kernel@vger.kernel.org
2562S: Maintained
2563
2564NTFS FILESYSTEM
2565P: Anton Altaparmakov
2566M: aia21@cantab.net
2567L: linux-ntfs-dev@lists.sourceforge.net
2568L: linux-kernel@vger.kernel.org
2569W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002570T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571S: Maintained
2572
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002573NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002574P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002575M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002576L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002577S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
Ramkrishna Vepa3ef34b82007-03-30 18:42:27 -07002579NETERION (S2IO) Xframe 10GbE DRIVER
2580P: Ramkrishna Vepa
2581M: ram.vepa@neterion.com
2582P: Rastapur Santosh
2583M: santosh.rastapur@neterion.com
2584P: Sivakumar Subramani
2585M: sivakumar.subramani@neterion.com
2586P: Sreenivasa Honnur
2587M: sreenivasa.honnur@neterion.com
2588L: netdev@vger.kernel.org
2589W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/TitleIndex?anonymous
2590S: Supported
2591
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002592OPENCORES I2C BUS DRIVER
2593P: Peter Korsgaard
2594M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002595L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002596S: Maintained
2597
Mark Fashehccd979b2005-12-15 14:31:24 -08002598ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2599P: Mark Fasheh
2600M: mark.fasheh@oracle.com
2601P: Kurt Hackel
2602M: kurt.hackel@oracle.com
2603L: ocfs2-devel@oss.oracle.com
2604W: http://oss.oracle.com/projects/ocfs2/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002605S: Supported
Mark Fashehccd979b2005-12-15 14:31:24 -08002606
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607OLYMPIC NETWORK DRIVER
2608P: Peter De Shrijver
2609M: p2@ace.ulyssis.student.kuleuven.ac.be
2610P: Mike Phillips
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002611M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002612L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613L: linux-tr@linuxtr.net
2614W: http://www.linuxtr.net
2615S: Maintained
2616
Harald Weltec1986ee2005-11-13 16:06:29 -08002617OMNIKEY CARDMAN 4000 DRIVER
2618P: Harald Welte
2619M: laforge@gnumonks.org
2620S: Maintained
2621
Harald Welte77c44ab2005-11-13 16:06:26 -08002622OMNIKEY CARDMAN 4040 DRIVER
2623P: Harald Welte
2624M: laforge@gnumonks.org
2625S: Maintained
2626
Jonathan Corbet77d51402007-03-22 19:44:17 -03002627OMNIVISION OV7670 SENSOR DRIVER
2628P: Jonathan Corbet
2629M: corbet@lwn.net
2630L: video4linux-list@redhat.com
2631S: Maintained
2632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633ONSTREAM SCSI TAPE DRIVER
2634P: Willem Riede
2635M: osst@riede.org
2636L: osst-users@lists.sourceforge.net
2637L: linux-scsi@vger.kernel.org
2638S: Maintained
2639
2640OPL3-SA2, SA3, and SAx DRIVER
2641P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002642M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643L: linux-sound@vger.kernel.org
2644S: Maintained
2645
2646OPROFILE
2647P: Philippe Elie
2648M: phil.el@wanadoo.fr
2649L: oprofile-list@lists.sf.net
2650S: Maintained
2651
2652ORINOCO DRIVER
2653P: Pavel Roskin
2654M: proski@gnu.org
2655P: David Gibson
2656M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07002657L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07002658L: orinoco-users@lists.sourceforge.net
2659L: orinoco-devel@lists.sourceforge.net
2660W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661S: Maintained
2662
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002663PA SEMI ETHERNET DRIVER
2664P: Olof Johansson
2665M: olof@lixom.net
2666L: netdev@vger.kernel.org
2667S: Maintained
2668
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002669PA SEMI SMBUS DRIVER
2670P: Olof Johansson
2671M: olof@lixom.net
2672L: i2c@lm-sensors.org
2673S: Maintained
2674
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675PARALLEL PORT SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676L: linux-parport@lists.infradead.org
David Brownell5fdc2ab2007-03-05 00:30:13 -08002677S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
2679PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2680P: Tim Waugh
2681M: tim@cyberelk.net
2682L: linux-parport@lists.infradead.org
2683W: http://www.torque.net/linux-pp.html
2684S: Maintained
2685
2686PARISC ARCHITECTURE
2687P: Matthew Wilcox
2688M: matthew@wil.cx
2689P: Grant Grundler
2690M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002691P: Kyle McMartin
2692M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693L: parisc-linux@parisc-linux.org
2694W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002695T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2696T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697S: Maintained
2698
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02002699PARAVIRT_OPS INTERFACE
2700P: Jeremy Fitzhardinge
2701M: jeremy@xensource.com
2702P: Chris Wright
2703M: chrisw@sous-sol.org
2704P: Zachary Amsden
2705M: zach@vmware.com
2706P: Rusty Russell
2707M: rusty@rustcorp.com.au
2708L: virtualization@lists.osdl.org
2709L: linux-kernel@vger.kernel.org
2710S: Supported
2711
Jim Cromie1662d322006-10-06 00:43:59 -07002712PC87360 HARDWARE MONITORING DRIVER
2713P: Jim Cromie
2714M: jim.cromie@gmail.com
2715L: lm-sensors@lm-sensors.org
2716S: Maintained
2717
2718PC8736x GPIO DRIVER
2719P: Jim Cromie
2720M: jim.cromie@gmail.com
2721S: Maintained
2722
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002723PCI ERROR RECOVERY
2724P: Linas Vepstas
2725M: linas@austin.ibm.com
2726L: linux-kernel@vger.kernel.org
2727L: linux-pci@atrey.karlin.mff.cuni.cz
2728S: Supported
2729
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2731P: Thomas Sailer
2732M: sailer@ife.ee.ethz.ch
2733L: linux-sound@vger.kernel.org
2734W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2735S: Maintained
2736
2737PCI SUBSYSTEM
2738P: Greg Kroah-Hartman
2739M: gregkh@suse.de
2740L: linux-kernel@vger.kernel.org
2741L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002742T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743S: Supported
2744
2745PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002746P: Kristen Carlson Accardi
2747M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748S: Supported
2749
2750PCI HOTPLUG COMPAQ DRIVER
2751P: Greg Kroah-Hartman
2752M: greg@kroah.com
2753S: Maintained
2754
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002755PCIE HOTPLUG DRIVER
2756P: Kristen Carlson Accardi
2757M: kristen.c.accardi@intel.com
2758L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002759S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002760
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002762P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002763L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002765T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002766S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002769P: Don Fry
2770M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002771L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772S: Maintained
2773
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002774PER-TASK DELAY ACCOUNTING
2775P: Shailabh Nagar
2776M: nagar@watson.ibm.com
2777L: linux-kernel@vger.kernel.org
2778S: Maintained
2779
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002780PERSONALITY HANDLING
2781P: Christoph Hellwig
2782M: hch@infradead.org
2783L: linux-abi-devel@lists.sourceforge.net
2784S: Maintained
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786PHRAM MTD DRIVER
2787P: Jörn Engel
2788M: joern@wh.fh-wedel.de
2789L: linux-mtd@lists.infradead.org
2790S: Maintained
2791
Peter Osterlund249a6772005-09-27 21:45:30 -07002792PKTCDVD DRIVER
2793P: Peter Osterlund
2794M: petero2@telia.com
2795L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002796S: Maintained
2797
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798POSIX CLOCKS and TIMERS
2799P: George Anzinger
2800M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002801L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802S: Supported
2803
Eugene Surovegin24682972005-10-14 03:00:53 -07002804POWERPC 4xx EMAC DRIVER
2805P: Eugene Surovegin
2806M: ebs@ebshome.net
2807W: http://kernel.ebshome.net/emac/
2808L: linuxppc-embedded@ozlabs.org
2809L: netdev@vger.kernel.org
2810S: Maintained
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812PNP SUPPORT
2813P: Adam Belay
2814M: ambx1@neo.rr.com
2815S: Maintained
2816
Vitaly Wool999445d2007-01-04 13:07:03 +01002817PNXxxxx I2C DRIVER
2818P: Vitaly Wool
2819M: vitalywool@gmail.com
2820L: i2c@lm-sensors.org
2821S: Maintained
2822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823PPP PROTOCOL DRIVERS AND COMPRESSORS
2824P: Paul Mackerras
2825M: paulus@samba.org
2826L: linux-ppp@vger.kernel.org
2827S: Maintained
2828
2829PPP OVER ATM (RFC 2364)
2830P: Mitchell Blank Jr
2831M: mitch@sfgoth.com
2832S: Maintained
2833
2834PPP OVER ETHERNET
2835P: Michal Ostrowski
2836M: mostrows@speakeasy.net
2837S: Maintained
2838
2839PREEMPTIBLE KERNEL
2840P: Robert Love
2841M: rml@tech9.net
2842L: linux-kernel@vger.kernel.org
2843L: kpreempt-tech@lists.sourceforge.net
2844W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2845S: Supported
2846
2847PRISM54 WIRELESS DRIVER
2848P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002849M: developers@islsm.org
Johannes Berg724c6b32007-04-23 12:18:20 -07002850L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851W: http://prism54.org
2852S: Maintained
2853
2854PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2855P: Peter Denison
2856M: promise@pnd-pc.demon.co.uk
2857W: http://www.pnd-pc.demon.co.uk/promise/
2858S: Maintained
2859
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002860PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2861P: Mikael Pettersson
2862M: mikpe@it.uu.se
2863L: linux-ide@vger.kernel.org
2864S: Maintained
2865
Geoff Levandf58a9d12006-11-23 00:46:51 +01002866PS3 PLATFORM SUPPORT
2867P: Geoff Levand
2868M: geoffrey.levand@am.sony.com
2869L: linuxppc-dev@ozlabs.org
2870L: cbe-oss-dev@ozlabs.org
2871S: Supported
2872
Michael Krufky83202042006-07-03 00:24:18 -07002873PVRUSB2 VIDEO4LINUX DRIVER
2874P: Mike Isely
2875M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03002876L: pvrusb2@isely.net (subscribers-only)
Michael Krufky83202042006-07-03 00:24:18 -07002877L: video4linux-list@redhat.com
2878W: http://www.isely.net/pvrusb2/
2879S: Maintained
2880
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881PXA2xx SUPPORT
2882P: Nicolas Pitre
2883M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002884L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885S: Maintained
2886
2887QLOGIC QLA2XXX FC-SCSI DRIVER
2888P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002889M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890L: linux-scsi@vger.kernel.org
2891S: Supported
2892
Ron Mercer5a4faa872006-07-25 00:40:21 -07002893QLOGIC QLA3XXX NETWORK DRIVER
2894P: Ron Mercer
2895M: linux-driver@qlogic.com
2896L: netdev@vger.kernel.org
2897S: Supported
2898
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899QNX4 FILESYSTEM
2900P: Anders Larsen
2901M: al@alarsen.net
2902L: linux-kernel@vger.kernel.org
2903W: http://www.alarsen.net/linux/qnx4fs/
2904S: Maintained
2905
2906RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002907P: Benjamin Herrenschmidt
2908M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002909L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910S: Maintained
2911
2912RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002913P: Paul Mackerras
2914M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002915L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916S: Maintained
2917
2918RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2919P: Corey Thomas
2920M: corey@world.std.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002921L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922S: Maintained
2923
Matt Mackall9e95ce22005-04-16 15:25:56 -07002924RANDOM NUMBER DRIVER
2925P: Matt Mackall
2926M: mpm@selenic.com
2927S: Maintained
2928
Matt Porter394b7012005-11-07 01:00:15 -08002929RAPIDIO SUBSYSTEM
2930P: Matt Porter
2931M: mporter@kernel.crashing.org
2932L: linux-kernel@vger.kernel.org
2933S: Maintained
2934
Josh Triplett595182b2006-10-04 02:17:21 -07002935READ-COPY UPDATE (RCU)
2936P: Dipankar Sarma
2937M: dipankar@in.ibm.com
2938W: http://www.rdrop.com/users/paulmck/rclock/
2939L: linux-kernel@vger.kernel.org
2940S: Supported
2941
2942RCUTORTURE MODULE
2943P: Josh Triplett
2944M: josh@freedesktop.org
2945L: linux-kernel@vger.kernel.org
2946S: Maintained
2947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948REAL TIME CLOCK DRIVER
2949P: Paul Gortmaker
2950M: p_gortmaker@yahoo.com
2951L: linux-kernel@vger.kernel.org
2952S: Maintained
2953
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002954REAL TIME CLOCK (RTC) SUBSYSTEM
2955P: Alessandro Zummo
2956M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002957L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002958S: Maintained
2959
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960REISERFS FILE SYSTEM
2961P: Hans Reiser
2962M: reiserfs-dev@namesys.com
2963L: reiserfs-list@namesys.com
2964W: http://www.namesys.com
2965S: Supported
2966
2967ROCKETPORT DRIVER
2968P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969W: http://www.comtrol.com
2970S: Maintained
2971
2972ROSE NETWORK LAYER
2973P: Ralf Baechle
2974M: ralf@linux-mips.org
2975L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002976W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977S: Maintained
2978
2979RISCOM8 DRIVER
2980S: Orphan
2981
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002982S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002983P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002984M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002985L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002986S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988S390
2989P: Martin Schwidefsky
2990M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002991P: Heiko Carstens
2992M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002994L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002995W: http://www.ibm.com/developerworks/linux/linux390/
2996S: Supported
2997
2998S390 NETWORK DRIVERS
2999P: Frank Pavlic
3000M: fpavlic@de.ibm.com
3001M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01003002L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003003W: http://www.ibm.com/developerworks/linux/linux390/
3004S: Supported
3005
3006S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02003007P: Swen Schillig
3008M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08003009M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01003010L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003011W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012S: Supported
3013
3014SAA7146 VIDEO4LINUX-2 DRIVER
3015P: Michael Hunold
3016M: michael@mihu.de
3017W: http://www.mihu.de/linux/saa7146
3018S: Maintained
3019
3020SBPCD CDROM DRIVER
3021P: Eberhard Moenkeberg
3022M: emoenke@gwdg.de
3023L: linux-kernel@vger.kernel.org
3024S: Maintained
3025
3026SC1200 WDT DRIVER
3027P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07003028M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029S: Maintained
3030
3031SCHEDULER
3032P: Ingo Molnar
3033M: mingo@elte.hu
3034P: Robert Love [the preemptible kernel bits]
3035M: rml@tech9.net
3036L: linux-kernel@vger.kernel.org
3037S: Maintained
3038
3039SCSI CDROM DRIVER
3040P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003041M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042L: linux-scsi@vger.kernel.org
3043W: http://www.kernel.dk
3044S: Maintained
3045
3046SCSI SG DRIVER
3047P: Doug Gilbert
3048M: dgilbert@interlog.com
3049L: linux-scsi@vger.kernel.org
3050W: http://www.torque.net/sg
3051S: Maintained
3052
3053SCSI SUBSYSTEM
3054P: James E.J. Bottomley
3055M: James.Bottomley@SteelEye.com
3056L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003057T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058S: Maintained
3059
3060SCSI TAPE DRIVER
3061P: Kai Mäkisara
3062M: Kai.Makisara@kolumbus.fi
3063L: linux-scsi@vger.kernel.org
3064S: Maintained
3065
3066SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003067P: Vlad Yasevich
3068M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01003069P: Sridhar Samudrala
3070M: sri@us.ibm.com
3071L: lksctp-developers@lists.sourceforge.net
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003072W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01003073S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
3075SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07003076P: Jim Cromie
3077M: jim.cromie@gmail.com
3078S: Odd Fixes
3079
3080SCx200 GPIO DRIVER
3081P: Jim Cromie
3082M: jim.cromie@gmail.com
3083S: Maintained
3084
3085SCx200 HRT CLOCKSOURCE DRIVER
3086P: Jim Cromie
3087M: jim.cromie@gmail.com
3088S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
3090SECURITY CONTACT
3091P: Security Officers
3092M: security@kernel.org
3093S: Supported
3094
3095SELINUX SECURITY MODULE
3096P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08003097M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04003099M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05003100P: Eric Paris
3101M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102L: linux-kernel@vger.kernel.org (kernel issues)
Stephen Smalley588a3152007-02-23 09:20:09 -05003103L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104W: http://www.nsa.gov/selinux
3105S: Supported
3106
3107SERIAL ATA (SATA) SUBSYSTEM:
3108P: Jeff Garzik
3109M: jgarzik@pobox.com
3110L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003111T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112S: Supported
3113
3114SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
3115P: Pat Gefre
3116M: pfg@sgi.com
3117L: linux-ia64@vger.kernel.org
3118S: Supported
3119
3120SGI VISUAL WORKSTATION 320 AND 540
3121P: Andrey Panin
3122M: pazke@donpac.ru
3123L: linux-visws-devel@lists.sf.net
3124W: http://linux-visws.sf.net
3125S: Maintained for 2.6.
3126
3127SIMTEC EB110ATX (Chalice CATS)
3128P: Ben Dooks
3129P: Vincent Sanders
3130M: support@simtec.co.uk
3131W: http://www.simtec.co.uk/products/EB110ATX/
3132S: Supported
3133
3134SIMTEC EB2410ITX (BAST)
3135P: Ben Dooks
3136P: Vincent Sanders
3137M: support@simtec.co.uk
3138W: http://www.simtec.co.uk/products/EB2410ITX/
3139S: Supported
3140
Francois Romieu92aab3c2005-07-30 13:11:18 +02003141SIS 190 ETHERNET DRIVER
3142P: Francois Romieu
3143M: romieu@fr.zoreil.com
3144L: netdev@vger.kernel.org
3145S: Maintained
3146
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147SIS 5513 IDE CONTROLLER DRIVER
3148P: Lionel Bouton
3149M: Lionel.Bouton@inet6.fr
3150W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3151W: http://gyver.homeip.net/sis5513/index.html
3152S: Maintained
3153
3154SIS 900/7016 FAST ETHERNET DRIVER
3155P: Daniele Venzano
3156M: venza@brownhat.org
3157W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003158L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159S: Maintained
3160
3161SIS FRAMEBUFFER DRIVER
3162P: Thomas Winischhofer
3163M: thomas@winischhofer.net
3164W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003165S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
3167SIS USB2VGA DRIVER
3168P: Thomas Winischhofer
3169M: thomas@winischhofer.net
3170W: http://www.winischhofer.at/linuxsisusbvga.shtml
3171S: Maintained
3172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173SMC91x ETHERNET DRIVER
3174P: Nicolas Pitre
3175M: nico@cam.org
3176S: Maintained
3177
Daniel Drake8f0f8502006-07-18 22:00:25 +01003178SOFTMAC LAYER (IEEE 802.11)
3179P: Johannes Berg
3180M: johannes@sipsolutions.net
3181P: Joe Jezak
3182M: josejx@gentoo.org
3183P: Daniel Drake
3184M: dsd@gentoo.org
3185W: http://softmac.sipsolutions.net/
Johannes Berg724c6b32007-04-23 12:18:20 -07003186L: linux-wireless@vger.kernel.org
Daniel Drake8f0f8502006-07-18 22:00:25 +01003187S: Maintained
3188
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189SOFTWARE RAID (Multiple Disks) SUPPORT
3190P: Ingo Molnar
3191M: mingo@redhat.com
3192P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003193M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003195S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
3197SOFTWARE SUSPEND:
3198P: Pavel Machek
3199M: pavel@suse.cz
David Brownellf318a632007-04-23 14:41:06 -07003200L: linux-pm@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201S: Maintained
3202
3203SONIC NETWORK DRIVER
3204P: Thomas Bogendoerfer
3205M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003206L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207S: Maintained
3208
3209SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01003210P: Mattia Dongili
3211M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01003212L: linux-acpi@vger.kernel.org
3213W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214S: Maintained
3215
3216SOUND
3217P: Jaroslav Kysela
3218M: perex@suse.cz
3219L: alsa-devel@alsa-project.org
3220S: Maintained
3221
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003222SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3223P: Liam Girdwood
3224M: liam.girdwood@wolfsonmicro.com
3225L: alsa-devel@alsa-project.org
3226S: Supported
3227
Kumar Gala025c3982006-04-02 16:05:54 -05003228SPI SUBSYSTEM
3229P: David Brownell
3230M: dbrownell@users.sourceforge.net
3231L: spi-devel-general@lists.sourceforge.net
3232S: Maintained
3233
Steven Rostedt855f46a2006-08-05 12:14:50 -07003234STABLE BRANCH:
3235P: Greg Kroah-Hartman
3236M: greg@kroah.com
3237P: Chris Wright
3238M: chrisw@sous-sol.org
3239L: stable@kernel.org
3240S: Maintained
3241
Kylene Hall1c72d462005-05-01 08:59:13 -07003242TPM DEVICE DRIVER
3243P: Kylene Hall
3244M: kjhall@us.ibm.com
3245W: http://tpmdd.sourceforge.net
Marcel Selhorstd3a7b6d2007-03-16 13:38:31 -08003246P: Marcel Selhorst
3247M: tpm@selhorst.net
3248W: http://www.prosec.rub.de/tpm/
Kylene Hall1c72d462005-05-01 08:59:13 -07003249L: tpmdd-devel@lists.sourceforge.net
3250S: Maintained
3251
Mark Gross1a80ba82005-10-30 15:02:55 -08003252Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003253P: Mark Gross
3254M: mark.gross@intel.com
3255S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003256
Chris Zankel48b415c2005-06-23 22:01:07 -07003257TENSILICA XTENSA PORT (xtensa):
3258P: Chris Zankel
3259M: chris@zankel.net
3260S: Maintained
3261
Henrique de Moraes Holschuh756970a2007-03-29 01:58:44 -03003262THINKPAD ACPI EXTRAS DRIVER
3263P: Henrique de Moraes Holschuh
3264M: ibm-acpi@hmh.eng.br
3265L: ibm-acpi-devel@lists.sourceforge.net
3266W: http://ibm-acpi.sourceforge.net
3267W: http://thinkwiki.org/wiki/Ibm-acpi
3268T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
3269S: Maintained
3270
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271UltraSPARC (sparc64):
3272P: David S. Miller
3273M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003275T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276S: Maintained
3277
3278SHARP LH SUPPORT (LH7952X & LH7A40X)
3279P: Marc Singer
3280M: elf@buici.com
3281W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003282L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283S: Maintained
3284
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003285SHPC HOTPLUG DRIVER
3286P: Kristen Carlson Accardi
3287M: kristen.c.accardi@intel.com
3288L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003289S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003290
Pierre Ossmand129bce2006-03-24 03:18:17 -08003291SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3292P: Pierre Ossman
3293M: drzeus-sdhci@drzeus.cx
3294L: sdhci-devel@list.drzeus.cx
3295W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3296S: Maintained
3297
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003298SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3299P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003300M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003301L: netdev@vger.kernel.org
3302S: Maintained
3303
Chris Boot1a87d942006-07-10 04:45:34 -07003304SOEKRIS NET48XX LED SUPPORT
3305P: Chris Boot
3306M: bootc@bootc.net
3307S: Maintained
3308
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309SPARC (sparc32):
3310P: William L. Irwin
3311M: wli@holomorphy.com
3312L: sparclinux@vger.kernel.org
3313S: Maintained
3314
3315SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3316P: Roger Wolff
3317M: R.E.Wolff@BitWizard.nl
3318L: linux-kernel@vger.kernel.org ?
3319S: Supported
3320
Jim Lewis2752e402006-09-29 02:01:19 -07003321SPIDERNET NETWORK DRIVER for CELL
Linas Vepstasfa302482007-02-20 16:45:27 -06003322P: Linas Vepstas
3323M: linas@austin.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07003324L: netdev@vger.kernel.org
3325S: Supported
3326
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327SRM (Alpha) environment access
3328P: Jan-Benedict Glaw
3329M: jbglaw@lug-owl.de
3330L: linux-kernel@vger.kernel.org
3331S: Maintained
3332
3333STARFIRE/DURALAN NETWORK DRIVER
3334P: Ion Badulescu
3335M: ionut@cs.columbia.edu
3336S: Maintained
3337
3338STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3339W: http://mosquitonet.Stanford.EDU/strip.html
3340S: Unsupported ?
3341
3342STRADIS MPEG-2 DECODER DRIVER
3343P: Nathan Laredo
3344M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345W: http://www.stradis.com/
3346S: Maintained
3347
3348SUPERH (sh)
3349P: Paul Mundt
3350M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003351L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353S: Maintained
3354
3355SUPERH64 (sh64)
3356P: Paul Mundt
3357M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358L: linuxsh-shmedia-dev@lists.sourceforge.net
3359W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360S: Maintained
3361
3362SUN3/3X
3363P: Sam Creasey
3364M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365W: http://sammy.net/sun3/
3366S: Maintained
3367
3368SVGA HANDLING
3369P: Martin Mares
3370M: mj@ucw.cz
3371L: linux-video@atrey.karlin.mff.cuni.cz
3372S: Maintained
3373
3374SYSV FILESYSTEM
3375P: Christoph Hellwig
3376M: hch@infradead.org
3377S: Maintained
3378
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003379TC CLASSIFIER
3380P: Jamal Hadi Salim
3381M: hadi@cyberus.ca
3382L: netdev@vger.kernel.org
3383S: Maintained
3384
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003385TCP LOW PRIORITY MODULE
3386P: Wong Hoi Sing, Edison
3387M: hswong3i@gmail.com
3388P: Hung Hing Lun, Mike
3389M: hlhung3i@gmail.com
3390W: http://tcp-lp-mod.sourceforge.net/
3391S: Maintained
3392
Alex Dubov4020f2d2006-10-04 02:15:37 -07003393TI FLASH MEDIA INTERFACE DRIVER
3394P: Alex Dubov
3395M: oakad@yahoo.com
3396S: Maintained
3397
Michael Buesch844dd052006-06-26 00:24:59 -07003398TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3399P: Deepak Saxena
3400M: dsaxena@plexity.net
3401S: Maintained
3402
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003403TASKSTATS STATISTICS INTERFACE
3404P: Shailabh Nagar
3405M: nagar@watson.ibm.com
3406L: linux-kernel@vger.kernel.org
3407S: Maintained
3408
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003410P: Romain Lievin
3411M: roms@lpg.ticalc.org
3412S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Per Lidene86eaa32006-01-12 16:45:18 +01003414TIPC NETWORK LAYER
3415P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003416M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003417P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003418M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003419P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003420M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003421L: tipc-discussion@lists.sourceforge.net
3422W: http://tipc.sourceforge.net/
3423W: http://tipc.cslab.ericsson.net/
3424T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3425S: Maintained
3426
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427TLAN NETWORK DRIVER
3428P: Samuel Chessman
3429M: chessman@tux.org
3430L: tlan-devel@lists.sourceforge.net
3431W: http://sourceforge.net/projects/tlan/
3432S: Maintained
3433
3434TOKEN-RING NETWORK DRIVER
3435P: Mike Phillips
3436M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003437L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438L: linux-tr@linuxtr.net
3439W: http://www.linuxtr.net
3440S: Maintained
3441
3442TOSHIBA ACPI EXTRAS DRIVER
3443P: John Belmonte
3444M: toshiba_acpi@memebeam.org
3445W: http://memebeam.org/toys/ToshibaAcpiDriver
3446S: Maintained
3447
3448TOSHIBA SMM DRIVER
3449P: Jonathan Buzzard
3450M: jonathan@buzzard.org.uk
3451L: tlinux-users@tce.toshiba-dme.co.jp
3452W: http://www.buzzard.org.uk/toshiba/
3453S: Maintained
3454
3455TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3456P: Muli Ben-Yehuda
3457M: mulix@mulix.org
3458L: linux-kernel@vger.kernel.org
3459S: Maintained
3460
3461TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003462P: Adrian Bunk
3463M: trivial@kernel.org
3464L: linux-kernel@vger.kernel.org
3465W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3466T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3467S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
3469TMS380 TOKEN-RING NETWORK DRIVER
3470P: Adam Fritzler
3471M: mid@auk.cx
3472L: linux-tr@linuxtr.net
3473W: http://www.auk.cx/tms380tr/
3474S: Maintained
3475
3476TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003477P: Valerie Henson
3478M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479L: tulip-users@lists.sourceforge.net
3480W: http://sourceforge.net/projects/tulip/
3481S: Maintained
3482
3483TUN/TAP driver
3484P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003485M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486L: vtun@office.satix.net
3487W: http://vtun.sourceforge.net/tun
3488S: Maintained
3489
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003490TURBOCHANNEL SUBSYSTEM
3491P: Maciej W. Rozycki
3492M: macro@linux-mips.org
3493S: Maintained
3494
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495U14-34F SCSI DRIVER
3496P: Dario Ballabio
3497M: ballabio_dario@emc.com
3498L: linux-scsi@vger.kernel.org
3499S: Maintained
3500
3501UDF FILESYSTEM
3502P: Ben Fennema
3503M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504W: http://linux-udf.sourceforge.net
3505S: Maintained
3506
3507UNIFORM CDROM DRIVER
3508P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003509M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510L: linux-kernel@vger.kernel.org
3511W: http://www.kernel.dk
3512S: Maintained
3513
3514USB ACM DRIVER
3515P: Oliver Neukum
3516M: oliver@neukum.name
3517L: linux-usb-users@lists.sourceforge.net
3518L: linux-usb-devel@lists.sourceforge.net
3519S: Maintained
3520
3521USB BLOCK DRIVER (UB ub)
3522P: Pete Zaitcev
3523M: zaitcev@redhat.com
3524L: linux-kernel@vger.kernel.org
3525L: linux-usb-devel@lists.sourceforge.net
3526S: Supported
3527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528USB CDC ETHERNET DRIVER
3529P: Greg Kroah-Hartman
3530M: greg@kroah.com
3531L: linux-usb-users@lists.sourceforge.net
3532L: linux-usb-devel@lists.sourceforge.net
3533S: Maintained
3534W: http://www.kroah.com/linux-usb/
3535
Peter Korsgaardd0374f42007-02-16 17:03:54 +01003536USB DAVICOM DM9601 DRIVER
3537P: Peter Korsgaard
3538M: jacmet@sunsite.dk
3539L: linux-usb-devel@lists.sourceforge.net
3540W: http://www.linux-usb.org/usbnet
3541S: Maintained
3542
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543USB EHCI DRIVER
3544P: David Brownell
3545M: dbrownell@users.sourceforge.net
3546L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003547S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
Luca Risolia7ce08c92006-01-11 02:06:59 +00003549USB ET61X[12]51 DRIVER
3550P: Luca Risolia
3551M: luca.risolia@studio.unibo.it
3552L: linux-usb-devel@lists.sourceforge.net
3553L: video4linux-list@redhat.com
3554W: http://www.linux-projects.org
3555S: Maintained
3556
David Brownell69ae9e32006-11-14 02:03:31 -08003557USB GADGET/PERIPHERAL SUBSYSTEM
3558P: David Brownell
3559M: dbrownell@users.sourceforge.net
3560L: linux-usb-devel@lists.sourceforge.net
3561W: http://www.linux-usb.org/gadget
3562S: Maintained
3563
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003565P: Jiri Kosina
3566M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567L: linux-usb-devel@lists.sourceforge.net
Jiri Kosinaa4dff392007-02-27 17:40:09 +01003568T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569S: Maintained
3570
3571USB HUB DRIVER
3572P: Johannes Erdfelt
3573M: johannes@erdfelt.com
3574L: linux-usb-users@lists.sourceforge.net
3575L: linux-usb-devel@lists.sourceforge.net
3576S: Maintained
3577
Olav Kongas959eea22005-11-03 17:38:14 +02003578USB ISP116X DRIVER
3579P: Olav Kongas
3580M: ok@artecdesign.ee
3581L: linux-usb-devel@lists.sourceforge.net
3582S: Maintained
3583
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584USB KAWASAKI LSI DRIVER
3585P: Oliver Neukum
3586M: oliver@neukum.name
3587L: linux-usb-users@lists.sourceforge.net
3588L: linux-usb-devel@lists.sourceforge.net
3589S: Maintained
3590
3591USB MASS STORAGE DRIVER
3592P: Matthew Dharm
3593M: mdharm-usb@one-eyed-alien.net
3594L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003595L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596S: Maintained
3597W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3598
3599USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003600P: David Brownell
3601M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602L: linux-usb-users@lists.sourceforge.net
3603L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003604S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Matthias Urlichsba460e42005-07-14 00:33:47 -07003606USB OPTION-CARD DRIVER
3607P: Matthias Urlichs
3608M: smurf@smurf.noris.de
3609L: linux-usb-devel@lists.sourceforge.net
3610S: Maintained
3611
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612USB OV511 DRIVER
3613P: Mark McClelland
3614M: mmcclell@bigfoot.com
3615L: linux-usb-users@lists.sourceforge.net
3616L: linux-usb-devel@lists.sourceforge.net
3617W: http://alpha.dyndns.org/ov511/
3618S: Maintained
3619
3620USB PEGASUS DRIVER
3621P: Petko Manolov
3622M: petkan@users.sourceforge.net
3623L: linux-usb-users@lists.sourceforge.net
3624L: linux-usb-devel@lists.sourceforge.net
3625W: http://pegasus2.sourceforge.net/
3626S: Maintained
3627
3628USB PRINTER DRIVER
3629P: Vojtech Pavlik
3630M: vojtech@suse.cz
3631L: linux-usb-users@lists.sourceforge.net
3632L: linux-usb-devel@lists.sourceforge.net
3633S: Maintained
3634
3635USB RTL8150 DRIVER
3636P: Petko Manolov
3637M: petkan@users.sourceforge.net
3638L: linux-usb-users@lists.sourceforge.net
3639L: linux-usb-devel@lists.sourceforge.net
3640W: http://pegasus2.sourceforge.net/
3641S: Maintained
3642
3643USB SE401 DRIVER
3644P: Jeroen Vreeken
3645M: pe1rxq@amsat.org
3646L: linux-usb-users@lists.sourceforge.net
3647L: linux-usb-devel@lists.sourceforge.net
3648W: http://www.chello.nl/~j.vreeken/se401/
3649S: Maintained
3650
3651USB SERIAL CYBERJACK DRIVER
3652P: Matthias Bruestle and Harald Welte
3653M: support@reiner-sct.com
3654W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3655S: Maintained
3656
3657USB SERIAL DIGI ACCELEPORT DRIVER
3658P: Peter Berger and Al Borchers
3659M: pberger@brimson.com
3660M: alborchers@steinerpoint.com
3661L: linux-usb-users@lists.sourceforge.net
3662L: linux-usb-devel@lists.sourceforge.net
3663S: Maintained
3664
3665USB SERIAL DRIVER
3666P: Greg Kroah-Hartman
3667M: gregkh@suse.de
3668L: linux-usb-users@lists.sourceforge.net
3669L: linux-usb-devel@lists.sourceforge.net
3670S: Supported
3671
3672USB SERIAL BELKIN F5U103 DRIVER
3673P: William Greathouse
3674M: wgreathouse@smva.com
3675L: linux-usb-users@lists.sourceforge.net
3676L: linux-usb-devel@lists.sourceforge.net
3677S: Maintained
3678
3679USB SERIAL CYPRESS M8 DRIVER
3680P: Lonnie Mendez
3681M: dignome@gmail.com
3682L: linux-usb-users@lists.sourceforge.net
3683L: linux-usb-devel@lists.sourceforge.net
3684S: Maintained
3685W: http://geocities.com/i0xox0i
3686W: http://firstlight.net/cvs
3687
3688USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3689L: linux-usb-users@lists.sourceforge.net
3690L: linux-usb-devel@lists.sourceforge.net
3691S: Maintained
3692
3693USB AUERSWALD DRIVER
3694P: Wolfgang Muees
3695M: wolfgang@iksw-muees.de
3696L: linux-usb-users@lists.sourceforge.net
3697L: linux-usb-devel@lists.sourceforge.net
3698S: Maintained
3699
3700USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3701P: Gary Brubaker
3702M: xavyer@ix.netcom.com
3703L: linux-usb-users@lists.sourceforge.net
3704L: linux-usb-devel@lists.sourceforge.net
3705S: Maintained
3706
3707USB SERIAL KEYSPAN DRIVER
3708P: Greg Kroah-Hartman
3709M: greg@kroah.com
3710L: linux-usb-users@lists.sourceforge.net
3711L: linux-usb-devel@lists.sourceforge.net
3712W: http://www.kroah.com/linux/
3713S: Maintained
3714
3715USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04003716P: Support Department
3717M: support@connecttech.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718L: linux-usb-users@lists.sourceforge.net
3719L: linux-usb-devel@lists.sourceforge.net
3720W: http://www.connecttech.com
3721S: Supported
3722
Luca Risoliaf423b9a2007-03-26 16:12:04 -03003723USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724P: Luca Risolia
3725M: luca.risolia@studio.unibo.it
3726L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003727L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728W: http://www.linux-projects.org
3729S: Maintained
3730
3731USB SUBSYSTEM
3732P: Greg Kroah-Hartman
3733M: gregkh@suse.de
3734L: linux-usb-users@lists.sourceforge.net
3735L: linux-usb-devel@lists.sourceforge.net
3736W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003737T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738S: Supported
3739
3740USB UHCI DRIVER
3741P: Alan Stern
3742M: stern@rowland.harvard.edu
3743L: linux-usb-users@lists.sourceforge.net
3744L: linux-usb-devel@lists.sourceforge.net
3745S: Maintained
3746
David Brownell69ae9e32006-11-14 02:03:31 -08003747USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748P: David Brownell
3749M: dbrownell@users.sourceforge.net
3750L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003751W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752S: Maintained
3753
3754USB W996[87]CF DRIVER
3755P: Luca Risolia
3756M: luca.risolia@studio.unibo.it
3757L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003758L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759W: http://www.linux-projects.org
3760S: Maintained
3761
Luca Risolia60f78052006-02-06 16:29:35 +00003762USB ZC0301 DRIVER
3763P: Luca Risolia
3764M: luca.risolia@studio.unibo.it
3765L: linux-usb-devel@lists.sourceforge.net
3766L: video4linux-list@redhat.com
3767W: http://www.linux-projects.org
3768S: Maintained
3769
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770USB ZD1201 DRIVER
3771P: Jeroen Vreeken
3772M: pe1rxq@amsat.org
3773L: linux-usb-users@lists.sourceforge.net
3774L: linux-usb-devel@lists.sourceforge.net
3775W: http://linux-lc100020.sourceforge.net
3776S: Maintained
3777
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003778USB ZR364XX DRIVER
3779P: Antoine Jacquet
3780M: royale@zerezo.com
3781L: linux-usb-devel@lists.sourceforge.net
3782L: video4linux-list@redhat.com
3783W: http://royale.zerezo.com/zr364xx/
3784S: Maintained
3785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786USER-MODE LINUX
3787P: Jeff Dike
3788M: jdike@karaya.com
3789L: user-mode-linux-devel@lists.sourceforge.net
3790L: user-mode-linux-user@lists.sourceforge.net
3791W: http://user-mode-linux.sourceforge.net
3792S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794FAT/VFAT/MSDOS FILESYSTEM:
3795P: OGAWA Hirofumi
3796M: hirofumi@mail.parknet.co.jp
3797L: linux-kernel@vger.kernel.org
3798S: Maintained
3799
3800VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3801P: Jeff Garzik
3802S: Odd fixes
3803
3804VIA RHINE NETWORK DRIVER
3805P: Roger Luethi
3806M: rl@hellgate.ch
3807S: Maintained
3808
Jean Delvare32c0a522005-09-22 21:47:58 +02003809VIAPRO SMBUS DRIVER
3810P: Jean Delvare
3811M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003812L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003813S: Maintained
3814
Francois Romieu01f20732007-01-26 00:57:17 -08003815VIA VELOCITY NETWORK DRIVER
3816P: Francois Romieu
3817M: romieu@fr.zoreil.com
3818L: netdev@vger.kernel.org
3819S: Maintained
3820
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821UCLINUX (AND M68KNOMMU)
3822P: Greg Ungerer
3823M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003825L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826S: Maintained
3827
3828UCLINUX FOR NEC V850
3829P: Miles Bader
3830M: uclinux-v850@lsi.nec.co.jp
3831W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3832W: http://www.ee.nec.de/uclinux/
3833S: Supported
3834
3835UCLINUX FOR RENESAS H8/300
3836P: Yoshinori Sato
3837M: ysato@users.sourceforge.jp
3838W: http://uclinux-h8.sourceforge.jp/
3839S: Supported
3840
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003841UFS FILESYSTEM
3842P: Evgeniy Dushistov
3843M: dushistov@mail.ru
3844L: linux-kernel@vger.kernel.org
3845S: Maintained
3846
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847USB DIAMOND RIO500 DRIVER
3848P: Cesar Miquel
3849M: miquel@df.uba.ar
3850L: rio500-users@lists.sourceforge.net
3851W: http://rio500.sourceforge.net
3852S: Maintained
3853
3854VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003855P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003856M: mchehab@infradead.org
3857M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003859W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003860T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003861S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862
Juerg Haefligerab413192006-09-24 20:54:04 +02003863VT1211 HARDWARE MONITOR DRIVER
3864P: Juerg Haefliger
3865M: juergh@gmail.com
3866L: lm-sensors@lm-sensors.org
3867S: Maintained
3868
Roger Lucas1de9e372005-11-26 20:20:05 +01003869VT8231 HARDWARE MONITOR DRIVER
3870P: Roger Lucas
3871M: roger@planbit.co.uk
3872L: lm-sensors@lm-sensors.org
3873S: Maintained
3874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875W1 DALLAS'S 1-WIRE BUS
3876P: Evgeniy Polyakov
3877M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878S: Maintained
3879
Charles Spirakis13927072006-07-05 18:05:15 +02003880W83791D HARDWARE MONITORING DRIVER
3881P: Charles Spirakis
3882M: bezaur@gmail.com
3883L: lm-sensors@lm-sensors.org
3884S: Maintained
3885
Rudolf Marek61db0112006-12-12 18:18:30 +01003886W83793 HARDWARE MONITORING DRIVER
3887P: Rudolf Marek
3888M: r.marek@assembler.cz
3889L: lm-sensors@lm-sensors.org
3890S: Maintained
3891
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892W83L51xD SD/MMC CARD INTERFACE DRIVER
3893P: Pierre Ossman
3894M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003895L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896W: http://projects.drzeus.cx/wbsd
3897S: Maintained
3898
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003899WATCHDOG DEVICE DRIVERS
3900P: Wim Van Sebroeck
3901M: wim@iguana.be
3902T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3903S: Maintained
3904
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3906P: Jean Tourrilhes
3907M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003908L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3910S: Maintained
3911
3912WD7000 SCSI DRIVER
3913P: Miroslav Zagorac
3914M: zaga@fly.cc.fer.hr
3915L: linux-scsi@vger.kernel.org
3916S: Maintained
3917
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003918WISTRON LAPTOP BUTTON DRIVER
3919P: Miloslav Trmac
3920M: mitr@volny.cz
3921S: Maintained
3922
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923WL3501 WIRELESS PCMCIA CARD DRIVER
3924P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003925M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07003926L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003927W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928S: Maintained
3929
3930X.25 NETWORK LAYER
3931P: Henner Eisen
3932M: eis@baty.hanse.de
3933L: linux-x25@vger.kernel.org
3934S: Maintained
3935
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02003936XEN HYPERVISOR INTERFACE
3937P: Jeremy Fitzhardinge
3938M: jeremy@xensource.com
3939P: Chris Wright
3940M: chrisw@sous-sol.org
3941L: virtualization@lists.osdl.org
3942L: xen-devel@lists.xensource.com
3943S: Supported
3944
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945XFS FILESYSTEM
3946P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003947P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003949L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003951T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952S: Supported
3953
Peter Korsgaard238b8722006-12-06 20:35:17 -08003954XILINX UARTLITE SERIAL DRIVER
3955P: Peter Korsgaard
3956M: jacmet@sunsite.dk
3957L: linux-serial@vger.kernel.org
3958S: Maintained
3959
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960X86 3-LEVEL PAGING (PAE) SUPPORT
3961P: Ingo Molnar
3962M: mingo@redhat.com
3963S: Maintained
3964
3965X86-64 port
3966P: Andi Kleen
3967M: ak@suse.de
3968L: discuss@x86-64.org
3969W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01003970T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971S: Maintained
3972
3973YAM DRIVER FOR AX.25
3974P: Jean-Paul Roubelat
3975M: jpr@f6fbb.org
3976L: linux-hams@vger.kernel.org
3977S: Maintained
3978
Henkaf64a5e2005-10-12 15:02:56 +02003979YEALINK PHONE DRIVER
3980P: Henk Vergonet
3981M: Henk.Vergonet@gmail.com
3982L: usbb2k-api-dev@nongnu.org
3983S: Maintained
3984
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985Z8530 DRIVER FOR AX.25
3986P: Joerg Reuter
3987M: jreuter@yaina.de
3988W: http://yaina.de/jreuter/
3989W: http://www.qsl.net/dl1bke/
3990L: linux-hams@vger.kernel.org
3991S: Maintained
3992
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003993ZD1211RW WIRELESS DRIVER
3994P: Daniel Drake
3995M: dsd@gentoo.org
3996P: Ulrich Kunitz
3997M: kune@deine-taler.de
3998W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07003999L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01004000L: zd1211-devs@lists.sourceforge.net (subscribers-only)
4001S: Maintained
4002
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003ZF MACHZ WATCHDOG
4004P: Fernando Fuganti
4005M: fuganti@netbank.com.br
4006W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
4007S: Maintained
4008
4009ZR36067 VIDEO FOR LINUX DRIVER
4010P: Ronald Bultje
4011M: rbultje@ronald.bitfreak.net
4012L: mjpeg-users@lists.sourceforge.net
4013W: http://mjpeg.sourceforge.net/driver-zoran/
4014S: Maintained
4015
4016ZR36120 VIDEO FOR LINUX DRIVER
4017P: Pauline Middelink
4018M: middelin@polyware.nl
4019W: http://www.polyware.nl/~middelin/En/hobbies.html
4020W: http://www.polyware.nl/~middelin/hobbies.html
4021S: Maintained
4022
4023THE REST
4024P: Linus Torvalds
4025S: Buried alive in reporters