blob: 93a338daedd83b5168bf891a85305167043dd124 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250AD1816 SOUND DRIVER
251P: Thorsten Knabe
252M: Thorsten Knabe <linux@thorsten-knabe.de>
253W: http://linux.thorsten-knabe.de
254S: Maintained
255
Kyle McMartin6958ae32005-10-21 23:11:27 -0400256AD1889 SOUND DRIVER
257P: Kyle McMartin
258M: kyle@parisc-linux.org
259P: Thibaut Varene
260M: T-Bone@parisc-linux.org
261W: http://wiki.parisc-linux.org/AD1889
262L: parisc-linux@lists.parisc-linux.org
263S: Maintained
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265ADM1025 HARDWARE MONITOR DRIVER
266P: Jean Delvare
267M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200268L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269S: Maintained
270
271ADT746X FAN DRIVER
272P: Colin Leroy
273M: colin@colino.net
274S: Maintained
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276AEDSP16 DRIVER
277P: Riccardo Facchetti
278M: fizban@tin.it
279S: Maintained
280
281AFFS FILE SYSTEM
282P: Roman Zippel
283M: zippel@linux-m68k.org
284S: Maintained
285
286AGPGART DRIVER
287P: Dave Jones
288M: davej@codemonkey.org.uk
289W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800290T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291S: Maintained
292
293AHA152X SCSI DRIVER
294P: Juergen E. Fischer
295M: Juergen Fischer <fischer@norbit.de>
296L: linux-scsi@vger.kernel.org
297S: Maintained
298
299ALCATEL SPEEDTOUCH USB DRIVER
300P: Duncan Sands
301M: duncan.sands@free.fr
302L: linux-usb-users@lists.sourceforge.net
303L: linux-usb-devel@lists.sourceforge.net
304W: http://www.linux-usb.org/SpeedTouch/
305S: Maintained
306
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000307ALI1563 I2C DRIVER
308P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100309M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200310L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000311S: Maintained
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313ALPHA PORT
314P: Richard Henderson
315M: rth@twiddle.net
316S: Odd Fixes for 2.4; Maintained for 2.6.
317P: Ivan Kokshaysky
318M: ink@jurassic.park.msu.ru
319S: Maintained for 2.4; PCI support for 2.6.
320
Jordan Crousef90b8112006-01-06 00:12:14 -0800321AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100322P: Jordan Crouse
323M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800324L: info-linux@geode.amd.com
325W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
326S: Supported
327
Stelian Pop284f42b2006-12-12 18:18:31 +0100328AMS (Apple Motion Sensor) DRIVER
329P: Stelian Pop
330M: stelian@popies.net
331P: Michael Hanselmann
332M: linux-kernel@hansmi.ch
333S: Supported
334
Tom Tuckerf94b5332006-09-22 15:22:48 -0700335AMSO1100 RNIC DRIVER
336P: Tom Tucker
337M: tom@opengridcomputing.com
338P: Steve Wise
339M: swise@opengridcomputing.com
340L: openib-general@openib.org
341S: Maintained
342
Johannes Berg42269062006-07-25 16:15:50 +0200343AOA (Apple Onboard Audio) ALSA DRIVER
344P: Johannes Berg
345M: johannes@sipsolutions.net
346L: linuxppc-dev@ozlabs.org
347L: alsa-devel@alsa-project.org
348S: Maintained
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350APM DRIVER
351P: Stephen Rothwell
352M: sfr@canb.auug.org.au
353L: linux-laptop@vger.kernel.org
354W: http://www.canb.auug.org.au/~sfr/
355S: Supported
356
357APPLETALK NETWORK LAYER
358P: Arnaldo Carvalho de Melo
359M: acme@conectiva.com.br
360S: Maintained
361
Jaya Kumar1154ea72005-06-21 17:17:04 -0700362ARC FRAMEBUFFER DRIVER
363P: Jaya Kumar
364M: jayalk@intworks.biz
365S: Maintained
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367ARM26 ARCHITECTURE
368P: Ian Molton
369M: spyro@f2s.com
370S: Maintained
371
372ARM26/ARCHIMEDES
373P: Ian Molton
374M: spyro@f2s.com
375S: Maintained
376
377ARM26/A5000
378P: John Appleby
379M: john@dnsworld.co.uk
380S: Maintained
381
382ARM MFM AND FLOPPY DRIVERS
383P: Ian Molton
384M: spyro@f2s.com
385S: Maintained
386
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800387ARM/ADI ROADRUNNER MACHINE SUPPORT
388P: Lennert Buytenhek
389M: kernel@wantstofly.org
390L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
391S: Maintained
392
393ARM/ADS SPHERE MACHINE SUPPORT
394P: Lennert Buytenhek
395M: kernel@wantstofly.org
396L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
397S: Maintained
398
399ARM/AJECO 1ARM MACHINE SUPPORT
400P: Lennert Buytenhek
401M: kernel@wantstofly.org
402L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
403S: Maintained
404
Andrew Victord4a89c72006-12-04 13:56:21 +0100405ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
406P: Andrew Victor
407M: andrew@sanpeople.com
408L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
409W: http://maxim.org.za/at91_26.html
410S: Maintained
411
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800412ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
413P: Lennert Buytenhek
414M: kernel@wantstofly.org
415L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
416S: Maintained
417
418ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
419P: Lennert Buytenhek
420M: kernel@wantstofly.org
421L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
422S: Maintained
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424ARM/CORGI MACHINE SUPPORT
425P: Richard Purdie
426M: rpurdie@rpsys.net
427S: Maintained
428
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800429ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
430P: Lennert Buytenhek
431M: kernel@wantstofly.org
432L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
433S: Maintained
434
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100435ARM/HP JORNADA 7XX MACHINE SUPPORT
436P: Kristoffer Ericson
437M: kristoffer_e1@hotmail.com
438W: www.jlime.com
439S: Maintained
440
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800441ARM/INTEL IOP32X ARM ARCHITECTURE
442P: Lennert Buytenhek
443M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100444P: Dan Williams
445M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800446L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100447S: Supported
448
449ARM/INTEL IOP33X ARM ARCHITECTURE
450P: Dan Williams
451M: dan.j.williams@intel.com
452L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
453S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800454
455ARM/INTEL IOP13XX ARM ARCHITECTURE
456P: Lennert Buytenhek
457M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100458P: Dan Williams
459M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800460L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100461S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800462
463ARM/INTEL IQ81342EX MACHINE SUPPORT
464P: Lennert Buytenhek
465M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100466P: Dan Williams
467M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800468L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100469S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800470
471ARM/INTEL IXP2000 ARM ARCHITECTURE
472P: Lennert Buytenhek
473M: kernel@wantstofly.org
474L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
475S: Maintained
476
477ARM/INTEL IXDP2850 MACHINE SUPPORT
478P: Lennert Buytenhek
479M: kernel@wantstofly.org
480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
481S: Maintained
482
483ARM/INTEL IXP23XX ARM ARCHITECTURE
484P: Lennert Buytenhek
485M: kernel@wantstofly.org
486L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
487S: Maintained
488
489ARM/INTEL XSC3 (MANZANO) ARM CORE
490P: Lennert Buytenhek
491M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100492P: Dan Williams
493M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800494L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100495S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800496
497ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
498P: Lennert Buytenhek
499M: kernel@wantstofly.org
500L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
501S: Maintained
502
503ARM/LOGICPD PXA270 MACHINE SUPPORT
504P: Lennert Buytenhek
505M: kernel@wantstofly.org
506L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
507S: Maintained
508
Dirk Opfer8459c152005-11-06 14:27:52 +0000509ARM/TOSA MACHINE SUPPORT
510P: Dirk Opfer
511M: dirk@opfer-online.de
512S: Maintained
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514ARM/PLEB SUPPORT
515P: Peter Chubb
516M: pleb@gelato.unsw.edu.au
517W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
518S: Maintained
519
520ARM/PT DIGITAL BOARD PORT
521P: Stefan Eletzhofer
522M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700523L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524W: http://www.arm.linux.org.uk/
525S: Maintained
526
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800527ARM/RADISYS ENP2611 MACHINE SUPPORT
528P: Lennert Buytenhek
529M: kernel@wantstofly.org
530L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
531S: Maintained
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533ARM/SHARK MACHINE SUPPORT
534P: Alexander Schulz
535M: alex@shark-linux.de
536W: http://www.shark-linux.de/shark.html
537S: Maintained
538
539ARM/STRONGARM110 PORT
540P: Russell King
541M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700542L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543W: http://www.arm.linux.org.uk/
544S: Maintained
545
546ARM/S3C2410 ARM ARCHITECTURE
547P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800548M: ben-linux@fluff.org
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.fluff.org/ben/linux/
551S: Maintained
552
553ARM/S3C2440 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
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800560ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
561P: Lennert Buytenhek
562M: kernel@wantstofly.org
563L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
564S: Maintained
565
566ARM/THECUS N2100 MACHINE SUPPORT
567P: Lennert Buytenhek
568M: kernel@wantstofly.org
569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
570S: Maintained
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572ARPD SUPPORT
573P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700574L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575S: Maintained
576
577ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500578P: Corentin Chary
579M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580P: Karol Kozimor
581M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582L: acpi4asus-user@lists.sourceforge.net
583W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500584W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585S: Maintained
586
Corentin Chary85091b72007-01-26 14:04:30 +0100587ASUS LAPTOP EXTRAS DRIVER
588P: Corentin Chary
589M: corentincj@iksaif.net
590L: acpi4asus-user@lists.sourceforge.net
591W: http://sourceforge.net/projects/acpi4asus
592W: http://xf.iksaif.net/acpi4asus
593S: Maintained
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595ATA OVER ETHERNET DRIVER
596P: Ed L. Cashin
597M: ecashin@coraid.com
598W: http://www.coraid.com/support/linux
599S: Supported
600
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600601ATL1 ETHERNET DRIVER
602P: Jay Cliburn
603M: jcliburn@gmail.com
604P: Chris Snook
605M: csnook@redhat.com
606L: atl1-devel@lists.sourceforge.net
607W: http://sourceforge.net/projects/atl1
608W: http://atl1.sourceforge.net
609S: Maintained
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611ATM
612P: Chas Williams
613M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700614L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615W: http://linux-atm.sourceforge.net
616S: Maintained
617
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100618ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100619P: Haavard Skinnemoen
620M: hskinnemoen@atmel.com
621S: Supported
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623ATMEL WIRELESS DRIVER
624P: Simon Kelley
625M: simon@thekelleys.org.uk
626W: http://www.thekelleys.org.uk/atmel
627W: http://atmelwlandriver.sourceforge.net/
628S: Maintained
629
Chris Wrighta92b7b82005-07-07 18:12:23 -0700630AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100631P: David Woodhouse
632M: dwmw2@infradead.org
633L: linux-audit@redhat.com
634W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800635T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700636S: Maintained
637
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800638AUXILIARY DISPLAY DRIVERS
639P: Miguel Ojeda Sandonis
640M: maxextreme@gmail.com
641L: linux-kernel@vger.kernel.org
642S: Maintained
643
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700644AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700645P: Haavard Skinnemoen
646M: hskinnemoen@atmel.com
647W: http://www.atmel.com/products/AVR32/
648W: http://avr32linux.org/
649W: http://avrfreaks.net/
650S: Supported
651
652AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700653P: Haavard Skinnemoen
654M: hskinnemoen@atmel.com
655S: Supported
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657AX.25 NETWORK LAYER
658P: Ralf Baechle
659M: ralf@linux-mips.org
660L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200661W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662S: Maintained
663
664BAYCOM/HDLCDRV DRIVERS FOR AX.25
665P: Thomas Sailer
666M: t.sailer@alumni.ethz.ch
667L: linux-hams@vger.kernel.org
668W: http://www.baycom.org/~tom/ham/ham.html
669S: Maintained
670
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200671BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
672P: Larry Finger
673M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200674P: Stefano Brivio
675M: st3@riseup.net
676W: http://bcm43xx.berlios.de/
677S: Maintained
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679BEFS FILE SYSTEM
680P: Sergey S. Kostyliov
681M: rathamahata@php4.ru
682L: linux-kernel@vger.kernel.org
683S: Maintained
684
685BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
686P: Kenji Hollis
687W: http://ftp.bitgate.com/pcwd/
688S: Maintained
689
690BFS FILE SYSTEM
691P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800692M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693L: linux-kernel@vger.kernel.org
694S: Maintained
695
696BLOCK LAYER
697P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200698M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800700T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701S: Maintained
702
703BLUETOOTH SUBSYSTEM
704P: Marcel Holtmann
705M: marcel@holtmann.org
706P: Maxim Krasnyansky
707M: maxk@qualcomm.com
708L: bluez-devel@lists.sf.net
709W: http://bluez.sf.net
710W: http://www.bluez.org
711W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800712T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713S: Maintained
714
715BLUETOOTH RFCOMM LAYER
716P: Marcel Holtmann
717M: marcel@holtmann.org
718P: Maxim Krasnyansky
719M: maxk@qualcomm.com
720S: Maintained
721
722BLUETOOTH BNEP LAYER
723P: Marcel Holtmann
724M: marcel@holtmann.org
725P: Maxim Krasnyansky
726M: maxk@qualcomm.com
727S: Maintained
728
729BLUETOOTH CMTP LAYER
730P: Marcel Holtmann
731M: marcel@holtmann.org
732S: Maintained
733
734BLUETOOTH HIDP LAYER
735P: Marcel Holtmann
736M: marcel@holtmann.org
737S: Maintained
738
739BLUETOOTH HCI UART DRIVER
740P: Marcel Holtmann
741M: marcel@holtmann.org
742P: Maxim Krasnyansky
743M: maxk@qualcomm.com
744S: Maintained
745
746BLUETOOTH HCI USB DRIVER
747P: Marcel Holtmann
748M: marcel@holtmann.org
749P: Maxim Krasnyansky
750M: maxk@qualcomm.com
751S: Maintained
752
753BLUETOOTH HCI BCM203X DRIVER
754P: Marcel Holtmann
755M: marcel@holtmann.org
756S: Maintained
757
758BLUETOOTH HCI BPA10X DRIVER
759P: Marcel Holtmann
760M: marcel@holtmann.org
761S: Maintained
762
763BLUETOOTH HCI BFUSB DRIVER
764P: Marcel Holtmann
765M: marcel@holtmann.org
766S: Maintained
767
768BLUETOOTH HCI DTL1 DRIVER
769P: Marcel Holtmann
770M: marcel@holtmann.org
771S: Maintained
772
773BLUETOOTH HCI BLUECARD DRIVER
774P: Marcel Holtmann
775M: marcel@holtmann.org
776S: Maintained
777
778BLUETOOTH HCI BT3C DRIVER
779P: Marcel Holtmann
780M: marcel@holtmann.org
781S: Maintained
782
783BLUETOOTH HCI BTUART DRIVER
784P: Marcel Holtmann
785M: marcel@holtmann.org
786S: Maintained
787
788BLUETOOTH HCI VHCI DRIVER
789P: Maxim Krasnyansky
790M: maxk@qualcomm.com
791S: Maintained
792
793BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100794P: Chad Tindel
795M: ctindel@users.sourceforge.net
796P: Jay Vosburgh
797M: fubar@us.ibm.com
798L: bonding-devel@lists.sourceforge.net
799W: http://sourceforge.net/projects/bonding/
800S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000802BROADBAND PROCESSOR ARCHITECTURE
803P: Arnd Bergmann
804M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100805L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400806W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000807S: Supported
808
Gary Zambrano39105892006-06-22 17:26:20 -0700809BROADCOM B44 10/100 ETHERNET DRIVER
810P: Gary Zambrano
811M: zambrano@broadcom.com
812L: netdev@vger.kernel.org
813S: Supported
814
Michael Chan948c51e2006-06-04 02:51:39 -0700815BROADCOM BNX2 GIGABIT ETHERNET DRIVER
816P: Michael Chan
817M: mchan@broadcom.com
818L: netdev@vger.kernel.org
819S: Supported
820
821BROADCOM TG3 GIGABIT ETHERNET DRIVER
822P: Michael Chan
823M: mchan@broadcom.com
824L: netdev@vger.kernel.org
825S: Supported
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700828P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200829M: mchehab@infradead.org
830M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700832W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200833T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700834S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200836CALGARY x86-64 IOMMU
837P: Muli Ben-Yehuda
838M: muli@il.ibm.com
839P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200840M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200841L: linux-kernel@vger.kernel.org
842L: discuss@x86-64.org
843S: Maintained
844
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800845CFAG12864B LCD DRIVER
846P: Miguel Ojeda Sandonis
847M: maxextreme@gmail.com
848L: linux-kernel@vger.kernel.org
849S: Maintained
850
851CFAG12864BFB LCD FRAMEBUFFER DRIVER
852P: Miguel Ojeda Sandonis
853M: maxextreme@gmail.com
854L: linux-kernel@vger.kernel.org
855S: Maintained
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857COMMON INTERNET FILE SYSTEM (CIFS)
858P: Steve French
859M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100860L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861L: samba-technical@lists.samba.org
862W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800863T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864S: Supported
865
Joel Becker7063fbf2005-12-15 14:29:43 -0800866CONFIGFS
867P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800868M: joel.becker@oracle.com
869L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800870S: Supported
871
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800872CIRRUS LOGIC EP93XX ETHERNET DRIVER
873P: Lennert Buytenhek
874M: kernel@wantstofly.org
875L: netdev@vger.kernel.org
876S: Maintained
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878CIRRUS LOGIC GENERIC FBDEV DRIVER
879P: Jeff Garzik
880M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800881L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882S: Odd Fixes
883
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800884CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
885P: Lennert Buytenhek
886M: kernel@wantstofly.org
887L: linux-usb-devel@lists.sourceforge.net
888S: Maintained
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
891P: Cirrus Logic Corporation (kernel 2.2 driver)
892M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
893P: Nils Faerber (port to kernel 2.4)
894M: Nils Faerber <nils@kernelconcepts.de>
895S: Maintained
896
897CODA FILE SYSTEM
898P: Jan Harkes
899M: jaharkes@cs.cmu.edu
900M: coda@cs.cmu.edu
901L: codalist@coda.cs.cmu.edu
902W: http://www.coda.cs.cmu.edu/
903S: Maintained
904
905COMPACTPCI HOTPLUG CORE
906P: Scott Murray
907M: scottm@somanetworks.com
908M: scott@spiteful.org
909L: pcihpd-discuss@lists.sourceforge.net
910S: Supported
911
912COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
913P: Scott Murray
914M: scottm@somanetworks.com
915M: scott@spiteful.org
916L: pcihpd-discuss@lists.sourceforge.net
917S: Supported
918
919COMPACTPCI HOTPLUG GENERIC DRIVER
920P: Scott Murray
921M: scottm@somanetworks.com
922M: scott@spiteful.org
923L: pcihpd-discuss@lists.sourceforge.net
924S: Supported
925
926COMPUTONE INTELLIPORT MULTIPORT CARD
927P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700928M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700930S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932COSA/SRP SYNC SERIAL DRIVER
933P: Jan "Yenya" Kasprzak
934M: kas@fi.muni.cz
935W: http://www.fi.muni.cz/~kas/cosa/
936S: Maintained
937
938CPU FREQUENCY DRIVERS
939P: Dave Jones
940M: davej@codemonkey.org.uk
941L: cpufreq@lists.linux.org.uk
942W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500943T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944S: Maintained
945
946CPUID/MSR DRIVER
947P: H. Peter Anvin
948M: hpa@zytor.com
949S: Maintained
950
Paul Jacksoned90fb42005-09-27 21:45:37 -0700951CPUSETS
952P: Paul Jackson
953P: Simon Derr
954M: pj@sgi.com
955M: simon.derr@bull.net
956L: linux-kernel@vger.kernel.org
957W: http://www.bullopensource.org/cpuset/
958S: Supported
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100961W: http://sourceforge.net/projects/cramfs/
962S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964CRIS PORT
965P: Mikael Starvik
966M: starvik@axis.com
967L: dev-etrax@axis.com
968W: http://developer.axis.com
969S: Maintained
970
971CRYPTO API
972P: Herbert Xu
973M: herbert@gondor.apana.org.au
974P: David S. Miller
975M: davem@davemloft.net
976L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800977T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978S: Maintained
979
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100980CS5535 Audio ALSA driver
981P: Jaya Kumar
982M: jayakumar.alsa@gmail.com
983S: Maintained
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985CYBERPRO FB DRIVER
986P: Russell King
987M: rmk@arm.linux.org.uk
988W: http://www.arm.linux.org.uk/
989S: Maintained
990
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700991CYBLAFB FRAMEBUFFER DRIVER
992P: Knut Petersen
993M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800994L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700995S: Maintained
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997CYCLADES 2X SYNC CARD DRIVER
998P: Arnaldo Carvalho de Melo
999M: acme@conectiva.com.br
1000W: http://advogato.org/person/acme
1001L: cycsyn-devel@bazar.conectiva.com.br
1002S: Maintained
1003
1004CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001006S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001010S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012DAMA SLAVE for AX.25
1013P: Joerg Reuter
1014M: jreuter@yaina.de
1015W: http://yaina.de/jreuter/
1016W: http://www.qsl.net/dl1bke/
1017L: linux-hams@vger.kernel.org
1018S: Maintained
1019
1020DC395x SCSI driver
1021P: Oliver Neukum
1022M: oliver@neukum.name
1023P: Ali Akcaagac
1024M: aliakc@web.de
1025P: Jamie Lenehan
1026M: lenehan@twibble.org
1027W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001028L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029L: http://lists.twibble.org/mailman/listinfo/dc395x/
1030S: Maintained
1031
1032DC390/AM53C974 SCSI driver
1033P: Kurt Garloff
1034M: garloff@suse.de
1035W: http://www.garloff.de/kurt/linux/dc390/
1036P: Guennadi Liakhovetski
1037M: g.liakhovetski@gmx.de
1038S: Maintained
1039
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001040DCCP PROTOCOL
1041P: Arnaldo Carvalho de Melo
1042M: acme@mandriva.com
1043L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001044W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001045S: Maintained
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047DECnet NETWORK LAYER
1048P: Patrick Caulfield
1049M: patrick@tykepenguin.com
1050W: http://linux-decnet.sourceforge.net
1051L: linux-decnet-user@lists.sourceforge.net
1052S: Maintained
1053
1054DEFXX FDDI NETWORK DRIVER
1055P: Maciej W. Rozycki
1056M: macro@linux-mips.org
1057S: Maintained
1058
1059DELL LAPTOP SMM DRIVER
1060P: Massimo Dal Zotto
1061M: dz@debian.org
1062W: http://www.debian.org/~dz/i8k/
1063S: Maintained
1064
Doug Warzecha90563ec2005-09-06 15:17:15 -07001065DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1066P: Doug Warzecha
1067M: Douglas_Warzecha@dell.com
1068S: Maintained
1069
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001070DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071P: Alasdair Kergon
1072L: dm-devel@redhat.com
1073W: http://sources.redhat.com/dm
1074S: Maintained
1075
1076DEVICE NUMBER REGISTRY
1077P: Torben Mathiasen
1078M: device@lanana.org
1079W: http://lanana.org/docs/device-list/index.html
1080L: linux-kernel@vger.kernel.org
1081S: Maintained
1082
1083DEVICE FILESYSTEM
1084S: Obsolete
1085
1086DIGI INTL. EPCA DRIVER
1087P: Digi International, Inc
1088M: Eng.Linux@digi.com
1089L: Eng.Linux@digi.com
1090W: http://www.digi.com
1091S: Orphaned
1092
1093DIGI RIGHTSWITCH NETWORK DRIVER
1094P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001095L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096W: http://www.digi.com
1097S: Orphaned
1098
1099DIRECTORY NOTIFICATION
1100P: Stephen Rothwell
1101M: sfr@canb.auug.org.au
1102L: linux-kernel@vger.kernel.org
1103S: Supported
1104
1105DISK GEOMETRY AND PARTITION HANDLING
1106P: Andries Brouwer
1107M: aeb@cwi.nl
1108W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1109W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1110W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1111S: Maintained
1112
1113DISKQUOTA:
1114P: Jan Kara
1115M: jack@suse.cz
1116L: linux-kernel@vger.kernel.org
1117S: Maintained
1118
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001119DISTRIBUTED LOCK MANAGER
1120P: Patrick Caulfield
1121M: pcaulfie@redhat.com
1122P: David Teigland
1123M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001124L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001125W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001126T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1127T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001128S: Supported
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1131P: Tobias Ringstrom
1132M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001133L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134S: Maintained
1135
Martin Waitzba483d52005-06-17 13:20:59 -07001136DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001137P: Randy Dunlap
1138M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001139S: Maintained
1140
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001141DOCKING STATION DRIVER
1142P: Kristen Carlson Accardi
1143M: kristen.c.accardi@intel.com
1144L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001145S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147DOUBLETALK DRIVER
1148P: James R. Van Zandt
1149M: jrv@vanzandt.mv.com
1150L: blinux-list@redhat.com
1151S: Maintained
1152
1153DRIVER CORE, KOBJECTS, AND SYSFS
1154P: Greg Kroah-Hartman
1155M: gregkh@suse.de
1156L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001157T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158S: Supported
1159
1160DRM DRIVERS
1161P: David Airlie
1162M: airlied@linux.ie
1163L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001164T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165S: Maintained
1166
1167DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001168P: Francois Romieu
1169M: romieu@fr.zoreil.com
1170L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171S: Maintained
1172
1173DVB SUBSYSTEM AND DRIVERS
1174P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001175M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001177W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001178T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001179S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181EATA-DMA SCSI DRIVER
1182P: Michael Neuffer
1183L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1184S: Maintained
1185
1186EATA ISA/EISA/PCI SCSI DRIVER
1187P: Dario Ballabio
1188M: ballabio_dario@emc.com
1189L: linux-scsi@vger.kernel.org
1190S: Maintained
1191
1192EATA-PIO SCSI DRIVER
1193P: Michael Neuffer
1194M: mike@i-Connect.Net
1195L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1196S: Maintained
1197
1198EBTABLES
1199P: Bart De Schuymer
1200M: bart.de.schuymer@pandora.be
1201L: ebtables-user@lists.sourceforge.net
1202L: ebtables-devel@lists.sourceforge.net
1203W: http://ebtables.sourceforge.net/
1204S: Maintained
1205
Michael Halcrow237fead2006-10-04 02:16:22 -07001206ECRYPT FILE SYSTEM
1207P: Mike Halcrow, Phillip Hellewell
1208M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1209L: ecryptfs-devel@lists.sourceforge.net
1210W: http://ecryptfs.sourceforge.net/
1211S: Supported
1212
Alan Coxda9bb1d2006-01-18 17:44:13 -08001213EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001214P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001215M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001216L: bluesmoke-devel@lists.sourceforge.net
1217W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001218S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001219
1220EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001221P: Mark Gross
1222M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001223L: bluesmoke-devel@lists.sourceforge.net
1224W: bluesmoke.sourceforge.net
1225S: Maintained
1226
1227EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001228P: Doug Thompson
1229M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001230L: bluesmoke-devel@lists.sourceforge.net
1231W: bluesmoke.sourceforge.net
1232S: Maintained
1233
1234EDAC-R82600
1235P: Tim Small
1236M: tim@buttersideup.com
1237L: bluesmoke-devel@lists.sourceforge.net
1238W: bluesmoke.sourceforge.net
1239S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241EEPRO100 NETWORK DRIVER
1242P: Andrey V. Savochkin
1243M: saw@saw.sw.com.sg
1244S: Maintained
1245
Josh Triplett0bee8d22006-07-30 03:03:58 -07001246EFS FILESYSTEM
1247W: http://aeschi.ch.eu.org/efs/
1248S: Orphan
1249
Heiko J Schickfab97222006-09-22 15:22:22 -07001250EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1251P: Hoang-Nam Nguyen
1252M: hnguyen@de.ibm.com
1253P: Christoph Raisch
1254M: raisch@de.ibm.com
1255L: openib-general@openib.org
1256S: Supported
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258EMU10K1 SOUND DRIVER
1259P: James Courtier-Dutton
1260M: James@superbug.demon.co.uk
1261L: emu10k1-devel@lists.sourceforge.net
1262W: http://sourceforge.net/projects/emu10k1/
1263S: Maintained
1264
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001265EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001266P: James Smart
1267M: james.smart@emulex.com
1268L: linux-scsi@vger.kernel.org
1269W: http://sourceforge.net/projects/lpfcxxxx
1270S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272EPSON 1355 FRAMEBUFFER DRIVER
1273P: Christopher Hoover
1274M: ch@murgatroid.com, ch@hpl.hp.com
1275S: Maintained
1276
1277ETHEREXPRESS-16 NETWORK DRIVER
1278P: Philip Blundell
1279M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001280L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281S: Maintained
1282
1283ETHERNET BRIDGE
1284P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08001285M: shemminger@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286L: bridge@osdl.org
1287W: http://bridge.sourceforge.net/
1288S: Maintained
1289
1290ETHERTEAM 16I DRIVER
1291P: Mika Kuoppala
1292M: miku@iki.fi
1293S: Maintained
1294
1295EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001296L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297S: Maintained
1298
1299EXT3 FILE SYSTEM
1300P: Stephen Tweedie, Andrew Morton
1301M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001302L: linux-ext4@vger.kernel.org
1303S: Maintained
1304
1305EXT4 FILE SYSTEM
1306P: Stephen Tweedie, Andrew Morton
1307M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1308L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309S: Maintained
1310
Jean Delvaree53004e2006-01-09 23:26:14 +01001311F71805F HARDWARE MONITORING DRIVER
1312P: Jean Delvare
1313M: khali@linux-fr.org
1314L: lm-sensors@lm-sensors.org
1315S: Maintained
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317FARSYNC SYNCHRONOUS DRIVER
1318P: Kevin Curtis
1319M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320W: http://www.farsite.co.uk/
1321S: Supported
1322
1323FRAMEBUFFER LAYER
1324P: Antonino Daplas
1325M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001326L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327W: http://linux-fbdev.sourceforge.net/
1328S: Maintained
1329
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001330FREESCALE SOC FS_ENET DRIVER
1331P: Pantelis Antoniou
1332M: pantelis.antoniou@gmail.com
1333P: Vitaly Bordug
1334M: vbordug@ru.mvista.com
1335L: linuxppc-embedded@ozlabs.org
1336L: netdev@vger.kernel.org
1337S: Maintained
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339FILE LOCKING (flock() and fcntl()/lockf())
1340P: Matthew Wilcox
1341M: matthew@wil.cx
1342L: linux-fsdevel@vger.kernel.org
1343S: Maintained
1344
1345FILESYSTEMS (VFS and infrastructure)
1346P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001347M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348S: Maintained
1349
1350FIRMWARE LOADER (request_firmware)
1351L: linux-kernel@vger.kernel.org
1352S: Orphan
1353
1354FPU EMULATOR
1355P: Bill Metzenthen
1356M: billm@suburbia.net
1357W: http://suburbia.net/~billm/floating-point/emulator/
1358S: Maintained
1359
1360FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1361P: Mike McLagan
1362M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001363L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364S: Maintained
1365
1366FREEVXFS FILESYSTEM
1367P: Christoph Hellwig
1368M: hch@infradead.org
1369W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1370S: Maintained
1371
1372FUJITSU FR-V PORT
1373P: David Howells
1374M: dhowells@redhat.com
1375S: Maintained
1376
Miklos Szeredi04578f12005-09-09 13:10:22 -07001377FUSE: FILESYSTEM IN USERSPACE
1378P: Miklos Szeredi
1379M: miklos@szeredi.hu
1380L: fuse-devel@lists.sourceforge.net
1381W: http://fuse.sourceforge.net/
1382S: Maintained
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1385P: Rik Faith
1386M: faith@cs.unc.edu
1387L: linux-scsi@vger.kernel.org
1388S: Odd fixes (e.g., new signatures)
1389
1390GDT SCSI DISK ARRAY CONTROLLER DRIVER
1391P: Achim Leubner
1392M: achim_leubner@adaptec.com
1393L: linux-scsi@vger.kernel.org
1394W: http://www.icp-vortex.com/
1395S: Supported
1396
1397GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1398P: Krzysztof Halasa
1399M: khc@pm.waw.pl
1400W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1401S: Maintained
1402
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001403GFS2 FILE SYSTEM
1404P: Steven Whitehouse
1405M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001406L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001407W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001408T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1409T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001410S: Supported
1411
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001412GIGASET ISDN DRIVERS
1413P: Hansjoerg Lipp
1414M: hjlipp@web.de
1415P: Tilman Schmidt
1416M: tilman@imap.cc
1417L: gigaset307x-common@lists.sourceforge.net
1418W: http://gigaset307x.sourceforge.net/
1419S: Maintained
1420
Jean Delvare5b543962005-08-15 19:51:02 +02001421HARDWARE MONITORING
1422P: Jean Delvare
1423M: khali@linux-fr.org
1424L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001425W: http://www.lm-sensors.org/
1426T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001427S: Maintained
1428
Michael Buesch844dd052006-06-26 00:24:59 -07001429HARDWARE RANDOM NUMBER GENERATOR CORE
1430P: Michael Buesch
1431M: mb@bu3sch.de
1432S: Maintained
1433
Robert Love860e1d62005-08-31 23:57:59 -04001434HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1435P: Robert Love
1436M: rlove@rlove.org
1437M: linux-kernel@vger.kernel.org
1438W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1439S: Maintained
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441HARMONY SOUND DRIVER
1442P: Kyle McMartin
1443M: kyle@parisc-linux.org
1444W: http://www.parisc-linux.org/~kyle/harmony/
1445L: parisc-linux@lists.parisc-linux.org
1446S: Maintained
1447
1448HAYES ESP SERIAL DRIVER
1449P: Andrew J. Robinson
1450M: arobinso@nyx.net
1451L: linux-kernel@vger.kernel.org
1452W: http://www.nyx.net/~arobinso
1453S: Maintained
1454
1455HFS FILESYSTEM
1456P: Roman Zippel
1457M: zippel@linux-m68k.org
1458L: linux-kernel@vger.kernel.org
1459S: Maintained
1460
1461HGA FRAMEBUFFER DRIVER
1462P: Ferenc Bakonyi
1463M: fero@drama.obuda.kando.hu
1464L: linux-nvidia@lists.surfsouth.com
1465W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1466S: Maintained
1467
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001468HID CORE LAYER
1469P: Jiri Kosina
1470M: jkosina@suse.cz
1471L: linux-input@atrey.karlin.mff.cuni.cz
1472S: Maintained
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474HIGH-SPEED SCC DRIVER FOR AX.25
1475P: Klaus Kudielka
1476M: klaus.kudielka@ieee.org
1477L: linux-hams@vger.kernel.org
1478W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1479S: Maintained
1480
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001481HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1482P: HighPoint Linux Team
1483M: linux@highpoint-tech.com
1484W: http://www.highpoint-tech.com
1485S: Supported
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487HIPPI
1488P: Jes Sorensen
1489M: jes@trained-monkey.org
1490L: linux-hippi@sunsite.dk
1491S: Maintained
1492
1493HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1494P: Chirag Kantharia
1495M: chirag.kantharia@hp.com
1496L: iss_storagedev@hp.com
1497S: Maintained
1498
1499HEWLETT-PACKARD SMART2 RAID DRIVER
1500P: Chirag Kantharia
1501M: chirag.kantharia@hp.com
1502L: iss_storagedev@hp.com
1503S: Maintained
1504
1505HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1506P: Mike Miller
1507M: mike.miller@hp.com
1508L: iss_storagedev@hp.com
1509S: Supported
1510
Jouni Malinenff1d2762005-05-12 22:54:16 -04001511HOST AP DRIVER
1512P: Jouni Malinen
1513M: jkmaline@cc.hut.fi
1514L: hostap@shmoo.com
1515W: http://hostap.epitest.fi/
1516S: Maintained
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1519P: Jaroslav Kysela
1520M: perex@suse.cz
1521S: Maintained
1522
Bob Piccob9b03322005-11-07 00:59:19 -08001523HPET: High Precision Event Timers driver (hpet.c)
1524P: Clemens Ladisch
1525M: clemens@ladisch.de
1526S: Maintained
1527
1528HPET: i386
1529P: Venkatesh Pallipadi (Venki)
1530M: venkatesh.pallipadi@intel.com
1531S: Maintained
1532
1533HPET: x86_64
1534P: Andi Kleen and Vojtech Pavlik
1535M: ak@muc.de and vojtech@suse.cz
1536S: Maintained
1537
1538HPET: ACPI hpet.c
1539P: Bob Picco
1540M: bob.picco@hp.com
1541S: Maintained
1542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543HPFS FILESYSTEM
1544P: Mikulas Patocka
1545M: mikulas@artax.karlin.mff.cuni.cz
1546W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1547S: Maintained
1548
1549HUGETLB FILESYSTEM
1550P: William Irwin
1551M: wli@holomorphy.com
1552S: Maintained
1553
Jean Delvare5b543962005-08-15 19:51:02 +02001554I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555P: Jean Delvare
1556M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001557L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001558T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559S: Maintained
1560
1561I2O
1562P: Markus Lidel
1563M: markus.lidel@shadowconnect.com
1564W: http://i2o.shadowconnect.com/
1565S: Maintained
1566
1567i386 BOOT CODE
1568P: Riley H. Williams
1569M: Riley@Williams.Name
1570L: Linux-Kernel@vger.kernel.org
1571S: Maintained
1572
1573i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1574P: Dave Jones
1575M: davej@codemonkey.org.uk
1576P: H. Peter Anvin
1577M: hpa@zytor.com
1578S: Maintained
1579
1580i810 TCO TIMER WATCHDOG
1581P: Nils Faerber
1582M: nils@kernelconcepts.de
1583W: http://www.kernelconcepts.de/
1584S: Maintained
1585
1586IA64 (Itanium) PLATFORM
1587P: Tony Luck
1588M: tony.luck@intel.com
1589L: linux-ia64@vger.kernel.org
1590W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001591T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592S: Maintained
1593
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001594IBM ACPI EXTRAS DRIVER
1595P: Henrique de Moraes Holschuh
1596M: ibm-acpi@hmh.eng.br
1597L: ibm-acpi-devel@lists.sourceforge.net
1598W: http://ibm-acpi.sourceforge.net
1599W: http://thinkwiki.org/wiki/Ibm-acpi
1600T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1601S: Maintained
1602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001604P: Jes Sorensen
1605M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606L: linux-altix@sgi.com
1607L: linux-ia64@vger.kernel.org
1608W: http://www.sgi.com/altix
1609S: Maintained
1610
1611IBM MCA SCSI SUBSYSTEM DRIVER
1612P: Michael Lang
1613M: langa2@kph.uni-mainz.de
1614W: http://www.uni-mainz.de/~langm000/linux.html
1615S: Maintained
1616
1617IBM Power Linux RAID adapter
1618P: Brian King
1619M: brking@us.ibm.com
1620S: Supported
1621
1622IBM ServeRAID RAID DRIVER
1623P: Jack Hammer
1624P: Dave Jeffery
1625M: ipslinux@adaptec.com
1626W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1627S: Supported
1628
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001629IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001631M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001633T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634S: Maintained
1635
1636IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001637P: Alan Cox
1638M: alan@lxorguk.ukuu.org.uk
1639L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640S: Maintained
1641
1642IDE/ATAPI FLOPPY DRIVERS
1643P: Paul Bristow
1644M: Paul Bristow <paul@paulbristow.net>
1645W: http://paulbristow.net/linux/idefloppy.html
1646L: linux-kernel@vger.kernel.org
1647S: Maintained
1648
1649IDE/ATAPI TAPE DRIVERS
1650P: Gadi Oxman
1651M: Gadi Oxman <gadio@netvision.net.il>
1652L: linux-kernel@vger.kernel.org
1653S: Maintained
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655IEEE 1394 SUBSYSTEM
1656P: Ben Collins
1657M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001658P: Stefan Richter
1659M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660L: linux1394-devel@lists.sourceforge.net
1661W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001662T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663S: Maintained
1664
Stefan Richter87730d02006-09-16 12:24:00 +02001665IEEE 1394 IPV4 DRIVER (eth1394)
1666P: Stefan Richter
1667M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001669S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
1671IEEE 1394 PCILYNX DRIVER
1672P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001673M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001674P: Stefan Richter
1675M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001677S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679IEEE 1394 RAW I/O DRIVER
1680P: Ben Collins
1681M: bcollins@debian.org
1682P: Dan Dennedy
1683M: dan@dennedy.org
1684L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001685S: Maintained
1686
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687IMS TWINTURBO FRAMEBUFFER DRIVER
1688P: Paul Mundt
1689M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001690L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691S: Maintained
1692
1693INFINIBAND SUBSYSTEM
1694P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001695M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696P: Sean Hefty
1697M: mshefty@ichips.intel.com
1698P: Hal Rosenstock
1699M: halr@voltaire.com
1700L: openib-general@openib.org
1701W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001702T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703S: Supported
1704
1705INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001706P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001707M: dmitry.torokhov@gmail.com
1708M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709L: linux-input@atrey.karlin.mff.cuni.cz
1710L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001711T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712S: Maintained
1713
Robert Lovec9f04f52005-07-15 12:21:07 -04001714INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001715P: John McCutchan
1716M: ttb@tentacle.dhs.org
1717P: Robert Love
1718M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001719L: linux-kernel@vger.kernel.org
1720S: Maintained
1721
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001722INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001723P: Sylvain Meyer
1724M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001725L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001726S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001729P: Antonino Daplas
1730M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001731L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001732S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1735P: Ingo Molnar
1736M: mingo@redhat.com
1737S: Maintained
1738
1739INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1740P: Jeff Garzik
1741M: jgarzik@pobox.com
1742W: http://sourceforge.net/projects/gkernel/
1743S: Maintained
1744
1745INTEL IA32 MICROCODE UPDATE SUPPORT
1746P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001747M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748S: Maintained
1749
Michael Buesch844dd052006-06-26 00:24:59 -07001750INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1751P: Deepak Saxena
1752M: dsaxena@plexity.net
1753S: Maintained
1754
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001755INTEL IXP2000 ETHERNET DRIVER
1756P: Lennert Buytenhek
1757M: kernel@wantstofly.org
1758L: netdev@vger.kernel.org
1759S: Maintained
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761INTEL PRO/100 ETHERNET SUPPORT
1762P: John Ronciak
1763M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764P: Jesse Brandeburg
1765M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001766P: Jeff Kirsher
1767M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001768P: Auke Kok
1769M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770W: http://sourceforge.net/projects/e1000/
1771S: Supported
1772
1773INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1774P: Jeb Cramer
1775M: cramerj@intel.com
1776P: John Ronciak
1777M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001778P: Jesse Brandeburg
1779M: jesse.brandeburg@intel.com
1780P: Jeff Kirsher
1781M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001782P: Auke Kok
1783M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784W: http://sourceforge.net/projects/e1000/
1785S: Supported
1786
1787INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001788P: Jeff Kirsher
1789M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790P: Ayyappan Veeraiyan
1791M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792P: John Ronciak
1793M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001794P: Jesse Brandeburg
1795M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001796P: Auke Kok
1797M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798W: http://sourceforge.net/projects/e1000/
1799S: Supported
1800
James Ketrenos826d2ab2005-11-07 18:56:59 -06001801INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1802P: Yi Zhu
1803M: yi.zhu@intel.com
1804P: James Ketrenos
1805M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001806L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001807L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1808W: http://ipw2100.sourceforge.net
1809S: Supported
1810
1811INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1812P: Yi Zhu
1813M: yi.zhu@intel.com
1814P: James Ketrenos
1815M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001816L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001817L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1818W: http://ipw2200.sourceforge.net
1819S: Supported
1820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821IOC3 DRIVER
1822P: Ralf Baechle
1823M: ralf@linux-mips.org
1824L: linux-mips@linux-mips.org
1825S: Maintained
1826
1827IP MASQUERADING:
1828P: Juanjo Ciarlante
1829M: jjciarla@raiz.uncu.edu.ar
1830S: Maintained
1831
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001832IPATH DRIVER:
1833P: Bryan O'Sullivan
1834M: support@pathscale.com
1835L: openib-general@openib.org
1836S: Supported
1837
Corey Minyard4409ebe2006-04-20 02:43:12 -07001838IPMI SUBSYSTEM
1839P: Corey Minyard
1840M: minyard@acm.org
1841L: openipmi-developer@lists.sourceforge.net
1842W: http://openipmi.sourceforge.net/
1843S: Supported
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845IPX NETWORK LAYER
1846P: Arnaldo Carvalho de Melo
1847M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001848L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849S: Maintained
1850
1851IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001852P: Samuel Ortiz
1853M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001854L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001856S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858ISAPNP
1859P: Jaroslav Kysela
1860M: perex@suse.cz
1861S: Maintained
1862
1863ISDN SUBSYSTEM
1864P: Karsten Keil
1865M: kkeil@suse.de
1866P: Kai Germaschewski
1867M: kai.germaschewski@gmx.de
1868L: isdn4linux@listserv.isdn4linux.de
1869W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001870T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871S: Maintained
1872
1873ISDN SUBSYSTEM (Eicon active card driver)
1874P: Armin Schindler
1875M: mac@melware.de
1876L: isdn4linux@listserv.isdn4linux.de
1877W: http://www.melware.de
1878S: Maintained
1879
1880JOURNALLING FLASH FILE SYSTEM (JFFS)
1881P: Axis Communications AB
1882M: jffs-dev@axis.com
1883L: jffs-dev@axis.com
1884W: http://www.developer.axis.com/software/jffs/
1885S: Maintained
1886
1887JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1888P: David Woodhouse
1889M: dwmw2@infradead.org
1890L: jffs-dev@axis.com
1891W: http://sources.redhat.com/jffs2/
1892S: Maintained
1893
1894JFS FILESYSTEM
1895P: Dave Kleikamp
1896M: shaggy@austin.ibm.com
1897L: jfs-discussion@lists.sourceforge.net
1898W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001899T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900S: Supported
1901
Josh Triplettde456d32006-07-30 03:04:00 -07001902JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001903P: Stephen Tweedie, Andrew Morton
1904M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001905L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001906S: Maintained
1907
Rudolf Marek4660cb32006-10-08 22:01:26 +02001908K8TEMP HARDWARE MONITORING DRIVER
1909P: Rudolf Marek
1910M: r.marek@assembler.cz
1911L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912S: Maintained
1913
1914KCONFIG
1915P: Roman Zippel
1916M: zippel@linux-m68k.org
1917L: kbuild-devel@lists.sourceforge.net
1918S: Maintained
1919
Vivek Goyalea6c2082006-05-20 14:59:55 -07001920KDUMP
1921P: Vivek Goyal
1922M: vgoyal@in.ibm.com
1923P: Haren Myneni
1924M: hbabu@us.ibm.com
1925L: fastboot@lists.osdl.org
1926L: linux-kernel@vger.kernel.org
1927W: http://lse.sourceforge.net/kdump/
1928S: Maintained
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930KERNEL AUTOMOUNTER (AUTOFS)
1931P: H. Peter Anvin
1932M: hpa@zytor.com
1933L: autofs@linux.kernel.org
1934S: Odd Fixes
1935
1936KERNEL AUTOMOUNTER v4 (AUTOFS4)
1937P: Ian Kent
1938M: raven@themaw.net
1939L: autofs@linux.kernel.org
1940S: Maintained
1941
1942KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1943P: Kai Germaschewski
1944M: kai@germaschewski.name
1945P: Sam Ravnborg
1946M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001947T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948S: Maintained
1949
1950KERNEL JANITORS
1951P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001952L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954S: Maintained
1955
1956KERNEL NFSD
1957P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001958M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959L: nfs@lists.sourceforge.net
1960W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001961S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Avi Kivity426d62e2006-12-13 00:34:03 -08001963KERNEL VIRTUAL MACHINE (KVM)
1964P: Avi Kivity
1965M: avi@qumranet.com
1966L: kvm-devel@lists.sourceforge.net
1967W: kvm.sourceforge.net
1968S: Supported
1969
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001970KEXEC
1971P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001972M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001973W: http://www.xmission.com/~ebiederm/files/kexec/
1974L: linux-kernel@vger.kernel.org
1975L: fastboot@osdl.org
1976S: Maintained
1977
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001978KPROBES
1979P: Prasanna S Panchamukhi
1980M: prasanna@in.ibm.com
1981P: Ananth N Mavinakayanahalli
1982M: ananth@in.ibm.com
1983P: Anil S Keshavamurthy
1984M: anil.s.keshavamurthy@intel.com
1985P: David S. Miller
1986M: davem@davemloft.net
1987L: linux-kernel@vger.kernel.org
1988S: Maintained
1989
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001990KS0108 LCD CONTROLLER DRIVER
1991P: Miguel Ojeda Sandonis
1992M: maxextreme@gmail.com
1993L: linux-kernel@vger.kernel.org
1994S: Maintained
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001998S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000LASI 53c700 driver for PARISC
2001P: James E.J. Bottomley
2002M: James.Bottomley@HansenPartnership.com
2003L: linux-scsi@vger.kernel.org
2004S: Maintained
2005
Richard Purdie263de9b2006-05-15 09:44:16 -07002006LED SUBSYSTEM
2007P: Richard Purdie
2008M: rpurdie@rpsys.net
2009S: Maintained
2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011LEGO USB Tower driver
2012P: Juergen Stuber
2013M: starblue@users.sourceforge.net
2014L: legousb-devel@lists.sourceforge.net
2015W: http://legousb.sourceforge.net/
2016S: Maintained
2017
2018LINUX FOR IBM pSERIES (RS/6000)
2019P: Paul Mackerras
2020M: paulus@au.ibm.com
2021W: http://www.ibm.com/linux/ltc/projects/ppc
2022S: Supported
2023
2024LINUX FOR NCR VOYAGER
2025P: James Bottomley
2026M: James.Bottomley@HansenPartnership.com
2027W: http://www.hansenpartnership.com/voyager
2028S: Maintained
2029
2030LINUX FOR POWERPC
2031P: Paul Mackerras
2032M: paulus@samba.org
2033W: http://www.penguinppc.org/
2034L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002035T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036S: Supported
2037
2038LINUX FOR POWER MACINTOSH
2039P: Benjamin Herrenschmidt
2040M: benh@kernel.crashing.org
2041W: http://www.penguinppc.org/
2042L: linuxppc-dev@ozlabs.org
2043S: Maintained
2044
2045LINUX FOR POWERPC EMBEDDED MPC52XX
2046P: Sylvain Munaut
2047M: tnt@246tNt.com
2048W: http://www.246tNt.com/mpc52xx/
2049W: http://www.penguinppc.org/
2050L: linuxppc-dev@ozlabs.org
2051L: linuxppc-embedded@ozlabs.org
2052S: Maintained
2053
2054LINUX FOR POWERPC EMBEDDED PPC4XX
2055P: Matt Porter
2056M: mporter@kernel.crashing.org
2057W: http://www.penguinppc.org/
2058L: linuxppc-embedded@ozlabs.org
2059S: Maintained
2060
Tom Rinie93adf12005-07-26 12:49:53 -07002061LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062P: Tom Rini
2063M: trini@kernel.crashing.org
2064W: http://www.penguinppc.org/
2065L: linuxppc-embedded@ozlabs.org
2066S: Maintained
2067
Tom Rinie93adf12005-07-26 12:49:53 -07002068LINUX FOR POWERPC EMBEDDED PPC8XX
2069P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002070M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002071W: http://www.penguinppc.org/
2072L: linuxppc-embedded@ozlabs.org
2073S: Maintained
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002076P: Kumar Gala
2077M: galak@kernel.crashing.org
2078W: http://www.penguinppc.org/
2079L: linuxppc-embedded@ozlabs.org
2080S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Olof Johanssonab06ff32006-09-06 14:44:54 -05002082LINUX FOR POWERPC PA SEMI PWRFICIENT
2083P: Olof Johansson
2084M: olof@lixom.net
2085W: http://www.pasemi.com/
2086L: linuxppc-dev@ozlabs.org
2087S: Supported
2088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089LLC (802.2)
2090P: Arnaldo Carvalho de Melo
2091M: acme@conectiva.com.br
2092S: Maintained
2093
2094LINUX FOR 64BIT POWERPC
2095P: Paul Mackerras
2096M: paulus@samba.org
2097M: paulus@au.ibm.com
2098P: Anton Blanchard
2099M: anton@samba.org
2100M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002101W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002102L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103S: Supported
2104
2105LINUX SECURITY MODULE (LSM) FRAMEWORK
2106P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002107M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002108L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002110T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111S: Supported
2112
2113LM83 HARDWARE MONITOR DRIVER
2114P: Jean Delvare
2115M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002116L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117S: Maintained
2118
2119LM90 HARDWARE MONITOR DRIVER
2120P: Jean Delvare
2121M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002122L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123S: Maintained
2124
2125LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2126P: Richard Russon (FlatCap)
2127M: ldm@flatcap.org
2128L: ldm-devel@lists.sourceforge.net
2129W: http://ldm.sourceforge.net
2130S: Maintained
2131
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002132LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2133P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002134M: Eric.Moore@lsi.com
2135M: support@lsi.com
2136L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002137L: linux-scsi@vger.kernel.org
2138W: http://www.lsilogic.com/support
2139S: Supported
2140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2142P: Matthew Wilcox
2143M: matthew@wil.cx
2144L: linux-scsi@vger.kernel.org
2145S: Maintained
2146
2147M68K ARCHITECTURE
2148P: Geert Uytterhoeven
2149M: geert@linux-m68k.org
2150P: Roman Zippel
2151M: zippel@linux-m68k.org
2152L: linux-m68k@lists.linux-m68k.org
2153W: http://www.linux-m68k.org/
2154W: http://linux-m68k-cvs.ubb.ca/
2155S: Maintained
2156
2157M68K ON APPLE MACINTOSH
2158P: Joshua Thompson
2159M: funaho@jurai.org
2160W: http://www.mac.linux-m68k.org/
2161L: linux-mac68k@mac.linux-m68k.org
2162S: Maintained
2163
2164M68K ON HP9000/300
2165P: Philip Blundell
2166M: philb@gnu.org
2167W: http://www.tazenda.demon.co.uk/phil/linux-hp
2168S: Maintained
2169
2170MARVELL YUKON / SYSKONNECT DRIVER
2171P: Mirko Lindner
2172M: mlindner@syskonnect.de
2173P: Ralph Roesler
2174M: rroesler@syskonnect.de
2175W: http://www.syskonnect.com
2176S: Supported
2177
Michael Kerriskfaf16682005-07-31 22:34:47 -07002178MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002179P: Michael Kerrisk
2180M: mtk-manpages@gmx.net
2181W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2182S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002183
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002184MARVELL MV643XX ETHERNET DRIVER
2185P: Dale Farnsworth
2186M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002188M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002189L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002190S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192MATROX FRAMEBUFFER DRIVER
2193P: Petr Vandrovec
2194M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002195L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196S: Maintained
2197
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002198MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002199P: Neela Syam Kolli
2200M: Neela.Kolli@engenio.com
2201S: linux-scsi@vger.kernel.org
2202W: http://megaraid.lsilogic.com
2203S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002204
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002205MEMORY MANAGEMENT
2206L: linux-mm@kvack.org
2207L: linux-kernel@vger.kernel.org
2208W: http://www.linux-mm.org
2209S: Maintained
2210
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002211MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212P: David Woodhouse
2213M: dwmw2@infradead.org
2214W: http://www.linux-mtd.infradead.org/
2215L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002216T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217S: Maintained
2218
2219MICROTEK X6 SCANNER
2220P: Oliver Neukum
2221M: oliver@neukum.name
2222S: Maintained
2223
2224MIPS
2225P: Ralf Baechle
2226M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002227W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002229T: git www.linux-mips.org:/pub/scm/linux.git
2230S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
2232MISCELLANEOUS MCA-SUPPORT
2233P: James Bottomley
2234M: jejb@steeleye.com
2235L: linux-kernel@vger.kernel.org
2236S: Maintained
2237
2238MODULE SUPPORT
2239P: Rusty Russell
2240M: rusty@rustcorp.com.au
2241L: linux-kernel@vger.kernel.org
2242S: Maintained
2243
2244MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2245P: Stelian Pop
2246M: stelian@popies.net
2247W: http://popies.net/meye/
2248S: Maintained
2249
2250MOUSE AND MISC DEVICES [GENERAL]
2251P: Alessandro Rubini
2252M: rubini@ipvvis.unipv.it
2253L: linux-kernel@vger.kernel.org
2254S: Maintained
2255
Jiri Slabyd7354102006-12-08 02:38:35 -08002256MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2257P: Jiri Slaby
2258M: jirislaby@gmail.com
2259L: linux-kernel@vger.kernel.org
2260S: Maintained
2261
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002262MSI LAPTOP SUPPORT
2263P: Lennart Poettering
2264M: mzxreary@0pointer.de
2265L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2266W: http://0pointer.de/lennart/tchibo.html
2267S: Maintained
2268
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269MTRR AND SIMILAR SUPPORT [i386]
2270P: Richard Gooch
2271M: rgooch@atnf.csiro.au
2272L: linux-kernel@vger.kernel.org
2273W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2274S: Maintained
2275
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002276MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2277P: Pierre Ossman
2278M: drzeus-mmc@drzeus.cx
2279L: linux-kernel@vger.kernel.org
2280S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282MULTISOUND SOUND DRIVER
2283P: Andrew Veliath
2284M: andrewtv@usa.net
2285S: Maintained
2286
Jiri Slabyd7354102006-12-08 02:38:35 -08002287MULTITECH MULTIPORT CARD (ISICOM)
2288P: Jiri Slaby
2289M: jirislaby@gmail.com
2290L: linux-kernel@vger.kernel.org
2291S: Maintained
2292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293NATSEMI ETHERNET DRIVER (DP8381x)
2294P: Tim Hockin
2295M: thockin@hockin.org
2296S: Maintained
2297
2298NCP FILESYSTEM
2299P: Petr Vandrovec
2300M: vandrove@vc.cvut.cz
2301L: linware@sh.cvut.cz
2302S: Maintained
2303
2304NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2305P: James E.J. Bottomley
2306M: James.Bottomley@HansenPartnership.com
2307L: linux-scsi@vger.kernel.org
2308S: Maintained
2309
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002310NETEM NETWORK EMULATOR
2311P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002312M: shemminger@linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002313L: netem@osdl.org
2314S: Maintained
2315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316NETFILTER/IPTABLES/IPCHAINS
2317P: Rusty Russell
2318P: Marc Boucher
2319P: James Morris
2320P: Harald Welte
2321P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002322P: Patrick McHardy
2323M: kaber@trash.net
2324L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002325L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002326L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327W: http://www.netfilter.org/
2328W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329S: Supported
2330
Paul Moore4cc67732006-09-25 15:57:13 -07002331NETLABEL
2332P: Paul Moore
2333M: paul.moore@hp.com
2334W: http://netlabel.sf.net
2335L: netdev@vger.kernel.org
2336S: Supported
2337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338NETROM NETWORK LAYER
2339P: Ralf Baechle
2340M: ralf@linux-mips.org
2341L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002342W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343S: Maintained
2344
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002345NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346P: Paul Clements
2347M: Paul.Clements@steeleye.com
2348S: Maintained
2349
2350NETWORK DEVICE DRIVERS
2351P: Andrew Morton
2352M: akpm@osdl.org
2353P: Jeff Garzik
2354M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002355L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002356T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357S: Maintained
2358
2359NETWORKING [GENERAL]
2360P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002361M: netdev@vger.kernel.org
2362L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002363W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364S: Maintained
2365
2366NETWORKING [IPv4/IPv6]
2367P: David S. Miller
2368M: davem@davemloft.net
2369P: Alexey Kuznetsov
2370M: kuznet@ms2.inr.ac.ru
2371P: Pekka Savola (ipv6)
2372M: pekkas@netcore.fi
2373P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002374M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375P: Hideaki YOSHIFUJI
2376M: yoshfuji@linux-ipv6.org
2377P: Patrick McHardy
2378M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002379L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002380T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381S: Maintained
2382
John W. Linville29f8f632006-01-18 14:52:48 -08002383NETWORKING [WIRELESS]
2384P: John W. Linville
2385M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002386L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002387T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2388S: Maintained
2389
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002390NETXEN (1/10) GbE SUPPORT
2391P: Amit S. Kale
2392M: amitkale@netxen.com
2393L: netdev@vger.kernel.org
2394W: http://www.netxen.com
2395S: Supported
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397IPVS
2398P: Wensong Zhang
2399M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002400P: Simon Horman
2401M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402P: Julian Anastasov
2403M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002404L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405S: Maintained
2406
2407NFS CLIENT
2408P: Trond Myklebust
2409M: trond.myklebust@fys.uio.no
2410L: linux-kernel@vger.kernel.org
2411S: Maintained
2412
2413NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002414P: Jan-Pascal van Best
2415M: janpascal@vanbest.org
2416P: Andreas Mohr
2417M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002418L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419S: Maintained
2420
2421NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2422P: YOKOTA Hiroshi
2423M: yokota@netlab.is.tsukuba.ac.jp
2424W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2425S: Maintained
2426
2427NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2428P: GOTO Masanori
2429M: gotom@debian.or.jp
2430P: YOKOTA Hiroshi
2431M: yokota@netlab.is.tsukuba.ac.jp
2432W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2433S: Maintained
2434
2435NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2436P: Eberhard Moenkeberg
2437M: emoenke@gwdg.de
2438L: linux-kernel@vger.kernel.org
2439S: Maintained
2440
2441NTFS FILESYSTEM
2442P: Anton Altaparmakov
2443M: aia21@cantab.net
2444L: linux-ntfs-dev@lists.sourceforge.net
2445L: linux-kernel@vger.kernel.org
2446W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002447T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448S: Maintained
2449
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002450NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002451P: Antonino Daplas
2452M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002453L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002454S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002456OPENCORES I2C BUS DRIVER
2457P: Peter Korsgaard
2458M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002459L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002460S: Maintained
2461
Mark Fashehccd979b2005-12-15 14:31:24 -08002462ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2463P: Mark Fasheh
2464M: mark.fasheh@oracle.com
2465P: Kurt Hackel
2466M: kurt.hackel@oracle.com
2467L: ocfs2-devel@oss.oracle.com
2468W: http://oss.oracle.com/projects/ocfs2/
2469S: Supported
2470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471OLYMPIC NETWORK DRIVER
2472P: Peter De Shrijver
2473M: p2@ace.ulyssis.student.kuleuven.ac.be
2474P: Mike Phillips
2475M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002476L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477L: linux-tr@linuxtr.net
2478W: http://www.linuxtr.net
2479S: Maintained
2480
Harald Weltec1986ee2005-11-13 16:06:29 -08002481OMNIKEY CARDMAN 4000 DRIVER
2482P: Harald Welte
2483M: laforge@gnumonks.org
2484S: Maintained
2485
Harald Welte77c44ab2005-11-13 16:06:26 -08002486OMNIKEY CARDMAN 4040 DRIVER
2487P: Harald Welte
2488M: laforge@gnumonks.org
2489S: Maintained
2490
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491ONSTREAM SCSI TAPE DRIVER
2492P: Willem Riede
2493M: osst@riede.org
2494L: osst-users@lists.sourceforge.net
2495L: linux-scsi@vger.kernel.org
2496S: Maintained
2497
2498OPL3-SA2, SA3, and SAx DRIVER
2499P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002500M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501L: linux-sound@vger.kernel.org
2502S: Maintained
2503
2504OPROFILE
2505P: Philippe Elie
2506M: phil.el@wanadoo.fr
2507L: oprofile-list@lists.sf.net
2508S: Maintained
2509
2510ORINOCO DRIVER
2511P: Pavel Roskin
2512M: proski@gnu.org
2513P: David Gibson
2514M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002515L: orinoco-users@lists.sourceforge.net
2516L: orinoco-devel@lists.sourceforge.net
2517W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518S: Maintained
2519
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002520PA SEMI ETHERNET DRIVER
2521P: Olof Johansson
2522M: olof@lixom.net
2523L: netdev@vger.kernel.org
2524S: Maintained
2525
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002526PA SEMI SMBUS DRIVER
2527P: Olof Johansson
2528M: olof@lixom.net
2529L: i2c@lm-sensors.org
2530S: Maintained
2531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532PARALLEL PORT SUPPORT
2533P: Phil Blundell
2534M: philb@gnu.org
2535P: Tim Waugh
2536M: tim@cyberelk.net
2537P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538P: Andrea Arcangeli
2539M: andrea@suse.de
2540L: linux-parport@lists.infradead.org
2541W: http://people.redhat.com/twaugh/parport/
2542S: Maintained
2543
2544PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2545P: Tim Waugh
2546M: tim@cyberelk.net
2547L: linux-parport@lists.infradead.org
2548W: http://www.torque.net/linux-pp.html
2549S: Maintained
2550
2551PARISC ARCHITECTURE
2552P: Matthew Wilcox
2553M: matthew@wil.cx
2554P: Grant Grundler
2555M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002556P: Kyle McMartin
2557M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558L: parisc-linux@parisc-linux.org
2559W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002560T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2561T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562S: Maintained
2563
Jim Cromie1662d322006-10-06 00:43:59 -07002564PC87360 HARDWARE MONITORING DRIVER
2565P: Jim Cromie
2566M: jim.cromie@gmail.com
2567L: lm-sensors@lm-sensors.org
2568S: Maintained
2569
2570PC8736x GPIO DRIVER
2571P: Jim Cromie
2572M: jim.cromie@gmail.com
2573S: Maintained
2574
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002575PCI ERROR RECOVERY
2576P: Linas Vepstas
2577M: linas@austin.ibm.com
2578L: linux-kernel@vger.kernel.org
2579L: linux-pci@atrey.karlin.mff.cuni.cz
2580S: Supported
2581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2583P: Thomas Sailer
2584M: sailer@ife.ee.ethz.ch
2585L: linux-sound@vger.kernel.org
2586W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2587S: Maintained
2588
2589PCI SUBSYSTEM
2590P: Greg Kroah-Hartman
2591M: gregkh@suse.de
2592L: linux-kernel@vger.kernel.org
2593L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002594T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595S: Supported
2596
2597PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002598P: Kristen Carlson Accardi
2599M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600S: Supported
2601
2602PCI HOTPLUG COMPAQ DRIVER
2603P: Greg Kroah-Hartman
2604M: greg@kroah.com
2605S: Maintained
2606
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002607PCIE HOTPLUG DRIVER
2608P: Kristen Carlson Accardi
2609M: kristen.c.accardi@intel.com
2610L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002611S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002614P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002615L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002617T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002618S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
2620PCNET32 NETWORK DRIVER
2621P: Thomas Bogendörfer
2622M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002623L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624S: Maintained
2625
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002626PER-TASK DELAY ACCOUNTING
2627P: Shailabh Nagar
2628M: nagar@watson.ibm.com
2629L: linux-kernel@vger.kernel.org
2630S: Maintained
2631
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002632PERSONALITY HANDLING
2633P: Christoph Hellwig
2634M: hch@infradead.org
2635L: linux-abi-devel@lists.sourceforge.net
2636S: Maintained
2637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638PHRAM MTD DRIVER
2639P: Jörn Engel
2640M: joern@wh.fh-wedel.de
2641L: linux-mtd@lists.infradead.org
2642S: Maintained
2643
Peter Osterlund249a6772005-09-27 21:45:30 -07002644PKTCDVD DRIVER
2645P: Peter Osterlund
2646M: petero2@telia.com
2647L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002648S: Maintained
2649
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650POSIX CLOCKS and TIMERS
2651P: George Anzinger
2652M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002653L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654S: Supported
2655
Eugene Surovegin24682972005-10-14 03:00:53 -07002656POWERPC 4xx EMAC DRIVER
2657P: Eugene Surovegin
2658M: ebs@ebshome.net
2659W: http://kernel.ebshome.net/emac/
2660L: linuxppc-embedded@ozlabs.org
2661L: netdev@vger.kernel.org
2662S: Maintained
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664PNP SUPPORT
2665P: Adam Belay
2666M: ambx1@neo.rr.com
2667S: Maintained
2668
Vitaly Wool999445d2007-01-04 13:07:03 +01002669PNXxxxx I2C DRIVER
2670P: Vitaly Wool
2671M: vitalywool@gmail.com
2672L: i2c@lm-sensors.org
2673S: Maintained
2674
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675PPP PROTOCOL DRIVERS AND COMPRESSORS
2676P: Paul Mackerras
2677M: paulus@samba.org
2678L: linux-ppp@vger.kernel.org
2679S: Maintained
2680
2681PPP OVER ATM (RFC 2364)
2682P: Mitchell Blank Jr
2683M: mitch@sfgoth.com
2684S: Maintained
2685
2686PPP OVER ETHERNET
2687P: Michal Ostrowski
2688M: mostrows@speakeasy.net
2689S: Maintained
2690
2691PREEMPTIBLE KERNEL
2692P: Robert Love
2693M: rml@tech9.net
2694L: linux-kernel@vger.kernel.org
2695L: kpreempt-tech@lists.sourceforge.net
2696W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2697S: Supported
2698
2699PRISM54 WIRELESS DRIVER
2700P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002701M: developers@islsm.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002702L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703W: http://prism54.org
2704S: Maintained
2705
2706PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2707P: Peter Denison
2708M: promise@pnd-pc.demon.co.uk
2709W: http://www.pnd-pc.demon.co.uk/promise/
2710S: Maintained
2711
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002712PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2713P: Mikael Pettersson
2714M: mikpe@it.uu.se
2715L: linux-ide@vger.kernel.org
2716S: Maintained
2717
Geoff Levandf58a9d12006-11-23 00:46:51 +01002718PS3 PLATFORM SUPPORT
2719P: Geoff Levand
2720M: geoffrey.levand@am.sony.com
2721L: linuxppc-dev@ozlabs.org
2722L: cbe-oss-dev@ozlabs.org
2723S: Supported
2724
Michael Krufky83202042006-07-03 00:24:18 -07002725PVRUSB2 VIDEO4LINUX DRIVER
2726P: Mike Isely
2727M: isely@pobox.com
2728L: pvrusb2@isely.net
2729L: video4linux-list@redhat.com
2730W: http://www.isely.net/pvrusb2/
2731S: Maintained
2732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733PXA2xx SUPPORT
2734P: Nicolas Pitre
2735M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002736L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737S: Maintained
2738
2739QLOGIC QLA2XXX FC-SCSI DRIVER
2740P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002741M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742L: linux-scsi@vger.kernel.org
2743S: Supported
2744
Ron Mercer5a4faa872006-07-25 00:40:21 -07002745QLOGIC QLA3XXX NETWORK DRIVER
2746P: Ron Mercer
2747M: linux-driver@qlogic.com
2748L: netdev@vger.kernel.org
2749S: Supported
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751QNX4 FILESYSTEM
2752P: Anders Larsen
2753M: al@alarsen.net
2754L: linux-kernel@vger.kernel.org
2755W: http://www.alarsen.net/linux/qnx4fs/
2756S: Maintained
2757
2758RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002759P: Benjamin Herrenschmidt
2760M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002761L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762S: Maintained
2763
2764RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002765P: Paul Mackerras
2766M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002767L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768S: Maintained
2769
2770RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2771P: Corey Thomas
2772M: corey@world.std.com
2773L: linux-kernel@vger.kernel.org
2774S: Maintained
2775
Matt Mackall9e95ce22005-04-16 15:25:56 -07002776RANDOM NUMBER DRIVER
2777P: Matt Mackall
2778M: mpm@selenic.com
2779S: Maintained
2780
Matt Porter394b7012005-11-07 01:00:15 -08002781RAPIDIO SUBSYSTEM
2782P: Matt Porter
2783M: mporter@kernel.crashing.org
2784L: linux-kernel@vger.kernel.org
2785S: Maintained
2786
Josh Triplett595182b2006-10-04 02:17:21 -07002787READ-COPY UPDATE (RCU)
2788P: Dipankar Sarma
2789M: dipankar@in.ibm.com
2790W: http://www.rdrop.com/users/paulmck/rclock/
2791L: linux-kernel@vger.kernel.org
2792S: Supported
2793
2794RCUTORTURE MODULE
2795P: Josh Triplett
2796M: josh@freedesktop.org
2797L: linux-kernel@vger.kernel.org
2798S: Maintained
2799
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800REAL TIME CLOCK DRIVER
2801P: Paul Gortmaker
2802M: p_gortmaker@yahoo.com
2803L: linux-kernel@vger.kernel.org
2804S: Maintained
2805
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002806REAL TIME CLOCK (RTC) SUBSYSTEM
2807P: Alessandro Zummo
2808M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002809L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002810S: Maintained
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812REISERFS FILE SYSTEM
2813P: Hans Reiser
2814M: reiserfs-dev@namesys.com
2815L: reiserfs-list@namesys.com
2816W: http://www.namesys.com
2817S: Supported
2818
2819ROCKETPORT DRIVER
2820P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821W: http://www.comtrol.com
2822S: Maintained
2823
2824ROSE NETWORK LAYER
2825P: Ralf Baechle
2826M: ralf@linux-mips.org
2827L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002828W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829S: Maintained
2830
2831RISCOM8 DRIVER
2832S: Orphan
2833
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002834S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002835P: Antonino Daplas
2836M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002837L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002838S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840S390
2841P: Martin Schwidefsky
2842M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002843P: Heiko Carstens
2844M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002846L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002847W: http://www.ibm.com/developerworks/linux/linux390/
2848S: Supported
2849
2850S390 NETWORK DRIVERS
2851P: Frank Pavlic
2852M: fpavlic@de.ibm.com
2853M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002854L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002855W: http://www.ibm.com/developerworks/linux/linux390/
2856S: Supported
2857
2858S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002859P: Swen Schillig
2860M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002861M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002862L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002863W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864S: Supported
2865
2866SAA7146 VIDEO4LINUX-2 DRIVER
2867P: Michael Hunold
2868M: michael@mihu.de
2869W: http://www.mihu.de/linux/saa7146
2870S: Maintained
2871
2872SBPCD CDROM DRIVER
2873P: Eberhard Moenkeberg
2874M: emoenke@gwdg.de
2875L: linux-kernel@vger.kernel.org
2876S: Maintained
2877
2878SC1200 WDT DRIVER
2879P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002880M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881S: Maintained
2882
2883SCHEDULER
2884P: Ingo Molnar
2885M: mingo@elte.hu
2886P: Robert Love [the preemptible kernel bits]
2887M: rml@tech9.net
2888L: linux-kernel@vger.kernel.org
2889S: Maintained
2890
2891SCSI CDROM DRIVER
2892P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002893M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894L: linux-scsi@vger.kernel.org
2895W: http://www.kernel.dk
2896S: Maintained
2897
2898SCSI SG DRIVER
2899P: Doug Gilbert
2900M: dgilbert@interlog.com
2901L: linux-scsi@vger.kernel.org
2902W: http://www.torque.net/sg
2903S: Maintained
2904
2905SCSI SUBSYSTEM
2906P: James E.J. Bottomley
2907M: James.Bottomley@SteelEye.com
2908L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002909T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910S: Maintained
2911
2912SCSI TAPE DRIVER
2913P: Kai Mäkisara
2914M: Kai.Makisara@kolumbus.fi
2915L: linux-scsi@vger.kernel.org
2916S: Maintained
2917
2918SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002919P: Sridhar Samudrala
2920M: sri@us.ibm.com
2921L: lksctp-developers@lists.sourceforge.net
2922S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
2924SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002925P: Jim Cromie
2926M: jim.cromie@gmail.com
2927S: Odd Fixes
2928
2929SCx200 GPIO DRIVER
2930P: Jim Cromie
2931M: jim.cromie@gmail.com
2932S: Maintained
2933
2934SCx200 HRT CLOCKSOURCE DRIVER
2935P: Jim Cromie
2936M: jim.cromie@gmail.com
2937S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
2939SECURITY CONTACT
2940P: Security Officers
2941M: security@kernel.org
2942S: Supported
2943
2944SELINUX SECURITY MODULE
2945P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002946M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002948M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949L: linux-kernel@vger.kernel.org (kernel issues)
2950L: selinux@tycho.nsa.gov (general discussion)
2951W: http://www.nsa.gov/selinux
2952S: Supported
2953
2954SERIAL ATA (SATA) SUBSYSTEM:
2955P: Jeff Garzik
2956M: jgarzik@pobox.com
2957L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002958T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959S: Supported
2960
2961SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2962P: Pat Gefre
2963M: pfg@sgi.com
2964L: linux-ia64@vger.kernel.org
2965S: Supported
2966
2967SGI VISUAL WORKSTATION 320 AND 540
2968P: Andrey Panin
2969M: pazke@donpac.ru
2970L: linux-visws-devel@lists.sf.net
2971W: http://linux-visws.sf.net
2972S: Maintained for 2.6.
2973
2974SIMTEC EB110ATX (Chalice CATS)
2975P: Ben Dooks
2976P: Vincent Sanders
2977M: support@simtec.co.uk
2978W: http://www.simtec.co.uk/products/EB110ATX/
2979S: Supported
2980
2981SIMTEC EB2410ITX (BAST)
2982P: Ben Dooks
2983P: Vincent Sanders
2984M: support@simtec.co.uk
2985W: http://www.simtec.co.uk/products/EB2410ITX/
2986S: Supported
2987
Francois Romieu92aab3c2005-07-30 13:11:18 +02002988SIS 190 ETHERNET DRIVER
2989P: Francois Romieu
2990M: romieu@fr.zoreil.com
2991L: netdev@vger.kernel.org
2992S: Maintained
2993
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994SIS 5513 IDE CONTROLLER DRIVER
2995P: Lionel Bouton
2996M: Lionel.Bouton@inet6.fr
2997W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2998W: http://gyver.homeip.net/sis5513/index.html
2999S: Maintained
3000
3001SIS 900/7016 FAST ETHERNET DRIVER
3002P: Daniele Venzano
3003M: venza@brownhat.org
3004W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003005L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006S: Maintained
3007
3008SIS FRAMEBUFFER DRIVER
3009P: Thomas Winischhofer
3010M: thomas@winischhofer.net
3011W: http://www.winischhofer.net/linuxsisvga.shtml
3012S: Maintained
3013
3014SIS USB2VGA DRIVER
3015P: Thomas Winischhofer
3016M: thomas@winischhofer.net
3017W: http://www.winischhofer.at/linuxsisusbvga.shtml
3018S: Maintained
3019
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020SMC91x ETHERNET DRIVER
3021P: Nicolas Pitre
3022M: nico@cam.org
3023S: Maintained
3024
Daniel Drake8f0f8502006-07-18 22:00:25 +01003025SOFTMAC LAYER (IEEE 802.11)
3026P: Johannes Berg
3027M: johannes@sipsolutions.net
3028P: Joe Jezak
3029M: josejx@gentoo.org
3030P: Daniel Drake
3031M: dsd@gentoo.org
3032W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01003033L: netdev@vger.kernel.org
3034S: Maintained
3035
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036SOFTWARE RAID (Multiple Disks) SUPPORT
3037P: Ingo Molnar
3038M: mingo@redhat.com
3039P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003040M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003042S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
3044SOFTWARE SUSPEND:
3045P: Pavel Machek
3046M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07003047L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048S: Maintained
3049
3050SONIC NETWORK DRIVER
3051P: Thomas Bogendoerfer
3052M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003053L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054S: Maintained
3055
3056SONY VAIO CONTROL DEVICE DRIVER
3057P: Stelian Pop
3058M: stelian@popies.net
3059W: http://popies.net/sonypi/
3060S: Maintained
3061
3062SOUND
3063P: Jaroslav Kysela
3064M: perex@suse.cz
3065L: alsa-devel@alsa-project.org
3066S: Maintained
3067
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003068SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3069P: Liam Girdwood
3070M: liam.girdwood@wolfsonmicro.com
3071L: alsa-devel@alsa-project.org
3072S: Supported
3073
Kumar Gala025c3982006-04-02 16:05:54 -05003074SPI SUBSYSTEM
3075P: David Brownell
3076M: dbrownell@users.sourceforge.net
3077L: spi-devel-general@lists.sourceforge.net
3078S: Maintained
3079
Steven Rostedt855f46a2006-08-05 12:14:50 -07003080STABLE BRANCH:
3081P: Greg Kroah-Hartman
3082M: greg@kroah.com
3083P: Chris Wright
3084M: chrisw@sous-sol.org
3085L: stable@kernel.org
3086S: Maintained
3087
Kylene Hall1c72d462005-05-01 08:59:13 -07003088TPM DEVICE DRIVER
3089P: Kylene Hall
3090M: kjhall@us.ibm.com
3091W: http://tpmdd.sourceforge.net
3092L: tpmdd-devel@lists.sourceforge.net
3093S: Maintained
3094
Mark Gross1a80ba82005-10-30 15:02:55 -08003095Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003096P: Mark Gross
3097M: mark.gross@intel.com
3098S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003099
Chris Zankel48b415c2005-06-23 22:01:07 -07003100TENSILICA XTENSA PORT (xtensa):
3101P: Chris Zankel
3102M: chris@zankel.net
3103S: Maintained
3104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105UltraSPARC (sparc64):
3106P: David S. Miller
3107M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003109T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110S: Maintained
3111
3112SHARP LH SUPPORT (LH7952X & LH7A40X)
3113P: Marc Singer
3114M: elf@buici.com
3115W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003116L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117S: Maintained
3118
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003119SHPC HOTPLUG DRIVER
3120P: Kristen Carlson Accardi
3121M: kristen.c.accardi@intel.com
3122L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003123S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003124
Pierre Ossmand129bce2006-03-24 03:18:17 -08003125SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3126P: Pierre Ossman
3127M: drzeus-sdhci@drzeus.cx
3128L: sdhci-devel@list.drzeus.cx
3129W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3130S: Maintained
3131
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003132SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3133P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003134M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003135L: netdev@vger.kernel.org
3136S: Maintained
3137
Chris Boot1a87d942006-07-10 04:45:34 -07003138SOEKRIS NET48XX LED SUPPORT
3139P: Chris Boot
3140M: bootc@bootc.net
3141S: Maintained
3142
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143SPARC (sparc32):
3144P: William L. Irwin
3145M: wli@holomorphy.com
3146L: sparclinux@vger.kernel.org
3147S: Maintained
3148
3149SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3150P: Roger Wolff
3151M: R.E.Wolff@BitWizard.nl
3152L: linux-kernel@vger.kernel.org ?
3153S: Supported
3154
Jim Lewis2752e402006-09-29 02:01:19 -07003155SPIDERNET NETWORK DRIVER for CELL
3156P: Jim Lewis
3157M: jim@jklewis.com
3158L: netdev@vger.kernel.org
3159S: Supported
3160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161SRM (Alpha) environment access
3162P: Jan-Benedict Glaw
3163M: jbglaw@lug-owl.de
3164L: linux-kernel@vger.kernel.org
3165S: Maintained
3166
3167STARFIRE/DURALAN NETWORK DRIVER
3168P: Ion Badulescu
3169M: ionut@cs.columbia.edu
3170S: Maintained
3171
3172STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3173W: http://mosquitonet.Stanford.EDU/strip.html
3174S: Unsupported ?
3175
3176STRADIS MPEG-2 DECODER DRIVER
3177P: Nathan Laredo
3178M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179W: http://www.stradis.com/
3180S: Maintained
3181
3182SUPERH (sh)
3183P: Paul Mundt
3184M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003185L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187S: Maintained
3188
3189SUPERH64 (sh64)
3190P: Paul Mundt
3191M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192L: linuxsh-shmedia-dev@lists.sourceforge.net
3193W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194S: Maintained
3195
3196SUN3/3X
3197P: Sam Creasey
3198M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199W: http://sammy.net/sun3/
3200S: Maintained
3201
3202SVGA HANDLING
3203P: Martin Mares
3204M: mj@ucw.cz
3205L: linux-video@atrey.karlin.mff.cuni.cz
3206S: Maintained
3207
3208SYSV FILESYSTEM
3209P: Christoph Hellwig
3210M: hch@infradead.org
3211S: Maintained
3212
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003213TC CLASSIFIER
3214P: Jamal Hadi Salim
3215M: hadi@cyberus.ca
3216L: netdev@vger.kernel.org
3217S: Maintained
3218
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003219TCP LOW PRIORITY MODULE
3220P: Wong Hoi Sing, Edison
3221M: hswong3i@gmail.com
3222P: Hung Hing Lun, Mike
3223M: hlhung3i@gmail.com
3224W: http://tcp-lp-mod.sourceforge.net/
3225S: Maintained
3226
Alex Dubov4020f2d2006-10-04 02:15:37 -07003227TI FLASH MEDIA INTERFACE DRIVER
3228P: Alex Dubov
3229M: oakad@yahoo.com
3230S: Maintained
3231
Michael Buesch844dd052006-06-26 00:24:59 -07003232TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3233P: Deepak Saxena
3234M: dsaxena@plexity.net
3235S: Maintained
3236
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003237TASKSTATS STATISTICS INTERFACE
3238P: Shailabh Nagar
3239M: nagar@watson.ibm.com
3240L: linux-kernel@vger.kernel.org
3241S: Maintained
3242
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003244P: Romain Lievin
3245M: roms@lpg.ticalc.org
3246S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Per Lidene86eaa32006-01-12 16:45:18 +01003248TIPC NETWORK LAYER
3249P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003250M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003251P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003252M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003253P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003254M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003255L: tipc-discussion@lists.sourceforge.net
3256W: http://tipc.sourceforge.net/
3257W: http://tipc.cslab.ericsson.net/
3258T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3259S: Maintained
3260
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261TLAN NETWORK DRIVER
3262P: Samuel Chessman
3263M: chessman@tux.org
3264L: tlan-devel@lists.sourceforge.net
3265W: http://sourceforge.net/projects/tlan/
3266S: Maintained
3267
3268TOKEN-RING NETWORK DRIVER
3269P: Mike Phillips
3270M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003271L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272L: linux-tr@linuxtr.net
3273W: http://www.linuxtr.net
3274S: Maintained
3275
3276TOSHIBA ACPI EXTRAS DRIVER
3277P: John Belmonte
3278M: toshiba_acpi@memebeam.org
3279W: http://memebeam.org/toys/ToshibaAcpiDriver
3280S: Maintained
3281
3282TOSHIBA SMM DRIVER
3283P: Jonathan Buzzard
3284M: jonathan@buzzard.org.uk
3285L: tlinux-users@tce.toshiba-dme.co.jp
3286W: http://www.buzzard.org.uk/toshiba/
3287S: Maintained
3288
3289TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3290P: Muli Ben-Yehuda
3291M: mulix@mulix.org
3292L: linux-kernel@vger.kernel.org
3293S: Maintained
3294
3295TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003296P: Adrian Bunk
3297M: trivial@kernel.org
3298L: linux-kernel@vger.kernel.org
3299W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3300T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3301S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
3303TMS380 TOKEN-RING NETWORK DRIVER
3304P: Adam Fritzler
3305M: mid@auk.cx
3306L: linux-tr@linuxtr.net
3307W: http://www.auk.cx/tms380tr/
3308S: Maintained
3309
3310TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003311P: Valerie Henson
3312M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313L: tulip-users@lists.sourceforge.net
3314W: http://sourceforge.net/projects/tulip/
3315S: Maintained
3316
3317TUN/TAP driver
3318P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003319M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320L: vtun@office.satix.net
3321W: http://vtun.sourceforge.net/tun
3322S: Maintained
3323
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003324TURBOCHANNEL SUBSYSTEM
3325P: Maciej W. Rozycki
3326M: macro@linux-mips.org
3327S: Maintained
3328
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329U14-34F SCSI DRIVER
3330P: Dario Ballabio
3331M: ballabio_dario@emc.com
3332L: linux-scsi@vger.kernel.org
3333S: Maintained
3334
3335UDF FILESYSTEM
3336P: Ben Fennema
3337M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338W: http://linux-udf.sourceforge.net
3339S: Maintained
3340
3341UNIFORM CDROM DRIVER
3342P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003343M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344L: linux-kernel@vger.kernel.org
3345W: http://www.kernel.dk
3346S: Maintained
3347
3348USB ACM DRIVER
3349P: Oliver Neukum
3350M: oliver@neukum.name
3351L: linux-usb-users@lists.sourceforge.net
3352L: linux-usb-devel@lists.sourceforge.net
3353S: Maintained
3354
3355USB BLOCK DRIVER (UB ub)
3356P: Pete Zaitcev
3357M: zaitcev@redhat.com
3358L: linux-kernel@vger.kernel.org
3359L: linux-usb-devel@lists.sourceforge.net
3360S: Supported
3361
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362USB CDC ETHERNET DRIVER
3363P: Greg Kroah-Hartman
3364M: greg@kroah.com
3365L: linux-usb-users@lists.sourceforge.net
3366L: linux-usb-devel@lists.sourceforge.net
3367S: Maintained
3368W: http://www.kroah.com/linux-usb/
3369
3370USB EHCI DRIVER
3371P: David Brownell
3372M: dbrownell@users.sourceforge.net
3373L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003374S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375
Luca Risolia7ce08c92006-01-11 02:06:59 +00003376USB ET61X[12]51 DRIVER
3377P: Luca Risolia
3378M: luca.risolia@studio.unibo.it
3379L: linux-usb-devel@lists.sourceforge.net
3380L: video4linux-list@redhat.com
3381W: http://www.linux-projects.org
3382S: Maintained
3383
David Brownell69ae9e32006-11-14 02:03:31 -08003384USB GADGET/PERIPHERAL SUBSYSTEM
3385P: David Brownell
3386M: dbrownell@users.sourceforge.net
3387L: linux-usb-devel@lists.sourceforge.net
3388W: http://www.linux-usb.org/gadget
3389S: Maintained
3390
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003392P: Jiri Kosina
3393M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394L: linux-usb-devel@lists.sourceforge.net
3395S: Maintained
3396
3397USB HUB DRIVER
3398P: Johannes Erdfelt
3399M: johannes@erdfelt.com
3400L: linux-usb-users@lists.sourceforge.net
3401L: linux-usb-devel@lists.sourceforge.net
3402S: Maintained
3403
Olav Kongas959eea22005-11-03 17:38:14 +02003404USB ISP116X DRIVER
3405P: Olav Kongas
3406M: ok@artecdesign.ee
3407L: linux-usb-devel@lists.sourceforge.net
3408S: Maintained
3409
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410USB KAWASAKI LSI DRIVER
3411P: Oliver Neukum
3412M: oliver@neukum.name
3413L: linux-usb-users@lists.sourceforge.net
3414L: linux-usb-devel@lists.sourceforge.net
3415S: Maintained
3416
3417USB MASS STORAGE DRIVER
3418P: Matthew Dharm
3419M: mdharm-usb@one-eyed-alien.net
3420L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003421L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422S: Maintained
3423W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3424
3425USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003426P: David Brownell
3427M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428L: linux-usb-users@lists.sourceforge.net
3429L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003430S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
Matthias Urlichsba460e42005-07-14 00:33:47 -07003432USB OPTION-CARD DRIVER
3433P: Matthias Urlichs
3434M: smurf@smurf.noris.de
3435L: linux-usb-devel@lists.sourceforge.net
3436S: Maintained
3437
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438USB OV511 DRIVER
3439P: Mark McClelland
3440M: mmcclell@bigfoot.com
3441L: linux-usb-users@lists.sourceforge.net
3442L: linux-usb-devel@lists.sourceforge.net
3443W: http://alpha.dyndns.org/ov511/
3444S: Maintained
3445
3446USB PEGASUS DRIVER
3447P: Petko Manolov
3448M: petkan@users.sourceforge.net
3449L: linux-usb-users@lists.sourceforge.net
3450L: linux-usb-devel@lists.sourceforge.net
3451W: http://pegasus2.sourceforge.net/
3452S: Maintained
3453
3454USB PRINTER DRIVER
3455P: Vojtech Pavlik
3456M: vojtech@suse.cz
3457L: linux-usb-users@lists.sourceforge.net
3458L: linux-usb-devel@lists.sourceforge.net
3459S: Maintained
3460
3461USB RTL8150 DRIVER
3462P: Petko Manolov
3463M: petkan@users.sourceforge.net
3464L: linux-usb-users@lists.sourceforge.net
3465L: linux-usb-devel@lists.sourceforge.net
3466W: http://pegasus2.sourceforge.net/
3467S: Maintained
3468
3469USB SE401 DRIVER
3470P: Jeroen Vreeken
3471M: pe1rxq@amsat.org
3472L: linux-usb-users@lists.sourceforge.net
3473L: linux-usb-devel@lists.sourceforge.net
3474W: http://www.chello.nl/~j.vreeken/se401/
3475S: Maintained
3476
3477USB SERIAL CYBERJACK DRIVER
3478P: Matthias Bruestle and Harald Welte
3479M: support@reiner-sct.com
3480W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3481S: Maintained
3482
3483USB SERIAL DIGI ACCELEPORT DRIVER
3484P: Peter Berger and Al Borchers
3485M: pberger@brimson.com
3486M: alborchers@steinerpoint.com
3487L: linux-usb-users@lists.sourceforge.net
3488L: linux-usb-devel@lists.sourceforge.net
3489S: Maintained
3490
3491USB SERIAL DRIVER
3492P: Greg Kroah-Hartman
3493M: gregkh@suse.de
3494L: linux-usb-users@lists.sourceforge.net
3495L: linux-usb-devel@lists.sourceforge.net
3496S: Supported
3497
3498USB SERIAL BELKIN F5U103 DRIVER
3499P: William Greathouse
3500M: wgreathouse@smva.com
3501L: linux-usb-users@lists.sourceforge.net
3502L: linux-usb-devel@lists.sourceforge.net
3503S: Maintained
3504
3505USB SERIAL CYPRESS M8 DRIVER
3506P: Lonnie Mendez
3507M: dignome@gmail.com
3508L: linux-usb-users@lists.sourceforge.net
3509L: linux-usb-devel@lists.sourceforge.net
3510S: Maintained
3511W: http://geocities.com/i0xox0i
3512W: http://firstlight.net/cvs
3513
3514USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3515L: linux-usb-users@lists.sourceforge.net
3516L: linux-usb-devel@lists.sourceforge.net
3517S: Maintained
3518
3519USB AUERSWALD DRIVER
3520P: Wolfgang Muees
3521M: wolfgang@iksw-muees.de
3522L: linux-usb-users@lists.sourceforge.net
3523L: linux-usb-devel@lists.sourceforge.net
3524S: Maintained
3525
3526USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3527P: Gary Brubaker
3528M: xavyer@ix.netcom.com
3529L: linux-usb-users@lists.sourceforge.net
3530L: linux-usb-devel@lists.sourceforge.net
3531S: Maintained
3532
3533USB SERIAL KEYSPAN DRIVER
3534P: Greg Kroah-Hartman
3535M: greg@kroah.com
3536L: linux-usb-users@lists.sourceforge.net
3537L: linux-usb-devel@lists.sourceforge.net
3538W: http://www.kroah.com/linux/
3539S: Maintained
3540
3541USB SERIAL WHITEHEAT DRIVER
3542P: Stuart MacDonald
3543M: stuartm@connecttech.com
3544L: linux-usb-users@lists.sourceforge.net
3545L: linux-usb-devel@lists.sourceforge.net
3546W: http://www.connecttech.com
3547S: Supported
3548
3549USB SN9C10x DRIVER
3550P: Luca Risolia
3551M: luca.risolia@studio.unibo.it
3552L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003553L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554W: http://www.linux-projects.org
3555S: Maintained
3556
3557USB SUBSYSTEM
3558P: Greg Kroah-Hartman
3559M: gregkh@suse.de
3560L: linux-usb-users@lists.sourceforge.net
3561L: linux-usb-devel@lists.sourceforge.net
3562W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003563T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564S: Supported
3565
3566USB UHCI DRIVER
3567P: Alan Stern
3568M: stern@rowland.harvard.edu
3569L: linux-usb-users@lists.sourceforge.net
3570L: linux-usb-devel@lists.sourceforge.net
3571S: Maintained
3572
David Brownell69ae9e32006-11-14 02:03:31 -08003573USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574P: David Brownell
3575M: dbrownell@users.sourceforge.net
3576L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003577W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578S: Maintained
3579
3580USB W996[87]CF DRIVER
3581P: Luca Risolia
3582M: luca.risolia@studio.unibo.it
3583L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003584L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585W: http://www.linux-projects.org
3586S: Maintained
3587
Luca Risolia60f78052006-02-06 16:29:35 +00003588USB ZC0301 DRIVER
3589P: Luca Risolia
3590M: luca.risolia@studio.unibo.it
3591L: linux-usb-devel@lists.sourceforge.net
3592L: video4linux-list@redhat.com
3593W: http://www.linux-projects.org
3594S: Maintained
3595
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596USB ZD1201 DRIVER
3597P: Jeroen Vreeken
3598M: pe1rxq@amsat.org
3599L: linux-usb-users@lists.sourceforge.net
3600L: linux-usb-devel@lists.sourceforge.net
3601W: http://linux-lc100020.sourceforge.net
3602S: Maintained
3603
3604USER-MODE LINUX
3605P: Jeff Dike
3606M: jdike@karaya.com
3607L: user-mode-linux-devel@lists.sourceforge.net
3608L: user-mode-linux-user@lists.sourceforge.net
3609W: http://user-mode-linux.sourceforge.net
3610S: Maintained
3611
3612FAT/VFAT/MSDOS FILESYSTEM:
3613P: OGAWA Hirofumi
3614M: hirofumi@mail.parknet.co.jp
3615L: linux-kernel@vger.kernel.org
3616S: Maintained
3617
3618VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3619P: Jeff Garzik
3620S: Odd fixes
3621
3622VIA RHINE NETWORK DRIVER
3623P: Roger Luethi
3624M: rl@hellgate.ch
3625S: Maintained
3626
Jean Delvare32c0a522005-09-22 21:47:58 +02003627VIAPRO SMBUS DRIVER
3628P: Jean Delvare
3629M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003630L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003631S: Maintained
3632
Francois Romieu01f20732007-01-26 00:57:17 -08003633VIA VELOCITY NETWORK DRIVER
3634P: Francois Romieu
3635M: romieu@fr.zoreil.com
3636L: netdev@vger.kernel.org
3637S: Maintained
3638
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639UCLINUX (AND M68KNOMMU)
3640P: Greg Ungerer
3641M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003643L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644S: Maintained
3645
3646UCLINUX FOR NEC V850
3647P: Miles Bader
3648M: uclinux-v850@lsi.nec.co.jp
3649W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3650W: http://www.ee.nec.de/uclinux/
3651S: Supported
3652
3653UCLINUX FOR RENESAS H8/300
3654P: Yoshinori Sato
3655M: ysato@users.sourceforge.jp
3656W: http://uclinux-h8.sourceforge.jp/
3657S: Supported
3658
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003659UFS FILESYSTEM
3660P: Evgeniy Dushistov
3661M: dushistov@mail.ru
3662L: linux-kernel@vger.kernel.org
3663S: Maintained
3664
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665USB DIAMOND RIO500 DRIVER
3666P: Cesar Miquel
3667M: miquel@df.uba.ar
3668L: rio500-users@lists.sourceforge.net
3669W: http://rio500.sourceforge.net
3670S: Maintained
3671
3672VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003673P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003674M: mchehab@infradead.org
3675M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003677W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003678T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003679S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
Juerg Haefligerab413192006-09-24 20:54:04 +02003681VT1211 HARDWARE MONITOR DRIVER
3682P: Juerg Haefliger
3683M: juergh@gmail.com
3684L: lm-sensors@lm-sensors.org
3685S: Maintained
3686
Roger Lucas1de9e372005-11-26 20:20:05 +01003687VT8231 HARDWARE MONITOR DRIVER
3688P: Roger Lucas
3689M: roger@planbit.co.uk
3690L: lm-sensors@lm-sensors.org
3691S: Maintained
3692
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693W1 DALLAS'S 1-WIRE BUS
3694P: Evgeniy Polyakov
3695M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696S: Maintained
3697
Charles Spirakis13927072006-07-05 18:05:15 +02003698W83791D HARDWARE MONITORING DRIVER
3699P: Charles Spirakis
3700M: bezaur@gmail.com
3701L: lm-sensors@lm-sensors.org
3702S: Maintained
3703
Rudolf Marek61db0112006-12-12 18:18:30 +01003704W83793 HARDWARE MONITORING DRIVER
3705P: Rudolf Marek
3706M: r.marek@assembler.cz
3707L: lm-sensors@lm-sensors.org
3708S: Maintained
3709
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710W83L51xD SD/MMC CARD INTERFACE DRIVER
3711P: Pierre Ossman
3712M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003713L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714W: http://projects.drzeus.cx/wbsd
3715S: Maintained
3716
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003717WATCHDOG DEVICE DRIVERS
3718P: Wim Van Sebroeck
3719M: wim@iguana.be
3720T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3721S: Maintained
3722
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3724P: Jean Tourrilhes
3725M: jt@hpl.hp.com
3726W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3727S: Maintained
3728
3729WD7000 SCSI DRIVER
3730P: Miroslav Zagorac
3731M: zaga@fly.cc.fer.hr
3732L: linux-scsi@vger.kernel.org
3733S: Maintained
3734
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003735WISTRON LAPTOP BUTTON DRIVER
3736P: Miloslav Trmac
3737M: mitr@volny.cz
3738S: Maintained
3739
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740WL3501 WIRELESS PCMCIA CARD DRIVER
3741P: Arnaldo Carvalho de Melo
3742M: acme@conectiva.com.br
3743W: http://advogato.org/person/acme
3744S: Maintained
3745
3746X.25 NETWORK LAYER
3747P: Henner Eisen
3748M: eis@baty.hanse.de
3749L: linux-x25@vger.kernel.org
3750S: Maintained
3751
3752XFS FILESYSTEM
3753P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003754P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003756L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003758T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759S: Supported
3760
Peter Korsgaard238b8722006-12-06 20:35:17 -08003761XILINX UARTLITE SERIAL DRIVER
3762P: Peter Korsgaard
3763M: jacmet@sunsite.dk
3764L: linux-serial@vger.kernel.org
3765S: Maintained
3766
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767X86 3-LEVEL PAGING (PAE) SUPPORT
3768P: Ingo Molnar
3769M: mingo@redhat.com
3770S: Maintained
3771
3772X86-64 port
3773P: Andi Kleen
3774M: ak@suse.de
3775L: discuss@x86-64.org
3776W: http://www.x86-64.org
3777S: Maintained
3778
3779YAM DRIVER FOR AX.25
3780P: Jean-Paul Roubelat
3781M: jpr@f6fbb.org
3782L: linux-hams@vger.kernel.org
3783S: Maintained
3784
Henkaf64a5e2005-10-12 15:02:56 +02003785YEALINK PHONE DRIVER
3786P: Henk Vergonet
3787M: Henk.Vergonet@gmail.com
3788L: usbb2k-api-dev@nongnu.org
3789S: Maintained
3790
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791Z8530 DRIVER FOR AX.25
3792P: Joerg Reuter
3793M: jreuter@yaina.de
3794W: http://yaina.de/jreuter/
3795W: http://www.qsl.net/dl1bke/
3796L: linux-hams@vger.kernel.org
3797S: Maintained
3798
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003799ZD1211RW WIRELESS DRIVER
3800P: Daniel Drake
3801M: dsd@gentoo.org
3802P: Ulrich Kunitz
3803M: kune@deine-taler.de
3804W: http://zd1211.ath.cx/wiki/DriverRewrite
3805L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3806S: Maintained
3807
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808ZF MACHZ WATCHDOG
3809P: Fernando Fuganti
3810M: fuganti@netbank.com.br
3811W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3812S: Maintained
3813
3814ZR36067 VIDEO FOR LINUX DRIVER
3815P: Ronald Bultje
3816M: rbultje@ronald.bitfreak.net
3817L: mjpeg-users@lists.sourceforge.net
3818W: http://mjpeg.sourceforge.net/driver-zoran/
3819S: Maintained
3820
3821ZR36120 VIDEO FOR LINUX DRIVER
3822P: Pauline Middelink
3823M: middelin@polyware.nl
3824W: http://www.polyware.nl/~middelin/En/hobbies.html
3825W: http://www.polyware.nl/~middelin/hobbies.html
3826S: Maintained
3827
3828THE REST
3829P: Linus Torvalds
3830S: Buried alive in reporters