blob: 10054b4078d0b4740b2afd6ea21bf5480e3e2aa5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
33 generalized kernel feature ready for next time. See
34 Documentation/CodingStyle for guidance here.
35
36 PLEASE try to include any credit lines you want added with the
37 patch. It avoids people being missed off by mistake and makes
38 it easier to know who wants adding and who doesn't.
39
40 PLEASE document known bugs. If it doesn't work for everything
41 or does something very odd once a month document it.
42
Alan Coxc9ee1332006-05-20 15:00:12 -070043 PLEASE remember that submissions must be made under the terms
44 of the OSDL certificate of contribution
45 (http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html)
46 and should include a Signed-off-by: line.
47
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486. Make sure you have the right to send any changes you make. If you
49 do changes at work you may find your employer owns the patch
50 not you.
51
Alan Coxc9ee1332006-05-20 15:00:12 -0700527. When sending security related changes or reports to a maintainer
53 please Cc: security@kernel.org, especially if the maintainer
54 does not respond.
55
568. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 -----------------------------------
59
60Maintainers List (try to look for most precise areas first)
61
62Note: For the hard of thinking, this list is meant to remain in alphabetical
63order. If you could add yourselves to it in alphabetical order that would be
64so much easier [Ed]
65
66P: Person
67M: Mail patches to
68L: Mailing list that is relevant to this area
69W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080070T: SCM tree type and location. Type is one of: git, hg, quilt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071S: Status, one of the following:
72
73 Supported: Someone is actually paid to look after this.
74 Maintained: Someone actually looks after it.
75 Odd Fixes: It has a maintainer but they don't have time to do
76 much other than throw the odd patch in. See below..
77 Orphan: No current maintainer [but maybe you could take the
78 role as you write your new code].
79 Obsolete: Old code. Something tagged obsolete generally means
80 it has been replaced by a better system and you
81 should be using that.
82
833C359 NETWORK DRIVER
84P: Mike Phillips
85M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -070086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070087L: linux-tr@linuxtr.net
88W: http://www.linuxtr.net
89S: Maintained
90
913C505 NETWORK DRIVER
92P: Philip Blundell
93M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -070094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070095S: Maintained
96
973CR990 NETWORK DRIVER
98P: David Dillow
99M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101S: Maintained
102
1033W-XXXX ATA-RAID CONTROLLER DRIVER
104P: Adam Radford
105M: linuxraid@amcc.com
106L: linux-scsi@vger.kernel.org
107W: http://www.amcc.com
108S: Supported
109
1103W-9XXX SATA-RAID CONTROLLER DRIVER
111P: Adam Radford
112M: linuxraid@amcc.com
113L: linux-scsi@vger.kernel.org
114W: http://www.amcc.com
115S: Supported
116
11753C700 AND 53C700-66 SCSI DRIVER
118P: James E.J. Bottomley
119M: James.Bottomley@HansenPartnership.com
120L: linux-scsi@vger.kernel.org
121S: Maintained
122
1236PACK NETWORK DRIVER FOR AX.25
124P: Andreas Koensgen
125M: ajk@iehk.rwth-aachen.de
126L: linux-hams@vger.kernel.org
127S: Maintained
128
1298139CP 10/100 FAST ETHERNET DRIVER
130P: Jeff Garzik
131M: jgarzik@pobox.com
132S: Maintained
133
1348139TOO 10/100 FAST ETHERNET DRIVER
135P: Jeff Garzik
136M: jgarzik@pobox.com
137W: http://sourceforge.net/projects/gkernel/
138S: Maintained
139
1408169 10/100/1000 GIGABIT ETHERNET DRIVER
141P: Francois Romieu
142M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700143L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Maintained
145
1468250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-serial@vger.kernel.org
148W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100149S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1518390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
152P: Paul Gortmaker
153M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
156
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001579P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100158P: Eric Van Hensbergen
159M: ericvh@gmail.com
160P: Ron Minnich
161M: rminnich@lanl.gov
162P: Latchesar Ionkov
163M: lucho@ionkov.net
164L: v9fs-developer@lists.sourceforge.net
165W: http://v9fs.sf.net
166T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
167S: Maintained
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169A2232 SERIAL BOARD DRIVER
170P: Enver Haase
171M: ehaase@inf.fu-berlin.de
172M: A2232@gmx.net
173L: linux-m68k@lists.linux-m68k.org
174S: Maintained
175
176AIO
177P: Benjamin LaHaise
178M: bcrl@kvack.org
179L: linux-aio@kvack.org
180S: Supported
181
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200182ABIT UGURU HARDWARE MONITOR DRIVER
183P: Hans de Goede
184M: j.w.r.degoede@hhs.nl
185L: lm-sensors@lm-sensors.org
186S: Maintained
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188ACENIC DRIVER
189P: Jes Sorensen
190M: jes@trained-monkey.org
191L: linux-acenic@sunsite.dk
192S: Maintained
193
194ACI MIXER DRIVER
195P: Robert Siemer
196M: Robert.Siemer@gmx.de
197L: linux-sound@vger.kernel.org
198W: http://www.stud.uni-karlsruhe.de/~uh1b/
199S: Maintained
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201AACRAID SCSI RAID DRIVER
202P: Adaptec OEM Raid Solutions
203L: linux-scsi@vger.kernel.org
204W: http://linux.dell.com/storage.shtml
205S: Supported
206
207ACPI
208P: Len Brown
209M: len.brown@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500210M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500211L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800213T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500214S: Supported
215
216ACPI BATTERY DRIVERS
217P: Vladimir P. Lebedev
218M: vladimir.p.lebedev@intel.com
219L: linux-acpi@vger.kernel.org
220W: http://acpi.sourceforge.net/
221S: Supported
222
223ACPI EC DRIVER
224P: Alexey Starikovskiy
225M: alexey.y.starikovskiy@linux.intel.com
226L: linux-acpi@vger.kernel.org
227W: http://acpi.sourceforge.net/
228S: Supported
229
230ACPI FAN DRIVER
231P: Konstantin A. Karasyov
232M: konstantin.a.karasyov@intel.com
233L: linux-acpi@vger.kernel.org
234W: http://acpi.sourceforge.net/
235S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700237ACPI PCI HOTPLUG DRIVER
238P: Kristen Carlson Accardi
239M: kristen.c.accardi@intel.com
240L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -0500241S: Supported
242
243ACPI THERMAL DRIVER
244P: Konstantin A. Karasyov
245M: konstantin.a.karasyov@intel.com
246L: linux-acpi@vger.kernel.org
247W: http://acpi.sourceforge.net/
248S: Supported
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700249
Len Brown359acec2007-02-10 01:59:24 -0500250ACPI VIDEO DRIVER
251P: Luming Yu
252M: luming.yu@intel.com
253L: linux-acpi@vger.kernel.org
254W: http://acpi.sourceforge.net/
255S: Supported
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257AD1816 SOUND DRIVER
258P: Thorsten Knabe
259M: Thorsten Knabe <linux@thorsten-knabe.de>
260W: http://linux.thorsten-knabe.de
261S: Maintained
262
Kyle McMartin6958ae32005-10-21 23:11:27 -0400263AD1889 SOUND DRIVER
264P: Kyle McMartin
265M: kyle@parisc-linux.org
266P: Thibaut Varene
267M: T-Bone@parisc-linux.org
268W: http://wiki.parisc-linux.org/AD1889
269L: parisc-linux@lists.parisc-linux.org
270S: Maintained
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272ADM1025 HARDWARE MONITOR DRIVER
273P: Jean Delvare
274M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200275L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276S: Maintained
277
Corentin Labbecae2caa2007-02-14 21:15:04 +0100278ADM1029 HARDWARE MONITOR DRIVER
279P: Corentin Labbe
280M: corentin.labbe@geomatys.fr
281L: lm-sensors@lm-sensors.org
282S: Maintained
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284ADT746X FAN DRIVER
285P: Colin Leroy
286M: colin@colino.net
287S: Maintained
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289AEDSP16 DRIVER
290P: Riccardo Facchetti
291M: fizban@tin.it
292S: Maintained
293
294AFFS FILE SYSTEM
295P: Roman Zippel
296M: zippel@linux-m68k.org
297S: Maintained
298
299AGPGART DRIVER
300P: Dave Jones
301M: davej@codemonkey.org.uk
302W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800303T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304S: Maintained
305
306AHA152X SCSI DRIVER
307P: Juergen E. Fischer
308M: Juergen Fischer <fischer@norbit.de>
309L: linux-scsi@vger.kernel.org
310S: Maintained
311
312ALCATEL SPEEDTOUCH USB DRIVER
313P: Duncan Sands
314M: duncan.sands@free.fr
315L: linux-usb-users@lists.sourceforge.net
316L: linux-usb-devel@lists.sourceforge.net
317W: http://www.linux-usb.org/SpeedTouch/
318S: Maintained
319
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000320ALI1563 I2C DRIVER
321P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100322M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200323L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000324S: Maintained
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326ALPHA PORT
327P: Richard Henderson
328M: rth@twiddle.net
329S: Odd Fixes for 2.4; Maintained for 2.6.
330P: Ivan Kokshaysky
331M: ink@jurassic.park.msu.ru
332S: Maintained for 2.4; PCI support for 2.6.
333
Jordan Crousef90b8112006-01-06 00:12:14 -0800334AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100335P: Jordan Crouse
336M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800337L: info-linux@geode.amd.com
338W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
339S: Supported
340
Stelian Pop284f42b2006-12-12 18:18:31 +0100341AMS (Apple Motion Sensor) DRIVER
342P: Stelian Pop
343M: stelian@popies.net
344P: Michael Hanselmann
345M: linux-kernel@hansmi.ch
346S: Supported
347
Tom Tuckerf94b5332006-09-22 15:22:48 -0700348AMSO1100 RNIC DRIVER
349P: Tom Tucker
350M: tom@opengridcomputing.com
351P: Steve Wise
352M: swise@opengridcomputing.com
353L: openib-general@openib.org
354S: Maintained
355
Johannes Berg42269062006-07-25 16:15:50 +0200356AOA (Apple Onboard Audio) ALSA DRIVER
357P: Johannes Berg
358M: johannes@sipsolutions.net
359L: linuxppc-dev@ozlabs.org
360L: alsa-devel@alsa-project.org
361S: Maintained
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363APM DRIVER
364P: Stephen Rothwell
365M: sfr@canb.auug.org.au
366L: linux-laptop@vger.kernel.org
367W: http://www.canb.auug.org.au/~sfr/
368S: Supported
369
370APPLETALK NETWORK LAYER
371P: Arnaldo Carvalho de Melo
372M: acme@conectiva.com.br
373S: Maintained
374
Jaya Kumar1154ea72005-06-21 17:17:04 -0700375ARC FRAMEBUFFER DRIVER
376P: Jaya Kumar
377M: jayalk@intworks.biz
378S: Maintained
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380ARM26 ARCHITECTURE
381P: Ian Molton
382M: spyro@f2s.com
383S: Maintained
384
385ARM26/ARCHIMEDES
386P: Ian Molton
387M: spyro@f2s.com
388S: Maintained
389
390ARM26/A5000
391P: John Appleby
392M: john@dnsworld.co.uk
393S: Maintained
394
395ARM MFM AND FLOPPY DRIVERS
396P: Ian Molton
397M: spyro@f2s.com
398S: Maintained
399
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800400ARM/ADI ROADRUNNER MACHINE SUPPORT
401P: Lennert Buytenhek
402M: kernel@wantstofly.org
403L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
404S: Maintained
405
406ARM/ADS SPHERE MACHINE SUPPORT
407P: Lennert Buytenhek
408M: kernel@wantstofly.org
409L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
410S: Maintained
411
412ARM/AJECO 1ARM MACHINE SUPPORT
413P: Lennert Buytenhek
414M: kernel@wantstofly.org
415L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
416S: Maintained
417
Andrew Victord4a89c72006-12-04 13:56:21 +0100418ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
419P: Andrew Victor
420M: andrew@sanpeople.com
421L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
422W: http://maxim.org.za/at91_26.html
423S: Maintained
424
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800425ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
426P: Lennert Buytenhek
427M: kernel@wantstofly.org
428L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
429S: Maintained
430
431ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
432P: Lennert Buytenhek
433M: kernel@wantstofly.org
434L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
435S: Maintained
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437ARM/CORGI MACHINE SUPPORT
438P: Richard Purdie
439M: rpurdie@rpsys.net
440S: Maintained
441
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800442ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
443P: Lennert Buytenhek
444M: kernel@wantstofly.org
445L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
446S: Maintained
447
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100448ARM/HP JORNADA 7XX MACHINE SUPPORT
449P: Kristoffer Ericson
450M: kristoffer_e1@hotmail.com
451W: www.jlime.com
452S: Maintained
453
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800454ARM/INTEL IOP32X ARM ARCHITECTURE
455P: Lennert Buytenhek
456M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100457P: Dan Williams
458M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800459L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100460S: Supported
461
462ARM/INTEL IOP33X ARM ARCHITECTURE
463P: Dan Williams
464M: dan.j.williams@intel.com
465L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
466S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800467
468ARM/INTEL IOP13XX ARM ARCHITECTURE
469P: Lennert Buytenhek
470M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100471P: Dan Williams
472M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800473L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100474S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800475
476ARM/INTEL IQ81342EX MACHINE SUPPORT
477P: Lennert Buytenhek
478M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100479P: Dan Williams
480M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800481L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100482S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800483
484ARM/INTEL IXP2000 ARM ARCHITECTURE
485P: Lennert Buytenhek
486M: kernel@wantstofly.org
487L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
488S: Maintained
489
490ARM/INTEL IXDP2850 MACHINE SUPPORT
491P: Lennert Buytenhek
492M: kernel@wantstofly.org
493L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
494S: Maintained
495
496ARM/INTEL IXP23XX ARM ARCHITECTURE
497P: Lennert Buytenhek
498M: kernel@wantstofly.org
499L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
500S: Maintained
501
502ARM/INTEL XSC3 (MANZANO) ARM CORE
503P: Lennert Buytenhek
504M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100505P: Dan Williams
506M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800507L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100508S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800509
510ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
511P: Lennert Buytenhek
512M: kernel@wantstofly.org
513L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
514S: Maintained
515
516ARM/LOGICPD PXA270 MACHINE SUPPORT
517P: Lennert Buytenhek
518M: kernel@wantstofly.org
519L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
520S: Maintained
521
Dirk Opfer8459c152005-11-06 14:27:52 +0000522ARM/TOSA MACHINE SUPPORT
523P: Dirk Opfer
524M: dirk@opfer-online.de
525S: Maintained
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527ARM/PLEB SUPPORT
528P: Peter Chubb
529M: pleb@gelato.unsw.edu.au
530W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
531S: Maintained
532
533ARM/PT DIGITAL BOARD PORT
534P: Stefan Eletzhofer
535M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700536L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537W: http://www.arm.linux.org.uk/
538S: Maintained
539
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800540ARM/RADISYS ENP2611 MACHINE SUPPORT
541P: Lennert Buytenhek
542M: kernel@wantstofly.org
543L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
544S: Maintained
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546ARM/SHARK MACHINE SUPPORT
547P: Alexander Schulz
548M: alex@shark-linux.de
549W: http://www.shark-linux.de/shark.html
550S: Maintained
551
552ARM/STRONGARM110 PORT
553P: Russell King
554M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700555L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556W: http://www.arm.linux.org.uk/
557S: Maintained
558
559ARM/S3C2410 ARM ARCHITECTURE
560P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800561M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700562L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563W: http://www.fluff.org/ben/linux/
564S: Maintained
565
566ARM/S3C2440 ARM ARCHITECTURE
567P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800568M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570W: http://www.fluff.org/ben/linux/
571S: Maintained
572
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800573ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
574P: Lennert Buytenhek
575M: kernel@wantstofly.org
576L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
577S: Maintained
578
579ARM/THECUS N2100 MACHINE SUPPORT
580P: Lennert Buytenhek
581M: kernel@wantstofly.org
582L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
583S: Maintained
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585ARPD SUPPORT
586P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700587L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588S: Maintained
589
590ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500591P: Corentin Chary
592M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593P: Karol Kozimor
594M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595L: acpi4asus-user@lists.sourceforge.net
596W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500597W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598S: Maintained
599
Corentin Chary85091b72007-01-26 14:04:30 +0100600ASUS LAPTOP EXTRAS DRIVER
601P: Corentin Chary
602M: corentincj@iksaif.net
603L: acpi4asus-user@lists.sourceforge.net
604W: http://sourceforge.net/projects/acpi4asus
605W: http://xf.iksaif.net/acpi4asus
606S: Maintained
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608ATA OVER ETHERNET DRIVER
609P: Ed L. Cashin
610M: ecashin@coraid.com
611W: http://www.coraid.com/support/linux
612S: Supported
613
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600614ATL1 ETHERNET DRIVER
615P: Jay Cliburn
616M: jcliburn@gmail.com
617P: Chris Snook
618M: csnook@redhat.com
619L: atl1-devel@lists.sourceforge.net
620W: http://sourceforge.net/projects/atl1
621W: http://atl1.sourceforge.net
622S: Maintained
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624ATM
625P: Chas Williams
626M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700627L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628W: http://linux-atm.sourceforge.net
629S: Maintained
630
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100631ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100632P: Haavard Skinnemoen
633M: hskinnemoen@atmel.com
634S: Supported
635
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800636ATMEL SPI DRIVER
637P: Haavard Skinnemoen
638M: hskinnemoen@atmel.com
639S: Supported
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641ATMEL WIRELESS DRIVER
642P: Simon Kelley
643M: simon@thekelleys.org.uk
644W: http://www.thekelleys.org.uk/atmel
645W: http://atmelwlandriver.sourceforge.net/
646S: Maintained
647
Chris Wrighta92b7b82005-07-07 18:12:23 -0700648AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100649P: David Woodhouse
650M: dwmw2@infradead.org
651L: linux-audit@redhat.com
652W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800653T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700654S: Maintained
655
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800656AUXILIARY DISPLAY DRIVERS
657P: Miguel Ojeda Sandonis
658M: maxextreme@gmail.com
659L: linux-kernel@vger.kernel.org
660S: Maintained
661
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700662AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700663P: Haavard Skinnemoen
664M: hskinnemoen@atmel.com
665W: http://www.atmel.com/products/AVR32/
666W: http://avr32linux.org/
667W: http://avrfreaks.net/
668S: Supported
669
670AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700671P: Haavard Skinnemoen
672M: hskinnemoen@atmel.com
673S: Supported
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675AX.25 NETWORK LAYER
676P: Ralf Baechle
677M: ralf@linux-mips.org
678L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200679W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680S: Maintained
681
Richard Purdie300abeb2007-02-07 22:21:07 +0000682BACKLIGHT CLASS/SUBSYSTEM
683P: Richard Purdie
684M: rpurdie@rpsys.net
685S: Maintained
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687BAYCOM/HDLCDRV DRIVERS FOR AX.25
688P: Thomas Sailer
689M: t.sailer@alumni.ethz.ch
690L: linux-hams@vger.kernel.org
691W: http://www.baycom.org/~tom/ham/ham.html
692S: Maintained
693
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200694BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
695P: Larry Finger
696M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200697P: Stefano Brivio
698M: st3@riseup.net
699W: http://bcm43xx.berlios.de/
700S: Maintained
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702BEFS FILE SYSTEM
703P: Sergey S. Kostyliov
704M: rathamahata@php4.ru
705L: linux-kernel@vger.kernel.org
706S: Maintained
707
708BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
709P: Kenji Hollis
710W: http://ftp.bitgate.com/pcwd/
711S: Maintained
712
713BFS FILE SYSTEM
714P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800715M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716L: linux-kernel@vger.kernel.org
717S: Maintained
718
719BLOCK LAYER
720P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200721M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800723T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724S: Maintained
725
726BLUETOOTH SUBSYSTEM
727P: Marcel Holtmann
728M: marcel@holtmann.org
729P: Maxim Krasnyansky
730M: maxk@qualcomm.com
731L: bluez-devel@lists.sf.net
732W: http://bluez.sf.net
733W: http://www.bluez.org
734W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800735T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736S: Maintained
737
738BLUETOOTH RFCOMM LAYER
739P: Marcel Holtmann
740M: marcel@holtmann.org
741P: Maxim Krasnyansky
742M: maxk@qualcomm.com
743S: Maintained
744
745BLUETOOTH BNEP LAYER
746P: Marcel Holtmann
747M: marcel@holtmann.org
748P: Maxim Krasnyansky
749M: maxk@qualcomm.com
750S: Maintained
751
752BLUETOOTH CMTP LAYER
753P: Marcel Holtmann
754M: marcel@holtmann.org
755S: Maintained
756
757BLUETOOTH HIDP LAYER
758P: Marcel Holtmann
759M: marcel@holtmann.org
760S: Maintained
761
762BLUETOOTH HCI UART DRIVER
763P: Marcel Holtmann
764M: marcel@holtmann.org
765P: Maxim Krasnyansky
766M: maxk@qualcomm.com
767S: Maintained
768
769BLUETOOTH HCI USB DRIVER
770P: Marcel Holtmann
771M: marcel@holtmann.org
772P: Maxim Krasnyansky
773M: maxk@qualcomm.com
774S: Maintained
775
776BLUETOOTH HCI BCM203X DRIVER
777P: Marcel Holtmann
778M: marcel@holtmann.org
779S: Maintained
780
781BLUETOOTH HCI BPA10X DRIVER
782P: Marcel Holtmann
783M: marcel@holtmann.org
784S: Maintained
785
786BLUETOOTH HCI BFUSB DRIVER
787P: Marcel Holtmann
788M: marcel@holtmann.org
789S: Maintained
790
791BLUETOOTH HCI DTL1 DRIVER
792P: Marcel Holtmann
793M: marcel@holtmann.org
794S: Maintained
795
796BLUETOOTH HCI BLUECARD DRIVER
797P: Marcel Holtmann
798M: marcel@holtmann.org
799S: Maintained
800
801BLUETOOTH HCI BT3C DRIVER
802P: Marcel Holtmann
803M: marcel@holtmann.org
804S: Maintained
805
806BLUETOOTH HCI BTUART DRIVER
807P: Marcel Holtmann
808M: marcel@holtmann.org
809S: Maintained
810
811BLUETOOTH HCI VHCI DRIVER
812P: Maxim Krasnyansky
813M: maxk@qualcomm.com
814S: Maintained
815
816BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100817P: Chad Tindel
818M: ctindel@users.sourceforge.net
819P: Jay Vosburgh
820M: fubar@us.ibm.com
821L: bonding-devel@lists.sourceforge.net
822W: http://sourceforge.net/projects/bonding/
823S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000825BROADBAND PROCESSOR ARCHITECTURE
826P: Arnd Bergmann
827M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100828L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400829W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000830S: Supported
831
Gary Zambrano39105892006-06-22 17:26:20 -0700832BROADCOM B44 10/100 ETHERNET DRIVER
833P: Gary Zambrano
834M: zambrano@broadcom.com
835L: netdev@vger.kernel.org
836S: Supported
837
Michael Chan948c51e2006-06-04 02:51:39 -0700838BROADCOM BNX2 GIGABIT ETHERNET DRIVER
839P: Michael Chan
840M: mchan@broadcom.com
841L: netdev@vger.kernel.org
842S: Supported
843
844BROADCOM TG3 GIGABIT ETHERNET DRIVER
845P: Michael Chan
846M: mchan@broadcom.com
847L: netdev@vger.kernel.org
848S: Supported
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700851P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200852M: mchehab@infradead.org
853M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700855W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200856T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700857S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200859CALGARY x86-64 IOMMU
860P: Muli Ben-Yehuda
861M: muli@il.ibm.com
862P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200863M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200864L: linux-kernel@vger.kernel.org
865L: discuss@x86-64.org
866S: Maintained
867
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800868CFAG12864B LCD DRIVER
869P: Miguel Ojeda Sandonis
870M: maxextreme@gmail.com
871L: linux-kernel@vger.kernel.org
872S: Maintained
873
874CFAG12864BFB LCD FRAMEBUFFER DRIVER
875P: Miguel Ojeda Sandonis
876M: maxextreme@gmail.com
877L: linux-kernel@vger.kernel.org
878S: Maintained
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880COMMON INTERNET FILE SYSTEM (CIFS)
881P: Steve French
882M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100883L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884L: samba-technical@lists.samba.org
885W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800886T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887S: Supported
888
Joel Becker7063fbf2005-12-15 14:29:43 -0800889CONFIGFS
890P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800891M: joel.becker@oracle.com
892L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800893S: Supported
894
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800895CIRRUS LOGIC EP93XX ETHERNET DRIVER
896P: Lennert Buytenhek
897M: kernel@wantstofly.org
898L: netdev@vger.kernel.org
899S: Maintained
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901CIRRUS LOGIC GENERIC FBDEV DRIVER
902P: Jeff Garzik
903M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800904L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905S: Odd Fixes
906
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800907CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
908P: Lennert Buytenhek
909M: kernel@wantstofly.org
910L: linux-usb-devel@lists.sourceforge.net
911S: Maintained
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
914P: Cirrus Logic Corporation (kernel 2.2 driver)
915M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
916P: Nils Faerber (port to kernel 2.4)
917M: Nils Faerber <nils@kernelconcepts.de>
918S: Maintained
919
920CODA FILE SYSTEM
921P: Jan Harkes
922M: jaharkes@cs.cmu.edu
923M: coda@cs.cmu.edu
924L: codalist@coda.cs.cmu.edu
925W: http://www.coda.cs.cmu.edu/
926S: Maintained
927
928COMPACTPCI HOTPLUG CORE
929P: Scott Murray
930M: scottm@somanetworks.com
931M: scott@spiteful.org
932L: pcihpd-discuss@lists.sourceforge.net
933S: Supported
934
935COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
936P: Scott Murray
937M: scottm@somanetworks.com
938M: scott@spiteful.org
939L: pcihpd-discuss@lists.sourceforge.net
940S: Supported
941
942COMPACTPCI HOTPLUG GENERIC DRIVER
943P: Scott Murray
944M: scottm@somanetworks.com
945M: scott@spiteful.org
946L: pcihpd-discuss@lists.sourceforge.net
947S: Supported
948
949COMPUTONE INTELLIPORT MULTIPORT CARD
950P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700951M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700953S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955COSA/SRP SYNC SERIAL DRIVER
956P: Jan "Yenya" Kasprzak
957M: kas@fi.muni.cz
958W: http://www.fi.muni.cz/~kas/cosa/
959S: Maintained
960
961CPU FREQUENCY DRIVERS
962P: Dave Jones
963M: davej@codemonkey.org.uk
964L: cpufreq@lists.linux.org.uk
965W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500966T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967S: Maintained
968
969CPUID/MSR DRIVER
970P: H. Peter Anvin
971M: hpa@zytor.com
972S: Maintained
973
Paul Jacksoned90fb42005-09-27 21:45:37 -0700974CPUSETS
975P: Paul Jackson
976P: Simon Derr
977M: pj@sgi.com
978M: simon.derr@bull.net
979L: linux-kernel@vger.kernel.org
980W: http://www.bullopensource.org/cpuset/
981S: Supported
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100984W: http://sourceforge.net/projects/cramfs/
985S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987CRIS PORT
988P: Mikael Starvik
989M: starvik@axis.com
990L: dev-etrax@axis.com
991W: http://developer.axis.com
992S: Maintained
993
994CRYPTO API
995P: Herbert Xu
996M: herbert@gondor.apana.org.au
997P: David S. Miller
998M: davem@davemloft.net
999L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001000T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001S: Maintained
1002
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001003CS5535 Audio ALSA driver
1004P: Jaya Kumar
1005M: jayakumar.alsa@gmail.com
1006S: Maintained
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008CYBERPRO FB DRIVER
1009P: Russell King
1010M: rmk@arm.linux.org.uk
1011W: http://www.arm.linux.org.uk/
1012S: Maintained
1013
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001014CYBLAFB FRAMEBUFFER DRIVER
1015P: Knut Petersen
1016M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001017L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001018S: Maintained
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020CYCLADES 2X SYNC CARD DRIVER
1021P: Arnaldo Carvalho de Melo
1022M: acme@conectiva.com.br
1023W: http://advogato.org/person/acme
1024L: cycsyn-devel@bazar.conectiva.com.br
1025S: Maintained
1026
1027CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001029S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001033S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035DAMA SLAVE for AX.25
1036P: Joerg Reuter
1037M: jreuter@yaina.de
1038W: http://yaina.de/jreuter/
1039W: http://www.qsl.net/dl1bke/
1040L: linux-hams@vger.kernel.org
1041S: Maintained
1042
1043DC395x SCSI driver
1044P: Oliver Neukum
1045M: oliver@neukum.name
1046P: Ali Akcaagac
1047M: aliakc@web.de
1048P: Jamie Lenehan
1049M: lenehan@twibble.org
1050W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001051L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052L: http://lists.twibble.org/mailman/listinfo/dc395x/
1053S: Maintained
1054
1055DC390/AM53C974 SCSI driver
1056P: Kurt Garloff
1057M: garloff@suse.de
1058W: http://www.garloff.de/kurt/linux/dc390/
1059P: Guennadi Liakhovetski
1060M: g.liakhovetski@gmx.de
1061S: Maintained
1062
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001063DCCP PROTOCOL
1064P: Arnaldo Carvalho de Melo
1065M: acme@mandriva.com
1066L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001067W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001068S: Maintained
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070DECnet NETWORK LAYER
1071P: Patrick Caulfield
1072M: patrick@tykepenguin.com
1073W: http://linux-decnet.sourceforge.net
1074L: linux-decnet-user@lists.sourceforge.net
1075S: Maintained
1076
1077DEFXX FDDI NETWORK DRIVER
1078P: Maciej W. Rozycki
1079M: macro@linux-mips.org
1080S: Maintained
1081
1082DELL LAPTOP SMM DRIVER
1083P: Massimo Dal Zotto
1084M: dz@debian.org
1085W: http://www.debian.org/~dz/i8k/
1086S: Maintained
1087
Doug Warzecha90563ec2005-09-06 15:17:15 -07001088DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1089P: Doug Warzecha
1090M: Douglas_Warzecha@dell.com
1091S: Maintained
1092
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001093DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094P: Alasdair Kergon
1095L: dm-devel@redhat.com
1096W: http://sources.redhat.com/dm
1097S: Maintained
1098
1099DEVICE NUMBER REGISTRY
1100P: Torben Mathiasen
1101M: device@lanana.org
1102W: http://lanana.org/docs/device-list/index.html
1103L: linux-kernel@vger.kernel.org
1104S: Maintained
1105
1106DEVICE FILESYSTEM
1107S: Obsolete
1108
1109DIGI INTL. EPCA DRIVER
1110P: Digi International, Inc
1111M: Eng.Linux@digi.com
1112L: Eng.Linux@digi.com
1113W: http://www.digi.com
1114S: Orphaned
1115
1116DIGI RIGHTSWITCH NETWORK DRIVER
1117P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119W: http://www.digi.com
1120S: Orphaned
1121
1122DIRECTORY NOTIFICATION
1123P: Stephen Rothwell
1124M: sfr@canb.auug.org.au
1125L: linux-kernel@vger.kernel.org
1126S: Supported
1127
1128DISK GEOMETRY AND PARTITION HANDLING
1129P: Andries Brouwer
1130M: aeb@cwi.nl
1131W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1132W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1133W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1134S: Maintained
1135
1136DISKQUOTA:
1137P: Jan Kara
1138M: jack@suse.cz
1139L: linux-kernel@vger.kernel.org
1140S: Maintained
1141
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001142DISTRIBUTED LOCK MANAGER
1143P: Patrick Caulfield
1144M: pcaulfie@redhat.com
1145P: David Teigland
1146M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001147L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001148W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001149T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1150T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001151S: Supported
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1154P: Tobias Ringstrom
1155M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001156L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157S: Maintained
1158
Martin Waitzba483d52005-06-17 13:20:59 -07001159DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001160P: Randy Dunlap
1161M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001162S: Maintained
1163
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001164DOCKING STATION DRIVER
1165P: Kristen Carlson Accardi
1166M: kristen.c.accardi@intel.com
1167L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001168S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170DOUBLETALK DRIVER
1171P: James R. Van Zandt
1172M: jrv@vanzandt.mv.com
1173L: blinux-list@redhat.com
1174S: Maintained
1175
1176DRIVER CORE, KOBJECTS, AND SYSFS
1177P: Greg Kroah-Hartman
1178M: gregkh@suse.de
1179L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001180T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181S: Supported
1182
1183DRM DRIVERS
1184P: David Airlie
1185M: airlied@linux.ie
1186L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001187T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188S: Maintained
1189
1190DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001191P: Francois Romieu
1192M: romieu@fr.zoreil.com
1193L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194S: Maintained
1195
1196DVB SUBSYSTEM AND DRIVERS
1197P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001198M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001200W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001201T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001202S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204EATA-DMA SCSI DRIVER
1205P: Michael Neuffer
1206L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1207S: Maintained
1208
1209EATA ISA/EISA/PCI SCSI DRIVER
1210P: Dario Ballabio
1211M: ballabio_dario@emc.com
1212L: linux-scsi@vger.kernel.org
1213S: Maintained
1214
1215EATA-PIO SCSI DRIVER
1216P: Michael Neuffer
1217M: mike@i-Connect.Net
1218L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1219S: Maintained
1220
1221EBTABLES
1222P: Bart De Schuymer
1223M: bart.de.schuymer@pandora.be
1224L: ebtables-user@lists.sourceforge.net
1225L: ebtables-devel@lists.sourceforge.net
1226W: http://ebtables.sourceforge.net/
1227S: Maintained
1228
Michael Halcrow237fead2006-10-04 02:16:22 -07001229ECRYPT FILE SYSTEM
1230P: Mike Halcrow, Phillip Hellewell
1231M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1232L: ecryptfs-devel@lists.sourceforge.net
1233W: http://ecryptfs.sourceforge.net/
1234S: Supported
1235
Alan Coxda9bb1d2006-01-18 17:44:13 -08001236EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001237P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001238M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001239L: bluesmoke-devel@lists.sourceforge.net
1240W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001241S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001242
1243EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001244P: Mark Gross
1245M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001246L: bluesmoke-devel@lists.sourceforge.net
1247W: bluesmoke.sourceforge.net
1248S: Maintained
1249
1250EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001251P: Doug Thompson
1252M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001253L: bluesmoke-devel@lists.sourceforge.net
1254W: bluesmoke.sourceforge.net
1255S: Maintained
1256
1257EDAC-R82600
1258P: Tim Small
1259M: tim@buttersideup.com
1260L: bluesmoke-devel@lists.sourceforge.net
1261W: bluesmoke.sourceforge.net
1262S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264EEPRO100 NETWORK DRIVER
1265P: Andrey V. Savochkin
1266M: saw@saw.sw.com.sg
1267S: Maintained
1268
Josh Triplett0bee8d22006-07-30 03:03:58 -07001269EFS FILESYSTEM
1270W: http://aeschi.ch.eu.org/efs/
1271S: Orphan
1272
Heiko J Schickfab97222006-09-22 15:22:22 -07001273EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1274P: Hoang-Nam Nguyen
1275M: hnguyen@de.ibm.com
1276P: Christoph Raisch
1277M: raisch@de.ibm.com
1278L: openib-general@openib.org
1279S: Supported
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281EMU10K1 SOUND DRIVER
1282P: James Courtier-Dutton
1283M: James@superbug.demon.co.uk
1284L: emu10k1-devel@lists.sourceforge.net
1285W: http://sourceforge.net/projects/emu10k1/
1286S: Maintained
1287
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001288EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001289P: James Smart
1290M: james.smart@emulex.com
1291L: linux-scsi@vger.kernel.org
1292W: http://sourceforge.net/projects/lpfcxxxx
1293S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295EPSON 1355 FRAMEBUFFER DRIVER
1296P: Christopher Hoover
1297M: ch@murgatroid.com, ch@hpl.hp.com
1298S: Maintained
1299
1300ETHEREXPRESS-16 NETWORK DRIVER
1301P: Philip Blundell
1302M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001303L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304S: Maintained
1305
1306ETHERNET BRIDGE
1307P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08001308M: shemminger@linux-foundation.org
Simon Horman588cc702007-02-20 13:58:06 -08001309L: bridge@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310W: http://bridge.sourceforge.net/
1311S: Maintained
1312
1313ETHERTEAM 16I DRIVER
1314P: Mika Kuoppala
1315M: miku@iki.fi
1316S: Maintained
1317
1318EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001319L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320S: Maintained
1321
1322EXT3 FILE SYSTEM
1323P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001324M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001325L: linux-ext4@vger.kernel.org
1326S: Maintained
1327
1328EXT4 FILE SYSTEM
1329P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001330M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001331L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332S: Maintained
1333
Jean Delvaree53004e2006-01-09 23:26:14 +01001334F71805F HARDWARE MONITORING DRIVER
1335P: Jean Delvare
1336M: khali@linux-fr.org
1337L: lm-sensors@lm-sensors.org
1338S: Maintained
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340FARSYNC SYNCHRONOUS DRIVER
1341P: Kevin Curtis
1342M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343W: http://www.farsite.co.uk/
1344S: Supported
1345
1346FRAMEBUFFER LAYER
1347P: Antonino Daplas
1348M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001349L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350W: http://linux-fbdev.sourceforge.net/
1351S: Maintained
1352
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001353FREESCALE SOC FS_ENET DRIVER
1354P: Pantelis Antoniou
1355M: pantelis.antoniou@gmail.com
1356P: Vitaly Bordug
1357M: vbordug@ru.mvista.com
1358L: linuxppc-embedded@ozlabs.org
1359L: netdev@vger.kernel.org
1360S: Maintained
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362FILE LOCKING (flock() and fcntl()/lockf())
1363P: Matthew Wilcox
1364M: matthew@wil.cx
1365L: linux-fsdevel@vger.kernel.org
1366S: Maintained
1367
1368FILESYSTEMS (VFS and infrastructure)
1369P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001370M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371S: Maintained
1372
1373FIRMWARE LOADER (request_firmware)
1374L: linux-kernel@vger.kernel.org
1375S: Orphan
1376
1377FPU EMULATOR
1378P: Bill Metzenthen
1379M: billm@suburbia.net
1380W: http://suburbia.net/~billm/floating-point/emulator/
1381S: Maintained
1382
1383FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1384P: Mike McLagan
1385M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001386L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387S: Maintained
1388
1389FREEVXFS FILESYSTEM
1390P: Christoph Hellwig
1391M: hch@infradead.org
1392W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1393S: Maintained
1394
1395FUJITSU FR-V PORT
1396P: David Howells
1397M: dhowells@redhat.com
1398S: Maintained
1399
Miklos Szeredi04578f12005-09-09 13:10:22 -07001400FUSE: FILESYSTEM IN USERSPACE
1401P: Miklos Szeredi
1402M: miklos@szeredi.hu
1403L: fuse-devel@lists.sourceforge.net
1404W: http://fuse.sourceforge.net/
1405S: Maintained
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1408P: Rik Faith
1409M: faith@cs.unc.edu
1410L: linux-scsi@vger.kernel.org
1411S: Odd fixes (e.g., new signatures)
1412
1413GDT SCSI DISK ARRAY CONTROLLER DRIVER
1414P: Achim Leubner
1415M: achim_leubner@adaptec.com
1416L: linux-scsi@vger.kernel.org
1417W: http://www.icp-vortex.com/
1418S: Supported
1419
1420GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1421P: Krzysztof Halasa
1422M: khc@pm.waw.pl
1423W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1424S: Maintained
1425
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001426GFS2 FILE SYSTEM
1427P: Steven Whitehouse
1428M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001429L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001430W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001431T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1432T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001433S: Supported
1434
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001435GIGASET ISDN DRIVERS
1436P: Hansjoerg Lipp
1437M: hjlipp@web.de
1438P: Tilman Schmidt
1439M: tilman@imap.cc
1440L: gigaset307x-common@lists.sourceforge.net
1441W: http://gigaset307x.sourceforge.net/
1442S: Maintained
1443
Jean Delvare5b543962005-08-15 19:51:02 +02001444HARDWARE MONITORING
1445P: Jean Delvare
1446M: khali@linux-fr.org
1447L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001448W: http://www.lm-sensors.org/
1449T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001450S: Maintained
1451
Michael Buesch844dd052006-06-26 00:24:59 -07001452HARDWARE RANDOM NUMBER GENERATOR CORE
1453P: Michael Buesch
1454M: mb@bu3sch.de
1455S: Maintained
1456
Robert Love860e1d62005-08-31 23:57:59 -04001457HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1458P: Robert Love
1459M: rlove@rlove.org
1460M: linux-kernel@vger.kernel.org
1461W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1462S: Maintained
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464HARMONY SOUND DRIVER
1465P: Kyle McMartin
1466M: kyle@parisc-linux.org
1467W: http://www.parisc-linux.org/~kyle/harmony/
1468L: parisc-linux@lists.parisc-linux.org
1469S: Maintained
1470
1471HAYES ESP SERIAL DRIVER
1472P: Andrew J. Robinson
1473M: arobinso@nyx.net
1474L: linux-kernel@vger.kernel.org
1475W: http://www.nyx.net/~arobinso
1476S: Maintained
1477
1478HFS FILESYSTEM
1479P: Roman Zippel
1480M: zippel@linux-m68k.org
1481L: linux-kernel@vger.kernel.org
1482S: Maintained
1483
1484HGA FRAMEBUFFER DRIVER
1485P: Ferenc Bakonyi
1486M: fero@drama.obuda.kando.hu
1487L: linux-nvidia@lists.surfsouth.com
1488W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1489S: Maintained
1490
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001491HID CORE LAYER
1492P: Jiri Kosina
1493M: jkosina@suse.cz
1494L: linux-input@atrey.karlin.mff.cuni.cz
1495S: Maintained
1496
Ingo Molnar38bed542007-02-22 09:09:34 +01001497HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
1498P: Thomas Gleixner
1499M: tglx@linutronix.de
1500L: linux-kernel@vger.kernel.org
1501S: Maintained
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503HIGH-SPEED SCC DRIVER FOR AX.25
1504P: Klaus Kudielka
1505M: klaus.kudielka@ieee.org
1506L: linux-hams@vger.kernel.org
1507W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1508S: Maintained
1509
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001510HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1511P: HighPoint Linux Team
1512M: linux@highpoint-tech.com
1513W: http://www.highpoint-tech.com
1514S: Supported
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516HIPPI
1517P: Jes Sorensen
1518M: jes@trained-monkey.org
1519L: linux-hippi@sunsite.dk
1520S: Maintained
1521
1522HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1523P: Chirag Kantharia
1524M: chirag.kantharia@hp.com
1525L: iss_storagedev@hp.com
1526S: Maintained
1527
1528HEWLETT-PACKARD SMART2 RAID DRIVER
1529P: Chirag Kantharia
1530M: chirag.kantharia@hp.com
1531L: iss_storagedev@hp.com
1532S: Maintained
1533
1534HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1535P: Mike Miller
1536M: mike.miller@hp.com
1537L: iss_storagedev@hp.com
1538S: Supported
1539
Jouni Malinenff1d2762005-05-12 22:54:16 -04001540HOST AP DRIVER
1541P: Jouni Malinen
1542M: jkmaline@cc.hut.fi
1543L: hostap@shmoo.com
1544W: http://hostap.epitest.fi/
1545S: Maintained
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1548P: Jaroslav Kysela
1549M: perex@suse.cz
1550S: Maintained
1551
Bob Piccob9b03322005-11-07 00:59:19 -08001552HPET: High Precision Event Timers driver (hpet.c)
1553P: Clemens Ladisch
1554M: clemens@ladisch.de
1555S: Maintained
1556
1557HPET: i386
1558P: Venkatesh Pallipadi (Venki)
1559M: venkatesh.pallipadi@intel.com
1560S: Maintained
1561
1562HPET: x86_64
1563P: Andi Kleen and Vojtech Pavlik
1564M: ak@muc.de and vojtech@suse.cz
1565S: Maintained
1566
1567HPET: ACPI hpet.c
1568P: Bob Picco
1569M: bob.picco@hp.com
1570S: Maintained
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572HPFS FILESYSTEM
1573P: Mikulas Patocka
1574M: mikulas@artax.karlin.mff.cuni.cz
1575W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1576S: Maintained
1577
1578HUGETLB FILESYSTEM
1579P: William Irwin
1580M: wli@holomorphy.com
1581S: Maintained
1582
Jean Delvare5b543962005-08-15 19:51:02 +02001583I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584P: Jean Delvare
1585M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001586L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001587T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588S: Maintained
1589
1590I2O
1591P: Markus Lidel
1592M: markus.lidel@shadowconnect.com
1593W: http://i2o.shadowconnect.com/
1594S: Maintained
1595
1596i386 BOOT CODE
1597P: Riley H. Williams
1598M: Riley@Williams.Name
1599L: Linux-Kernel@vger.kernel.org
1600S: Maintained
1601
1602i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1603P: Dave Jones
1604M: davej@codemonkey.org.uk
1605P: H. Peter Anvin
1606M: hpa@zytor.com
1607S: Maintained
1608
1609i810 TCO TIMER WATCHDOG
1610P: Nils Faerber
1611M: nils@kernelconcepts.de
1612W: http://www.kernelconcepts.de/
1613S: Maintained
1614
1615IA64 (Itanium) PLATFORM
1616P: Tony Luck
1617M: tony.luck@intel.com
1618L: linux-ia64@vger.kernel.org
1619W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001620T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621S: Maintained
1622
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001623IBM ACPI EXTRAS DRIVER
1624P: Henrique de Moraes Holschuh
1625M: ibm-acpi@hmh.eng.br
1626L: ibm-acpi-devel@lists.sourceforge.net
1627W: http://ibm-acpi.sourceforge.net
1628W: http://thinkwiki.org/wiki/Ibm-acpi
1629T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1630S: Maintained
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001633P: Jes Sorensen
1634M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635L: linux-altix@sgi.com
1636L: linux-ia64@vger.kernel.org
1637W: http://www.sgi.com/altix
1638S: Maintained
1639
1640IBM MCA SCSI SUBSYSTEM DRIVER
1641P: Michael Lang
1642M: langa2@kph.uni-mainz.de
1643W: http://www.uni-mainz.de/~langm000/linux.html
1644S: Maintained
1645
1646IBM Power Linux RAID adapter
1647P: Brian King
1648M: brking@us.ibm.com
1649S: Supported
1650
1651IBM ServeRAID RAID DRIVER
1652P: Jack Hammer
1653P: Dave Jeffery
1654M: ipslinux@adaptec.com
1655W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1656S: Supported
1657
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001658IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001660M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001662T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663S: Maintained
1664
1665IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001666P: Alan Cox
1667M: alan@lxorguk.ukuu.org.uk
1668L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669S: Maintained
1670
1671IDE/ATAPI FLOPPY DRIVERS
1672P: Paul Bristow
1673M: Paul Bristow <paul@paulbristow.net>
1674W: http://paulbristow.net/linux/idefloppy.html
1675L: linux-kernel@vger.kernel.org
1676S: Maintained
1677
1678IDE/ATAPI TAPE DRIVERS
1679P: Gadi Oxman
1680M: Gadi Oxman <gadio@netvision.net.il>
1681L: linux-kernel@vger.kernel.org
1682S: Maintained
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684IEEE 1394 SUBSYSTEM
1685P: Ben Collins
1686M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001687P: Stefan Richter
1688M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689L: linux1394-devel@lists.sourceforge.net
1690W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001691T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692S: Maintained
1693
Stefan Richter87730d02006-09-16 12:24:00 +02001694IEEE 1394 IPV4 DRIVER (eth1394)
1695P: Stefan Richter
1696M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001698S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700IEEE 1394 PCILYNX DRIVER
1701P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001702M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001703P: Stefan Richter
1704M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001706S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708IEEE 1394 RAW I/O DRIVER
1709P: Ben Collins
1710M: bcollins@debian.org
1711P: Dan Dennedy
1712M: dan@dennedy.org
1713L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001714S: Maintained
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716IMS TWINTURBO FRAMEBUFFER DRIVER
1717P: Paul Mundt
1718M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001719L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720S: Maintained
1721
1722INFINIBAND SUBSYSTEM
1723P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001724M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725P: Sean Hefty
1726M: mshefty@ichips.intel.com
1727P: Hal Rosenstock
1728M: halr@voltaire.com
1729L: openib-general@openib.org
1730W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001731T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732S: Supported
1733
1734INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001735P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001736M: dmitry.torokhov@gmail.com
1737M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738L: linux-input@atrey.karlin.mff.cuni.cz
1739L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001740T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741S: Maintained
1742
Robert Lovec9f04f52005-07-15 12:21:07 -04001743INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001744P: John McCutchan
1745M: ttb@tentacle.dhs.org
1746P: Robert Love
1747M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001748L: linux-kernel@vger.kernel.org
1749S: Maintained
1750
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001751INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001752P: Sylvain Meyer
1753M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001754L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001755S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001758P: Antonino Daplas
1759M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001760L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001761S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1764P: Ingo Molnar
1765M: mingo@redhat.com
1766S: Maintained
1767
1768INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1769P: Jeff Garzik
1770M: jgarzik@pobox.com
1771W: http://sourceforge.net/projects/gkernel/
1772S: Maintained
1773
1774INTEL IA32 MICROCODE UPDATE SUPPORT
1775P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001776M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777S: Maintained
1778
Michael Buesch844dd052006-06-26 00:24:59 -07001779INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1780P: Deepak Saxena
1781M: dsaxena@plexity.net
1782S: Maintained
1783
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001784INTEL IXP2000 ETHERNET DRIVER
1785P: Lennert Buytenhek
1786M: kernel@wantstofly.org
1787L: netdev@vger.kernel.org
1788S: Maintained
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790INTEL PRO/100 ETHERNET SUPPORT
1791P: John Ronciak
1792M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793P: Jesse Brandeburg
1794M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001795P: Jeff Kirsher
1796M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001797P: Auke Kok
1798M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799W: http://sourceforge.net/projects/e1000/
1800S: Supported
1801
1802INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1803P: Jeb Cramer
1804M: cramerj@intel.com
1805P: John Ronciak
1806M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001807P: Jesse Brandeburg
1808M: jesse.brandeburg@intel.com
1809P: Jeff Kirsher
1810M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001811P: Auke Kok
1812M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813W: http://sourceforge.net/projects/e1000/
1814S: Supported
1815
1816INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001817P: Jeff Kirsher
1818M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819P: Ayyappan Veeraiyan
1820M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821P: John Ronciak
1822M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001823P: Jesse Brandeburg
1824M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001825P: Auke Kok
1826M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827W: http://sourceforge.net/projects/e1000/
1828S: Supported
1829
James Ketrenos826d2ab2005-11-07 18:56:59 -06001830INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1831P: Yi Zhu
1832M: yi.zhu@intel.com
1833P: James Ketrenos
1834M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001835L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001836L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1837W: http://ipw2100.sourceforge.net
1838S: Supported
1839
1840INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1841P: Yi Zhu
1842M: yi.zhu@intel.com
1843P: James Ketrenos
1844M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001845L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001846L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1847W: http://ipw2200.sourceforge.net
1848S: Supported
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850IOC3 DRIVER
1851P: Ralf Baechle
1852M: ralf@linux-mips.org
1853L: linux-mips@linux-mips.org
1854S: Maintained
1855
1856IP MASQUERADING:
1857P: Juanjo Ciarlante
1858M: jjciarla@raiz.uncu.edu.ar
1859S: Maintained
1860
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001861IPATH DRIVER:
1862P: Bryan O'Sullivan
1863M: support@pathscale.com
1864L: openib-general@openib.org
1865S: Supported
1866
Corey Minyard4409ebe2006-04-20 02:43:12 -07001867IPMI SUBSYSTEM
1868P: Corey Minyard
1869M: minyard@acm.org
1870L: openipmi-developer@lists.sourceforge.net
1871W: http://openipmi.sourceforge.net/
1872S: Supported
1873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874IPX NETWORK LAYER
1875P: Arnaldo Carvalho de Melo
1876M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001877L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878S: Maintained
1879
1880IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001881P: Samuel Ortiz
1882M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001883L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001885S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887ISAPNP
1888P: Jaroslav Kysela
1889M: perex@suse.cz
1890S: Maintained
1891
1892ISDN SUBSYSTEM
1893P: Karsten Keil
1894M: kkeil@suse.de
1895P: Kai Germaschewski
1896M: kai.germaschewski@gmx.de
1897L: isdn4linux@listserv.isdn4linux.de
1898W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001899T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900S: Maintained
1901
1902ISDN SUBSYSTEM (Eicon active card driver)
1903P: Armin Schindler
1904M: mac@melware.de
1905L: isdn4linux@listserv.isdn4linux.de
1906W: http://www.melware.de
1907S: Maintained
1908
1909JOURNALLING FLASH FILE SYSTEM (JFFS)
1910P: Axis Communications AB
1911M: jffs-dev@axis.com
1912L: jffs-dev@axis.com
1913W: http://www.developer.axis.com/software/jffs/
1914S: Maintained
1915
1916JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1917P: David Woodhouse
1918M: dwmw2@infradead.org
1919L: jffs-dev@axis.com
1920W: http://sources.redhat.com/jffs2/
1921S: Maintained
1922
1923JFS FILESYSTEM
1924P: Dave Kleikamp
1925M: shaggy@austin.ibm.com
1926L: jfs-discussion@lists.sourceforge.net
1927W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001928T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929S: Supported
1930
Josh Triplettde456d32006-07-30 03:04:00 -07001931JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001932P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001933M: sct@redhat.com, akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001934L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001935S: Maintained
1936
Rudolf Marek4660cb32006-10-08 22:01:26 +02001937K8TEMP HARDWARE MONITORING DRIVER
1938P: Rudolf Marek
1939M: r.marek@assembler.cz
1940L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941S: Maintained
1942
1943KCONFIG
1944P: Roman Zippel
1945M: zippel@linux-m68k.org
1946L: kbuild-devel@lists.sourceforge.net
1947S: Maintained
1948
Vivek Goyalea6c2082006-05-20 14:59:55 -07001949KDUMP
1950P: Vivek Goyal
1951M: vgoyal@in.ibm.com
1952P: Haren Myneni
1953M: hbabu@us.ibm.com
1954L: fastboot@lists.osdl.org
1955L: linux-kernel@vger.kernel.org
1956W: http://lse.sourceforge.net/kdump/
1957S: Maintained
1958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959KERNEL AUTOMOUNTER (AUTOFS)
1960P: H. Peter Anvin
1961M: hpa@zytor.com
1962L: autofs@linux.kernel.org
1963S: Odd Fixes
1964
1965KERNEL AUTOMOUNTER v4 (AUTOFS4)
1966P: Ian Kent
1967M: raven@themaw.net
1968L: autofs@linux.kernel.org
1969S: Maintained
1970
1971KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1972P: Kai Germaschewski
1973M: kai@germaschewski.name
1974P: Sam Ravnborg
1975M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001976T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977S: Maintained
1978
1979KERNEL JANITORS
1980P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001981L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983S: Maintained
1984
1985KERNEL NFSD
1986P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001987M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988L: nfs@lists.sourceforge.net
1989W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001990S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Avi Kivity426d62e2006-12-13 00:34:03 -08001992KERNEL VIRTUAL MACHINE (KVM)
1993P: Avi Kivity
1994M: avi@qumranet.com
1995L: kvm-devel@lists.sourceforge.net
1996W: kvm.sourceforge.net
1997S: Supported
1998
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001999KEXEC
2000P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002001M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002002W: http://www.xmission.com/~ebiederm/files/kexec/
2003L: linux-kernel@vger.kernel.org
Simon Horman588cc702007-02-20 13:58:06 -08002004L: fastboot@lists.osdl.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002005S: Maintained
2006
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07002007KPROBES
2008P: Prasanna S Panchamukhi
2009M: prasanna@in.ibm.com
2010P: Ananth N Mavinakayanahalli
2011M: ananth@in.ibm.com
2012P: Anil S Keshavamurthy
2013M: anil.s.keshavamurthy@intel.com
2014P: David S. Miller
2015M: davem@davemloft.net
2016L: linux-kernel@vger.kernel.org
2017S: Maintained
2018
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002019KS0108 LCD CONTROLLER DRIVER
2020P: Miguel Ojeda Sandonis
2021M: maxextreme@gmail.com
2022L: linux-kernel@vger.kernel.org
2023S: Maintained
2024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002027S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029LASI 53c700 driver for PARISC
2030P: James E.J. Bottomley
2031M: James.Bottomley@HansenPartnership.com
2032L: linux-scsi@vger.kernel.org
2033S: Maintained
2034
Richard Purdie263de9b2006-05-15 09:44:16 -07002035LED SUBSYSTEM
2036P: Richard Purdie
2037M: rpurdie@rpsys.net
2038S: Maintained
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040LEGO USB Tower driver
2041P: Juergen Stuber
2042M: starblue@users.sourceforge.net
2043L: legousb-devel@lists.sourceforge.net
2044W: http://legousb.sourceforge.net/
2045S: Maintained
2046
2047LINUX FOR IBM pSERIES (RS/6000)
2048P: Paul Mackerras
2049M: paulus@au.ibm.com
2050W: http://www.ibm.com/linux/ltc/projects/ppc
2051S: Supported
2052
2053LINUX FOR NCR VOYAGER
2054P: James Bottomley
2055M: James.Bottomley@HansenPartnership.com
2056W: http://www.hansenpartnership.com/voyager
2057S: Maintained
2058
2059LINUX FOR POWERPC
2060P: Paul Mackerras
2061M: paulus@samba.org
2062W: http://www.penguinppc.org/
2063L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002064T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065S: Supported
2066
2067LINUX FOR POWER MACINTOSH
2068P: Benjamin Herrenschmidt
2069M: benh@kernel.crashing.org
2070W: http://www.penguinppc.org/
2071L: linuxppc-dev@ozlabs.org
2072S: Maintained
2073
2074LINUX FOR POWERPC EMBEDDED MPC52XX
2075P: Sylvain Munaut
2076M: tnt@246tNt.com
2077W: http://www.246tNt.com/mpc52xx/
2078W: http://www.penguinppc.org/
2079L: linuxppc-dev@ozlabs.org
2080L: linuxppc-embedded@ozlabs.org
2081S: Maintained
2082
2083LINUX FOR POWERPC EMBEDDED PPC4XX
2084P: Matt Porter
2085M: mporter@kernel.crashing.org
2086W: http://www.penguinppc.org/
2087L: linuxppc-embedded@ozlabs.org
2088S: Maintained
2089
Tom Rinie93adf12005-07-26 12:49:53 -07002090LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091P: Tom Rini
2092M: trini@kernel.crashing.org
2093W: http://www.penguinppc.org/
2094L: linuxppc-embedded@ozlabs.org
2095S: Maintained
2096
Tom Rinie93adf12005-07-26 12:49:53 -07002097LINUX FOR POWERPC EMBEDDED PPC8XX
2098P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002099M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002100W: http://www.penguinppc.org/
2101L: linuxppc-embedded@ozlabs.org
2102S: Maintained
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002105P: Kumar Gala
2106M: galak@kernel.crashing.org
2107W: http://www.penguinppc.org/
2108L: linuxppc-embedded@ozlabs.org
2109S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Olof Johanssonab06ff32006-09-06 14:44:54 -05002111LINUX FOR POWERPC PA SEMI PWRFICIENT
2112P: Olof Johansson
2113M: olof@lixom.net
2114W: http://www.pasemi.com/
2115L: linuxppc-dev@ozlabs.org
2116S: Supported
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118LLC (802.2)
2119P: Arnaldo Carvalho de Melo
2120M: acme@conectiva.com.br
2121S: Maintained
2122
2123LINUX FOR 64BIT POWERPC
2124P: Paul Mackerras
2125M: paulus@samba.org
2126M: paulus@au.ibm.com
2127P: Anton Blanchard
2128M: anton@samba.org
2129M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002130W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002131L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132S: Supported
2133
2134LINUX SECURITY MODULE (LSM) FRAMEWORK
2135P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002136M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002137L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002139T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140S: Supported
2141
2142LM83 HARDWARE MONITOR DRIVER
2143P: Jean Delvare
2144M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002145L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146S: Maintained
2147
2148LM90 HARDWARE MONITOR DRIVER
2149P: Jean Delvare
2150M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002151L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152S: Maintained
2153
2154LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2155P: Richard Russon (FlatCap)
2156M: ldm@flatcap.org
2157L: ldm-devel@lists.sourceforge.net
2158W: http://ldm.sourceforge.net
2159S: Maintained
2160
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002161LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2162P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002163M: Eric.Moore@lsi.com
2164M: support@lsi.com
2165L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002166L: linux-scsi@vger.kernel.org
2167W: http://www.lsilogic.com/support
2168S: Supported
2169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2171P: Matthew Wilcox
2172M: matthew@wil.cx
2173L: linux-scsi@vger.kernel.org
2174S: Maintained
2175
2176M68K ARCHITECTURE
2177P: Geert Uytterhoeven
2178M: geert@linux-m68k.org
2179P: Roman Zippel
2180M: zippel@linux-m68k.org
2181L: linux-m68k@lists.linux-m68k.org
2182W: http://www.linux-m68k.org/
2183W: http://linux-m68k-cvs.ubb.ca/
2184S: Maintained
2185
2186M68K ON APPLE MACINTOSH
2187P: Joshua Thompson
2188M: funaho@jurai.org
2189W: http://www.mac.linux-m68k.org/
2190L: linux-mac68k@mac.linux-m68k.org
2191S: Maintained
2192
2193M68K ON HP9000/300
2194P: Philip Blundell
2195M: philb@gnu.org
2196W: http://www.tazenda.demon.co.uk/phil/linux-hp
2197S: Maintained
2198
2199MARVELL YUKON / SYSKONNECT DRIVER
2200P: Mirko Lindner
2201M: mlindner@syskonnect.de
2202P: Ralph Roesler
2203M: rroesler@syskonnect.de
2204W: http://www.syskonnect.com
2205S: Supported
2206
Michael Kerriskfaf16682005-07-31 22:34:47 -07002207MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002208P: Michael Kerrisk
2209M: mtk-manpages@gmx.net
2210W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2211S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002212
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002213MARVELL MV643XX ETHERNET DRIVER
2214P: Dale Farnsworth
2215M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002217M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002218L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002219S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
2221MATROX FRAMEBUFFER DRIVER
2222P: Petr Vandrovec
2223M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002224L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225S: Maintained
2226
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002227MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002228P: Neela Syam Kolli
2229M: Neela.Kolli@engenio.com
2230S: linux-scsi@vger.kernel.org
2231W: http://megaraid.lsilogic.com
2232S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002233
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002234MEMORY MANAGEMENT
2235L: linux-mm@kvack.org
2236L: linux-kernel@vger.kernel.org
2237W: http://www.linux-mm.org
2238S: Maintained
2239
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002240MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241P: David Woodhouse
2242M: dwmw2@infradead.org
2243W: http://www.linux-mtd.infradead.org/
2244L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002245T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246S: Maintained
2247
2248MICROTEK X6 SCANNER
2249P: Oliver Neukum
2250M: oliver@neukum.name
2251S: Maintained
2252
2253MIPS
2254P: Ralf Baechle
2255M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002256W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002258T: git www.linux-mips.org:/pub/scm/linux.git
2259S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261MISCELLANEOUS MCA-SUPPORT
2262P: James Bottomley
2263M: jejb@steeleye.com
2264L: linux-kernel@vger.kernel.org
2265S: Maintained
2266
2267MODULE SUPPORT
2268P: Rusty Russell
2269M: rusty@rustcorp.com.au
2270L: linux-kernel@vger.kernel.org
2271S: Maintained
2272
2273MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2274P: Stelian Pop
2275M: stelian@popies.net
2276W: http://popies.net/meye/
2277S: Maintained
2278
2279MOUSE AND MISC DEVICES [GENERAL]
2280P: Alessandro Rubini
2281M: rubini@ipvvis.unipv.it
2282L: linux-kernel@vger.kernel.org
2283S: Maintained
2284
Jiri Slabyd7354102006-12-08 02:38:35 -08002285MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2286P: Jiri Slaby
2287M: jirislaby@gmail.com
2288L: linux-kernel@vger.kernel.org
2289S: Maintained
2290
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002291MSI LAPTOP SUPPORT
2292P: Lennart Poettering
2293M: mzxreary@0pointer.de
2294L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2295W: http://0pointer.de/lennart/tchibo.html
2296S: Maintained
2297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298MTRR AND SIMILAR SUPPORT [i386]
2299P: Richard Gooch
2300M: rgooch@atnf.csiro.au
2301L: linux-kernel@vger.kernel.org
2302W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2303S: Maintained
2304
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002305MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2306P: Pierre Ossman
2307M: drzeus-mmc@drzeus.cx
2308L: linux-kernel@vger.kernel.org
2309S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311MULTISOUND SOUND DRIVER
2312P: Andrew Veliath
2313M: andrewtv@usa.net
2314S: Maintained
2315
Jiri Slabyd7354102006-12-08 02:38:35 -08002316MULTITECH MULTIPORT CARD (ISICOM)
2317P: Jiri Slaby
2318M: jirislaby@gmail.com
2319L: linux-kernel@vger.kernel.org
2320S: Maintained
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322NATSEMI ETHERNET DRIVER (DP8381x)
2323P: Tim Hockin
2324M: thockin@hockin.org
2325S: Maintained
2326
2327NCP FILESYSTEM
2328P: Petr Vandrovec
2329M: vandrove@vc.cvut.cz
2330L: linware@sh.cvut.cz
2331S: Maintained
2332
2333NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2334P: James E.J. Bottomley
2335M: James.Bottomley@HansenPartnership.com
2336L: linux-scsi@vger.kernel.org
2337S: Maintained
2338
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002339NETEM NETWORK EMULATOR
2340P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002341M: shemminger@linux-foundation.org
Simon Horman588cc702007-02-20 13:58:06 -08002342L: netem@lists.osdl.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002343S: Maintained
2344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345NETFILTER/IPTABLES/IPCHAINS
2346P: Rusty Russell
2347P: Marc Boucher
2348P: James Morris
2349P: Harald Welte
2350P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002351P: Patrick McHardy
2352M: kaber@trash.net
2353L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002354L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002355L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356W: http://www.netfilter.org/
2357W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358S: Supported
2359
Paul Moore4cc67732006-09-25 15:57:13 -07002360NETLABEL
2361P: Paul Moore
2362M: paul.moore@hp.com
2363W: http://netlabel.sf.net
2364L: netdev@vger.kernel.org
2365S: Supported
2366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367NETROM NETWORK LAYER
2368P: Ralf Baechle
2369M: ralf@linux-mips.org
2370L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002371W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372S: Maintained
2373
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002374NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375P: Paul Clements
2376M: Paul.Clements@steeleye.com
2377S: Maintained
2378
2379NETWORK DEVICE DRIVERS
2380P: Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002381M: akpm@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382P: Jeff Garzik
2383M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002384L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002385T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386S: Maintained
2387
2388NETWORKING [GENERAL]
2389P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002390M: netdev@vger.kernel.org
2391L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002392W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393S: Maintained
2394
2395NETWORKING [IPv4/IPv6]
2396P: David S. Miller
2397M: davem@davemloft.net
2398P: Alexey Kuznetsov
2399M: kuznet@ms2.inr.ac.ru
2400P: Pekka Savola (ipv6)
2401M: pekkas@netcore.fi
2402P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002403M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404P: Hideaki YOSHIFUJI
2405M: yoshfuji@linux-ipv6.org
2406P: Patrick McHardy
2407M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002408L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002409T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410S: Maintained
2411
John W. Linville29f8f632006-01-18 14:52:48 -08002412NETWORKING [WIRELESS]
2413P: John W. Linville
2414M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002415L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002416T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2417S: Maintained
2418
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002419NETXEN (1/10) GbE SUPPORT
2420P: Amit S. Kale
2421M: amitkale@netxen.com
2422L: netdev@vger.kernel.org
2423W: http://www.netxen.com
2424S: Supported
2425
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426IPVS
2427P: Wensong Zhang
2428M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002429P: Simon Horman
2430M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431P: Julian Anastasov
2432M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002433L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434S: Maintained
2435
2436NFS CLIENT
2437P: Trond Myklebust
2438M: trond.myklebust@fys.uio.no
2439L: linux-kernel@vger.kernel.org
2440S: Maintained
2441
2442NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002443P: Jan-Pascal van Best
2444M: janpascal@vanbest.org
2445P: Andreas Mohr
2446M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002447L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448S: Maintained
2449
2450NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2451P: YOKOTA Hiroshi
2452M: yokota@netlab.is.tsukuba.ac.jp
2453W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2454S: Maintained
2455
2456NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2457P: GOTO Masanori
2458M: gotom@debian.or.jp
2459P: YOKOTA Hiroshi
2460M: yokota@netlab.is.tsukuba.ac.jp
2461W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2462S: Maintained
2463
2464NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2465P: Eberhard Moenkeberg
2466M: emoenke@gwdg.de
2467L: linux-kernel@vger.kernel.org
2468S: Maintained
2469
2470NTFS FILESYSTEM
2471P: Anton Altaparmakov
2472M: aia21@cantab.net
2473L: linux-ntfs-dev@lists.sourceforge.net
2474L: linux-kernel@vger.kernel.org
2475W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002476T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477S: Maintained
2478
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002479NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002480P: Antonino Daplas
2481M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002482L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002483S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002485OPENCORES I2C BUS DRIVER
2486P: Peter Korsgaard
2487M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002488L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002489S: Maintained
2490
Mark Fashehccd979b2005-12-15 14:31:24 -08002491ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2492P: Mark Fasheh
2493M: mark.fasheh@oracle.com
2494P: Kurt Hackel
2495M: kurt.hackel@oracle.com
2496L: ocfs2-devel@oss.oracle.com
2497W: http://oss.oracle.com/projects/ocfs2/
2498S: Supported
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500OLYMPIC NETWORK DRIVER
2501P: Peter De Shrijver
2502M: p2@ace.ulyssis.student.kuleuven.ac.be
2503P: Mike Phillips
2504M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002505L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506L: linux-tr@linuxtr.net
2507W: http://www.linuxtr.net
2508S: Maintained
2509
Harald Weltec1986ee2005-11-13 16:06:29 -08002510OMNIKEY CARDMAN 4000 DRIVER
2511P: Harald Welte
2512M: laforge@gnumonks.org
2513S: Maintained
2514
Harald Welte77c44ab2005-11-13 16:06:26 -08002515OMNIKEY CARDMAN 4040 DRIVER
2516P: Harald Welte
2517M: laforge@gnumonks.org
2518S: Maintained
2519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520ONSTREAM SCSI TAPE DRIVER
2521P: Willem Riede
2522M: osst@riede.org
2523L: osst-users@lists.sourceforge.net
2524L: linux-scsi@vger.kernel.org
2525S: Maintained
2526
2527OPL3-SA2, SA3, and SAx DRIVER
2528P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002529M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530L: linux-sound@vger.kernel.org
2531S: Maintained
2532
2533OPROFILE
2534P: Philippe Elie
2535M: phil.el@wanadoo.fr
2536L: oprofile-list@lists.sf.net
2537S: Maintained
2538
2539ORINOCO DRIVER
2540P: Pavel Roskin
2541M: proski@gnu.org
2542P: David Gibson
2543M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002544L: orinoco-users@lists.sourceforge.net
2545L: orinoco-devel@lists.sourceforge.net
2546W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547S: Maintained
2548
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002549PA SEMI ETHERNET DRIVER
2550P: Olof Johansson
2551M: olof@lixom.net
2552L: netdev@vger.kernel.org
2553S: Maintained
2554
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002555PA SEMI SMBUS DRIVER
2556P: Olof Johansson
2557M: olof@lixom.net
2558L: i2c@lm-sensors.org
2559S: Maintained
2560
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561PARALLEL PORT SUPPORT
2562P: Phil Blundell
2563M: philb@gnu.org
2564P: Tim Waugh
2565M: tim@cyberelk.net
2566P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567P: Andrea Arcangeli
2568M: andrea@suse.de
2569L: linux-parport@lists.infradead.org
2570W: http://people.redhat.com/twaugh/parport/
2571S: Maintained
2572
2573PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2574P: Tim Waugh
2575M: tim@cyberelk.net
2576L: linux-parport@lists.infradead.org
2577W: http://www.torque.net/linux-pp.html
2578S: Maintained
2579
2580PARISC ARCHITECTURE
2581P: Matthew Wilcox
2582M: matthew@wil.cx
2583P: Grant Grundler
2584M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002585P: Kyle McMartin
2586M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587L: parisc-linux@parisc-linux.org
2588W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002589T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2590T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591S: Maintained
2592
Jim Cromie1662d322006-10-06 00:43:59 -07002593PC87360 HARDWARE MONITORING DRIVER
2594P: Jim Cromie
2595M: jim.cromie@gmail.com
2596L: lm-sensors@lm-sensors.org
2597S: Maintained
2598
2599PC8736x GPIO DRIVER
2600P: Jim Cromie
2601M: jim.cromie@gmail.com
2602S: Maintained
2603
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002604PCI ERROR RECOVERY
2605P: Linas Vepstas
2606M: linas@austin.ibm.com
2607L: linux-kernel@vger.kernel.org
2608L: linux-pci@atrey.karlin.mff.cuni.cz
2609S: Supported
2610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2612P: Thomas Sailer
2613M: sailer@ife.ee.ethz.ch
2614L: linux-sound@vger.kernel.org
2615W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2616S: Maintained
2617
2618PCI SUBSYSTEM
2619P: Greg Kroah-Hartman
2620M: gregkh@suse.de
2621L: linux-kernel@vger.kernel.org
2622L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002623T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624S: Supported
2625
2626PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002627P: Kristen Carlson Accardi
2628M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629S: Supported
2630
2631PCI HOTPLUG COMPAQ DRIVER
2632P: Greg Kroah-Hartman
2633M: greg@kroah.com
2634S: Maintained
2635
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002636PCIE HOTPLUG DRIVER
2637P: Kristen Carlson Accardi
2638M: kristen.c.accardi@intel.com
2639L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002640S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002641
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002643P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002644L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002646T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002647S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002650P: Don Fry
2651M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002652L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653S: Maintained
2654
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002655PER-TASK DELAY ACCOUNTING
2656P: Shailabh Nagar
2657M: nagar@watson.ibm.com
2658L: linux-kernel@vger.kernel.org
2659S: Maintained
2660
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002661PERSONALITY HANDLING
2662P: Christoph Hellwig
2663M: hch@infradead.org
2664L: linux-abi-devel@lists.sourceforge.net
2665S: Maintained
2666
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667PHRAM MTD DRIVER
2668P: Jörn Engel
2669M: joern@wh.fh-wedel.de
2670L: linux-mtd@lists.infradead.org
2671S: Maintained
2672
Peter Osterlund249a6772005-09-27 21:45:30 -07002673PKTCDVD DRIVER
2674P: Peter Osterlund
2675M: petero2@telia.com
2676L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002677S: Maintained
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679POSIX CLOCKS and TIMERS
2680P: George Anzinger
2681M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002682L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683S: Supported
2684
Eugene Surovegin24682972005-10-14 03:00:53 -07002685POWERPC 4xx EMAC DRIVER
2686P: Eugene Surovegin
2687M: ebs@ebshome.net
2688W: http://kernel.ebshome.net/emac/
2689L: linuxppc-embedded@ozlabs.org
2690L: netdev@vger.kernel.org
2691S: Maintained
2692
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693PNP SUPPORT
2694P: Adam Belay
2695M: ambx1@neo.rr.com
2696S: Maintained
2697
Vitaly Wool999445d2007-01-04 13:07:03 +01002698PNXxxxx I2C DRIVER
2699P: Vitaly Wool
2700M: vitalywool@gmail.com
2701L: i2c@lm-sensors.org
2702S: Maintained
2703
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704PPP PROTOCOL DRIVERS AND COMPRESSORS
2705P: Paul Mackerras
2706M: paulus@samba.org
2707L: linux-ppp@vger.kernel.org
2708S: Maintained
2709
2710PPP OVER ATM (RFC 2364)
2711P: Mitchell Blank Jr
2712M: mitch@sfgoth.com
2713S: Maintained
2714
2715PPP OVER ETHERNET
2716P: Michal Ostrowski
2717M: mostrows@speakeasy.net
2718S: Maintained
2719
2720PREEMPTIBLE KERNEL
2721P: Robert Love
2722M: rml@tech9.net
2723L: linux-kernel@vger.kernel.org
2724L: kpreempt-tech@lists.sourceforge.net
2725W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2726S: Supported
2727
2728PRISM54 WIRELESS DRIVER
2729P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002730M: developers@islsm.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002731L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732W: http://prism54.org
2733S: Maintained
2734
2735PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2736P: Peter Denison
2737M: promise@pnd-pc.demon.co.uk
2738W: http://www.pnd-pc.demon.co.uk/promise/
2739S: Maintained
2740
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002741PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2742P: Mikael Pettersson
2743M: mikpe@it.uu.se
2744L: linux-ide@vger.kernel.org
2745S: Maintained
2746
Geoff Levandf58a9d12006-11-23 00:46:51 +01002747PS3 PLATFORM SUPPORT
2748P: Geoff Levand
2749M: geoffrey.levand@am.sony.com
2750L: linuxppc-dev@ozlabs.org
2751L: cbe-oss-dev@ozlabs.org
2752S: Supported
2753
Michael Krufky83202042006-07-03 00:24:18 -07002754PVRUSB2 VIDEO4LINUX DRIVER
2755P: Mike Isely
2756M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03002757L: pvrusb2@isely.net (subscribers-only)
Michael Krufky83202042006-07-03 00:24:18 -07002758L: video4linux-list@redhat.com
2759W: http://www.isely.net/pvrusb2/
2760S: Maintained
2761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762PXA2xx SUPPORT
2763P: Nicolas Pitre
2764M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002765L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766S: Maintained
2767
2768QLOGIC QLA2XXX FC-SCSI DRIVER
2769P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002770M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771L: linux-scsi@vger.kernel.org
2772S: Supported
2773
Ron Mercer5a4faa872006-07-25 00:40:21 -07002774QLOGIC QLA3XXX NETWORK DRIVER
2775P: Ron Mercer
2776M: linux-driver@qlogic.com
2777L: netdev@vger.kernel.org
2778S: Supported
2779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780QNX4 FILESYSTEM
2781P: Anders Larsen
2782M: al@alarsen.net
2783L: linux-kernel@vger.kernel.org
2784W: http://www.alarsen.net/linux/qnx4fs/
2785S: Maintained
2786
2787RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002788P: Benjamin Herrenschmidt
2789M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002790L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791S: Maintained
2792
2793RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002794P: Paul Mackerras
2795M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002796L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797S: Maintained
2798
2799RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2800P: Corey Thomas
2801M: corey@world.std.com
2802L: linux-kernel@vger.kernel.org
2803S: Maintained
2804
Matt Mackall9e95ce22005-04-16 15:25:56 -07002805RANDOM NUMBER DRIVER
2806P: Matt Mackall
2807M: mpm@selenic.com
2808S: Maintained
2809
Matt Porter394b7012005-11-07 01:00:15 -08002810RAPIDIO SUBSYSTEM
2811P: Matt Porter
2812M: mporter@kernel.crashing.org
2813L: linux-kernel@vger.kernel.org
2814S: Maintained
2815
Josh Triplett595182b2006-10-04 02:17:21 -07002816READ-COPY UPDATE (RCU)
2817P: Dipankar Sarma
2818M: dipankar@in.ibm.com
2819W: http://www.rdrop.com/users/paulmck/rclock/
2820L: linux-kernel@vger.kernel.org
2821S: Supported
2822
2823RCUTORTURE MODULE
2824P: Josh Triplett
2825M: josh@freedesktop.org
2826L: linux-kernel@vger.kernel.org
2827S: Maintained
2828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829REAL TIME CLOCK DRIVER
2830P: Paul Gortmaker
2831M: p_gortmaker@yahoo.com
2832L: linux-kernel@vger.kernel.org
2833S: Maintained
2834
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002835REAL TIME CLOCK (RTC) SUBSYSTEM
2836P: Alessandro Zummo
2837M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002838L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002839S: Maintained
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841REISERFS FILE SYSTEM
2842P: Hans Reiser
2843M: reiserfs-dev@namesys.com
2844L: reiserfs-list@namesys.com
2845W: http://www.namesys.com
2846S: Supported
2847
2848ROCKETPORT DRIVER
2849P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850W: http://www.comtrol.com
2851S: Maintained
2852
2853ROSE NETWORK LAYER
2854P: Ralf Baechle
2855M: ralf@linux-mips.org
2856L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002857W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858S: Maintained
2859
2860RISCOM8 DRIVER
2861S: Orphan
2862
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002863S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002864P: Antonino Daplas
2865M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002866L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002867S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869S390
2870P: Martin Schwidefsky
2871M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002872P: Heiko Carstens
2873M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002875L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002876W: http://www.ibm.com/developerworks/linux/linux390/
2877S: Supported
2878
2879S390 NETWORK DRIVERS
2880P: Frank Pavlic
2881M: fpavlic@de.ibm.com
2882M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002883L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002884W: http://www.ibm.com/developerworks/linux/linux390/
2885S: Supported
2886
2887S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002888P: Swen Schillig
2889M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002890M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002891L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002892W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893S: Supported
2894
2895SAA7146 VIDEO4LINUX-2 DRIVER
2896P: Michael Hunold
2897M: michael@mihu.de
2898W: http://www.mihu.de/linux/saa7146
2899S: Maintained
2900
2901SBPCD CDROM DRIVER
2902P: Eberhard Moenkeberg
2903M: emoenke@gwdg.de
2904L: linux-kernel@vger.kernel.org
2905S: Maintained
2906
2907SC1200 WDT DRIVER
2908P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002909M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910S: Maintained
2911
2912SCHEDULER
2913P: Ingo Molnar
2914M: mingo@elte.hu
2915P: Robert Love [the preemptible kernel bits]
2916M: rml@tech9.net
2917L: linux-kernel@vger.kernel.org
2918S: Maintained
2919
2920SCSI CDROM DRIVER
2921P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002922M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923L: linux-scsi@vger.kernel.org
2924W: http://www.kernel.dk
2925S: Maintained
2926
2927SCSI SG DRIVER
2928P: Doug Gilbert
2929M: dgilbert@interlog.com
2930L: linux-scsi@vger.kernel.org
2931W: http://www.torque.net/sg
2932S: Maintained
2933
2934SCSI SUBSYSTEM
2935P: James E.J. Bottomley
2936M: James.Bottomley@SteelEye.com
2937L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002938T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939S: Maintained
2940
2941SCSI TAPE DRIVER
2942P: Kai Mäkisara
2943M: Kai.Makisara@kolumbus.fi
2944L: linux-scsi@vger.kernel.org
2945S: Maintained
2946
2947SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002948P: Sridhar Samudrala
2949M: sri@us.ibm.com
2950L: lksctp-developers@lists.sourceforge.net
2951S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002954P: Jim Cromie
2955M: jim.cromie@gmail.com
2956S: Odd Fixes
2957
2958SCx200 GPIO DRIVER
2959P: Jim Cromie
2960M: jim.cromie@gmail.com
2961S: Maintained
2962
2963SCx200 HRT CLOCKSOURCE DRIVER
2964P: Jim Cromie
2965M: jim.cromie@gmail.com
2966S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
2968SECURITY CONTACT
2969P: Security Officers
2970M: security@kernel.org
2971S: Supported
2972
2973SELINUX SECURITY MODULE
2974P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002975M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002977M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978L: linux-kernel@vger.kernel.org (kernel issues)
2979L: selinux@tycho.nsa.gov (general discussion)
2980W: http://www.nsa.gov/selinux
2981S: Supported
2982
2983SERIAL ATA (SATA) SUBSYSTEM:
2984P: Jeff Garzik
2985M: jgarzik@pobox.com
2986L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002987T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988S: Supported
2989
2990SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2991P: Pat Gefre
2992M: pfg@sgi.com
2993L: linux-ia64@vger.kernel.org
2994S: Supported
2995
2996SGI VISUAL WORKSTATION 320 AND 540
2997P: Andrey Panin
2998M: pazke@donpac.ru
2999L: linux-visws-devel@lists.sf.net
3000W: http://linux-visws.sf.net
3001S: Maintained for 2.6.
3002
3003SIMTEC EB110ATX (Chalice CATS)
3004P: Ben Dooks
3005P: Vincent Sanders
3006M: support@simtec.co.uk
3007W: http://www.simtec.co.uk/products/EB110ATX/
3008S: Supported
3009
3010SIMTEC EB2410ITX (BAST)
3011P: Ben Dooks
3012P: Vincent Sanders
3013M: support@simtec.co.uk
3014W: http://www.simtec.co.uk/products/EB2410ITX/
3015S: Supported
3016
Francois Romieu92aab3c2005-07-30 13:11:18 +02003017SIS 190 ETHERNET DRIVER
3018P: Francois Romieu
3019M: romieu@fr.zoreil.com
3020L: netdev@vger.kernel.org
3021S: Maintained
3022
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023SIS 5513 IDE CONTROLLER DRIVER
3024P: Lionel Bouton
3025M: Lionel.Bouton@inet6.fr
3026W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3027W: http://gyver.homeip.net/sis5513/index.html
3028S: Maintained
3029
3030SIS 900/7016 FAST ETHERNET DRIVER
3031P: Daniele Venzano
3032M: venza@brownhat.org
3033W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003034L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035S: Maintained
3036
3037SIS FRAMEBUFFER DRIVER
3038P: Thomas Winischhofer
3039M: thomas@winischhofer.net
3040W: http://www.winischhofer.net/linuxsisvga.shtml
3041S: Maintained
3042
3043SIS USB2VGA DRIVER
3044P: Thomas Winischhofer
3045M: thomas@winischhofer.net
3046W: http://www.winischhofer.at/linuxsisusbvga.shtml
3047S: Maintained
3048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049SMC91x ETHERNET DRIVER
3050P: Nicolas Pitre
3051M: nico@cam.org
3052S: Maintained
3053
Daniel Drake8f0f8502006-07-18 22:00:25 +01003054SOFTMAC LAYER (IEEE 802.11)
3055P: Johannes Berg
3056M: johannes@sipsolutions.net
3057P: Joe Jezak
3058M: josejx@gentoo.org
3059P: Daniel Drake
3060M: dsd@gentoo.org
3061W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01003062L: netdev@vger.kernel.org
3063S: Maintained
3064
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065SOFTWARE RAID (Multiple Disks) SUPPORT
3066P: Ingo Molnar
3067M: mingo@redhat.com
3068P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003069M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003071S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
3073SOFTWARE SUSPEND:
3074P: Pavel Machek
3075M: pavel@suse.cz
Simon Horman588cc702007-02-20 13:58:06 -08003076L: linux-pm@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077S: Maintained
3078
3079SONIC NETWORK DRIVER
3080P: Thomas Bogendoerfer
3081M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003082L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083S: Maintained
3084
3085SONY VAIO CONTROL DEVICE DRIVER
3086P: Stelian Pop
3087M: stelian@popies.net
Mattia Dongili0d477fa2007-02-08 20:16:40 +01003088P: Mattia Dongili
3089M: malattia@linux.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090W: http://popies.net/sonypi/
3091S: Maintained
3092
3093SOUND
3094P: Jaroslav Kysela
3095M: perex@suse.cz
3096L: alsa-devel@alsa-project.org
3097S: Maintained
3098
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003099SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3100P: Liam Girdwood
3101M: liam.girdwood@wolfsonmicro.com
3102L: alsa-devel@alsa-project.org
3103S: Supported
3104
Kumar Gala025c3982006-04-02 16:05:54 -05003105SPI SUBSYSTEM
3106P: David Brownell
3107M: dbrownell@users.sourceforge.net
3108L: spi-devel-general@lists.sourceforge.net
3109S: Maintained
3110
Steven Rostedt855f46a2006-08-05 12:14:50 -07003111STABLE BRANCH:
3112P: Greg Kroah-Hartman
3113M: greg@kroah.com
3114P: Chris Wright
3115M: chrisw@sous-sol.org
3116L: stable@kernel.org
3117S: Maintained
3118
Kylene Hall1c72d462005-05-01 08:59:13 -07003119TPM DEVICE DRIVER
3120P: Kylene Hall
3121M: kjhall@us.ibm.com
3122W: http://tpmdd.sourceforge.net
3123L: tpmdd-devel@lists.sourceforge.net
3124S: Maintained
3125
Mark Gross1a80ba82005-10-30 15:02:55 -08003126Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003127P: Mark Gross
3128M: mark.gross@intel.com
3129S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003130
Chris Zankel48b415c2005-06-23 22:01:07 -07003131TENSILICA XTENSA PORT (xtensa):
3132P: Chris Zankel
3133M: chris@zankel.net
3134S: Maintained
3135
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136UltraSPARC (sparc64):
3137P: David S. Miller
3138M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003140T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141S: Maintained
3142
3143SHARP LH SUPPORT (LH7952X & LH7A40X)
3144P: Marc Singer
3145M: elf@buici.com
3146W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003147L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148S: Maintained
3149
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003150SHPC HOTPLUG DRIVER
3151P: Kristen Carlson Accardi
3152M: kristen.c.accardi@intel.com
3153L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003154S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003155
Pierre Ossmand129bce2006-03-24 03:18:17 -08003156SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3157P: Pierre Ossman
3158M: drzeus-sdhci@drzeus.cx
3159L: sdhci-devel@list.drzeus.cx
3160W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3161S: Maintained
3162
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003163SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3164P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003165M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003166L: netdev@vger.kernel.org
3167S: Maintained
3168
Chris Boot1a87d942006-07-10 04:45:34 -07003169SOEKRIS NET48XX LED SUPPORT
3170P: Chris Boot
3171M: bootc@bootc.net
3172S: Maintained
3173
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174SPARC (sparc32):
3175P: William L. Irwin
3176M: wli@holomorphy.com
3177L: sparclinux@vger.kernel.org
3178S: Maintained
3179
3180SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3181P: Roger Wolff
3182M: R.E.Wolff@BitWizard.nl
3183L: linux-kernel@vger.kernel.org ?
3184S: Supported
3185
Jim Lewis2752e402006-09-29 02:01:19 -07003186SPIDERNET NETWORK DRIVER for CELL
3187P: Jim Lewis
3188M: jim@jklewis.com
3189L: netdev@vger.kernel.org
3190S: Supported
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192SRM (Alpha) environment access
3193P: Jan-Benedict Glaw
3194M: jbglaw@lug-owl.de
3195L: linux-kernel@vger.kernel.org
3196S: Maintained
3197
3198STARFIRE/DURALAN NETWORK DRIVER
3199P: Ion Badulescu
3200M: ionut@cs.columbia.edu
3201S: Maintained
3202
3203STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3204W: http://mosquitonet.Stanford.EDU/strip.html
3205S: Unsupported ?
3206
3207STRADIS MPEG-2 DECODER DRIVER
3208P: Nathan Laredo
3209M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210W: http://www.stradis.com/
3211S: Maintained
3212
3213SUPERH (sh)
3214P: Paul Mundt
3215M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003216L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218S: Maintained
3219
3220SUPERH64 (sh64)
3221P: Paul Mundt
3222M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223L: linuxsh-shmedia-dev@lists.sourceforge.net
3224W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225S: Maintained
3226
3227SUN3/3X
3228P: Sam Creasey
3229M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230W: http://sammy.net/sun3/
3231S: Maintained
3232
3233SVGA HANDLING
3234P: Martin Mares
3235M: mj@ucw.cz
3236L: linux-video@atrey.karlin.mff.cuni.cz
3237S: Maintained
3238
3239SYSV FILESYSTEM
3240P: Christoph Hellwig
3241M: hch@infradead.org
3242S: Maintained
3243
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003244TC CLASSIFIER
3245P: Jamal Hadi Salim
3246M: hadi@cyberus.ca
3247L: netdev@vger.kernel.org
3248S: Maintained
3249
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003250TCP LOW PRIORITY MODULE
3251P: Wong Hoi Sing, Edison
3252M: hswong3i@gmail.com
3253P: Hung Hing Lun, Mike
3254M: hlhung3i@gmail.com
3255W: http://tcp-lp-mod.sourceforge.net/
3256S: Maintained
3257
Alex Dubov4020f2d2006-10-04 02:15:37 -07003258TI FLASH MEDIA INTERFACE DRIVER
3259P: Alex Dubov
3260M: oakad@yahoo.com
3261S: Maintained
3262
Michael Buesch844dd052006-06-26 00:24:59 -07003263TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3264P: Deepak Saxena
3265M: dsaxena@plexity.net
3266S: Maintained
3267
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003268TASKSTATS STATISTICS INTERFACE
3269P: Shailabh Nagar
3270M: nagar@watson.ibm.com
3271L: linux-kernel@vger.kernel.org
3272S: Maintained
3273
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003275P: Romain Lievin
3276M: roms@lpg.ticalc.org
3277S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Per Lidene86eaa32006-01-12 16:45:18 +01003279TIPC NETWORK LAYER
3280P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003281M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003282P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003283M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003284P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003285M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003286L: tipc-discussion@lists.sourceforge.net
3287W: http://tipc.sourceforge.net/
3288W: http://tipc.cslab.ericsson.net/
3289T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3290S: Maintained
3291
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292TLAN NETWORK DRIVER
3293P: Samuel Chessman
3294M: chessman@tux.org
3295L: tlan-devel@lists.sourceforge.net
3296W: http://sourceforge.net/projects/tlan/
3297S: Maintained
3298
3299TOKEN-RING NETWORK DRIVER
3300P: Mike Phillips
3301M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003302L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303L: linux-tr@linuxtr.net
3304W: http://www.linuxtr.net
3305S: Maintained
3306
3307TOSHIBA ACPI EXTRAS DRIVER
3308P: John Belmonte
3309M: toshiba_acpi@memebeam.org
3310W: http://memebeam.org/toys/ToshibaAcpiDriver
3311S: Maintained
3312
3313TOSHIBA SMM DRIVER
3314P: Jonathan Buzzard
3315M: jonathan@buzzard.org.uk
3316L: tlinux-users@tce.toshiba-dme.co.jp
3317W: http://www.buzzard.org.uk/toshiba/
3318S: Maintained
3319
3320TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3321P: Muli Ben-Yehuda
3322M: mulix@mulix.org
3323L: linux-kernel@vger.kernel.org
3324S: Maintained
3325
3326TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003327P: Adrian Bunk
3328M: trivial@kernel.org
3329L: linux-kernel@vger.kernel.org
3330W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3331T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3332S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
3334TMS380 TOKEN-RING NETWORK DRIVER
3335P: Adam Fritzler
3336M: mid@auk.cx
3337L: linux-tr@linuxtr.net
3338W: http://www.auk.cx/tms380tr/
3339S: Maintained
3340
3341TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003342P: Valerie Henson
3343M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344L: tulip-users@lists.sourceforge.net
3345W: http://sourceforge.net/projects/tulip/
3346S: Maintained
3347
3348TUN/TAP driver
3349P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003350M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351L: vtun@office.satix.net
3352W: http://vtun.sourceforge.net/tun
3353S: Maintained
3354
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003355TURBOCHANNEL SUBSYSTEM
3356P: Maciej W. Rozycki
3357M: macro@linux-mips.org
3358S: Maintained
3359
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360U14-34F SCSI DRIVER
3361P: Dario Ballabio
3362M: ballabio_dario@emc.com
3363L: linux-scsi@vger.kernel.org
3364S: Maintained
3365
3366UDF FILESYSTEM
3367P: Ben Fennema
3368M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369W: http://linux-udf.sourceforge.net
3370S: Maintained
3371
3372UNIFORM CDROM DRIVER
3373P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003374M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375L: linux-kernel@vger.kernel.org
3376W: http://www.kernel.dk
3377S: Maintained
3378
3379USB ACM DRIVER
3380P: Oliver Neukum
3381M: oliver@neukum.name
3382L: linux-usb-users@lists.sourceforge.net
3383L: linux-usb-devel@lists.sourceforge.net
3384S: Maintained
3385
3386USB BLOCK DRIVER (UB ub)
3387P: Pete Zaitcev
3388M: zaitcev@redhat.com
3389L: linux-kernel@vger.kernel.org
3390L: linux-usb-devel@lists.sourceforge.net
3391S: Supported
3392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393USB CDC ETHERNET DRIVER
3394P: Greg Kroah-Hartman
3395M: greg@kroah.com
3396L: linux-usb-users@lists.sourceforge.net
3397L: linux-usb-devel@lists.sourceforge.net
3398S: Maintained
3399W: http://www.kroah.com/linux-usb/
3400
Peter Korsgaardd0374f42007-02-16 17:03:54 +01003401USB DAVICOM DM9601 DRIVER
3402P: Peter Korsgaard
3403M: jacmet@sunsite.dk
3404L: linux-usb-devel@lists.sourceforge.net
3405W: http://www.linux-usb.org/usbnet
3406S: Maintained
3407
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408USB EHCI DRIVER
3409P: David Brownell
3410M: dbrownell@users.sourceforge.net
3411L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003412S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Luca Risolia7ce08c92006-01-11 02:06:59 +00003414USB ET61X[12]51 DRIVER
3415P: Luca Risolia
3416M: luca.risolia@studio.unibo.it
3417L: linux-usb-devel@lists.sourceforge.net
3418L: video4linux-list@redhat.com
3419W: http://www.linux-projects.org
3420S: Maintained
3421
David Brownell69ae9e32006-11-14 02:03:31 -08003422USB GADGET/PERIPHERAL SUBSYSTEM
3423P: David Brownell
3424M: dbrownell@users.sourceforge.net
3425L: linux-usb-devel@lists.sourceforge.net
3426W: http://www.linux-usb.org/gadget
3427S: Maintained
3428
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003430P: Jiri Kosina
3431M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432L: linux-usb-devel@lists.sourceforge.net
3433S: Maintained
3434
3435USB HUB DRIVER
3436P: Johannes Erdfelt
3437M: johannes@erdfelt.com
3438L: linux-usb-users@lists.sourceforge.net
3439L: linux-usb-devel@lists.sourceforge.net
3440S: Maintained
3441
Olav Kongas959eea22005-11-03 17:38:14 +02003442USB ISP116X DRIVER
3443P: Olav Kongas
3444M: ok@artecdesign.ee
3445L: linux-usb-devel@lists.sourceforge.net
3446S: Maintained
3447
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448USB KAWASAKI LSI DRIVER
3449P: Oliver Neukum
3450M: oliver@neukum.name
3451L: linux-usb-users@lists.sourceforge.net
3452L: linux-usb-devel@lists.sourceforge.net
3453S: Maintained
3454
3455USB MASS STORAGE DRIVER
3456P: Matthew Dharm
3457M: mdharm-usb@one-eyed-alien.net
3458L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003459L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460S: Maintained
3461W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3462
3463USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003464P: David Brownell
3465M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466L: linux-usb-users@lists.sourceforge.net
3467L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003468S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469
Matthias Urlichsba460e42005-07-14 00:33:47 -07003470USB OPTION-CARD DRIVER
3471P: Matthias Urlichs
3472M: smurf@smurf.noris.de
3473L: linux-usb-devel@lists.sourceforge.net
3474S: Maintained
3475
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476USB OV511 DRIVER
3477P: Mark McClelland
3478M: mmcclell@bigfoot.com
3479L: linux-usb-users@lists.sourceforge.net
3480L: linux-usb-devel@lists.sourceforge.net
3481W: http://alpha.dyndns.org/ov511/
3482S: Maintained
3483
3484USB PEGASUS DRIVER
3485P: Petko Manolov
3486M: petkan@users.sourceforge.net
3487L: linux-usb-users@lists.sourceforge.net
3488L: linux-usb-devel@lists.sourceforge.net
3489W: http://pegasus2.sourceforge.net/
3490S: Maintained
3491
3492USB PRINTER DRIVER
3493P: Vojtech Pavlik
3494M: vojtech@suse.cz
3495L: linux-usb-users@lists.sourceforge.net
3496L: linux-usb-devel@lists.sourceforge.net
3497S: Maintained
3498
3499USB RTL8150 DRIVER
3500P: Petko Manolov
3501M: petkan@users.sourceforge.net
3502L: linux-usb-users@lists.sourceforge.net
3503L: linux-usb-devel@lists.sourceforge.net
3504W: http://pegasus2.sourceforge.net/
3505S: Maintained
3506
3507USB SE401 DRIVER
3508P: Jeroen Vreeken
3509M: pe1rxq@amsat.org
3510L: linux-usb-users@lists.sourceforge.net
3511L: linux-usb-devel@lists.sourceforge.net
3512W: http://www.chello.nl/~j.vreeken/se401/
3513S: Maintained
3514
3515USB SERIAL CYBERJACK DRIVER
3516P: Matthias Bruestle and Harald Welte
3517M: support@reiner-sct.com
3518W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3519S: Maintained
3520
3521USB SERIAL DIGI ACCELEPORT DRIVER
3522P: Peter Berger and Al Borchers
3523M: pberger@brimson.com
3524M: alborchers@steinerpoint.com
3525L: linux-usb-users@lists.sourceforge.net
3526L: linux-usb-devel@lists.sourceforge.net
3527S: Maintained
3528
3529USB SERIAL DRIVER
3530P: Greg Kroah-Hartman
3531M: gregkh@suse.de
3532L: linux-usb-users@lists.sourceforge.net
3533L: linux-usb-devel@lists.sourceforge.net
3534S: Supported
3535
3536USB SERIAL BELKIN F5U103 DRIVER
3537P: William Greathouse
3538M: wgreathouse@smva.com
3539L: linux-usb-users@lists.sourceforge.net
3540L: linux-usb-devel@lists.sourceforge.net
3541S: Maintained
3542
3543USB SERIAL CYPRESS M8 DRIVER
3544P: Lonnie Mendez
3545M: dignome@gmail.com
3546L: linux-usb-users@lists.sourceforge.net
3547L: linux-usb-devel@lists.sourceforge.net
3548S: Maintained
3549W: http://geocities.com/i0xox0i
3550W: http://firstlight.net/cvs
3551
3552USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3553L: linux-usb-users@lists.sourceforge.net
3554L: linux-usb-devel@lists.sourceforge.net
3555S: Maintained
3556
3557USB AUERSWALD DRIVER
3558P: Wolfgang Muees
3559M: wolfgang@iksw-muees.de
3560L: linux-usb-users@lists.sourceforge.net
3561L: linux-usb-devel@lists.sourceforge.net
3562S: Maintained
3563
3564USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3565P: Gary Brubaker
3566M: xavyer@ix.netcom.com
3567L: linux-usb-users@lists.sourceforge.net
3568L: linux-usb-devel@lists.sourceforge.net
3569S: Maintained
3570
3571USB SERIAL KEYSPAN DRIVER
3572P: Greg Kroah-Hartman
3573M: greg@kroah.com
3574L: linux-usb-users@lists.sourceforge.net
3575L: linux-usb-devel@lists.sourceforge.net
3576W: http://www.kroah.com/linux/
3577S: Maintained
3578
3579USB SERIAL WHITEHEAT DRIVER
3580P: Stuart MacDonald
3581M: stuartm@connecttech.com
3582L: linux-usb-users@lists.sourceforge.net
3583L: linux-usb-devel@lists.sourceforge.net
3584W: http://www.connecttech.com
3585S: Supported
3586
3587USB SN9C10x DRIVER
3588P: Luca Risolia
3589M: luca.risolia@studio.unibo.it
3590L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003591L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592W: http://www.linux-projects.org
3593S: Maintained
3594
3595USB SUBSYSTEM
3596P: Greg Kroah-Hartman
3597M: gregkh@suse.de
3598L: linux-usb-users@lists.sourceforge.net
3599L: linux-usb-devel@lists.sourceforge.net
3600W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003601T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602S: Supported
3603
3604USB UHCI DRIVER
3605P: Alan Stern
3606M: stern@rowland.harvard.edu
3607L: linux-usb-users@lists.sourceforge.net
3608L: linux-usb-devel@lists.sourceforge.net
3609S: Maintained
3610
David Brownell69ae9e32006-11-14 02:03:31 -08003611USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612P: David Brownell
3613M: dbrownell@users.sourceforge.net
3614L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003615W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616S: Maintained
3617
3618USB W996[87]CF DRIVER
3619P: Luca Risolia
3620M: luca.risolia@studio.unibo.it
3621L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003622L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623W: http://www.linux-projects.org
3624S: Maintained
3625
Luca Risolia60f78052006-02-06 16:29:35 +00003626USB ZC0301 DRIVER
3627P: Luca Risolia
3628M: luca.risolia@studio.unibo.it
3629L: linux-usb-devel@lists.sourceforge.net
3630L: video4linux-list@redhat.com
3631W: http://www.linux-projects.org
3632S: Maintained
3633
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634USB ZD1201 DRIVER
3635P: Jeroen Vreeken
3636M: pe1rxq@amsat.org
3637L: linux-usb-users@lists.sourceforge.net
3638L: linux-usb-devel@lists.sourceforge.net
3639W: http://linux-lc100020.sourceforge.net
3640S: Maintained
3641
3642USER-MODE LINUX
3643P: Jeff Dike
3644M: jdike@karaya.com
3645L: user-mode-linux-devel@lists.sourceforge.net
3646L: user-mode-linux-user@lists.sourceforge.net
3647W: http://user-mode-linux.sourceforge.net
3648S: Maintained
3649
3650FAT/VFAT/MSDOS FILESYSTEM:
3651P: OGAWA Hirofumi
3652M: hirofumi@mail.parknet.co.jp
3653L: linux-kernel@vger.kernel.org
3654S: Maintained
3655
3656VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3657P: Jeff Garzik
3658S: Odd fixes
3659
3660VIA RHINE NETWORK DRIVER
3661P: Roger Luethi
3662M: rl@hellgate.ch
3663S: Maintained
3664
Jean Delvare32c0a522005-09-22 21:47:58 +02003665VIAPRO SMBUS DRIVER
3666P: Jean Delvare
3667M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003668L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003669S: Maintained
3670
Francois Romieu01f20732007-01-26 00:57:17 -08003671VIA VELOCITY NETWORK DRIVER
3672P: Francois Romieu
3673M: romieu@fr.zoreil.com
3674L: netdev@vger.kernel.org
3675S: Maintained
3676
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677UCLINUX (AND M68KNOMMU)
3678P: Greg Ungerer
3679M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003681L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682S: Maintained
3683
3684UCLINUX FOR NEC V850
3685P: Miles Bader
3686M: uclinux-v850@lsi.nec.co.jp
3687W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3688W: http://www.ee.nec.de/uclinux/
3689S: Supported
3690
3691UCLINUX FOR RENESAS H8/300
3692P: Yoshinori Sato
3693M: ysato@users.sourceforge.jp
3694W: http://uclinux-h8.sourceforge.jp/
3695S: Supported
3696
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003697UFS FILESYSTEM
3698P: Evgeniy Dushistov
3699M: dushistov@mail.ru
3700L: linux-kernel@vger.kernel.org
3701S: Maintained
3702
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703USB DIAMOND RIO500 DRIVER
3704P: Cesar Miquel
3705M: miquel@df.uba.ar
3706L: rio500-users@lists.sourceforge.net
3707W: http://rio500.sourceforge.net
3708S: Maintained
3709
3710VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003711P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003712M: mchehab@infradead.org
3713M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003715W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003716T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003717S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Juerg Haefligerab413192006-09-24 20:54:04 +02003719VT1211 HARDWARE MONITOR DRIVER
3720P: Juerg Haefliger
3721M: juergh@gmail.com
3722L: lm-sensors@lm-sensors.org
3723S: Maintained
3724
Roger Lucas1de9e372005-11-26 20:20:05 +01003725VT8231 HARDWARE MONITOR DRIVER
3726P: Roger Lucas
3727M: roger@planbit.co.uk
3728L: lm-sensors@lm-sensors.org
3729S: Maintained
3730
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731W1 DALLAS'S 1-WIRE BUS
3732P: Evgeniy Polyakov
3733M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734S: Maintained
3735
Charles Spirakis13927072006-07-05 18:05:15 +02003736W83791D HARDWARE MONITORING DRIVER
3737P: Charles Spirakis
3738M: bezaur@gmail.com
3739L: lm-sensors@lm-sensors.org
3740S: Maintained
3741
Rudolf Marek61db0112006-12-12 18:18:30 +01003742W83793 HARDWARE MONITORING DRIVER
3743P: Rudolf Marek
3744M: r.marek@assembler.cz
3745L: lm-sensors@lm-sensors.org
3746S: Maintained
3747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748W83L51xD SD/MMC CARD INTERFACE DRIVER
3749P: Pierre Ossman
3750M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003751L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752W: http://projects.drzeus.cx/wbsd
3753S: Maintained
3754
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003755WATCHDOG DEVICE DRIVERS
3756P: Wim Van Sebroeck
3757M: wim@iguana.be
3758T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3759S: Maintained
3760
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3762P: Jean Tourrilhes
3763M: jt@hpl.hp.com
3764W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3765S: Maintained
3766
3767WD7000 SCSI DRIVER
3768P: Miroslav Zagorac
3769M: zaga@fly.cc.fer.hr
3770L: linux-scsi@vger.kernel.org
3771S: Maintained
3772
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003773WISTRON LAPTOP BUTTON DRIVER
3774P: Miloslav Trmac
3775M: mitr@volny.cz
3776S: Maintained
3777
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778WL3501 WIRELESS PCMCIA CARD DRIVER
3779P: Arnaldo Carvalho de Melo
3780M: acme@conectiva.com.br
3781W: http://advogato.org/person/acme
3782S: Maintained
3783
3784X.25 NETWORK LAYER
3785P: Henner Eisen
3786M: eis@baty.hanse.de
3787L: linux-x25@vger.kernel.org
3788S: Maintained
3789
3790XFS FILESYSTEM
3791P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003792P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003794L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003796T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797S: Supported
3798
Peter Korsgaard238b8722006-12-06 20:35:17 -08003799XILINX UARTLITE SERIAL DRIVER
3800P: Peter Korsgaard
3801M: jacmet@sunsite.dk
3802L: linux-serial@vger.kernel.org
3803S: Maintained
3804
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805X86 3-LEVEL PAGING (PAE) SUPPORT
3806P: Ingo Molnar
3807M: mingo@redhat.com
3808S: Maintained
3809
3810X86-64 port
3811P: Andi Kleen
3812M: ak@suse.de
3813L: discuss@x86-64.org
3814W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01003815T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816S: Maintained
3817
3818YAM DRIVER FOR AX.25
3819P: Jean-Paul Roubelat
3820M: jpr@f6fbb.org
3821L: linux-hams@vger.kernel.org
3822S: Maintained
3823
Henkaf64a5e2005-10-12 15:02:56 +02003824YEALINK PHONE DRIVER
3825P: Henk Vergonet
3826M: Henk.Vergonet@gmail.com
3827L: usbb2k-api-dev@nongnu.org
3828S: Maintained
3829
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830Z8530 DRIVER FOR AX.25
3831P: Joerg Reuter
3832M: jreuter@yaina.de
3833W: http://yaina.de/jreuter/
3834W: http://www.qsl.net/dl1bke/
3835L: linux-hams@vger.kernel.org
3836S: Maintained
3837
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003838ZD1211RW WIRELESS DRIVER
3839P: Daniel Drake
3840M: dsd@gentoo.org
3841P: Ulrich Kunitz
3842M: kune@deine-taler.de
3843W: http://zd1211.ath.cx/wiki/DriverRewrite
3844L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3845S: Maintained
3846
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847ZF MACHZ WATCHDOG
3848P: Fernando Fuganti
3849M: fuganti@netbank.com.br
3850W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3851S: Maintained
3852
3853ZR36067 VIDEO FOR LINUX DRIVER
3854P: Ronald Bultje
3855M: rbultje@ronald.bitfreak.net
3856L: mjpeg-users@lists.sourceforge.net
3857W: http://mjpeg.sourceforge.net/driver-zoran/
3858S: Maintained
3859
3860ZR36120 VIDEO FOR LINUX DRIVER
3861P: Pauline Middelink
3862M: middelin@polyware.nl
3863W: http://www.polyware.nl/~middelin/En/hobbies.html
3864W: http://www.polyware.nl/~middelin/hobbies.html
3865S: Maintained
3866
3867THE REST
3868P: Linus Torvalds
3869S: Buried alive in reporters