blob: 515289a3a4373b2aaf888c81aca658ae708a21b4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
33 generalized kernel feature ready for next time. See
34 Documentation/CodingStyle for guidance here.
35
36 PLEASE try to include any credit lines you want added with the
37 patch. It avoids people being missed off by mistake and makes
38 it easier to know who wants adding and who doesn't.
39
40 PLEASE document known bugs. If it doesn't work for everything
41 or does something very odd once a month document it.
42
Alan Coxc9ee1332006-05-20 15:00:12 -070043 PLEASE remember that submissions must be made under the terms
44 of the OSDL certificate of contribution
45 (http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html)
46 and should include a Signed-off-by: line.
47
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486. Make sure you have the right to send any changes you make. If you
49 do changes at work you may find your employer owns the patch
50 not you.
51
Alan Coxc9ee1332006-05-20 15:00:12 -0700527. When sending security related changes or reports to a maintainer
53 please Cc: security@kernel.org, especially if the maintainer
54 does not respond.
55
568. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 -----------------------------------
59
60Maintainers List (try to look for most precise areas first)
61
62Note: For the hard of thinking, this list is meant to remain in alphabetical
63order. If you could add yourselves to it in alphabetical order that would be
64so much easier [Ed]
65
66P: Person
67M: Mail patches to
68L: Mailing list that is relevant to this area
69W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080070T: SCM tree type and location. Type is one of: git, hg, quilt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071S: Status, one of the following:
72
73 Supported: Someone is actually paid to look after this.
74 Maintained: Someone actually looks after it.
75 Odd Fixes: It has a maintainer but they don't have time to do
76 much other than throw the odd patch in. See below..
77 Orphan: No current maintainer [but maybe you could take the
78 role as you write your new code].
79 Obsolete: Old code. Something tagged obsolete generally means
80 it has been replaced by a better system and you
81 should be using that.
82
833C359 NETWORK DRIVER
84P: Mike Phillips
85M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -070086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070087L: linux-tr@linuxtr.net
88W: http://www.linuxtr.net
89S: Maintained
90
913C505 NETWORK DRIVER
92P: Philip Blundell
93M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -070094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070095S: Maintained
96
973CR990 NETWORK DRIVER
98P: David Dillow
99M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101S: Maintained
102
1033W-XXXX ATA-RAID CONTROLLER DRIVER
104P: Adam Radford
105M: linuxraid@amcc.com
106L: linux-scsi@vger.kernel.org
107W: http://www.amcc.com
108S: Supported
109
1103W-9XXX SATA-RAID CONTROLLER DRIVER
111P: Adam Radford
112M: linuxraid@amcc.com
113L: linux-scsi@vger.kernel.org
114W: http://www.amcc.com
115S: Supported
116
11753C700 AND 53C700-66 SCSI DRIVER
118P: James E.J. Bottomley
119M: James.Bottomley@HansenPartnership.com
120L: linux-scsi@vger.kernel.org
121S: Maintained
122
1236PACK NETWORK DRIVER FOR AX.25
124P: Andreas Koensgen
125M: ajk@iehk.rwth-aachen.de
126L: linux-hams@vger.kernel.org
127S: Maintained
128
1298139CP 10/100 FAST ETHERNET DRIVER
130P: Jeff Garzik
131M: jgarzik@pobox.com
132S: Maintained
133
1348139TOO 10/100 FAST ETHERNET DRIVER
135P: Jeff Garzik
136M: jgarzik@pobox.com
137W: http://sourceforge.net/projects/gkernel/
138S: Maintained
139
1408169 10/100/1000 GIGABIT ETHERNET DRIVER
141P: Francois Romieu
142M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700143L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Maintained
145
1468250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-serial@vger.kernel.org
148W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100149S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1518390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
152P: Paul Gortmaker
153M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
156
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001579P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100158P: Eric Van Hensbergen
159M: ericvh@gmail.com
160P: Ron Minnich
161M: rminnich@lanl.gov
162P: Latchesar Ionkov
163M: lucho@ionkov.net
164L: v9fs-developer@lists.sourceforge.net
165W: http://v9fs.sf.net
166T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
167S: Maintained
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169A2232 SERIAL BOARD DRIVER
170P: Enver Haase
171M: ehaase@inf.fu-berlin.de
172M: A2232@gmx.net
173L: linux-m68k@lists.linux-m68k.org
174S: Maintained
175
176AIO
177P: Benjamin LaHaise
178M: bcrl@kvack.org
179L: linux-aio@kvack.org
180S: Supported
181
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200182ABIT UGURU HARDWARE MONITOR DRIVER
183P: Hans de Goede
184M: j.w.r.degoede@hhs.nl
185L: lm-sensors@lm-sensors.org
186S: Maintained
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188ACENIC DRIVER
189P: Jes Sorensen
190M: jes@trained-monkey.org
191L: linux-acenic@sunsite.dk
192S: Maintained
193
194ACI MIXER DRIVER
195P: Robert Siemer
196M: Robert.Siemer@gmx.de
197L: linux-sound@vger.kernel.org
198W: http://www.stud.uni-karlsruhe.de/~uh1b/
199S: Maintained
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201AACRAID SCSI RAID DRIVER
202P: Adaptec OEM Raid Solutions
203L: linux-scsi@vger.kernel.org
204W: http://linux.dell.com/storage.shtml
205S: Supported
206
207ACPI
208P: Len Brown
209M: len.brown@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500210M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500211L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800213T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500214S: Supported
215
216ACPI BATTERY DRIVERS
217P: Vladimir P. Lebedev
218M: vladimir.p.lebedev@intel.com
219L: linux-acpi@vger.kernel.org
220W: http://acpi.sourceforge.net/
221S: Supported
222
223ACPI EC DRIVER
224P: Alexey Starikovskiy
225M: alexey.y.starikovskiy@linux.intel.com
226L: linux-acpi@vger.kernel.org
227W: http://acpi.sourceforge.net/
228S: Supported
229
230ACPI FAN DRIVER
231P: Konstantin A. Karasyov
232M: konstantin.a.karasyov@intel.com
233L: linux-acpi@vger.kernel.org
234W: http://acpi.sourceforge.net/
235S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700237ACPI PCI HOTPLUG DRIVER
238P: Kristen Carlson Accardi
239M: kristen.c.accardi@intel.com
240L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -0500241S: Supported
242
243ACPI THERMAL DRIVER
244P: Konstantin A. Karasyov
245M: konstantin.a.karasyov@intel.com
246L: linux-acpi@vger.kernel.org
247W: http://acpi.sourceforge.net/
248S: Supported
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250AD1816 SOUND DRIVER
251P: Thorsten Knabe
252M: Thorsten Knabe <linux@thorsten-knabe.de>
253W: http://linux.thorsten-knabe.de
254S: Maintained
255
Kyle McMartin6958ae32005-10-21 23:11:27 -0400256AD1889 SOUND DRIVER
257P: Kyle McMartin
258M: kyle@parisc-linux.org
259P: Thibaut Varene
260M: T-Bone@parisc-linux.org
261W: http://wiki.parisc-linux.org/AD1889
262L: parisc-linux@lists.parisc-linux.org
263S: Maintained
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265ADM1025 HARDWARE MONITOR DRIVER
266P: Jean Delvare
267M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200268L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269S: Maintained
270
271ADT746X FAN DRIVER
272P: Colin Leroy
273M: colin@colino.net
274S: Maintained
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276AEDSP16 DRIVER
277P: Riccardo Facchetti
278M: fizban@tin.it
279S: Maintained
280
281AFFS FILE SYSTEM
282P: Roman Zippel
283M: zippel@linux-m68k.org
284S: Maintained
285
286AGPGART DRIVER
287P: Dave Jones
288M: davej@codemonkey.org.uk
289W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800290T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291S: Maintained
292
293AHA152X SCSI DRIVER
294P: Juergen E. Fischer
295M: Juergen Fischer <fischer@norbit.de>
296L: linux-scsi@vger.kernel.org
297S: Maintained
298
299ALCATEL SPEEDTOUCH USB DRIVER
300P: Duncan Sands
301M: duncan.sands@free.fr
302L: linux-usb-users@lists.sourceforge.net
303L: linux-usb-devel@lists.sourceforge.net
304W: http://www.linux-usb.org/SpeedTouch/
305S: Maintained
306
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000307ALI1563 I2C DRIVER
308P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100309M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200310L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000311S: Maintained
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313ALPHA PORT
314P: Richard Henderson
315M: rth@twiddle.net
316S: Odd Fixes for 2.4; Maintained for 2.6.
317P: Ivan Kokshaysky
318M: ink@jurassic.park.msu.ru
319S: Maintained for 2.4; PCI support for 2.6.
320
Jordan Crousef90b8112006-01-06 00:12:14 -0800321AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100322P: Jordan Crouse
323M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800324L: info-linux@geode.amd.com
325W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
326S: Supported
327
Stelian Pop284f42b2006-12-12 18:18:31 +0100328AMS (Apple Motion Sensor) DRIVER
329P: Stelian Pop
330M: stelian@popies.net
331P: Michael Hanselmann
332M: linux-kernel@hansmi.ch
333S: Supported
334
Tom Tuckerf94b5332006-09-22 15:22:48 -0700335AMSO1100 RNIC DRIVER
336P: Tom Tucker
337M: tom@opengridcomputing.com
338P: Steve Wise
339M: swise@opengridcomputing.com
340L: openib-general@openib.org
341S: Maintained
342
Johannes Berg42269062006-07-25 16:15:50 +0200343AOA (Apple Onboard Audio) ALSA DRIVER
344P: Johannes Berg
345M: johannes@sipsolutions.net
346L: linuxppc-dev@ozlabs.org
347L: alsa-devel@alsa-project.org
348S: Maintained
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350APM DRIVER
351P: Stephen Rothwell
352M: sfr@canb.auug.org.au
353L: linux-laptop@vger.kernel.org
354W: http://www.canb.auug.org.au/~sfr/
355S: Supported
356
357APPLETALK NETWORK LAYER
358P: Arnaldo Carvalho de Melo
359M: acme@conectiva.com.br
360S: Maintained
361
Jaya Kumar1154ea72005-06-21 17:17:04 -0700362ARC FRAMEBUFFER DRIVER
363P: Jaya Kumar
364M: jayalk@intworks.biz
365S: Maintained
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367ARM26 ARCHITECTURE
368P: Ian Molton
369M: spyro@f2s.com
370S: Maintained
371
372ARM26/ARCHIMEDES
373P: Ian Molton
374M: spyro@f2s.com
375S: Maintained
376
377ARM26/A5000
378P: John Appleby
379M: john@dnsworld.co.uk
380S: Maintained
381
382ARM MFM AND FLOPPY DRIVERS
383P: Ian Molton
384M: spyro@f2s.com
385S: Maintained
386
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800387ARM/ADI ROADRUNNER MACHINE SUPPORT
388P: Lennert Buytenhek
389M: kernel@wantstofly.org
390L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
391S: Maintained
392
393ARM/ADS SPHERE MACHINE SUPPORT
394P: Lennert Buytenhek
395M: kernel@wantstofly.org
396L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
397S: Maintained
398
399ARM/AJECO 1ARM MACHINE SUPPORT
400P: Lennert Buytenhek
401M: kernel@wantstofly.org
402L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
403S: Maintained
404
Andrew Victord4a89c72006-12-04 13:56:21 +0100405ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
406P: Andrew Victor
407M: andrew@sanpeople.com
408L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
409W: http://maxim.org.za/at91_26.html
410S: Maintained
411
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800412ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
413P: Lennert Buytenhek
414M: kernel@wantstofly.org
415L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
416S: Maintained
417
418ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
419P: Lennert Buytenhek
420M: kernel@wantstofly.org
421L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
422S: Maintained
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424ARM/CORGI MACHINE SUPPORT
425P: Richard Purdie
426M: rpurdie@rpsys.net
427S: Maintained
428
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800429ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
430P: Lennert Buytenhek
431M: kernel@wantstofly.org
432L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
433S: Maintained
434
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100435ARM/HP JORNADA 7XX MACHINE SUPPORT
436P: Kristoffer Ericson
437M: kristoffer_e1@hotmail.com
438W: www.jlime.com
439S: Maintained
440
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800441ARM/INTEL IOP32X ARM ARCHITECTURE
442P: Lennert Buytenhek
443M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100444P: Dan Williams
445M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800446L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100447S: Supported
448
449ARM/INTEL IOP33X ARM ARCHITECTURE
450P: Dan Williams
451M: dan.j.williams@intel.com
452L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
453S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800454
455ARM/INTEL IOP13XX ARM ARCHITECTURE
456P: Lennert Buytenhek
457M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100458P: Dan Williams
459M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800460L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100461S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800462
463ARM/INTEL IQ81342EX MACHINE SUPPORT
464P: Lennert Buytenhek
465M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100466P: Dan Williams
467M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800468L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100469S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800470
471ARM/INTEL IXP2000 ARM ARCHITECTURE
472P: Lennert Buytenhek
473M: kernel@wantstofly.org
474L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
475S: Maintained
476
477ARM/INTEL IXDP2850 MACHINE SUPPORT
478P: Lennert Buytenhek
479M: kernel@wantstofly.org
480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
481S: Maintained
482
483ARM/INTEL IXP23XX ARM ARCHITECTURE
484P: Lennert Buytenhek
485M: kernel@wantstofly.org
486L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
487S: Maintained
488
489ARM/INTEL XSC3 (MANZANO) ARM CORE
490P: Lennert Buytenhek
491M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100492P: Dan Williams
493M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800494L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100495S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800496
497ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
498P: Lennert Buytenhek
499M: kernel@wantstofly.org
500L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
501S: Maintained
502
503ARM/LOGICPD PXA270 MACHINE SUPPORT
504P: Lennert Buytenhek
505M: kernel@wantstofly.org
506L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
507S: Maintained
508
Dirk Opfer8459c152005-11-06 14:27:52 +0000509ARM/TOSA MACHINE SUPPORT
510P: Dirk Opfer
511M: dirk@opfer-online.de
512S: Maintained
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514ARM/PLEB SUPPORT
515P: Peter Chubb
516M: pleb@gelato.unsw.edu.au
517W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
518S: Maintained
519
520ARM/PT DIGITAL BOARD PORT
521P: Stefan Eletzhofer
522M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700523L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524W: http://www.arm.linux.org.uk/
525S: Maintained
526
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800527ARM/RADISYS ENP2611 MACHINE SUPPORT
528P: Lennert Buytenhek
529M: kernel@wantstofly.org
530L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
531S: Maintained
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533ARM/SHARK MACHINE SUPPORT
534P: Alexander Schulz
535M: alex@shark-linux.de
536W: http://www.shark-linux.de/shark.html
537S: Maintained
538
539ARM/STRONGARM110 PORT
540P: Russell King
541M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700542L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543W: http://www.arm.linux.org.uk/
544S: Maintained
545
546ARM/S3C2410 ARM ARCHITECTURE
547P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800548M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700549L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550W: http://www.fluff.org/ben/linux/
551S: Maintained
552
553ARM/S3C2440 ARM ARCHITECTURE
554P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800555M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700556L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557W: http://www.fluff.org/ben/linux/
558S: Maintained
559
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800560ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
561P: Lennert Buytenhek
562M: kernel@wantstofly.org
563L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
564S: Maintained
565
566ARM/THECUS N2100 MACHINE SUPPORT
567P: Lennert Buytenhek
568M: kernel@wantstofly.org
569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
570S: Maintained
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572ARPD SUPPORT
573P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700574L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575S: Maintained
576
577ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500578P: Corentin Chary
579M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580P: Karol Kozimor
581M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582L: acpi4asus-user@lists.sourceforge.net
583W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500584W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585S: Maintained
586
Corentin Chary85091b72007-01-26 14:04:30 +0100587ASUS LAPTOP EXTRAS DRIVER
588P: Corentin Chary
589M: corentincj@iksaif.net
590L: acpi4asus-user@lists.sourceforge.net
591W: http://sourceforge.net/projects/acpi4asus
592W: http://xf.iksaif.net/acpi4asus
593S: Maintained
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595ATA OVER ETHERNET DRIVER
596P: Ed L. Cashin
597M: ecashin@coraid.com
598W: http://www.coraid.com/support/linux
599S: Supported
600
601ATM
602P: Chas Williams
603M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700604L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605W: http://linux-atm.sourceforge.net
606S: Maintained
607
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100608ATMEL MACB ETHERNET DRIVER
609P: Atmel AVR32 Support Team
610M: avr32@atmel.com
611P: 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
631P: Atmel AVR32 Support Team
632M: avr32@atmel.com
633P: Haavard Skinnemoen
634M: hskinnemoen@atmel.com
635W: http://www.atmel.com/products/AVR32/
636W: http://avr32linux.org/
637W: http://avrfreaks.net/
638S: Supported
639
640AVR32/AT32AP MACHINE SUPPORT
641P: Atmel AVR32 Support Team
642M: avr32@atmel.com
643P: Haavard Skinnemoen
644M: hskinnemoen@atmel.com
645S: Supported
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647AX.25 NETWORK LAYER
648P: Ralf Baechle
649M: ralf@linux-mips.org
650L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200651W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652S: Maintained
653
654BAYCOM/HDLCDRV DRIVERS FOR AX.25
655P: Thomas Sailer
656M: t.sailer@alumni.ethz.ch
657L: linux-hams@vger.kernel.org
658W: http://www.baycom.org/~tom/ham/ham.html
659S: Maintained
660
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200661BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
662P: Larry Finger
663M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200664P: Stefano Brivio
665M: st3@riseup.net
666W: http://bcm43xx.berlios.de/
667S: Maintained
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669BEFS FILE SYSTEM
670P: Sergey S. Kostyliov
671M: rathamahata@php4.ru
672L: linux-kernel@vger.kernel.org
673S: Maintained
674
675BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
676P: Kenji Hollis
677W: http://ftp.bitgate.com/pcwd/
678S: Maintained
679
680BFS FILE SYSTEM
681P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800682M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683L: linux-kernel@vger.kernel.org
684S: Maintained
685
686BLOCK LAYER
687P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200688M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800690T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691S: Maintained
692
693BLUETOOTH SUBSYSTEM
694P: Marcel Holtmann
695M: marcel@holtmann.org
696P: Maxim Krasnyansky
697M: maxk@qualcomm.com
698L: bluez-devel@lists.sf.net
699W: http://bluez.sf.net
700W: http://www.bluez.org
701W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800702T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703S: Maintained
704
705BLUETOOTH RFCOMM LAYER
706P: Marcel Holtmann
707M: marcel@holtmann.org
708P: Maxim Krasnyansky
709M: maxk@qualcomm.com
710S: Maintained
711
712BLUETOOTH BNEP LAYER
713P: Marcel Holtmann
714M: marcel@holtmann.org
715P: Maxim Krasnyansky
716M: maxk@qualcomm.com
717S: Maintained
718
719BLUETOOTH CMTP LAYER
720P: Marcel Holtmann
721M: marcel@holtmann.org
722S: Maintained
723
724BLUETOOTH HIDP LAYER
725P: Marcel Holtmann
726M: marcel@holtmann.org
727S: Maintained
728
729BLUETOOTH HCI UART DRIVER
730P: Marcel Holtmann
731M: marcel@holtmann.org
732P: Maxim Krasnyansky
733M: maxk@qualcomm.com
734S: Maintained
735
736BLUETOOTH HCI USB DRIVER
737P: Marcel Holtmann
738M: marcel@holtmann.org
739P: Maxim Krasnyansky
740M: maxk@qualcomm.com
741S: Maintained
742
743BLUETOOTH HCI BCM203X DRIVER
744P: Marcel Holtmann
745M: marcel@holtmann.org
746S: Maintained
747
748BLUETOOTH HCI BPA10X DRIVER
749P: Marcel Holtmann
750M: marcel@holtmann.org
751S: Maintained
752
753BLUETOOTH HCI BFUSB DRIVER
754P: Marcel Holtmann
755M: marcel@holtmann.org
756S: Maintained
757
758BLUETOOTH HCI DTL1 DRIVER
759P: Marcel Holtmann
760M: marcel@holtmann.org
761S: Maintained
762
763BLUETOOTH HCI BLUECARD DRIVER
764P: Marcel Holtmann
765M: marcel@holtmann.org
766S: Maintained
767
768BLUETOOTH HCI BT3C DRIVER
769P: Marcel Holtmann
770M: marcel@holtmann.org
771S: Maintained
772
773BLUETOOTH HCI BTUART DRIVER
774P: Marcel Holtmann
775M: marcel@holtmann.org
776S: Maintained
777
778BLUETOOTH HCI VHCI DRIVER
779P: Maxim Krasnyansky
780M: maxk@qualcomm.com
781S: Maintained
782
783BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100784P: Chad Tindel
785M: ctindel@users.sourceforge.net
786P: Jay Vosburgh
787M: fubar@us.ibm.com
788L: bonding-devel@lists.sourceforge.net
789W: http://sourceforge.net/projects/bonding/
790S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000792BROADBAND PROCESSOR ARCHITECTURE
793P: Arnd Bergmann
794M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100795L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400796W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000797S: Supported
798
Gary Zambrano39105892006-06-22 17:26:20 -0700799BROADCOM B44 10/100 ETHERNET DRIVER
800P: Gary Zambrano
801M: zambrano@broadcom.com
802L: netdev@vger.kernel.org
803S: Supported
804
Michael Chan948c51e2006-06-04 02:51:39 -0700805BROADCOM BNX2 GIGABIT ETHERNET DRIVER
806P: Michael Chan
807M: mchan@broadcom.com
808L: netdev@vger.kernel.org
809S: Supported
810
811BROADCOM TG3 GIGABIT ETHERNET DRIVER
812P: Michael Chan
813M: mchan@broadcom.com
814L: netdev@vger.kernel.org
815S: Supported
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700818P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200819M: mchehab@infradead.org
820M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700822W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200823T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700824S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200826CALGARY x86-64 IOMMU
827P: Muli Ben-Yehuda
828M: muli@il.ibm.com
829P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200830M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200831L: linux-kernel@vger.kernel.org
832L: discuss@x86-64.org
833S: Maintained
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835COMMON INTERNET FILE SYSTEM (CIFS)
836P: Steve French
837M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100838L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839L: samba-technical@lists.samba.org
840W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800841T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842S: Supported
843
Joel Becker7063fbf2005-12-15 14:29:43 -0800844CONFIGFS
845P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800846M: joel.becker@oracle.com
847L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800848S: Supported
849
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800850CIRRUS LOGIC EP93XX ETHERNET DRIVER
851P: Lennert Buytenhek
852M: kernel@wantstofly.org
853L: netdev@vger.kernel.org
854S: Maintained
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856CIRRUS LOGIC GENERIC FBDEV DRIVER
857P: Jeff Garzik
858M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800859L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860S: Odd Fixes
861
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800862CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
863P: Lennert Buytenhek
864M: kernel@wantstofly.org
865L: linux-usb-devel@lists.sourceforge.net
866S: Maintained
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
869P: Cirrus Logic Corporation (kernel 2.2 driver)
870M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
871P: Nils Faerber (port to kernel 2.4)
872M: Nils Faerber <nils@kernelconcepts.de>
873S: Maintained
874
875CODA FILE SYSTEM
876P: Jan Harkes
877M: jaharkes@cs.cmu.edu
878M: coda@cs.cmu.edu
879L: codalist@coda.cs.cmu.edu
880W: http://www.coda.cs.cmu.edu/
881S: Maintained
882
883COMPACTPCI HOTPLUG CORE
884P: Scott Murray
885M: scottm@somanetworks.com
886M: scott@spiteful.org
887L: pcihpd-discuss@lists.sourceforge.net
888S: Supported
889
890COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
891P: Scott Murray
892M: scottm@somanetworks.com
893M: scott@spiteful.org
894L: pcihpd-discuss@lists.sourceforge.net
895S: Supported
896
897COMPACTPCI HOTPLUG GENERIC DRIVER
898P: Scott Murray
899M: scottm@somanetworks.com
900M: scott@spiteful.org
901L: pcihpd-discuss@lists.sourceforge.net
902S: Supported
903
904COMPUTONE INTELLIPORT MULTIPORT CARD
905P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700906M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700908S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910COSA/SRP SYNC SERIAL DRIVER
911P: Jan "Yenya" Kasprzak
912M: kas@fi.muni.cz
913W: http://www.fi.muni.cz/~kas/cosa/
914S: Maintained
915
916CPU FREQUENCY DRIVERS
917P: Dave Jones
918M: davej@codemonkey.org.uk
919L: cpufreq@lists.linux.org.uk
920W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500921T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922S: Maintained
923
924CPUID/MSR DRIVER
925P: H. Peter Anvin
926M: hpa@zytor.com
927S: Maintained
928
Paul Jacksoned90fb42005-09-27 21:45:37 -0700929CPUSETS
930P: Paul Jackson
931P: Simon Derr
932M: pj@sgi.com
933M: simon.derr@bull.net
934L: linux-kernel@vger.kernel.org
935W: http://www.bullopensource.org/cpuset/
936S: Supported
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100939W: http://sourceforge.net/projects/cramfs/
940S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942CRIS PORT
943P: Mikael Starvik
944M: starvik@axis.com
945L: dev-etrax@axis.com
946W: http://developer.axis.com
947S: Maintained
948
949CRYPTO API
950P: Herbert Xu
951M: herbert@gondor.apana.org.au
952P: David S. Miller
953M: davem@davemloft.net
954L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800955T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956S: Maintained
957
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100958CS5535 Audio ALSA driver
959P: Jaya Kumar
960M: jayakumar.alsa@gmail.com
961S: Maintained
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963CYBERPRO FB DRIVER
964P: Russell King
965M: rmk@arm.linux.org.uk
966W: http://www.arm.linux.org.uk/
967S: Maintained
968
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700969CYBLAFB FRAMEBUFFER DRIVER
970P: Knut Petersen
971M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800972L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700973S: Maintained
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975CYCLADES 2X SYNC CARD DRIVER
976P: Arnaldo Carvalho de Melo
977M: acme@conectiva.com.br
978W: http://advogato.org/person/acme
979L: cycsyn-devel@bazar.conectiva.com.br
980S: Maintained
981
982CYCLADES ASYNC MUX DRIVER
983M: async@cyclades.com
984W: http://www.cyclades.com/
985S: Supported
986
987CYCLADES PC300 DRIVER
988M: pc300@cyclades.com
989W: http://www.cyclades.com/
990S: Supported
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992DAMA SLAVE for AX.25
993P: Joerg Reuter
994M: jreuter@yaina.de
995W: http://yaina.de/jreuter/
996W: http://www.qsl.net/dl1bke/
997L: linux-hams@vger.kernel.org
998S: Maintained
999
1000DC395x SCSI driver
1001P: Oliver Neukum
1002M: oliver@neukum.name
1003P: Ali Akcaagac
1004M: aliakc@web.de
1005P: Jamie Lenehan
1006M: lenehan@twibble.org
1007W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001008L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009L: http://lists.twibble.org/mailman/listinfo/dc395x/
1010S: Maintained
1011
1012DC390/AM53C974 SCSI driver
1013P: Kurt Garloff
1014M: garloff@suse.de
1015W: http://www.garloff.de/kurt/linux/dc390/
1016P: Guennadi Liakhovetski
1017M: g.liakhovetski@gmx.de
1018S: Maintained
1019
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001020DCCP PROTOCOL
1021P: Arnaldo Carvalho de Melo
1022M: acme@mandriva.com
1023L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001024W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001025S: Maintained
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027DECnet NETWORK LAYER
1028P: Patrick Caulfield
1029M: patrick@tykepenguin.com
1030W: http://linux-decnet.sourceforge.net
1031L: linux-decnet-user@lists.sourceforge.net
1032S: Maintained
1033
1034DEFXX FDDI NETWORK DRIVER
1035P: Maciej W. Rozycki
1036M: macro@linux-mips.org
1037S: Maintained
1038
1039DELL LAPTOP SMM DRIVER
1040P: Massimo Dal Zotto
1041M: dz@debian.org
1042W: http://www.debian.org/~dz/i8k/
1043S: Maintained
1044
Doug Warzecha90563ec2005-09-06 15:17:15 -07001045DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1046P: Doug Warzecha
1047M: Douglas_Warzecha@dell.com
1048S: Maintained
1049
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001050DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051P: Alasdair Kergon
1052L: dm-devel@redhat.com
1053W: http://sources.redhat.com/dm
1054S: Maintained
1055
1056DEVICE NUMBER REGISTRY
1057P: Torben Mathiasen
1058M: device@lanana.org
1059W: http://lanana.org/docs/device-list/index.html
1060L: linux-kernel@vger.kernel.org
1061S: Maintained
1062
1063DEVICE FILESYSTEM
1064S: Obsolete
1065
1066DIGI INTL. EPCA DRIVER
1067P: Digi International, Inc
1068M: Eng.Linux@digi.com
1069L: Eng.Linux@digi.com
1070W: http://www.digi.com
1071S: Orphaned
1072
1073DIGI RIGHTSWITCH NETWORK DRIVER
1074P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001075L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076W: http://www.digi.com
1077S: Orphaned
1078
1079DIRECTORY NOTIFICATION
1080P: Stephen Rothwell
1081M: sfr@canb.auug.org.au
1082L: linux-kernel@vger.kernel.org
1083S: Supported
1084
1085DISK GEOMETRY AND PARTITION HANDLING
1086P: Andries Brouwer
1087M: aeb@cwi.nl
1088W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1089W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1090W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1091S: Maintained
1092
1093DISKQUOTA:
1094P: Jan Kara
1095M: jack@suse.cz
1096L: linux-kernel@vger.kernel.org
1097S: Maintained
1098
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001099DISTRIBUTED LOCK MANAGER
1100P: Patrick Caulfield
1101M: pcaulfie@redhat.com
1102P: David Teigland
1103M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001104L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001105W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001106T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1107T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001108S: Supported
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1111P: Tobias Ringstrom
1112M: tori@unhappy.mine.nu
1113L: linux-kernel@vger.kernel.org
1114S: Maintained
1115
Martin Waitzba483d52005-06-17 13:20:59 -07001116DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001117P: Randy Dunlap
1118M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001119S: Maintained
1120
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001121DOCKING STATION DRIVER
1122P: Kristen Carlson Accardi
1123M: kristen.c.accardi@intel.com
1124L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001125S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127DOUBLETALK DRIVER
1128P: James R. Van Zandt
1129M: jrv@vanzandt.mv.com
1130L: blinux-list@redhat.com
1131S: Maintained
1132
1133DRIVER CORE, KOBJECTS, AND SYSFS
1134P: Greg Kroah-Hartman
1135M: gregkh@suse.de
1136L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001137T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138S: Supported
1139
1140DRM DRIVERS
1141P: David Airlie
1142M: airlied@linux.ie
1143L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001144T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145S: Maintained
1146
1147DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001148P: Francois Romieu
1149M: romieu@fr.zoreil.com
1150L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151S: Maintained
1152
1153DVB SUBSYSTEM AND DRIVERS
1154P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001155M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001157W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001158T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001159S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161EATA-DMA SCSI DRIVER
1162P: Michael Neuffer
1163L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1164S: Maintained
1165
1166EATA ISA/EISA/PCI SCSI DRIVER
1167P: Dario Ballabio
1168M: ballabio_dario@emc.com
1169L: linux-scsi@vger.kernel.org
1170S: Maintained
1171
1172EATA-PIO SCSI DRIVER
1173P: Michael Neuffer
1174M: mike@i-Connect.Net
1175L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1176S: Maintained
1177
1178EBTABLES
1179P: Bart De Schuymer
1180M: bart.de.schuymer@pandora.be
1181L: ebtables-user@lists.sourceforge.net
1182L: ebtables-devel@lists.sourceforge.net
1183W: http://ebtables.sourceforge.net/
1184S: Maintained
1185
Michael Halcrow237fead2006-10-04 02:16:22 -07001186ECRYPT FILE SYSTEM
1187P: Mike Halcrow, Phillip Hellewell
1188M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1189L: ecryptfs-devel@lists.sourceforge.net
1190W: http://ecryptfs.sourceforge.net/
1191S: Supported
1192
Alan Coxda9bb1d2006-01-18 17:44:13 -08001193EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001194P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001195M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001196L: bluesmoke-devel@lists.sourceforge.net
1197W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001198S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001199
1200EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001201P: Mark Gross
1202M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001203L: bluesmoke-devel@lists.sourceforge.net
1204W: bluesmoke.sourceforge.net
1205S: Maintained
1206
1207EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001208P: Doug Thompson
1209M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001210L: bluesmoke-devel@lists.sourceforge.net
1211W: bluesmoke.sourceforge.net
1212S: Maintained
1213
1214EDAC-R82600
1215P: Tim Small
1216M: tim@buttersideup.com
1217L: bluesmoke-devel@lists.sourceforge.net
1218W: bluesmoke.sourceforge.net
1219S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221EEPRO100 NETWORK DRIVER
1222P: Andrey V. Savochkin
1223M: saw@saw.sw.com.sg
1224S: Maintained
1225
Josh Triplett0bee8d22006-07-30 03:03:58 -07001226EFS FILESYSTEM
1227W: http://aeschi.ch.eu.org/efs/
1228S: Orphan
1229
Heiko J Schickfab97222006-09-22 15:22:22 -07001230EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1231P: Hoang-Nam Nguyen
1232M: hnguyen@de.ibm.com
1233P: Christoph Raisch
1234M: raisch@de.ibm.com
1235L: openib-general@openib.org
1236S: Supported
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238EMU10K1 SOUND DRIVER
1239P: James Courtier-Dutton
1240M: James@superbug.demon.co.uk
1241L: emu10k1-devel@lists.sourceforge.net
1242W: http://sourceforge.net/projects/emu10k1/
1243S: Maintained
1244
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001245EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001246P: James Smart
1247M: james.smart@emulex.com
1248L: linux-scsi@vger.kernel.org
1249W: http://sourceforge.net/projects/lpfcxxxx
1250S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252EPSON 1355 FRAMEBUFFER DRIVER
1253P: Christopher Hoover
1254M: ch@murgatroid.com, ch@hpl.hp.com
1255S: Maintained
1256
1257ETHEREXPRESS-16 NETWORK DRIVER
1258P: Philip Blundell
1259M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001260L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261S: Maintained
1262
1263ETHERNET BRIDGE
1264P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08001265M: shemminger@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266L: bridge@osdl.org
1267W: http://bridge.sourceforge.net/
1268S: Maintained
1269
1270ETHERTEAM 16I DRIVER
1271P: Mika Kuoppala
1272M: miku@iki.fi
1273S: Maintained
1274
1275EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001276L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277S: Maintained
1278
1279EXT3 FILE SYSTEM
1280P: Stephen Tweedie, Andrew Morton
1281M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001282L: linux-ext4@vger.kernel.org
1283S: Maintained
1284
1285EXT4 FILE SYSTEM
1286P: Stephen Tweedie, Andrew Morton
1287M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1288L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289S: Maintained
1290
Jean Delvaree53004e2006-01-09 23:26:14 +01001291F71805F HARDWARE MONITORING DRIVER
1292P: Jean Delvare
1293M: khali@linux-fr.org
1294L: lm-sensors@lm-sensors.org
1295S: Maintained
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297FARSYNC SYNCHRONOUS DRIVER
1298P: Kevin Curtis
1299M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300W: http://www.farsite.co.uk/
1301S: Supported
1302
1303FRAMEBUFFER LAYER
1304P: Antonino Daplas
1305M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001306L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307W: http://linux-fbdev.sourceforge.net/
1308S: Maintained
1309
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001310FREESCALE SOC FS_ENET DRIVER
1311P: Pantelis Antoniou
1312M: pantelis.antoniou@gmail.com
1313P: Vitaly Bordug
1314M: vbordug@ru.mvista.com
1315L: linuxppc-embedded@ozlabs.org
1316L: netdev@vger.kernel.org
1317S: Maintained
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319FILE LOCKING (flock() and fcntl()/lockf())
1320P: Matthew Wilcox
1321M: matthew@wil.cx
1322L: linux-fsdevel@vger.kernel.org
1323S: Maintained
1324
1325FILESYSTEMS (VFS and infrastructure)
1326P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001327M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328S: Maintained
1329
1330FIRMWARE LOADER (request_firmware)
1331L: linux-kernel@vger.kernel.org
1332S: Orphan
1333
1334FPU EMULATOR
1335P: Bill Metzenthen
1336M: billm@suburbia.net
1337W: http://suburbia.net/~billm/floating-point/emulator/
1338S: Maintained
1339
1340FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1341P: Mike McLagan
1342M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001343L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344S: Maintained
1345
1346FREEVXFS FILESYSTEM
1347P: Christoph Hellwig
1348M: hch@infradead.org
1349W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1350S: Maintained
1351
1352FUJITSU FR-V PORT
1353P: David Howells
1354M: dhowells@redhat.com
1355S: Maintained
1356
Miklos Szeredi04578f12005-09-09 13:10:22 -07001357FUSE: FILESYSTEM IN USERSPACE
1358P: Miklos Szeredi
1359M: miklos@szeredi.hu
1360L: fuse-devel@lists.sourceforge.net
1361W: http://fuse.sourceforge.net/
1362S: Maintained
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1365P: Rik Faith
1366M: faith@cs.unc.edu
1367L: linux-scsi@vger.kernel.org
1368S: Odd fixes (e.g., new signatures)
1369
1370GDT SCSI DISK ARRAY CONTROLLER DRIVER
1371P: Achim Leubner
1372M: achim_leubner@adaptec.com
1373L: linux-scsi@vger.kernel.org
1374W: http://www.icp-vortex.com/
1375S: Supported
1376
1377GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1378P: Krzysztof Halasa
1379M: khc@pm.waw.pl
1380W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1381S: Maintained
1382
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001383GFS2 FILE SYSTEM
1384P: Steven Whitehouse
1385M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001386L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001387W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001388T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1389T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001390S: Supported
1391
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001392GIGASET ISDN DRIVERS
1393P: Hansjoerg Lipp
1394M: hjlipp@web.de
1395P: Tilman Schmidt
1396M: tilman@imap.cc
1397L: gigaset307x-common@lists.sourceforge.net
1398W: http://gigaset307x.sourceforge.net/
1399S: Maintained
1400
Jean Delvare5b543962005-08-15 19:51:02 +02001401HARDWARE MONITORING
1402P: Jean Delvare
1403M: khali@linux-fr.org
1404L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001405W: http://www.lm-sensors.org/
1406T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001407S: Maintained
1408
Michael Buesch844dd052006-06-26 00:24:59 -07001409HARDWARE RANDOM NUMBER GENERATOR CORE
1410P: Michael Buesch
1411M: mb@bu3sch.de
1412S: Maintained
1413
Robert Love860e1d62005-08-31 23:57:59 -04001414HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1415P: Robert Love
1416M: rlove@rlove.org
1417M: linux-kernel@vger.kernel.org
1418W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1419S: Maintained
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421HARMONY SOUND DRIVER
1422P: Kyle McMartin
1423M: kyle@parisc-linux.org
1424W: http://www.parisc-linux.org/~kyle/harmony/
1425L: parisc-linux@lists.parisc-linux.org
1426S: Maintained
1427
1428HAYES ESP SERIAL DRIVER
1429P: Andrew J. Robinson
1430M: arobinso@nyx.net
1431L: linux-kernel@vger.kernel.org
1432W: http://www.nyx.net/~arobinso
1433S: Maintained
1434
1435HFS FILESYSTEM
1436P: Roman Zippel
1437M: zippel@linux-m68k.org
1438L: linux-kernel@vger.kernel.org
1439S: Maintained
1440
1441HGA FRAMEBUFFER DRIVER
1442P: Ferenc Bakonyi
1443M: fero@drama.obuda.kando.hu
1444L: linux-nvidia@lists.surfsouth.com
1445W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1446S: Maintained
1447
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001448HID CORE LAYER
1449P: Jiri Kosina
1450M: jkosina@suse.cz
1451L: linux-input@atrey.karlin.mff.cuni.cz
1452S: Maintained
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454HIGH-SPEED SCC DRIVER FOR AX.25
1455P: Klaus Kudielka
1456M: klaus.kudielka@ieee.org
1457L: linux-hams@vger.kernel.org
1458W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1459S: Maintained
1460
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001461HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1462P: HighPoint Linux Team
1463M: linux@highpoint-tech.com
1464W: http://www.highpoint-tech.com
1465S: Supported
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467HIPPI
1468P: Jes Sorensen
1469M: jes@trained-monkey.org
1470L: linux-hippi@sunsite.dk
1471S: Maintained
1472
1473HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1474P: Chirag Kantharia
1475M: chirag.kantharia@hp.com
1476L: iss_storagedev@hp.com
1477S: Maintained
1478
1479HEWLETT-PACKARD SMART2 RAID DRIVER
1480P: Chirag Kantharia
1481M: chirag.kantharia@hp.com
1482L: iss_storagedev@hp.com
1483S: Maintained
1484
1485HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1486P: Mike Miller
1487M: mike.miller@hp.com
1488L: iss_storagedev@hp.com
1489S: Supported
1490
Jouni Malinenff1d2762005-05-12 22:54:16 -04001491HOST AP DRIVER
1492P: Jouni Malinen
1493M: jkmaline@cc.hut.fi
1494L: hostap@shmoo.com
1495W: http://hostap.epitest.fi/
1496S: Maintained
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1499P: Jaroslav Kysela
1500M: perex@suse.cz
1501S: Maintained
1502
Bob Piccob9b03322005-11-07 00:59:19 -08001503HPET: High Precision Event Timers driver (hpet.c)
1504P: Clemens Ladisch
1505M: clemens@ladisch.de
1506S: Maintained
1507
1508HPET: i386
1509P: Venkatesh Pallipadi (Venki)
1510M: venkatesh.pallipadi@intel.com
1511S: Maintained
1512
1513HPET: x86_64
1514P: Andi Kleen and Vojtech Pavlik
1515M: ak@muc.de and vojtech@suse.cz
1516S: Maintained
1517
1518HPET: ACPI hpet.c
1519P: Bob Picco
1520M: bob.picco@hp.com
1521S: Maintained
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523HPFS FILESYSTEM
1524P: Mikulas Patocka
1525M: mikulas@artax.karlin.mff.cuni.cz
1526W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1527S: Maintained
1528
1529HUGETLB FILESYSTEM
1530P: William Irwin
1531M: wli@holomorphy.com
1532S: Maintained
1533
Jean Delvare5b543962005-08-15 19:51:02 +02001534I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535P: Jean Delvare
1536M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001537L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001538T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539S: Maintained
1540
1541I2O
1542P: Markus Lidel
1543M: markus.lidel@shadowconnect.com
1544W: http://i2o.shadowconnect.com/
1545S: Maintained
1546
1547i386 BOOT CODE
1548P: Riley H. Williams
1549M: Riley@Williams.Name
1550L: Linux-Kernel@vger.kernel.org
1551S: Maintained
1552
1553i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1554P: Dave Jones
1555M: davej@codemonkey.org.uk
1556P: H. Peter Anvin
1557M: hpa@zytor.com
1558S: Maintained
1559
1560i810 TCO TIMER WATCHDOG
1561P: Nils Faerber
1562M: nils@kernelconcepts.de
1563W: http://www.kernelconcepts.de/
1564S: Maintained
1565
1566IA64 (Itanium) PLATFORM
1567P: Tony Luck
1568M: tony.luck@intel.com
1569L: linux-ia64@vger.kernel.org
1570W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001571T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572S: Maintained
1573
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001574IBM ACPI EXTRAS DRIVER
1575P: Henrique de Moraes Holschuh
1576M: ibm-acpi@hmh.eng.br
1577L: ibm-acpi-devel@lists.sourceforge.net
1578W: http://ibm-acpi.sourceforge.net
1579W: http://thinkwiki.org/wiki/Ibm-acpi
1580T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1581S: Maintained
1582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001584P: Jes Sorensen
1585M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586L: linux-altix@sgi.com
1587L: linux-ia64@vger.kernel.org
1588W: http://www.sgi.com/altix
1589S: Maintained
1590
1591IBM MCA SCSI SUBSYSTEM DRIVER
1592P: Michael Lang
1593M: langa2@kph.uni-mainz.de
1594W: http://www.uni-mainz.de/~langm000/linux.html
1595S: Maintained
1596
1597IBM Power Linux RAID adapter
1598P: Brian King
1599M: brking@us.ibm.com
1600S: Supported
1601
1602IBM ServeRAID RAID DRIVER
1603P: Jack Hammer
1604P: Dave Jeffery
1605M: ipslinux@adaptec.com
1606W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1607S: Supported
1608
1609IDE DRIVER [GENERAL]
1610P: Bartlomiej Zolnierkiewicz
1611M: B.Zolnierkiewicz@elka.pw.edu.pl
1612L: linux-kernel@vger.kernel.org
1613L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001614T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615S: Maintained
1616
1617IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001618P: Alan Cox
1619M: alan@lxorguk.ukuu.org.uk
1620L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621S: Maintained
1622
1623IDE/ATAPI FLOPPY DRIVERS
1624P: Paul Bristow
1625M: Paul Bristow <paul@paulbristow.net>
1626W: http://paulbristow.net/linux/idefloppy.html
1627L: linux-kernel@vger.kernel.org
1628S: Maintained
1629
1630IDE/ATAPI TAPE DRIVERS
1631P: Gadi Oxman
1632M: Gadi Oxman <gadio@netvision.net.il>
1633L: linux-kernel@vger.kernel.org
1634S: Maintained
1635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636IEEE 1394 SUBSYSTEM
1637P: Ben Collins
1638M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001639P: Stefan Richter
1640M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641L: linux1394-devel@lists.sourceforge.net
1642W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001643T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644S: Maintained
1645
Stefan Richter87730d02006-09-16 12:24:00 +02001646IEEE 1394 IPV4 DRIVER (eth1394)
1647P: Stefan Richter
1648M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001650S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652IEEE 1394 PCILYNX DRIVER
1653P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001654M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001655P: Stefan Richter
1656M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001658S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660IEEE 1394 RAW I/O DRIVER
1661P: Ben Collins
1662M: bcollins@debian.org
1663P: Dan Dennedy
1664M: dan@dennedy.org
1665L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001666S: Maintained
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668IMS TWINTURBO FRAMEBUFFER DRIVER
1669P: Paul Mundt
1670M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001671L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672S: Maintained
1673
1674INFINIBAND SUBSYSTEM
1675P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001676M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677P: Sean Hefty
1678M: mshefty@ichips.intel.com
1679P: Hal Rosenstock
1680M: halr@voltaire.com
1681L: openib-general@openib.org
1682W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001683T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684S: Supported
1685
1686INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001687P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001688M: dmitry.torokhov@gmail.com
1689M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690L: linux-input@atrey.karlin.mff.cuni.cz
1691L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001692T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693S: Maintained
1694
Robert Lovec9f04f52005-07-15 12:21:07 -04001695INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001696P: John McCutchan
1697M: ttb@tentacle.dhs.org
1698P: Robert Love
1699M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001700L: linux-kernel@vger.kernel.org
1701S: Maintained
1702
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001703INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001704P: Sylvain Meyer
1705M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001706L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001707S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001710P: Antonino Daplas
1711M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001712L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001713S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1716P: Ingo Molnar
1717M: mingo@redhat.com
1718S: Maintained
1719
1720INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1721P: Jeff Garzik
1722M: jgarzik@pobox.com
1723W: http://sourceforge.net/projects/gkernel/
1724S: Maintained
1725
1726INTEL IA32 MICROCODE UPDATE SUPPORT
1727P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001728M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729S: Maintained
1730
Michael Buesch844dd052006-06-26 00:24:59 -07001731INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1732P: Deepak Saxena
1733M: dsaxena@plexity.net
1734S: Maintained
1735
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001736INTEL IXP2000 ETHERNET DRIVER
1737P: Lennert Buytenhek
1738M: kernel@wantstofly.org
1739L: netdev@vger.kernel.org
1740S: Maintained
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742INTEL PRO/100 ETHERNET SUPPORT
1743P: John Ronciak
1744M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745P: Jesse Brandeburg
1746M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001747P: Jeff Kirsher
1748M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001749P: Auke Kok
1750M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751W: http://sourceforge.net/projects/e1000/
1752S: Supported
1753
1754INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1755P: Jeb Cramer
1756M: cramerj@intel.com
1757P: John Ronciak
1758M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001759P: Jesse Brandeburg
1760M: jesse.brandeburg@intel.com
1761P: Jeff Kirsher
1762M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001763P: Auke Kok
1764M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765W: http://sourceforge.net/projects/e1000/
1766S: Supported
1767
1768INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001769P: Jeff Kirsher
1770M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771P: Ayyappan Veeraiyan
1772M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773P: John Ronciak
1774M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001775P: Jesse Brandeburg
1776M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001777P: Auke Kok
1778M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779W: http://sourceforge.net/projects/e1000/
1780S: Supported
1781
James Ketrenos826d2ab2005-11-07 18:56:59 -06001782INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1783P: Yi Zhu
1784M: yi.zhu@intel.com
1785P: James Ketrenos
1786M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001787L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001788L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1789W: http://ipw2100.sourceforge.net
1790S: Supported
1791
1792INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1793P: Yi Zhu
1794M: yi.zhu@intel.com
1795P: James Ketrenos
1796M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001797L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001798L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1799W: http://ipw2200.sourceforge.net
1800S: Supported
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802IOC3 DRIVER
1803P: Ralf Baechle
1804M: ralf@linux-mips.org
1805L: linux-mips@linux-mips.org
1806S: Maintained
1807
1808IP MASQUERADING:
1809P: Juanjo Ciarlante
1810M: jjciarla@raiz.uncu.edu.ar
1811S: Maintained
1812
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001813IPATH DRIVER:
1814P: Bryan O'Sullivan
1815M: support@pathscale.com
1816L: openib-general@openib.org
1817S: Supported
1818
Corey Minyard4409ebe2006-04-20 02:43:12 -07001819IPMI SUBSYSTEM
1820P: Corey Minyard
1821M: minyard@acm.org
1822L: openipmi-developer@lists.sourceforge.net
1823W: http://openipmi.sourceforge.net/
1824S: Supported
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826IPX NETWORK LAYER
1827P: Arnaldo Carvalho de Melo
1828M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001829L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830S: Maintained
1831
1832IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001833P: Samuel Ortiz
1834M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001835L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001837S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839ISAPNP
1840P: Jaroslav Kysela
1841M: perex@suse.cz
1842S: Maintained
1843
1844ISDN SUBSYSTEM
1845P: Karsten Keil
1846M: kkeil@suse.de
1847P: Kai Germaschewski
1848M: kai.germaschewski@gmx.de
1849L: isdn4linux@listserv.isdn4linux.de
1850W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001851T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852S: Maintained
1853
1854ISDN SUBSYSTEM (Eicon active card driver)
1855P: Armin Schindler
1856M: mac@melware.de
1857L: isdn4linux@listserv.isdn4linux.de
1858W: http://www.melware.de
1859S: Maintained
1860
1861JOURNALLING FLASH FILE SYSTEM (JFFS)
1862P: Axis Communications AB
1863M: jffs-dev@axis.com
1864L: jffs-dev@axis.com
1865W: http://www.developer.axis.com/software/jffs/
1866S: Maintained
1867
1868JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1869P: David Woodhouse
1870M: dwmw2@infradead.org
1871L: jffs-dev@axis.com
1872W: http://sources.redhat.com/jffs2/
1873S: Maintained
1874
1875JFS FILESYSTEM
1876P: Dave Kleikamp
1877M: shaggy@austin.ibm.com
1878L: jfs-discussion@lists.sourceforge.net
1879W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001880T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881S: Supported
1882
Josh Triplettde456d32006-07-30 03:04:00 -07001883JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001884P: Stephen Tweedie, Andrew Morton
1885M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001886L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001887S: Maintained
1888
Rudolf Marek4660cb32006-10-08 22:01:26 +02001889K8TEMP HARDWARE MONITORING DRIVER
1890P: Rudolf Marek
1891M: r.marek@assembler.cz
1892L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893S: Maintained
1894
1895KCONFIG
1896P: Roman Zippel
1897M: zippel@linux-m68k.org
1898L: kbuild-devel@lists.sourceforge.net
1899S: Maintained
1900
Vivek Goyalea6c2082006-05-20 14:59:55 -07001901KDUMP
1902P: Vivek Goyal
1903M: vgoyal@in.ibm.com
1904P: Haren Myneni
1905M: hbabu@us.ibm.com
1906L: fastboot@lists.osdl.org
1907L: linux-kernel@vger.kernel.org
1908W: http://lse.sourceforge.net/kdump/
1909S: Maintained
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911KERNEL AUTOMOUNTER (AUTOFS)
1912P: H. Peter Anvin
1913M: hpa@zytor.com
1914L: autofs@linux.kernel.org
1915S: Odd Fixes
1916
1917KERNEL AUTOMOUNTER v4 (AUTOFS4)
1918P: Ian Kent
1919M: raven@themaw.net
1920L: autofs@linux.kernel.org
1921S: Maintained
1922
1923KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1924P: Kai Germaschewski
1925M: kai@germaschewski.name
1926P: Sam Ravnborg
1927M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001928T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929S: Maintained
1930
1931KERNEL JANITORS
1932P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001933L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935S: Maintained
1936
1937KERNEL NFSD
1938P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001939M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940L: nfs@lists.sourceforge.net
1941W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001942S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Avi Kivity426d62e2006-12-13 00:34:03 -08001944KERNEL VIRTUAL MACHINE (KVM)
1945P: Avi Kivity
1946M: avi@qumranet.com
1947L: kvm-devel@lists.sourceforge.net
1948W: kvm.sourceforge.net
1949S: Supported
1950
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001951KEXEC
1952P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001953M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001954W: http://www.xmission.com/~ebiederm/files/kexec/
1955L: linux-kernel@vger.kernel.org
1956L: fastboot@osdl.org
1957S: Maintained
1958
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001959KPROBES
1960P: Prasanna S Panchamukhi
1961M: prasanna@in.ibm.com
1962P: Ananth N Mavinakayanahalli
1963M: ananth@in.ibm.com
1964P: Anil S Keshavamurthy
1965M: anil.s.keshavamurthy@intel.com
1966P: David S. Miller
1967M: davem@davemloft.net
1968L: linux-kernel@vger.kernel.org
1969S: Maintained
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001973S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975LASI 53c700 driver for PARISC
1976P: James E.J. Bottomley
1977M: James.Bottomley@HansenPartnership.com
1978L: linux-scsi@vger.kernel.org
1979S: Maintained
1980
Richard Purdie263de9b2006-05-15 09:44:16 -07001981LED SUBSYSTEM
1982P: Richard Purdie
1983M: rpurdie@rpsys.net
1984S: Maintained
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986LEGO USB Tower driver
1987P: Juergen Stuber
1988M: starblue@users.sourceforge.net
1989L: legousb-devel@lists.sourceforge.net
1990W: http://legousb.sourceforge.net/
1991S: Maintained
1992
1993LINUX FOR IBM pSERIES (RS/6000)
1994P: Paul Mackerras
1995M: paulus@au.ibm.com
1996W: http://www.ibm.com/linux/ltc/projects/ppc
1997S: Supported
1998
1999LINUX FOR NCR VOYAGER
2000P: James Bottomley
2001M: James.Bottomley@HansenPartnership.com
2002W: http://www.hansenpartnership.com/voyager
2003S: Maintained
2004
2005LINUX FOR POWERPC
2006P: Paul Mackerras
2007M: paulus@samba.org
2008W: http://www.penguinppc.org/
2009L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002010T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011S: Supported
2012
2013LINUX FOR POWER MACINTOSH
2014P: Benjamin Herrenschmidt
2015M: benh@kernel.crashing.org
2016W: http://www.penguinppc.org/
2017L: linuxppc-dev@ozlabs.org
2018S: Maintained
2019
2020LINUX FOR POWERPC EMBEDDED MPC52XX
2021P: Sylvain Munaut
2022M: tnt@246tNt.com
2023W: http://www.246tNt.com/mpc52xx/
2024W: http://www.penguinppc.org/
2025L: linuxppc-dev@ozlabs.org
2026L: linuxppc-embedded@ozlabs.org
2027S: Maintained
2028
2029LINUX FOR POWERPC EMBEDDED PPC4XX
2030P: Matt Porter
2031M: mporter@kernel.crashing.org
2032W: http://www.penguinppc.org/
2033L: linuxppc-embedded@ozlabs.org
2034S: Maintained
2035
Tom Rinie93adf12005-07-26 12:49:53 -07002036LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037P: Tom Rini
2038M: trini@kernel.crashing.org
2039W: http://www.penguinppc.org/
2040L: linuxppc-embedded@ozlabs.org
2041S: Maintained
2042
Tom Rinie93adf12005-07-26 12:49:53 -07002043LINUX FOR POWERPC EMBEDDED PPC8XX
2044P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002045M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002046W: http://www.penguinppc.org/
2047L: linuxppc-embedded@ozlabs.org
2048S: Maintained
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002051P: Kumar Gala
2052M: galak@kernel.crashing.org
2053W: http://www.penguinppc.org/
2054L: linuxppc-embedded@ozlabs.org
2055S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Olof Johanssonab06ff32006-09-06 14:44:54 -05002057LINUX FOR POWERPC PA SEMI PWRFICIENT
2058P: Olof Johansson
2059M: olof@lixom.net
2060W: http://www.pasemi.com/
2061L: linuxppc-dev@ozlabs.org
2062S: Supported
2063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064LLC (802.2)
2065P: Arnaldo Carvalho de Melo
2066M: acme@conectiva.com.br
2067S: Maintained
2068
2069LINUX FOR 64BIT POWERPC
2070P: Paul Mackerras
2071M: paulus@samba.org
2072M: paulus@au.ibm.com
2073P: Anton Blanchard
2074M: anton@samba.org
2075M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002076W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002077L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078S: Supported
2079
2080LINUX SECURITY MODULE (LSM) FRAMEWORK
2081P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002082M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002083L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002085T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086S: Supported
2087
2088LM83 HARDWARE MONITOR DRIVER
2089P: Jean Delvare
2090M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002091L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092S: Maintained
2093
2094LM90 HARDWARE MONITOR DRIVER
2095P: Jean Delvare
2096M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002097L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098S: Maintained
2099
2100LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2101P: Richard Russon (FlatCap)
2102M: ldm@flatcap.org
2103L: ldm-devel@lists.sourceforge.net
2104W: http://ldm.sourceforge.net
2105S: Maintained
2106
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002107LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2108P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002109M: Eric.Moore@lsi.com
2110M: support@lsi.com
2111L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002112L: linux-scsi@vger.kernel.org
2113W: http://www.lsilogic.com/support
2114S: Supported
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2117P: Matthew Wilcox
2118M: matthew@wil.cx
2119L: linux-scsi@vger.kernel.org
2120S: Maintained
2121
2122M68K ARCHITECTURE
2123P: Geert Uytterhoeven
2124M: geert@linux-m68k.org
2125P: Roman Zippel
2126M: zippel@linux-m68k.org
2127L: linux-m68k@lists.linux-m68k.org
2128W: http://www.linux-m68k.org/
2129W: http://linux-m68k-cvs.ubb.ca/
2130S: Maintained
2131
2132M68K ON APPLE MACINTOSH
2133P: Joshua Thompson
2134M: funaho@jurai.org
2135W: http://www.mac.linux-m68k.org/
2136L: linux-mac68k@mac.linux-m68k.org
2137S: Maintained
2138
2139M68K ON HP9000/300
2140P: Philip Blundell
2141M: philb@gnu.org
2142W: http://www.tazenda.demon.co.uk/phil/linux-hp
2143S: Maintained
2144
2145MARVELL YUKON / SYSKONNECT DRIVER
2146P: Mirko Lindner
2147M: mlindner@syskonnect.de
2148P: Ralph Roesler
2149M: rroesler@syskonnect.de
2150W: http://www.syskonnect.com
2151S: Supported
2152
Michael Kerriskfaf16682005-07-31 22:34:47 -07002153MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002154P: Michael Kerrisk
2155M: mtk-manpages@gmx.net
2156W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2157S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002158
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002159MARVELL MV643XX ETHERNET DRIVER
2160P: Dale Farnsworth
2161M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002163M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002164L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002165S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167MATROX FRAMEBUFFER DRIVER
2168P: Petr Vandrovec
2169M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002170L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171S: Maintained
2172
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002173MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002174P: Neela Syam Kolli
2175M: Neela.Kolli@engenio.com
2176S: linux-scsi@vger.kernel.org
2177W: http://megaraid.lsilogic.com
2178S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002179
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002180MEMORY MANAGEMENT
2181L: linux-mm@kvack.org
2182L: linux-kernel@vger.kernel.org
2183W: http://www.linux-mm.org
2184S: Maintained
2185
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002186MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187P: David Woodhouse
2188M: dwmw2@infradead.org
2189W: http://www.linux-mtd.infradead.org/
2190L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002191T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192S: Maintained
2193
2194MICROTEK X6 SCANNER
2195P: Oliver Neukum
2196M: oliver@neukum.name
2197S: Maintained
2198
2199MIPS
2200P: Ralf Baechle
2201M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002202W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002204T: git www.linux-mips.org:/pub/scm/linux.git
2205S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207MISCELLANEOUS MCA-SUPPORT
2208P: James Bottomley
2209M: jejb@steeleye.com
2210L: linux-kernel@vger.kernel.org
2211S: Maintained
2212
2213MODULE SUPPORT
2214P: Rusty Russell
2215M: rusty@rustcorp.com.au
2216L: linux-kernel@vger.kernel.org
2217S: Maintained
2218
2219MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2220P: Stelian Pop
2221M: stelian@popies.net
2222W: http://popies.net/meye/
2223S: Maintained
2224
2225MOUSE AND MISC DEVICES [GENERAL]
2226P: Alessandro Rubini
2227M: rubini@ipvvis.unipv.it
2228L: linux-kernel@vger.kernel.org
2229S: Maintained
2230
Jiri Slabyd7354102006-12-08 02:38:35 -08002231MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2232P: Jiri Slaby
2233M: jirislaby@gmail.com
2234L: linux-kernel@vger.kernel.org
2235S: Maintained
2236
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002237MSI LAPTOP SUPPORT
2238P: Lennart Poettering
2239M: mzxreary@0pointer.de
2240L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2241W: http://0pointer.de/lennart/tchibo.html
2242S: Maintained
2243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244MTRR AND SIMILAR SUPPORT [i386]
2245P: Richard Gooch
2246M: rgooch@atnf.csiro.au
2247L: linux-kernel@vger.kernel.org
2248W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2249S: Maintained
2250
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002251MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2252P: Pierre Ossman
2253M: drzeus-mmc@drzeus.cx
2254L: linux-kernel@vger.kernel.org
2255S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257MULTISOUND SOUND DRIVER
2258P: Andrew Veliath
2259M: andrewtv@usa.net
2260S: Maintained
2261
Jiri Slabyd7354102006-12-08 02:38:35 -08002262MULTITECH MULTIPORT CARD (ISICOM)
2263P: Jiri Slaby
2264M: jirislaby@gmail.com
2265L: linux-kernel@vger.kernel.org
2266S: Maintained
2267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268NATSEMI ETHERNET DRIVER (DP8381x)
2269P: Tim Hockin
2270M: thockin@hockin.org
2271S: Maintained
2272
2273NCP FILESYSTEM
2274P: Petr Vandrovec
2275M: vandrove@vc.cvut.cz
2276L: linware@sh.cvut.cz
2277S: Maintained
2278
2279NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2280P: James E.J. Bottomley
2281M: James.Bottomley@HansenPartnership.com
2282L: linux-scsi@vger.kernel.org
2283S: Maintained
2284
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002285NETEM NETWORK EMULATOR
2286P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002287M: shemminger@linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002288L: netem@osdl.org
2289S: Maintained
2290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291NETFILTER/IPTABLES/IPCHAINS
2292P: Rusty Russell
2293P: Marc Boucher
2294P: James Morris
2295P: Harald Welte
2296P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002297P: Patrick McHardy
2298M: kaber@trash.net
2299L: netfilter-devel@lists.netfilter.org
2300L: netfilter@lists.netfilter.org
2301L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302W: http://www.netfilter.org/
2303W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304S: Supported
2305
Paul Moore4cc67732006-09-25 15:57:13 -07002306NETLABEL
2307P: Paul Moore
2308M: paul.moore@hp.com
2309W: http://netlabel.sf.net
2310L: netdev@vger.kernel.org
2311S: Supported
2312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313NETROM NETWORK LAYER
2314P: Ralf Baechle
2315M: ralf@linux-mips.org
2316L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002317W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318S: Maintained
2319
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002320NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321P: Paul Clements
2322M: Paul.Clements@steeleye.com
2323S: Maintained
2324
2325NETWORK DEVICE DRIVERS
2326P: Andrew Morton
2327M: akpm@osdl.org
2328P: Jeff Garzik
2329M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002330L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002331T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332S: Maintained
2333
2334NETWORKING [GENERAL]
2335P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002336M: netdev@vger.kernel.org
2337L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002338W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339S: Maintained
2340
2341NETWORKING [IPv4/IPv6]
2342P: David S. Miller
2343M: davem@davemloft.net
2344P: Alexey Kuznetsov
2345M: kuznet@ms2.inr.ac.ru
2346P: Pekka Savola (ipv6)
2347M: pekkas@netcore.fi
2348P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002349M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350P: Hideaki YOSHIFUJI
2351M: yoshfuji@linux-ipv6.org
2352P: Patrick McHardy
2353M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002354L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002355T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356S: Maintained
2357
John W. Linville29f8f632006-01-18 14:52:48 -08002358NETWORKING [WIRELESS]
2359P: John W. Linville
2360M: linville@tuxdriver.com
2361L: netdev@vger.kernel.org
2362T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2363S: Maintained
2364
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002365NETXEN (1/10) GbE SUPPORT
2366P: Amit S. Kale
2367M: amitkale@netxen.com
2368L: netdev@vger.kernel.org
2369W: http://www.netxen.com
2370S: Supported
2371
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372IPVS
2373P: Wensong Zhang
2374M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002375P: Simon Horman
2376M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377P: Julian Anastasov
2378M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002379L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380S: Maintained
2381
2382NFS CLIENT
2383P: Trond Myklebust
2384M: trond.myklebust@fys.uio.no
2385L: linux-kernel@vger.kernel.org
2386S: Maintained
2387
2388NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002389P: Jan-Pascal van Best
2390M: janpascal@vanbest.org
2391P: Andreas Mohr
2392M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002393L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394S: Maintained
2395
2396NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2397P: YOKOTA Hiroshi
2398M: yokota@netlab.is.tsukuba.ac.jp
2399W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2400S: Maintained
2401
2402NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2403P: GOTO Masanori
2404M: gotom@debian.or.jp
2405P: YOKOTA Hiroshi
2406M: yokota@netlab.is.tsukuba.ac.jp
2407W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2408S: Maintained
2409
2410NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2411P: Eberhard Moenkeberg
2412M: emoenke@gwdg.de
2413L: linux-kernel@vger.kernel.org
2414S: Maintained
2415
2416NTFS FILESYSTEM
2417P: Anton Altaparmakov
2418M: aia21@cantab.net
2419L: linux-ntfs-dev@lists.sourceforge.net
2420L: linux-kernel@vger.kernel.org
2421W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002422T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423S: Maintained
2424
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002425NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002426P: Antonino Daplas
2427M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002428L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002429S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002431OPENCORES I2C BUS DRIVER
2432P: Peter Korsgaard
2433M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002434L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002435S: Maintained
2436
Mark Fashehccd979b2005-12-15 14:31:24 -08002437ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2438P: Mark Fasheh
2439M: mark.fasheh@oracle.com
2440P: Kurt Hackel
2441M: kurt.hackel@oracle.com
2442L: ocfs2-devel@oss.oracle.com
2443W: http://oss.oracle.com/projects/ocfs2/
2444S: Supported
2445
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446OLYMPIC NETWORK DRIVER
2447P: Peter De Shrijver
2448M: p2@ace.ulyssis.student.kuleuven.ac.be
2449P: Mike Phillips
2450M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002451L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452L: linux-tr@linuxtr.net
2453W: http://www.linuxtr.net
2454S: Maintained
2455
Harald Weltec1986ee2005-11-13 16:06:29 -08002456OMNIKEY CARDMAN 4000 DRIVER
2457P: Harald Welte
2458M: laforge@gnumonks.org
2459S: Maintained
2460
Harald Welte77c44ab2005-11-13 16:06:26 -08002461OMNIKEY CARDMAN 4040 DRIVER
2462P: Harald Welte
2463M: laforge@gnumonks.org
2464S: Maintained
2465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466ONSTREAM SCSI TAPE DRIVER
2467P: Willem Riede
2468M: osst@riede.org
2469L: osst-users@lists.sourceforge.net
2470L: linux-scsi@vger.kernel.org
2471S: Maintained
2472
2473OPL3-SA2, SA3, and SAx DRIVER
2474P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002475M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476L: linux-sound@vger.kernel.org
2477S: Maintained
2478
2479OPROFILE
2480P: Philippe Elie
2481M: phil.el@wanadoo.fr
2482L: oprofile-list@lists.sf.net
2483S: Maintained
2484
2485ORINOCO DRIVER
2486P: Pavel Roskin
2487M: proski@gnu.org
2488P: David Gibson
2489M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002490L: orinoco-users@lists.sourceforge.net
2491L: orinoco-devel@lists.sourceforge.net
2492W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493S: Maintained
2494
2495PARALLEL PORT SUPPORT
2496P: Phil Blundell
2497M: philb@gnu.org
2498P: Tim Waugh
2499M: tim@cyberelk.net
2500P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501P: Andrea Arcangeli
2502M: andrea@suse.de
2503L: linux-parport@lists.infradead.org
2504W: http://people.redhat.com/twaugh/parport/
2505S: Maintained
2506
2507PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2508P: Tim Waugh
2509M: tim@cyberelk.net
2510L: linux-parport@lists.infradead.org
2511W: http://www.torque.net/linux-pp.html
2512S: Maintained
2513
2514PARISC ARCHITECTURE
2515P: Matthew Wilcox
2516M: matthew@wil.cx
2517P: Grant Grundler
2518M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002519P: Kyle McMartin
2520M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521L: parisc-linux@parisc-linux.org
2522W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002523T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2524T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525S: Maintained
2526
Jim Cromie1662d322006-10-06 00:43:59 -07002527PC87360 HARDWARE MONITORING DRIVER
2528P: Jim Cromie
2529M: jim.cromie@gmail.com
2530L: lm-sensors@lm-sensors.org
2531S: Maintained
2532
2533PC8736x GPIO DRIVER
2534P: Jim Cromie
2535M: jim.cromie@gmail.com
2536S: Maintained
2537
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002538PCI ERROR RECOVERY
2539P: Linas Vepstas
2540M: linas@austin.ibm.com
2541L: linux-kernel@vger.kernel.org
2542L: linux-pci@atrey.karlin.mff.cuni.cz
2543S: Supported
2544
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2546P: Thomas Sailer
2547M: sailer@ife.ee.ethz.ch
2548L: linux-sound@vger.kernel.org
2549W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2550S: Maintained
2551
2552PCI SUBSYSTEM
2553P: Greg Kroah-Hartman
2554M: gregkh@suse.de
2555L: linux-kernel@vger.kernel.org
2556L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002557T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558S: Supported
2559
2560PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002561P: Kristen Carlson Accardi
2562M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563S: Supported
2564
2565PCI HOTPLUG COMPAQ DRIVER
2566P: Greg Kroah-Hartman
2567M: greg@kroah.com
2568S: Maintained
2569
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002570PCIE HOTPLUG DRIVER
2571P: Kristen Carlson Accardi
2572M: kristen.c.accardi@intel.com
2573L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002574S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002577P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002578L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002580T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002581S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
2583PCNET32 NETWORK DRIVER
2584P: Thomas Bogendörfer
2585M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002586L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587S: Maintained
2588
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002589PER-TASK DELAY ACCOUNTING
2590P: Shailabh Nagar
2591M: nagar@watson.ibm.com
2592L: linux-kernel@vger.kernel.org
2593S: Maintained
2594
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002595PERSONALITY HANDLING
2596P: Christoph Hellwig
2597M: hch@infradead.org
2598L: linux-abi-devel@lists.sourceforge.net
2599S: Maintained
2600
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601PHRAM MTD DRIVER
2602P: Jörn Engel
2603M: joern@wh.fh-wedel.de
2604L: linux-mtd@lists.infradead.org
2605S: Maintained
2606
Peter Osterlund249a6772005-09-27 21:45:30 -07002607PKTCDVD DRIVER
2608P: Peter Osterlund
2609M: petero2@telia.com
2610L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002611S: Maintained
2612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613POSIX CLOCKS and TIMERS
2614P: George Anzinger
2615M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002616L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617S: Supported
2618
Eugene Surovegin24682972005-10-14 03:00:53 -07002619POWERPC 4xx EMAC DRIVER
2620P: Eugene Surovegin
2621M: ebs@ebshome.net
2622W: http://kernel.ebshome.net/emac/
2623L: linuxppc-embedded@ozlabs.org
2624L: netdev@vger.kernel.org
2625S: Maintained
2626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627PNP SUPPORT
2628P: Adam Belay
2629M: ambx1@neo.rr.com
2630S: Maintained
2631
Vitaly Wool999445d2007-01-04 13:07:03 +01002632PNXxxxx I2C DRIVER
2633P: Vitaly Wool
2634M: vitalywool@gmail.com
2635L: i2c@lm-sensors.org
2636S: Maintained
2637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638PPP PROTOCOL DRIVERS AND COMPRESSORS
2639P: Paul Mackerras
2640M: paulus@samba.org
2641L: linux-ppp@vger.kernel.org
2642S: Maintained
2643
2644PPP OVER ATM (RFC 2364)
2645P: Mitchell Blank Jr
2646M: mitch@sfgoth.com
2647S: Maintained
2648
2649PPP OVER ETHERNET
2650P: Michal Ostrowski
2651M: mostrows@speakeasy.net
2652S: Maintained
2653
2654PREEMPTIBLE KERNEL
2655P: Robert Love
2656M: rml@tech9.net
2657L: linux-kernel@vger.kernel.org
2658L: kpreempt-tech@lists.sourceforge.net
2659W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2660S: Supported
2661
2662PRISM54 WIRELESS DRIVER
2663P: Prism54 Development Team
2664M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002665L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666W: http://prism54.org
2667S: Maintained
2668
2669PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2670P: Peter Denison
2671M: promise@pnd-pc.demon.co.uk
2672W: http://www.pnd-pc.demon.co.uk/promise/
2673S: Maintained
2674
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002675PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2676P: Mikael Pettersson
2677M: mikpe@it.uu.se
2678L: linux-ide@vger.kernel.org
2679S: Maintained
2680
Geoff Levandf58a9d12006-11-23 00:46:51 +01002681PS3 PLATFORM SUPPORT
2682P: Geoff Levand
2683M: geoffrey.levand@am.sony.com
2684L: linuxppc-dev@ozlabs.org
2685L: cbe-oss-dev@ozlabs.org
2686S: Supported
2687
Michael Krufky83202042006-07-03 00:24:18 -07002688PVRUSB2 VIDEO4LINUX DRIVER
2689P: Mike Isely
2690M: isely@pobox.com
2691L: pvrusb2@isely.net
2692L: video4linux-list@redhat.com
2693W: http://www.isely.net/pvrusb2/
2694S: Maintained
2695
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696PXA2xx SUPPORT
2697P: Nicolas Pitre
2698M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002699L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700S: Maintained
2701
2702QLOGIC QLA2XXX FC-SCSI DRIVER
2703P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002704M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705L: linux-scsi@vger.kernel.org
2706S: Supported
2707
Ron Mercer5a4faa82006-07-25 00:40:21 -07002708QLOGIC QLA3XXX NETWORK DRIVER
2709P: Ron Mercer
2710M: linux-driver@qlogic.com
2711L: netdev@vger.kernel.org
2712S: Supported
2713
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714QNX4 FILESYSTEM
2715P: Anders Larsen
2716M: al@alarsen.net
2717L: linux-kernel@vger.kernel.org
2718W: http://www.alarsen.net/linux/qnx4fs/
2719S: Maintained
2720
2721RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002722P: Benjamin Herrenschmidt
2723M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002724L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725S: Maintained
2726
2727RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002728P: Paul Mackerras
2729M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002730L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731S: Maintained
2732
2733RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2734P: Corey Thomas
2735M: corey@world.std.com
2736L: linux-kernel@vger.kernel.org
2737S: Maintained
2738
Matt Mackall9e95ce22005-04-16 15:25:56 -07002739RANDOM NUMBER DRIVER
2740P: Matt Mackall
2741M: mpm@selenic.com
2742S: Maintained
2743
Matt Porter394b7012005-11-07 01:00:15 -08002744RAPIDIO SUBSYSTEM
2745P: Matt Porter
2746M: mporter@kernel.crashing.org
2747L: linux-kernel@vger.kernel.org
2748S: Maintained
2749
Josh Triplett595182b2006-10-04 02:17:21 -07002750READ-COPY UPDATE (RCU)
2751P: Dipankar Sarma
2752M: dipankar@in.ibm.com
2753W: http://www.rdrop.com/users/paulmck/rclock/
2754L: linux-kernel@vger.kernel.org
2755S: Supported
2756
2757RCUTORTURE MODULE
2758P: Josh Triplett
2759M: josh@freedesktop.org
2760L: linux-kernel@vger.kernel.org
2761S: Maintained
2762
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763REAL TIME CLOCK DRIVER
2764P: Paul Gortmaker
2765M: p_gortmaker@yahoo.com
2766L: linux-kernel@vger.kernel.org
2767S: Maintained
2768
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002769REAL TIME CLOCK (RTC) SUBSYSTEM
2770P: Alessandro Zummo
2771M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002772L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002773S: Maintained
2774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775REISERFS FILE SYSTEM
2776P: Hans Reiser
2777M: reiserfs-dev@namesys.com
2778L: reiserfs-list@namesys.com
2779W: http://www.namesys.com
2780S: Supported
2781
2782ROCKETPORT DRIVER
2783P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784W: http://www.comtrol.com
2785S: Maintained
2786
2787ROSE NETWORK LAYER
2788P: Ralf Baechle
2789M: ralf@linux-mips.org
2790L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002791W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792S: Maintained
2793
2794RISCOM8 DRIVER
2795S: Orphan
2796
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002797S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002798P: Antonino Daplas
2799M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002800L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002801S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002802
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803S390
2804P: Martin Schwidefsky
2805M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002806P: Heiko Carstens
2807M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808M: linux390@de.ibm.com
2809L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002810W: http://www.ibm.com/developerworks/linux/linux390/
2811S: Supported
2812
2813S390 NETWORK DRIVERS
2814P: Frank Pavlic
2815M: fpavlic@de.ibm.com
2816M: linux390@de.ibm.com
2817L: linux-390@vm.marist.edu
2818W: http://www.ibm.com/developerworks/linux/linux390/
2819S: Supported
2820
2821S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002822P: Swen Schillig
2823M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002824M: linux390@de.ibm.com
2825L: linux-390@vm.marist.edu
2826W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827S: Supported
2828
2829SAA7146 VIDEO4LINUX-2 DRIVER
2830P: Michael Hunold
2831M: michael@mihu.de
2832W: http://www.mihu.de/linux/saa7146
2833S: Maintained
2834
2835SBPCD CDROM DRIVER
2836P: Eberhard Moenkeberg
2837M: emoenke@gwdg.de
2838L: linux-kernel@vger.kernel.org
2839S: Maintained
2840
2841SC1200 WDT DRIVER
2842P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002843M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844S: Maintained
2845
2846SCHEDULER
2847P: Ingo Molnar
2848M: mingo@elte.hu
2849P: Robert Love [the preemptible kernel bits]
2850M: rml@tech9.net
2851L: linux-kernel@vger.kernel.org
2852S: Maintained
2853
2854SCSI CDROM DRIVER
2855P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002856M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857L: linux-scsi@vger.kernel.org
2858W: http://www.kernel.dk
2859S: Maintained
2860
2861SCSI SG DRIVER
2862P: Doug Gilbert
2863M: dgilbert@interlog.com
2864L: linux-scsi@vger.kernel.org
2865W: http://www.torque.net/sg
2866S: Maintained
2867
2868SCSI SUBSYSTEM
2869P: James E.J. Bottomley
2870M: James.Bottomley@SteelEye.com
2871L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002872T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873S: Maintained
2874
2875SCSI TAPE DRIVER
2876P: Kai Mäkisara
2877M: Kai.Makisara@kolumbus.fi
2878L: linux-scsi@vger.kernel.org
2879S: Maintained
2880
2881SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002882P: Sridhar Samudrala
2883M: sri@us.ibm.com
2884L: lksctp-developers@lists.sourceforge.net
2885S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
2887SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002888P: Jim Cromie
2889M: jim.cromie@gmail.com
2890S: Odd Fixes
2891
2892SCx200 GPIO DRIVER
2893P: Jim Cromie
2894M: jim.cromie@gmail.com
2895S: Maintained
2896
2897SCx200 HRT CLOCKSOURCE DRIVER
2898P: Jim Cromie
2899M: jim.cromie@gmail.com
2900S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
2902SECURITY CONTACT
2903P: Security Officers
2904M: security@kernel.org
2905S: Supported
2906
2907SELINUX SECURITY MODULE
2908P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002909M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002911M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912L: linux-kernel@vger.kernel.org (kernel issues)
2913L: selinux@tycho.nsa.gov (general discussion)
2914W: http://www.nsa.gov/selinux
2915S: Supported
2916
2917SERIAL ATA (SATA) SUBSYSTEM:
2918P: Jeff Garzik
2919M: jgarzik@pobox.com
2920L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002921T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922S: Supported
2923
2924SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2925P: Pat Gefre
2926M: pfg@sgi.com
2927L: linux-ia64@vger.kernel.org
2928S: Supported
2929
2930SGI VISUAL WORKSTATION 320 AND 540
2931P: Andrey Panin
2932M: pazke@donpac.ru
2933L: linux-visws-devel@lists.sf.net
2934W: http://linux-visws.sf.net
2935S: Maintained for 2.6.
2936
2937SIMTEC EB110ATX (Chalice CATS)
2938P: Ben Dooks
2939P: Vincent Sanders
2940M: support@simtec.co.uk
2941W: http://www.simtec.co.uk/products/EB110ATX/
2942S: Supported
2943
2944SIMTEC EB2410ITX (BAST)
2945P: Ben Dooks
2946P: Vincent Sanders
2947M: support@simtec.co.uk
2948W: http://www.simtec.co.uk/products/EB2410ITX/
2949S: Supported
2950
Francois Romieu92aab3c2005-07-30 13:11:18 +02002951SIS 190 ETHERNET DRIVER
2952P: Francois Romieu
2953M: romieu@fr.zoreil.com
2954L: netdev@vger.kernel.org
2955S: Maintained
2956
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957SIS 5513 IDE CONTROLLER DRIVER
2958P: Lionel Bouton
2959M: Lionel.Bouton@inet6.fr
2960W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2961W: http://gyver.homeip.net/sis5513/index.html
2962S: Maintained
2963
2964SIS 900/7016 FAST ETHERNET DRIVER
2965P: Daniele Venzano
2966M: venza@brownhat.org
2967W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002968L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969S: Maintained
2970
2971SIS FRAMEBUFFER DRIVER
2972P: Thomas Winischhofer
2973M: thomas@winischhofer.net
2974W: http://www.winischhofer.net/linuxsisvga.shtml
2975S: Maintained
2976
2977SIS USB2VGA DRIVER
2978P: Thomas Winischhofer
2979M: thomas@winischhofer.net
2980W: http://www.winischhofer.at/linuxsisusbvga.shtml
2981S: Maintained
2982
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983SMC91x ETHERNET DRIVER
2984P: Nicolas Pitre
2985M: nico@cam.org
2986S: Maintained
2987
Daniel Drake8f0f8502006-07-18 22:00:25 +01002988SOFTMAC LAYER (IEEE 802.11)
2989P: Johannes Berg
2990M: johannes@sipsolutions.net
2991P: Joe Jezak
2992M: josejx@gentoo.org
2993P: Daniel Drake
2994M: dsd@gentoo.org
2995W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002996L: netdev@vger.kernel.org
2997S: Maintained
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999SOFTWARE RAID (Multiple Disks) SUPPORT
3000P: Ingo Molnar
3001M: mingo@redhat.com
3002P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003003M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003005S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
3007SOFTWARE SUSPEND:
3008P: Pavel Machek
3009M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07003010L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011S: Maintained
3012
3013SONIC NETWORK DRIVER
3014P: Thomas Bogendoerfer
3015M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003016L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017S: Maintained
3018
3019SONY VAIO CONTROL DEVICE DRIVER
3020P: Stelian Pop
3021M: stelian@popies.net
3022W: http://popies.net/sonypi/
3023S: Maintained
3024
3025SOUND
3026P: Jaroslav Kysela
3027M: perex@suse.cz
3028L: alsa-devel@alsa-project.org
3029S: Maintained
3030
Kumar Gala025c3982006-04-02 16:05:54 -05003031SPI SUBSYSTEM
3032P: David Brownell
3033M: dbrownell@users.sourceforge.net
3034L: spi-devel-general@lists.sourceforge.net
3035S: Maintained
3036
Steven Rostedt855f46a2006-08-05 12:14:50 -07003037STABLE BRANCH:
3038P: Greg Kroah-Hartman
3039M: greg@kroah.com
3040P: Chris Wright
3041M: chrisw@sous-sol.org
3042L: stable@kernel.org
3043S: Maintained
3044
Kylene Hall1c72d462005-05-01 08:59:13 -07003045TPM DEVICE DRIVER
3046P: Kylene Hall
3047M: kjhall@us.ibm.com
3048W: http://tpmdd.sourceforge.net
3049L: tpmdd-devel@lists.sourceforge.net
3050S: Maintained
3051
Mark Gross1a80ba82005-10-30 15:02:55 -08003052Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003053P: Mark Gross
3054M: mark.gross@intel.com
3055S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003056
Chris Zankel48b415c2005-06-23 22:01:07 -07003057TENSILICA XTENSA PORT (xtensa):
3058P: Chris Zankel
3059M: chris@zankel.net
3060S: Maintained
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062UltraSPARC (sparc64):
3063P: David S. Miller
3064M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003066T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067S: Maintained
3068
3069SHARP LH SUPPORT (LH7952X & LH7A40X)
3070P: Marc Singer
3071M: elf@buici.com
3072W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003073L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074S: Maintained
3075
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003076SHPC HOTPLUG DRIVER
3077P: Kristen Carlson Accardi
3078M: kristen.c.accardi@intel.com
3079L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003080S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003081
Pierre Ossmand129bce2006-03-24 03:18:17 -08003082SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3083P: Pierre Ossman
3084M: drzeus-sdhci@drzeus.cx
3085L: sdhci-devel@list.drzeus.cx
3086W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3087S: Maintained
3088
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003089SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3090P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003091M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003092L: netdev@vger.kernel.org
3093S: Maintained
3094
Chris Boot1a87d942006-07-10 04:45:34 -07003095SOEKRIS NET48XX LED SUPPORT
3096P: Chris Boot
3097M: bootc@bootc.net
3098S: Maintained
3099
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100SPARC (sparc32):
3101P: William L. Irwin
3102M: wli@holomorphy.com
3103L: sparclinux@vger.kernel.org
3104S: Maintained
3105
3106SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3107P: Roger Wolff
3108M: R.E.Wolff@BitWizard.nl
3109L: linux-kernel@vger.kernel.org ?
3110S: Supported
3111
Jim Lewis2752e402006-09-29 02:01:19 -07003112SPIDERNET NETWORK DRIVER for CELL
3113P: Jim Lewis
3114M: jim@jklewis.com
3115L: netdev@vger.kernel.org
3116S: Supported
3117
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118SRM (Alpha) environment access
3119P: Jan-Benedict Glaw
3120M: jbglaw@lug-owl.de
3121L: linux-kernel@vger.kernel.org
3122S: Maintained
3123
3124STARFIRE/DURALAN NETWORK DRIVER
3125P: Ion Badulescu
3126M: ionut@cs.columbia.edu
3127S: Maintained
3128
3129STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3130W: http://mosquitonet.Stanford.EDU/strip.html
3131S: Unsupported ?
3132
3133STRADIS MPEG-2 DECODER DRIVER
3134P: Nathan Laredo
3135M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136W: http://www.stradis.com/
3137S: Maintained
3138
3139SUPERH (sh)
3140P: Paul Mundt
3141M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003142L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144S: Maintained
3145
3146SUPERH64 (sh64)
3147P: Paul Mundt
3148M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149L: linuxsh-shmedia-dev@lists.sourceforge.net
3150W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151S: Maintained
3152
3153SUN3/3X
3154P: Sam Creasey
3155M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156W: http://sammy.net/sun3/
3157S: Maintained
3158
3159SVGA HANDLING
3160P: Martin Mares
3161M: mj@ucw.cz
3162L: linux-video@atrey.karlin.mff.cuni.cz
3163S: Maintained
3164
3165SYSV FILESYSTEM
3166P: Christoph Hellwig
3167M: hch@infradead.org
3168S: Maintained
3169
Stephen Hemminger781b4562006-07-10 20:25:29 -07003170TC CLASSIFIER
3171P: Jamal Hadi Salim
3172M: hadi@cyberus.ca
3173L: netdev@vger.kernel.org
3174S: Maintained
3175
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003176TCP LOW PRIORITY MODULE
3177P: Wong Hoi Sing, Edison
3178M: hswong3i@gmail.com
3179P: Hung Hing Lun, Mike
3180M: hlhung3i@gmail.com
3181W: http://tcp-lp-mod.sourceforge.net/
3182S: Maintained
3183
Alex Dubov4020f2d2006-10-04 02:15:37 -07003184TI FLASH MEDIA INTERFACE DRIVER
3185P: Alex Dubov
3186M: oakad@yahoo.com
3187S: Maintained
3188
Michael Buesch844dd052006-06-26 00:24:59 -07003189TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3190P: Deepak Saxena
3191M: dsaxena@plexity.net
3192S: Maintained
3193
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003194TASKSTATS STATISTICS INTERFACE
3195P: Shailabh Nagar
3196M: nagar@watson.ibm.com
3197L: linux-kernel@vger.kernel.org
3198S: Maintained
3199
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003201P: Romain Lievin
3202M: roms@lpg.ticalc.org
3203S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Per Lidene86eaa32006-01-12 16:45:18 +01003205TIPC NETWORK LAYER
3206P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003207M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003208P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003209M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003210P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003211M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003212L: tipc-discussion@lists.sourceforge.net
3213W: http://tipc.sourceforge.net/
3214W: http://tipc.cslab.ericsson.net/
3215T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3216S: Maintained
3217
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218TLAN NETWORK DRIVER
3219P: Samuel Chessman
3220M: chessman@tux.org
3221L: tlan-devel@lists.sourceforge.net
3222W: http://sourceforge.net/projects/tlan/
3223S: Maintained
3224
3225TOKEN-RING NETWORK DRIVER
3226P: Mike Phillips
3227M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003228L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229L: linux-tr@linuxtr.net
3230W: http://www.linuxtr.net
3231S: Maintained
3232
3233TOSHIBA ACPI EXTRAS DRIVER
3234P: John Belmonte
3235M: toshiba_acpi@memebeam.org
3236W: http://memebeam.org/toys/ToshibaAcpiDriver
3237S: Maintained
3238
3239TOSHIBA SMM DRIVER
3240P: Jonathan Buzzard
3241M: jonathan@buzzard.org.uk
3242L: tlinux-users@tce.toshiba-dme.co.jp
3243W: http://www.buzzard.org.uk/toshiba/
3244S: Maintained
3245
3246TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3247P: Muli Ben-Yehuda
3248M: mulix@mulix.org
3249L: linux-kernel@vger.kernel.org
3250S: Maintained
3251
3252TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003253P: Adrian Bunk
3254M: trivial@kernel.org
3255L: linux-kernel@vger.kernel.org
3256W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3257T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3258S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260TMS380 TOKEN-RING NETWORK DRIVER
3261P: Adam Fritzler
3262M: mid@auk.cx
3263L: linux-tr@linuxtr.net
3264W: http://www.auk.cx/tms380tr/
3265S: Maintained
3266
3267TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003268P: Valerie Henson
3269M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270L: tulip-users@lists.sourceforge.net
3271W: http://sourceforge.net/projects/tulip/
3272S: Maintained
3273
3274TUN/TAP driver
3275P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003276M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277L: vtun@office.satix.net
3278W: http://vtun.sourceforge.net/tun
3279S: Maintained
3280
3281U14-34F SCSI DRIVER
3282P: Dario Ballabio
3283M: ballabio_dario@emc.com
3284L: linux-scsi@vger.kernel.org
3285S: Maintained
3286
3287UDF FILESYSTEM
3288P: Ben Fennema
3289M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290W: http://linux-udf.sourceforge.net
3291S: Maintained
3292
3293UNIFORM CDROM DRIVER
3294P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003295M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296L: linux-kernel@vger.kernel.org
3297W: http://www.kernel.dk
3298S: Maintained
3299
3300USB ACM DRIVER
3301P: Oliver Neukum
3302M: oliver@neukum.name
3303L: linux-usb-users@lists.sourceforge.net
3304L: linux-usb-devel@lists.sourceforge.net
3305S: Maintained
3306
3307USB BLOCK DRIVER (UB ub)
3308P: Pete Zaitcev
3309M: zaitcev@redhat.com
3310L: linux-kernel@vger.kernel.org
3311L: linux-usb-devel@lists.sourceforge.net
3312S: Supported
3313
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314USB CDC ETHERNET DRIVER
3315P: Greg Kroah-Hartman
3316M: greg@kroah.com
3317L: linux-usb-users@lists.sourceforge.net
3318L: linux-usb-devel@lists.sourceforge.net
3319S: Maintained
3320W: http://www.kroah.com/linux-usb/
3321
3322USB EHCI DRIVER
3323P: David Brownell
3324M: dbrownell@users.sourceforge.net
3325L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003326S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
Luca Risolia7ce08c92006-01-11 02:06:59 +00003328USB ET61X[12]51 DRIVER
3329P: Luca Risolia
3330M: luca.risolia@studio.unibo.it
3331L: linux-usb-devel@lists.sourceforge.net
3332L: video4linux-list@redhat.com
3333W: http://www.linux-projects.org
3334S: Maintained
3335
David Brownell69ae9e32006-11-14 02:03:31 -08003336USB GADGET/PERIPHERAL SUBSYSTEM
3337P: David Brownell
3338M: dbrownell@users.sourceforge.net
3339L: linux-usb-devel@lists.sourceforge.net
3340W: http://www.linux-usb.org/gadget
3341S: Maintained
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343USB HID/HIDBP DRIVERS
Jiri Kosina641266f2007-01-15 09:56:21 +01003344P: Jiri Kosina
3345M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346L: linux-usb-devel@lists.sourceforge.net
3347S: Maintained
3348
3349USB HUB DRIVER
3350P: Johannes Erdfelt
3351M: johannes@erdfelt.com
3352L: linux-usb-users@lists.sourceforge.net
3353L: linux-usb-devel@lists.sourceforge.net
3354S: Maintained
3355
Olav Kongas959eea22005-11-03 17:38:14 +02003356USB ISP116X DRIVER
3357P: Olav Kongas
3358M: ok@artecdesign.ee
3359L: linux-usb-devel@lists.sourceforge.net
3360S: Maintained
3361
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362USB KAWASAKI LSI DRIVER
3363P: Oliver Neukum
3364M: oliver@neukum.name
3365L: linux-usb-users@lists.sourceforge.net
3366L: linux-usb-devel@lists.sourceforge.net
3367S: Maintained
3368
3369USB MASS STORAGE DRIVER
3370P: Matthew Dharm
3371M: mdharm-usb@one-eyed-alien.net
3372L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003373L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374S: Maintained
3375W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3376
3377USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003378P: David Brownell
3379M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380L: linux-usb-users@lists.sourceforge.net
3381L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003382S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
Matthias Urlichsba460e42005-07-14 00:33:47 -07003384USB OPTION-CARD DRIVER
3385P: Matthias Urlichs
3386M: smurf@smurf.noris.de
3387L: linux-usb-devel@lists.sourceforge.net
3388S: Maintained
3389
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390USB OV511 DRIVER
3391P: Mark McClelland
3392M: mmcclell@bigfoot.com
3393L: linux-usb-users@lists.sourceforge.net
3394L: linux-usb-devel@lists.sourceforge.net
3395W: http://alpha.dyndns.org/ov511/
3396S: Maintained
3397
3398USB PEGASUS DRIVER
3399P: Petko Manolov
3400M: petkan@users.sourceforge.net
3401L: linux-usb-users@lists.sourceforge.net
3402L: linux-usb-devel@lists.sourceforge.net
3403W: http://pegasus2.sourceforge.net/
3404S: Maintained
3405
3406USB PRINTER DRIVER
3407P: Vojtech Pavlik
3408M: vojtech@suse.cz
3409L: linux-usb-users@lists.sourceforge.net
3410L: linux-usb-devel@lists.sourceforge.net
3411S: Maintained
3412
3413USB RTL8150 DRIVER
3414P: Petko Manolov
3415M: petkan@users.sourceforge.net
3416L: linux-usb-users@lists.sourceforge.net
3417L: linux-usb-devel@lists.sourceforge.net
3418W: http://pegasus2.sourceforge.net/
3419S: Maintained
3420
3421USB SE401 DRIVER
3422P: Jeroen Vreeken
3423M: pe1rxq@amsat.org
3424L: linux-usb-users@lists.sourceforge.net
3425L: linux-usb-devel@lists.sourceforge.net
3426W: http://www.chello.nl/~j.vreeken/se401/
3427S: Maintained
3428
3429USB SERIAL CYBERJACK DRIVER
3430P: Matthias Bruestle and Harald Welte
3431M: support@reiner-sct.com
3432W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3433S: Maintained
3434
3435USB SERIAL DIGI ACCELEPORT DRIVER
3436P: Peter Berger and Al Borchers
3437M: pberger@brimson.com
3438M: alborchers@steinerpoint.com
3439L: linux-usb-users@lists.sourceforge.net
3440L: linux-usb-devel@lists.sourceforge.net
3441S: Maintained
3442
3443USB SERIAL DRIVER
3444P: Greg Kroah-Hartman
3445M: gregkh@suse.de
3446L: linux-usb-users@lists.sourceforge.net
3447L: linux-usb-devel@lists.sourceforge.net
3448S: Supported
3449
3450USB SERIAL BELKIN F5U103 DRIVER
3451P: William Greathouse
3452M: wgreathouse@smva.com
3453L: linux-usb-users@lists.sourceforge.net
3454L: linux-usb-devel@lists.sourceforge.net
3455S: Maintained
3456
3457USB SERIAL CYPRESS M8 DRIVER
3458P: Lonnie Mendez
3459M: dignome@gmail.com
3460L: linux-usb-users@lists.sourceforge.net
3461L: linux-usb-devel@lists.sourceforge.net
3462S: Maintained
3463W: http://geocities.com/i0xox0i
3464W: http://firstlight.net/cvs
3465
3466USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3467L: linux-usb-users@lists.sourceforge.net
3468L: linux-usb-devel@lists.sourceforge.net
3469S: Maintained
3470
3471USB AUERSWALD DRIVER
3472P: Wolfgang Muees
3473M: wolfgang@iksw-muees.de
3474L: linux-usb-users@lists.sourceforge.net
3475L: linux-usb-devel@lists.sourceforge.net
3476S: Maintained
3477
3478USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3479P: Gary Brubaker
3480M: xavyer@ix.netcom.com
3481L: linux-usb-users@lists.sourceforge.net
3482L: linux-usb-devel@lists.sourceforge.net
3483S: Maintained
3484
3485USB SERIAL KEYSPAN DRIVER
3486P: Greg Kroah-Hartman
3487M: greg@kroah.com
3488L: linux-usb-users@lists.sourceforge.net
3489L: linux-usb-devel@lists.sourceforge.net
3490W: http://www.kroah.com/linux/
3491S: Maintained
3492
3493USB SERIAL WHITEHEAT DRIVER
3494P: Stuart MacDonald
3495M: stuartm@connecttech.com
3496L: linux-usb-users@lists.sourceforge.net
3497L: linux-usb-devel@lists.sourceforge.net
3498W: http://www.connecttech.com
3499S: Supported
3500
3501USB SN9C10x DRIVER
3502P: Luca Risolia
3503M: luca.risolia@studio.unibo.it
3504L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003505L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506W: http://www.linux-projects.org
3507S: Maintained
3508
3509USB SUBSYSTEM
3510P: Greg Kroah-Hartman
3511M: gregkh@suse.de
3512L: linux-usb-users@lists.sourceforge.net
3513L: linux-usb-devel@lists.sourceforge.net
3514W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003515T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516S: Supported
3517
3518USB UHCI DRIVER
3519P: Alan Stern
3520M: stern@rowland.harvard.edu
3521L: linux-usb-users@lists.sourceforge.net
3522L: linux-usb-devel@lists.sourceforge.net
3523S: Maintained
3524
David Brownell69ae9e32006-11-14 02:03:31 -08003525USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526P: David Brownell
3527M: dbrownell@users.sourceforge.net
3528L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003529W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530S: Maintained
3531
3532USB W996[87]CF DRIVER
3533P: Luca Risolia
3534M: luca.risolia@studio.unibo.it
3535L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003536L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537W: http://www.linux-projects.org
3538S: Maintained
3539
Luca Risolia60f78052006-02-06 16:29:35 +00003540USB ZC0301 DRIVER
3541P: Luca Risolia
3542M: luca.risolia@studio.unibo.it
3543L: linux-usb-devel@lists.sourceforge.net
3544L: video4linux-list@redhat.com
3545W: http://www.linux-projects.org
3546S: Maintained
3547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548USB ZD1201 DRIVER
3549P: Jeroen Vreeken
3550M: pe1rxq@amsat.org
3551L: linux-usb-users@lists.sourceforge.net
3552L: linux-usb-devel@lists.sourceforge.net
3553W: http://linux-lc100020.sourceforge.net
3554S: Maintained
3555
3556USER-MODE LINUX
3557P: Jeff Dike
3558M: jdike@karaya.com
3559L: user-mode-linux-devel@lists.sourceforge.net
3560L: user-mode-linux-user@lists.sourceforge.net
3561W: http://user-mode-linux.sourceforge.net
3562S: Maintained
3563
3564FAT/VFAT/MSDOS FILESYSTEM:
3565P: OGAWA Hirofumi
3566M: hirofumi@mail.parknet.co.jp
3567L: linux-kernel@vger.kernel.org
3568S: Maintained
3569
3570VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3571P: Jeff Garzik
3572S: Odd fixes
3573
3574VIA RHINE NETWORK DRIVER
3575P: Roger Luethi
3576M: rl@hellgate.ch
3577S: Maintained
3578
Jean Delvare32c0a522005-09-22 21:47:58 +02003579VIAPRO SMBUS DRIVER
3580P: Jean Delvare
3581M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003582L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003583S: Maintained
3584
Francois Romieu01f20732007-01-26 00:57:17 -08003585VIA VELOCITY NETWORK DRIVER
3586P: Francois Romieu
3587M: romieu@fr.zoreil.com
3588L: netdev@vger.kernel.org
3589S: Maintained
3590
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591UCLINUX (AND M68KNOMMU)
3592P: Greg Ungerer
3593M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003595L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596S: Maintained
3597
3598UCLINUX FOR NEC V850
3599P: Miles Bader
3600M: uclinux-v850@lsi.nec.co.jp
3601W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3602W: http://www.ee.nec.de/uclinux/
3603S: Supported
3604
3605UCLINUX FOR RENESAS H8/300
3606P: Yoshinori Sato
3607M: ysato@users.sourceforge.jp
3608W: http://uclinux-h8.sourceforge.jp/
3609S: Supported
3610
3611USB DIAMOND RIO500 DRIVER
3612P: Cesar Miquel
3613M: miquel@df.uba.ar
3614L: rio500-users@lists.sourceforge.net
3615W: http://rio500.sourceforge.net
3616S: Maintained
3617
3618VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003619P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003620M: mchehab@infradead.org
3621M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003623W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003624T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003625S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Juerg Haefligerab413192006-09-24 20:54:04 +02003627VT1211 HARDWARE MONITOR DRIVER
3628P: Juerg Haefliger
3629M: juergh@gmail.com
3630L: lm-sensors@lm-sensors.org
3631S: Maintained
3632
Roger Lucas1de9e372005-11-26 20:20:05 +01003633VT8231 HARDWARE MONITOR DRIVER
3634P: Roger Lucas
3635M: roger@planbit.co.uk
3636L: lm-sensors@lm-sensors.org
3637S: Maintained
3638
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639W1 DALLAS'S 1-WIRE BUS
3640P: Evgeniy Polyakov
3641M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642S: Maintained
3643
Charles Spirakis13927072006-07-05 18:05:15 +02003644W83791D HARDWARE MONITORING DRIVER
3645P: Charles Spirakis
3646M: bezaur@gmail.com
3647L: lm-sensors@lm-sensors.org
3648S: Maintained
3649
Rudolf Marek61db0112006-12-12 18:18:30 +01003650W83793 HARDWARE MONITORING DRIVER
3651P: Rudolf Marek
3652M: r.marek@assembler.cz
3653L: lm-sensors@lm-sensors.org
3654S: Maintained
3655
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656W83L51xD SD/MMC CARD INTERFACE DRIVER
3657P: Pierre Ossman
3658M: drzeus-wbsd@drzeus.cx
3659L: wbsd-devel@list.drzeus.cx
3660W: http://projects.drzeus.cx/wbsd
3661S: Maintained
3662
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003663WATCHDOG DEVICE DRIVERS
3664P: Wim Van Sebroeck
3665M: wim@iguana.be
3666T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3667S: Maintained
3668
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3670P: Jean Tourrilhes
3671M: jt@hpl.hp.com
3672W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3673S: Maintained
3674
3675WD7000 SCSI DRIVER
3676P: Miroslav Zagorac
3677M: zaga@fly.cc.fer.hr
3678L: linux-scsi@vger.kernel.org
3679S: Maintained
3680
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003681WISTRON LAPTOP BUTTON DRIVER
3682P: Miloslav Trmac
3683M: mitr@volny.cz
3684S: Maintained
3685
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686WL3501 WIRELESS PCMCIA CARD DRIVER
3687P: Arnaldo Carvalho de Melo
3688M: acme@conectiva.com.br
3689W: http://advogato.org/person/acme
3690S: Maintained
3691
3692X.25 NETWORK LAYER
3693P: Henner Eisen
3694M: eis@baty.hanse.de
3695L: linux-x25@vger.kernel.org
3696S: Maintained
3697
3698XFS FILESYSTEM
3699P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003700P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003702L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003704T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705S: Supported
3706
Peter Korsgaard238b8722006-12-06 20:35:17 -08003707XILINX UARTLITE SERIAL DRIVER
3708P: Peter Korsgaard
3709M: jacmet@sunsite.dk
3710L: linux-serial@vger.kernel.org
3711S: Maintained
3712
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713X86 3-LEVEL PAGING (PAE) SUPPORT
3714P: Ingo Molnar
3715M: mingo@redhat.com
3716S: Maintained
3717
3718X86-64 port
3719P: Andi Kleen
3720M: ak@suse.de
3721L: discuss@x86-64.org
3722W: http://www.x86-64.org
3723S: Maintained
3724
3725YAM DRIVER FOR AX.25
3726P: Jean-Paul Roubelat
3727M: jpr@f6fbb.org
3728L: linux-hams@vger.kernel.org
3729S: Maintained
3730
Henkaf64a5e2005-10-12 15:02:56 +02003731YEALINK PHONE DRIVER
3732P: Henk Vergonet
3733M: Henk.Vergonet@gmail.com
3734L: usbb2k-api-dev@nongnu.org
3735S: Maintained
3736
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737Z8530 DRIVER FOR AX.25
3738P: Joerg Reuter
3739M: jreuter@yaina.de
3740W: http://yaina.de/jreuter/
3741W: http://www.qsl.net/dl1bke/
3742L: linux-hams@vger.kernel.org
3743S: Maintained
3744
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003745ZD1211RW WIRELESS DRIVER
3746P: Daniel Drake
3747M: dsd@gentoo.org
3748P: Ulrich Kunitz
3749M: kune@deine-taler.de
3750W: http://zd1211.ath.cx/wiki/DriverRewrite
3751L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3752S: Maintained
3753
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754ZF MACHZ WATCHDOG
3755P: Fernando Fuganti
3756M: fuganti@netbank.com.br
3757W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3758S: Maintained
3759
3760ZR36067 VIDEO FOR LINUX DRIVER
3761P: Ronald Bultje
3762M: rbultje@ronald.bitfreak.net
3763L: mjpeg-users@lists.sourceforge.net
3764W: http://mjpeg.sourceforge.net/driver-zoran/
3765S: Maintained
3766
3767ZR36120 VIDEO FOR LINUX DRIVER
3768P: Pauline Middelink
3769M: middelin@polyware.nl
3770W: http://www.polyware.nl/~middelin/En/hobbies.html
3771W: http://www.polyware.nl/~middelin/hobbies.html
3772S: Maintained
3773
3774THE REST
3775P: Linus Torvalds
3776S: Buried alive in reporters