blob: 7c5d32916d1cf042b2c30cff76a48bfc331ae0af [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
278ADT746X FAN DRIVER
279P: Colin Leroy
280M: colin@colino.net
281S: Maintained
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283AEDSP16 DRIVER
284P: Riccardo Facchetti
285M: fizban@tin.it
286S: Maintained
287
288AFFS FILE SYSTEM
289P: Roman Zippel
290M: zippel@linux-m68k.org
291S: Maintained
292
293AGPGART DRIVER
294P: Dave Jones
295M: davej@codemonkey.org.uk
296W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800297T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298S: Maintained
299
300AHA152X SCSI DRIVER
301P: Juergen E. Fischer
302M: Juergen Fischer <fischer@norbit.de>
303L: linux-scsi@vger.kernel.org
304S: Maintained
305
306ALCATEL SPEEDTOUCH USB DRIVER
307P: Duncan Sands
308M: duncan.sands@free.fr
309L: linux-usb-users@lists.sourceforge.net
310L: linux-usb-devel@lists.sourceforge.net
311W: http://www.linux-usb.org/SpeedTouch/
312S: Maintained
313
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000314ALI1563 I2C DRIVER
315P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100316M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200317L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000318S: Maintained
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320ALPHA PORT
321P: Richard Henderson
322M: rth@twiddle.net
323S: Odd Fixes for 2.4; Maintained for 2.6.
324P: Ivan Kokshaysky
325M: ink@jurassic.park.msu.ru
326S: Maintained for 2.4; PCI support for 2.6.
327
Jordan Crousef90b8112006-01-06 00:12:14 -0800328AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100329P: Jordan Crouse
330M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800331L: info-linux@geode.amd.com
332W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
333S: Supported
334
Stelian Pop284f42b2006-12-12 18:18:31 +0100335AMS (Apple Motion Sensor) DRIVER
336P: Stelian Pop
337M: stelian@popies.net
338P: Michael Hanselmann
339M: linux-kernel@hansmi.ch
340S: Supported
341
Tom Tuckerf94b5332006-09-22 15:22:48 -0700342AMSO1100 RNIC DRIVER
343P: Tom Tucker
344M: tom@opengridcomputing.com
345P: Steve Wise
346M: swise@opengridcomputing.com
347L: openib-general@openib.org
348S: Maintained
349
Johannes Berg42269062006-07-25 16:15:50 +0200350AOA (Apple Onboard Audio) ALSA DRIVER
351P: Johannes Berg
352M: johannes@sipsolutions.net
353L: linuxppc-dev@ozlabs.org
354L: alsa-devel@alsa-project.org
355S: Maintained
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357APM DRIVER
358P: Stephen Rothwell
359M: sfr@canb.auug.org.au
360L: linux-laptop@vger.kernel.org
361W: http://www.canb.auug.org.au/~sfr/
362S: Supported
363
364APPLETALK NETWORK LAYER
365P: Arnaldo Carvalho de Melo
366M: acme@conectiva.com.br
367S: Maintained
368
Jaya Kumar1154ea72005-06-21 17:17:04 -0700369ARC FRAMEBUFFER DRIVER
370P: Jaya Kumar
371M: jayalk@intworks.biz
372S: Maintained
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374ARM26 ARCHITECTURE
375P: Ian Molton
376M: spyro@f2s.com
377S: Maintained
378
379ARM26/ARCHIMEDES
380P: Ian Molton
381M: spyro@f2s.com
382S: Maintained
383
384ARM26/A5000
385P: John Appleby
386M: john@dnsworld.co.uk
387S: Maintained
388
389ARM MFM AND FLOPPY DRIVERS
390P: Ian Molton
391M: spyro@f2s.com
392S: Maintained
393
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800394ARM/ADI ROADRUNNER MACHINE SUPPORT
395P: Lennert Buytenhek
396M: kernel@wantstofly.org
397L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
398S: Maintained
399
400ARM/ADS SPHERE MACHINE SUPPORT
401P: Lennert Buytenhek
402M: kernel@wantstofly.org
403L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
404S: Maintained
405
406ARM/AJECO 1ARM MACHINE SUPPORT
407P: Lennert Buytenhek
408M: kernel@wantstofly.org
409L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
410S: Maintained
411
Andrew Victord4a89c72006-12-04 13:56:21 +0100412ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
413P: Andrew Victor
414M: andrew@sanpeople.com
415L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
416W: http://maxim.org.za/at91_26.html
417S: Maintained
418
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800419ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
420P: Lennert Buytenhek
421M: kernel@wantstofly.org
422L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
423S: Maintained
424
425ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
426P: Lennert Buytenhek
427M: kernel@wantstofly.org
428L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
429S: Maintained
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431ARM/CORGI MACHINE SUPPORT
432P: Richard Purdie
433M: rpurdie@rpsys.net
434S: Maintained
435
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800436ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
437P: Lennert Buytenhek
438M: kernel@wantstofly.org
439L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
440S: Maintained
441
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100442ARM/HP JORNADA 7XX MACHINE SUPPORT
443P: Kristoffer Ericson
444M: kristoffer_e1@hotmail.com
445W: www.jlime.com
446S: Maintained
447
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800448ARM/INTEL IOP32X ARM ARCHITECTURE
449P: Lennert Buytenhek
450M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100451P: Dan Williams
452M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800453L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100454S: Supported
455
456ARM/INTEL IOP33X ARM ARCHITECTURE
457P: Dan Williams
458M: dan.j.williams@intel.com
459L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
460S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800461
462ARM/INTEL IOP13XX ARM ARCHITECTURE
463P: Lennert Buytenhek
464M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100465P: Dan Williams
466M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800467L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100468S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800469
470ARM/INTEL IQ81342EX MACHINE SUPPORT
471P: Lennert Buytenhek
472M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100473P: Dan Williams
474M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800475L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100476S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800477
478ARM/INTEL IXP2000 ARM ARCHITECTURE
479P: Lennert Buytenhek
480M: kernel@wantstofly.org
481L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
482S: Maintained
483
484ARM/INTEL IXDP2850 MACHINE SUPPORT
485P: Lennert Buytenhek
486M: kernel@wantstofly.org
487L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
488S: Maintained
489
490ARM/INTEL IXP23XX ARM ARCHITECTURE
491P: Lennert Buytenhek
492M: kernel@wantstofly.org
493L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
494S: Maintained
495
496ARM/INTEL XSC3 (MANZANO) ARM CORE
497P: Lennert Buytenhek
498M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100499P: Dan Williams
500M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800501L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100502S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800503
504ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
505P: Lennert Buytenhek
506M: kernel@wantstofly.org
507L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
508S: Maintained
509
510ARM/LOGICPD PXA270 MACHINE SUPPORT
511P: Lennert Buytenhek
512M: kernel@wantstofly.org
513L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
514S: Maintained
515
Dirk Opfer8459c152005-11-06 14:27:52 +0000516ARM/TOSA MACHINE SUPPORT
517P: Dirk Opfer
518M: dirk@opfer-online.de
519S: Maintained
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521ARM/PLEB SUPPORT
522P: Peter Chubb
523M: pleb@gelato.unsw.edu.au
524W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
525S: Maintained
526
527ARM/PT DIGITAL BOARD PORT
528P: Stefan Eletzhofer
529M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700530L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531W: http://www.arm.linux.org.uk/
532S: Maintained
533
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800534ARM/RADISYS ENP2611 MACHINE SUPPORT
535P: Lennert Buytenhek
536M: kernel@wantstofly.org
537L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
538S: Maintained
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540ARM/SHARK MACHINE SUPPORT
541P: Alexander Schulz
542M: alex@shark-linux.de
543W: http://www.shark-linux.de/shark.html
544S: Maintained
545
546ARM/STRONGARM110 PORT
547P: Russell King
548M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700549L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550W: http://www.arm.linux.org.uk/
551S: Maintained
552
553ARM/S3C2410 ARM ARCHITECTURE
554P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800555M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700556L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557W: http://www.fluff.org/ben/linux/
558S: Maintained
559
560ARM/S3C2440 ARM ARCHITECTURE
561P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800562M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700563L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564W: http://www.fluff.org/ben/linux/
565S: Maintained
566
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800567ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
568P: Lennert Buytenhek
569M: kernel@wantstofly.org
570L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
571S: Maintained
572
573ARM/THECUS N2100 MACHINE SUPPORT
574P: Lennert Buytenhek
575M: kernel@wantstofly.org
576L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
577S: Maintained
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579ARPD SUPPORT
580P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700581L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582S: Maintained
583
584ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500585P: Corentin Chary
586M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587P: Karol Kozimor
588M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589L: acpi4asus-user@lists.sourceforge.net
590W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500591W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592S: Maintained
593
Corentin Chary85091b72007-01-26 14:04:30 +0100594ASUS LAPTOP EXTRAS DRIVER
595P: Corentin Chary
596M: corentincj@iksaif.net
597L: acpi4asus-user@lists.sourceforge.net
598W: http://sourceforge.net/projects/acpi4asus
599W: http://xf.iksaif.net/acpi4asus
600S: Maintained
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602ATA OVER ETHERNET DRIVER
603P: Ed L. Cashin
604M: ecashin@coraid.com
605W: http://www.coraid.com/support/linux
606S: Supported
607
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600608ATL1 ETHERNET DRIVER
609P: Jay Cliburn
610M: jcliburn@gmail.com
611P: Chris Snook
612M: csnook@redhat.com
613L: atl1-devel@lists.sourceforge.net
614W: http://sourceforge.net/projects/atl1
615W: http://atl1.sourceforge.net
616S: Maintained
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618ATM
619P: Chas Williams
620M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700621L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622W: http://linux-atm.sourceforge.net
623S: Maintained
624
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100625ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100626P: Haavard Skinnemoen
627M: hskinnemoen@atmel.com
628S: Supported
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630ATMEL WIRELESS DRIVER
631P: Simon Kelley
632M: simon@thekelleys.org.uk
633W: http://www.thekelleys.org.uk/atmel
634W: http://atmelwlandriver.sourceforge.net/
635S: Maintained
636
Chris Wrighta92b7b82005-07-07 18:12:23 -0700637AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100638P: David Woodhouse
639M: dwmw2@infradead.org
640L: linux-audit@redhat.com
641W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800642T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700643S: Maintained
644
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700645AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700646P: Haavard Skinnemoen
647M: hskinnemoen@atmel.com
648W: http://www.atmel.com/products/AVR32/
649W: http://avr32linux.org/
650W: http://avrfreaks.net/
651S: Supported
652
653AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700654P: Haavard Skinnemoen
655M: hskinnemoen@atmel.com
656S: Supported
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658AX.25 NETWORK LAYER
659P: Ralf Baechle
660M: ralf@linux-mips.org
661L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200662W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663S: Maintained
664
665BAYCOM/HDLCDRV DRIVERS FOR AX.25
666P: Thomas Sailer
667M: t.sailer@alumni.ethz.ch
668L: linux-hams@vger.kernel.org
669W: http://www.baycom.org/~tom/ham/ham.html
670S: Maintained
671
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200672BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
673P: Larry Finger
674M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200675P: Stefano Brivio
676M: st3@riseup.net
677W: http://bcm43xx.berlios.de/
678S: Maintained
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680BEFS FILE SYSTEM
681P: Sergey S. Kostyliov
682M: rathamahata@php4.ru
683L: linux-kernel@vger.kernel.org
684S: Maintained
685
686BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
687P: Kenji Hollis
688W: http://ftp.bitgate.com/pcwd/
689S: Maintained
690
691BFS FILE SYSTEM
692P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800693M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694L: linux-kernel@vger.kernel.org
695S: Maintained
696
697BLOCK LAYER
698P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200699M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800701T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702S: Maintained
703
704BLUETOOTH SUBSYSTEM
705P: Marcel Holtmann
706M: marcel@holtmann.org
707P: Maxim Krasnyansky
708M: maxk@qualcomm.com
709L: bluez-devel@lists.sf.net
710W: http://bluez.sf.net
711W: http://www.bluez.org
712W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800713T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714S: Maintained
715
716BLUETOOTH RFCOMM LAYER
717P: Marcel Holtmann
718M: marcel@holtmann.org
719P: Maxim Krasnyansky
720M: maxk@qualcomm.com
721S: Maintained
722
723BLUETOOTH BNEP LAYER
724P: Marcel Holtmann
725M: marcel@holtmann.org
726P: Maxim Krasnyansky
727M: maxk@qualcomm.com
728S: Maintained
729
730BLUETOOTH CMTP LAYER
731P: Marcel Holtmann
732M: marcel@holtmann.org
733S: Maintained
734
735BLUETOOTH HIDP LAYER
736P: Marcel Holtmann
737M: marcel@holtmann.org
738S: Maintained
739
740BLUETOOTH HCI UART DRIVER
741P: Marcel Holtmann
742M: marcel@holtmann.org
743P: Maxim Krasnyansky
744M: maxk@qualcomm.com
745S: Maintained
746
747BLUETOOTH HCI USB DRIVER
748P: Marcel Holtmann
749M: marcel@holtmann.org
750P: Maxim Krasnyansky
751M: maxk@qualcomm.com
752S: Maintained
753
754BLUETOOTH HCI BCM203X DRIVER
755P: Marcel Holtmann
756M: marcel@holtmann.org
757S: Maintained
758
759BLUETOOTH HCI BPA10X DRIVER
760P: Marcel Holtmann
761M: marcel@holtmann.org
762S: Maintained
763
764BLUETOOTH HCI BFUSB DRIVER
765P: Marcel Holtmann
766M: marcel@holtmann.org
767S: Maintained
768
769BLUETOOTH HCI DTL1 DRIVER
770P: Marcel Holtmann
771M: marcel@holtmann.org
772S: Maintained
773
774BLUETOOTH HCI BLUECARD DRIVER
775P: Marcel Holtmann
776M: marcel@holtmann.org
777S: Maintained
778
779BLUETOOTH HCI BT3C DRIVER
780P: Marcel Holtmann
781M: marcel@holtmann.org
782S: Maintained
783
784BLUETOOTH HCI BTUART DRIVER
785P: Marcel Holtmann
786M: marcel@holtmann.org
787S: Maintained
788
789BLUETOOTH HCI VHCI DRIVER
790P: Maxim Krasnyansky
791M: maxk@qualcomm.com
792S: Maintained
793
794BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100795P: Chad Tindel
796M: ctindel@users.sourceforge.net
797P: Jay Vosburgh
798M: fubar@us.ibm.com
799L: bonding-devel@lists.sourceforge.net
800W: http://sourceforge.net/projects/bonding/
801S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000803BROADBAND PROCESSOR ARCHITECTURE
804P: Arnd Bergmann
805M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100806L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400807W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000808S: Supported
809
Gary Zambrano39105892006-06-22 17:26:20 -0700810BROADCOM B44 10/100 ETHERNET DRIVER
811P: Gary Zambrano
812M: zambrano@broadcom.com
813L: netdev@vger.kernel.org
814S: Supported
815
Michael Chan948c51e2006-06-04 02:51:39 -0700816BROADCOM BNX2 GIGABIT ETHERNET DRIVER
817P: Michael Chan
818M: mchan@broadcom.com
819L: netdev@vger.kernel.org
820S: Supported
821
822BROADCOM TG3 GIGABIT ETHERNET DRIVER
823P: Michael Chan
824M: mchan@broadcom.com
825L: netdev@vger.kernel.org
826S: Supported
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700829P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200830M: mchehab@infradead.org
831M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700833W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200834T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700835S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200837CALGARY x86-64 IOMMU
838P: Muli Ben-Yehuda
839M: muli@il.ibm.com
840P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200841M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200842L: linux-kernel@vger.kernel.org
843L: discuss@x86-64.org
844S: Maintained
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846COMMON INTERNET FILE SYSTEM (CIFS)
847P: Steve French
848M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100849L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850L: samba-technical@lists.samba.org
851W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800852T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853S: Supported
854
Joel Becker7063fbf2005-12-15 14:29:43 -0800855CONFIGFS
856P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800857M: joel.becker@oracle.com
858L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800859S: Supported
860
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800861CIRRUS LOGIC EP93XX ETHERNET DRIVER
862P: Lennert Buytenhek
863M: kernel@wantstofly.org
864L: netdev@vger.kernel.org
865S: Maintained
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867CIRRUS LOGIC GENERIC FBDEV DRIVER
868P: Jeff Garzik
869M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800870L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871S: Odd Fixes
872
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800873CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
874P: Lennert Buytenhek
875M: kernel@wantstofly.org
876L: linux-usb-devel@lists.sourceforge.net
877S: Maintained
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
880P: Cirrus Logic Corporation (kernel 2.2 driver)
881M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
882P: Nils Faerber (port to kernel 2.4)
883M: Nils Faerber <nils@kernelconcepts.de>
884S: Maintained
885
886CODA FILE SYSTEM
887P: Jan Harkes
888M: jaharkes@cs.cmu.edu
889M: coda@cs.cmu.edu
890L: codalist@coda.cs.cmu.edu
891W: http://www.coda.cs.cmu.edu/
892S: Maintained
893
894COMPACTPCI HOTPLUG CORE
895P: Scott Murray
896M: scottm@somanetworks.com
897M: scott@spiteful.org
898L: pcihpd-discuss@lists.sourceforge.net
899S: Supported
900
901COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
902P: Scott Murray
903M: scottm@somanetworks.com
904M: scott@spiteful.org
905L: pcihpd-discuss@lists.sourceforge.net
906S: Supported
907
908COMPACTPCI HOTPLUG GENERIC DRIVER
909P: Scott Murray
910M: scottm@somanetworks.com
911M: scott@spiteful.org
912L: pcihpd-discuss@lists.sourceforge.net
913S: Supported
914
915COMPUTONE INTELLIPORT MULTIPORT CARD
916P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700917M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700919S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921COSA/SRP SYNC SERIAL DRIVER
922P: Jan "Yenya" Kasprzak
923M: kas@fi.muni.cz
924W: http://www.fi.muni.cz/~kas/cosa/
925S: Maintained
926
927CPU FREQUENCY DRIVERS
928P: Dave Jones
929M: davej@codemonkey.org.uk
930L: cpufreq@lists.linux.org.uk
931W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500932T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933S: Maintained
934
935CPUID/MSR DRIVER
936P: H. Peter Anvin
937M: hpa@zytor.com
938S: Maintained
939
Paul Jacksoned90fb42005-09-27 21:45:37 -0700940CPUSETS
941P: Paul Jackson
942P: Simon Derr
943M: pj@sgi.com
944M: simon.derr@bull.net
945L: linux-kernel@vger.kernel.org
946W: http://www.bullopensource.org/cpuset/
947S: Supported
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100950W: http://sourceforge.net/projects/cramfs/
951S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953CRIS PORT
954P: Mikael Starvik
955M: starvik@axis.com
956L: dev-etrax@axis.com
957W: http://developer.axis.com
958S: Maintained
959
960CRYPTO API
961P: Herbert Xu
962M: herbert@gondor.apana.org.au
963P: David S. Miller
964M: davem@davemloft.net
965L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800966T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967S: Maintained
968
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100969CS5535 Audio ALSA driver
970P: Jaya Kumar
971M: jayakumar.alsa@gmail.com
972S: Maintained
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974CYBERPRO FB DRIVER
975P: Russell King
976M: rmk@arm.linux.org.uk
977W: http://www.arm.linux.org.uk/
978S: Maintained
979
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700980CYBLAFB FRAMEBUFFER DRIVER
981P: Knut Petersen
982M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800983L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700984S: Maintained
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986CYCLADES 2X SYNC CARD DRIVER
987P: Arnaldo Carvalho de Melo
988M: acme@conectiva.com.br
989W: http://advogato.org/person/acme
990L: cycsyn-devel@bazar.conectiva.com.br
991S: Maintained
992
993CYCLADES ASYNC MUX DRIVER
994M: async@cyclades.com
995W: http://www.cyclades.com/
996S: Supported
997
998CYCLADES PC300 DRIVER
999M: pc300@cyclades.com
1000W: http://www.cyclades.com/
1001S: Supported
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003DAMA SLAVE for AX.25
1004P: Joerg Reuter
1005M: jreuter@yaina.de
1006W: http://yaina.de/jreuter/
1007W: http://www.qsl.net/dl1bke/
1008L: linux-hams@vger.kernel.org
1009S: Maintained
1010
1011DC395x SCSI driver
1012P: Oliver Neukum
1013M: oliver@neukum.name
1014P: Ali Akcaagac
1015M: aliakc@web.de
1016P: Jamie Lenehan
1017M: lenehan@twibble.org
1018W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001019L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020L: http://lists.twibble.org/mailman/listinfo/dc395x/
1021S: Maintained
1022
1023DC390/AM53C974 SCSI driver
1024P: Kurt Garloff
1025M: garloff@suse.de
1026W: http://www.garloff.de/kurt/linux/dc390/
1027P: Guennadi Liakhovetski
1028M: g.liakhovetski@gmx.de
1029S: Maintained
1030
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001031DCCP PROTOCOL
1032P: Arnaldo Carvalho de Melo
1033M: acme@mandriva.com
1034L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001035W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001036S: Maintained
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038DECnet NETWORK LAYER
1039P: Patrick Caulfield
1040M: patrick@tykepenguin.com
1041W: http://linux-decnet.sourceforge.net
1042L: linux-decnet-user@lists.sourceforge.net
1043S: Maintained
1044
1045DEFXX FDDI NETWORK DRIVER
1046P: Maciej W. Rozycki
1047M: macro@linux-mips.org
1048S: Maintained
1049
1050DELL LAPTOP SMM DRIVER
1051P: Massimo Dal Zotto
1052M: dz@debian.org
1053W: http://www.debian.org/~dz/i8k/
1054S: Maintained
1055
Doug Warzecha90563ec2005-09-06 15:17:15 -07001056DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1057P: Doug Warzecha
1058M: Douglas_Warzecha@dell.com
1059S: Maintained
1060
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001061DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062P: Alasdair Kergon
1063L: dm-devel@redhat.com
1064W: http://sources.redhat.com/dm
1065S: Maintained
1066
1067DEVICE NUMBER REGISTRY
1068P: Torben Mathiasen
1069M: device@lanana.org
1070W: http://lanana.org/docs/device-list/index.html
1071L: linux-kernel@vger.kernel.org
1072S: Maintained
1073
1074DEVICE FILESYSTEM
1075S: Obsolete
1076
1077DIGI INTL. EPCA DRIVER
1078P: Digi International, Inc
1079M: Eng.Linux@digi.com
1080L: Eng.Linux@digi.com
1081W: http://www.digi.com
1082S: Orphaned
1083
1084DIGI RIGHTSWITCH NETWORK DRIVER
1085P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087W: http://www.digi.com
1088S: Orphaned
1089
1090DIRECTORY NOTIFICATION
1091P: Stephen Rothwell
1092M: sfr@canb.auug.org.au
1093L: linux-kernel@vger.kernel.org
1094S: Supported
1095
1096DISK GEOMETRY AND PARTITION HANDLING
1097P: Andries Brouwer
1098M: aeb@cwi.nl
1099W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1100W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1101W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1102S: Maintained
1103
1104DISKQUOTA:
1105P: Jan Kara
1106M: jack@suse.cz
1107L: linux-kernel@vger.kernel.org
1108S: Maintained
1109
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001110DISTRIBUTED LOCK MANAGER
1111P: Patrick Caulfield
1112M: pcaulfie@redhat.com
1113P: David Teigland
1114M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001115L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001116W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001117T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1118T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001119S: Supported
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1122P: Tobias Ringstrom
1123M: tori@unhappy.mine.nu
1124L: linux-kernel@vger.kernel.org
1125S: Maintained
1126
Martin Waitzba483d52005-06-17 13:20:59 -07001127DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001128P: Randy Dunlap
1129M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001130S: Maintained
1131
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001132DOCKING STATION DRIVER
1133P: Kristen Carlson Accardi
1134M: kristen.c.accardi@intel.com
1135L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001136S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138DOUBLETALK DRIVER
1139P: James R. Van Zandt
1140M: jrv@vanzandt.mv.com
1141L: blinux-list@redhat.com
1142S: Maintained
1143
1144DRIVER CORE, KOBJECTS, AND SYSFS
1145P: Greg Kroah-Hartman
1146M: gregkh@suse.de
1147L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001148T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149S: Supported
1150
1151DRM DRIVERS
1152P: David Airlie
1153M: airlied@linux.ie
1154L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001155T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156S: Maintained
1157
1158DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001159P: Francois Romieu
1160M: romieu@fr.zoreil.com
1161L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162S: Maintained
1163
1164DVB SUBSYSTEM AND DRIVERS
1165P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001166M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001168W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001169T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001170S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172EATA-DMA SCSI DRIVER
1173P: Michael Neuffer
1174L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1175S: Maintained
1176
1177EATA ISA/EISA/PCI SCSI DRIVER
1178P: Dario Ballabio
1179M: ballabio_dario@emc.com
1180L: linux-scsi@vger.kernel.org
1181S: Maintained
1182
1183EATA-PIO SCSI DRIVER
1184P: Michael Neuffer
1185M: mike@i-Connect.Net
1186L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1187S: Maintained
1188
1189EBTABLES
1190P: Bart De Schuymer
1191M: bart.de.schuymer@pandora.be
1192L: ebtables-user@lists.sourceforge.net
1193L: ebtables-devel@lists.sourceforge.net
1194W: http://ebtables.sourceforge.net/
1195S: Maintained
1196
Michael Halcrow237fead2006-10-04 02:16:22 -07001197ECRYPT FILE SYSTEM
1198P: Mike Halcrow, Phillip Hellewell
1199M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1200L: ecryptfs-devel@lists.sourceforge.net
1201W: http://ecryptfs.sourceforge.net/
1202S: Supported
1203
Alan Coxda9bb1d2006-01-18 17:44:13 -08001204EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001205P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001206M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001207L: bluesmoke-devel@lists.sourceforge.net
1208W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001209S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001210
1211EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001212P: Mark Gross
1213M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001214L: bluesmoke-devel@lists.sourceforge.net
1215W: bluesmoke.sourceforge.net
1216S: Maintained
1217
1218EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001219P: Doug Thompson
1220M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001221L: bluesmoke-devel@lists.sourceforge.net
1222W: bluesmoke.sourceforge.net
1223S: Maintained
1224
1225EDAC-R82600
1226P: Tim Small
1227M: tim@buttersideup.com
1228L: bluesmoke-devel@lists.sourceforge.net
1229W: bluesmoke.sourceforge.net
1230S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232EEPRO100 NETWORK DRIVER
1233P: Andrey V. Savochkin
1234M: saw@saw.sw.com.sg
1235S: Maintained
1236
Josh Triplett0bee8d22006-07-30 03:03:58 -07001237EFS FILESYSTEM
1238W: http://aeschi.ch.eu.org/efs/
1239S: Orphan
1240
Heiko J Schickfab97222006-09-22 15:22:22 -07001241EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1242P: Hoang-Nam Nguyen
1243M: hnguyen@de.ibm.com
1244P: Christoph Raisch
1245M: raisch@de.ibm.com
1246L: openib-general@openib.org
1247S: Supported
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249EMU10K1 SOUND DRIVER
1250P: James Courtier-Dutton
1251M: James@superbug.demon.co.uk
1252L: emu10k1-devel@lists.sourceforge.net
1253W: http://sourceforge.net/projects/emu10k1/
1254S: Maintained
1255
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001256EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001257P: James Smart
1258M: james.smart@emulex.com
1259L: linux-scsi@vger.kernel.org
1260W: http://sourceforge.net/projects/lpfcxxxx
1261S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263EPSON 1355 FRAMEBUFFER DRIVER
1264P: Christopher Hoover
1265M: ch@murgatroid.com, ch@hpl.hp.com
1266S: Maintained
1267
1268ETHEREXPRESS-16 NETWORK DRIVER
1269P: Philip Blundell
1270M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001271L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272S: Maintained
1273
1274ETHERNET BRIDGE
1275P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08001276M: shemminger@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277L: bridge@osdl.org
1278W: http://bridge.sourceforge.net/
1279S: Maintained
1280
1281ETHERTEAM 16I DRIVER
1282P: Mika Kuoppala
1283M: miku@iki.fi
1284S: Maintained
1285
1286EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001287L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288S: Maintained
1289
1290EXT3 FILE SYSTEM
1291P: Stephen Tweedie, Andrew Morton
1292M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001293L: linux-ext4@vger.kernel.org
1294S: Maintained
1295
1296EXT4 FILE SYSTEM
1297P: Stephen Tweedie, Andrew Morton
1298M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1299L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300S: Maintained
1301
Jean Delvaree53004e2006-01-09 23:26:14 +01001302F71805F HARDWARE MONITORING DRIVER
1303P: Jean Delvare
1304M: khali@linux-fr.org
1305L: lm-sensors@lm-sensors.org
1306S: Maintained
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308FARSYNC SYNCHRONOUS DRIVER
1309P: Kevin Curtis
1310M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311W: http://www.farsite.co.uk/
1312S: Supported
1313
1314FRAMEBUFFER LAYER
1315P: Antonino Daplas
1316M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001317L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318W: http://linux-fbdev.sourceforge.net/
1319S: Maintained
1320
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001321FREESCALE SOC FS_ENET DRIVER
1322P: Pantelis Antoniou
1323M: pantelis.antoniou@gmail.com
1324P: Vitaly Bordug
1325M: vbordug@ru.mvista.com
1326L: linuxppc-embedded@ozlabs.org
1327L: netdev@vger.kernel.org
1328S: Maintained
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330FILE LOCKING (flock() and fcntl()/lockf())
1331P: Matthew Wilcox
1332M: matthew@wil.cx
1333L: linux-fsdevel@vger.kernel.org
1334S: Maintained
1335
1336FILESYSTEMS (VFS and infrastructure)
1337P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001338M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339S: Maintained
1340
1341FIRMWARE LOADER (request_firmware)
1342L: linux-kernel@vger.kernel.org
1343S: Orphan
1344
1345FPU EMULATOR
1346P: Bill Metzenthen
1347M: billm@suburbia.net
1348W: http://suburbia.net/~billm/floating-point/emulator/
1349S: Maintained
1350
1351FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1352P: Mike McLagan
1353M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001354L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355S: Maintained
1356
1357FREEVXFS FILESYSTEM
1358P: Christoph Hellwig
1359M: hch@infradead.org
1360W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1361S: Maintained
1362
1363FUJITSU FR-V PORT
1364P: David Howells
1365M: dhowells@redhat.com
1366S: Maintained
1367
Miklos Szeredi04578f12005-09-09 13:10:22 -07001368FUSE: FILESYSTEM IN USERSPACE
1369P: Miklos Szeredi
1370M: miklos@szeredi.hu
1371L: fuse-devel@lists.sourceforge.net
1372W: http://fuse.sourceforge.net/
1373S: Maintained
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1376P: Rik Faith
1377M: faith@cs.unc.edu
1378L: linux-scsi@vger.kernel.org
1379S: Odd fixes (e.g., new signatures)
1380
1381GDT SCSI DISK ARRAY CONTROLLER DRIVER
1382P: Achim Leubner
1383M: achim_leubner@adaptec.com
1384L: linux-scsi@vger.kernel.org
1385W: http://www.icp-vortex.com/
1386S: Supported
1387
1388GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1389P: Krzysztof Halasa
1390M: khc@pm.waw.pl
1391W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1392S: Maintained
1393
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001394GFS2 FILE SYSTEM
1395P: Steven Whitehouse
1396M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001397L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001398W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001399T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1400T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001401S: Supported
1402
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001403GIGASET ISDN DRIVERS
1404P: Hansjoerg Lipp
1405M: hjlipp@web.de
1406P: Tilman Schmidt
1407M: tilman@imap.cc
1408L: gigaset307x-common@lists.sourceforge.net
1409W: http://gigaset307x.sourceforge.net/
1410S: Maintained
1411
Jean Delvare5b543962005-08-15 19:51:02 +02001412HARDWARE MONITORING
1413P: Jean Delvare
1414M: khali@linux-fr.org
1415L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001416W: http://www.lm-sensors.org/
1417T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001418S: Maintained
1419
Michael Buesch844dd052006-06-26 00:24:59 -07001420HARDWARE RANDOM NUMBER GENERATOR CORE
1421P: Michael Buesch
1422M: mb@bu3sch.de
1423S: Maintained
1424
Robert Love860e1d62005-08-31 23:57:59 -04001425HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1426P: Robert Love
1427M: rlove@rlove.org
1428M: linux-kernel@vger.kernel.org
1429W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1430S: Maintained
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432HARMONY SOUND DRIVER
1433P: Kyle McMartin
1434M: kyle@parisc-linux.org
1435W: http://www.parisc-linux.org/~kyle/harmony/
1436L: parisc-linux@lists.parisc-linux.org
1437S: Maintained
1438
1439HAYES ESP SERIAL DRIVER
1440P: Andrew J. Robinson
1441M: arobinso@nyx.net
1442L: linux-kernel@vger.kernel.org
1443W: http://www.nyx.net/~arobinso
1444S: Maintained
1445
1446HFS FILESYSTEM
1447P: Roman Zippel
1448M: zippel@linux-m68k.org
1449L: linux-kernel@vger.kernel.org
1450S: Maintained
1451
1452HGA FRAMEBUFFER DRIVER
1453P: Ferenc Bakonyi
1454M: fero@drama.obuda.kando.hu
1455L: linux-nvidia@lists.surfsouth.com
1456W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1457S: Maintained
1458
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001459HID CORE LAYER
1460P: Jiri Kosina
1461M: jkosina@suse.cz
1462L: linux-input@atrey.karlin.mff.cuni.cz
1463S: Maintained
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465HIGH-SPEED SCC DRIVER FOR AX.25
1466P: Klaus Kudielka
1467M: klaus.kudielka@ieee.org
1468L: linux-hams@vger.kernel.org
1469W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1470S: Maintained
1471
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001472HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1473P: HighPoint Linux Team
1474M: linux@highpoint-tech.com
1475W: http://www.highpoint-tech.com
1476S: Supported
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478HIPPI
1479P: Jes Sorensen
1480M: jes@trained-monkey.org
1481L: linux-hippi@sunsite.dk
1482S: Maintained
1483
1484HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1485P: Chirag Kantharia
1486M: chirag.kantharia@hp.com
1487L: iss_storagedev@hp.com
1488S: Maintained
1489
1490HEWLETT-PACKARD SMART2 RAID DRIVER
1491P: Chirag Kantharia
1492M: chirag.kantharia@hp.com
1493L: iss_storagedev@hp.com
1494S: Maintained
1495
1496HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1497P: Mike Miller
1498M: mike.miller@hp.com
1499L: iss_storagedev@hp.com
1500S: Supported
1501
Jouni Malinenff1d2762005-05-12 22:54:16 -04001502HOST AP DRIVER
1503P: Jouni Malinen
1504M: jkmaline@cc.hut.fi
1505L: hostap@shmoo.com
1506W: http://hostap.epitest.fi/
1507S: Maintained
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1510P: Jaroslav Kysela
1511M: perex@suse.cz
1512S: Maintained
1513
Bob Piccob9b03322005-11-07 00:59:19 -08001514HPET: High Precision Event Timers driver (hpet.c)
1515P: Clemens Ladisch
1516M: clemens@ladisch.de
1517S: Maintained
1518
1519HPET: i386
1520P: Venkatesh Pallipadi (Venki)
1521M: venkatesh.pallipadi@intel.com
1522S: Maintained
1523
1524HPET: x86_64
1525P: Andi Kleen and Vojtech Pavlik
1526M: ak@muc.de and vojtech@suse.cz
1527S: Maintained
1528
1529HPET: ACPI hpet.c
1530P: Bob Picco
1531M: bob.picco@hp.com
1532S: Maintained
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534HPFS FILESYSTEM
1535P: Mikulas Patocka
1536M: mikulas@artax.karlin.mff.cuni.cz
1537W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1538S: Maintained
1539
1540HUGETLB FILESYSTEM
1541P: William Irwin
1542M: wli@holomorphy.com
1543S: Maintained
1544
Jean Delvare5b543962005-08-15 19:51:02 +02001545I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546P: Jean Delvare
1547M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001548L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001549T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550S: Maintained
1551
1552I2O
1553P: Markus Lidel
1554M: markus.lidel@shadowconnect.com
1555W: http://i2o.shadowconnect.com/
1556S: Maintained
1557
1558i386 BOOT CODE
1559P: Riley H. Williams
1560M: Riley@Williams.Name
1561L: Linux-Kernel@vger.kernel.org
1562S: Maintained
1563
1564i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1565P: Dave Jones
1566M: davej@codemonkey.org.uk
1567P: H. Peter Anvin
1568M: hpa@zytor.com
1569S: Maintained
1570
1571i810 TCO TIMER WATCHDOG
1572P: Nils Faerber
1573M: nils@kernelconcepts.de
1574W: http://www.kernelconcepts.de/
1575S: Maintained
1576
1577IA64 (Itanium) PLATFORM
1578P: Tony Luck
1579M: tony.luck@intel.com
1580L: linux-ia64@vger.kernel.org
1581W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001582T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583S: Maintained
1584
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001585IBM ACPI EXTRAS DRIVER
1586P: Henrique de Moraes Holschuh
1587M: ibm-acpi@hmh.eng.br
1588L: ibm-acpi-devel@lists.sourceforge.net
1589W: http://ibm-acpi.sourceforge.net
1590W: http://thinkwiki.org/wiki/Ibm-acpi
1591T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1592S: Maintained
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001595P: Jes Sorensen
1596M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597L: linux-altix@sgi.com
1598L: linux-ia64@vger.kernel.org
1599W: http://www.sgi.com/altix
1600S: Maintained
1601
1602IBM MCA SCSI SUBSYSTEM DRIVER
1603P: Michael Lang
1604M: langa2@kph.uni-mainz.de
1605W: http://www.uni-mainz.de/~langm000/linux.html
1606S: Maintained
1607
1608IBM Power Linux RAID adapter
1609P: Brian King
1610M: brking@us.ibm.com
1611S: Supported
1612
1613IBM ServeRAID RAID DRIVER
1614P: Jack Hammer
1615P: Dave Jeffery
1616M: ipslinux@adaptec.com
1617W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1618S: Supported
1619
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001620IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001622M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001624T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625S: Maintained
1626
1627IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001628P: Alan Cox
1629M: alan@lxorguk.ukuu.org.uk
1630L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631S: Maintained
1632
1633IDE/ATAPI FLOPPY DRIVERS
1634P: Paul Bristow
1635M: Paul Bristow <paul@paulbristow.net>
1636W: http://paulbristow.net/linux/idefloppy.html
1637L: linux-kernel@vger.kernel.org
1638S: Maintained
1639
1640IDE/ATAPI TAPE DRIVERS
1641P: Gadi Oxman
1642M: Gadi Oxman <gadio@netvision.net.il>
1643L: linux-kernel@vger.kernel.org
1644S: Maintained
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646IEEE 1394 SUBSYSTEM
1647P: Ben Collins
1648M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001649P: Stefan Richter
1650M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651L: linux1394-devel@lists.sourceforge.net
1652W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001653T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654S: Maintained
1655
Stefan Richter87730d02006-09-16 12:24:00 +02001656IEEE 1394 IPV4 DRIVER (eth1394)
1657P: Stefan Richter
1658M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001660S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662IEEE 1394 PCILYNX DRIVER
1663P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001664M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001665P: Stefan Richter
1666M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001668S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670IEEE 1394 RAW I/O DRIVER
1671P: Ben Collins
1672M: bcollins@debian.org
1673P: Dan Dennedy
1674M: dan@dennedy.org
1675L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001676S: Maintained
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678IMS TWINTURBO FRAMEBUFFER DRIVER
1679P: Paul Mundt
1680M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001681L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682S: Maintained
1683
1684INFINIBAND SUBSYSTEM
1685P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001686M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687P: Sean Hefty
1688M: mshefty@ichips.intel.com
1689P: Hal Rosenstock
1690M: halr@voltaire.com
1691L: openib-general@openib.org
1692W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001693T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694S: Supported
1695
1696INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001697P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001698M: dmitry.torokhov@gmail.com
1699M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700L: linux-input@atrey.karlin.mff.cuni.cz
1701L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001702T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703S: Maintained
1704
Robert Lovec9f04f52005-07-15 12:21:07 -04001705INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001706P: John McCutchan
1707M: ttb@tentacle.dhs.org
1708P: Robert Love
1709M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001710L: linux-kernel@vger.kernel.org
1711S: Maintained
1712
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001713INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001714P: Sylvain Meyer
1715M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001716L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001717S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001720P: Antonino Daplas
1721M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001722L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001723S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1726P: Ingo Molnar
1727M: mingo@redhat.com
1728S: Maintained
1729
1730INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1731P: Jeff Garzik
1732M: jgarzik@pobox.com
1733W: http://sourceforge.net/projects/gkernel/
1734S: Maintained
1735
1736INTEL IA32 MICROCODE UPDATE SUPPORT
1737P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001738M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739S: Maintained
1740
Michael Buesch844dd052006-06-26 00:24:59 -07001741INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1742P: Deepak Saxena
1743M: dsaxena@plexity.net
1744S: Maintained
1745
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001746INTEL IXP2000 ETHERNET DRIVER
1747P: Lennert Buytenhek
1748M: kernel@wantstofly.org
1749L: netdev@vger.kernel.org
1750S: Maintained
1751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752INTEL PRO/100 ETHERNET SUPPORT
1753P: John Ronciak
1754M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755P: Jesse Brandeburg
1756M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001757P: Jeff Kirsher
1758M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001759P: Auke Kok
1760M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761W: http://sourceforge.net/projects/e1000/
1762S: Supported
1763
1764INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1765P: Jeb Cramer
1766M: cramerj@intel.com
1767P: John Ronciak
1768M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001769P: Jesse Brandeburg
1770M: jesse.brandeburg@intel.com
1771P: Jeff Kirsher
1772M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001773P: Auke Kok
1774M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775W: http://sourceforge.net/projects/e1000/
1776S: Supported
1777
1778INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001779P: Jeff Kirsher
1780M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781P: Ayyappan Veeraiyan
1782M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783P: John Ronciak
1784M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001785P: Jesse Brandeburg
1786M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001787P: Auke Kok
1788M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789W: http://sourceforge.net/projects/e1000/
1790S: Supported
1791
James Ketrenos826d2ab2005-11-07 18:56:59 -06001792INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1793P: Yi Zhu
1794M: yi.zhu@intel.com
1795P: James Ketrenos
1796M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001797L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001798L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1799W: http://ipw2100.sourceforge.net
1800S: Supported
1801
1802INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1803P: Yi Zhu
1804M: yi.zhu@intel.com
1805P: James Ketrenos
1806M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001807L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001808L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1809W: http://ipw2200.sourceforge.net
1810S: Supported
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812IOC3 DRIVER
1813P: Ralf Baechle
1814M: ralf@linux-mips.org
1815L: linux-mips@linux-mips.org
1816S: Maintained
1817
1818IP MASQUERADING:
1819P: Juanjo Ciarlante
1820M: jjciarla@raiz.uncu.edu.ar
1821S: Maintained
1822
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001823IPATH DRIVER:
1824P: Bryan O'Sullivan
1825M: support@pathscale.com
1826L: openib-general@openib.org
1827S: Supported
1828
Corey Minyard4409ebe2006-04-20 02:43:12 -07001829IPMI SUBSYSTEM
1830P: Corey Minyard
1831M: minyard@acm.org
1832L: openipmi-developer@lists.sourceforge.net
1833W: http://openipmi.sourceforge.net/
1834S: Supported
1835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836IPX NETWORK LAYER
1837P: Arnaldo Carvalho de Melo
1838M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001839L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840S: Maintained
1841
1842IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001843P: Samuel Ortiz
1844M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001845L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001847S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849ISAPNP
1850P: Jaroslav Kysela
1851M: perex@suse.cz
1852S: Maintained
1853
1854ISDN SUBSYSTEM
1855P: Karsten Keil
1856M: kkeil@suse.de
1857P: Kai Germaschewski
1858M: kai.germaschewski@gmx.de
1859L: isdn4linux@listserv.isdn4linux.de
1860W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001861T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862S: Maintained
1863
1864ISDN SUBSYSTEM (Eicon active card driver)
1865P: Armin Schindler
1866M: mac@melware.de
1867L: isdn4linux@listserv.isdn4linux.de
1868W: http://www.melware.de
1869S: Maintained
1870
1871JOURNALLING FLASH FILE SYSTEM (JFFS)
1872P: Axis Communications AB
1873M: jffs-dev@axis.com
1874L: jffs-dev@axis.com
1875W: http://www.developer.axis.com/software/jffs/
1876S: Maintained
1877
1878JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1879P: David Woodhouse
1880M: dwmw2@infradead.org
1881L: jffs-dev@axis.com
1882W: http://sources.redhat.com/jffs2/
1883S: Maintained
1884
1885JFS FILESYSTEM
1886P: Dave Kleikamp
1887M: shaggy@austin.ibm.com
1888L: jfs-discussion@lists.sourceforge.net
1889W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001890T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891S: Supported
1892
Josh Triplettde456d32006-07-30 03:04:00 -07001893JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001894P: Stephen Tweedie, Andrew Morton
1895M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001896L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001897S: Maintained
1898
Rudolf Marek4660cb32006-10-08 22:01:26 +02001899K8TEMP HARDWARE MONITORING DRIVER
1900P: Rudolf Marek
1901M: r.marek@assembler.cz
1902L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903S: Maintained
1904
1905KCONFIG
1906P: Roman Zippel
1907M: zippel@linux-m68k.org
1908L: kbuild-devel@lists.sourceforge.net
1909S: Maintained
1910
Vivek Goyalea6c2082006-05-20 14:59:55 -07001911KDUMP
1912P: Vivek Goyal
1913M: vgoyal@in.ibm.com
1914P: Haren Myneni
1915M: hbabu@us.ibm.com
1916L: fastboot@lists.osdl.org
1917L: linux-kernel@vger.kernel.org
1918W: http://lse.sourceforge.net/kdump/
1919S: Maintained
1920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921KERNEL AUTOMOUNTER (AUTOFS)
1922P: H. Peter Anvin
1923M: hpa@zytor.com
1924L: autofs@linux.kernel.org
1925S: Odd Fixes
1926
1927KERNEL AUTOMOUNTER v4 (AUTOFS4)
1928P: Ian Kent
1929M: raven@themaw.net
1930L: autofs@linux.kernel.org
1931S: Maintained
1932
1933KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1934P: Kai Germaschewski
1935M: kai@germaschewski.name
1936P: Sam Ravnborg
1937M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001938T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939S: Maintained
1940
1941KERNEL JANITORS
1942P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001943L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945S: Maintained
1946
1947KERNEL NFSD
1948P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001949M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950L: nfs@lists.sourceforge.net
1951W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001952S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Avi Kivity426d62e2006-12-13 00:34:03 -08001954KERNEL VIRTUAL MACHINE (KVM)
1955P: Avi Kivity
1956M: avi@qumranet.com
1957L: kvm-devel@lists.sourceforge.net
1958W: kvm.sourceforge.net
1959S: Supported
1960
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001961KEXEC
1962P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001963M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001964W: http://www.xmission.com/~ebiederm/files/kexec/
1965L: linux-kernel@vger.kernel.org
1966L: fastboot@osdl.org
1967S: Maintained
1968
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001969KPROBES
1970P: Prasanna S Panchamukhi
1971M: prasanna@in.ibm.com
1972P: Ananth N Mavinakayanahalli
1973M: ananth@in.ibm.com
1974P: Anil S Keshavamurthy
1975M: anil.s.keshavamurthy@intel.com
1976P: David S. Miller
1977M: davem@davemloft.net
1978L: linux-kernel@vger.kernel.org
1979S: Maintained
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001983S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985LASI 53c700 driver for PARISC
1986P: James E.J. Bottomley
1987M: James.Bottomley@HansenPartnership.com
1988L: linux-scsi@vger.kernel.org
1989S: Maintained
1990
Richard Purdie263de9b2006-05-15 09:44:16 -07001991LED SUBSYSTEM
1992P: Richard Purdie
1993M: rpurdie@rpsys.net
1994S: Maintained
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996LEGO USB Tower driver
1997P: Juergen Stuber
1998M: starblue@users.sourceforge.net
1999L: legousb-devel@lists.sourceforge.net
2000W: http://legousb.sourceforge.net/
2001S: Maintained
2002
2003LINUX FOR IBM pSERIES (RS/6000)
2004P: Paul Mackerras
2005M: paulus@au.ibm.com
2006W: http://www.ibm.com/linux/ltc/projects/ppc
2007S: Supported
2008
2009LINUX FOR NCR VOYAGER
2010P: James Bottomley
2011M: James.Bottomley@HansenPartnership.com
2012W: http://www.hansenpartnership.com/voyager
2013S: Maintained
2014
2015LINUX FOR POWERPC
2016P: Paul Mackerras
2017M: paulus@samba.org
2018W: http://www.penguinppc.org/
2019L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002020T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021S: Supported
2022
2023LINUX FOR POWER MACINTOSH
2024P: Benjamin Herrenschmidt
2025M: benh@kernel.crashing.org
2026W: http://www.penguinppc.org/
2027L: linuxppc-dev@ozlabs.org
2028S: Maintained
2029
2030LINUX FOR POWERPC EMBEDDED MPC52XX
2031P: Sylvain Munaut
2032M: tnt@246tNt.com
2033W: http://www.246tNt.com/mpc52xx/
2034W: http://www.penguinppc.org/
2035L: linuxppc-dev@ozlabs.org
2036L: linuxppc-embedded@ozlabs.org
2037S: Maintained
2038
2039LINUX FOR POWERPC EMBEDDED PPC4XX
2040P: Matt Porter
2041M: mporter@kernel.crashing.org
2042W: http://www.penguinppc.org/
2043L: linuxppc-embedded@ozlabs.org
2044S: Maintained
2045
Tom Rinie93adf12005-07-26 12:49:53 -07002046LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047P: Tom Rini
2048M: trini@kernel.crashing.org
2049W: http://www.penguinppc.org/
2050L: linuxppc-embedded@ozlabs.org
2051S: Maintained
2052
Tom Rinie93adf12005-07-26 12:49:53 -07002053LINUX FOR POWERPC EMBEDDED PPC8XX
2054P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002055M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002056W: http://www.penguinppc.org/
2057L: linuxppc-embedded@ozlabs.org
2058S: Maintained
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002061P: Kumar Gala
2062M: galak@kernel.crashing.org
2063W: http://www.penguinppc.org/
2064L: linuxppc-embedded@ozlabs.org
2065S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Olof Johanssonab06ff32006-09-06 14:44:54 -05002067LINUX FOR POWERPC PA SEMI PWRFICIENT
2068P: Olof Johansson
2069M: olof@lixom.net
2070W: http://www.pasemi.com/
2071L: linuxppc-dev@ozlabs.org
2072S: Supported
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074LLC (802.2)
2075P: Arnaldo Carvalho de Melo
2076M: acme@conectiva.com.br
2077S: Maintained
2078
2079LINUX FOR 64BIT POWERPC
2080P: Paul Mackerras
2081M: paulus@samba.org
2082M: paulus@au.ibm.com
2083P: Anton Blanchard
2084M: anton@samba.org
2085M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002086W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002087L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088S: Supported
2089
2090LINUX SECURITY MODULE (LSM) FRAMEWORK
2091P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002092M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002093L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002095T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096S: Supported
2097
2098LM83 HARDWARE MONITOR DRIVER
2099P: Jean Delvare
2100M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002101L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102S: Maintained
2103
2104LM90 HARDWARE MONITOR DRIVER
2105P: Jean Delvare
2106M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002107L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108S: Maintained
2109
2110LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2111P: Richard Russon (FlatCap)
2112M: ldm@flatcap.org
2113L: ldm-devel@lists.sourceforge.net
2114W: http://ldm.sourceforge.net
2115S: Maintained
2116
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002117LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2118P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002119M: Eric.Moore@lsi.com
2120M: support@lsi.com
2121L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002122L: linux-scsi@vger.kernel.org
2123W: http://www.lsilogic.com/support
2124S: Supported
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2127P: Matthew Wilcox
2128M: matthew@wil.cx
2129L: linux-scsi@vger.kernel.org
2130S: Maintained
2131
2132M68K ARCHITECTURE
2133P: Geert Uytterhoeven
2134M: geert@linux-m68k.org
2135P: Roman Zippel
2136M: zippel@linux-m68k.org
2137L: linux-m68k@lists.linux-m68k.org
2138W: http://www.linux-m68k.org/
2139W: http://linux-m68k-cvs.ubb.ca/
2140S: Maintained
2141
2142M68K ON APPLE MACINTOSH
2143P: Joshua Thompson
2144M: funaho@jurai.org
2145W: http://www.mac.linux-m68k.org/
2146L: linux-mac68k@mac.linux-m68k.org
2147S: Maintained
2148
2149M68K ON HP9000/300
2150P: Philip Blundell
2151M: philb@gnu.org
2152W: http://www.tazenda.demon.co.uk/phil/linux-hp
2153S: Maintained
2154
2155MARVELL YUKON / SYSKONNECT DRIVER
2156P: Mirko Lindner
2157M: mlindner@syskonnect.de
2158P: Ralph Roesler
2159M: rroesler@syskonnect.de
2160W: http://www.syskonnect.com
2161S: Supported
2162
Michael Kerriskfaf16682005-07-31 22:34:47 -07002163MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002164P: Michael Kerrisk
2165M: mtk-manpages@gmx.net
2166W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2167S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002168
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002169MARVELL MV643XX ETHERNET DRIVER
2170P: Dale Farnsworth
2171M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002173M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002174L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002175S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177MATROX FRAMEBUFFER DRIVER
2178P: Petr Vandrovec
2179M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002180L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181S: Maintained
2182
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002183MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002184P: Neela Syam Kolli
2185M: Neela.Kolli@engenio.com
2186S: linux-scsi@vger.kernel.org
2187W: http://megaraid.lsilogic.com
2188S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002189
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002190MEMORY MANAGEMENT
2191L: linux-mm@kvack.org
2192L: linux-kernel@vger.kernel.org
2193W: http://www.linux-mm.org
2194S: Maintained
2195
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002196MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197P: David Woodhouse
2198M: dwmw2@infradead.org
2199W: http://www.linux-mtd.infradead.org/
2200L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002201T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202S: Maintained
2203
2204MICROTEK X6 SCANNER
2205P: Oliver Neukum
2206M: oliver@neukum.name
2207S: Maintained
2208
2209MIPS
2210P: Ralf Baechle
2211M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002212W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002214T: git www.linux-mips.org:/pub/scm/linux.git
2215S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217MISCELLANEOUS MCA-SUPPORT
2218P: James Bottomley
2219M: jejb@steeleye.com
2220L: linux-kernel@vger.kernel.org
2221S: Maintained
2222
2223MODULE SUPPORT
2224P: Rusty Russell
2225M: rusty@rustcorp.com.au
2226L: linux-kernel@vger.kernel.org
2227S: Maintained
2228
2229MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2230P: Stelian Pop
2231M: stelian@popies.net
2232W: http://popies.net/meye/
2233S: Maintained
2234
2235MOUSE AND MISC DEVICES [GENERAL]
2236P: Alessandro Rubini
2237M: rubini@ipvvis.unipv.it
2238L: linux-kernel@vger.kernel.org
2239S: Maintained
2240
Jiri Slabyd7354102006-12-08 02:38:35 -08002241MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2242P: Jiri Slaby
2243M: jirislaby@gmail.com
2244L: linux-kernel@vger.kernel.org
2245S: Maintained
2246
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002247MSI LAPTOP SUPPORT
2248P: Lennart Poettering
2249M: mzxreary@0pointer.de
2250L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2251W: http://0pointer.de/lennart/tchibo.html
2252S: Maintained
2253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254MTRR AND SIMILAR SUPPORT [i386]
2255P: Richard Gooch
2256M: rgooch@atnf.csiro.au
2257L: linux-kernel@vger.kernel.org
2258W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2259S: Maintained
2260
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002261MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2262P: Pierre Ossman
2263M: drzeus-mmc@drzeus.cx
2264L: linux-kernel@vger.kernel.org
2265S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002266
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267MULTISOUND SOUND DRIVER
2268P: Andrew Veliath
2269M: andrewtv@usa.net
2270S: Maintained
2271
Jiri Slabyd7354102006-12-08 02:38:35 -08002272MULTITECH MULTIPORT CARD (ISICOM)
2273P: Jiri Slaby
2274M: jirislaby@gmail.com
2275L: linux-kernel@vger.kernel.org
2276S: Maintained
2277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278NATSEMI ETHERNET DRIVER (DP8381x)
2279P: Tim Hockin
2280M: thockin@hockin.org
2281S: Maintained
2282
2283NCP FILESYSTEM
2284P: Petr Vandrovec
2285M: vandrove@vc.cvut.cz
2286L: linware@sh.cvut.cz
2287S: Maintained
2288
2289NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2290P: James E.J. Bottomley
2291M: James.Bottomley@HansenPartnership.com
2292L: linux-scsi@vger.kernel.org
2293S: Maintained
2294
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002295NETEM NETWORK EMULATOR
2296P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002297M: shemminger@linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002298L: netem@osdl.org
2299S: Maintained
2300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301NETFILTER/IPTABLES/IPCHAINS
2302P: Rusty Russell
2303P: Marc Boucher
2304P: James Morris
2305P: Harald Welte
2306P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002307P: Patrick McHardy
2308M: kaber@trash.net
2309L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002310L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002311L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312W: http://www.netfilter.org/
2313W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314S: Supported
2315
Paul Moore4cc67732006-09-25 15:57:13 -07002316NETLABEL
2317P: Paul Moore
2318M: paul.moore@hp.com
2319W: http://netlabel.sf.net
2320L: netdev@vger.kernel.org
2321S: Supported
2322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323NETROM NETWORK LAYER
2324P: Ralf Baechle
2325M: ralf@linux-mips.org
2326L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002327W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328S: Maintained
2329
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002330NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331P: Paul Clements
2332M: Paul.Clements@steeleye.com
2333S: Maintained
2334
2335NETWORK DEVICE DRIVERS
2336P: Andrew Morton
2337M: akpm@osdl.org
2338P: Jeff Garzik
2339M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002340L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002341T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342S: Maintained
2343
2344NETWORKING [GENERAL]
2345P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002346M: netdev@vger.kernel.org
2347L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002348W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349S: Maintained
2350
2351NETWORKING [IPv4/IPv6]
2352P: David S. Miller
2353M: davem@davemloft.net
2354P: Alexey Kuznetsov
2355M: kuznet@ms2.inr.ac.ru
2356P: Pekka Savola (ipv6)
2357M: pekkas@netcore.fi
2358P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002359M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360P: Hideaki YOSHIFUJI
2361M: yoshfuji@linux-ipv6.org
2362P: Patrick McHardy
2363M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002364L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002365T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366S: Maintained
2367
John W. Linville29f8f632006-01-18 14:52:48 -08002368NETWORKING [WIRELESS]
2369P: John W. Linville
2370M: linville@tuxdriver.com
2371L: netdev@vger.kernel.org
2372T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2373S: Maintained
2374
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002375NETXEN (1/10) GbE SUPPORT
2376P: Amit S. Kale
2377M: amitkale@netxen.com
2378L: netdev@vger.kernel.org
2379W: http://www.netxen.com
2380S: Supported
2381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382IPVS
2383P: Wensong Zhang
2384M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002385P: Simon Horman
2386M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387P: Julian Anastasov
2388M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002389L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390S: Maintained
2391
2392NFS CLIENT
2393P: Trond Myklebust
2394M: trond.myklebust@fys.uio.no
2395L: linux-kernel@vger.kernel.org
2396S: Maintained
2397
2398NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002399P: Jan-Pascal van Best
2400M: janpascal@vanbest.org
2401P: Andreas Mohr
2402M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002403L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404S: Maintained
2405
2406NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2407P: YOKOTA Hiroshi
2408M: yokota@netlab.is.tsukuba.ac.jp
2409W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2410S: Maintained
2411
2412NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2413P: GOTO Masanori
2414M: gotom@debian.or.jp
2415P: YOKOTA Hiroshi
2416M: yokota@netlab.is.tsukuba.ac.jp
2417W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2418S: Maintained
2419
2420NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2421P: Eberhard Moenkeberg
2422M: emoenke@gwdg.de
2423L: linux-kernel@vger.kernel.org
2424S: Maintained
2425
2426NTFS FILESYSTEM
2427P: Anton Altaparmakov
2428M: aia21@cantab.net
2429L: linux-ntfs-dev@lists.sourceforge.net
2430L: linux-kernel@vger.kernel.org
2431W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002432T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433S: Maintained
2434
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002435NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002436P: Antonino Daplas
2437M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002438L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002439S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002441OPENCORES I2C BUS DRIVER
2442P: Peter Korsgaard
2443M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002444L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002445S: Maintained
2446
Mark Fashehccd979b2005-12-15 14:31:24 -08002447ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2448P: Mark Fasheh
2449M: mark.fasheh@oracle.com
2450P: Kurt Hackel
2451M: kurt.hackel@oracle.com
2452L: ocfs2-devel@oss.oracle.com
2453W: http://oss.oracle.com/projects/ocfs2/
2454S: Supported
2455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456OLYMPIC NETWORK DRIVER
2457P: Peter De Shrijver
2458M: p2@ace.ulyssis.student.kuleuven.ac.be
2459P: Mike Phillips
2460M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002461L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462L: linux-tr@linuxtr.net
2463W: http://www.linuxtr.net
2464S: Maintained
2465
Harald Weltec1986ee2005-11-13 16:06:29 -08002466OMNIKEY CARDMAN 4000 DRIVER
2467P: Harald Welte
2468M: laforge@gnumonks.org
2469S: Maintained
2470
Harald Welte77c44ab2005-11-13 16:06:26 -08002471OMNIKEY CARDMAN 4040 DRIVER
2472P: Harald Welte
2473M: laforge@gnumonks.org
2474S: Maintained
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476ONSTREAM SCSI TAPE DRIVER
2477P: Willem Riede
2478M: osst@riede.org
2479L: osst-users@lists.sourceforge.net
2480L: linux-scsi@vger.kernel.org
2481S: Maintained
2482
2483OPL3-SA2, SA3, and SAx DRIVER
2484P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002485M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486L: linux-sound@vger.kernel.org
2487S: Maintained
2488
2489OPROFILE
2490P: Philippe Elie
2491M: phil.el@wanadoo.fr
2492L: oprofile-list@lists.sf.net
2493S: Maintained
2494
2495ORINOCO DRIVER
2496P: Pavel Roskin
2497M: proski@gnu.org
2498P: David Gibson
2499M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002500L: orinoco-users@lists.sourceforge.net
2501L: orinoco-devel@lists.sourceforge.net
2502W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503S: Maintained
2504
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002505PA SEMI ETHERNET DRIVER
2506P: Olof Johansson
2507M: olof@lixom.net
2508L: netdev@vger.kernel.org
2509S: Maintained
2510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511PARALLEL PORT SUPPORT
2512P: Phil Blundell
2513M: philb@gnu.org
2514P: Tim Waugh
2515M: tim@cyberelk.net
2516P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517P: Andrea Arcangeli
2518M: andrea@suse.de
2519L: linux-parport@lists.infradead.org
2520W: http://people.redhat.com/twaugh/parport/
2521S: Maintained
2522
2523PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2524P: Tim Waugh
2525M: tim@cyberelk.net
2526L: linux-parport@lists.infradead.org
2527W: http://www.torque.net/linux-pp.html
2528S: Maintained
2529
2530PARISC ARCHITECTURE
2531P: Matthew Wilcox
2532M: matthew@wil.cx
2533P: Grant Grundler
2534M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002535P: Kyle McMartin
2536M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537L: parisc-linux@parisc-linux.org
2538W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002539T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2540T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541S: Maintained
2542
Jim Cromie1662d322006-10-06 00:43:59 -07002543PC87360 HARDWARE MONITORING DRIVER
2544P: Jim Cromie
2545M: jim.cromie@gmail.com
2546L: lm-sensors@lm-sensors.org
2547S: Maintained
2548
2549PC8736x GPIO DRIVER
2550P: Jim Cromie
2551M: jim.cromie@gmail.com
2552S: Maintained
2553
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002554PCI ERROR RECOVERY
2555P: Linas Vepstas
2556M: linas@austin.ibm.com
2557L: linux-kernel@vger.kernel.org
2558L: linux-pci@atrey.karlin.mff.cuni.cz
2559S: Supported
2560
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2562P: Thomas Sailer
2563M: sailer@ife.ee.ethz.ch
2564L: linux-sound@vger.kernel.org
2565W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2566S: Maintained
2567
2568PCI SUBSYSTEM
2569P: Greg Kroah-Hartman
2570M: gregkh@suse.de
2571L: linux-kernel@vger.kernel.org
2572L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002573T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574S: Supported
2575
2576PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002577P: Kristen Carlson Accardi
2578M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579S: Supported
2580
2581PCI HOTPLUG COMPAQ DRIVER
2582P: Greg Kroah-Hartman
2583M: greg@kroah.com
2584S: Maintained
2585
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002586PCIE HOTPLUG DRIVER
2587P: Kristen Carlson Accardi
2588M: kristen.c.accardi@intel.com
2589L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002590S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002591
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002593P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002594L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002596T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002597S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599PCNET32 NETWORK DRIVER
2600P: Thomas Bogendörfer
2601M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002602L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603S: Maintained
2604
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002605PER-TASK DELAY ACCOUNTING
2606P: Shailabh Nagar
2607M: nagar@watson.ibm.com
2608L: linux-kernel@vger.kernel.org
2609S: Maintained
2610
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002611PERSONALITY HANDLING
2612P: Christoph Hellwig
2613M: hch@infradead.org
2614L: linux-abi-devel@lists.sourceforge.net
2615S: Maintained
2616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617PHRAM MTD DRIVER
2618P: Jörn Engel
2619M: joern@wh.fh-wedel.de
2620L: linux-mtd@lists.infradead.org
2621S: Maintained
2622
Peter Osterlund249a6772005-09-27 21:45:30 -07002623PKTCDVD DRIVER
2624P: Peter Osterlund
2625M: petero2@telia.com
2626L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002627S: Maintained
2628
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629POSIX CLOCKS and TIMERS
2630P: George Anzinger
2631M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002632L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633S: Supported
2634
Eugene Surovegin24682972005-10-14 03:00:53 -07002635POWERPC 4xx EMAC DRIVER
2636P: Eugene Surovegin
2637M: ebs@ebshome.net
2638W: http://kernel.ebshome.net/emac/
2639L: linuxppc-embedded@ozlabs.org
2640L: netdev@vger.kernel.org
2641S: Maintained
2642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643PNP SUPPORT
2644P: Adam Belay
2645M: ambx1@neo.rr.com
2646S: Maintained
2647
Vitaly Wool999445d2007-01-04 13:07:03 +01002648PNXxxxx I2C DRIVER
2649P: Vitaly Wool
2650M: vitalywool@gmail.com
2651L: i2c@lm-sensors.org
2652S: Maintained
2653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654PPP PROTOCOL DRIVERS AND COMPRESSORS
2655P: Paul Mackerras
2656M: paulus@samba.org
2657L: linux-ppp@vger.kernel.org
2658S: Maintained
2659
2660PPP OVER ATM (RFC 2364)
2661P: Mitchell Blank Jr
2662M: mitch@sfgoth.com
2663S: Maintained
2664
2665PPP OVER ETHERNET
2666P: Michal Ostrowski
2667M: mostrows@speakeasy.net
2668S: Maintained
2669
2670PREEMPTIBLE KERNEL
2671P: Robert Love
2672M: rml@tech9.net
2673L: linux-kernel@vger.kernel.org
2674L: kpreempt-tech@lists.sourceforge.net
2675W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2676S: Supported
2677
2678PRISM54 WIRELESS DRIVER
2679P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002680M: developers@islsm.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002681L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682W: http://prism54.org
2683S: Maintained
2684
2685PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2686P: Peter Denison
2687M: promise@pnd-pc.demon.co.uk
2688W: http://www.pnd-pc.demon.co.uk/promise/
2689S: Maintained
2690
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002691PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2692P: Mikael Pettersson
2693M: mikpe@it.uu.se
2694L: linux-ide@vger.kernel.org
2695S: Maintained
2696
Geoff Levandf58a9d12006-11-23 00:46:51 +01002697PS3 PLATFORM SUPPORT
2698P: Geoff Levand
2699M: geoffrey.levand@am.sony.com
2700L: linuxppc-dev@ozlabs.org
2701L: cbe-oss-dev@ozlabs.org
2702S: Supported
2703
Michael Krufky83202042006-07-03 00:24:18 -07002704PVRUSB2 VIDEO4LINUX DRIVER
2705P: Mike Isely
2706M: isely@pobox.com
2707L: pvrusb2@isely.net
2708L: video4linux-list@redhat.com
2709W: http://www.isely.net/pvrusb2/
2710S: Maintained
2711
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712PXA2xx SUPPORT
2713P: Nicolas Pitre
2714M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002715L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716S: Maintained
2717
2718QLOGIC QLA2XXX FC-SCSI DRIVER
2719P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002720M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721L: linux-scsi@vger.kernel.org
2722S: Supported
2723
Ron Mercer5a4faa872006-07-25 00:40:21 -07002724QLOGIC QLA3XXX NETWORK DRIVER
2725P: Ron Mercer
2726M: linux-driver@qlogic.com
2727L: netdev@vger.kernel.org
2728S: Supported
2729
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730QNX4 FILESYSTEM
2731P: Anders Larsen
2732M: al@alarsen.net
2733L: linux-kernel@vger.kernel.org
2734W: http://www.alarsen.net/linux/qnx4fs/
2735S: Maintained
2736
2737RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002738P: Benjamin Herrenschmidt
2739M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002740L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741S: Maintained
2742
2743RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002744P: Paul Mackerras
2745M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002746L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747S: Maintained
2748
2749RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2750P: Corey Thomas
2751M: corey@world.std.com
2752L: linux-kernel@vger.kernel.org
2753S: Maintained
2754
Matt Mackall9e95ce22005-04-16 15:25:56 -07002755RANDOM NUMBER DRIVER
2756P: Matt Mackall
2757M: mpm@selenic.com
2758S: Maintained
2759
Matt Porter394b7012005-11-07 01:00:15 -08002760RAPIDIO SUBSYSTEM
2761P: Matt Porter
2762M: mporter@kernel.crashing.org
2763L: linux-kernel@vger.kernel.org
2764S: Maintained
2765
Josh Triplett595182b2006-10-04 02:17:21 -07002766READ-COPY UPDATE (RCU)
2767P: Dipankar Sarma
2768M: dipankar@in.ibm.com
2769W: http://www.rdrop.com/users/paulmck/rclock/
2770L: linux-kernel@vger.kernel.org
2771S: Supported
2772
2773RCUTORTURE MODULE
2774P: Josh Triplett
2775M: josh@freedesktop.org
2776L: linux-kernel@vger.kernel.org
2777S: Maintained
2778
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779REAL TIME CLOCK DRIVER
2780P: Paul Gortmaker
2781M: p_gortmaker@yahoo.com
2782L: linux-kernel@vger.kernel.org
2783S: Maintained
2784
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002785REAL TIME CLOCK (RTC) SUBSYSTEM
2786P: Alessandro Zummo
2787M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002788L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002789S: Maintained
2790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791REISERFS FILE SYSTEM
2792P: Hans Reiser
2793M: reiserfs-dev@namesys.com
2794L: reiserfs-list@namesys.com
2795W: http://www.namesys.com
2796S: Supported
2797
2798ROCKETPORT DRIVER
2799P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800W: http://www.comtrol.com
2801S: Maintained
2802
2803ROSE NETWORK LAYER
2804P: Ralf Baechle
2805M: ralf@linux-mips.org
2806L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002807W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808S: Maintained
2809
2810RISCOM8 DRIVER
2811S: Orphan
2812
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002813S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002814P: Antonino Daplas
2815M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002816L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002817S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819S390
2820P: Martin Schwidefsky
2821M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002822P: Heiko Carstens
2823M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002825L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002826W: http://www.ibm.com/developerworks/linux/linux390/
2827S: Supported
2828
2829S390 NETWORK DRIVERS
2830P: Frank Pavlic
2831M: fpavlic@de.ibm.com
2832M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002833L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002834W: http://www.ibm.com/developerworks/linux/linux390/
2835S: Supported
2836
2837S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002838P: Swen Schillig
2839M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002840M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002841L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002842W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843S: Supported
2844
2845SAA7146 VIDEO4LINUX-2 DRIVER
2846P: Michael Hunold
2847M: michael@mihu.de
2848W: http://www.mihu.de/linux/saa7146
2849S: Maintained
2850
2851SBPCD CDROM DRIVER
2852P: Eberhard Moenkeberg
2853M: emoenke@gwdg.de
2854L: linux-kernel@vger.kernel.org
2855S: Maintained
2856
2857SC1200 WDT DRIVER
2858P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002859M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860S: Maintained
2861
2862SCHEDULER
2863P: Ingo Molnar
2864M: mingo@elte.hu
2865P: Robert Love [the preemptible kernel bits]
2866M: rml@tech9.net
2867L: linux-kernel@vger.kernel.org
2868S: Maintained
2869
2870SCSI CDROM DRIVER
2871P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002872M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873L: linux-scsi@vger.kernel.org
2874W: http://www.kernel.dk
2875S: Maintained
2876
2877SCSI SG DRIVER
2878P: Doug Gilbert
2879M: dgilbert@interlog.com
2880L: linux-scsi@vger.kernel.org
2881W: http://www.torque.net/sg
2882S: Maintained
2883
2884SCSI SUBSYSTEM
2885P: James E.J. Bottomley
2886M: James.Bottomley@SteelEye.com
2887L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002888T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889S: Maintained
2890
2891SCSI TAPE DRIVER
2892P: Kai Mäkisara
2893M: Kai.Makisara@kolumbus.fi
2894L: linux-scsi@vger.kernel.org
2895S: Maintained
2896
2897SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002898P: Sridhar Samudrala
2899M: sri@us.ibm.com
2900L: lksctp-developers@lists.sourceforge.net
2901S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
2903SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002904P: Jim Cromie
2905M: jim.cromie@gmail.com
2906S: Odd Fixes
2907
2908SCx200 GPIO DRIVER
2909P: Jim Cromie
2910M: jim.cromie@gmail.com
2911S: Maintained
2912
2913SCx200 HRT CLOCKSOURCE DRIVER
2914P: Jim Cromie
2915M: jim.cromie@gmail.com
2916S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
2918SECURITY CONTACT
2919P: Security Officers
2920M: security@kernel.org
2921S: Supported
2922
2923SELINUX SECURITY MODULE
2924P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002925M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002927M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928L: linux-kernel@vger.kernel.org (kernel issues)
2929L: selinux@tycho.nsa.gov (general discussion)
2930W: http://www.nsa.gov/selinux
2931S: Supported
2932
2933SERIAL ATA (SATA) SUBSYSTEM:
2934P: Jeff Garzik
2935M: jgarzik@pobox.com
2936L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002937T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938S: Supported
2939
2940SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2941P: Pat Gefre
2942M: pfg@sgi.com
2943L: linux-ia64@vger.kernel.org
2944S: Supported
2945
2946SGI VISUAL WORKSTATION 320 AND 540
2947P: Andrey Panin
2948M: pazke@donpac.ru
2949L: linux-visws-devel@lists.sf.net
2950W: http://linux-visws.sf.net
2951S: Maintained for 2.6.
2952
2953SIMTEC EB110ATX (Chalice CATS)
2954P: Ben Dooks
2955P: Vincent Sanders
2956M: support@simtec.co.uk
2957W: http://www.simtec.co.uk/products/EB110ATX/
2958S: Supported
2959
2960SIMTEC EB2410ITX (BAST)
2961P: Ben Dooks
2962P: Vincent Sanders
2963M: support@simtec.co.uk
2964W: http://www.simtec.co.uk/products/EB2410ITX/
2965S: Supported
2966
Francois Romieu92aab3c2005-07-30 13:11:18 +02002967SIS 190 ETHERNET DRIVER
2968P: Francois Romieu
2969M: romieu@fr.zoreil.com
2970L: netdev@vger.kernel.org
2971S: Maintained
2972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973SIS 5513 IDE CONTROLLER DRIVER
2974P: Lionel Bouton
2975M: Lionel.Bouton@inet6.fr
2976W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2977W: http://gyver.homeip.net/sis5513/index.html
2978S: Maintained
2979
2980SIS 900/7016 FAST ETHERNET DRIVER
2981P: Daniele Venzano
2982M: venza@brownhat.org
2983W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002984L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985S: Maintained
2986
2987SIS FRAMEBUFFER DRIVER
2988P: Thomas Winischhofer
2989M: thomas@winischhofer.net
2990W: http://www.winischhofer.net/linuxsisvga.shtml
2991S: Maintained
2992
2993SIS USB2VGA DRIVER
2994P: Thomas Winischhofer
2995M: thomas@winischhofer.net
2996W: http://www.winischhofer.at/linuxsisusbvga.shtml
2997S: Maintained
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999SMC91x ETHERNET DRIVER
3000P: Nicolas Pitre
3001M: nico@cam.org
3002S: Maintained
3003
Daniel Drake8f0f8502006-07-18 22:00:25 +01003004SOFTMAC LAYER (IEEE 802.11)
3005P: Johannes Berg
3006M: johannes@sipsolutions.net
3007P: Joe Jezak
3008M: josejx@gentoo.org
3009P: Daniel Drake
3010M: dsd@gentoo.org
3011W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01003012L: netdev@vger.kernel.org
3013S: Maintained
3014
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015SOFTWARE RAID (Multiple Disks) SUPPORT
3016P: Ingo Molnar
3017M: mingo@redhat.com
3018P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003019M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003021S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
3023SOFTWARE SUSPEND:
3024P: Pavel Machek
3025M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07003026L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027S: Maintained
3028
3029SONIC NETWORK DRIVER
3030P: Thomas Bogendoerfer
3031M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003032L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033S: Maintained
3034
3035SONY VAIO CONTROL DEVICE DRIVER
3036P: Stelian Pop
3037M: stelian@popies.net
3038W: http://popies.net/sonypi/
3039S: Maintained
3040
3041SOUND
3042P: Jaroslav Kysela
3043M: perex@suse.cz
3044L: alsa-devel@alsa-project.org
3045S: Maintained
3046
Kumar Gala025c3982006-04-02 16:05:54 -05003047SPI SUBSYSTEM
3048P: David Brownell
3049M: dbrownell@users.sourceforge.net
3050L: spi-devel-general@lists.sourceforge.net
3051S: Maintained
3052
Steven Rostedt855f46a2006-08-05 12:14:50 -07003053STABLE BRANCH:
3054P: Greg Kroah-Hartman
3055M: greg@kroah.com
3056P: Chris Wright
3057M: chrisw@sous-sol.org
3058L: stable@kernel.org
3059S: Maintained
3060
Kylene Hall1c72d462005-05-01 08:59:13 -07003061TPM DEVICE DRIVER
3062P: Kylene Hall
3063M: kjhall@us.ibm.com
3064W: http://tpmdd.sourceforge.net
3065L: tpmdd-devel@lists.sourceforge.net
3066S: Maintained
3067
Mark Gross1a80ba82005-10-30 15:02:55 -08003068Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003069P: Mark Gross
3070M: mark.gross@intel.com
3071S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003072
Chris Zankel48b415c2005-06-23 22:01:07 -07003073TENSILICA XTENSA PORT (xtensa):
3074P: Chris Zankel
3075M: chris@zankel.net
3076S: Maintained
3077
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078UltraSPARC (sparc64):
3079P: David S. Miller
3080M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003082T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083S: Maintained
3084
3085SHARP LH SUPPORT (LH7952X & LH7A40X)
3086P: Marc Singer
3087M: elf@buici.com
3088W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003089L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090S: Maintained
3091
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003092SHPC HOTPLUG DRIVER
3093P: Kristen Carlson Accardi
3094M: kristen.c.accardi@intel.com
3095L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003096S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003097
Pierre Ossmand129bce2006-03-24 03:18:17 -08003098SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3099P: Pierre Ossman
3100M: drzeus-sdhci@drzeus.cx
3101L: sdhci-devel@list.drzeus.cx
3102W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3103S: Maintained
3104
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003105SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3106P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003107M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003108L: netdev@vger.kernel.org
3109S: Maintained
3110
Chris Boot1a87d942006-07-10 04:45:34 -07003111SOEKRIS NET48XX LED SUPPORT
3112P: Chris Boot
3113M: bootc@bootc.net
3114S: Maintained
3115
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116SPARC (sparc32):
3117P: William L. Irwin
3118M: wli@holomorphy.com
3119L: sparclinux@vger.kernel.org
3120S: Maintained
3121
3122SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3123P: Roger Wolff
3124M: R.E.Wolff@BitWizard.nl
3125L: linux-kernel@vger.kernel.org ?
3126S: Supported
3127
Jim Lewis2752e402006-09-29 02:01:19 -07003128SPIDERNET NETWORK DRIVER for CELL
3129P: Jim Lewis
3130M: jim@jklewis.com
3131L: netdev@vger.kernel.org
3132S: Supported
3133
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134SRM (Alpha) environment access
3135P: Jan-Benedict Glaw
3136M: jbglaw@lug-owl.de
3137L: linux-kernel@vger.kernel.org
3138S: Maintained
3139
3140STARFIRE/DURALAN NETWORK DRIVER
3141P: Ion Badulescu
3142M: ionut@cs.columbia.edu
3143S: Maintained
3144
3145STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3146W: http://mosquitonet.Stanford.EDU/strip.html
3147S: Unsupported ?
3148
3149STRADIS MPEG-2 DECODER DRIVER
3150P: Nathan Laredo
3151M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152W: http://www.stradis.com/
3153S: Maintained
3154
3155SUPERH (sh)
3156P: Paul Mundt
3157M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003158L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160S: Maintained
3161
3162SUPERH64 (sh64)
3163P: Paul Mundt
3164M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165L: linuxsh-shmedia-dev@lists.sourceforge.net
3166W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167S: Maintained
3168
3169SUN3/3X
3170P: Sam Creasey
3171M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172W: http://sammy.net/sun3/
3173S: Maintained
3174
3175SVGA HANDLING
3176P: Martin Mares
3177M: mj@ucw.cz
3178L: linux-video@atrey.karlin.mff.cuni.cz
3179S: Maintained
3180
3181SYSV FILESYSTEM
3182P: Christoph Hellwig
3183M: hch@infradead.org
3184S: Maintained
3185
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003186TC CLASSIFIER
3187P: Jamal Hadi Salim
3188M: hadi@cyberus.ca
3189L: netdev@vger.kernel.org
3190S: Maintained
3191
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003192TCP LOW PRIORITY MODULE
3193P: Wong Hoi Sing, Edison
3194M: hswong3i@gmail.com
3195P: Hung Hing Lun, Mike
3196M: hlhung3i@gmail.com
3197W: http://tcp-lp-mod.sourceforge.net/
3198S: Maintained
3199
Alex Dubov4020f2d2006-10-04 02:15:37 -07003200TI FLASH MEDIA INTERFACE DRIVER
3201P: Alex Dubov
3202M: oakad@yahoo.com
3203S: Maintained
3204
Michael Buesch844dd052006-06-26 00:24:59 -07003205TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3206P: Deepak Saxena
3207M: dsaxena@plexity.net
3208S: Maintained
3209
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003210TASKSTATS STATISTICS INTERFACE
3211P: Shailabh Nagar
3212M: nagar@watson.ibm.com
3213L: linux-kernel@vger.kernel.org
3214S: Maintained
3215
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003217P: Romain Lievin
3218M: roms@lpg.ticalc.org
3219S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
Per Lidene86eaa32006-01-12 16:45:18 +01003221TIPC NETWORK LAYER
3222P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003223M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003224P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003225M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003226P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003227M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003228L: tipc-discussion@lists.sourceforge.net
3229W: http://tipc.sourceforge.net/
3230W: http://tipc.cslab.ericsson.net/
3231T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3232S: Maintained
3233
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234TLAN NETWORK DRIVER
3235P: Samuel Chessman
3236M: chessman@tux.org
3237L: tlan-devel@lists.sourceforge.net
3238W: http://sourceforge.net/projects/tlan/
3239S: Maintained
3240
3241TOKEN-RING NETWORK DRIVER
3242P: Mike Phillips
3243M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003244L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245L: linux-tr@linuxtr.net
3246W: http://www.linuxtr.net
3247S: Maintained
3248
3249TOSHIBA ACPI EXTRAS DRIVER
3250P: John Belmonte
3251M: toshiba_acpi@memebeam.org
3252W: http://memebeam.org/toys/ToshibaAcpiDriver
3253S: Maintained
3254
3255TOSHIBA SMM DRIVER
3256P: Jonathan Buzzard
3257M: jonathan@buzzard.org.uk
3258L: tlinux-users@tce.toshiba-dme.co.jp
3259W: http://www.buzzard.org.uk/toshiba/
3260S: Maintained
3261
3262TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3263P: Muli Ben-Yehuda
3264M: mulix@mulix.org
3265L: linux-kernel@vger.kernel.org
3266S: Maintained
3267
3268TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003269P: Adrian Bunk
3270M: trivial@kernel.org
3271L: linux-kernel@vger.kernel.org
3272W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3273T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3274S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
3276TMS380 TOKEN-RING NETWORK DRIVER
3277P: Adam Fritzler
3278M: mid@auk.cx
3279L: linux-tr@linuxtr.net
3280W: http://www.auk.cx/tms380tr/
3281S: Maintained
3282
3283TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003284P: Valerie Henson
3285M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286L: tulip-users@lists.sourceforge.net
3287W: http://sourceforge.net/projects/tulip/
3288S: Maintained
3289
3290TUN/TAP driver
3291P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003292M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293L: vtun@office.satix.net
3294W: http://vtun.sourceforge.net/tun
3295S: Maintained
3296
3297U14-34F SCSI DRIVER
3298P: Dario Ballabio
3299M: ballabio_dario@emc.com
3300L: linux-scsi@vger.kernel.org
3301S: Maintained
3302
3303UDF FILESYSTEM
3304P: Ben Fennema
3305M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306W: http://linux-udf.sourceforge.net
3307S: Maintained
3308
3309UNIFORM CDROM DRIVER
3310P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003311M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312L: linux-kernel@vger.kernel.org
3313W: http://www.kernel.dk
3314S: Maintained
3315
3316USB ACM DRIVER
3317P: Oliver Neukum
3318M: oliver@neukum.name
3319L: linux-usb-users@lists.sourceforge.net
3320L: linux-usb-devel@lists.sourceforge.net
3321S: Maintained
3322
3323USB BLOCK DRIVER (UB ub)
3324P: Pete Zaitcev
3325M: zaitcev@redhat.com
3326L: linux-kernel@vger.kernel.org
3327L: linux-usb-devel@lists.sourceforge.net
3328S: Supported
3329
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330USB CDC ETHERNET DRIVER
3331P: Greg Kroah-Hartman
3332M: greg@kroah.com
3333L: linux-usb-users@lists.sourceforge.net
3334L: linux-usb-devel@lists.sourceforge.net
3335S: Maintained
3336W: http://www.kroah.com/linux-usb/
3337
3338USB EHCI DRIVER
3339P: David Brownell
3340M: dbrownell@users.sourceforge.net
3341L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003342S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
Luca Risolia7ce08c92006-01-11 02:06:59 +00003344USB ET61X[12]51 DRIVER
3345P: Luca Risolia
3346M: luca.risolia@studio.unibo.it
3347L: linux-usb-devel@lists.sourceforge.net
3348L: video4linux-list@redhat.com
3349W: http://www.linux-projects.org
3350S: Maintained
3351
David Brownell69ae9e32006-11-14 02:03:31 -08003352USB GADGET/PERIPHERAL SUBSYSTEM
3353P: David Brownell
3354M: dbrownell@users.sourceforge.net
3355L: linux-usb-devel@lists.sourceforge.net
3356W: http://www.linux-usb.org/gadget
3357S: Maintained
3358
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003360P: Jiri Kosina
3361M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362L: linux-usb-devel@lists.sourceforge.net
3363S: Maintained
3364
3365USB HUB DRIVER
3366P: Johannes Erdfelt
3367M: johannes@erdfelt.com
3368L: linux-usb-users@lists.sourceforge.net
3369L: linux-usb-devel@lists.sourceforge.net
3370S: Maintained
3371
Olav Kongas959eea22005-11-03 17:38:14 +02003372USB ISP116X DRIVER
3373P: Olav Kongas
3374M: ok@artecdesign.ee
3375L: linux-usb-devel@lists.sourceforge.net
3376S: Maintained
3377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378USB KAWASAKI LSI DRIVER
3379P: Oliver Neukum
3380M: oliver@neukum.name
3381L: linux-usb-users@lists.sourceforge.net
3382L: linux-usb-devel@lists.sourceforge.net
3383S: Maintained
3384
3385USB MASS STORAGE DRIVER
3386P: Matthew Dharm
3387M: mdharm-usb@one-eyed-alien.net
3388L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003389L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390S: Maintained
3391W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3392
3393USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003394P: David Brownell
3395M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396L: linux-usb-users@lists.sourceforge.net
3397L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003398S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
Matthias Urlichsba460e42005-07-14 00:33:47 -07003400USB OPTION-CARD DRIVER
3401P: Matthias Urlichs
3402M: smurf@smurf.noris.de
3403L: linux-usb-devel@lists.sourceforge.net
3404S: Maintained
3405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406USB OV511 DRIVER
3407P: Mark McClelland
3408M: mmcclell@bigfoot.com
3409L: linux-usb-users@lists.sourceforge.net
3410L: linux-usb-devel@lists.sourceforge.net
3411W: http://alpha.dyndns.org/ov511/
3412S: Maintained
3413
3414USB PEGASUS DRIVER
3415P: Petko Manolov
3416M: petkan@users.sourceforge.net
3417L: linux-usb-users@lists.sourceforge.net
3418L: linux-usb-devel@lists.sourceforge.net
3419W: http://pegasus2.sourceforge.net/
3420S: Maintained
3421
3422USB PRINTER DRIVER
3423P: Vojtech Pavlik
3424M: vojtech@suse.cz
3425L: linux-usb-users@lists.sourceforge.net
3426L: linux-usb-devel@lists.sourceforge.net
3427S: Maintained
3428
3429USB RTL8150 DRIVER
3430P: Petko Manolov
3431M: petkan@users.sourceforge.net
3432L: linux-usb-users@lists.sourceforge.net
3433L: linux-usb-devel@lists.sourceforge.net
3434W: http://pegasus2.sourceforge.net/
3435S: Maintained
3436
3437USB SE401 DRIVER
3438P: Jeroen Vreeken
3439M: pe1rxq@amsat.org
3440L: linux-usb-users@lists.sourceforge.net
3441L: linux-usb-devel@lists.sourceforge.net
3442W: http://www.chello.nl/~j.vreeken/se401/
3443S: Maintained
3444
3445USB SERIAL CYBERJACK DRIVER
3446P: Matthias Bruestle and Harald Welte
3447M: support@reiner-sct.com
3448W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3449S: Maintained
3450
3451USB SERIAL DIGI ACCELEPORT DRIVER
3452P: Peter Berger and Al Borchers
3453M: pberger@brimson.com
3454M: alborchers@steinerpoint.com
3455L: linux-usb-users@lists.sourceforge.net
3456L: linux-usb-devel@lists.sourceforge.net
3457S: Maintained
3458
3459USB SERIAL DRIVER
3460P: Greg Kroah-Hartman
3461M: gregkh@suse.de
3462L: linux-usb-users@lists.sourceforge.net
3463L: linux-usb-devel@lists.sourceforge.net
3464S: Supported
3465
3466USB SERIAL BELKIN F5U103 DRIVER
3467P: William Greathouse
3468M: wgreathouse@smva.com
3469L: linux-usb-users@lists.sourceforge.net
3470L: linux-usb-devel@lists.sourceforge.net
3471S: Maintained
3472
3473USB SERIAL CYPRESS M8 DRIVER
3474P: Lonnie Mendez
3475M: dignome@gmail.com
3476L: linux-usb-users@lists.sourceforge.net
3477L: linux-usb-devel@lists.sourceforge.net
3478S: Maintained
3479W: http://geocities.com/i0xox0i
3480W: http://firstlight.net/cvs
3481
3482USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3483L: linux-usb-users@lists.sourceforge.net
3484L: linux-usb-devel@lists.sourceforge.net
3485S: Maintained
3486
3487USB AUERSWALD DRIVER
3488P: Wolfgang Muees
3489M: wolfgang@iksw-muees.de
3490L: linux-usb-users@lists.sourceforge.net
3491L: linux-usb-devel@lists.sourceforge.net
3492S: Maintained
3493
3494USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3495P: Gary Brubaker
3496M: xavyer@ix.netcom.com
3497L: linux-usb-users@lists.sourceforge.net
3498L: linux-usb-devel@lists.sourceforge.net
3499S: Maintained
3500
3501USB SERIAL KEYSPAN DRIVER
3502P: Greg Kroah-Hartman
3503M: greg@kroah.com
3504L: linux-usb-users@lists.sourceforge.net
3505L: linux-usb-devel@lists.sourceforge.net
3506W: http://www.kroah.com/linux/
3507S: Maintained
3508
3509USB SERIAL WHITEHEAT DRIVER
3510P: Stuart MacDonald
3511M: stuartm@connecttech.com
3512L: linux-usb-users@lists.sourceforge.net
3513L: linux-usb-devel@lists.sourceforge.net
3514W: http://www.connecttech.com
3515S: Supported
3516
3517USB SN9C10x DRIVER
3518P: Luca Risolia
3519M: luca.risolia@studio.unibo.it
3520L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003521L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522W: http://www.linux-projects.org
3523S: Maintained
3524
3525USB SUBSYSTEM
3526P: Greg Kroah-Hartman
3527M: gregkh@suse.de
3528L: linux-usb-users@lists.sourceforge.net
3529L: linux-usb-devel@lists.sourceforge.net
3530W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003531T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532S: Supported
3533
3534USB UHCI DRIVER
3535P: Alan Stern
3536M: stern@rowland.harvard.edu
3537L: linux-usb-users@lists.sourceforge.net
3538L: linux-usb-devel@lists.sourceforge.net
3539S: Maintained
3540
David Brownell69ae9e32006-11-14 02:03:31 -08003541USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542P: David Brownell
3543M: dbrownell@users.sourceforge.net
3544L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003545W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546S: Maintained
3547
3548USB W996[87]CF DRIVER
3549P: Luca Risolia
3550M: luca.risolia@studio.unibo.it
3551L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003552L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553W: http://www.linux-projects.org
3554S: Maintained
3555
Luca Risolia60f78052006-02-06 16:29:35 +00003556USB ZC0301 DRIVER
3557P: Luca Risolia
3558M: luca.risolia@studio.unibo.it
3559L: linux-usb-devel@lists.sourceforge.net
3560L: video4linux-list@redhat.com
3561W: http://www.linux-projects.org
3562S: Maintained
3563
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564USB ZD1201 DRIVER
3565P: Jeroen Vreeken
3566M: pe1rxq@amsat.org
3567L: linux-usb-users@lists.sourceforge.net
3568L: linux-usb-devel@lists.sourceforge.net
3569W: http://linux-lc100020.sourceforge.net
3570S: Maintained
3571
3572USER-MODE LINUX
3573P: Jeff Dike
3574M: jdike@karaya.com
3575L: user-mode-linux-devel@lists.sourceforge.net
3576L: user-mode-linux-user@lists.sourceforge.net
3577W: http://user-mode-linux.sourceforge.net
3578S: Maintained
3579
3580FAT/VFAT/MSDOS FILESYSTEM:
3581P: OGAWA Hirofumi
3582M: hirofumi@mail.parknet.co.jp
3583L: linux-kernel@vger.kernel.org
3584S: Maintained
3585
3586VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3587P: Jeff Garzik
3588S: Odd fixes
3589
3590VIA RHINE NETWORK DRIVER
3591P: Roger Luethi
3592M: rl@hellgate.ch
3593S: Maintained
3594
Jean Delvare32c0a522005-09-22 21:47:58 +02003595VIAPRO SMBUS DRIVER
3596P: Jean Delvare
3597M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003598L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003599S: Maintained
3600
Francois Romieu01f20732007-01-26 00:57:17 -08003601VIA VELOCITY NETWORK DRIVER
3602P: Francois Romieu
3603M: romieu@fr.zoreil.com
3604L: netdev@vger.kernel.org
3605S: Maintained
3606
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607UCLINUX (AND M68KNOMMU)
3608P: Greg Ungerer
3609M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003611L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612S: Maintained
3613
3614UCLINUX FOR NEC V850
3615P: Miles Bader
3616M: uclinux-v850@lsi.nec.co.jp
3617W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3618W: http://www.ee.nec.de/uclinux/
3619S: Supported
3620
3621UCLINUX FOR RENESAS H8/300
3622P: Yoshinori Sato
3623M: ysato@users.sourceforge.jp
3624W: http://uclinux-h8.sourceforge.jp/
3625S: Supported
3626
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003627UFS FILESYSTEM
3628P: Evgeniy Dushistov
3629M: dushistov@mail.ru
3630L: linux-kernel@vger.kernel.org
3631S: Maintained
3632
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633USB DIAMOND RIO500 DRIVER
3634P: Cesar Miquel
3635M: miquel@df.uba.ar
3636L: rio500-users@lists.sourceforge.net
3637W: http://rio500.sourceforge.net
3638S: Maintained
3639
3640VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003641P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003642M: mchehab@infradead.org
3643M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003645W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003646T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003647S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648
Juerg Haefligerab413192006-09-24 20:54:04 +02003649VT1211 HARDWARE MONITOR DRIVER
3650P: Juerg Haefliger
3651M: juergh@gmail.com
3652L: lm-sensors@lm-sensors.org
3653S: Maintained
3654
Roger Lucas1de9e372005-11-26 20:20:05 +01003655VT8231 HARDWARE MONITOR DRIVER
3656P: Roger Lucas
3657M: roger@planbit.co.uk
3658L: lm-sensors@lm-sensors.org
3659S: Maintained
3660
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661W1 DALLAS'S 1-WIRE BUS
3662P: Evgeniy Polyakov
3663M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664S: Maintained
3665
Charles Spirakis13927072006-07-05 18:05:15 +02003666W83791D HARDWARE MONITORING DRIVER
3667P: Charles Spirakis
3668M: bezaur@gmail.com
3669L: lm-sensors@lm-sensors.org
3670S: Maintained
3671
Rudolf Marek61db0112006-12-12 18:18:30 +01003672W83793 HARDWARE MONITORING DRIVER
3673P: Rudolf Marek
3674M: r.marek@assembler.cz
3675L: lm-sensors@lm-sensors.org
3676S: Maintained
3677
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678W83L51xD SD/MMC CARD INTERFACE DRIVER
3679P: Pierre Ossman
3680M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003681L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682W: http://projects.drzeus.cx/wbsd
3683S: Maintained
3684
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003685WATCHDOG DEVICE DRIVERS
3686P: Wim Van Sebroeck
3687M: wim@iguana.be
3688T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3689S: Maintained
3690
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3692P: Jean Tourrilhes
3693M: jt@hpl.hp.com
3694W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3695S: Maintained
3696
3697WD7000 SCSI DRIVER
3698P: Miroslav Zagorac
3699M: zaga@fly.cc.fer.hr
3700L: linux-scsi@vger.kernel.org
3701S: Maintained
3702
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003703WISTRON LAPTOP BUTTON DRIVER
3704P: Miloslav Trmac
3705M: mitr@volny.cz
3706S: Maintained
3707
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708WL3501 WIRELESS PCMCIA CARD DRIVER
3709P: Arnaldo Carvalho de Melo
3710M: acme@conectiva.com.br
3711W: http://advogato.org/person/acme
3712S: Maintained
3713
3714X.25 NETWORK LAYER
3715P: Henner Eisen
3716M: eis@baty.hanse.de
3717L: linux-x25@vger.kernel.org
3718S: Maintained
3719
3720XFS FILESYSTEM
3721P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003722P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003724L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003726T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727S: Supported
3728
Peter Korsgaard238b8722006-12-06 20:35:17 -08003729XILINX UARTLITE SERIAL DRIVER
3730P: Peter Korsgaard
3731M: jacmet@sunsite.dk
3732L: linux-serial@vger.kernel.org
3733S: Maintained
3734
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735X86 3-LEVEL PAGING (PAE) SUPPORT
3736P: Ingo Molnar
3737M: mingo@redhat.com
3738S: Maintained
3739
3740X86-64 port
3741P: Andi Kleen
3742M: ak@suse.de
3743L: discuss@x86-64.org
3744W: http://www.x86-64.org
3745S: Maintained
3746
3747YAM DRIVER FOR AX.25
3748P: Jean-Paul Roubelat
3749M: jpr@f6fbb.org
3750L: linux-hams@vger.kernel.org
3751S: Maintained
3752
Henkaf64a5e2005-10-12 15:02:56 +02003753YEALINK PHONE DRIVER
3754P: Henk Vergonet
3755M: Henk.Vergonet@gmail.com
3756L: usbb2k-api-dev@nongnu.org
3757S: Maintained
3758
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759Z8530 DRIVER FOR AX.25
3760P: Joerg Reuter
3761M: jreuter@yaina.de
3762W: http://yaina.de/jreuter/
3763W: http://www.qsl.net/dl1bke/
3764L: linux-hams@vger.kernel.org
3765S: Maintained
3766
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003767ZD1211RW WIRELESS DRIVER
3768P: Daniel Drake
3769M: dsd@gentoo.org
3770P: Ulrich Kunitz
3771M: kune@deine-taler.de
3772W: http://zd1211.ath.cx/wiki/DriverRewrite
3773L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3774S: Maintained
3775
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776ZF MACHZ WATCHDOG
3777P: Fernando Fuganti
3778M: fuganti@netbank.com.br
3779W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3780S: Maintained
3781
3782ZR36067 VIDEO FOR LINUX DRIVER
3783P: Ronald Bultje
3784M: rbultje@ronald.bitfreak.net
3785L: mjpeg-users@lists.sourceforge.net
3786W: http://mjpeg.sourceforge.net/driver-zoran/
3787S: Maintained
3788
3789ZR36120 VIDEO FOR LINUX DRIVER
3790P: Pauline Middelink
3791M: middelin@polyware.nl
3792W: http://www.polyware.nl/~middelin/En/hobbies.html
3793W: http://www.polyware.nl/~middelin/hobbies.html
3794S: Maintained
3795
3796THE REST
3797P: Linus Torvalds
3798S: Buried alive in reporters