blob: f9343398a41f5176ccc4e7362919c93a619b1255 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
33 generalized kernel feature ready for next time. See
34 Documentation/CodingStyle for guidance here.
35
36 PLEASE try to include any credit lines you want added with the
37 patch. It avoids people being missed off by mistake and makes
38 it easier to know who wants adding and who doesn't.
39
40 PLEASE document known bugs. If it doesn't work for everything
41 or does something very odd once a month document it.
42
Alan Coxc9ee1332006-05-20 15:00:12 -070043 PLEASE remember that submissions must be made under the terms
44 of the OSDL certificate of contribution
45 (http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html)
46 and should include a Signed-off-by: line.
47
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486. Make sure you have the right to send any changes you make. If you
49 do changes at work you may find your employer owns the patch
50 not you.
51
Alan Coxc9ee1332006-05-20 15:00:12 -0700527. When sending security related changes or reports to a maintainer
53 please Cc: security@kernel.org, especially if the maintainer
54 does not respond.
55
568. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 -----------------------------------
59
60Maintainers List (try to look for most precise areas first)
61
62Note: For the hard of thinking, this list is meant to remain in alphabetical
63order. If you could add yourselves to it in alphabetical order that would be
64so much easier [Ed]
65
66P: Person
67M: Mail patches to
68L: Mailing list that is relevant to this area
69W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080070T: SCM tree type and location. Type is one of: git, hg, quilt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071S: Status, one of the following:
72
73 Supported: Someone is actually paid to look after this.
74 Maintained: Someone actually looks after it.
75 Odd Fixes: It has a maintainer but they don't have time to do
76 much other than throw the odd patch in. See below..
77 Orphan: No current maintainer [but maybe you could take the
78 role as you write your new code].
79 Obsolete: Old code. Something tagged obsolete generally means
80 it has been replaced by a better system and you
81 should be using that.
82
833C359 NETWORK DRIVER
84P: Mike Phillips
85M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -070086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070087L: linux-tr@linuxtr.net
88W: http://www.linuxtr.net
89S: Maintained
90
913C505 NETWORK DRIVER
92P: Philip Blundell
93M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -070094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070095S: Maintained
96
973CR990 NETWORK DRIVER
98P: David Dillow
99M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101S: Maintained
102
1033W-XXXX ATA-RAID CONTROLLER DRIVER
104P: Adam Radford
105M: linuxraid@amcc.com
106L: linux-scsi@vger.kernel.org
107W: http://www.amcc.com
108S: Supported
109
1103W-9XXX SATA-RAID CONTROLLER DRIVER
111P: Adam Radford
112M: linuxraid@amcc.com
113L: linux-scsi@vger.kernel.org
114W: http://www.amcc.com
115S: Supported
116
11753C700 AND 53C700-66 SCSI DRIVER
118P: James E.J. Bottomley
119M: James.Bottomley@HansenPartnership.com
120L: linux-scsi@vger.kernel.org
121S: Maintained
122
1236PACK NETWORK DRIVER FOR AX.25
124P: Andreas Koensgen
125M: ajk@iehk.rwth-aachen.de
126L: linux-hams@vger.kernel.org
127S: Maintained
128
1298139CP 10/100 FAST ETHERNET DRIVER
130P: Jeff Garzik
131M: jgarzik@pobox.com
132S: Maintained
133
1348139TOO 10/100 FAST ETHERNET DRIVER
135P: Jeff Garzik
136M: jgarzik@pobox.com
137W: http://sourceforge.net/projects/gkernel/
138S: Maintained
139
1408169 10/100/1000 GIGABIT ETHERNET DRIVER
141P: Francois Romieu
142M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700143L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Maintained
145
1468250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-serial@vger.kernel.org
148W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100149S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1518390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
152P: Paul Gortmaker
153M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
156
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001579P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100158P: Eric Van Hensbergen
159M: ericvh@gmail.com
160P: Ron Minnich
161M: rminnich@lanl.gov
162P: Latchesar Ionkov
163M: lucho@ionkov.net
164L: v9fs-developer@lists.sourceforge.net
165W: http://v9fs.sf.net
166T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
167S: Maintained
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169A2232 SERIAL BOARD DRIVER
170P: Enver Haase
171M: ehaase@inf.fu-berlin.de
172M: A2232@gmx.net
173L: linux-m68k@lists.linux-m68k.org
174S: Maintained
175
176AIO
177P: Benjamin LaHaise
178M: bcrl@kvack.org
179L: linux-aio@kvack.org
180S: Supported
181
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200182ABIT UGURU HARDWARE MONITOR DRIVER
183P: Hans de Goede
184M: j.w.r.degoede@hhs.nl
185L: lm-sensors@lm-sensors.org
186S: Maintained
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188ACENIC DRIVER
189P: Jes Sorensen
190M: jes@trained-monkey.org
191L: linux-acenic@sunsite.dk
192S: Maintained
193
194ACI MIXER DRIVER
195P: Robert Siemer
196M: Robert.Siemer@gmx.de
197L: linux-sound@vger.kernel.org
198W: http://www.stud.uni-karlsruhe.de/~uh1b/
199S: Maintained
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201AACRAID SCSI RAID DRIVER
202P: Adaptec OEM Raid Solutions
203L: linux-scsi@vger.kernel.org
204W: http://linux.dell.com/storage.shtml
205S: Supported
206
207ACPI
208P: Len Brown
209M: len.brown@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500210M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500211L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800213T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500214S: Supported
215
216ACPI BATTERY DRIVERS
217P: Vladimir P. Lebedev
218M: vladimir.p.lebedev@intel.com
219L: linux-acpi@vger.kernel.org
220W: http://acpi.sourceforge.net/
221S: Supported
222
223ACPI EC DRIVER
224P: Alexey Starikovskiy
225M: alexey.y.starikovskiy@linux.intel.com
226L: linux-acpi@vger.kernel.org
227W: http://acpi.sourceforge.net/
228S: Supported
229
230ACPI FAN DRIVER
231P: Konstantin A. Karasyov
232M: konstantin.a.karasyov@intel.com
233L: linux-acpi@vger.kernel.org
234W: http://acpi.sourceforge.net/
235S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700237ACPI PCI HOTPLUG DRIVER
238P: Kristen Carlson Accardi
239M: kristen.c.accardi@intel.com
240L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -0500241S: Supported
242
243ACPI THERMAL DRIVER
244P: Konstantin A. Karasyov
245M: konstantin.a.karasyov@intel.com
246L: linux-acpi@vger.kernel.org
247W: http://acpi.sourceforge.net/
248S: Supported
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250AD1816 SOUND DRIVER
251P: Thorsten Knabe
252M: Thorsten Knabe <linux@thorsten-knabe.de>
253W: http://linux.thorsten-knabe.de
254S: Maintained
255
Kyle McMartin6958ae32005-10-21 23:11:27 -0400256AD1889 SOUND DRIVER
257P: Kyle McMartin
258M: kyle@parisc-linux.org
259P: Thibaut Varene
260M: T-Bone@parisc-linux.org
261W: http://wiki.parisc-linux.org/AD1889
262L: parisc-linux@lists.parisc-linux.org
263S: Maintained
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265ADM1025 HARDWARE MONITOR DRIVER
266P: Jean Delvare
267M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200268L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269S: Maintained
270
271ADT746X FAN DRIVER
272P: Colin Leroy
273M: colin@colino.net
274S: Maintained
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276AEDSP16 DRIVER
277P: Riccardo Facchetti
278M: fizban@tin.it
279S: Maintained
280
281AFFS FILE SYSTEM
282P: Roman Zippel
283M: zippel@linux-m68k.org
284S: Maintained
285
286AGPGART DRIVER
287P: Dave Jones
288M: davej@codemonkey.org.uk
289W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800290T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291S: Maintained
292
293AHA152X SCSI DRIVER
294P: Juergen E. Fischer
295M: Juergen Fischer <fischer@norbit.de>
296L: linux-scsi@vger.kernel.org
297S: Maintained
298
299ALCATEL SPEEDTOUCH USB DRIVER
300P: Duncan Sands
301M: duncan.sands@free.fr
302L: linux-usb-users@lists.sourceforge.net
303L: linux-usb-devel@lists.sourceforge.net
304W: http://www.linux-usb.org/SpeedTouch/
305S: Maintained
306
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000307ALI1563 I2C DRIVER
308P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100309M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200310L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000311S: Maintained
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313ALPHA PORT
314P: Richard Henderson
315M: rth@twiddle.net
316S: Odd Fixes for 2.4; Maintained for 2.6.
317P: Ivan Kokshaysky
318M: ink@jurassic.park.msu.ru
319S: Maintained for 2.4; PCI support for 2.6.
320
Jordan Crousef90b8112006-01-06 00:12:14 -0800321AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100322P: Jordan Crouse
323M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800324L: info-linux@geode.amd.com
325W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
326S: Supported
327
Stelian Pop284f42b2006-12-12 18:18:31 +0100328AMS (Apple Motion Sensor) DRIVER
329P: Stelian Pop
330M: stelian@popies.net
331P: Michael Hanselmann
332M: linux-kernel@hansmi.ch
333S: Supported
334
Tom Tuckerf94b5332006-09-22 15:22:48 -0700335AMSO1100 RNIC DRIVER
336P: Tom Tucker
337M: tom@opengridcomputing.com
338P: Steve Wise
339M: swise@opengridcomputing.com
340L: openib-general@openib.org
341S: Maintained
342
Johannes Berg42269062006-07-25 16:15:50 +0200343AOA (Apple Onboard Audio) ALSA DRIVER
344P: Johannes Berg
345M: johannes@sipsolutions.net
346L: linuxppc-dev@ozlabs.org
347L: alsa-devel@alsa-project.org
348S: Maintained
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350APM DRIVER
351P: Stephen Rothwell
352M: sfr@canb.auug.org.au
353L: linux-laptop@vger.kernel.org
354W: http://www.canb.auug.org.au/~sfr/
355S: Supported
356
357APPLETALK NETWORK LAYER
358P: Arnaldo Carvalho de Melo
359M: acme@conectiva.com.br
360S: Maintained
361
Jaya Kumar1154ea72005-06-21 17:17:04 -0700362ARC FRAMEBUFFER DRIVER
363P: Jaya Kumar
364M: jayalk@intworks.biz
365S: Maintained
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367ARM26 ARCHITECTURE
368P: Ian Molton
369M: spyro@f2s.com
370S: Maintained
371
372ARM26/ARCHIMEDES
373P: Ian Molton
374M: spyro@f2s.com
375S: Maintained
376
377ARM26/A5000
378P: John Appleby
379M: john@dnsworld.co.uk
380S: Maintained
381
382ARM MFM AND FLOPPY DRIVERS
383P: Ian Molton
384M: spyro@f2s.com
385S: Maintained
386
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800387ARM/ADI ROADRUNNER MACHINE SUPPORT
388P: Lennert Buytenhek
389M: kernel@wantstofly.org
390L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
391S: Maintained
392
393ARM/ADS SPHERE MACHINE SUPPORT
394P: Lennert Buytenhek
395M: kernel@wantstofly.org
396L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
397S: Maintained
398
399ARM/AJECO 1ARM MACHINE SUPPORT
400P: Lennert Buytenhek
401M: kernel@wantstofly.org
402L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
403S: Maintained
404
Andrew Victord4a89c72006-12-04 13:56:21 +0100405ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
406P: Andrew Victor
407M: andrew@sanpeople.com
408L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
409W: http://maxim.org.za/at91_26.html
410S: Maintained
411
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800412ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
413P: Lennert Buytenhek
414M: kernel@wantstofly.org
415L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
416S: Maintained
417
418ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
419P: Lennert Buytenhek
420M: kernel@wantstofly.org
421L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
422S: Maintained
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424ARM/CORGI MACHINE SUPPORT
425P: Richard Purdie
426M: rpurdie@rpsys.net
427S: Maintained
428
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800429ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
430P: Lennert Buytenhek
431M: kernel@wantstofly.org
432L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
433S: Maintained
434
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100435ARM/HP JORNADA 7XX MACHINE SUPPORT
436P: Kristoffer Ericson
437M: kristoffer_e1@hotmail.com
438W: www.jlime.com
439S: Maintained
440
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800441ARM/INTEL IOP32X ARM ARCHITECTURE
442P: Lennert Buytenhek
443M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100444P: Dan Williams
445M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800446L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100447S: Supported
448
449ARM/INTEL IOP33X ARM ARCHITECTURE
450P: Dan Williams
451M: dan.j.williams@intel.com
452L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
453S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800454
455ARM/INTEL IOP13XX ARM ARCHITECTURE
456P: Lennert Buytenhek
457M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100458P: Dan Williams
459M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800460L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100461S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800462
463ARM/INTEL IQ81342EX MACHINE SUPPORT
464P: Lennert Buytenhek
465M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100466P: Dan Williams
467M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800468L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100469S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800470
471ARM/INTEL IXP2000 ARM ARCHITECTURE
472P: Lennert Buytenhek
473M: kernel@wantstofly.org
474L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
475S: Maintained
476
477ARM/INTEL IXDP2850 MACHINE SUPPORT
478P: Lennert Buytenhek
479M: kernel@wantstofly.org
480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
481S: Maintained
482
483ARM/INTEL IXP23XX ARM ARCHITECTURE
484P: Lennert Buytenhek
485M: kernel@wantstofly.org
486L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
487S: Maintained
488
489ARM/INTEL XSC3 (MANZANO) ARM CORE
490P: Lennert Buytenhek
491M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100492P: Dan Williams
493M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800494L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100495S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800496
497ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
498P: Lennert Buytenhek
499M: kernel@wantstofly.org
500L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
501S: Maintained
502
503ARM/LOGICPD PXA270 MACHINE SUPPORT
504P: Lennert Buytenhek
505M: kernel@wantstofly.org
506L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
507S: Maintained
508
Dirk Opfer8459c152005-11-06 14:27:52 +0000509ARM/TOSA MACHINE SUPPORT
510P: Dirk Opfer
511M: dirk@opfer-online.de
512S: Maintained
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514ARM/PLEB SUPPORT
515P: Peter Chubb
516M: pleb@gelato.unsw.edu.au
517W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
518S: Maintained
519
520ARM/PT DIGITAL BOARD PORT
521P: Stefan Eletzhofer
522M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700523L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524W: http://www.arm.linux.org.uk/
525S: Maintained
526
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800527ARM/RADISYS ENP2611 MACHINE SUPPORT
528P: Lennert Buytenhek
529M: kernel@wantstofly.org
530L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
531S: Maintained
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533ARM/SHARK MACHINE SUPPORT
534P: Alexander Schulz
535M: alex@shark-linux.de
536W: http://www.shark-linux.de/shark.html
537S: Maintained
538
539ARM/STRONGARM110 PORT
540P: Russell King
541M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700542L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543W: http://www.arm.linux.org.uk/
544S: Maintained
545
546ARM/S3C2410 ARM ARCHITECTURE
547P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800548M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700549L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550W: http://www.fluff.org/ben/linux/
551S: Maintained
552
553ARM/S3C2440 ARM ARCHITECTURE
554P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800555M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700556L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557W: http://www.fluff.org/ben/linux/
558S: Maintained
559
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800560ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
561P: Lennert Buytenhek
562M: kernel@wantstofly.org
563L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
564S: Maintained
565
566ARM/THECUS N2100 MACHINE SUPPORT
567P: Lennert Buytenhek
568M: kernel@wantstofly.org
569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
570S: Maintained
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572ARPD SUPPORT
573P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700574L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575S: Maintained
576
577ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500578P: Corentin Chary
579M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580P: Karol Kozimor
581M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582L: acpi4asus-user@lists.sourceforge.net
583W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500584W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585S: Maintained
586
587ATA OVER ETHERNET DRIVER
588P: Ed L. Cashin
589M: ecashin@coraid.com
590W: http://www.coraid.com/support/linux
591S: Supported
592
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600593ATL1 ETHERNET DRIVER
594P: Jay Cliburn
595M: jcliburn@gmail.com
596P: Chris Snook
597M: csnook@redhat.com
598L: atl1-devel@lists.sourceforge.net
599W: http://sourceforge.net/projects/atl1
600W: http://atl1.sourceforge.net
601S: Maintained
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603ATM
604P: Chas Williams
605M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700606L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607W: http://linux-atm.sourceforge.net
608S: Maintained
609
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100610ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100611P: Haavard Skinnemoen
612M: hskinnemoen@atmel.com
613S: Supported
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615ATMEL WIRELESS DRIVER
616P: Simon Kelley
617M: simon@thekelleys.org.uk
618W: http://www.thekelleys.org.uk/atmel
619W: http://atmelwlandriver.sourceforge.net/
620S: Maintained
621
Chris Wrighta92b7b82005-07-07 18:12:23 -0700622AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100623P: David Woodhouse
624M: dwmw2@infradead.org
625L: linux-audit@redhat.com
626W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800627T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700628S: Maintained
629
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700630AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700631P: Haavard Skinnemoen
632M: hskinnemoen@atmel.com
633W: http://www.atmel.com/products/AVR32/
634W: http://avr32linux.org/
635W: http://avrfreaks.net/
636S: Supported
637
638AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700639P: Haavard Skinnemoen
640M: hskinnemoen@atmel.com
641S: Supported
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643AX.25 NETWORK LAYER
644P: Ralf Baechle
645M: ralf@linux-mips.org
646L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200647W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648S: Maintained
649
650BAYCOM/HDLCDRV DRIVERS FOR AX.25
651P: Thomas Sailer
652M: t.sailer@alumni.ethz.ch
653L: linux-hams@vger.kernel.org
654W: http://www.baycom.org/~tom/ham/ham.html
655S: Maintained
656
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200657BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
658P: Larry Finger
659M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200660P: Stefano Brivio
661M: st3@riseup.net
662W: http://bcm43xx.berlios.de/
663S: Maintained
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665BEFS FILE SYSTEM
666P: Sergey S. Kostyliov
667M: rathamahata@php4.ru
668L: linux-kernel@vger.kernel.org
669S: Maintained
670
671BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
672P: Kenji Hollis
673W: http://ftp.bitgate.com/pcwd/
674S: Maintained
675
676BFS FILE SYSTEM
677P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800678M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679L: linux-kernel@vger.kernel.org
680S: Maintained
681
682BLOCK LAYER
683P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200684M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800686T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687S: Maintained
688
689BLUETOOTH SUBSYSTEM
690P: Marcel Holtmann
691M: marcel@holtmann.org
692P: Maxim Krasnyansky
693M: maxk@qualcomm.com
694L: bluez-devel@lists.sf.net
695W: http://bluez.sf.net
696W: http://www.bluez.org
697W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800698T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699S: Maintained
700
701BLUETOOTH RFCOMM LAYER
702P: Marcel Holtmann
703M: marcel@holtmann.org
704P: Maxim Krasnyansky
705M: maxk@qualcomm.com
706S: Maintained
707
708BLUETOOTH BNEP LAYER
709P: Marcel Holtmann
710M: marcel@holtmann.org
711P: Maxim Krasnyansky
712M: maxk@qualcomm.com
713S: Maintained
714
715BLUETOOTH CMTP LAYER
716P: Marcel Holtmann
717M: marcel@holtmann.org
718S: Maintained
719
720BLUETOOTH HIDP LAYER
721P: Marcel Holtmann
722M: marcel@holtmann.org
723S: Maintained
724
725BLUETOOTH HCI UART DRIVER
726P: Marcel Holtmann
727M: marcel@holtmann.org
728P: Maxim Krasnyansky
729M: maxk@qualcomm.com
730S: Maintained
731
732BLUETOOTH HCI USB DRIVER
733P: Marcel Holtmann
734M: marcel@holtmann.org
735P: Maxim Krasnyansky
736M: maxk@qualcomm.com
737S: Maintained
738
739BLUETOOTH HCI BCM203X DRIVER
740P: Marcel Holtmann
741M: marcel@holtmann.org
742S: Maintained
743
744BLUETOOTH HCI BPA10X DRIVER
745P: Marcel Holtmann
746M: marcel@holtmann.org
747S: Maintained
748
749BLUETOOTH HCI BFUSB DRIVER
750P: Marcel Holtmann
751M: marcel@holtmann.org
752S: Maintained
753
754BLUETOOTH HCI DTL1 DRIVER
755P: Marcel Holtmann
756M: marcel@holtmann.org
757S: Maintained
758
759BLUETOOTH HCI BLUECARD DRIVER
760P: Marcel Holtmann
761M: marcel@holtmann.org
762S: Maintained
763
764BLUETOOTH HCI BT3C DRIVER
765P: Marcel Holtmann
766M: marcel@holtmann.org
767S: Maintained
768
769BLUETOOTH HCI BTUART DRIVER
770P: Marcel Holtmann
771M: marcel@holtmann.org
772S: Maintained
773
774BLUETOOTH HCI VHCI DRIVER
775P: Maxim Krasnyansky
776M: maxk@qualcomm.com
777S: Maintained
778
779BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100780P: Chad Tindel
781M: ctindel@users.sourceforge.net
782P: Jay Vosburgh
783M: fubar@us.ibm.com
784L: bonding-devel@lists.sourceforge.net
785W: http://sourceforge.net/projects/bonding/
786S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000788BROADBAND PROCESSOR ARCHITECTURE
789P: Arnd Bergmann
790M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100791L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400792W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000793S: Supported
794
Gary Zambrano39105892006-06-22 17:26:20 -0700795BROADCOM B44 10/100 ETHERNET DRIVER
796P: Gary Zambrano
797M: zambrano@broadcom.com
798L: netdev@vger.kernel.org
799S: Supported
800
Michael Chan948c51e2006-06-04 02:51:39 -0700801BROADCOM BNX2 GIGABIT ETHERNET DRIVER
802P: Michael Chan
803M: mchan@broadcom.com
804L: netdev@vger.kernel.org
805S: Supported
806
807BROADCOM TG3 GIGABIT ETHERNET DRIVER
808P: Michael Chan
809M: mchan@broadcom.com
810L: netdev@vger.kernel.org
811S: Supported
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700814P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200815M: mchehab@infradead.org
816M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700818W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200819T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700820S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200822CALGARY x86-64 IOMMU
823P: Muli Ben-Yehuda
824M: muli@il.ibm.com
825P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200826M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200827L: linux-kernel@vger.kernel.org
828L: discuss@x86-64.org
829S: Maintained
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831COMMON INTERNET FILE SYSTEM (CIFS)
832P: Steve French
833M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100834L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835L: samba-technical@lists.samba.org
836W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800837T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838S: Supported
839
Joel Becker7063fbf2005-12-15 14:29:43 -0800840CONFIGFS
841P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800842M: joel.becker@oracle.com
843L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800844S: Supported
845
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800846CIRRUS LOGIC EP93XX ETHERNET DRIVER
847P: Lennert Buytenhek
848M: kernel@wantstofly.org
849L: netdev@vger.kernel.org
850S: Maintained
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852CIRRUS LOGIC GENERIC FBDEV DRIVER
853P: Jeff Garzik
854M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800855L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856S: Odd Fixes
857
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800858CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
859P: Lennert Buytenhek
860M: kernel@wantstofly.org
861L: linux-usb-devel@lists.sourceforge.net
862S: Maintained
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
865P: Cirrus Logic Corporation (kernel 2.2 driver)
866M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
867P: Nils Faerber (port to kernel 2.4)
868M: Nils Faerber <nils@kernelconcepts.de>
869S: Maintained
870
871CODA FILE SYSTEM
872P: Jan Harkes
873M: jaharkes@cs.cmu.edu
874M: coda@cs.cmu.edu
875L: codalist@coda.cs.cmu.edu
876W: http://www.coda.cs.cmu.edu/
877S: Maintained
878
879COMPACTPCI HOTPLUG CORE
880P: Scott Murray
881M: scottm@somanetworks.com
882M: scott@spiteful.org
883L: pcihpd-discuss@lists.sourceforge.net
884S: Supported
885
886COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
887P: Scott Murray
888M: scottm@somanetworks.com
889M: scott@spiteful.org
890L: pcihpd-discuss@lists.sourceforge.net
891S: Supported
892
893COMPACTPCI HOTPLUG GENERIC DRIVER
894P: Scott Murray
895M: scottm@somanetworks.com
896M: scott@spiteful.org
897L: pcihpd-discuss@lists.sourceforge.net
898S: Supported
899
900COMPUTONE INTELLIPORT MULTIPORT CARD
901P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700902M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700904S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906COSA/SRP SYNC SERIAL DRIVER
907P: Jan "Yenya" Kasprzak
908M: kas@fi.muni.cz
909W: http://www.fi.muni.cz/~kas/cosa/
910S: Maintained
911
912CPU FREQUENCY DRIVERS
913P: Dave Jones
914M: davej@codemonkey.org.uk
915L: cpufreq@lists.linux.org.uk
916W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500917T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918S: Maintained
919
920CPUID/MSR DRIVER
921P: H. Peter Anvin
922M: hpa@zytor.com
923S: Maintained
924
Paul Jacksoned90fb42005-09-27 21:45:37 -0700925CPUSETS
926P: Paul Jackson
927P: Simon Derr
928M: pj@sgi.com
929M: simon.derr@bull.net
930L: linux-kernel@vger.kernel.org
931W: http://www.bullopensource.org/cpuset/
932S: Supported
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100935W: http://sourceforge.net/projects/cramfs/
936S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938CRIS PORT
939P: Mikael Starvik
940M: starvik@axis.com
941L: dev-etrax@axis.com
942W: http://developer.axis.com
943S: Maintained
944
945CRYPTO API
946P: Herbert Xu
947M: herbert@gondor.apana.org.au
948P: David S. Miller
949M: davem@davemloft.net
950L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800951T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952S: Maintained
953
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100954CS5535 Audio ALSA driver
955P: Jaya Kumar
956M: jayakumar.alsa@gmail.com
957S: Maintained
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959CYBERPRO FB DRIVER
960P: Russell King
961M: rmk@arm.linux.org.uk
962W: http://www.arm.linux.org.uk/
963S: Maintained
964
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700965CYBLAFB FRAMEBUFFER DRIVER
966P: Knut Petersen
967M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800968L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700969S: Maintained
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971CYCLADES 2X SYNC CARD DRIVER
972P: Arnaldo Carvalho de Melo
973M: acme@conectiva.com.br
974W: http://advogato.org/person/acme
975L: cycsyn-devel@bazar.conectiva.com.br
976S: Maintained
977
978CYCLADES ASYNC MUX DRIVER
979M: async@cyclades.com
980W: http://www.cyclades.com/
981S: Supported
982
983CYCLADES PC300 DRIVER
984M: pc300@cyclades.com
985W: http://www.cyclades.com/
986S: Supported
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988DAMA SLAVE for AX.25
989P: Joerg Reuter
990M: jreuter@yaina.de
991W: http://yaina.de/jreuter/
992W: http://www.qsl.net/dl1bke/
993L: linux-hams@vger.kernel.org
994S: Maintained
995
996DC395x SCSI driver
997P: Oliver Neukum
998M: oliver@neukum.name
999P: Ali Akcaagac
1000M: aliakc@web.de
1001P: Jamie Lenehan
1002M: lenehan@twibble.org
1003W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001004L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005L: http://lists.twibble.org/mailman/listinfo/dc395x/
1006S: Maintained
1007
1008DC390/AM53C974 SCSI driver
1009P: Kurt Garloff
1010M: garloff@suse.de
1011W: http://www.garloff.de/kurt/linux/dc390/
1012P: Guennadi Liakhovetski
1013M: g.liakhovetski@gmx.de
1014S: Maintained
1015
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001016DCCP PROTOCOL
1017P: Arnaldo Carvalho de Melo
1018M: acme@mandriva.com
1019L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001020W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001021S: Maintained
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023DECnet NETWORK LAYER
1024P: Patrick Caulfield
1025M: patrick@tykepenguin.com
1026W: http://linux-decnet.sourceforge.net
1027L: linux-decnet-user@lists.sourceforge.net
1028S: Maintained
1029
1030DEFXX FDDI NETWORK DRIVER
1031P: Maciej W. Rozycki
1032M: macro@linux-mips.org
1033S: Maintained
1034
1035DELL LAPTOP SMM DRIVER
1036P: Massimo Dal Zotto
1037M: dz@debian.org
1038W: http://www.debian.org/~dz/i8k/
1039S: Maintained
1040
Doug Warzecha90563ec2005-09-06 15:17:15 -07001041DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1042P: Doug Warzecha
1043M: Douglas_Warzecha@dell.com
1044S: Maintained
1045
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001046DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047P: Alasdair Kergon
1048L: dm-devel@redhat.com
1049W: http://sources.redhat.com/dm
1050S: Maintained
1051
1052DEVICE NUMBER REGISTRY
1053P: Torben Mathiasen
1054M: device@lanana.org
1055W: http://lanana.org/docs/device-list/index.html
1056L: linux-kernel@vger.kernel.org
1057S: Maintained
1058
1059DEVICE FILESYSTEM
1060S: Obsolete
1061
1062DIGI INTL. EPCA DRIVER
1063P: Digi International, Inc
1064M: Eng.Linux@digi.com
1065L: Eng.Linux@digi.com
1066W: http://www.digi.com
1067S: Orphaned
1068
1069DIGI RIGHTSWITCH NETWORK DRIVER
1070P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001071L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072W: http://www.digi.com
1073S: Orphaned
1074
1075DIRECTORY NOTIFICATION
1076P: Stephen Rothwell
1077M: sfr@canb.auug.org.au
1078L: linux-kernel@vger.kernel.org
1079S: Supported
1080
1081DISK GEOMETRY AND PARTITION HANDLING
1082P: Andries Brouwer
1083M: aeb@cwi.nl
1084W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1085W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1086W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1087S: Maintained
1088
1089DISKQUOTA:
1090P: Jan Kara
1091M: jack@suse.cz
1092L: linux-kernel@vger.kernel.org
1093S: Maintained
1094
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001095DISTRIBUTED LOCK MANAGER
1096P: Patrick Caulfield
1097M: pcaulfie@redhat.com
1098P: David Teigland
1099M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001100L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001101W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001102T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1103T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001104S: Supported
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1107P: Tobias Ringstrom
1108M: tori@unhappy.mine.nu
1109L: linux-kernel@vger.kernel.org
1110S: Maintained
1111
Martin Waitzba483d52005-06-17 13:20:59 -07001112DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001113P: Randy Dunlap
1114M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001115S: Maintained
1116
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001117DOCKING STATION DRIVER
1118P: Kristen Carlson Accardi
1119M: kristen.c.accardi@intel.com
1120L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001121S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123DOUBLETALK DRIVER
1124P: James R. Van Zandt
1125M: jrv@vanzandt.mv.com
1126L: blinux-list@redhat.com
1127S: Maintained
1128
1129DRIVER CORE, KOBJECTS, AND SYSFS
1130P: Greg Kroah-Hartman
1131M: gregkh@suse.de
1132L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001133T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134S: Supported
1135
1136DRM DRIVERS
1137P: David Airlie
1138M: airlied@linux.ie
1139L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001140T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141S: Maintained
1142
1143DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001144P: Francois Romieu
1145M: romieu@fr.zoreil.com
1146L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147S: Maintained
1148
1149DVB SUBSYSTEM AND DRIVERS
1150P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001151M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001153W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001154T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001155S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157EATA-DMA SCSI DRIVER
1158P: Michael Neuffer
1159L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1160S: Maintained
1161
1162EATA ISA/EISA/PCI SCSI DRIVER
1163P: Dario Ballabio
1164M: ballabio_dario@emc.com
1165L: linux-scsi@vger.kernel.org
1166S: Maintained
1167
1168EATA-PIO SCSI DRIVER
1169P: Michael Neuffer
1170M: mike@i-Connect.Net
1171L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1172S: Maintained
1173
1174EBTABLES
1175P: Bart De Schuymer
1176M: bart.de.schuymer@pandora.be
1177L: ebtables-user@lists.sourceforge.net
1178L: ebtables-devel@lists.sourceforge.net
1179W: http://ebtables.sourceforge.net/
1180S: Maintained
1181
Michael Halcrow237fead2006-10-04 02:16:22 -07001182ECRYPT FILE SYSTEM
1183P: Mike Halcrow, Phillip Hellewell
1184M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1185L: ecryptfs-devel@lists.sourceforge.net
1186W: http://ecryptfs.sourceforge.net/
1187S: Supported
1188
Alan Coxda9bb1d2006-01-18 17:44:13 -08001189EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001190P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001191M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001192L: bluesmoke-devel@lists.sourceforge.net
1193W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001194S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001195
1196EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001197P: Mark Gross
1198M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001199L: bluesmoke-devel@lists.sourceforge.net
1200W: bluesmoke.sourceforge.net
1201S: Maintained
1202
1203EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001204P: Doug Thompson
1205M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001206L: bluesmoke-devel@lists.sourceforge.net
1207W: bluesmoke.sourceforge.net
1208S: Maintained
1209
1210EDAC-R82600
1211P: Tim Small
1212M: tim@buttersideup.com
1213L: bluesmoke-devel@lists.sourceforge.net
1214W: bluesmoke.sourceforge.net
1215S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217EEPRO100 NETWORK DRIVER
1218P: Andrey V. Savochkin
1219M: saw@saw.sw.com.sg
1220S: Maintained
1221
Josh Triplett0bee8d22006-07-30 03:03:58 -07001222EFS FILESYSTEM
1223W: http://aeschi.ch.eu.org/efs/
1224S: Orphan
1225
Heiko J Schickfab97222006-09-22 15:22:22 -07001226EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1227P: Hoang-Nam Nguyen
1228M: hnguyen@de.ibm.com
1229P: Christoph Raisch
1230M: raisch@de.ibm.com
1231L: openib-general@openib.org
1232S: Supported
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234EMU10K1 SOUND DRIVER
1235P: James Courtier-Dutton
1236M: James@superbug.demon.co.uk
1237L: emu10k1-devel@lists.sourceforge.net
1238W: http://sourceforge.net/projects/emu10k1/
1239S: Maintained
1240
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001241EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001242P: James Smart
1243M: james.smart@emulex.com
1244L: linux-scsi@vger.kernel.org
1245W: http://sourceforge.net/projects/lpfcxxxx
1246S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248EPSON 1355 FRAMEBUFFER DRIVER
1249P: Christopher Hoover
1250M: ch@murgatroid.com, ch@hpl.hp.com
1251S: Maintained
1252
1253ETHEREXPRESS-16 NETWORK DRIVER
1254P: Philip Blundell
1255M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001256L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257S: Maintained
1258
1259ETHERNET BRIDGE
1260P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08001261M: shemminger@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262L: bridge@osdl.org
1263W: http://bridge.sourceforge.net/
1264S: Maintained
1265
1266ETHERTEAM 16I DRIVER
1267P: Mika Kuoppala
1268M: miku@iki.fi
1269S: Maintained
1270
1271EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001272L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273S: Maintained
1274
1275EXT3 FILE SYSTEM
1276P: Stephen Tweedie, Andrew Morton
1277M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001278L: linux-ext4@vger.kernel.org
1279S: Maintained
1280
1281EXT4 FILE SYSTEM
1282P: Stephen Tweedie, Andrew Morton
1283M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1284L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285S: Maintained
1286
Jean Delvaree53004e2006-01-09 23:26:14 +01001287F71805F HARDWARE MONITORING DRIVER
1288P: Jean Delvare
1289M: khali@linux-fr.org
1290L: lm-sensors@lm-sensors.org
1291S: Maintained
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293FARSYNC SYNCHRONOUS DRIVER
1294P: Kevin Curtis
1295M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296W: http://www.farsite.co.uk/
1297S: Supported
1298
1299FRAMEBUFFER LAYER
1300P: Antonino Daplas
1301M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001302L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303W: http://linux-fbdev.sourceforge.net/
1304S: Maintained
1305
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001306FREESCALE SOC FS_ENET DRIVER
1307P: Pantelis Antoniou
1308M: pantelis.antoniou@gmail.com
1309P: Vitaly Bordug
1310M: vbordug@ru.mvista.com
1311L: linuxppc-embedded@ozlabs.org
1312L: netdev@vger.kernel.org
1313S: Maintained
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315FILE LOCKING (flock() and fcntl()/lockf())
1316P: Matthew Wilcox
1317M: matthew@wil.cx
1318L: linux-fsdevel@vger.kernel.org
1319S: Maintained
1320
1321FILESYSTEMS (VFS and infrastructure)
1322P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001323M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324S: Maintained
1325
1326FIRMWARE LOADER (request_firmware)
1327L: linux-kernel@vger.kernel.org
1328S: Orphan
1329
1330FPU EMULATOR
1331P: Bill Metzenthen
1332M: billm@suburbia.net
1333W: http://suburbia.net/~billm/floating-point/emulator/
1334S: Maintained
1335
1336FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1337P: Mike McLagan
1338M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001339L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340S: Maintained
1341
1342FREEVXFS FILESYSTEM
1343P: Christoph Hellwig
1344M: hch@infradead.org
1345W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1346S: Maintained
1347
1348FUJITSU FR-V PORT
1349P: David Howells
1350M: dhowells@redhat.com
1351S: Maintained
1352
Miklos Szeredi04578f12005-09-09 13:10:22 -07001353FUSE: FILESYSTEM IN USERSPACE
1354P: Miklos Szeredi
1355M: miklos@szeredi.hu
1356L: fuse-devel@lists.sourceforge.net
1357W: http://fuse.sourceforge.net/
1358S: Maintained
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1361P: Rik Faith
1362M: faith@cs.unc.edu
1363L: linux-scsi@vger.kernel.org
1364S: Odd fixes (e.g., new signatures)
1365
1366GDT SCSI DISK ARRAY CONTROLLER DRIVER
1367P: Achim Leubner
1368M: achim_leubner@adaptec.com
1369L: linux-scsi@vger.kernel.org
1370W: http://www.icp-vortex.com/
1371S: Supported
1372
1373GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1374P: Krzysztof Halasa
1375M: khc@pm.waw.pl
1376W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1377S: Maintained
1378
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001379GFS2 FILE SYSTEM
1380P: Steven Whitehouse
1381M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001382L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001383W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001384T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1385T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001386S: Supported
1387
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001388GIGASET ISDN DRIVERS
1389P: Hansjoerg Lipp
1390M: hjlipp@web.de
1391P: Tilman Schmidt
1392M: tilman@imap.cc
1393L: gigaset307x-common@lists.sourceforge.net
1394W: http://gigaset307x.sourceforge.net/
1395S: Maintained
1396
Jean Delvare5b543962005-08-15 19:51:02 +02001397HARDWARE MONITORING
1398P: Jean Delvare
1399M: khali@linux-fr.org
1400L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001401W: http://www.lm-sensors.org/
1402T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001403S: Maintained
1404
Michael Buesch844dd052006-06-26 00:24:59 -07001405HARDWARE RANDOM NUMBER GENERATOR CORE
1406P: Michael Buesch
1407M: mb@bu3sch.de
1408S: Maintained
1409
Robert Love860e1d62005-08-31 23:57:59 -04001410HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1411P: Robert Love
1412M: rlove@rlove.org
1413M: linux-kernel@vger.kernel.org
1414W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1415S: Maintained
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417HARMONY SOUND DRIVER
1418P: Kyle McMartin
1419M: kyle@parisc-linux.org
1420W: http://www.parisc-linux.org/~kyle/harmony/
1421L: parisc-linux@lists.parisc-linux.org
1422S: Maintained
1423
1424HAYES ESP SERIAL DRIVER
1425P: Andrew J. Robinson
1426M: arobinso@nyx.net
1427L: linux-kernel@vger.kernel.org
1428W: http://www.nyx.net/~arobinso
1429S: Maintained
1430
1431HFS FILESYSTEM
1432P: Roman Zippel
1433M: zippel@linux-m68k.org
1434L: linux-kernel@vger.kernel.org
1435S: Maintained
1436
1437HGA FRAMEBUFFER DRIVER
1438P: Ferenc Bakonyi
1439M: fero@drama.obuda.kando.hu
1440L: linux-nvidia@lists.surfsouth.com
1441W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1442S: Maintained
1443
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001444HID CORE LAYER
1445P: Jiri Kosina
1446M: jkosina@suse.cz
1447L: linux-input@atrey.karlin.mff.cuni.cz
1448S: Maintained
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450HIGH-SPEED SCC DRIVER FOR AX.25
1451P: Klaus Kudielka
1452M: klaus.kudielka@ieee.org
1453L: linux-hams@vger.kernel.org
1454W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1455S: Maintained
1456
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001457HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1458P: HighPoint Linux Team
1459M: linux@highpoint-tech.com
1460W: http://www.highpoint-tech.com
1461S: Supported
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463HIPPI
1464P: Jes Sorensen
1465M: jes@trained-monkey.org
1466L: linux-hippi@sunsite.dk
1467S: Maintained
1468
1469HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1470P: Chirag Kantharia
1471M: chirag.kantharia@hp.com
1472L: iss_storagedev@hp.com
1473S: Maintained
1474
1475HEWLETT-PACKARD SMART2 RAID DRIVER
1476P: Chirag Kantharia
1477M: chirag.kantharia@hp.com
1478L: iss_storagedev@hp.com
1479S: Maintained
1480
1481HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1482P: Mike Miller
1483M: mike.miller@hp.com
1484L: iss_storagedev@hp.com
1485S: Supported
1486
Jouni Malinenff1d2762005-05-12 22:54:16 -04001487HOST AP DRIVER
1488P: Jouni Malinen
1489M: jkmaline@cc.hut.fi
1490L: hostap@shmoo.com
1491W: http://hostap.epitest.fi/
1492S: Maintained
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1495P: Jaroslav Kysela
1496M: perex@suse.cz
1497S: Maintained
1498
Bob Piccob9b03322005-11-07 00:59:19 -08001499HPET: High Precision Event Timers driver (hpet.c)
1500P: Clemens Ladisch
1501M: clemens@ladisch.de
1502S: Maintained
1503
1504HPET: i386
1505P: Venkatesh Pallipadi (Venki)
1506M: venkatesh.pallipadi@intel.com
1507S: Maintained
1508
1509HPET: x86_64
1510P: Andi Kleen and Vojtech Pavlik
1511M: ak@muc.de and vojtech@suse.cz
1512S: Maintained
1513
1514HPET: ACPI hpet.c
1515P: Bob Picco
1516M: bob.picco@hp.com
1517S: Maintained
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519HPFS FILESYSTEM
1520P: Mikulas Patocka
1521M: mikulas@artax.karlin.mff.cuni.cz
1522W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1523S: Maintained
1524
1525HUGETLB FILESYSTEM
1526P: William Irwin
1527M: wli@holomorphy.com
1528S: Maintained
1529
Jean Delvare5b543962005-08-15 19:51:02 +02001530I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531P: Jean Delvare
1532M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001533L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001534T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535S: Maintained
1536
1537I2O
1538P: Markus Lidel
1539M: markus.lidel@shadowconnect.com
1540W: http://i2o.shadowconnect.com/
1541S: Maintained
1542
1543i386 BOOT CODE
1544P: Riley H. Williams
1545M: Riley@Williams.Name
1546L: Linux-Kernel@vger.kernel.org
1547S: Maintained
1548
1549i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1550P: Dave Jones
1551M: davej@codemonkey.org.uk
1552P: H. Peter Anvin
1553M: hpa@zytor.com
1554S: Maintained
1555
1556i810 TCO TIMER WATCHDOG
1557P: Nils Faerber
1558M: nils@kernelconcepts.de
1559W: http://www.kernelconcepts.de/
1560S: Maintained
1561
1562IA64 (Itanium) PLATFORM
1563P: Tony Luck
1564M: tony.luck@intel.com
1565L: linux-ia64@vger.kernel.org
1566W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001567T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568S: Maintained
1569
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001570IBM ACPI EXTRAS DRIVER
1571P: Henrique de Moraes Holschuh
1572M: ibm-acpi@hmh.eng.br
1573L: ibm-acpi-devel@lists.sourceforge.net
1574W: http://ibm-acpi.sourceforge.net
1575W: http://thinkwiki.org/wiki/Ibm-acpi
1576T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1577S: Maintained
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001580P: Jes Sorensen
1581M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582L: linux-altix@sgi.com
1583L: linux-ia64@vger.kernel.org
1584W: http://www.sgi.com/altix
1585S: Maintained
1586
1587IBM MCA SCSI SUBSYSTEM DRIVER
1588P: Michael Lang
1589M: langa2@kph.uni-mainz.de
1590W: http://www.uni-mainz.de/~langm000/linux.html
1591S: Maintained
1592
1593IBM Power Linux RAID adapter
1594P: Brian King
1595M: brking@us.ibm.com
1596S: Supported
1597
1598IBM ServeRAID RAID DRIVER
1599P: Jack Hammer
1600P: Dave Jeffery
1601M: ipslinux@adaptec.com
1602W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1603S: Supported
1604
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001605IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001607M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001609T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610S: Maintained
1611
1612IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001613P: Alan Cox
1614M: alan@lxorguk.ukuu.org.uk
1615L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616S: Maintained
1617
1618IDE/ATAPI FLOPPY DRIVERS
1619P: Paul Bristow
1620M: Paul Bristow <paul@paulbristow.net>
1621W: http://paulbristow.net/linux/idefloppy.html
1622L: linux-kernel@vger.kernel.org
1623S: Maintained
1624
1625IDE/ATAPI TAPE DRIVERS
1626P: Gadi Oxman
1627M: Gadi Oxman <gadio@netvision.net.il>
1628L: linux-kernel@vger.kernel.org
1629S: Maintained
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631IEEE 1394 SUBSYSTEM
1632P: Ben Collins
1633M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001634P: Stefan Richter
1635M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636L: linux1394-devel@lists.sourceforge.net
1637W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001638T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639S: Maintained
1640
Stefan Richter87730d02006-09-16 12:24:00 +02001641IEEE 1394 IPV4 DRIVER (eth1394)
1642P: Stefan Richter
1643M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001645S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647IEEE 1394 PCILYNX DRIVER
1648P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001649M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001650P: Stefan Richter
1651M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001653S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655IEEE 1394 RAW I/O DRIVER
1656P: Ben Collins
1657M: bcollins@debian.org
1658P: Dan Dennedy
1659M: dan@dennedy.org
1660L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001661S: Maintained
1662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663IMS TWINTURBO FRAMEBUFFER DRIVER
1664P: Paul Mundt
1665M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001666L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667S: Maintained
1668
1669INFINIBAND SUBSYSTEM
1670P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001671M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672P: Sean Hefty
1673M: mshefty@ichips.intel.com
1674P: Hal Rosenstock
1675M: halr@voltaire.com
1676L: openib-general@openib.org
1677W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001678T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679S: Supported
1680
1681INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001682P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001683M: dmitry.torokhov@gmail.com
1684M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685L: linux-input@atrey.karlin.mff.cuni.cz
1686L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001687T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688S: Maintained
1689
Robert Lovec9f04f52005-07-15 12:21:07 -04001690INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001691P: John McCutchan
1692M: ttb@tentacle.dhs.org
1693P: Robert Love
1694M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001695L: linux-kernel@vger.kernel.org
1696S: Maintained
1697
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001698INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001699P: Sylvain Meyer
1700M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001701L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001702S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001705P: Antonino Daplas
1706M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001707L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001708S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1711P: Ingo Molnar
1712M: mingo@redhat.com
1713S: Maintained
1714
1715INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1716P: Jeff Garzik
1717M: jgarzik@pobox.com
1718W: http://sourceforge.net/projects/gkernel/
1719S: Maintained
1720
1721INTEL IA32 MICROCODE UPDATE SUPPORT
1722P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001723M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724S: Maintained
1725
Michael Buesch844dd052006-06-26 00:24:59 -07001726INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1727P: Deepak Saxena
1728M: dsaxena@plexity.net
1729S: Maintained
1730
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001731INTEL IXP2000 ETHERNET DRIVER
1732P: Lennert Buytenhek
1733M: kernel@wantstofly.org
1734L: netdev@vger.kernel.org
1735S: Maintained
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737INTEL PRO/100 ETHERNET SUPPORT
1738P: John Ronciak
1739M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740P: Jesse Brandeburg
1741M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001742P: Jeff Kirsher
1743M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001744P: Auke Kok
1745M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746W: http://sourceforge.net/projects/e1000/
1747S: Supported
1748
1749INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1750P: Jeb Cramer
1751M: cramerj@intel.com
1752P: John Ronciak
1753M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001754P: Jesse Brandeburg
1755M: jesse.brandeburg@intel.com
1756P: Jeff Kirsher
1757M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001758P: Auke Kok
1759M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760W: http://sourceforge.net/projects/e1000/
1761S: Supported
1762
1763INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001764P: Jeff Kirsher
1765M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766P: Ayyappan Veeraiyan
1767M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768P: John Ronciak
1769M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001770P: Jesse Brandeburg
1771M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001772P: Auke Kok
1773M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774W: http://sourceforge.net/projects/e1000/
1775S: Supported
1776
James Ketrenos826d2ab2005-11-07 18:56:59 -06001777INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1778P: Yi Zhu
1779M: yi.zhu@intel.com
1780P: James Ketrenos
1781M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001782L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001783L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1784W: http://ipw2100.sourceforge.net
1785S: Supported
1786
1787INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1788P: Yi Zhu
1789M: yi.zhu@intel.com
1790P: James Ketrenos
1791M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001792L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001793L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1794W: http://ipw2200.sourceforge.net
1795S: Supported
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797IOC3 DRIVER
1798P: Ralf Baechle
1799M: ralf@linux-mips.org
1800L: linux-mips@linux-mips.org
1801S: Maintained
1802
1803IP MASQUERADING:
1804P: Juanjo Ciarlante
1805M: jjciarla@raiz.uncu.edu.ar
1806S: Maintained
1807
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001808IPATH DRIVER:
1809P: Bryan O'Sullivan
1810M: support@pathscale.com
1811L: openib-general@openib.org
1812S: Supported
1813
Corey Minyard4409ebe2006-04-20 02:43:12 -07001814IPMI SUBSYSTEM
1815P: Corey Minyard
1816M: minyard@acm.org
1817L: openipmi-developer@lists.sourceforge.net
1818W: http://openipmi.sourceforge.net/
1819S: Supported
1820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821IPX NETWORK LAYER
1822P: Arnaldo Carvalho de Melo
1823M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001824L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825S: Maintained
1826
1827IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001828P: Samuel Ortiz
1829M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001830L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001832S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834ISAPNP
1835P: Jaroslav Kysela
1836M: perex@suse.cz
1837S: Maintained
1838
1839ISDN SUBSYSTEM
1840P: Karsten Keil
1841M: kkeil@suse.de
1842P: Kai Germaschewski
1843M: kai.germaschewski@gmx.de
1844L: isdn4linux@listserv.isdn4linux.de
1845W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001846T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847S: Maintained
1848
1849ISDN SUBSYSTEM (Eicon active card driver)
1850P: Armin Schindler
1851M: mac@melware.de
1852L: isdn4linux@listserv.isdn4linux.de
1853W: http://www.melware.de
1854S: Maintained
1855
1856JOURNALLING FLASH FILE SYSTEM (JFFS)
1857P: Axis Communications AB
1858M: jffs-dev@axis.com
1859L: jffs-dev@axis.com
1860W: http://www.developer.axis.com/software/jffs/
1861S: Maintained
1862
1863JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1864P: David Woodhouse
1865M: dwmw2@infradead.org
1866L: jffs-dev@axis.com
1867W: http://sources.redhat.com/jffs2/
1868S: Maintained
1869
1870JFS FILESYSTEM
1871P: Dave Kleikamp
1872M: shaggy@austin.ibm.com
1873L: jfs-discussion@lists.sourceforge.net
1874W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001875T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876S: Supported
1877
Josh Triplettde456d32006-07-30 03:04:00 -07001878JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001879P: Stephen Tweedie, Andrew Morton
1880M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001881L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001882S: Maintained
1883
Rudolf Marek4660cb32006-10-08 22:01:26 +02001884K8TEMP HARDWARE MONITORING DRIVER
1885P: Rudolf Marek
1886M: r.marek@assembler.cz
1887L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888S: Maintained
1889
1890KCONFIG
1891P: Roman Zippel
1892M: zippel@linux-m68k.org
1893L: kbuild-devel@lists.sourceforge.net
1894S: Maintained
1895
Vivek Goyalea6c2082006-05-20 14:59:55 -07001896KDUMP
1897P: Vivek Goyal
1898M: vgoyal@in.ibm.com
1899P: Haren Myneni
1900M: hbabu@us.ibm.com
1901L: fastboot@lists.osdl.org
1902L: linux-kernel@vger.kernel.org
1903W: http://lse.sourceforge.net/kdump/
1904S: Maintained
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906KERNEL AUTOMOUNTER (AUTOFS)
1907P: H. Peter Anvin
1908M: hpa@zytor.com
1909L: autofs@linux.kernel.org
1910S: Odd Fixes
1911
1912KERNEL AUTOMOUNTER v4 (AUTOFS4)
1913P: Ian Kent
1914M: raven@themaw.net
1915L: autofs@linux.kernel.org
1916S: Maintained
1917
1918KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1919P: Kai Germaschewski
1920M: kai@germaschewski.name
1921P: Sam Ravnborg
1922M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001923T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924S: Maintained
1925
1926KERNEL JANITORS
1927P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001928L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930S: Maintained
1931
1932KERNEL NFSD
1933P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001934M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935L: nfs@lists.sourceforge.net
1936W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001937S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Avi Kivity426d62e2006-12-13 00:34:03 -08001939KERNEL VIRTUAL MACHINE (KVM)
1940P: Avi Kivity
1941M: avi@qumranet.com
1942L: kvm-devel@lists.sourceforge.net
1943W: kvm.sourceforge.net
1944S: Supported
1945
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001946KEXEC
1947P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001948M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001949W: http://www.xmission.com/~ebiederm/files/kexec/
1950L: linux-kernel@vger.kernel.org
1951L: fastboot@osdl.org
1952S: Maintained
1953
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001954KPROBES
1955P: Prasanna S Panchamukhi
1956M: prasanna@in.ibm.com
1957P: Ananth N Mavinakayanahalli
1958M: ananth@in.ibm.com
1959P: Anil S Keshavamurthy
1960M: anil.s.keshavamurthy@intel.com
1961P: David S. Miller
1962M: davem@davemloft.net
1963L: linux-kernel@vger.kernel.org
1964S: Maintained
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001968S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970LASI 53c700 driver for PARISC
1971P: James E.J. Bottomley
1972M: James.Bottomley@HansenPartnership.com
1973L: linux-scsi@vger.kernel.org
1974S: Maintained
1975
Richard Purdie263de9b2006-05-15 09:44:16 -07001976LED SUBSYSTEM
1977P: Richard Purdie
1978M: rpurdie@rpsys.net
1979S: Maintained
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981LEGO USB Tower driver
1982P: Juergen Stuber
1983M: starblue@users.sourceforge.net
1984L: legousb-devel@lists.sourceforge.net
1985W: http://legousb.sourceforge.net/
1986S: Maintained
1987
1988LINUX FOR IBM pSERIES (RS/6000)
1989P: Paul Mackerras
1990M: paulus@au.ibm.com
1991W: http://www.ibm.com/linux/ltc/projects/ppc
1992S: Supported
1993
1994LINUX FOR NCR VOYAGER
1995P: James Bottomley
1996M: James.Bottomley@HansenPartnership.com
1997W: http://www.hansenpartnership.com/voyager
1998S: Maintained
1999
2000LINUX FOR POWERPC
2001P: Paul Mackerras
2002M: paulus@samba.org
2003W: http://www.penguinppc.org/
2004L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002005T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006S: Supported
2007
2008LINUX FOR POWER MACINTOSH
2009P: Benjamin Herrenschmidt
2010M: benh@kernel.crashing.org
2011W: http://www.penguinppc.org/
2012L: linuxppc-dev@ozlabs.org
2013S: Maintained
2014
2015LINUX FOR POWERPC EMBEDDED MPC52XX
2016P: Sylvain Munaut
2017M: tnt@246tNt.com
2018W: http://www.246tNt.com/mpc52xx/
2019W: http://www.penguinppc.org/
2020L: linuxppc-dev@ozlabs.org
2021L: linuxppc-embedded@ozlabs.org
2022S: Maintained
2023
2024LINUX FOR POWERPC EMBEDDED PPC4XX
2025P: Matt Porter
2026M: mporter@kernel.crashing.org
2027W: http://www.penguinppc.org/
2028L: linuxppc-embedded@ozlabs.org
2029S: Maintained
2030
Tom Rinie93adf12005-07-26 12:49:53 -07002031LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032P: Tom Rini
2033M: trini@kernel.crashing.org
2034W: http://www.penguinppc.org/
2035L: linuxppc-embedded@ozlabs.org
2036S: Maintained
2037
Tom Rinie93adf12005-07-26 12:49:53 -07002038LINUX FOR POWERPC EMBEDDED PPC8XX
2039P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002040M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002041W: http://www.penguinppc.org/
2042L: linuxppc-embedded@ozlabs.org
2043S: Maintained
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002046P: Kumar Gala
2047M: galak@kernel.crashing.org
2048W: http://www.penguinppc.org/
2049L: linuxppc-embedded@ozlabs.org
2050S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Olof Johanssonab06ff32006-09-06 14:44:54 -05002052LINUX FOR POWERPC PA SEMI PWRFICIENT
2053P: Olof Johansson
2054M: olof@lixom.net
2055W: http://www.pasemi.com/
2056L: linuxppc-dev@ozlabs.org
2057S: Supported
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059LLC (802.2)
2060P: Arnaldo Carvalho de Melo
2061M: acme@conectiva.com.br
2062S: Maintained
2063
2064LINUX FOR 64BIT POWERPC
2065P: Paul Mackerras
2066M: paulus@samba.org
2067M: paulus@au.ibm.com
2068P: Anton Blanchard
2069M: anton@samba.org
2070M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002071W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002072L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073S: Supported
2074
2075LINUX SECURITY MODULE (LSM) FRAMEWORK
2076P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002077M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002078L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002080T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081S: Supported
2082
2083LM83 HARDWARE MONITOR DRIVER
2084P: Jean Delvare
2085M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002086L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087S: Maintained
2088
2089LM90 HARDWARE MONITOR DRIVER
2090P: Jean Delvare
2091M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002092L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093S: Maintained
2094
2095LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2096P: Richard Russon (FlatCap)
2097M: ldm@flatcap.org
2098L: ldm-devel@lists.sourceforge.net
2099W: http://ldm.sourceforge.net
2100S: Maintained
2101
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002102LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2103P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002104M: Eric.Moore@lsi.com
2105M: support@lsi.com
2106L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002107L: linux-scsi@vger.kernel.org
2108W: http://www.lsilogic.com/support
2109S: Supported
2110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2112P: Matthew Wilcox
2113M: matthew@wil.cx
2114L: linux-scsi@vger.kernel.org
2115S: Maintained
2116
2117M68K ARCHITECTURE
2118P: Geert Uytterhoeven
2119M: geert@linux-m68k.org
2120P: Roman Zippel
2121M: zippel@linux-m68k.org
2122L: linux-m68k@lists.linux-m68k.org
2123W: http://www.linux-m68k.org/
2124W: http://linux-m68k-cvs.ubb.ca/
2125S: Maintained
2126
2127M68K ON APPLE MACINTOSH
2128P: Joshua Thompson
2129M: funaho@jurai.org
2130W: http://www.mac.linux-m68k.org/
2131L: linux-mac68k@mac.linux-m68k.org
2132S: Maintained
2133
2134M68K ON HP9000/300
2135P: Philip Blundell
2136M: philb@gnu.org
2137W: http://www.tazenda.demon.co.uk/phil/linux-hp
2138S: Maintained
2139
2140MARVELL YUKON / SYSKONNECT DRIVER
2141P: Mirko Lindner
2142M: mlindner@syskonnect.de
2143P: Ralph Roesler
2144M: rroesler@syskonnect.de
2145W: http://www.syskonnect.com
2146S: Supported
2147
Michael Kerriskfaf16682005-07-31 22:34:47 -07002148MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002149P: Michael Kerrisk
2150M: mtk-manpages@gmx.net
2151W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2152S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002153
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002154MARVELL MV643XX ETHERNET DRIVER
2155P: Dale Farnsworth
2156M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002158M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002159L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002160S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162MATROX FRAMEBUFFER DRIVER
2163P: Petr Vandrovec
2164M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002165L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166S: Maintained
2167
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002168MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002169P: Neela Syam Kolli
2170M: Neela.Kolli@engenio.com
2171S: linux-scsi@vger.kernel.org
2172W: http://megaraid.lsilogic.com
2173S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002174
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002175MEMORY MANAGEMENT
2176L: linux-mm@kvack.org
2177L: linux-kernel@vger.kernel.org
2178W: http://www.linux-mm.org
2179S: Maintained
2180
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002181MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182P: David Woodhouse
2183M: dwmw2@infradead.org
2184W: http://www.linux-mtd.infradead.org/
2185L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002186T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187S: Maintained
2188
2189MICROTEK X6 SCANNER
2190P: Oliver Neukum
2191M: oliver@neukum.name
2192S: Maintained
2193
2194MIPS
2195P: Ralf Baechle
2196M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002197W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002199T: git www.linux-mips.org:/pub/scm/linux.git
2200S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202MISCELLANEOUS MCA-SUPPORT
2203P: James Bottomley
2204M: jejb@steeleye.com
2205L: linux-kernel@vger.kernel.org
2206S: Maintained
2207
2208MODULE SUPPORT
2209P: Rusty Russell
2210M: rusty@rustcorp.com.au
2211L: linux-kernel@vger.kernel.org
2212S: Maintained
2213
2214MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2215P: Stelian Pop
2216M: stelian@popies.net
2217W: http://popies.net/meye/
2218S: Maintained
2219
2220MOUSE AND MISC DEVICES [GENERAL]
2221P: Alessandro Rubini
2222M: rubini@ipvvis.unipv.it
2223L: linux-kernel@vger.kernel.org
2224S: Maintained
2225
Jiri Slabyd7354102006-12-08 02:38:35 -08002226MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2227P: Jiri Slaby
2228M: jirislaby@gmail.com
2229L: linux-kernel@vger.kernel.org
2230S: Maintained
2231
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002232MSI LAPTOP SUPPORT
2233P: Lennart Poettering
2234M: mzxreary@0pointer.de
2235L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2236W: http://0pointer.de/lennart/tchibo.html
2237S: Maintained
2238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239MTRR AND SIMILAR SUPPORT [i386]
2240P: Richard Gooch
2241M: rgooch@atnf.csiro.au
2242L: linux-kernel@vger.kernel.org
2243W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2244S: Maintained
2245
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002246MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2247P: Pierre Ossman
2248M: drzeus-mmc@drzeus.cx
2249L: linux-kernel@vger.kernel.org
2250S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002251
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252MULTISOUND SOUND DRIVER
2253P: Andrew Veliath
2254M: andrewtv@usa.net
2255S: Maintained
2256
Jiri Slabyd7354102006-12-08 02:38:35 -08002257MULTITECH MULTIPORT CARD (ISICOM)
2258P: Jiri Slaby
2259M: jirislaby@gmail.com
2260L: linux-kernel@vger.kernel.org
2261S: Maintained
2262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263NATSEMI ETHERNET DRIVER (DP8381x)
2264P: Tim Hockin
2265M: thockin@hockin.org
2266S: Maintained
2267
2268NCP FILESYSTEM
2269P: Petr Vandrovec
2270M: vandrove@vc.cvut.cz
2271L: linware@sh.cvut.cz
2272S: Maintained
2273
2274NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2275P: James E.J. Bottomley
2276M: James.Bottomley@HansenPartnership.com
2277L: linux-scsi@vger.kernel.org
2278S: Maintained
2279
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002280NETEM NETWORK EMULATOR
2281P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002282M: shemminger@linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002283L: netem@osdl.org
2284S: Maintained
2285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286NETFILTER/IPTABLES/IPCHAINS
2287P: Rusty Russell
2288P: Marc Boucher
2289P: James Morris
2290P: Harald Welte
2291P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002292P: Patrick McHardy
2293M: kaber@trash.net
2294L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002295L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002296L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297W: http://www.netfilter.org/
2298W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299S: Supported
2300
Paul Moore4cc67732006-09-25 15:57:13 -07002301NETLABEL
2302P: Paul Moore
2303M: paul.moore@hp.com
2304W: http://netlabel.sf.net
2305L: netdev@vger.kernel.org
2306S: Supported
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308NETROM NETWORK LAYER
2309P: Ralf Baechle
2310M: ralf@linux-mips.org
2311L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002312W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313S: Maintained
2314
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002315NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316P: Paul Clements
2317M: Paul.Clements@steeleye.com
2318S: Maintained
2319
2320NETWORK DEVICE DRIVERS
2321P: Andrew Morton
2322M: akpm@osdl.org
2323P: Jeff Garzik
2324M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002325L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002326T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327S: Maintained
2328
2329NETWORKING [GENERAL]
2330P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002331M: netdev@vger.kernel.org
2332L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002333W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334S: Maintained
2335
2336NETWORKING [IPv4/IPv6]
2337P: David S. Miller
2338M: davem@davemloft.net
2339P: Alexey Kuznetsov
2340M: kuznet@ms2.inr.ac.ru
2341P: Pekka Savola (ipv6)
2342M: pekkas@netcore.fi
2343P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002344M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345P: Hideaki YOSHIFUJI
2346M: yoshfuji@linux-ipv6.org
2347P: Patrick McHardy
2348M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002349L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002350T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351S: Maintained
2352
John W. Linville29f8f632006-01-18 14:52:48 -08002353NETWORKING [WIRELESS]
2354P: John W. Linville
2355M: linville@tuxdriver.com
2356L: netdev@vger.kernel.org
2357T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2358S: Maintained
2359
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002360NETXEN (1/10) GbE SUPPORT
2361P: Amit S. Kale
2362M: amitkale@netxen.com
2363L: netdev@vger.kernel.org
2364W: http://www.netxen.com
2365S: Supported
2366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367IPVS
2368P: Wensong Zhang
2369M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002370P: Simon Horman
2371M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372P: Julian Anastasov
2373M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002374L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375S: Maintained
2376
2377NFS CLIENT
2378P: Trond Myklebust
2379M: trond.myklebust@fys.uio.no
2380L: linux-kernel@vger.kernel.org
2381S: Maintained
2382
2383NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002384P: Jan-Pascal van Best
2385M: janpascal@vanbest.org
2386P: Andreas Mohr
2387M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002388L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389S: Maintained
2390
2391NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2392P: YOKOTA Hiroshi
2393M: yokota@netlab.is.tsukuba.ac.jp
2394W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2395S: Maintained
2396
2397NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2398P: GOTO Masanori
2399M: gotom@debian.or.jp
2400P: YOKOTA Hiroshi
2401M: yokota@netlab.is.tsukuba.ac.jp
2402W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2403S: Maintained
2404
2405NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2406P: Eberhard Moenkeberg
2407M: emoenke@gwdg.de
2408L: linux-kernel@vger.kernel.org
2409S: Maintained
2410
2411NTFS FILESYSTEM
2412P: Anton Altaparmakov
2413M: aia21@cantab.net
2414L: linux-ntfs-dev@lists.sourceforge.net
2415L: linux-kernel@vger.kernel.org
2416W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002417T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418S: Maintained
2419
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002420NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002421P: Antonino Daplas
2422M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002423L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002424S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002426OPENCORES I2C BUS DRIVER
2427P: Peter Korsgaard
2428M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002429L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002430S: Maintained
2431
Mark Fashehccd979b2005-12-15 14:31:24 -08002432ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2433P: Mark Fasheh
2434M: mark.fasheh@oracle.com
2435P: Kurt Hackel
2436M: kurt.hackel@oracle.com
2437L: ocfs2-devel@oss.oracle.com
2438W: http://oss.oracle.com/projects/ocfs2/
2439S: Supported
2440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441OLYMPIC NETWORK DRIVER
2442P: Peter De Shrijver
2443M: p2@ace.ulyssis.student.kuleuven.ac.be
2444P: Mike Phillips
2445M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002446L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447L: linux-tr@linuxtr.net
2448W: http://www.linuxtr.net
2449S: Maintained
2450
Harald Weltec1986ee2005-11-13 16:06:29 -08002451OMNIKEY CARDMAN 4000 DRIVER
2452P: Harald Welte
2453M: laforge@gnumonks.org
2454S: Maintained
2455
Harald Welte77c44ab2005-11-13 16:06:26 -08002456OMNIKEY CARDMAN 4040 DRIVER
2457P: Harald Welte
2458M: laforge@gnumonks.org
2459S: Maintained
2460
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461ONSTREAM SCSI TAPE DRIVER
2462P: Willem Riede
2463M: osst@riede.org
2464L: osst-users@lists.sourceforge.net
2465L: linux-scsi@vger.kernel.org
2466S: Maintained
2467
2468OPL3-SA2, SA3, and SAx DRIVER
2469P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002470M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471L: linux-sound@vger.kernel.org
2472S: Maintained
2473
2474OPROFILE
2475P: Philippe Elie
2476M: phil.el@wanadoo.fr
2477L: oprofile-list@lists.sf.net
2478S: Maintained
2479
2480ORINOCO DRIVER
2481P: Pavel Roskin
2482M: proski@gnu.org
2483P: David Gibson
2484M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002485L: orinoco-users@lists.sourceforge.net
2486L: orinoco-devel@lists.sourceforge.net
2487W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488S: Maintained
2489
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002490PA SEMI ETHERNET DRIVER
2491P: Olof Johansson
2492M: olof@lixom.net
2493L: netdev@vger.kernel.org
2494S: Maintained
2495
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496PARALLEL PORT SUPPORT
2497P: Phil Blundell
2498M: philb@gnu.org
2499P: Tim Waugh
2500M: tim@cyberelk.net
2501P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502P: Andrea Arcangeli
2503M: andrea@suse.de
2504L: linux-parport@lists.infradead.org
2505W: http://people.redhat.com/twaugh/parport/
2506S: Maintained
2507
2508PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2509P: Tim Waugh
2510M: tim@cyberelk.net
2511L: linux-parport@lists.infradead.org
2512W: http://www.torque.net/linux-pp.html
2513S: Maintained
2514
2515PARISC ARCHITECTURE
2516P: Matthew Wilcox
2517M: matthew@wil.cx
2518P: Grant Grundler
2519M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002520P: Kyle McMartin
2521M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522L: parisc-linux@parisc-linux.org
2523W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002524T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2525T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526S: Maintained
2527
Jim Cromie1662d322006-10-06 00:43:59 -07002528PC87360 HARDWARE MONITORING DRIVER
2529P: Jim Cromie
2530M: jim.cromie@gmail.com
2531L: lm-sensors@lm-sensors.org
2532S: Maintained
2533
2534PC8736x GPIO DRIVER
2535P: Jim Cromie
2536M: jim.cromie@gmail.com
2537S: Maintained
2538
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002539PCI ERROR RECOVERY
2540P: Linas Vepstas
2541M: linas@austin.ibm.com
2542L: linux-kernel@vger.kernel.org
2543L: linux-pci@atrey.karlin.mff.cuni.cz
2544S: Supported
2545
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2547P: Thomas Sailer
2548M: sailer@ife.ee.ethz.ch
2549L: linux-sound@vger.kernel.org
2550W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2551S: Maintained
2552
2553PCI SUBSYSTEM
2554P: Greg Kroah-Hartman
2555M: gregkh@suse.de
2556L: linux-kernel@vger.kernel.org
2557L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002558T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559S: Supported
2560
2561PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002562P: Kristen Carlson Accardi
2563M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564S: Supported
2565
2566PCI HOTPLUG COMPAQ DRIVER
2567P: Greg Kroah-Hartman
2568M: greg@kroah.com
2569S: Maintained
2570
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002571PCIE HOTPLUG DRIVER
2572P: Kristen Carlson Accardi
2573M: kristen.c.accardi@intel.com
2574L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002575S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002578P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002579L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002581T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002582S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584PCNET32 NETWORK DRIVER
2585P: Thomas Bogendörfer
2586M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002587L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588S: Maintained
2589
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002590PER-TASK DELAY ACCOUNTING
2591P: Shailabh Nagar
2592M: nagar@watson.ibm.com
2593L: linux-kernel@vger.kernel.org
2594S: Maintained
2595
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002596PERSONALITY HANDLING
2597P: Christoph Hellwig
2598M: hch@infradead.org
2599L: linux-abi-devel@lists.sourceforge.net
2600S: Maintained
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602PHRAM MTD DRIVER
2603P: Jörn Engel
2604M: joern@wh.fh-wedel.de
2605L: linux-mtd@lists.infradead.org
2606S: Maintained
2607
Peter Osterlund249a6772005-09-27 21:45:30 -07002608PKTCDVD DRIVER
2609P: Peter Osterlund
2610M: petero2@telia.com
2611L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002612S: Maintained
2613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614POSIX CLOCKS and TIMERS
2615P: George Anzinger
2616M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002617L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618S: Supported
2619
Eugene Surovegin24682972005-10-14 03:00:53 -07002620POWERPC 4xx EMAC DRIVER
2621P: Eugene Surovegin
2622M: ebs@ebshome.net
2623W: http://kernel.ebshome.net/emac/
2624L: linuxppc-embedded@ozlabs.org
2625L: netdev@vger.kernel.org
2626S: Maintained
2627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628PNP SUPPORT
2629P: Adam Belay
2630M: ambx1@neo.rr.com
2631S: Maintained
2632
Vitaly Wool999445d2007-01-04 13:07:03 +01002633PNXxxxx I2C DRIVER
2634P: Vitaly Wool
2635M: vitalywool@gmail.com
2636L: i2c@lm-sensors.org
2637S: Maintained
2638
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639PPP PROTOCOL DRIVERS AND COMPRESSORS
2640P: Paul Mackerras
2641M: paulus@samba.org
2642L: linux-ppp@vger.kernel.org
2643S: Maintained
2644
2645PPP OVER ATM (RFC 2364)
2646P: Mitchell Blank Jr
2647M: mitch@sfgoth.com
2648S: Maintained
2649
2650PPP OVER ETHERNET
2651P: Michal Ostrowski
2652M: mostrows@speakeasy.net
2653S: Maintained
2654
2655PREEMPTIBLE KERNEL
2656P: Robert Love
2657M: rml@tech9.net
2658L: linux-kernel@vger.kernel.org
2659L: kpreempt-tech@lists.sourceforge.net
2660W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2661S: Supported
2662
2663PRISM54 WIRELESS DRIVER
2664P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002665M: developers@islsm.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002666L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667W: http://prism54.org
2668S: Maintained
2669
2670PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2671P: Peter Denison
2672M: promise@pnd-pc.demon.co.uk
2673W: http://www.pnd-pc.demon.co.uk/promise/
2674S: Maintained
2675
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002676PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2677P: Mikael Pettersson
2678M: mikpe@it.uu.se
2679L: linux-ide@vger.kernel.org
2680S: Maintained
2681
Geoff Levandf58a9d12006-11-23 00:46:51 +01002682PS3 PLATFORM SUPPORT
2683P: Geoff Levand
2684M: geoffrey.levand@am.sony.com
2685L: linuxppc-dev@ozlabs.org
2686L: cbe-oss-dev@ozlabs.org
2687S: Supported
2688
Michael Krufky83202042006-07-03 00:24:18 -07002689PVRUSB2 VIDEO4LINUX DRIVER
2690P: Mike Isely
2691M: isely@pobox.com
2692L: pvrusb2@isely.net
2693L: video4linux-list@redhat.com
2694W: http://www.isely.net/pvrusb2/
2695S: Maintained
2696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697PXA2xx SUPPORT
2698P: Nicolas Pitre
2699M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002700L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701S: Maintained
2702
2703QLOGIC QLA2XXX FC-SCSI DRIVER
2704P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002705M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706L: linux-scsi@vger.kernel.org
2707S: Supported
2708
Ron Mercer5a4faa82006-07-25 00:40:21 -07002709QLOGIC QLA3XXX NETWORK DRIVER
2710P: Ron Mercer
2711M: linux-driver@qlogic.com
2712L: netdev@vger.kernel.org
2713S: Supported
2714
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715QNX4 FILESYSTEM
2716P: Anders Larsen
2717M: al@alarsen.net
2718L: linux-kernel@vger.kernel.org
2719W: http://www.alarsen.net/linux/qnx4fs/
2720S: Maintained
2721
2722RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002723P: Benjamin Herrenschmidt
2724M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002725L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726S: Maintained
2727
2728RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002729P: Paul Mackerras
2730M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002731L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732S: Maintained
2733
2734RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2735P: Corey Thomas
2736M: corey@world.std.com
2737L: linux-kernel@vger.kernel.org
2738S: Maintained
2739
Matt Mackall9e95ce22005-04-16 15:25:56 -07002740RANDOM NUMBER DRIVER
2741P: Matt Mackall
2742M: mpm@selenic.com
2743S: Maintained
2744
Matt Porter394b7012005-11-07 01:00:15 -08002745RAPIDIO SUBSYSTEM
2746P: Matt Porter
2747M: mporter@kernel.crashing.org
2748L: linux-kernel@vger.kernel.org
2749S: Maintained
2750
Josh Triplett595182b2006-10-04 02:17:21 -07002751READ-COPY UPDATE (RCU)
2752P: Dipankar Sarma
2753M: dipankar@in.ibm.com
2754W: http://www.rdrop.com/users/paulmck/rclock/
2755L: linux-kernel@vger.kernel.org
2756S: Supported
2757
2758RCUTORTURE MODULE
2759P: Josh Triplett
2760M: josh@freedesktop.org
2761L: linux-kernel@vger.kernel.org
2762S: Maintained
2763
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764REAL TIME CLOCK DRIVER
2765P: Paul Gortmaker
2766M: p_gortmaker@yahoo.com
2767L: linux-kernel@vger.kernel.org
2768S: Maintained
2769
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002770REAL TIME CLOCK (RTC) SUBSYSTEM
2771P: Alessandro Zummo
2772M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002773L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002774S: Maintained
2775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776REISERFS FILE SYSTEM
2777P: Hans Reiser
2778M: reiserfs-dev@namesys.com
2779L: reiserfs-list@namesys.com
2780W: http://www.namesys.com
2781S: Supported
2782
2783ROCKETPORT DRIVER
2784P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785W: http://www.comtrol.com
2786S: Maintained
2787
2788ROSE NETWORK LAYER
2789P: Ralf Baechle
2790M: ralf@linux-mips.org
2791L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002792W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793S: Maintained
2794
2795RISCOM8 DRIVER
2796S: Orphan
2797
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002798S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002799P: Antonino Daplas
2800M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002801L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002802S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804S390
2805P: Martin Schwidefsky
2806M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002807P: Heiko Carstens
2808M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809M: linux390@de.ibm.com
2810L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002811W: http://www.ibm.com/developerworks/linux/linux390/
2812S: Supported
2813
2814S390 NETWORK DRIVERS
2815P: Frank Pavlic
2816M: fpavlic@de.ibm.com
2817M: linux390@de.ibm.com
2818L: linux-390@vm.marist.edu
2819W: http://www.ibm.com/developerworks/linux/linux390/
2820S: Supported
2821
2822S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002823P: Swen Schillig
2824M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002825M: linux390@de.ibm.com
2826L: linux-390@vm.marist.edu
2827W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828S: Supported
2829
2830SAA7146 VIDEO4LINUX-2 DRIVER
2831P: Michael Hunold
2832M: michael@mihu.de
2833W: http://www.mihu.de/linux/saa7146
2834S: Maintained
2835
2836SBPCD CDROM DRIVER
2837P: Eberhard Moenkeberg
2838M: emoenke@gwdg.de
2839L: linux-kernel@vger.kernel.org
2840S: Maintained
2841
2842SC1200 WDT DRIVER
2843P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002844M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845S: Maintained
2846
2847SCHEDULER
2848P: Ingo Molnar
2849M: mingo@elte.hu
2850P: Robert Love [the preemptible kernel bits]
2851M: rml@tech9.net
2852L: linux-kernel@vger.kernel.org
2853S: Maintained
2854
2855SCSI CDROM DRIVER
2856P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002857M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858L: linux-scsi@vger.kernel.org
2859W: http://www.kernel.dk
2860S: Maintained
2861
2862SCSI SG DRIVER
2863P: Doug Gilbert
2864M: dgilbert@interlog.com
2865L: linux-scsi@vger.kernel.org
2866W: http://www.torque.net/sg
2867S: Maintained
2868
2869SCSI SUBSYSTEM
2870P: James E.J. Bottomley
2871M: James.Bottomley@SteelEye.com
2872L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002873T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874S: Maintained
2875
2876SCSI TAPE DRIVER
2877P: Kai Mäkisara
2878M: Kai.Makisara@kolumbus.fi
2879L: linux-scsi@vger.kernel.org
2880S: Maintained
2881
2882SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002883P: Sridhar Samudrala
2884M: sri@us.ibm.com
2885L: lksctp-developers@lists.sourceforge.net
2886S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
2888SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002889P: Jim Cromie
2890M: jim.cromie@gmail.com
2891S: Odd Fixes
2892
2893SCx200 GPIO DRIVER
2894P: Jim Cromie
2895M: jim.cromie@gmail.com
2896S: Maintained
2897
2898SCx200 HRT CLOCKSOURCE DRIVER
2899P: Jim Cromie
2900M: jim.cromie@gmail.com
2901S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
2903SECURITY CONTACT
2904P: Security Officers
2905M: security@kernel.org
2906S: Supported
2907
2908SELINUX SECURITY MODULE
2909P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002910M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002912M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913L: linux-kernel@vger.kernel.org (kernel issues)
2914L: selinux@tycho.nsa.gov (general discussion)
2915W: http://www.nsa.gov/selinux
2916S: Supported
2917
2918SERIAL ATA (SATA) SUBSYSTEM:
2919P: Jeff Garzik
2920M: jgarzik@pobox.com
2921L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002922T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923S: Supported
2924
2925SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2926P: Pat Gefre
2927M: pfg@sgi.com
2928L: linux-ia64@vger.kernel.org
2929S: Supported
2930
2931SGI VISUAL WORKSTATION 320 AND 540
2932P: Andrey Panin
2933M: pazke@donpac.ru
2934L: linux-visws-devel@lists.sf.net
2935W: http://linux-visws.sf.net
2936S: Maintained for 2.6.
2937
2938SIMTEC EB110ATX (Chalice CATS)
2939P: Ben Dooks
2940P: Vincent Sanders
2941M: support@simtec.co.uk
2942W: http://www.simtec.co.uk/products/EB110ATX/
2943S: Supported
2944
2945SIMTEC EB2410ITX (BAST)
2946P: Ben Dooks
2947P: Vincent Sanders
2948M: support@simtec.co.uk
2949W: http://www.simtec.co.uk/products/EB2410ITX/
2950S: Supported
2951
Francois Romieu92aab3c2005-07-30 13:11:18 +02002952SIS 190 ETHERNET DRIVER
2953P: Francois Romieu
2954M: romieu@fr.zoreil.com
2955L: netdev@vger.kernel.org
2956S: Maintained
2957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958SIS 5513 IDE CONTROLLER DRIVER
2959P: Lionel Bouton
2960M: Lionel.Bouton@inet6.fr
2961W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2962W: http://gyver.homeip.net/sis5513/index.html
2963S: Maintained
2964
2965SIS 900/7016 FAST ETHERNET DRIVER
2966P: Daniele Venzano
2967M: venza@brownhat.org
2968W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002969L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970S: Maintained
2971
2972SIS FRAMEBUFFER DRIVER
2973P: Thomas Winischhofer
2974M: thomas@winischhofer.net
2975W: http://www.winischhofer.net/linuxsisvga.shtml
2976S: Maintained
2977
2978SIS USB2VGA DRIVER
2979P: Thomas Winischhofer
2980M: thomas@winischhofer.net
2981W: http://www.winischhofer.at/linuxsisusbvga.shtml
2982S: Maintained
2983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984SMC91x ETHERNET DRIVER
2985P: Nicolas Pitre
2986M: nico@cam.org
2987S: Maintained
2988
Daniel Drake8f0f8502006-07-18 22:00:25 +01002989SOFTMAC LAYER (IEEE 802.11)
2990P: Johannes Berg
2991M: johannes@sipsolutions.net
2992P: Joe Jezak
2993M: josejx@gentoo.org
2994P: Daniel Drake
2995M: dsd@gentoo.org
2996W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002997L: netdev@vger.kernel.org
2998S: Maintained
2999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000SOFTWARE RAID (Multiple Disks) SUPPORT
3001P: Ingo Molnar
3002M: mingo@redhat.com
3003P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003004M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003006S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
3008SOFTWARE SUSPEND:
3009P: Pavel Machek
3010M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07003011L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012S: Maintained
3013
3014SONIC NETWORK DRIVER
3015P: Thomas Bogendoerfer
3016M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003017L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018S: Maintained
3019
3020SONY VAIO CONTROL DEVICE DRIVER
3021P: Stelian Pop
3022M: stelian@popies.net
3023W: http://popies.net/sonypi/
3024S: Maintained
3025
3026SOUND
3027P: Jaroslav Kysela
3028M: perex@suse.cz
3029L: alsa-devel@alsa-project.org
3030S: Maintained
3031
Kumar Gala025c3982006-04-02 16:05:54 -05003032SPI SUBSYSTEM
3033P: David Brownell
3034M: dbrownell@users.sourceforge.net
3035L: spi-devel-general@lists.sourceforge.net
3036S: Maintained
3037
Steven Rostedt855f46a2006-08-05 12:14:50 -07003038STABLE BRANCH:
3039P: Greg Kroah-Hartman
3040M: greg@kroah.com
3041P: Chris Wright
3042M: chrisw@sous-sol.org
3043L: stable@kernel.org
3044S: Maintained
3045
Kylene Hall1c72d462005-05-01 08:59:13 -07003046TPM DEVICE DRIVER
3047P: Kylene Hall
3048M: kjhall@us.ibm.com
3049W: http://tpmdd.sourceforge.net
3050L: tpmdd-devel@lists.sourceforge.net
3051S: Maintained
3052
Mark Gross1a80ba82005-10-30 15:02:55 -08003053Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003054P: Mark Gross
3055M: mark.gross@intel.com
3056S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003057
Chris Zankel48b415c2005-06-23 22:01:07 -07003058TENSILICA XTENSA PORT (xtensa):
3059P: Chris Zankel
3060M: chris@zankel.net
3061S: Maintained
3062
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063UltraSPARC (sparc64):
3064P: David S. Miller
3065M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003067T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068S: Maintained
3069
3070SHARP LH SUPPORT (LH7952X & LH7A40X)
3071P: Marc Singer
3072M: elf@buici.com
3073W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003074L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075S: Maintained
3076
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003077SHPC HOTPLUG DRIVER
3078P: Kristen Carlson Accardi
3079M: kristen.c.accardi@intel.com
3080L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003081S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003082
Pierre Ossmand129bce2006-03-24 03:18:17 -08003083SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3084P: Pierre Ossman
3085M: drzeus-sdhci@drzeus.cx
3086L: sdhci-devel@list.drzeus.cx
3087W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3088S: Maintained
3089
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003090SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3091P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003092M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003093L: netdev@vger.kernel.org
3094S: Maintained
3095
Chris Boot1a87d942006-07-10 04:45:34 -07003096SOEKRIS NET48XX LED SUPPORT
3097P: Chris Boot
3098M: bootc@bootc.net
3099S: Maintained
3100
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101SPARC (sparc32):
3102P: William L. Irwin
3103M: wli@holomorphy.com
3104L: sparclinux@vger.kernel.org
3105S: Maintained
3106
3107SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3108P: Roger Wolff
3109M: R.E.Wolff@BitWizard.nl
3110L: linux-kernel@vger.kernel.org ?
3111S: Supported
3112
Jim Lewis2752e402006-09-29 02:01:19 -07003113SPIDERNET NETWORK DRIVER for CELL
3114P: Jim Lewis
3115M: jim@jklewis.com
3116L: netdev@vger.kernel.org
3117S: Supported
3118
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119SRM (Alpha) environment access
3120P: Jan-Benedict Glaw
3121M: jbglaw@lug-owl.de
3122L: linux-kernel@vger.kernel.org
3123S: Maintained
3124
3125STARFIRE/DURALAN NETWORK DRIVER
3126P: Ion Badulescu
3127M: ionut@cs.columbia.edu
3128S: Maintained
3129
3130STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3131W: http://mosquitonet.Stanford.EDU/strip.html
3132S: Unsupported ?
3133
3134STRADIS MPEG-2 DECODER DRIVER
3135P: Nathan Laredo
3136M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137W: http://www.stradis.com/
3138S: Maintained
3139
3140SUPERH (sh)
3141P: Paul Mundt
3142M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003143L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145S: Maintained
3146
3147SUPERH64 (sh64)
3148P: Paul Mundt
3149M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150L: linuxsh-shmedia-dev@lists.sourceforge.net
3151W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152S: Maintained
3153
3154SUN3/3X
3155P: Sam Creasey
3156M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157W: http://sammy.net/sun3/
3158S: Maintained
3159
3160SVGA HANDLING
3161P: Martin Mares
3162M: mj@ucw.cz
3163L: linux-video@atrey.karlin.mff.cuni.cz
3164S: Maintained
3165
3166SYSV FILESYSTEM
3167P: Christoph Hellwig
3168M: hch@infradead.org
3169S: Maintained
3170
Stephen Hemminger781b4562006-07-10 20:25:29 -07003171TC CLASSIFIER
3172P: Jamal Hadi Salim
3173M: hadi@cyberus.ca
3174L: netdev@vger.kernel.org
3175S: Maintained
3176
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003177TCP LOW PRIORITY MODULE
3178P: Wong Hoi Sing, Edison
3179M: hswong3i@gmail.com
3180P: Hung Hing Lun, Mike
3181M: hlhung3i@gmail.com
3182W: http://tcp-lp-mod.sourceforge.net/
3183S: Maintained
3184
Alex Dubov4020f2d2006-10-04 02:15:37 -07003185TI FLASH MEDIA INTERFACE DRIVER
3186P: Alex Dubov
3187M: oakad@yahoo.com
3188S: Maintained
3189
Michael Buesch844dd052006-06-26 00:24:59 -07003190TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3191P: Deepak Saxena
3192M: dsaxena@plexity.net
3193S: Maintained
3194
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003195TASKSTATS STATISTICS INTERFACE
3196P: Shailabh Nagar
3197M: nagar@watson.ibm.com
3198L: linux-kernel@vger.kernel.org
3199S: Maintained
3200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003202P: Romain Lievin
3203M: roms@lpg.ticalc.org
3204S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
Per Lidene86eaa32006-01-12 16:45:18 +01003206TIPC NETWORK LAYER
3207P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003208M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003209P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003210M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003211P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003212M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003213L: tipc-discussion@lists.sourceforge.net
3214W: http://tipc.sourceforge.net/
3215W: http://tipc.cslab.ericsson.net/
3216T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3217S: Maintained
3218
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219TLAN NETWORK DRIVER
3220P: Samuel Chessman
3221M: chessman@tux.org
3222L: tlan-devel@lists.sourceforge.net
3223W: http://sourceforge.net/projects/tlan/
3224S: Maintained
3225
3226TOKEN-RING NETWORK DRIVER
3227P: Mike Phillips
3228M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003229L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230L: linux-tr@linuxtr.net
3231W: http://www.linuxtr.net
3232S: Maintained
3233
3234TOSHIBA ACPI EXTRAS DRIVER
3235P: John Belmonte
3236M: toshiba_acpi@memebeam.org
3237W: http://memebeam.org/toys/ToshibaAcpiDriver
3238S: Maintained
3239
3240TOSHIBA SMM DRIVER
3241P: Jonathan Buzzard
3242M: jonathan@buzzard.org.uk
3243L: tlinux-users@tce.toshiba-dme.co.jp
3244W: http://www.buzzard.org.uk/toshiba/
3245S: Maintained
3246
3247TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3248P: Muli Ben-Yehuda
3249M: mulix@mulix.org
3250L: linux-kernel@vger.kernel.org
3251S: Maintained
3252
3253TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003254P: Adrian Bunk
3255M: trivial@kernel.org
3256L: linux-kernel@vger.kernel.org
3257W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3258T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3259S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
3261TMS380 TOKEN-RING NETWORK DRIVER
3262P: Adam Fritzler
3263M: mid@auk.cx
3264L: linux-tr@linuxtr.net
3265W: http://www.auk.cx/tms380tr/
3266S: Maintained
3267
3268TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003269P: Valerie Henson
3270M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271L: tulip-users@lists.sourceforge.net
3272W: http://sourceforge.net/projects/tulip/
3273S: Maintained
3274
3275TUN/TAP driver
3276P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003277M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278L: vtun@office.satix.net
3279W: http://vtun.sourceforge.net/tun
3280S: Maintained
3281
3282U14-34F SCSI DRIVER
3283P: Dario Ballabio
3284M: ballabio_dario@emc.com
3285L: linux-scsi@vger.kernel.org
3286S: Maintained
3287
3288UDF FILESYSTEM
3289P: Ben Fennema
3290M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291W: http://linux-udf.sourceforge.net
3292S: Maintained
3293
3294UNIFORM CDROM DRIVER
3295P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003296M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297L: linux-kernel@vger.kernel.org
3298W: http://www.kernel.dk
3299S: Maintained
3300
3301USB ACM DRIVER
3302P: Oliver Neukum
3303M: oliver@neukum.name
3304L: linux-usb-users@lists.sourceforge.net
3305L: linux-usb-devel@lists.sourceforge.net
3306S: Maintained
3307
3308USB BLOCK DRIVER (UB ub)
3309P: Pete Zaitcev
3310M: zaitcev@redhat.com
3311L: linux-kernel@vger.kernel.org
3312L: linux-usb-devel@lists.sourceforge.net
3313S: Supported
3314
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315USB CDC ETHERNET DRIVER
3316P: Greg Kroah-Hartman
3317M: greg@kroah.com
3318L: linux-usb-users@lists.sourceforge.net
3319L: linux-usb-devel@lists.sourceforge.net
3320S: Maintained
3321W: http://www.kroah.com/linux-usb/
3322
3323USB EHCI DRIVER
3324P: David Brownell
3325M: dbrownell@users.sourceforge.net
3326L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003327S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
Luca Risolia7ce08c92006-01-11 02:06:59 +00003329USB ET61X[12]51 DRIVER
3330P: Luca Risolia
3331M: luca.risolia@studio.unibo.it
3332L: linux-usb-devel@lists.sourceforge.net
3333L: video4linux-list@redhat.com
3334W: http://www.linux-projects.org
3335S: Maintained
3336
David Brownell69ae9e32006-11-14 02:03:31 -08003337USB GADGET/PERIPHERAL SUBSYSTEM
3338P: David Brownell
3339M: dbrownell@users.sourceforge.net
3340L: linux-usb-devel@lists.sourceforge.net
3341W: http://www.linux-usb.org/gadget
3342S: Maintained
3343
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344USB HID/HIDBP DRIVERS
Jiri Kosina641266f2007-01-15 09:56:21 +01003345P: Jiri Kosina
3346M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347L: linux-usb-devel@lists.sourceforge.net
3348S: Maintained
3349
3350USB HUB DRIVER
3351P: Johannes Erdfelt
3352M: johannes@erdfelt.com
3353L: linux-usb-users@lists.sourceforge.net
3354L: linux-usb-devel@lists.sourceforge.net
3355S: Maintained
3356
Olav Kongas959eea22005-11-03 17:38:14 +02003357USB ISP116X DRIVER
3358P: Olav Kongas
3359M: ok@artecdesign.ee
3360L: linux-usb-devel@lists.sourceforge.net
3361S: Maintained
3362
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363USB KAWASAKI LSI DRIVER
3364P: Oliver Neukum
3365M: oliver@neukum.name
3366L: linux-usb-users@lists.sourceforge.net
3367L: linux-usb-devel@lists.sourceforge.net
3368S: Maintained
3369
3370USB MASS STORAGE DRIVER
3371P: Matthew Dharm
3372M: mdharm-usb@one-eyed-alien.net
3373L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003374L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375S: Maintained
3376W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3377
3378USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003379P: David Brownell
3380M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381L: linux-usb-users@lists.sourceforge.net
3382L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003383S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
Matthias Urlichsba460e42005-07-14 00:33:47 -07003385USB OPTION-CARD DRIVER
3386P: Matthias Urlichs
3387M: smurf@smurf.noris.de
3388L: linux-usb-devel@lists.sourceforge.net
3389S: Maintained
3390
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391USB OV511 DRIVER
3392P: Mark McClelland
3393M: mmcclell@bigfoot.com
3394L: linux-usb-users@lists.sourceforge.net
3395L: linux-usb-devel@lists.sourceforge.net
3396W: http://alpha.dyndns.org/ov511/
3397S: Maintained
3398
3399USB PEGASUS DRIVER
3400P: Petko Manolov
3401M: petkan@users.sourceforge.net
3402L: linux-usb-users@lists.sourceforge.net
3403L: linux-usb-devel@lists.sourceforge.net
3404W: http://pegasus2.sourceforge.net/
3405S: Maintained
3406
3407USB PRINTER DRIVER
3408P: Vojtech Pavlik
3409M: vojtech@suse.cz
3410L: linux-usb-users@lists.sourceforge.net
3411L: linux-usb-devel@lists.sourceforge.net
3412S: Maintained
3413
3414USB RTL8150 DRIVER
3415P: Petko Manolov
3416M: petkan@users.sourceforge.net
3417L: linux-usb-users@lists.sourceforge.net
3418L: linux-usb-devel@lists.sourceforge.net
3419W: http://pegasus2.sourceforge.net/
3420S: Maintained
3421
3422USB SE401 DRIVER
3423P: Jeroen Vreeken
3424M: pe1rxq@amsat.org
3425L: linux-usb-users@lists.sourceforge.net
3426L: linux-usb-devel@lists.sourceforge.net
3427W: http://www.chello.nl/~j.vreeken/se401/
3428S: Maintained
3429
3430USB SERIAL CYBERJACK DRIVER
3431P: Matthias Bruestle and Harald Welte
3432M: support@reiner-sct.com
3433W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3434S: Maintained
3435
3436USB SERIAL DIGI ACCELEPORT DRIVER
3437P: Peter Berger and Al Borchers
3438M: pberger@brimson.com
3439M: alborchers@steinerpoint.com
3440L: linux-usb-users@lists.sourceforge.net
3441L: linux-usb-devel@lists.sourceforge.net
3442S: Maintained
3443
3444USB SERIAL DRIVER
3445P: Greg Kroah-Hartman
3446M: gregkh@suse.de
3447L: linux-usb-users@lists.sourceforge.net
3448L: linux-usb-devel@lists.sourceforge.net
3449S: Supported
3450
3451USB SERIAL BELKIN F5U103 DRIVER
3452P: William Greathouse
3453M: wgreathouse@smva.com
3454L: linux-usb-users@lists.sourceforge.net
3455L: linux-usb-devel@lists.sourceforge.net
3456S: Maintained
3457
3458USB SERIAL CYPRESS M8 DRIVER
3459P: Lonnie Mendez
3460M: dignome@gmail.com
3461L: linux-usb-users@lists.sourceforge.net
3462L: linux-usb-devel@lists.sourceforge.net
3463S: Maintained
3464W: http://geocities.com/i0xox0i
3465W: http://firstlight.net/cvs
3466
3467USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3468L: linux-usb-users@lists.sourceforge.net
3469L: linux-usb-devel@lists.sourceforge.net
3470S: Maintained
3471
3472USB AUERSWALD DRIVER
3473P: Wolfgang Muees
3474M: wolfgang@iksw-muees.de
3475L: linux-usb-users@lists.sourceforge.net
3476L: linux-usb-devel@lists.sourceforge.net
3477S: Maintained
3478
3479USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3480P: Gary Brubaker
3481M: xavyer@ix.netcom.com
3482L: linux-usb-users@lists.sourceforge.net
3483L: linux-usb-devel@lists.sourceforge.net
3484S: Maintained
3485
3486USB SERIAL KEYSPAN DRIVER
3487P: Greg Kroah-Hartman
3488M: greg@kroah.com
3489L: linux-usb-users@lists.sourceforge.net
3490L: linux-usb-devel@lists.sourceforge.net
3491W: http://www.kroah.com/linux/
3492S: Maintained
3493
3494USB SERIAL WHITEHEAT DRIVER
3495P: Stuart MacDonald
3496M: stuartm@connecttech.com
3497L: linux-usb-users@lists.sourceforge.net
3498L: linux-usb-devel@lists.sourceforge.net
3499W: http://www.connecttech.com
3500S: Supported
3501
3502USB SN9C10x DRIVER
3503P: Luca Risolia
3504M: luca.risolia@studio.unibo.it
3505L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003506L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507W: http://www.linux-projects.org
3508S: Maintained
3509
3510USB SUBSYSTEM
3511P: Greg Kroah-Hartman
3512M: gregkh@suse.de
3513L: linux-usb-users@lists.sourceforge.net
3514L: linux-usb-devel@lists.sourceforge.net
3515W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003516T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517S: Supported
3518
3519USB UHCI DRIVER
3520P: Alan Stern
3521M: stern@rowland.harvard.edu
3522L: linux-usb-users@lists.sourceforge.net
3523L: linux-usb-devel@lists.sourceforge.net
3524S: Maintained
3525
David Brownell69ae9e32006-11-14 02:03:31 -08003526USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527P: David Brownell
3528M: dbrownell@users.sourceforge.net
3529L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003530W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531S: Maintained
3532
3533USB W996[87]CF DRIVER
3534P: Luca Risolia
3535M: luca.risolia@studio.unibo.it
3536L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003537L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538W: http://www.linux-projects.org
3539S: Maintained
3540
Luca Risolia60f78052006-02-06 16:29:35 +00003541USB ZC0301 DRIVER
3542P: Luca Risolia
3543M: luca.risolia@studio.unibo.it
3544L: linux-usb-devel@lists.sourceforge.net
3545L: video4linux-list@redhat.com
3546W: http://www.linux-projects.org
3547S: Maintained
3548
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549USB ZD1201 DRIVER
3550P: Jeroen Vreeken
3551M: pe1rxq@amsat.org
3552L: linux-usb-users@lists.sourceforge.net
3553L: linux-usb-devel@lists.sourceforge.net
3554W: http://linux-lc100020.sourceforge.net
3555S: Maintained
3556
3557USER-MODE LINUX
3558P: Jeff Dike
3559M: jdike@karaya.com
3560L: user-mode-linux-devel@lists.sourceforge.net
3561L: user-mode-linux-user@lists.sourceforge.net
3562W: http://user-mode-linux.sourceforge.net
3563S: Maintained
3564
3565FAT/VFAT/MSDOS FILESYSTEM:
3566P: OGAWA Hirofumi
3567M: hirofumi@mail.parknet.co.jp
3568L: linux-kernel@vger.kernel.org
3569S: Maintained
3570
3571VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3572P: Jeff Garzik
3573S: Odd fixes
3574
3575VIA RHINE NETWORK DRIVER
3576P: Roger Luethi
3577M: rl@hellgate.ch
3578S: Maintained
3579
Jean Delvare32c0a522005-09-22 21:47:58 +02003580VIAPRO SMBUS DRIVER
3581P: Jean Delvare
3582M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003583L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003584S: Maintained
3585
Francois Romieu01f20732007-01-26 00:57:17 -08003586VIA VELOCITY NETWORK DRIVER
3587P: Francois Romieu
3588M: romieu@fr.zoreil.com
3589L: netdev@vger.kernel.org
3590S: Maintained
3591
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592UCLINUX (AND M68KNOMMU)
3593P: Greg Ungerer
3594M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003596L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597S: Maintained
3598
3599UCLINUX FOR NEC V850
3600P: Miles Bader
3601M: uclinux-v850@lsi.nec.co.jp
3602W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3603W: http://www.ee.nec.de/uclinux/
3604S: Supported
3605
3606UCLINUX FOR RENESAS H8/300
3607P: Yoshinori Sato
3608M: ysato@users.sourceforge.jp
3609W: http://uclinux-h8.sourceforge.jp/
3610S: Supported
3611
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003612UFS FILESYSTEM
3613P: Evgeniy Dushistov
3614M: dushistov@mail.ru
3615L: linux-kernel@vger.kernel.org
3616S: Maintained
3617
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618USB DIAMOND RIO500 DRIVER
3619P: Cesar Miquel
3620M: miquel@df.uba.ar
3621L: rio500-users@lists.sourceforge.net
3622W: http://rio500.sourceforge.net
3623S: Maintained
3624
3625VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003626P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003627M: mchehab@infradead.org
3628M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003630W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003631T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003632S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Juerg Haefligerab413192006-09-24 20:54:04 +02003634VT1211 HARDWARE MONITOR DRIVER
3635P: Juerg Haefliger
3636M: juergh@gmail.com
3637L: lm-sensors@lm-sensors.org
3638S: Maintained
3639
Roger Lucas1de9e372005-11-26 20:20:05 +01003640VT8231 HARDWARE MONITOR DRIVER
3641P: Roger Lucas
3642M: roger@planbit.co.uk
3643L: lm-sensors@lm-sensors.org
3644S: Maintained
3645
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646W1 DALLAS'S 1-WIRE BUS
3647P: Evgeniy Polyakov
3648M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649S: Maintained
3650
Charles Spirakis13927072006-07-05 18:05:15 +02003651W83791D HARDWARE MONITORING DRIVER
3652P: Charles Spirakis
3653M: bezaur@gmail.com
3654L: lm-sensors@lm-sensors.org
3655S: Maintained
3656
Rudolf Marek61db0112006-12-12 18:18:30 +01003657W83793 HARDWARE MONITORING DRIVER
3658P: Rudolf Marek
3659M: r.marek@assembler.cz
3660L: lm-sensors@lm-sensors.org
3661S: Maintained
3662
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663W83L51xD SD/MMC CARD INTERFACE DRIVER
3664P: Pierre Ossman
3665M: drzeus-wbsd@drzeus.cx
3666L: wbsd-devel@list.drzeus.cx
3667W: http://projects.drzeus.cx/wbsd
3668S: Maintained
3669
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003670WATCHDOG DEVICE DRIVERS
3671P: Wim Van Sebroeck
3672M: wim@iguana.be
3673T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3674S: Maintained
3675
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3677P: Jean Tourrilhes
3678M: jt@hpl.hp.com
3679W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3680S: Maintained
3681
3682WD7000 SCSI DRIVER
3683P: Miroslav Zagorac
3684M: zaga@fly.cc.fer.hr
3685L: linux-scsi@vger.kernel.org
3686S: Maintained
3687
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003688WISTRON LAPTOP BUTTON DRIVER
3689P: Miloslav Trmac
3690M: mitr@volny.cz
3691S: Maintained
3692
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693WL3501 WIRELESS PCMCIA CARD DRIVER
3694P: Arnaldo Carvalho de Melo
3695M: acme@conectiva.com.br
3696W: http://advogato.org/person/acme
3697S: Maintained
3698
3699X.25 NETWORK LAYER
3700P: Henner Eisen
3701M: eis@baty.hanse.de
3702L: linux-x25@vger.kernel.org
3703S: Maintained
3704
3705XFS FILESYSTEM
3706P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003707P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003709L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003711T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712S: Supported
3713
Peter Korsgaard238b8722006-12-06 20:35:17 -08003714XILINX UARTLITE SERIAL DRIVER
3715P: Peter Korsgaard
3716M: jacmet@sunsite.dk
3717L: linux-serial@vger.kernel.org
3718S: Maintained
3719
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720X86 3-LEVEL PAGING (PAE) SUPPORT
3721P: Ingo Molnar
3722M: mingo@redhat.com
3723S: Maintained
3724
3725X86-64 port
3726P: Andi Kleen
3727M: ak@suse.de
3728L: discuss@x86-64.org
3729W: http://www.x86-64.org
3730S: Maintained
3731
3732YAM DRIVER FOR AX.25
3733P: Jean-Paul Roubelat
3734M: jpr@f6fbb.org
3735L: linux-hams@vger.kernel.org
3736S: Maintained
3737
Henkaf64a5e2005-10-12 15:02:56 +02003738YEALINK PHONE DRIVER
3739P: Henk Vergonet
3740M: Henk.Vergonet@gmail.com
3741L: usbb2k-api-dev@nongnu.org
3742S: Maintained
3743
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744Z8530 DRIVER FOR AX.25
3745P: Joerg Reuter
3746M: jreuter@yaina.de
3747W: http://yaina.de/jreuter/
3748W: http://www.qsl.net/dl1bke/
3749L: linux-hams@vger.kernel.org
3750S: Maintained
3751
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003752ZD1211RW WIRELESS DRIVER
3753P: Daniel Drake
3754M: dsd@gentoo.org
3755P: Ulrich Kunitz
3756M: kune@deine-taler.de
3757W: http://zd1211.ath.cx/wiki/DriverRewrite
3758L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3759S: Maintained
3760
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761ZF MACHZ WATCHDOG
3762P: Fernando Fuganti
3763M: fuganti@netbank.com.br
3764W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3765S: Maintained
3766
3767ZR36067 VIDEO FOR LINUX DRIVER
3768P: Ronald Bultje
3769M: rbultje@ronald.bitfreak.net
3770L: mjpeg-users@lists.sourceforge.net
3771W: http://mjpeg.sourceforge.net/driver-zoran/
3772S: Maintained
3773
3774ZR36120 VIDEO FOR LINUX DRIVER
3775P: Pauline Middelink
3776M: middelin@polyware.nl
3777W: http://www.polyware.nl/~middelin/En/hobbies.html
3778W: http://www.polyware.nl/~middelin/hobbies.html
3779S: Maintained
3780
3781THE REST
3782P: Linus Torvalds
3783S: Buried alive in reporters