blob: 0556a8de857c1b4098ce4ab72a69ddac92b4dc61 [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
Corentin Labbecae2caa2007-02-14 21:15:04 +0100271ADM1029 HARDWARE MONITOR DRIVER
272P: Corentin Labbe
273M: corentin.labbe@geomatys.fr
274L: lm-sensors@lm-sensors.org
275S: Maintained
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277ADT746X FAN DRIVER
278P: Colin Leroy
279M: colin@colino.net
280S: Maintained
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282AEDSP16 DRIVER
283P: Riccardo Facchetti
284M: fizban@tin.it
285S: Maintained
286
287AFFS FILE SYSTEM
288P: Roman Zippel
289M: zippel@linux-m68k.org
290S: Maintained
291
292AGPGART DRIVER
293P: Dave Jones
294M: davej@codemonkey.org.uk
295W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800296T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297S: Maintained
298
299AHA152X SCSI DRIVER
300P: Juergen E. Fischer
301M: Juergen Fischer <fischer@norbit.de>
302L: linux-scsi@vger.kernel.org
303S: Maintained
304
305ALCATEL SPEEDTOUCH USB DRIVER
306P: Duncan Sands
307M: duncan.sands@free.fr
308L: linux-usb-users@lists.sourceforge.net
309L: linux-usb-devel@lists.sourceforge.net
310W: http://www.linux-usb.org/SpeedTouch/
311S: Maintained
312
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000313ALI1563 I2C DRIVER
314P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100315M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200316L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000317S: Maintained
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319ALPHA PORT
320P: Richard Henderson
321M: rth@twiddle.net
322S: Odd Fixes for 2.4; Maintained for 2.6.
323P: Ivan Kokshaysky
324M: ink@jurassic.park.msu.ru
325S: Maintained for 2.4; PCI support for 2.6.
326
Jordan Crousef90b8112006-01-06 00:12:14 -0800327AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100328P: Jordan Crouse
329M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800330L: info-linux@geode.amd.com
331W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
332S: Supported
333
Stelian Pop284f42b2006-12-12 18:18:31 +0100334AMS (Apple Motion Sensor) DRIVER
335P: Stelian Pop
336M: stelian@popies.net
337P: Michael Hanselmann
338M: linux-kernel@hansmi.ch
339S: Supported
340
Tom Tuckerf94b5332006-09-22 15:22:48 -0700341AMSO1100 RNIC DRIVER
342P: Tom Tucker
343M: tom@opengridcomputing.com
344P: Steve Wise
345M: swise@opengridcomputing.com
346L: openib-general@openib.org
347S: Maintained
348
Johannes Berg42269062006-07-25 16:15:50 +0200349AOA (Apple Onboard Audio) ALSA DRIVER
350P: Johannes Berg
351M: johannes@sipsolutions.net
352L: linuxppc-dev@ozlabs.org
353L: alsa-devel@alsa-project.org
354S: Maintained
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356APM DRIVER
357P: Stephen Rothwell
358M: sfr@canb.auug.org.au
359L: linux-laptop@vger.kernel.org
360W: http://www.canb.auug.org.au/~sfr/
361S: Supported
362
363APPLETALK NETWORK LAYER
364P: Arnaldo Carvalho de Melo
365M: acme@conectiva.com.br
366S: Maintained
367
Jaya Kumar1154ea72005-06-21 17:17:04 -0700368ARC FRAMEBUFFER DRIVER
369P: Jaya Kumar
370M: jayalk@intworks.biz
371S: Maintained
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373ARM26 ARCHITECTURE
374P: Ian Molton
375M: spyro@f2s.com
376S: Maintained
377
378ARM26/ARCHIMEDES
379P: Ian Molton
380M: spyro@f2s.com
381S: Maintained
382
383ARM26/A5000
384P: John Appleby
385M: john@dnsworld.co.uk
386S: Maintained
387
388ARM MFM AND FLOPPY DRIVERS
389P: Ian Molton
390M: spyro@f2s.com
391S: Maintained
392
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800393ARM/ADI ROADRUNNER MACHINE SUPPORT
394P: Lennert Buytenhek
395M: kernel@wantstofly.org
396L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
397S: Maintained
398
399ARM/ADS SPHERE MACHINE SUPPORT
400P: Lennert Buytenhek
401M: kernel@wantstofly.org
402L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
403S: Maintained
404
405ARM/AJECO 1ARM MACHINE SUPPORT
406P: Lennert Buytenhek
407M: kernel@wantstofly.org
408L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
409S: Maintained
410
Andrew Victord4a89c72006-12-04 13:56:21 +0100411ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
412P: Andrew Victor
413M: andrew@sanpeople.com
414L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
415W: http://maxim.org.za/at91_26.html
416S: Maintained
417
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800418ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
419P: Lennert Buytenhek
420M: kernel@wantstofly.org
421L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
422S: Maintained
423
424ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
425P: Lennert Buytenhek
426M: kernel@wantstofly.org
427L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
428S: Maintained
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430ARM/CORGI MACHINE SUPPORT
431P: Richard Purdie
432M: rpurdie@rpsys.net
433S: Maintained
434
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800435ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
436P: Lennert Buytenhek
437M: kernel@wantstofly.org
438L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
439S: Maintained
440
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100441ARM/HP JORNADA 7XX MACHINE SUPPORT
442P: Kristoffer Ericson
443M: kristoffer_e1@hotmail.com
444W: www.jlime.com
445S: Maintained
446
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800447ARM/INTEL IOP32X ARM ARCHITECTURE
448P: Lennert Buytenhek
449M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100450P: Dan Williams
451M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800452L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100453S: Supported
454
455ARM/INTEL IOP33X ARM ARCHITECTURE
456P: Dan Williams
457M: dan.j.williams@intel.com
458L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
459S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800460
461ARM/INTEL IOP13XX ARM ARCHITECTURE
462P: Lennert Buytenhek
463M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100464P: Dan Williams
465M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800466L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100467S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800468
469ARM/INTEL IQ81342EX MACHINE SUPPORT
470P: Lennert Buytenhek
471M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100472P: Dan Williams
473M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800474L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100475S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800476
477ARM/INTEL IXP2000 ARM ARCHITECTURE
478P: Lennert Buytenhek
479M: kernel@wantstofly.org
480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
481S: Maintained
482
483ARM/INTEL IXDP2850 MACHINE SUPPORT
484P: Lennert Buytenhek
485M: kernel@wantstofly.org
486L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
487S: Maintained
488
489ARM/INTEL IXP23XX ARM ARCHITECTURE
490P: Lennert Buytenhek
491M: kernel@wantstofly.org
492L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
493S: Maintained
494
495ARM/INTEL XSC3 (MANZANO) ARM CORE
496P: Lennert Buytenhek
497M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100498P: Dan Williams
499M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800500L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100501S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800502
503ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
504P: Lennert Buytenhek
505M: kernel@wantstofly.org
506L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
507S: Maintained
508
509ARM/LOGICPD PXA270 MACHINE SUPPORT
510P: Lennert Buytenhek
511M: kernel@wantstofly.org
512L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
513S: Maintained
514
Dirk Opfer8459c152005-11-06 14:27:52 +0000515ARM/TOSA MACHINE SUPPORT
516P: Dirk Opfer
517M: dirk@opfer-online.de
518S: Maintained
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520ARM/PLEB SUPPORT
521P: Peter Chubb
522M: pleb@gelato.unsw.edu.au
523W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
524S: Maintained
525
526ARM/PT DIGITAL BOARD PORT
527P: Stefan Eletzhofer
528M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700529L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530W: http://www.arm.linux.org.uk/
531S: Maintained
532
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800533ARM/RADISYS ENP2611 MACHINE SUPPORT
534P: Lennert Buytenhek
535M: kernel@wantstofly.org
536L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
537S: Maintained
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539ARM/SHARK MACHINE SUPPORT
540P: Alexander Schulz
541M: alex@shark-linux.de
542W: http://www.shark-linux.de/shark.html
543S: Maintained
544
545ARM/STRONGARM110 PORT
546P: Russell King
547M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700548L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549W: http://www.arm.linux.org.uk/
550S: Maintained
551
552ARM/S3C2410 ARM ARCHITECTURE
553P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800554M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700555L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556W: http://www.fluff.org/ben/linux/
557S: Maintained
558
559ARM/S3C2440 ARM ARCHITECTURE
560P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800561M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700562L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563W: http://www.fluff.org/ben/linux/
564S: Maintained
565
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800566ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
567P: Lennert Buytenhek
568M: kernel@wantstofly.org
569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
570S: Maintained
571
572ARM/THECUS N2100 MACHINE SUPPORT
573P: Lennert Buytenhek
574M: kernel@wantstofly.org
575L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
576S: Maintained
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578ARPD SUPPORT
579P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700580L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581S: Maintained
582
583ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500584P: Corentin Chary
585M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586P: Karol Kozimor
587M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588L: acpi4asus-user@lists.sourceforge.net
589W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500590W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591S: Maintained
592
Corentin Chary85091b72007-01-26 14:04:30 +0100593ASUS LAPTOP EXTRAS DRIVER
594P: Corentin Chary
595M: corentincj@iksaif.net
596L: acpi4asus-user@lists.sourceforge.net
597W: http://sourceforge.net/projects/acpi4asus
598W: http://xf.iksaif.net/acpi4asus
599S: Maintained
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601ATA OVER ETHERNET DRIVER
602P: Ed L. Cashin
603M: ecashin@coraid.com
604W: http://www.coraid.com/support/linux
605S: Supported
606
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600607ATL1 ETHERNET DRIVER
608P: Jay Cliburn
609M: jcliburn@gmail.com
610P: Chris Snook
611M: csnook@redhat.com
612L: atl1-devel@lists.sourceforge.net
613W: http://sourceforge.net/projects/atl1
614W: http://atl1.sourceforge.net
615S: Maintained
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617ATM
618P: Chas Williams
619M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700620L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621W: http://linux-atm.sourceforge.net
622S: Maintained
623
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100624ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100625P: Haavard Skinnemoen
626M: hskinnemoen@atmel.com
627S: Supported
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629ATMEL WIRELESS DRIVER
630P: Simon Kelley
631M: simon@thekelleys.org.uk
632W: http://www.thekelleys.org.uk/atmel
633W: http://atmelwlandriver.sourceforge.net/
634S: Maintained
635
Chris Wrighta92b7b82005-07-07 18:12:23 -0700636AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100637P: David Woodhouse
638M: dwmw2@infradead.org
639L: linux-audit@redhat.com
640W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800641T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700642S: Maintained
643
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800644AUXILIARY DISPLAY DRIVERS
645P: Miguel Ojeda Sandonis
646M: maxextreme@gmail.com
647L: linux-kernel@vger.kernel.org
648S: Maintained
649
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700650AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700651P: Haavard Skinnemoen
652M: hskinnemoen@atmel.com
653W: http://www.atmel.com/products/AVR32/
654W: http://avr32linux.org/
655W: http://avrfreaks.net/
656S: Supported
657
658AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700659P: Haavard Skinnemoen
660M: hskinnemoen@atmel.com
661S: Supported
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663AX.25 NETWORK LAYER
664P: Ralf Baechle
665M: ralf@linux-mips.org
666L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200667W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668S: Maintained
669
670BAYCOM/HDLCDRV DRIVERS FOR AX.25
671P: Thomas Sailer
672M: t.sailer@alumni.ethz.ch
673L: linux-hams@vger.kernel.org
674W: http://www.baycom.org/~tom/ham/ham.html
675S: Maintained
676
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200677BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
678P: Larry Finger
679M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200680P: Stefano Brivio
681M: st3@riseup.net
682W: http://bcm43xx.berlios.de/
683S: Maintained
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685BEFS FILE SYSTEM
686P: Sergey S. Kostyliov
687M: rathamahata@php4.ru
688L: linux-kernel@vger.kernel.org
689S: Maintained
690
691BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
692P: Kenji Hollis
693W: http://ftp.bitgate.com/pcwd/
694S: Maintained
695
696BFS FILE SYSTEM
697P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800698M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699L: linux-kernel@vger.kernel.org
700S: Maintained
701
702BLOCK LAYER
703P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200704M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800706T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707S: Maintained
708
709BLUETOOTH SUBSYSTEM
710P: Marcel Holtmann
711M: marcel@holtmann.org
712P: Maxim Krasnyansky
713M: maxk@qualcomm.com
714L: bluez-devel@lists.sf.net
715W: http://bluez.sf.net
716W: http://www.bluez.org
717W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800718T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719S: Maintained
720
721BLUETOOTH RFCOMM LAYER
722P: Marcel Holtmann
723M: marcel@holtmann.org
724P: Maxim Krasnyansky
725M: maxk@qualcomm.com
726S: Maintained
727
728BLUETOOTH BNEP LAYER
729P: Marcel Holtmann
730M: marcel@holtmann.org
731P: Maxim Krasnyansky
732M: maxk@qualcomm.com
733S: Maintained
734
735BLUETOOTH CMTP LAYER
736P: Marcel Holtmann
737M: marcel@holtmann.org
738S: Maintained
739
740BLUETOOTH HIDP LAYER
741P: Marcel Holtmann
742M: marcel@holtmann.org
743S: Maintained
744
745BLUETOOTH HCI UART DRIVER
746P: Marcel Holtmann
747M: marcel@holtmann.org
748P: Maxim Krasnyansky
749M: maxk@qualcomm.com
750S: Maintained
751
752BLUETOOTH HCI USB DRIVER
753P: Marcel Holtmann
754M: marcel@holtmann.org
755P: Maxim Krasnyansky
756M: maxk@qualcomm.com
757S: Maintained
758
759BLUETOOTH HCI BCM203X DRIVER
760P: Marcel Holtmann
761M: marcel@holtmann.org
762S: Maintained
763
764BLUETOOTH HCI BPA10X DRIVER
765P: Marcel Holtmann
766M: marcel@holtmann.org
767S: Maintained
768
769BLUETOOTH HCI BFUSB DRIVER
770P: Marcel Holtmann
771M: marcel@holtmann.org
772S: Maintained
773
774BLUETOOTH HCI DTL1 DRIVER
775P: Marcel Holtmann
776M: marcel@holtmann.org
777S: Maintained
778
779BLUETOOTH HCI BLUECARD DRIVER
780P: Marcel Holtmann
781M: marcel@holtmann.org
782S: Maintained
783
784BLUETOOTH HCI BT3C DRIVER
785P: Marcel Holtmann
786M: marcel@holtmann.org
787S: Maintained
788
789BLUETOOTH HCI BTUART DRIVER
790P: Marcel Holtmann
791M: marcel@holtmann.org
792S: Maintained
793
794BLUETOOTH HCI VHCI DRIVER
795P: Maxim Krasnyansky
796M: maxk@qualcomm.com
797S: Maintained
798
799BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100800P: Chad Tindel
801M: ctindel@users.sourceforge.net
802P: Jay Vosburgh
803M: fubar@us.ibm.com
804L: bonding-devel@lists.sourceforge.net
805W: http://sourceforge.net/projects/bonding/
806S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000808BROADBAND PROCESSOR ARCHITECTURE
809P: Arnd Bergmann
810M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100811L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400812W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000813S: Supported
814
Gary Zambrano39105892006-06-22 17:26:20 -0700815BROADCOM B44 10/100 ETHERNET DRIVER
816P: Gary Zambrano
817M: zambrano@broadcom.com
818L: netdev@vger.kernel.org
819S: Supported
820
Michael Chan948c51e2006-06-04 02:51:39 -0700821BROADCOM BNX2 GIGABIT ETHERNET DRIVER
822P: Michael Chan
823M: mchan@broadcom.com
824L: netdev@vger.kernel.org
825S: Supported
826
827BROADCOM TG3 GIGABIT ETHERNET DRIVER
828P: Michael Chan
829M: mchan@broadcom.com
830L: netdev@vger.kernel.org
831S: Supported
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700834P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200835M: mchehab@infradead.org
836M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700838W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200839T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700840S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200842CALGARY x86-64 IOMMU
843P: Muli Ben-Yehuda
844M: muli@il.ibm.com
845P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200846M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200847L: linux-kernel@vger.kernel.org
848L: discuss@x86-64.org
849S: Maintained
850
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800851CFAG12864B LCD DRIVER
852P: Miguel Ojeda Sandonis
853M: maxextreme@gmail.com
854L: linux-kernel@vger.kernel.org
855S: Maintained
856
857CFAG12864BFB LCD FRAMEBUFFER DRIVER
858P: Miguel Ojeda Sandonis
859M: maxextreme@gmail.com
860L: linux-kernel@vger.kernel.org
861S: Maintained
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863COMMON INTERNET FILE SYSTEM (CIFS)
864P: Steve French
865M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100866L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867L: samba-technical@lists.samba.org
868W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800869T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870S: Supported
871
Joel Becker7063fbf2005-12-15 14:29:43 -0800872CONFIGFS
873P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800874M: joel.becker@oracle.com
875L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800876S: Supported
877
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800878CIRRUS LOGIC EP93XX ETHERNET DRIVER
879P: Lennert Buytenhek
880M: kernel@wantstofly.org
881L: netdev@vger.kernel.org
882S: Maintained
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884CIRRUS LOGIC GENERIC FBDEV DRIVER
885P: Jeff Garzik
886M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800887L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888S: Odd Fixes
889
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800890CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
891P: Lennert Buytenhek
892M: kernel@wantstofly.org
893L: linux-usb-devel@lists.sourceforge.net
894S: Maintained
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
897P: Cirrus Logic Corporation (kernel 2.2 driver)
898M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
899P: Nils Faerber (port to kernel 2.4)
900M: Nils Faerber <nils@kernelconcepts.de>
901S: Maintained
902
903CODA FILE SYSTEM
904P: Jan Harkes
905M: jaharkes@cs.cmu.edu
906M: coda@cs.cmu.edu
907L: codalist@coda.cs.cmu.edu
908W: http://www.coda.cs.cmu.edu/
909S: Maintained
910
911COMPACTPCI HOTPLUG CORE
912P: Scott Murray
913M: scottm@somanetworks.com
914M: scott@spiteful.org
915L: pcihpd-discuss@lists.sourceforge.net
916S: Supported
917
918COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
919P: Scott Murray
920M: scottm@somanetworks.com
921M: scott@spiteful.org
922L: pcihpd-discuss@lists.sourceforge.net
923S: Supported
924
925COMPACTPCI HOTPLUG GENERIC DRIVER
926P: Scott Murray
927M: scottm@somanetworks.com
928M: scott@spiteful.org
929L: pcihpd-discuss@lists.sourceforge.net
930S: Supported
931
932COMPUTONE INTELLIPORT MULTIPORT CARD
933P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700934M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700936S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938COSA/SRP SYNC SERIAL DRIVER
939P: Jan "Yenya" Kasprzak
940M: kas@fi.muni.cz
941W: http://www.fi.muni.cz/~kas/cosa/
942S: Maintained
943
944CPU FREQUENCY DRIVERS
945P: Dave Jones
946M: davej@codemonkey.org.uk
947L: cpufreq@lists.linux.org.uk
948W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500949T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950S: Maintained
951
952CPUID/MSR DRIVER
953P: H. Peter Anvin
954M: hpa@zytor.com
955S: Maintained
956
Paul Jacksoned90fb42005-09-27 21:45:37 -0700957CPUSETS
958P: Paul Jackson
959P: Simon Derr
960M: pj@sgi.com
961M: simon.derr@bull.net
962L: linux-kernel@vger.kernel.org
963W: http://www.bullopensource.org/cpuset/
964S: Supported
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100967W: http://sourceforge.net/projects/cramfs/
968S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970CRIS PORT
971P: Mikael Starvik
972M: starvik@axis.com
973L: dev-etrax@axis.com
974W: http://developer.axis.com
975S: Maintained
976
977CRYPTO API
978P: Herbert Xu
979M: herbert@gondor.apana.org.au
980P: David S. Miller
981M: davem@davemloft.net
982L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800983T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984S: Maintained
985
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100986CS5535 Audio ALSA driver
987P: Jaya Kumar
988M: jayakumar.alsa@gmail.com
989S: Maintained
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991CYBERPRO FB DRIVER
992P: Russell King
993M: rmk@arm.linux.org.uk
994W: http://www.arm.linux.org.uk/
995S: Maintained
996
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700997CYBLAFB FRAMEBUFFER DRIVER
998P: Knut Petersen
999M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001000L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001001S: Maintained
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003CYCLADES 2X SYNC CARD DRIVER
1004P: Arnaldo Carvalho de Melo
1005M: acme@conectiva.com.br
1006W: http://advogato.org/person/acme
1007L: cycsyn-devel@bazar.conectiva.com.br
1008S: Maintained
1009
1010CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001012S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001016S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018DAMA SLAVE for AX.25
1019P: Joerg Reuter
1020M: jreuter@yaina.de
1021W: http://yaina.de/jreuter/
1022W: http://www.qsl.net/dl1bke/
1023L: linux-hams@vger.kernel.org
1024S: Maintained
1025
1026DC395x SCSI driver
1027P: Oliver Neukum
1028M: oliver@neukum.name
1029P: Ali Akcaagac
1030M: aliakc@web.de
1031P: Jamie Lenehan
1032M: lenehan@twibble.org
1033W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001034L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035L: http://lists.twibble.org/mailman/listinfo/dc395x/
1036S: Maintained
1037
1038DC390/AM53C974 SCSI driver
1039P: Kurt Garloff
1040M: garloff@suse.de
1041W: http://www.garloff.de/kurt/linux/dc390/
1042P: Guennadi Liakhovetski
1043M: g.liakhovetski@gmx.de
1044S: Maintained
1045
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001046DCCP PROTOCOL
1047P: Arnaldo Carvalho de Melo
1048M: acme@mandriva.com
1049L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001050W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001051S: Maintained
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053DECnet NETWORK LAYER
1054P: Patrick Caulfield
1055M: patrick@tykepenguin.com
1056W: http://linux-decnet.sourceforge.net
1057L: linux-decnet-user@lists.sourceforge.net
1058S: Maintained
1059
1060DEFXX FDDI NETWORK DRIVER
1061P: Maciej W. Rozycki
1062M: macro@linux-mips.org
1063S: Maintained
1064
1065DELL LAPTOP SMM DRIVER
1066P: Massimo Dal Zotto
1067M: dz@debian.org
1068W: http://www.debian.org/~dz/i8k/
1069S: Maintained
1070
Doug Warzecha90563ec2005-09-06 15:17:15 -07001071DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1072P: Doug Warzecha
1073M: Douglas_Warzecha@dell.com
1074S: Maintained
1075
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001076DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077P: Alasdair Kergon
1078L: dm-devel@redhat.com
1079W: http://sources.redhat.com/dm
1080S: Maintained
1081
1082DEVICE NUMBER REGISTRY
1083P: Torben Mathiasen
1084M: device@lanana.org
1085W: http://lanana.org/docs/device-list/index.html
1086L: linux-kernel@vger.kernel.org
1087S: Maintained
1088
1089DEVICE FILESYSTEM
1090S: Obsolete
1091
1092DIGI INTL. EPCA DRIVER
1093P: Digi International, Inc
1094M: Eng.Linux@digi.com
1095L: Eng.Linux@digi.com
1096W: http://www.digi.com
1097S: Orphaned
1098
1099DIGI RIGHTSWITCH NETWORK DRIVER
1100P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001101L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102W: http://www.digi.com
1103S: Orphaned
1104
1105DIRECTORY NOTIFICATION
1106P: Stephen Rothwell
1107M: sfr@canb.auug.org.au
1108L: linux-kernel@vger.kernel.org
1109S: Supported
1110
1111DISK GEOMETRY AND PARTITION HANDLING
1112P: Andries Brouwer
1113M: aeb@cwi.nl
1114W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1115W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1116W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1117S: Maintained
1118
1119DISKQUOTA:
1120P: Jan Kara
1121M: jack@suse.cz
1122L: linux-kernel@vger.kernel.org
1123S: Maintained
1124
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001125DISTRIBUTED LOCK MANAGER
1126P: Patrick Caulfield
1127M: pcaulfie@redhat.com
1128P: David Teigland
1129M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001130L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001131W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001132T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1133T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001134S: Supported
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1137P: Tobias Ringstrom
1138M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001139L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140S: Maintained
1141
Martin Waitzba483d52005-06-17 13:20:59 -07001142DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001143P: Randy Dunlap
1144M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001145S: Maintained
1146
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001147DOCKING STATION DRIVER
1148P: Kristen Carlson Accardi
1149M: kristen.c.accardi@intel.com
1150L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001151S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153DOUBLETALK DRIVER
1154P: James R. Van Zandt
1155M: jrv@vanzandt.mv.com
1156L: blinux-list@redhat.com
1157S: Maintained
1158
1159DRIVER CORE, KOBJECTS, AND SYSFS
1160P: Greg Kroah-Hartman
1161M: gregkh@suse.de
1162L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001163T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164S: Supported
1165
1166DRM DRIVERS
1167P: David Airlie
1168M: airlied@linux.ie
1169L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001170T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171S: Maintained
1172
1173DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001174P: Francois Romieu
1175M: romieu@fr.zoreil.com
1176L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177S: Maintained
1178
1179DVB SUBSYSTEM AND DRIVERS
1180P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001181M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001183W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001184T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001185S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187EATA-DMA SCSI DRIVER
1188P: Michael Neuffer
1189L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1190S: Maintained
1191
1192EATA ISA/EISA/PCI SCSI DRIVER
1193P: Dario Ballabio
1194M: ballabio_dario@emc.com
1195L: linux-scsi@vger.kernel.org
1196S: Maintained
1197
1198EATA-PIO SCSI DRIVER
1199P: Michael Neuffer
1200M: mike@i-Connect.Net
1201L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1202S: Maintained
1203
1204EBTABLES
1205P: Bart De Schuymer
1206M: bart.de.schuymer@pandora.be
1207L: ebtables-user@lists.sourceforge.net
1208L: ebtables-devel@lists.sourceforge.net
1209W: http://ebtables.sourceforge.net/
1210S: Maintained
1211
Michael Halcrow237fead2006-10-04 02:16:22 -07001212ECRYPT FILE SYSTEM
1213P: Mike Halcrow, Phillip Hellewell
1214M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1215L: ecryptfs-devel@lists.sourceforge.net
1216W: http://ecryptfs.sourceforge.net/
1217S: Supported
1218
Alan Coxda9bb1d2006-01-18 17:44:13 -08001219EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001220P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001221M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001222L: bluesmoke-devel@lists.sourceforge.net
1223W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001224S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001225
1226EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001227P: Mark Gross
1228M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001229L: bluesmoke-devel@lists.sourceforge.net
1230W: bluesmoke.sourceforge.net
1231S: Maintained
1232
1233EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001234P: Doug Thompson
1235M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001236L: bluesmoke-devel@lists.sourceforge.net
1237W: bluesmoke.sourceforge.net
1238S: Maintained
1239
1240EDAC-R82600
1241P: Tim Small
1242M: tim@buttersideup.com
1243L: bluesmoke-devel@lists.sourceforge.net
1244W: bluesmoke.sourceforge.net
1245S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247EEPRO100 NETWORK DRIVER
1248P: Andrey V. Savochkin
1249M: saw@saw.sw.com.sg
1250S: Maintained
1251
Josh Triplett0bee8d22006-07-30 03:03:58 -07001252EFS FILESYSTEM
1253W: http://aeschi.ch.eu.org/efs/
1254S: Orphan
1255
Heiko J Schickfab97222006-09-22 15:22:22 -07001256EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1257P: Hoang-Nam Nguyen
1258M: hnguyen@de.ibm.com
1259P: Christoph Raisch
1260M: raisch@de.ibm.com
1261L: openib-general@openib.org
1262S: Supported
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264EMU10K1 SOUND DRIVER
1265P: James Courtier-Dutton
1266M: James@superbug.demon.co.uk
1267L: emu10k1-devel@lists.sourceforge.net
1268W: http://sourceforge.net/projects/emu10k1/
1269S: Maintained
1270
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001271EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001272P: James Smart
1273M: james.smart@emulex.com
1274L: linux-scsi@vger.kernel.org
1275W: http://sourceforge.net/projects/lpfcxxxx
1276S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278EPSON 1355 FRAMEBUFFER DRIVER
1279P: Christopher Hoover
1280M: ch@murgatroid.com, ch@hpl.hp.com
1281S: Maintained
1282
1283ETHEREXPRESS-16 NETWORK DRIVER
1284P: Philip Blundell
1285M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001286L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287S: Maintained
1288
1289ETHERNET BRIDGE
1290P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08001291M: shemminger@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292L: bridge@osdl.org
1293W: http://bridge.sourceforge.net/
1294S: Maintained
1295
1296ETHERTEAM 16I DRIVER
1297P: Mika Kuoppala
1298M: miku@iki.fi
1299S: Maintained
1300
1301EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001302L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303S: Maintained
1304
1305EXT3 FILE SYSTEM
1306P: Stephen Tweedie, Andrew Morton
1307M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001308L: linux-ext4@vger.kernel.org
1309S: Maintained
1310
1311EXT4 FILE SYSTEM
1312P: Stephen Tweedie, Andrew Morton
1313M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1314L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315S: Maintained
1316
Jean Delvaree53004e2006-01-09 23:26:14 +01001317F71805F HARDWARE MONITORING DRIVER
1318P: Jean Delvare
1319M: khali@linux-fr.org
1320L: lm-sensors@lm-sensors.org
1321S: Maintained
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323FARSYNC SYNCHRONOUS DRIVER
1324P: Kevin Curtis
1325M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326W: http://www.farsite.co.uk/
1327S: Supported
1328
1329FRAMEBUFFER LAYER
1330P: Antonino Daplas
1331M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001332L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333W: http://linux-fbdev.sourceforge.net/
1334S: Maintained
1335
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001336FREESCALE SOC FS_ENET DRIVER
1337P: Pantelis Antoniou
1338M: pantelis.antoniou@gmail.com
1339P: Vitaly Bordug
1340M: vbordug@ru.mvista.com
1341L: linuxppc-embedded@ozlabs.org
1342L: netdev@vger.kernel.org
1343S: Maintained
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345FILE LOCKING (flock() and fcntl()/lockf())
1346P: Matthew Wilcox
1347M: matthew@wil.cx
1348L: linux-fsdevel@vger.kernel.org
1349S: Maintained
1350
1351FILESYSTEMS (VFS and infrastructure)
1352P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001353M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354S: Maintained
1355
1356FIRMWARE LOADER (request_firmware)
1357L: linux-kernel@vger.kernel.org
1358S: Orphan
1359
1360FPU EMULATOR
1361P: Bill Metzenthen
1362M: billm@suburbia.net
1363W: http://suburbia.net/~billm/floating-point/emulator/
1364S: Maintained
1365
1366FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1367P: Mike McLagan
1368M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001369L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370S: Maintained
1371
1372FREEVXFS FILESYSTEM
1373P: Christoph Hellwig
1374M: hch@infradead.org
1375W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1376S: Maintained
1377
1378FUJITSU FR-V PORT
1379P: David Howells
1380M: dhowells@redhat.com
1381S: Maintained
1382
Miklos Szeredi04578f12005-09-09 13:10:22 -07001383FUSE: FILESYSTEM IN USERSPACE
1384P: Miklos Szeredi
1385M: miklos@szeredi.hu
1386L: fuse-devel@lists.sourceforge.net
1387W: http://fuse.sourceforge.net/
1388S: Maintained
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1391P: Rik Faith
1392M: faith@cs.unc.edu
1393L: linux-scsi@vger.kernel.org
1394S: Odd fixes (e.g., new signatures)
1395
1396GDT SCSI DISK ARRAY CONTROLLER DRIVER
1397P: Achim Leubner
1398M: achim_leubner@adaptec.com
1399L: linux-scsi@vger.kernel.org
1400W: http://www.icp-vortex.com/
1401S: Supported
1402
1403GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1404P: Krzysztof Halasa
1405M: khc@pm.waw.pl
1406W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1407S: Maintained
1408
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001409GFS2 FILE SYSTEM
1410P: Steven Whitehouse
1411M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001412L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001413W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001414T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1415T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001416S: Supported
1417
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001418GIGASET ISDN DRIVERS
1419P: Hansjoerg Lipp
1420M: hjlipp@web.de
1421P: Tilman Schmidt
1422M: tilman@imap.cc
1423L: gigaset307x-common@lists.sourceforge.net
1424W: http://gigaset307x.sourceforge.net/
1425S: Maintained
1426
Jean Delvare5b543962005-08-15 19:51:02 +02001427HARDWARE MONITORING
1428P: Jean Delvare
1429M: khali@linux-fr.org
1430L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001431W: http://www.lm-sensors.org/
1432T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001433S: Maintained
1434
Michael Buesch844dd052006-06-26 00:24:59 -07001435HARDWARE RANDOM NUMBER GENERATOR CORE
1436P: Michael Buesch
1437M: mb@bu3sch.de
1438S: Maintained
1439
Robert Love860e1d62005-08-31 23:57:59 -04001440HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1441P: Robert Love
1442M: rlove@rlove.org
1443M: linux-kernel@vger.kernel.org
1444W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1445S: Maintained
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447HARMONY SOUND DRIVER
1448P: Kyle McMartin
1449M: kyle@parisc-linux.org
1450W: http://www.parisc-linux.org/~kyle/harmony/
1451L: parisc-linux@lists.parisc-linux.org
1452S: Maintained
1453
1454HAYES ESP SERIAL DRIVER
1455P: Andrew J. Robinson
1456M: arobinso@nyx.net
1457L: linux-kernel@vger.kernel.org
1458W: http://www.nyx.net/~arobinso
1459S: Maintained
1460
1461HFS FILESYSTEM
1462P: Roman Zippel
1463M: zippel@linux-m68k.org
1464L: linux-kernel@vger.kernel.org
1465S: Maintained
1466
1467HGA FRAMEBUFFER DRIVER
1468P: Ferenc Bakonyi
1469M: fero@drama.obuda.kando.hu
1470L: linux-nvidia@lists.surfsouth.com
1471W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1472S: Maintained
1473
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001474HID CORE LAYER
1475P: Jiri Kosina
1476M: jkosina@suse.cz
1477L: linux-input@atrey.karlin.mff.cuni.cz
1478S: Maintained
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480HIGH-SPEED SCC DRIVER FOR AX.25
1481P: Klaus Kudielka
1482M: klaus.kudielka@ieee.org
1483L: linux-hams@vger.kernel.org
1484W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1485S: Maintained
1486
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001487HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1488P: HighPoint Linux Team
1489M: linux@highpoint-tech.com
1490W: http://www.highpoint-tech.com
1491S: Supported
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493HIPPI
1494P: Jes Sorensen
1495M: jes@trained-monkey.org
1496L: linux-hippi@sunsite.dk
1497S: Maintained
1498
1499HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1500P: Chirag Kantharia
1501M: chirag.kantharia@hp.com
1502L: iss_storagedev@hp.com
1503S: Maintained
1504
1505HEWLETT-PACKARD SMART2 RAID DRIVER
1506P: Chirag Kantharia
1507M: chirag.kantharia@hp.com
1508L: iss_storagedev@hp.com
1509S: Maintained
1510
1511HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1512P: Mike Miller
1513M: mike.miller@hp.com
1514L: iss_storagedev@hp.com
1515S: Supported
1516
Jouni Malinenff1d2762005-05-12 22:54:16 -04001517HOST AP DRIVER
1518P: Jouni Malinen
1519M: jkmaline@cc.hut.fi
1520L: hostap@shmoo.com
1521W: http://hostap.epitest.fi/
1522S: Maintained
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1525P: Jaroslav Kysela
1526M: perex@suse.cz
1527S: Maintained
1528
Bob Piccob9b03322005-11-07 00:59:19 -08001529HPET: High Precision Event Timers driver (hpet.c)
1530P: Clemens Ladisch
1531M: clemens@ladisch.de
1532S: Maintained
1533
1534HPET: i386
1535P: Venkatesh Pallipadi (Venki)
1536M: venkatesh.pallipadi@intel.com
1537S: Maintained
1538
1539HPET: x86_64
1540P: Andi Kleen and Vojtech Pavlik
1541M: ak@muc.de and vojtech@suse.cz
1542S: Maintained
1543
1544HPET: ACPI hpet.c
1545P: Bob Picco
1546M: bob.picco@hp.com
1547S: Maintained
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549HPFS FILESYSTEM
1550P: Mikulas Patocka
1551M: mikulas@artax.karlin.mff.cuni.cz
1552W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1553S: Maintained
1554
1555HUGETLB FILESYSTEM
1556P: William Irwin
1557M: wli@holomorphy.com
1558S: Maintained
1559
Jean Delvare5b543962005-08-15 19:51:02 +02001560I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561P: Jean Delvare
1562M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001563L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001564T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565S: Maintained
1566
1567I2O
1568P: Markus Lidel
1569M: markus.lidel@shadowconnect.com
1570W: http://i2o.shadowconnect.com/
1571S: Maintained
1572
1573i386 BOOT CODE
1574P: Riley H. Williams
1575M: Riley@Williams.Name
1576L: Linux-Kernel@vger.kernel.org
1577S: Maintained
1578
1579i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1580P: Dave Jones
1581M: davej@codemonkey.org.uk
1582P: H. Peter Anvin
1583M: hpa@zytor.com
1584S: Maintained
1585
1586i810 TCO TIMER WATCHDOG
1587P: Nils Faerber
1588M: nils@kernelconcepts.de
1589W: http://www.kernelconcepts.de/
1590S: Maintained
1591
1592IA64 (Itanium) PLATFORM
1593P: Tony Luck
1594M: tony.luck@intel.com
1595L: linux-ia64@vger.kernel.org
1596W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001597T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598S: Maintained
1599
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001600IBM ACPI EXTRAS DRIVER
1601P: Henrique de Moraes Holschuh
1602M: ibm-acpi@hmh.eng.br
1603L: ibm-acpi-devel@lists.sourceforge.net
1604W: http://ibm-acpi.sourceforge.net
1605W: http://thinkwiki.org/wiki/Ibm-acpi
1606T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1607S: Maintained
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001610P: Jes Sorensen
1611M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612L: linux-altix@sgi.com
1613L: linux-ia64@vger.kernel.org
1614W: http://www.sgi.com/altix
1615S: Maintained
1616
1617IBM MCA SCSI SUBSYSTEM DRIVER
1618P: Michael Lang
1619M: langa2@kph.uni-mainz.de
1620W: http://www.uni-mainz.de/~langm000/linux.html
1621S: Maintained
1622
1623IBM Power Linux RAID adapter
1624P: Brian King
1625M: brking@us.ibm.com
1626S: Supported
1627
1628IBM ServeRAID RAID DRIVER
1629P: Jack Hammer
1630P: Dave Jeffery
1631M: ipslinux@adaptec.com
1632W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1633S: Supported
1634
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001635IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001637M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001639T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640S: Maintained
1641
1642IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001643P: Alan Cox
1644M: alan@lxorguk.ukuu.org.uk
1645L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646S: Maintained
1647
1648IDE/ATAPI FLOPPY DRIVERS
1649P: Paul Bristow
1650M: Paul Bristow <paul@paulbristow.net>
1651W: http://paulbristow.net/linux/idefloppy.html
1652L: linux-kernel@vger.kernel.org
1653S: Maintained
1654
1655IDE/ATAPI TAPE DRIVERS
1656P: Gadi Oxman
1657M: Gadi Oxman <gadio@netvision.net.il>
1658L: linux-kernel@vger.kernel.org
1659S: Maintained
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661IEEE 1394 SUBSYSTEM
1662P: Ben Collins
1663M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001664P: Stefan Richter
1665M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666L: linux1394-devel@lists.sourceforge.net
1667W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001668T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669S: Maintained
1670
Stefan Richter87730d02006-09-16 12:24:00 +02001671IEEE 1394 IPV4 DRIVER (eth1394)
1672P: Stefan Richter
1673M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001675S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677IEEE 1394 PCILYNX DRIVER
1678P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001679M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001680P: Stefan Richter
1681M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001683S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685IEEE 1394 RAW I/O DRIVER
1686P: Ben Collins
1687M: bcollins@debian.org
1688P: Dan Dennedy
1689M: dan@dennedy.org
1690L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001691S: Maintained
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693IMS TWINTURBO FRAMEBUFFER DRIVER
1694P: Paul Mundt
1695M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001696L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697S: Maintained
1698
1699INFINIBAND SUBSYSTEM
1700P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001701M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702P: Sean Hefty
1703M: mshefty@ichips.intel.com
1704P: Hal Rosenstock
1705M: halr@voltaire.com
1706L: openib-general@openib.org
1707W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001708T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709S: Supported
1710
1711INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001712P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001713M: dmitry.torokhov@gmail.com
1714M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715L: linux-input@atrey.karlin.mff.cuni.cz
1716L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001717T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718S: Maintained
1719
Robert Lovec9f04f52005-07-15 12:21:07 -04001720INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001721P: John McCutchan
1722M: ttb@tentacle.dhs.org
1723P: Robert Love
1724M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001725L: linux-kernel@vger.kernel.org
1726S: Maintained
1727
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001728INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001729P: Sylvain Meyer
1730M: sylvain.meyer@worldonline.fr
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
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001735P: Antonino Daplas
1736M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001737L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001738S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1741P: Ingo Molnar
1742M: mingo@redhat.com
1743S: Maintained
1744
1745INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1746P: Jeff Garzik
1747M: jgarzik@pobox.com
1748W: http://sourceforge.net/projects/gkernel/
1749S: Maintained
1750
1751INTEL IA32 MICROCODE UPDATE SUPPORT
1752P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001753M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754S: Maintained
1755
Michael Buesch844dd052006-06-26 00:24:59 -07001756INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1757P: Deepak Saxena
1758M: dsaxena@plexity.net
1759S: Maintained
1760
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001761INTEL IXP2000 ETHERNET DRIVER
1762P: Lennert Buytenhek
1763M: kernel@wantstofly.org
1764L: netdev@vger.kernel.org
1765S: Maintained
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767INTEL PRO/100 ETHERNET SUPPORT
1768P: John Ronciak
1769M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770P: Jesse Brandeburg
1771M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001772P: Jeff Kirsher
1773M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001774P: Auke Kok
1775M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776W: http://sourceforge.net/projects/e1000/
1777S: Supported
1778
1779INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1780P: Jeb Cramer
1781M: cramerj@intel.com
1782P: John Ronciak
1783M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001784P: Jesse Brandeburg
1785M: jesse.brandeburg@intel.com
1786P: Jeff Kirsher
1787M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001788P: Auke Kok
1789M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790W: http://sourceforge.net/projects/e1000/
1791S: Supported
1792
1793INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001794P: Jeff Kirsher
1795M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796P: Ayyappan Veeraiyan
1797M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798P: John Ronciak
1799M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001800P: Jesse Brandeburg
1801M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001802P: Auke Kok
1803M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804W: http://sourceforge.net/projects/e1000/
1805S: Supported
1806
James Ketrenos826d2ab2005-11-07 18:56:59 -06001807INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1808P: Yi Zhu
1809M: yi.zhu@intel.com
1810P: James Ketrenos
1811M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001812L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001813L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1814W: http://ipw2100.sourceforge.net
1815S: Supported
1816
1817INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1818P: Yi Zhu
1819M: yi.zhu@intel.com
1820P: James Ketrenos
1821M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001822L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001823L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1824W: http://ipw2200.sourceforge.net
1825S: Supported
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827IOC3 DRIVER
1828P: Ralf Baechle
1829M: ralf@linux-mips.org
1830L: linux-mips@linux-mips.org
1831S: Maintained
1832
1833IP MASQUERADING:
1834P: Juanjo Ciarlante
1835M: jjciarla@raiz.uncu.edu.ar
1836S: Maintained
1837
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001838IPATH DRIVER:
1839P: Bryan O'Sullivan
1840M: support@pathscale.com
1841L: openib-general@openib.org
1842S: Supported
1843
Corey Minyard4409ebe2006-04-20 02:43:12 -07001844IPMI SUBSYSTEM
1845P: Corey Minyard
1846M: minyard@acm.org
1847L: openipmi-developer@lists.sourceforge.net
1848W: http://openipmi.sourceforge.net/
1849S: Supported
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851IPX NETWORK LAYER
1852P: Arnaldo Carvalho de Melo
1853M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001854L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855S: Maintained
1856
1857IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001858P: Samuel Ortiz
1859M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001860L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001862S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864ISAPNP
1865P: Jaroslav Kysela
1866M: perex@suse.cz
1867S: Maintained
1868
1869ISDN SUBSYSTEM
1870P: Karsten Keil
1871M: kkeil@suse.de
1872P: Kai Germaschewski
1873M: kai.germaschewski@gmx.de
1874L: isdn4linux@listserv.isdn4linux.de
1875W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001876T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877S: Maintained
1878
1879ISDN SUBSYSTEM (Eicon active card driver)
1880P: Armin Schindler
1881M: mac@melware.de
1882L: isdn4linux@listserv.isdn4linux.de
1883W: http://www.melware.de
1884S: Maintained
1885
1886JOURNALLING FLASH FILE SYSTEM (JFFS)
1887P: Axis Communications AB
1888M: jffs-dev@axis.com
1889L: jffs-dev@axis.com
1890W: http://www.developer.axis.com/software/jffs/
1891S: Maintained
1892
1893JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1894P: David Woodhouse
1895M: dwmw2@infradead.org
1896L: jffs-dev@axis.com
1897W: http://sources.redhat.com/jffs2/
1898S: Maintained
1899
1900JFS FILESYSTEM
1901P: Dave Kleikamp
1902M: shaggy@austin.ibm.com
1903L: jfs-discussion@lists.sourceforge.net
1904W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001905T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906S: Supported
1907
Josh Triplettde456d32006-07-30 03:04:00 -07001908JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001909P: Stephen Tweedie, Andrew Morton
1910M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001911L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001912S: Maintained
1913
Rudolf Marek4660cb32006-10-08 22:01:26 +02001914K8TEMP HARDWARE MONITORING DRIVER
1915P: Rudolf Marek
1916M: r.marek@assembler.cz
1917L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918S: Maintained
1919
1920KCONFIG
1921P: Roman Zippel
1922M: zippel@linux-m68k.org
1923L: kbuild-devel@lists.sourceforge.net
1924S: Maintained
1925
Vivek Goyalea6c2082006-05-20 14:59:55 -07001926KDUMP
1927P: Vivek Goyal
1928M: vgoyal@in.ibm.com
1929P: Haren Myneni
1930M: hbabu@us.ibm.com
1931L: fastboot@lists.osdl.org
1932L: linux-kernel@vger.kernel.org
1933W: http://lse.sourceforge.net/kdump/
1934S: Maintained
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936KERNEL AUTOMOUNTER (AUTOFS)
1937P: H. Peter Anvin
1938M: hpa@zytor.com
1939L: autofs@linux.kernel.org
1940S: Odd Fixes
1941
1942KERNEL AUTOMOUNTER v4 (AUTOFS4)
1943P: Ian Kent
1944M: raven@themaw.net
1945L: autofs@linux.kernel.org
1946S: Maintained
1947
1948KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1949P: Kai Germaschewski
1950M: kai@germaschewski.name
1951P: Sam Ravnborg
1952M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001953T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954S: Maintained
1955
1956KERNEL JANITORS
1957P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001958L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960S: Maintained
1961
1962KERNEL NFSD
1963P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001964M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965L: nfs@lists.sourceforge.net
1966W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001967S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Avi Kivity426d62e2006-12-13 00:34:03 -08001969KERNEL VIRTUAL MACHINE (KVM)
1970P: Avi Kivity
1971M: avi@qumranet.com
1972L: kvm-devel@lists.sourceforge.net
1973W: kvm.sourceforge.net
1974S: Supported
1975
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001976KEXEC
1977P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001978M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001979W: http://www.xmission.com/~ebiederm/files/kexec/
1980L: linux-kernel@vger.kernel.org
1981L: fastboot@osdl.org
1982S: Maintained
1983
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001984KPROBES
1985P: Prasanna S Panchamukhi
1986M: prasanna@in.ibm.com
1987P: Ananth N Mavinakayanahalli
1988M: ananth@in.ibm.com
1989P: Anil S Keshavamurthy
1990M: anil.s.keshavamurthy@intel.com
1991P: David S. Miller
1992M: davem@davemloft.net
1993L: linux-kernel@vger.kernel.org
1994S: Maintained
1995
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001996KS0108 LCD CONTROLLER DRIVER
1997P: Miguel Ojeda Sandonis
1998M: maxextreme@gmail.com
1999L: linux-kernel@vger.kernel.org
2000S: Maintained
2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002004S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006LASI 53c700 driver for PARISC
2007P: James E.J. Bottomley
2008M: James.Bottomley@HansenPartnership.com
2009L: linux-scsi@vger.kernel.org
2010S: Maintained
2011
Richard Purdie263de9b2006-05-15 09:44:16 -07002012LED SUBSYSTEM
2013P: Richard Purdie
2014M: rpurdie@rpsys.net
2015S: Maintained
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017LEGO USB Tower driver
2018P: Juergen Stuber
2019M: starblue@users.sourceforge.net
2020L: legousb-devel@lists.sourceforge.net
2021W: http://legousb.sourceforge.net/
2022S: Maintained
2023
2024LINUX FOR IBM pSERIES (RS/6000)
2025P: Paul Mackerras
2026M: paulus@au.ibm.com
2027W: http://www.ibm.com/linux/ltc/projects/ppc
2028S: Supported
2029
2030LINUX FOR NCR VOYAGER
2031P: James Bottomley
2032M: James.Bottomley@HansenPartnership.com
2033W: http://www.hansenpartnership.com/voyager
2034S: Maintained
2035
2036LINUX FOR POWERPC
2037P: Paul Mackerras
2038M: paulus@samba.org
2039W: http://www.penguinppc.org/
2040L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002041T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042S: Supported
2043
2044LINUX FOR POWER MACINTOSH
2045P: Benjamin Herrenschmidt
2046M: benh@kernel.crashing.org
2047W: http://www.penguinppc.org/
2048L: linuxppc-dev@ozlabs.org
2049S: Maintained
2050
2051LINUX FOR POWERPC EMBEDDED MPC52XX
2052P: Sylvain Munaut
2053M: tnt@246tNt.com
2054W: http://www.246tNt.com/mpc52xx/
2055W: http://www.penguinppc.org/
2056L: linuxppc-dev@ozlabs.org
2057L: linuxppc-embedded@ozlabs.org
2058S: Maintained
2059
2060LINUX FOR POWERPC EMBEDDED PPC4XX
2061P: Matt Porter
2062M: mporter@kernel.crashing.org
2063W: http://www.penguinppc.org/
2064L: linuxppc-embedded@ozlabs.org
2065S: Maintained
2066
Tom Rinie93adf12005-07-26 12:49:53 -07002067LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068P: Tom Rini
2069M: trini@kernel.crashing.org
2070W: http://www.penguinppc.org/
2071L: linuxppc-embedded@ozlabs.org
2072S: Maintained
2073
Tom Rinie93adf12005-07-26 12:49:53 -07002074LINUX FOR POWERPC EMBEDDED PPC8XX
2075P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002076M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002077W: http://www.penguinppc.org/
2078L: linuxppc-embedded@ozlabs.org
2079S: Maintained
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002082P: Kumar Gala
2083M: galak@kernel.crashing.org
2084W: http://www.penguinppc.org/
2085L: linuxppc-embedded@ozlabs.org
2086S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Olof Johanssonab06ff32006-09-06 14:44:54 -05002088LINUX FOR POWERPC PA SEMI PWRFICIENT
2089P: Olof Johansson
2090M: olof@lixom.net
2091W: http://www.pasemi.com/
2092L: linuxppc-dev@ozlabs.org
2093S: Supported
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095LLC (802.2)
2096P: Arnaldo Carvalho de Melo
2097M: acme@conectiva.com.br
2098S: Maintained
2099
2100LINUX FOR 64BIT POWERPC
2101P: Paul Mackerras
2102M: paulus@samba.org
2103M: paulus@au.ibm.com
2104P: Anton Blanchard
2105M: anton@samba.org
2106M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002107W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002108L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109S: Supported
2110
2111LINUX SECURITY MODULE (LSM) FRAMEWORK
2112P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002113M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002114L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002116T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117S: Supported
2118
2119LM83 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
2125LM90 HARDWARE MONITOR DRIVER
2126P: Jean Delvare
2127M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002128L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129S: Maintained
2130
2131LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2132P: Richard Russon (FlatCap)
2133M: ldm@flatcap.org
2134L: ldm-devel@lists.sourceforge.net
2135W: http://ldm.sourceforge.net
2136S: Maintained
2137
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002138LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2139P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002140M: Eric.Moore@lsi.com
2141M: support@lsi.com
2142L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002143L: linux-scsi@vger.kernel.org
2144W: http://www.lsilogic.com/support
2145S: Supported
2146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2148P: Matthew Wilcox
2149M: matthew@wil.cx
2150L: linux-scsi@vger.kernel.org
2151S: Maintained
2152
2153M68K ARCHITECTURE
2154P: Geert Uytterhoeven
2155M: geert@linux-m68k.org
2156P: Roman Zippel
2157M: zippel@linux-m68k.org
2158L: linux-m68k@lists.linux-m68k.org
2159W: http://www.linux-m68k.org/
2160W: http://linux-m68k-cvs.ubb.ca/
2161S: Maintained
2162
2163M68K ON APPLE MACINTOSH
2164P: Joshua Thompson
2165M: funaho@jurai.org
2166W: http://www.mac.linux-m68k.org/
2167L: linux-mac68k@mac.linux-m68k.org
2168S: Maintained
2169
2170M68K ON HP9000/300
2171P: Philip Blundell
2172M: philb@gnu.org
2173W: http://www.tazenda.demon.co.uk/phil/linux-hp
2174S: Maintained
2175
2176MARVELL YUKON / SYSKONNECT DRIVER
2177P: Mirko Lindner
2178M: mlindner@syskonnect.de
2179P: Ralph Roesler
2180M: rroesler@syskonnect.de
2181W: http://www.syskonnect.com
2182S: Supported
2183
Michael Kerriskfaf16682005-07-31 22:34:47 -07002184MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002185P: Michael Kerrisk
2186M: mtk-manpages@gmx.net
2187W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2188S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002189
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002190MARVELL MV643XX ETHERNET DRIVER
2191P: Dale Farnsworth
2192M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002194M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002195L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002196S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198MATROX FRAMEBUFFER DRIVER
2199P: Petr Vandrovec
2200M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002201L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202S: Maintained
2203
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002204MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002205P: Neela Syam Kolli
2206M: Neela.Kolli@engenio.com
2207S: linux-scsi@vger.kernel.org
2208W: http://megaraid.lsilogic.com
2209S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002210
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002211MEMORY MANAGEMENT
2212L: linux-mm@kvack.org
2213L: linux-kernel@vger.kernel.org
2214W: http://www.linux-mm.org
2215S: Maintained
2216
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002217MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218P: David Woodhouse
2219M: dwmw2@infradead.org
2220W: http://www.linux-mtd.infradead.org/
2221L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002222T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223S: Maintained
2224
2225MICROTEK X6 SCANNER
2226P: Oliver Neukum
2227M: oliver@neukum.name
2228S: Maintained
2229
2230MIPS
2231P: Ralf Baechle
2232M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002233W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002235T: git www.linux-mips.org:/pub/scm/linux.git
2236S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238MISCELLANEOUS MCA-SUPPORT
2239P: James Bottomley
2240M: jejb@steeleye.com
2241L: linux-kernel@vger.kernel.org
2242S: Maintained
2243
2244MODULE SUPPORT
2245P: Rusty Russell
2246M: rusty@rustcorp.com.au
2247L: linux-kernel@vger.kernel.org
2248S: Maintained
2249
2250MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2251P: Stelian Pop
2252M: stelian@popies.net
2253W: http://popies.net/meye/
2254S: Maintained
2255
2256MOUSE AND MISC DEVICES [GENERAL]
2257P: Alessandro Rubini
2258M: rubini@ipvvis.unipv.it
2259L: linux-kernel@vger.kernel.org
2260S: Maintained
2261
Jiri Slabyd7354102006-12-08 02:38:35 -08002262MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2263P: Jiri Slaby
2264M: jirislaby@gmail.com
2265L: linux-kernel@vger.kernel.org
2266S: Maintained
2267
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002268MSI LAPTOP SUPPORT
2269P: Lennart Poettering
2270M: mzxreary@0pointer.de
2271L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2272W: http://0pointer.de/lennart/tchibo.html
2273S: Maintained
2274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275MTRR AND SIMILAR SUPPORT [i386]
2276P: Richard Gooch
2277M: rgooch@atnf.csiro.au
2278L: linux-kernel@vger.kernel.org
2279W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2280S: Maintained
2281
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002282MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2283P: Pierre Ossman
2284M: drzeus-mmc@drzeus.cx
2285L: linux-kernel@vger.kernel.org
2286S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288MULTISOUND SOUND DRIVER
2289P: Andrew Veliath
2290M: andrewtv@usa.net
2291S: Maintained
2292
Jiri Slabyd7354102006-12-08 02:38:35 -08002293MULTITECH MULTIPORT CARD (ISICOM)
2294P: Jiri Slaby
2295M: jirislaby@gmail.com
2296L: linux-kernel@vger.kernel.org
2297S: Maintained
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299NATSEMI ETHERNET DRIVER (DP8381x)
2300P: Tim Hockin
2301M: thockin@hockin.org
2302S: Maintained
2303
2304NCP FILESYSTEM
2305P: Petr Vandrovec
2306M: vandrove@vc.cvut.cz
2307L: linware@sh.cvut.cz
2308S: Maintained
2309
2310NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2311P: James E.J. Bottomley
2312M: James.Bottomley@HansenPartnership.com
2313L: linux-scsi@vger.kernel.org
2314S: Maintained
2315
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002316NETEM NETWORK EMULATOR
2317P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002318M: shemminger@linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002319L: netem@osdl.org
2320S: Maintained
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322NETFILTER/IPTABLES/IPCHAINS
2323P: Rusty Russell
2324P: Marc Boucher
2325P: James Morris
2326P: Harald Welte
2327P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002328P: Patrick McHardy
2329M: kaber@trash.net
2330L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002331L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002332L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333W: http://www.netfilter.org/
2334W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335S: Supported
2336
Paul Moore4cc67732006-09-25 15:57:13 -07002337NETLABEL
2338P: Paul Moore
2339M: paul.moore@hp.com
2340W: http://netlabel.sf.net
2341L: netdev@vger.kernel.org
2342S: Supported
2343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344NETROM NETWORK LAYER
2345P: Ralf Baechle
2346M: ralf@linux-mips.org
2347L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002348W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349S: Maintained
2350
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002351NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352P: Paul Clements
2353M: Paul.Clements@steeleye.com
2354S: Maintained
2355
2356NETWORK DEVICE DRIVERS
2357P: Andrew Morton
2358M: akpm@osdl.org
2359P: Jeff Garzik
2360M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002361L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002362T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363S: Maintained
2364
2365NETWORKING [GENERAL]
2366P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002367M: netdev@vger.kernel.org
2368L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002369W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370S: Maintained
2371
2372NETWORKING [IPv4/IPv6]
2373P: David S. Miller
2374M: davem@davemloft.net
2375P: Alexey Kuznetsov
2376M: kuznet@ms2.inr.ac.ru
2377P: Pekka Savola (ipv6)
2378M: pekkas@netcore.fi
2379P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002380M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381P: Hideaki YOSHIFUJI
2382M: yoshfuji@linux-ipv6.org
2383P: Patrick McHardy
2384M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002385L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002386T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387S: Maintained
2388
John W. Linville29f8f632006-01-18 14:52:48 -08002389NETWORKING [WIRELESS]
2390P: John W. Linville
2391M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002392L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002393T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2394S: Maintained
2395
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002396NETXEN (1/10) GbE SUPPORT
2397P: Amit S. Kale
2398M: amitkale@netxen.com
2399L: netdev@vger.kernel.org
2400W: http://www.netxen.com
2401S: Supported
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403IPVS
2404P: Wensong Zhang
2405M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002406P: Simon Horman
2407M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408P: Julian Anastasov
2409M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002410L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411S: Maintained
2412
2413NFS CLIENT
2414P: Trond Myklebust
2415M: trond.myklebust@fys.uio.no
2416L: linux-kernel@vger.kernel.org
2417S: Maintained
2418
2419NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002420P: Jan-Pascal van Best
2421M: janpascal@vanbest.org
2422P: Andreas Mohr
2423M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002424L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425S: Maintained
2426
2427NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2428P: YOKOTA Hiroshi
2429M: yokota@netlab.is.tsukuba.ac.jp
2430W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2431S: Maintained
2432
2433NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2434P: GOTO Masanori
2435M: gotom@debian.or.jp
2436P: YOKOTA Hiroshi
2437M: yokota@netlab.is.tsukuba.ac.jp
2438W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2439S: Maintained
2440
2441NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2442P: Eberhard Moenkeberg
2443M: emoenke@gwdg.de
2444L: linux-kernel@vger.kernel.org
2445S: Maintained
2446
2447NTFS FILESYSTEM
2448P: Anton Altaparmakov
2449M: aia21@cantab.net
2450L: linux-ntfs-dev@lists.sourceforge.net
2451L: linux-kernel@vger.kernel.org
2452W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002453T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454S: Maintained
2455
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002456NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002457P: Antonino Daplas
2458M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002459L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002460S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002462OPENCORES I2C BUS DRIVER
2463P: Peter Korsgaard
2464M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002465L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002466S: Maintained
2467
Mark Fashehccd979b2005-12-15 14:31:24 -08002468ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2469P: Mark Fasheh
2470M: mark.fasheh@oracle.com
2471P: Kurt Hackel
2472M: kurt.hackel@oracle.com
2473L: ocfs2-devel@oss.oracle.com
2474W: http://oss.oracle.com/projects/ocfs2/
2475S: Supported
2476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477OLYMPIC NETWORK DRIVER
2478P: Peter De Shrijver
2479M: p2@ace.ulyssis.student.kuleuven.ac.be
2480P: Mike Phillips
2481M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002482L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483L: linux-tr@linuxtr.net
2484W: http://www.linuxtr.net
2485S: Maintained
2486
Harald Weltec1986ee2005-11-13 16:06:29 -08002487OMNIKEY CARDMAN 4000 DRIVER
2488P: Harald Welte
2489M: laforge@gnumonks.org
2490S: Maintained
2491
Harald Welte77c44ab2005-11-13 16:06:26 -08002492OMNIKEY CARDMAN 4040 DRIVER
2493P: Harald Welte
2494M: laforge@gnumonks.org
2495S: Maintained
2496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497ONSTREAM SCSI TAPE DRIVER
2498P: Willem Riede
2499M: osst@riede.org
2500L: osst-users@lists.sourceforge.net
2501L: linux-scsi@vger.kernel.org
2502S: Maintained
2503
2504OPL3-SA2, SA3, and SAx DRIVER
2505P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002506M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507L: linux-sound@vger.kernel.org
2508S: Maintained
2509
2510OPROFILE
2511P: Philippe Elie
2512M: phil.el@wanadoo.fr
2513L: oprofile-list@lists.sf.net
2514S: Maintained
2515
2516ORINOCO DRIVER
2517P: Pavel Roskin
2518M: proski@gnu.org
2519P: David Gibson
2520M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002521L: orinoco-users@lists.sourceforge.net
2522L: orinoco-devel@lists.sourceforge.net
2523W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524S: Maintained
2525
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002526PA SEMI ETHERNET DRIVER
2527P: Olof Johansson
2528M: olof@lixom.net
2529L: netdev@vger.kernel.org
2530S: Maintained
2531
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002532PA SEMI SMBUS DRIVER
2533P: Olof Johansson
2534M: olof@lixom.net
2535L: i2c@lm-sensors.org
2536S: Maintained
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538PARALLEL PORT SUPPORT
2539P: Phil Blundell
2540M: philb@gnu.org
2541P: Tim Waugh
2542M: tim@cyberelk.net
2543P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544P: Andrea Arcangeli
2545M: andrea@suse.de
2546L: linux-parport@lists.infradead.org
2547W: http://people.redhat.com/twaugh/parport/
2548S: Maintained
2549
2550PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2551P: Tim Waugh
2552M: tim@cyberelk.net
2553L: linux-parport@lists.infradead.org
2554W: http://www.torque.net/linux-pp.html
2555S: Maintained
2556
2557PARISC ARCHITECTURE
2558P: Matthew Wilcox
2559M: matthew@wil.cx
2560P: Grant Grundler
2561M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002562P: Kyle McMartin
2563M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564L: parisc-linux@parisc-linux.org
2565W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002566T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2567T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568S: Maintained
2569
Jim Cromie1662d322006-10-06 00:43:59 -07002570PC87360 HARDWARE MONITORING DRIVER
2571P: Jim Cromie
2572M: jim.cromie@gmail.com
2573L: lm-sensors@lm-sensors.org
2574S: Maintained
2575
2576PC8736x GPIO DRIVER
2577P: Jim Cromie
2578M: jim.cromie@gmail.com
2579S: Maintained
2580
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002581PCI ERROR RECOVERY
2582P: Linas Vepstas
2583M: linas@austin.ibm.com
2584L: linux-kernel@vger.kernel.org
2585L: linux-pci@atrey.karlin.mff.cuni.cz
2586S: Supported
2587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2589P: Thomas Sailer
2590M: sailer@ife.ee.ethz.ch
2591L: linux-sound@vger.kernel.org
2592W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2593S: Maintained
2594
2595PCI SUBSYSTEM
2596P: Greg Kroah-Hartman
2597M: gregkh@suse.de
2598L: linux-kernel@vger.kernel.org
2599L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002600T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601S: Supported
2602
2603PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002604P: Kristen Carlson Accardi
2605M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606S: Supported
2607
2608PCI HOTPLUG COMPAQ DRIVER
2609P: Greg Kroah-Hartman
2610M: greg@kroah.com
2611S: Maintained
2612
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002613PCIE HOTPLUG DRIVER
2614P: Kristen Carlson Accardi
2615M: kristen.c.accardi@intel.com
2616L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002617S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002618
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002620P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002621L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002623T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002624S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
2626PCNET32 NETWORK DRIVER
2627P: Thomas Bogendörfer
2628M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002629L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630S: Maintained
2631
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002632PER-TASK DELAY ACCOUNTING
2633P: Shailabh Nagar
2634M: nagar@watson.ibm.com
2635L: linux-kernel@vger.kernel.org
2636S: Maintained
2637
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002638PERSONALITY HANDLING
2639P: Christoph Hellwig
2640M: hch@infradead.org
2641L: linux-abi-devel@lists.sourceforge.net
2642S: Maintained
2643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644PHRAM MTD DRIVER
2645P: Jörn Engel
2646M: joern@wh.fh-wedel.de
2647L: linux-mtd@lists.infradead.org
2648S: Maintained
2649
Peter Osterlund249a6772005-09-27 21:45:30 -07002650PKTCDVD DRIVER
2651P: Peter Osterlund
2652M: petero2@telia.com
2653L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002654S: Maintained
2655
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656POSIX CLOCKS and TIMERS
2657P: George Anzinger
2658M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002659L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660S: Supported
2661
Eugene Surovegin24682972005-10-14 03:00:53 -07002662POWERPC 4xx EMAC DRIVER
2663P: Eugene Surovegin
2664M: ebs@ebshome.net
2665W: http://kernel.ebshome.net/emac/
2666L: linuxppc-embedded@ozlabs.org
2667L: netdev@vger.kernel.org
2668S: Maintained
2669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670PNP SUPPORT
2671P: Adam Belay
2672M: ambx1@neo.rr.com
2673S: Maintained
2674
Vitaly Wool999445d2007-01-04 13:07:03 +01002675PNXxxxx I2C DRIVER
2676P: Vitaly Wool
2677M: vitalywool@gmail.com
2678L: i2c@lm-sensors.org
2679S: Maintained
2680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681PPP PROTOCOL DRIVERS AND COMPRESSORS
2682P: Paul Mackerras
2683M: paulus@samba.org
2684L: linux-ppp@vger.kernel.org
2685S: Maintained
2686
2687PPP OVER ATM (RFC 2364)
2688P: Mitchell Blank Jr
2689M: mitch@sfgoth.com
2690S: Maintained
2691
2692PPP OVER ETHERNET
2693P: Michal Ostrowski
2694M: mostrows@speakeasy.net
2695S: Maintained
2696
2697PREEMPTIBLE KERNEL
2698P: Robert Love
2699M: rml@tech9.net
2700L: linux-kernel@vger.kernel.org
2701L: kpreempt-tech@lists.sourceforge.net
2702W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2703S: Supported
2704
2705PRISM54 WIRELESS DRIVER
2706P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002707M: developers@islsm.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002708L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709W: http://prism54.org
2710S: Maintained
2711
2712PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2713P: Peter Denison
2714M: promise@pnd-pc.demon.co.uk
2715W: http://www.pnd-pc.demon.co.uk/promise/
2716S: Maintained
2717
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002718PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2719P: Mikael Pettersson
2720M: mikpe@it.uu.se
2721L: linux-ide@vger.kernel.org
2722S: Maintained
2723
Geoff Levandf58a9d12006-11-23 00:46:51 +01002724PS3 PLATFORM SUPPORT
2725P: Geoff Levand
2726M: geoffrey.levand@am.sony.com
2727L: linuxppc-dev@ozlabs.org
2728L: cbe-oss-dev@ozlabs.org
2729S: Supported
2730
Michael Krufky83202042006-07-03 00:24:18 -07002731PVRUSB2 VIDEO4LINUX DRIVER
2732P: Mike Isely
2733M: isely@pobox.com
2734L: pvrusb2@isely.net
2735L: video4linux-list@redhat.com
2736W: http://www.isely.net/pvrusb2/
2737S: Maintained
2738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739PXA2xx SUPPORT
2740P: Nicolas Pitre
2741M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002742L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743S: Maintained
2744
2745QLOGIC QLA2XXX FC-SCSI DRIVER
2746P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002747M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748L: linux-scsi@vger.kernel.org
2749S: Supported
2750
Ron Mercer5a4faa82006-07-25 00:40:21 -07002751QLOGIC QLA3XXX NETWORK DRIVER
2752P: Ron Mercer
2753M: linux-driver@qlogic.com
2754L: netdev@vger.kernel.org
2755S: Supported
2756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757QNX4 FILESYSTEM
2758P: Anders Larsen
2759M: al@alarsen.net
2760L: linux-kernel@vger.kernel.org
2761W: http://www.alarsen.net/linux/qnx4fs/
2762S: Maintained
2763
2764RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002765P: Benjamin Herrenschmidt
2766M: benh@kernel.crashing.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
2770RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002771P: Paul Mackerras
2772M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002773L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774S: Maintained
2775
2776RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2777P: Corey Thomas
2778M: corey@world.std.com
2779L: linux-kernel@vger.kernel.org
2780S: Maintained
2781
Matt Mackall9e95ce22005-04-16 15:25:56 -07002782RANDOM NUMBER DRIVER
2783P: Matt Mackall
2784M: mpm@selenic.com
2785S: Maintained
2786
Matt Porter394b7012005-11-07 01:00:15 -08002787RAPIDIO SUBSYSTEM
2788P: Matt Porter
2789M: mporter@kernel.crashing.org
2790L: linux-kernel@vger.kernel.org
2791S: Maintained
2792
Josh Triplett595182b2006-10-04 02:17:21 -07002793READ-COPY UPDATE (RCU)
2794P: Dipankar Sarma
2795M: dipankar@in.ibm.com
2796W: http://www.rdrop.com/users/paulmck/rclock/
2797L: linux-kernel@vger.kernel.org
2798S: Supported
2799
2800RCUTORTURE MODULE
2801P: Josh Triplett
2802M: josh@freedesktop.org
2803L: linux-kernel@vger.kernel.org
2804S: Maintained
2805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806REAL TIME CLOCK DRIVER
2807P: Paul Gortmaker
2808M: p_gortmaker@yahoo.com
2809L: linux-kernel@vger.kernel.org
2810S: Maintained
2811
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002812REAL TIME CLOCK (RTC) SUBSYSTEM
2813P: Alessandro Zummo
2814M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002815L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002816S: Maintained
2817
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818REISERFS FILE SYSTEM
2819P: Hans Reiser
2820M: reiserfs-dev@namesys.com
2821L: reiserfs-list@namesys.com
2822W: http://www.namesys.com
2823S: Supported
2824
2825ROCKETPORT DRIVER
2826P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827W: http://www.comtrol.com
2828S: Maintained
2829
2830ROSE NETWORK LAYER
2831P: Ralf Baechle
2832M: ralf@linux-mips.org
2833L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002834W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835S: Maintained
2836
2837RISCOM8 DRIVER
2838S: Orphan
2839
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002840S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002841P: Antonino Daplas
2842M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002843L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002844S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002845
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846S390
2847P: Martin Schwidefsky
2848M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002849P: Heiko Carstens
2850M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002852L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002853W: http://www.ibm.com/developerworks/linux/linux390/
2854S: Supported
2855
2856S390 NETWORK DRIVERS
2857P: Frank Pavlic
2858M: fpavlic@de.ibm.com
2859M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002860L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002861W: http://www.ibm.com/developerworks/linux/linux390/
2862S: Supported
2863
2864S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002865P: Swen Schillig
2866M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002867M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002868L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002869W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870S: Supported
2871
2872SAA7146 VIDEO4LINUX-2 DRIVER
2873P: Michael Hunold
2874M: michael@mihu.de
2875W: http://www.mihu.de/linux/saa7146
2876S: Maintained
2877
2878SBPCD CDROM DRIVER
2879P: Eberhard Moenkeberg
2880M: emoenke@gwdg.de
2881L: linux-kernel@vger.kernel.org
2882S: Maintained
2883
2884SC1200 WDT DRIVER
2885P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002886M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887S: Maintained
2888
2889SCHEDULER
2890P: Ingo Molnar
2891M: mingo@elte.hu
2892P: Robert Love [the preemptible kernel bits]
2893M: rml@tech9.net
2894L: linux-kernel@vger.kernel.org
2895S: Maintained
2896
2897SCSI CDROM DRIVER
2898P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002899M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900L: linux-scsi@vger.kernel.org
2901W: http://www.kernel.dk
2902S: Maintained
2903
2904SCSI SG DRIVER
2905P: Doug Gilbert
2906M: dgilbert@interlog.com
2907L: linux-scsi@vger.kernel.org
2908W: http://www.torque.net/sg
2909S: Maintained
2910
2911SCSI SUBSYSTEM
2912P: James E.J. Bottomley
2913M: James.Bottomley@SteelEye.com
2914L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002915T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916S: Maintained
2917
2918SCSI TAPE DRIVER
2919P: Kai Mäkisara
2920M: Kai.Makisara@kolumbus.fi
2921L: linux-scsi@vger.kernel.org
2922S: Maintained
2923
2924SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002925P: Sridhar Samudrala
2926M: sri@us.ibm.com
2927L: lksctp-developers@lists.sourceforge.net
2928S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
2930SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002931P: Jim Cromie
2932M: jim.cromie@gmail.com
2933S: Odd Fixes
2934
2935SCx200 GPIO DRIVER
2936P: Jim Cromie
2937M: jim.cromie@gmail.com
2938S: Maintained
2939
2940SCx200 HRT CLOCKSOURCE DRIVER
2941P: Jim Cromie
2942M: jim.cromie@gmail.com
2943S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
2945SECURITY CONTACT
2946P: Security Officers
2947M: security@kernel.org
2948S: Supported
2949
2950SELINUX SECURITY MODULE
2951P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002952M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002954M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955L: linux-kernel@vger.kernel.org (kernel issues)
2956L: selinux@tycho.nsa.gov (general discussion)
2957W: http://www.nsa.gov/selinux
2958S: Supported
2959
2960SERIAL ATA (SATA) SUBSYSTEM:
2961P: Jeff Garzik
2962M: jgarzik@pobox.com
2963L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002964T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965S: Supported
2966
2967SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2968P: Pat Gefre
2969M: pfg@sgi.com
2970L: linux-ia64@vger.kernel.org
2971S: Supported
2972
2973SGI VISUAL WORKSTATION 320 AND 540
2974P: Andrey Panin
2975M: pazke@donpac.ru
2976L: linux-visws-devel@lists.sf.net
2977W: http://linux-visws.sf.net
2978S: Maintained for 2.6.
2979
2980SIMTEC EB110ATX (Chalice CATS)
2981P: Ben Dooks
2982P: Vincent Sanders
2983M: support@simtec.co.uk
2984W: http://www.simtec.co.uk/products/EB110ATX/
2985S: Supported
2986
2987SIMTEC EB2410ITX (BAST)
2988P: Ben Dooks
2989P: Vincent Sanders
2990M: support@simtec.co.uk
2991W: http://www.simtec.co.uk/products/EB2410ITX/
2992S: Supported
2993
Francois Romieu92aab3c2005-07-30 13:11:18 +02002994SIS 190 ETHERNET DRIVER
2995P: Francois Romieu
2996M: romieu@fr.zoreil.com
2997L: netdev@vger.kernel.org
2998S: Maintained
2999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000SIS 5513 IDE CONTROLLER DRIVER
3001P: Lionel Bouton
3002M: Lionel.Bouton@inet6.fr
3003W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3004W: http://gyver.homeip.net/sis5513/index.html
3005S: Maintained
3006
3007SIS 900/7016 FAST ETHERNET DRIVER
3008P: Daniele Venzano
3009M: venza@brownhat.org
3010W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003011L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012S: Maintained
3013
3014SIS FRAMEBUFFER DRIVER
3015P: Thomas Winischhofer
3016M: thomas@winischhofer.net
3017W: http://www.winischhofer.net/linuxsisvga.shtml
3018S: Maintained
3019
3020SIS USB2VGA DRIVER
3021P: Thomas Winischhofer
3022M: thomas@winischhofer.net
3023W: http://www.winischhofer.at/linuxsisusbvga.shtml
3024S: Maintained
3025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026SMC91x ETHERNET DRIVER
3027P: Nicolas Pitre
3028M: nico@cam.org
3029S: Maintained
3030
Daniel Drake8f0f8502006-07-18 22:00:25 +01003031SOFTMAC LAYER (IEEE 802.11)
3032P: Johannes Berg
3033M: johannes@sipsolutions.net
3034P: Joe Jezak
3035M: josejx@gentoo.org
3036P: Daniel Drake
3037M: dsd@gentoo.org
3038W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01003039L: netdev@vger.kernel.org
3040S: Maintained
3041
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042SOFTWARE RAID (Multiple Disks) SUPPORT
3043P: Ingo Molnar
3044M: mingo@redhat.com
3045P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003046M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003048S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
3050SOFTWARE SUSPEND:
3051P: Pavel Machek
3052M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07003053L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054S: Maintained
3055
3056SONIC NETWORK DRIVER
3057P: Thomas Bogendoerfer
3058M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003059L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060S: Maintained
3061
3062SONY VAIO CONTROL DEVICE DRIVER
3063P: Stelian Pop
3064M: stelian@popies.net
3065W: http://popies.net/sonypi/
3066S: Maintained
3067
3068SOUND
3069P: Jaroslav Kysela
3070M: perex@suse.cz
3071L: alsa-devel@alsa-project.org
3072S: Maintained
3073
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003074SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3075P: Liam Girdwood
3076M: liam.girdwood@wolfsonmicro.com
3077L: alsa-devel@alsa-project.org
3078S: Supported
3079
Kumar Gala025c3982006-04-02 16:05:54 -05003080SPI SUBSYSTEM
3081P: David Brownell
3082M: dbrownell@users.sourceforge.net
3083L: spi-devel-general@lists.sourceforge.net
3084S: Maintained
3085
Steven Rostedt855f46a2006-08-05 12:14:50 -07003086STABLE BRANCH:
3087P: Greg Kroah-Hartman
3088M: greg@kroah.com
3089P: Chris Wright
3090M: chrisw@sous-sol.org
3091L: stable@kernel.org
3092S: Maintained
3093
Kylene Hall1c72d462005-05-01 08:59:13 -07003094TPM DEVICE DRIVER
3095P: Kylene Hall
3096M: kjhall@us.ibm.com
3097W: http://tpmdd.sourceforge.net
3098L: tpmdd-devel@lists.sourceforge.net
3099S: Maintained
3100
Mark Gross1a80ba82005-10-30 15:02:55 -08003101Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003102P: Mark Gross
3103M: mark.gross@intel.com
3104S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003105
Chris Zankel48b415c2005-06-23 22:01:07 -07003106TENSILICA XTENSA PORT (xtensa):
3107P: Chris Zankel
3108M: chris@zankel.net
3109S: Maintained
3110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111UltraSPARC (sparc64):
3112P: David S. Miller
3113M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003115T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116S: Maintained
3117
3118SHARP LH SUPPORT (LH7952X & LH7A40X)
3119P: Marc Singer
3120M: elf@buici.com
3121W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003122L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123S: Maintained
3124
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003125SHPC HOTPLUG DRIVER
3126P: Kristen Carlson Accardi
3127M: kristen.c.accardi@intel.com
3128L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003129S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003130
Pierre Ossmand129bce2006-03-24 03:18:17 -08003131SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3132P: Pierre Ossman
3133M: drzeus-sdhci@drzeus.cx
3134L: sdhci-devel@list.drzeus.cx
3135W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3136S: Maintained
3137
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003138SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3139P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003140M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003141L: netdev@vger.kernel.org
3142S: Maintained
3143
Chris Boot1a87d942006-07-10 04:45:34 -07003144SOEKRIS NET48XX LED SUPPORT
3145P: Chris Boot
3146M: bootc@bootc.net
3147S: Maintained
3148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149SPARC (sparc32):
3150P: William L. Irwin
3151M: wli@holomorphy.com
3152L: sparclinux@vger.kernel.org
3153S: Maintained
3154
3155SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3156P: Roger Wolff
3157M: R.E.Wolff@BitWizard.nl
3158L: linux-kernel@vger.kernel.org ?
3159S: Supported
3160
Jim Lewis2752e402006-09-29 02:01:19 -07003161SPIDERNET NETWORK DRIVER for CELL
3162P: Jim Lewis
3163M: jim@jklewis.com
3164L: netdev@vger.kernel.org
3165S: Supported
3166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167SRM (Alpha) environment access
3168P: Jan-Benedict Glaw
3169M: jbglaw@lug-owl.de
3170L: linux-kernel@vger.kernel.org
3171S: Maintained
3172
3173STARFIRE/DURALAN NETWORK DRIVER
3174P: Ion Badulescu
3175M: ionut@cs.columbia.edu
3176S: Maintained
3177
3178STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3179W: http://mosquitonet.Stanford.EDU/strip.html
3180S: Unsupported ?
3181
3182STRADIS MPEG-2 DECODER DRIVER
3183P: Nathan Laredo
3184M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185W: http://www.stradis.com/
3186S: Maintained
3187
3188SUPERH (sh)
3189P: Paul Mundt
3190M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003191L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193S: Maintained
3194
3195SUPERH64 (sh64)
3196P: Paul Mundt
3197M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198L: linuxsh-shmedia-dev@lists.sourceforge.net
3199W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200S: Maintained
3201
3202SUN3/3X
3203P: Sam Creasey
3204M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205W: http://sammy.net/sun3/
3206S: Maintained
3207
3208SVGA HANDLING
3209P: Martin Mares
3210M: mj@ucw.cz
3211L: linux-video@atrey.karlin.mff.cuni.cz
3212S: Maintained
3213
3214SYSV FILESYSTEM
3215P: Christoph Hellwig
3216M: hch@infradead.org
3217S: Maintained
3218
Stephen Hemminger781b4562006-07-10 20:25:29 -07003219TC CLASSIFIER
3220P: Jamal Hadi Salim
3221M: hadi@cyberus.ca
3222L: netdev@vger.kernel.org
3223S: Maintained
3224
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003225TCP LOW PRIORITY MODULE
3226P: Wong Hoi Sing, Edison
3227M: hswong3i@gmail.com
3228P: Hung Hing Lun, Mike
3229M: hlhung3i@gmail.com
3230W: http://tcp-lp-mod.sourceforge.net/
3231S: Maintained
3232
Alex Dubov4020f2d2006-10-04 02:15:37 -07003233TI FLASH MEDIA INTERFACE DRIVER
3234P: Alex Dubov
3235M: oakad@yahoo.com
3236S: Maintained
3237
Michael Buesch844dd052006-06-26 00:24:59 -07003238TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3239P: Deepak Saxena
3240M: dsaxena@plexity.net
3241S: Maintained
3242
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003243TASKSTATS STATISTICS INTERFACE
3244P: Shailabh Nagar
3245M: nagar@watson.ibm.com
3246L: linux-kernel@vger.kernel.org
3247S: Maintained
3248
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003250P: Romain Lievin
3251M: roms@lpg.ticalc.org
3252S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Per Lidene86eaa32006-01-12 16:45:18 +01003254TIPC NETWORK LAYER
3255P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003256M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003257P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003258M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003259P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003260M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003261L: tipc-discussion@lists.sourceforge.net
3262W: http://tipc.sourceforge.net/
3263W: http://tipc.cslab.ericsson.net/
3264T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3265S: Maintained
3266
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267TLAN NETWORK DRIVER
3268P: Samuel Chessman
3269M: chessman@tux.org
3270L: tlan-devel@lists.sourceforge.net
3271W: http://sourceforge.net/projects/tlan/
3272S: Maintained
3273
3274TOKEN-RING NETWORK DRIVER
3275P: Mike Phillips
3276M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003277L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278L: linux-tr@linuxtr.net
3279W: http://www.linuxtr.net
3280S: Maintained
3281
3282TOSHIBA ACPI EXTRAS DRIVER
3283P: John Belmonte
3284M: toshiba_acpi@memebeam.org
3285W: http://memebeam.org/toys/ToshibaAcpiDriver
3286S: Maintained
3287
3288TOSHIBA SMM DRIVER
3289P: Jonathan Buzzard
3290M: jonathan@buzzard.org.uk
3291L: tlinux-users@tce.toshiba-dme.co.jp
3292W: http://www.buzzard.org.uk/toshiba/
3293S: Maintained
3294
3295TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3296P: Muli Ben-Yehuda
3297M: mulix@mulix.org
3298L: linux-kernel@vger.kernel.org
3299S: Maintained
3300
3301TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003302P: Adrian Bunk
3303M: trivial@kernel.org
3304L: linux-kernel@vger.kernel.org
3305W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3306T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3307S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308
3309TMS380 TOKEN-RING NETWORK DRIVER
3310P: Adam Fritzler
3311M: mid@auk.cx
3312L: linux-tr@linuxtr.net
3313W: http://www.auk.cx/tms380tr/
3314S: Maintained
3315
3316TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003317P: Valerie Henson
3318M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319L: tulip-users@lists.sourceforge.net
3320W: http://sourceforge.net/projects/tulip/
3321S: Maintained
3322
3323TUN/TAP driver
3324P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003325M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326L: vtun@office.satix.net
3327W: http://vtun.sourceforge.net/tun
3328S: Maintained
3329
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003330TURBOCHANNEL SUBSYSTEM
3331P: Maciej W. Rozycki
3332M: macro@linux-mips.org
3333S: Maintained
3334
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335U14-34F SCSI DRIVER
3336P: Dario Ballabio
3337M: ballabio_dario@emc.com
3338L: linux-scsi@vger.kernel.org
3339S: Maintained
3340
3341UDF FILESYSTEM
3342P: Ben Fennema
3343M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344W: http://linux-udf.sourceforge.net
3345S: Maintained
3346
3347UNIFORM CDROM DRIVER
3348P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003349M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350L: linux-kernel@vger.kernel.org
3351W: http://www.kernel.dk
3352S: Maintained
3353
3354USB ACM DRIVER
3355P: Oliver Neukum
3356M: oliver@neukum.name
3357L: linux-usb-users@lists.sourceforge.net
3358L: linux-usb-devel@lists.sourceforge.net
3359S: Maintained
3360
3361USB BLOCK DRIVER (UB ub)
3362P: Pete Zaitcev
3363M: zaitcev@redhat.com
3364L: linux-kernel@vger.kernel.org
3365L: linux-usb-devel@lists.sourceforge.net
3366S: Supported
3367
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368USB CDC ETHERNET DRIVER
3369P: Greg Kroah-Hartman
3370M: greg@kroah.com
3371L: linux-usb-users@lists.sourceforge.net
3372L: linux-usb-devel@lists.sourceforge.net
3373S: Maintained
3374W: http://www.kroah.com/linux-usb/
3375
3376USB EHCI DRIVER
3377P: David Brownell
3378M: dbrownell@users.sourceforge.net
3379L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003380S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
Luca Risolia7ce08c92006-01-11 02:06:59 +00003382USB ET61X[12]51 DRIVER
3383P: Luca Risolia
3384M: luca.risolia@studio.unibo.it
3385L: linux-usb-devel@lists.sourceforge.net
3386L: video4linux-list@redhat.com
3387W: http://www.linux-projects.org
3388S: Maintained
3389
David Brownell69ae9e32006-11-14 02:03:31 -08003390USB GADGET/PERIPHERAL SUBSYSTEM
3391P: David Brownell
3392M: dbrownell@users.sourceforge.net
3393L: linux-usb-devel@lists.sourceforge.net
3394W: http://www.linux-usb.org/gadget
3395S: Maintained
3396
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397USB HID/HIDBP DRIVERS
Jiri Kosina641266f2007-01-15 09:56:21 +01003398P: Jiri Kosina
3399M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400L: linux-usb-devel@lists.sourceforge.net
3401S: Maintained
3402
3403USB HUB DRIVER
3404P: Johannes Erdfelt
3405M: johannes@erdfelt.com
3406L: linux-usb-users@lists.sourceforge.net
3407L: linux-usb-devel@lists.sourceforge.net
3408S: Maintained
3409
Olav Kongas959eea22005-11-03 17:38:14 +02003410USB ISP116X DRIVER
3411P: Olav Kongas
3412M: ok@artecdesign.ee
3413L: linux-usb-devel@lists.sourceforge.net
3414S: Maintained
3415
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416USB KAWASAKI LSI DRIVER
3417P: Oliver Neukum
3418M: oliver@neukum.name
3419L: linux-usb-users@lists.sourceforge.net
3420L: linux-usb-devel@lists.sourceforge.net
3421S: Maintained
3422
3423USB MASS STORAGE DRIVER
3424P: Matthew Dharm
3425M: mdharm-usb@one-eyed-alien.net
3426L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003427L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428S: Maintained
3429W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3430
3431USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003432P: David Brownell
3433M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434L: linux-usb-users@lists.sourceforge.net
3435L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003436S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Matthias Urlichsba460e42005-07-14 00:33:47 -07003438USB OPTION-CARD DRIVER
3439P: Matthias Urlichs
3440M: smurf@smurf.noris.de
3441L: linux-usb-devel@lists.sourceforge.net
3442S: Maintained
3443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444USB OV511 DRIVER
3445P: Mark McClelland
3446M: mmcclell@bigfoot.com
3447L: linux-usb-users@lists.sourceforge.net
3448L: linux-usb-devel@lists.sourceforge.net
3449W: http://alpha.dyndns.org/ov511/
3450S: Maintained
3451
3452USB PEGASUS DRIVER
3453P: Petko Manolov
3454M: petkan@users.sourceforge.net
3455L: linux-usb-users@lists.sourceforge.net
3456L: linux-usb-devel@lists.sourceforge.net
3457W: http://pegasus2.sourceforge.net/
3458S: Maintained
3459
3460USB PRINTER DRIVER
3461P: Vojtech Pavlik
3462M: vojtech@suse.cz
3463L: linux-usb-users@lists.sourceforge.net
3464L: linux-usb-devel@lists.sourceforge.net
3465S: Maintained
3466
3467USB RTL8150 DRIVER
3468P: Petko Manolov
3469M: petkan@users.sourceforge.net
3470L: linux-usb-users@lists.sourceforge.net
3471L: linux-usb-devel@lists.sourceforge.net
3472W: http://pegasus2.sourceforge.net/
3473S: Maintained
3474
3475USB SE401 DRIVER
3476P: Jeroen Vreeken
3477M: pe1rxq@amsat.org
3478L: linux-usb-users@lists.sourceforge.net
3479L: linux-usb-devel@lists.sourceforge.net
3480W: http://www.chello.nl/~j.vreeken/se401/
3481S: Maintained
3482
3483USB SERIAL CYBERJACK DRIVER
3484P: Matthias Bruestle and Harald Welte
3485M: support@reiner-sct.com
3486W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3487S: Maintained
3488
3489USB SERIAL DIGI ACCELEPORT DRIVER
3490P: Peter Berger and Al Borchers
3491M: pberger@brimson.com
3492M: alborchers@steinerpoint.com
3493L: linux-usb-users@lists.sourceforge.net
3494L: linux-usb-devel@lists.sourceforge.net
3495S: Maintained
3496
3497USB SERIAL DRIVER
3498P: Greg Kroah-Hartman
3499M: gregkh@suse.de
3500L: linux-usb-users@lists.sourceforge.net
3501L: linux-usb-devel@lists.sourceforge.net
3502S: Supported
3503
3504USB SERIAL BELKIN F5U103 DRIVER
3505P: William Greathouse
3506M: wgreathouse@smva.com
3507L: linux-usb-users@lists.sourceforge.net
3508L: linux-usb-devel@lists.sourceforge.net
3509S: Maintained
3510
3511USB SERIAL CYPRESS M8 DRIVER
3512P: Lonnie Mendez
3513M: dignome@gmail.com
3514L: linux-usb-users@lists.sourceforge.net
3515L: linux-usb-devel@lists.sourceforge.net
3516S: Maintained
3517W: http://geocities.com/i0xox0i
3518W: http://firstlight.net/cvs
3519
3520USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3521L: linux-usb-users@lists.sourceforge.net
3522L: linux-usb-devel@lists.sourceforge.net
3523S: Maintained
3524
3525USB AUERSWALD DRIVER
3526P: Wolfgang Muees
3527M: wolfgang@iksw-muees.de
3528L: linux-usb-users@lists.sourceforge.net
3529L: linux-usb-devel@lists.sourceforge.net
3530S: Maintained
3531
3532USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3533P: Gary Brubaker
3534M: xavyer@ix.netcom.com
3535L: linux-usb-users@lists.sourceforge.net
3536L: linux-usb-devel@lists.sourceforge.net
3537S: Maintained
3538
3539USB SERIAL KEYSPAN DRIVER
3540P: Greg Kroah-Hartman
3541M: greg@kroah.com
3542L: linux-usb-users@lists.sourceforge.net
3543L: linux-usb-devel@lists.sourceforge.net
3544W: http://www.kroah.com/linux/
3545S: Maintained
3546
3547USB SERIAL WHITEHEAT DRIVER
3548P: Stuart MacDonald
3549M: stuartm@connecttech.com
3550L: linux-usb-users@lists.sourceforge.net
3551L: linux-usb-devel@lists.sourceforge.net
3552W: http://www.connecttech.com
3553S: Supported
3554
3555USB SN9C10x DRIVER
3556P: Luca Risolia
3557M: luca.risolia@studio.unibo.it
3558L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003559L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560W: http://www.linux-projects.org
3561S: Maintained
3562
3563USB SUBSYSTEM
3564P: Greg Kroah-Hartman
3565M: gregkh@suse.de
3566L: linux-usb-users@lists.sourceforge.net
3567L: linux-usb-devel@lists.sourceforge.net
3568W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003569T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570S: Supported
3571
3572USB UHCI DRIVER
3573P: Alan Stern
3574M: stern@rowland.harvard.edu
3575L: linux-usb-users@lists.sourceforge.net
3576L: linux-usb-devel@lists.sourceforge.net
3577S: Maintained
3578
David Brownell69ae9e32006-11-14 02:03:31 -08003579USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580P: David Brownell
3581M: dbrownell@users.sourceforge.net
3582L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003583W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584S: Maintained
3585
3586USB W996[87]CF DRIVER
3587P: Luca Risolia
3588M: luca.risolia@studio.unibo.it
3589L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003590L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591W: http://www.linux-projects.org
3592S: Maintained
3593
Luca Risolia60f78052006-02-06 16:29:35 +00003594USB ZC0301 DRIVER
3595P: Luca Risolia
3596M: luca.risolia@studio.unibo.it
3597L: linux-usb-devel@lists.sourceforge.net
3598L: video4linux-list@redhat.com
3599W: http://www.linux-projects.org
3600S: Maintained
3601
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602USB ZD1201 DRIVER
3603P: Jeroen Vreeken
3604M: pe1rxq@amsat.org
3605L: linux-usb-users@lists.sourceforge.net
3606L: linux-usb-devel@lists.sourceforge.net
3607W: http://linux-lc100020.sourceforge.net
3608S: Maintained
3609
3610USER-MODE LINUX
3611P: Jeff Dike
3612M: jdike@karaya.com
3613L: user-mode-linux-devel@lists.sourceforge.net
3614L: user-mode-linux-user@lists.sourceforge.net
3615W: http://user-mode-linux.sourceforge.net
3616S: Maintained
3617
3618FAT/VFAT/MSDOS FILESYSTEM:
3619P: OGAWA Hirofumi
3620M: hirofumi@mail.parknet.co.jp
3621L: linux-kernel@vger.kernel.org
3622S: Maintained
3623
3624VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3625P: Jeff Garzik
3626S: Odd fixes
3627
3628VIA RHINE NETWORK DRIVER
3629P: Roger Luethi
3630M: rl@hellgate.ch
3631S: Maintained
3632
Jean Delvare32c0a522005-09-22 21:47:58 +02003633VIAPRO SMBUS DRIVER
3634P: Jean Delvare
3635M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003636L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003637S: Maintained
3638
Francois Romieu01f20732007-01-26 00:57:17 -08003639VIA VELOCITY NETWORK DRIVER
3640P: Francois Romieu
3641M: romieu@fr.zoreil.com
3642L: netdev@vger.kernel.org
3643S: Maintained
3644
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645UCLINUX (AND M68KNOMMU)
3646P: Greg Ungerer
3647M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003649L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650S: Maintained
3651
3652UCLINUX FOR NEC V850
3653P: Miles Bader
3654M: uclinux-v850@lsi.nec.co.jp
3655W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3656W: http://www.ee.nec.de/uclinux/
3657S: Supported
3658
3659UCLINUX FOR RENESAS H8/300
3660P: Yoshinori Sato
3661M: ysato@users.sourceforge.jp
3662W: http://uclinux-h8.sourceforge.jp/
3663S: Supported
3664
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003665UFS FILESYSTEM
3666P: Evgeniy Dushistov
3667M: dushistov@mail.ru
3668L: linux-kernel@vger.kernel.org
3669S: Maintained
3670
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671USB DIAMOND RIO500 DRIVER
3672P: Cesar Miquel
3673M: miquel@df.uba.ar
3674L: rio500-users@lists.sourceforge.net
3675W: http://rio500.sourceforge.net
3676S: Maintained
3677
3678VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003679P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003680M: mchehab@infradead.org
3681M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003683W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003684T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003685S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686
Juerg Haefligerab413192006-09-24 20:54:04 +02003687VT1211 HARDWARE MONITOR DRIVER
3688P: Juerg Haefliger
3689M: juergh@gmail.com
3690L: lm-sensors@lm-sensors.org
3691S: Maintained
3692
Roger Lucas1de9e372005-11-26 20:20:05 +01003693VT8231 HARDWARE MONITOR DRIVER
3694P: Roger Lucas
3695M: roger@planbit.co.uk
3696L: lm-sensors@lm-sensors.org
3697S: Maintained
3698
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699W1 DALLAS'S 1-WIRE BUS
3700P: Evgeniy Polyakov
3701M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702S: Maintained
3703
Charles Spirakis13927072006-07-05 18:05:15 +02003704W83791D HARDWARE MONITORING DRIVER
3705P: Charles Spirakis
3706M: bezaur@gmail.com
3707L: lm-sensors@lm-sensors.org
3708S: Maintained
3709
Rudolf Marek61db0112006-12-12 18:18:30 +01003710W83793 HARDWARE MONITORING DRIVER
3711P: Rudolf Marek
3712M: r.marek@assembler.cz
3713L: lm-sensors@lm-sensors.org
3714S: Maintained
3715
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716W83L51xD SD/MMC CARD INTERFACE DRIVER
3717P: Pierre Ossman
3718M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003719L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720W: http://projects.drzeus.cx/wbsd
3721S: Maintained
3722
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003723WATCHDOG DEVICE DRIVERS
3724P: Wim Van Sebroeck
3725M: wim@iguana.be
3726T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3727S: Maintained
3728
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3730P: Jean Tourrilhes
3731M: jt@hpl.hp.com
3732W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3733S: Maintained
3734
3735WD7000 SCSI DRIVER
3736P: Miroslav Zagorac
3737M: zaga@fly.cc.fer.hr
3738L: linux-scsi@vger.kernel.org
3739S: Maintained
3740
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003741WISTRON LAPTOP BUTTON DRIVER
3742P: Miloslav Trmac
3743M: mitr@volny.cz
3744S: Maintained
3745
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746WL3501 WIRELESS PCMCIA CARD DRIVER
3747P: Arnaldo Carvalho de Melo
3748M: acme@conectiva.com.br
3749W: http://advogato.org/person/acme
3750S: Maintained
3751
3752X.25 NETWORK LAYER
3753P: Henner Eisen
3754M: eis@baty.hanse.de
3755L: linux-x25@vger.kernel.org
3756S: Maintained
3757
3758XFS FILESYSTEM
3759P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003760P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003762L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003764T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765S: Supported
3766
Peter Korsgaard238b8722006-12-06 20:35:17 -08003767XILINX UARTLITE SERIAL DRIVER
3768P: Peter Korsgaard
3769M: jacmet@sunsite.dk
3770L: linux-serial@vger.kernel.org
3771S: Maintained
3772
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773X86 3-LEVEL PAGING (PAE) SUPPORT
3774P: Ingo Molnar
3775M: mingo@redhat.com
3776S: Maintained
3777
3778X86-64 port
3779P: Andi Kleen
3780M: ak@suse.de
3781L: discuss@x86-64.org
3782W: http://www.x86-64.org
3783S: Maintained
3784
3785YAM DRIVER FOR AX.25
3786P: Jean-Paul Roubelat
3787M: jpr@f6fbb.org
3788L: linux-hams@vger.kernel.org
3789S: Maintained
3790
Henkaf64a5e2005-10-12 15:02:56 +02003791YEALINK PHONE DRIVER
3792P: Henk Vergonet
3793M: Henk.Vergonet@gmail.com
3794L: usbb2k-api-dev@nongnu.org
3795S: Maintained
3796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797Z8530 DRIVER FOR AX.25
3798P: Joerg Reuter
3799M: jreuter@yaina.de
3800W: http://yaina.de/jreuter/
3801W: http://www.qsl.net/dl1bke/
3802L: linux-hams@vger.kernel.org
3803S: Maintained
3804
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003805ZD1211RW WIRELESS DRIVER
3806P: Daniel Drake
3807M: dsd@gentoo.org
3808P: Ulrich Kunitz
3809M: kune@deine-taler.de
3810W: http://zd1211.ath.cx/wiki/DriverRewrite
3811L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3812S: Maintained
3813
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814ZF MACHZ WATCHDOG
3815P: Fernando Fuganti
3816M: fuganti@netbank.com.br
3817W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3818S: Maintained
3819
3820ZR36067 VIDEO FOR LINUX DRIVER
3821P: Ronald Bultje
3822M: rbultje@ronald.bitfreak.net
3823L: mjpeg-users@lists.sourceforge.net
3824W: http://mjpeg.sourceforge.net/driver-zoran/
3825S: Maintained
3826
3827ZR36120 VIDEO FOR LINUX DRIVER
3828P: Pauline Middelink
3829M: middelin@polyware.nl
3830W: http://www.polyware.nl/~middelin/En/hobbies.html
3831W: http://www.polyware.nl/~middelin/hobbies.html
3832S: Maintained
3833
3834THE REST
3835P: Linus Torvalds
3836S: Buried alive in reporters