blob: 9ea954ace2ffabdb21b45de731517261be3605fa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
33 generalized kernel feature ready for next time. See
34 Documentation/CodingStyle for guidance here.
35
36 PLEASE try to include any credit lines you want added with the
37 patch. It avoids people being missed off by mistake and makes
38 it easier to know who wants adding and who doesn't.
39
40 PLEASE document known bugs. If it doesn't work for everything
41 or does something very odd once a month document it.
42
Alan Coxc9ee1332006-05-20 15:00:12 -070043 PLEASE remember that submissions must be made under the terms
44 of the OSDL certificate of contribution
45 (http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html)
46 and should include a Signed-off-by: line.
47
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486. Make sure you have the right to send any changes you make. If you
49 do changes at work you may find your employer owns the patch
50 not you.
51
Alan Coxc9ee1332006-05-20 15:00:12 -0700527. When sending security related changes or reports to a maintainer
53 please Cc: security@kernel.org, especially if the maintainer
54 does not respond.
55
568. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 -----------------------------------
59
60Maintainers List (try to look for most precise areas first)
61
62Note: For the hard of thinking, this list is meant to remain in alphabetical
63order. If you could add yourselves to it in alphabetical order that would be
64so much easier [Ed]
65
66P: Person
67M: Mail patches to
68L: Mailing list that is relevant to this area
69W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080070T: SCM tree type and location. Type is one of: git, hg, quilt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071S: Status, one of the following:
72
73 Supported: Someone is actually paid to look after this.
74 Maintained: Someone actually looks after it.
75 Odd Fixes: It has a maintainer but they don't have time to do
76 much other than throw the odd patch in. See below..
77 Orphan: No current maintainer [but maybe you could take the
78 role as you write your new code].
79 Obsolete: Old code. Something tagged obsolete generally means
80 it has been replaced by a better system and you
81 should be using that.
82
833C359 NETWORK DRIVER
84P: Mike Phillips
85M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -070086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070087L: linux-tr@linuxtr.net
88W: http://www.linuxtr.net
89S: Maintained
90
913C505 NETWORK DRIVER
92P: Philip Blundell
93M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -070094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070095S: Maintained
96
973CR990 NETWORK DRIVER
98P: David Dillow
99M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101S: Maintained
102
1033W-XXXX ATA-RAID CONTROLLER DRIVER
104P: Adam Radford
105M: linuxraid@amcc.com
106L: linux-scsi@vger.kernel.org
107W: http://www.amcc.com
108S: Supported
109
1103W-9XXX SATA-RAID CONTROLLER DRIVER
111P: Adam Radford
112M: linuxraid@amcc.com
113L: linux-scsi@vger.kernel.org
114W: http://www.amcc.com
115S: Supported
116
11753C700 AND 53C700-66 SCSI DRIVER
118P: James E.J. Bottomley
119M: James.Bottomley@HansenPartnership.com
120L: linux-scsi@vger.kernel.org
121S: Maintained
122
1236PACK NETWORK DRIVER FOR AX.25
124P: Andreas Koensgen
125M: ajk@iehk.rwth-aachen.de
126L: linux-hams@vger.kernel.org
127S: Maintained
128
1298139CP 10/100 FAST ETHERNET DRIVER
130P: Jeff Garzik
131M: jgarzik@pobox.com
132S: Maintained
133
1348139TOO 10/100 FAST ETHERNET DRIVER
135P: Jeff Garzik
136M: jgarzik@pobox.com
137W: http://sourceforge.net/projects/gkernel/
138S: Maintained
139
1408169 10/100/1000 GIGABIT ETHERNET DRIVER
141P: Francois Romieu
142M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700143L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Maintained
145
1468250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-serial@vger.kernel.org
148W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100149S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1518390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
152P: Paul Gortmaker
153M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
156
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001579P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100158P: Eric Van Hensbergen
159M: ericvh@gmail.com
160P: Ron Minnich
161M: rminnich@lanl.gov
162P: Latchesar Ionkov
163M: lucho@ionkov.net
164L: v9fs-developer@lists.sourceforge.net
165W: http://v9fs.sf.net
166T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
167S: Maintained
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169A2232 SERIAL BOARD DRIVER
170P: Enver Haase
171M: ehaase@inf.fu-berlin.de
172M: A2232@gmx.net
173L: linux-m68k@lists.linux-m68k.org
174S: Maintained
175
176AIO
177P: Benjamin LaHaise
178M: bcrl@kvack.org
179L: linux-aio@kvack.org
180S: Supported
181
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200182ABIT UGURU HARDWARE MONITOR DRIVER
183P: Hans de Goede
184M: j.w.r.degoede@hhs.nl
185L: lm-sensors@lm-sensors.org
186S: Maintained
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188ACENIC DRIVER
189P: Jes Sorensen
190M: jes@trained-monkey.org
191L: linux-acenic@sunsite.dk
192S: Maintained
193
194ACI MIXER DRIVER
195P: Robert Siemer
196M: Robert.Siemer@gmx.de
197L: linux-sound@vger.kernel.org
198W: http://www.stud.uni-karlsruhe.de/~uh1b/
199S: Maintained
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201AACRAID SCSI RAID DRIVER
202P: Adaptec OEM Raid Solutions
203L: linux-scsi@vger.kernel.org
204W: http://linux.dell.com/storage.shtml
205S: Supported
206
207ACPI
208P: Len Brown
209M: len.brown@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500210M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500211L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800213T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500214S: Supported
215
216ACPI BATTERY DRIVERS
217P: Vladimir P. Lebedev
218M: vladimir.p.lebedev@intel.com
219L: linux-acpi@vger.kernel.org
220W: http://acpi.sourceforge.net/
221S: Supported
222
223ACPI EC DRIVER
224P: Alexey Starikovskiy
225M: alexey.y.starikovskiy@linux.intel.com
226L: linux-acpi@vger.kernel.org
227W: http://acpi.sourceforge.net/
228S: Supported
229
230ACPI FAN DRIVER
231P: Konstantin A. Karasyov
232M: konstantin.a.karasyov@intel.com
233L: linux-acpi@vger.kernel.org
234W: http://acpi.sourceforge.net/
235S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700237ACPI PCI HOTPLUG DRIVER
238P: Kristen Carlson Accardi
239M: kristen.c.accardi@intel.com
240L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -0500241S: Supported
242
243ACPI THERMAL DRIVER
244P: Konstantin A. Karasyov
245M: konstantin.a.karasyov@intel.com
246L: linux-acpi@vger.kernel.org
247W: http://acpi.sourceforge.net/
248S: Supported
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250AD1816 SOUND DRIVER
251P: Thorsten Knabe
252M: Thorsten Knabe <linux@thorsten-knabe.de>
253W: http://linux.thorsten-knabe.de
254S: Maintained
255
Kyle McMartin6958ae32005-10-21 23:11:27 -0400256AD1889 SOUND DRIVER
257P: Kyle McMartin
258M: kyle@parisc-linux.org
259P: Thibaut Varene
260M: T-Bone@parisc-linux.org
261W: http://wiki.parisc-linux.org/AD1889
262L: parisc-linux@lists.parisc-linux.org
263S: Maintained
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265ADM1025 HARDWARE MONITOR DRIVER
266P: Jean Delvare
267M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200268L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269S: Maintained
270
271ADT746X FAN DRIVER
272P: Colin Leroy
273M: colin@colino.net
274S: Maintained
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276AEDSP16 DRIVER
277P: Riccardo Facchetti
278M: fizban@tin.it
279S: Maintained
280
281AFFS FILE SYSTEM
282P: Roman Zippel
283M: zippel@linux-m68k.org
284S: Maintained
285
286AGPGART DRIVER
287P: Dave Jones
288M: davej@codemonkey.org.uk
289W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800290T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291S: Maintained
292
293AHA152X SCSI DRIVER
294P: Juergen E. Fischer
295M: Juergen Fischer <fischer@norbit.de>
296L: linux-scsi@vger.kernel.org
297S: Maintained
298
299ALCATEL SPEEDTOUCH USB DRIVER
300P: Duncan Sands
301M: duncan.sands@free.fr
302L: linux-usb-users@lists.sourceforge.net
303L: linux-usb-devel@lists.sourceforge.net
304W: http://www.linux-usb.org/SpeedTouch/
305S: Maintained
306
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000307ALI1563 I2C DRIVER
308P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100309M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200310L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000311S: Maintained
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313ALPHA PORT
314P: Richard Henderson
315M: rth@twiddle.net
316S: Odd Fixes for 2.4; Maintained for 2.6.
317P: Ivan Kokshaysky
318M: ink@jurassic.park.msu.ru
319S: Maintained for 2.4; PCI support for 2.6.
320
Jordan Crousef90b8112006-01-06 00:12:14 -0800321AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100322P: Jordan Crouse
323M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800324L: info-linux@geode.amd.com
325W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
326S: Supported
327
Stelian Pop284f42b2006-12-12 18:18:31 +0100328AMS (Apple Motion Sensor) DRIVER
329P: Stelian Pop
330M: stelian@popies.net
331P: Michael Hanselmann
332M: linux-kernel@hansmi.ch
333S: Supported
334
Tom Tuckerf94b5332006-09-22 15:22:48 -0700335AMSO1100 RNIC DRIVER
336P: Tom Tucker
337M: tom@opengridcomputing.com
338P: Steve Wise
339M: swise@opengridcomputing.com
340L: openib-general@openib.org
341S: Maintained
342
Johannes Berg42269062006-07-25 16:15:50 +0200343AOA (Apple Onboard Audio) ALSA DRIVER
344P: Johannes Berg
345M: johannes@sipsolutions.net
346L: linuxppc-dev@ozlabs.org
347L: alsa-devel@alsa-project.org
348S: Maintained
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350APM DRIVER
351P: Stephen Rothwell
352M: sfr@canb.auug.org.au
353L: linux-laptop@vger.kernel.org
354W: http://www.canb.auug.org.au/~sfr/
355S: Supported
356
357APPLETALK NETWORK LAYER
358P: Arnaldo Carvalho de Melo
359M: acme@conectiva.com.br
360S: Maintained
361
Jaya Kumar1154ea72005-06-21 17:17:04 -0700362ARC FRAMEBUFFER DRIVER
363P: Jaya Kumar
364M: jayalk@intworks.biz
365S: Maintained
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367ARM26 ARCHITECTURE
368P: Ian Molton
369M: spyro@f2s.com
370S: Maintained
371
372ARM26/ARCHIMEDES
373P: Ian Molton
374M: spyro@f2s.com
375S: Maintained
376
377ARM26/A5000
378P: John Appleby
379M: john@dnsworld.co.uk
380S: Maintained
381
382ARM MFM AND FLOPPY DRIVERS
383P: Ian Molton
384M: spyro@f2s.com
385S: Maintained
386
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800387ARM/ADI ROADRUNNER MACHINE SUPPORT
388P: Lennert Buytenhek
389M: kernel@wantstofly.org
390L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
391S: Maintained
392
393ARM/ADS SPHERE MACHINE SUPPORT
394P: Lennert Buytenhek
395M: kernel@wantstofly.org
396L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
397S: Maintained
398
399ARM/AJECO 1ARM MACHINE SUPPORT
400P: Lennert Buytenhek
401M: kernel@wantstofly.org
402L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
403S: Maintained
404
Andrew Victord4a89c72006-12-04 13:56:21 +0100405ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
406P: Andrew Victor
407M: andrew@sanpeople.com
408L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
409W: http://maxim.org.za/at91_26.html
410S: Maintained
411
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800412ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
413P: Lennert Buytenhek
414M: kernel@wantstofly.org
415L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
416S: Maintained
417
418ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
419P: Lennert Buytenhek
420M: kernel@wantstofly.org
421L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
422S: Maintained
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424ARM/CORGI MACHINE SUPPORT
425P: Richard Purdie
426M: rpurdie@rpsys.net
427S: Maintained
428
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800429ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
430P: Lennert Buytenhek
431M: kernel@wantstofly.org
432L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
433S: Maintained
434
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100435ARM/HP JORNADA 7XX MACHINE SUPPORT
436P: Kristoffer Ericson
437M: kristoffer_e1@hotmail.com
438W: www.jlime.com
439S: Maintained
440
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800441ARM/INTEL IOP32X ARM ARCHITECTURE
442P: Lennert Buytenhek
443M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100444P: Dan Williams
445M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800446L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100447S: Supported
448
449ARM/INTEL IOP33X ARM ARCHITECTURE
450P: Dan Williams
451M: dan.j.williams@intel.com
452L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
453S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800454
455ARM/INTEL IOP13XX ARM ARCHITECTURE
456P: Lennert Buytenhek
457M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100458P: Dan Williams
459M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800460L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100461S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800462
463ARM/INTEL IQ81342EX MACHINE SUPPORT
464P: Lennert Buytenhek
465M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100466P: Dan Williams
467M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800468L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100469S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800470
471ARM/INTEL IXP2000 ARM ARCHITECTURE
472P: Lennert Buytenhek
473M: kernel@wantstofly.org
474L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
475S: Maintained
476
477ARM/INTEL IXDP2850 MACHINE SUPPORT
478P: Lennert Buytenhek
479M: kernel@wantstofly.org
480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
481S: Maintained
482
483ARM/INTEL IXP23XX ARM ARCHITECTURE
484P: Lennert Buytenhek
485M: kernel@wantstofly.org
486L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
487S: Maintained
488
489ARM/INTEL XSC3 (MANZANO) ARM CORE
490P: Lennert Buytenhek
491M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100492P: Dan Williams
493M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800494L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100495S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800496
497ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
498P: Lennert Buytenhek
499M: kernel@wantstofly.org
500L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
501S: Maintained
502
503ARM/LOGICPD PXA270 MACHINE SUPPORT
504P: Lennert Buytenhek
505M: kernel@wantstofly.org
506L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
507S: Maintained
508
Dirk Opfer8459c152005-11-06 14:27:52 +0000509ARM/TOSA MACHINE SUPPORT
510P: Dirk Opfer
511M: dirk@opfer-online.de
512S: Maintained
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514ARM/PLEB SUPPORT
515P: Peter Chubb
516M: pleb@gelato.unsw.edu.au
517W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
518S: Maintained
519
520ARM/PT DIGITAL BOARD PORT
521P: Stefan Eletzhofer
522M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700523L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524W: http://www.arm.linux.org.uk/
525S: Maintained
526
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800527ARM/RADISYS ENP2611 MACHINE SUPPORT
528P: Lennert Buytenhek
529M: kernel@wantstofly.org
530L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
531S: Maintained
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533ARM/SHARK MACHINE SUPPORT
534P: Alexander Schulz
535M: alex@shark-linux.de
536W: http://www.shark-linux.de/shark.html
537S: Maintained
538
539ARM/STRONGARM110 PORT
540P: Russell King
541M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700542L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543W: http://www.arm.linux.org.uk/
544S: Maintained
545
546ARM/S3C2410 ARM ARCHITECTURE
547P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800548M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700549L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550W: http://www.fluff.org/ben/linux/
551S: Maintained
552
553ARM/S3C2440 ARM ARCHITECTURE
554P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800555M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700556L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557W: http://www.fluff.org/ben/linux/
558S: Maintained
559
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800560ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
561P: Lennert Buytenhek
562M: kernel@wantstofly.org
563L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
564S: Maintained
565
566ARM/THECUS N2100 MACHINE SUPPORT
567P: Lennert Buytenhek
568M: kernel@wantstofly.org
569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
570S: Maintained
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572ARPD SUPPORT
573P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700574L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575S: Maintained
576
577ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500578P: Corentin Chary
579M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580P: Karol Kozimor
581M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582L: acpi4asus-user@lists.sourceforge.net
583W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500584W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585S: Maintained
586
Corentin Chary85091b72007-01-26 14:04:30 +0100587ASUS LAPTOP EXTRAS DRIVER
588P: Corentin Chary
589M: corentincj@iksaif.net
590L: acpi4asus-user@lists.sourceforge.net
591W: http://sourceforge.net/projects/acpi4asus
592W: http://xf.iksaif.net/acpi4asus
593S: Maintained
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595ATA OVER ETHERNET DRIVER
596P: Ed L. Cashin
597M: ecashin@coraid.com
598W: http://www.coraid.com/support/linux
599S: Supported
600
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600601ATL1 ETHERNET DRIVER
602P: Jay Cliburn
603M: jcliburn@gmail.com
604P: Chris Snook
605M: csnook@redhat.com
606L: atl1-devel@lists.sourceforge.net
607W: http://sourceforge.net/projects/atl1
608W: http://atl1.sourceforge.net
609S: Maintained
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611ATM
612P: Chas Williams
613M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700614L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615W: http://linux-atm.sourceforge.net
616S: Maintained
617
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100618ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100619P: Haavard Skinnemoen
620M: hskinnemoen@atmel.com
621S: Supported
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623ATMEL WIRELESS DRIVER
624P: Simon Kelley
625M: simon@thekelleys.org.uk
626W: http://www.thekelleys.org.uk/atmel
627W: http://atmelwlandriver.sourceforge.net/
628S: Maintained
629
Chris Wrighta92b7b82005-07-07 18:12:23 -0700630AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100631P: David Woodhouse
632M: dwmw2@infradead.org
633L: linux-audit@redhat.com
634W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800635T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700636S: Maintained
637
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800638AUXILIARY DISPLAY DRIVERS
639P: Miguel Ojeda Sandonis
640M: maxextreme@gmail.com
641L: linux-kernel@vger.kernel.org
642S: Maintained
643
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700644AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700645P: Haavard Skinnemoen
646M: hskinnemoen@atmel.com
647W: http://www.atmel.com/products/AVR32/
648W: http://avr32linux.org/
649W: http://avrfreaks.net/
650S: Supported
651
652AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700653P: Haavard Skinnemoen
654M: hskinnemoen@atmel.com
655S: Supported
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657AX.25 NETWORK LAYER
658P: Ralf Baechle
659M: ralf@linux-mips.org
660L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200661W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662S: Maintained
663
664BAYCOM/HDLCDRV DRIVERS FOR AX.25
665P: Thomas Sailer
666M: t.sailer@alumni.ethz.ch
667L: linux-hams@vger.kernel.org
668W: http://www.baycom.org/~tom/ham/ham.html
669S: Maintained
670
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200671BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
672P: Larry Finger
673M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200674P: Stefano Brivio
675M: st3@riseup.net
676W: http://bcm43xx.berlios.de/
677S: Maintained
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679BEFS FILE SYSTEM
680P: Sergey S. Kostyliov
681M: rathamahata@php4.ru
682L: linux-kernel@vger.kernel.org
683S: Maintained
684
685BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
686P: Kenji Hollis
687W: http://ftp.bitgate.com/pcwd/
688S: Maintained
689
690BFS FILE SYSTEM
691P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800692M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693L: linux-kernel@vger.kernel.org
694S: Maintained
695
696BLOCK LAYER
697P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200698M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800700T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701S: Maintained
702
703BLUETOOTH SUBSYSTEM
704P: Marcel Holtmann
705M: marcel@holtmann.org
706P: Maxim Krasnyansky
707M: maxk@qualcomm.com
708L: bluez-devel@lists.sf.net
709W: http://bluez.sf.net
710W: http://www.bluez.org
711W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800712T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713S: Maintained
714
715BLUETOOTH RFCOMM LAYER
716P: Marcel Holtmann
717M: marcel@holtmann.org
718P: Maxim Krasnyansky
719M: maxk@qualcomm.com
720S: Maintained
721
722BLUETOOTH BNEP LAYER
723P: Marcel Holtmann
724M: marcel@holtmann.org
725P: Maxim Krasnyansky
726M: maxk@qualcomm.com
727S: Maintained
728
729BLUETOOTH CMTP LAYER
730P: Marcel Holtmann
731M: marcel@holtmann.org
732S: Maintained
733
734BLUETOOTH HIDP LAYER
735P: Marcel Holtmann
736M: marcel@holtmann.org
737S: Maintained
738
739BLUETOOTH HCI UART DRIVER
740P: Marcel Holtmann
741M: marcel@holtmann.org
742P: Maxim Krasnyansky
743M: maxk@qualcomm.com
744S: Maintained
745
746BLUETOOTH HCI USB DRIVER
747P: Marcel Holtmann
748M: marcel@holtmann.org
749P: Maxim Krasnyansky
750M: maxk@qualcomm.com
751S: Maintained
752
753BLUETOOTH HCI BCM203X DRIVER
754P: Marcel Holtmann
755M: marcel@holtmann.org
756S: Maintained
757
758BLUETOOTH HCI BPA10X DRIVER
759P: Marcel Holtmann
760M: marcel@holtmann.org
761S: Maintained
762
763BLUETOOTH HCI BFUSB DRIVER
764P: Marcel Holtmann
765M: marcel@holtmann.org
766S: Maintained
767
768BLUETOOTH HCI DTL1 DRIVER
769P: Marcel Holtmann
770M: marcel@holtmann.org
771S: Maintained
772
773BLUETOOTH HCI BLUECARD DRIVER
774P: Marcel Holtmann
775M: marcel@holtmann.org
776S: Maintained
777
778BLUETOOTH HCI BT3C DRIVER
779P: Marcel Holtmann
780M: marcel@holtmann.org
781S: Maintained
782
783BLUETOOTH HCI BTUART DRIVER
784P: Marcel Holtmann
785M: marcel@holtmann.org
786S: Maintained
787
788BLUETOOTH HCI VHCI DRIVER
789P: Maxim Krasnyansky
790M: maxk@qualcomm.com
791S: Maintained
792
793BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100794P: Chad Tindel
795M: ctindel@users.sourceforge.net
796P: Jay Vosburgh
797M: fubar@us.ibm.com
798L: bonding-devel@lists.sourceforge.net
799W: http://sourceforge.net/projects/bonding/
800S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000802BROADBAND PROCESSOR ARCHITECTURE
803P: Arnd Bergmann
804M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100805L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400806W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000807S: Supported
808
Gary Zambrano39105892006-06-22 17:26:20 -0700809BROADCOM B44 10/100 ETHERNET DRIVER
810P: Gary Zambrano
811M: zambrano@broadcom.com
812L: netdev@vger.kernel.org
813S: Supported
814
Michael Chan948c51e2006-06-04 02:51:39 -0700815BROADCOM BNX2 GIGABIT ETHERNET DRIVER
816P: Michael Chan
817M: mchan@broadcom.com
818L: netdev@vger.kernel.org
819S: Supported
820
821BROADCOM TG3 GIGABIT ETHERNET DRIVER
822P: Michael Chan
823M: mchan@broadcom.com
824L: netdev@vger.kernel.org
825S: Supported
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700828P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200829M: mchehab@infradead.org
830M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700832W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200833T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700834S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200836CALGARY x86-64 IOMMU
837P: Muli Ben-Yehuda
838M: muli@il.ibm.com
839P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200840M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200841L: linux-kernel@vger.kernel.org
842L: discuss@x86-64.org
843S: Maintained
844
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800845CFAG12864B LCD DRIVER
846P: Miguel Ojeda Sandonis
847M: maxextreme@gmail.com
848L: linux-kernel@vger.kernel.org
849S: Maintained
850
851CFAG12864BFB LCD FRAMEBUFFER DRIVER
852P: Miguel Ojeda Sandonis
853M: maxextreme@gmail.com
854L: linux-kernel@vger.kernel.org
855S: Maintained
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857COMMON INTERNET FILE SYSTEM (CIFS)
858P: Steve French
859M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100860L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861L: samba-technical@lists.samba.org
862W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800863T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864S: Supported
865
Joel Becker7063fbf2005-12-15 14:29:43 -0800866CONFIGFS
867P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800868M: joel.becker@oracle.com
869L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800870S: Supported
871
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800872CIRRUS LOGIC EP93XX ETHERNET DRIVER
873P: Lennert Buytenhek
874M: kernel@wantstofly.org
875L: netdev@vger.kernel.org
876S: Maintained
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878CIRRUS LOGIC GENERIC FBDEV DRIVER
879P: Jeff Garzik
880M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800881L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882S: Odd Fixes
883
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800884CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
885P: Lennert Buytenhek
886M: kernel@wantstofly.org
887L: linux-usb-devel@lists.sourceforge.net
888S: Maintained
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
891P: Cirrus Logic Corporation (kernel 2.2 driver)
892M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
893P: Nils Faerber (port to kernel 2.4)
894M: Nils Faerber <nils@kernelconcepts.de>
895S: Maintained
896
897CODA FILE SYSTEM
898P: Jan Harkes
899M: jaharkes@cs.cmu.edu
900M: coda@cs.cmu.edu
901L: codalist@coda.cs.cmu.edu
902W: http://www.coda.cs.cmu.edu/
903S: Maintained
904
905COMPACTPCI HOTPLUG CORE
906P: Scott Murray
907M: scottm@somanetworks.com
908M: scott@spiteful.org
909L: pcihpd-discuss@lists.sourceforge.net
910S: Supported
911
912COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
913P: Scott Murray
914M: scottm@somanetworks.com
915M: scott@spiteful.org
916L: pcihpd-discuss@lists.sourceforge.net
917S: Supported
918
919COMPACTPCI HOTPLUG GENERIC DRIVER
920P: Scott Murray
921M: scottm@somanetworks.com
922M: scott@spiteful.org
923L: pcihpd-discuss@lists.sourceforge.net
924S: Supported
925
926COMPUTONE INTELLIPORT MULTIPORT CARD
927P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700928M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700930S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932COSA/SRP SYNC SERIAL DRIVER
933P: Jan "Yenya" Kasprzak
934M: kas@fi.muni.cz
935W: http://www.fi.muni.cz/~kas/cosa/
936S: Maintained
937
938CPU FREQUENCY DRIVERS
939P: Dave Jones
940M: davej@codemonkey.org.uk
941L: cpufreq@lists.linux.org.uk
942W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500943T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944S: Maintained
945
946CPUID/MSR DRIVER
947P: H. Peter Anvin
948M: hpa@zytor.com
949S: Maintained
950
Paul Jacksoned90fb42005-09-27 21:45:37 -0700951CPUSETS
952P: Paul Jackson
953P: Simon Derr
954M: pj@sgi.com
955M: simon.derr@bull.net
956L: linux-kernel@vger.kernel.org
957W: http://www.bullopensource.org/cpuset/
958S: Supported
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100961W: http://sourceforge.net/projects/cramfs/
962S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964CRIS PORT
965P: Mikael Starvik
966M: starvik@axis.com
967L: dev-etrax@axis.com
968W: http://developer.axis.com
969S: Maintained
970
971CRYPTO API
972P: Herbert Xu
973M: herbert@gondor.apana.org.au
974P: David S. Miller
975M: davem@davemloft.net
976L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800977T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978S: Maintained
979
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100980CS5535 Audio ALSA driver
981P: Jaya Kumar
982M: jayakumar.alsa@gmail.com
983S: Maintained
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985CYBERPRO FB DRIVER
986P: Russell King
987M: rmk@arm.linux.org.uk
988W: http://www.arm.linux.org.uk/
989S: Maintained
990
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700991CYBLAFB FRAMEBUFFER DRIVER
992P: Knut Petersen
993M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800994L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700995S: Maintained
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997CYCLADES 2X SYNC CARD DRIVER
998P: Arnaldo Carvalho de Melo
999M: acme@conectiva.com.br
1000W: http://advogato.org/person/acme
1001L: cycsyn-devel@bazar.conectiva.com.br
1002S: Maintained
1003
1004CYCLADES ASYNC MUX DRIVER
1005M: async@cyclades.com
1006W: http://www.cyclades.com/
1007S: Supported
1008
1009CYCLADES PC300 DRIVER
1010M: pc300@cyclades.com
1011W: http://www.cyclades.com/
1012S: Supported
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014DAMA SLAVE for AX.25
1015P: Joerg Reuter
1016M: jreuter@yaina.de
1017W: http://yaina.de/jreuter/
1018W: http://www.qsl.net/dl1bke/
1019L: linux-hams@vger.kernel.org
1020S: Maintained
1021
1022DC395x SCSI driver
1023P: Oliver Neukum
1024M: oliver@neukum.name
1025P: Ali Akcaagac
1026M: aliakc@web.de
1027P: Jamie Lenehan
1028M: lenehan@twibble.org
1029W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001030L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031L: http://lists.twibble.org/mailman/listinfo/dc395x/
1032S: Maintained
1033
1034DC390/AM53C974 SCSI driver
1035P: Kurt Garloff
1036M: garloff@suse.de
1037W: http://www.garloff.de/kurt/linux/dc390/
1038P: Guennadi Liakhovetski
1039M: g.liakhovetski@gmx.de
1040S: Maintained
1041
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001042DCCP PROTOCOL
1043P: Arnaldo Carvalho de Melo
1044M: acme@mandriva.com
1045L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001046W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001047S: Maintained
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049DECnet NETWORK LAYER
1050P: Patrick Caulfield
1051M: patrick@tykepenguin.com
1052W: http://linux-decnet.sourceforge.net
1053L: linux-decnet-user@lists.sourceforge.net
1054S: Maintained
1055
1056DEFXX FDDI NETWORK DRIVER
1057P: Maciej W. Rozycki
1058M: macro@linux-mips.org
1059S: Maintained
1060
1061DELL LAPTOP SMM DRIVER
1062P: Massimo Dal Zotto
1063M: dz@debian.org
1064W: http://www.debian.org/~dz/i8k/
1065S: Maintained
1066
Doug Warzecha90563ec2005-09-06 15:17:15 -07001067DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1068P: Doug Warzecha
1069M: Douglas_Warzecha@dell.com
1070S: Maintained
1071
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001072DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073P: Alasdair Kergon
1074L: dm-devel@redhat.com
1075W: http://sources.redhat.com/dm
1076S: Maintained
1077
1078DEVICE NUMBER REGISTRY
1079P: Torben Mathiasen
1080M: device@lanana.org
1081W: http://lanana.org/docs/device-list/index.html
1082L: linux-kernel@vger.kernel.org
1083S: Maintained
1084
1085DEVICE FILESYSTEM
1086S: Obsolete
1087
1088DIGI INTL. EPCA DRIVER
1089P: Digi International, Inc
1090M: Eng.Linux@digi.com
1091L: Eng.Linux@digi.com
1092W: http://www.digi.com
1093S: Orphaned
1094
1095DIGI RIGHTSWITCH NETWORK DRIVER
1096P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001097L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098W: http://www.digi.com
1099S: Orphaned
1100
1101DIRECTORY NOTIFICATION
1102P: Stephen Rothwell
1103M: sfr@canb.auug.org.au
1104L: linux-kernel@vger.kernel.org
1105S: Supported
1106
1107DISK GEOMETRY AND PARTITION HANDLING
1108P: Andries Brouwer
1109M: aeb@cwi.nl
1110W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1111W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1112W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1113S: Maintained
1114
1115DISKQUOTA:
1116P: Jan Kara
1117M: jack@suse.cz
1118L: linux-kernel@vger.kernel.org
1119S: Maintained
1120
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001121DISTRIBUTED LOCK MANAGER
1122P: Patrick Caulfield
1123M: pcaulfie@redhat.com
1124P: David Teigland
1125M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001126L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001127W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001128T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1129T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001130S: Supported
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1133P: Tobias Ringstrom
1134M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001135L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136S: Maintained
1137
Martin Waitzba483d52005-06-17 13:20:59 -07001138DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001139P: Randy Dunlap
1140M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001141S: Maintained
1142
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001143DOCKING STATION DRIVER
1144P: Kristen Carlson Accardi
1145M: kristen.c.accardi@intel.com
1146L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001147S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149DOUBLETALK DRIVER
1150P: James R. Van Zandt
1151M: jrv@vanzandt.mv.com
1152L: blinux-list@redhat.com
1153S: Maintained
1154
1155DRIVER CORE, KOBJECTS, AND SYSFS
1156P: Greg Kroah-Hartman
1157M: gregkh@suse.de
1158L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001159T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160S: Supported
1161
1162DRM DRIVERS
1163P: David Airlie
1164M: airlied@linux.ie
1165L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001166T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167S: Maintained
1168
1169DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001170P: Francois Romieu
1171M: romieu@fr.zoreil.com
1172L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173S: Maintained
1174
1175DVB SUBSYSTEM AND DRIVERS
1176P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001177M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001179W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001180T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001181S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183EATA-DMA SCSI DRIVER
1184P: Michael Neuffer
1185L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1186S: Maintained
1187
1188EATA ISA/EISA/PCI SCSI DRIVER
1189P: Dario Ballabio
1190M: ballabio_dario@emc.com
1191L: linux-scsi@vger.kernel.org
1192S: Maintained
1193
1194EATA-PIO SCSI DRIVER
1195P: Michael Neuffer
1196M: mike@i-Connect.Net
1197L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1198S: Maintained
1199
1200EBTABLES
1201P: Bart De Schuymer
1202M: bart.de.schuymer@pandora.be
1203L: ebtables-user@lists.sourceforge.net
1204L: ebtables-devel@lists.sourceforge.net
1205W: http://ebtables.sourceforge.net/
1206S: Maintained
1207
Michael Halcrow237fead2006-10-04 02:16:22 -07001208ECRYPT FILE SYSTEM
1209P: Mike Halcrow, Phillip Hellewell
1210M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1211L: ecryptfs-devel@lists.sourceforge.net
1212W: http://ecryptfs.sourceforge.net/
1213S: Supported
1214
Alan Coxda9bb1d2006-01-18 17:44:13 -08001215EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001216P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001217M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001218L: bluesmoke-devel@lists.sourceforge.net
1219W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001220S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001221
1222EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001223P: Mark Gross
1224M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001225L: bluesmoke-devel@lists.sourceforge.net
1226W: bluesmoke.sourceforge.net
1227S: Maintained
1228
1229EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001230P: Doug Thompson
1231M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001232L: bluesmoke-devel@lists.sourceforge.net
1233W: bluesmoke.sourceforge.net
1234S: Maintained
1235
1236EDAC-R82600
1237P: Tim Small
1238M: tim@buttersideup.com
1239L: bluesmoke-devel@lists.sourceforge.net
1240W: bluesmoke.sourceforge.net
1241S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243EEPRO100 NETWORK DRIVER
1244P: Andrey V. Savochkin
1245M: saw@saw.sw.com.sg
1246S: Maintained
1247
Josh Triplett0bee8d22006-07-30 03:03:58 -07001248EFS FILESYSTEM
1249W: http://aeschi.ch.eu.org/efs/
1250S: Orphan
1251
Heiko J Schickfab97222006-09-22 15:22:22 -07001252EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1253P: Hoang-Nam Nguyen
1254M: hnguyen@de.ibm.com
1255P: Christoph Raisch
1256M: raisch@de.ibm.com
1257L: openib-general@openib.org
1258S: Supported
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260EMU10K1 SOUND DRIVER
1261P: James Courtier-Dutton
1262M: James@superbug.demon.co.uk
1263L: emu10k1-devel@lists.sourceforge.net
1264W: http://sourceforge.net/projects/emu10k1/
1265S: Maintained
1266
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001267EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001268P: James Smart
1269M: james.smart@emulex.com
1270L: linux-scsi@vger.kernel.org
1271W: http://sourceforge.net/projects/lpfcxxxx
1272S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274EPSON 1355 FRAMEBUFFER DRIVER
1275P: Christopher Hoover
1276M: ch@murgatroid.com, ch@hpl.hp.com
1277S: Maintained
1278
1279ETHEREXPRESS-16 NETWORK DRIVER
1280P: Philip Blundell
1281M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001282L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283S: Maintained
1284
1285ETHERNET BRIDGE
1286P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08001287M: shemminger@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288L: bridge@osdl.org
1289W: http://bridge.sourceforge.net/
1290S: Maintained
1291
1292ETHERTEAM 16I DRIVER
1293P: Mika Kuoppala
1294M: miku@iki.fi
1295S: Maintained
1296
1297EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001298L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299S: Maintained
1300
1301EXT3 FILE SYSTEM
1302P: Stephen Tweedie, Andrew Morton
1303M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001304L: linux-ext4@vger.kernel.org
1305S: Maintained
1306
1307EXT4 FILE SYSTEM
1308P: Stephen Tweedie, Andrew Morton
1309M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1310L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311S: Maintained
1312
Jean Delvaree53004e2006-01-09 23:26:14 +01001313F71805F HARDWARE MONITORING DRIVER
1314P: Jean Delvare
1315M: khali@linux-fr.org
1316L: lm-sensors@lm-sensors.org
1317S: Maintained
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319FARSYNC SYNCHRONOUS DRIVER
1320P: Kevin Curtis
1321M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322W: http://www.farsite.co.uk/
1323S: Supported
1324
1325FRAMEBUFFER LAYER
1326P: Antonino Daplas
1327M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001328L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329W: http://linux-fbdev.sourceforge.net/
1330S: Maintained
1331
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001332FREESCALE SOC FS_ENET DRIVER
1333P: Pantelis Antoniou
1334M: pantelis.antoniou@gmail.com
1335P: Vitaly Bordug
1336M: vbordug@ru.mvista.com
1337L: linuxppc-embedded@ozlabs.org
1338L: netdev@vger.kernel.org
1339S: Maintained
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341FILE LOCKING (flock() and fcntl()/lockf())
1342P: Matthew Wilcox
1343M: matthew@wil.cx
1344L: linux-fsdevel@vger.kernel.org
1345S: Maintained
1346
1347FILESYSTEMS (VFS and infrastructure)
1348P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001349M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350S: Maintained
1351
1352FIRMWARE LOADER (request_firmware)
1353L: linux-kernel@vger.kernel.org
1354S: Orphan
1355
1356FPU EMULATOR
1357P: Bill Metzenthen
1358M: billm@suburbia.net
1359W: http://suburbia.net/~billm/floating-point/emulator/
1360S: Maintained
1361
1362FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1363P: Mike McLagan
1364M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001365L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366S: Maintained
1367
1368FREEVXFS FILESYSTEM
1369P: Christoph Hellwig
1370M: hch@infradead.org
1371W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1372S: Maintained
1373
1374FUJITSU FR-V PORT
1375P: David Howells
1376M: dhowells@redhat.com
1377S: Maintained
1378
Miklos Szeredi04578f12005-09-09 13:10:22 -07001379FUSE: FILESYSTEM IN USERSPACE
1380P: Miklos Szeredi
1381M: miklos@szeredi.hu
1382L: fuse-devel@lists.sourceforge.net
1383W: http://fuse.sourceforge.net/
1384S: Maintained
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1387P: Rik Faith
1388M: faith@cs.unc.edu
1389L: linux-scsi@vger.kernel.org
1390S: Odd fixes (e.g., new signatures)
1391
1392GDT SCSI DISK ARRAY CONTROLLER DRIVER
1393P: Achim Leubner
1394M: achim_leubner@adaptec.com
1395L: linux-scsi@vger.kernel.org
1396W: http://www.icp-vortex.com/
1397S: Supported
1398
1399GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1400P: Krzysztof Halasa
1401M: khc@pm.waw.pl
1402W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1403S: Maintained
1404
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001405GFS2 FILE SYSTEM
1406P: Steven Whitehouse
1407M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001408L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001409W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001410T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1411T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001412S: Supported
1413
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001414GIGASET ISDN DRIVERS
1415P: Hansjoerg Lipp
1416M: hjlipp@web.de
1417P: Tilman Schmidt
1418M: tilman@imap.cc
1419L: gigaset307x-common@lists.sourceforge.net
1420W: http://gigaset307x.sourceforge.net/
1421S: Maintained
1422
Jean Delvare5b543962005-08-15 19:51:02 +02001423HARDWARE MONITORING
1424P: Jean Delvare
1425M: khali@linux-fr.org
1426L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001427W: http://www.lm-sensors.org/
1428T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001429S: Maintained
1430
Michael Buesch844dd052006-06-26 00:24:59 -07001431HARDWARE RANDOM NUMBER GENERATOR CORE
1432P: Michael Buesch
1433M: mb@bu3sch.de
1434S: Maintained
1435
Robert Love860e1d62005-08-31 23:57:59 -04001436HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1437P: Robert Love
1438M: rlove@rlove.org
1439M: linux-kernel@vger.kernel.org
1440W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1441S: Maintained
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443HARMONY SOUND DRIVER
1444P: Kyle McMartin
1445M: kyle@parisc-linux.org
1446W: http://www.parisc-linux.org/~kyle/harmony/
1447L: parisc-linux@lists.parisc-linux.org
1448S: Maintained
1449
1450HAYES ESP SERIAL DRIVER
1451P: Andrew J. Robinson
1452M: arobinso@nyx.net
1453L: linux-kernel@vger.kernel.org
1454W: http://www.nyx.net/~arobinso
1455S: Maintained
1456
1457HFS FILESYSTEM
1458P: Roman Zippel
1459M: zippel@linux-m68k.org
1460L: linux-kernel@vger.kernel.org
1461S: Maintained
1462
1463HGA FRAMEBUFFER DRIVER
1464P: Ferenc Bakonyi
1465M: fero@drama.obuda.kando.hu
1466L: linux-nvidia@lists.surfsouth.com
1467W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1468S: Maintained
1469
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001470HID CORE LAYER
1471P: Jiri Kosina
1472M: jkosina@suse.cz
1473L: linux-input@atrey.karlin.mff.cuni.cz
1474S: Maintained
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476HIGH-SPEED SCC DRIVER FOR AX.25
1477P: Klaus Kudielka
1478M: klaus.kudielka@ieee.org
1479L: linux-hams@vger.kernel.org
1480W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1481S: Maintained
1482
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001483HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1484P: HighPoint Linux Team
1485M: linux@highpoint-tech.com
1486W: http://www.highpoint-tech.com
1487S: Supported
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489HIPPI
1490P: Jes Sorensen
1491M: jes@trained-monkey.org
1492L: linux-hippi@sunsite.dk
1493S: Maintained
1494
1495HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1496P: Chirag Kantharia
1497M: chirag.kantharia@hp.com
1498L: iss_storagedev@hp.com
1499S: Maintained
1500
1501HEWLETT-PACKARD SMART2 RAID DRIVER
1502P: Chirag Kantharia
1503M: chirag.kantharia@hp.com
1504L: iss_storagedev@hp.com
1505S: Maintained
1506
1507HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1508P: Mike Miller
1509M: mike.miller@hp.com
1510L: iss_storagedev@hp.com
1511S: Supported
1512
Jouni Malinenff1d2762005-05-12 22:54:16 -04001513HOST AP DRIVER
1514P: Jouni Malinen
1515M: jkmaline@cc.hut.fi
1516L: hostap@shmoo.com
1517W: http://hostap.epitest.fi/
1518S: Maintained
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1521P: Jaroslav Kysela
1522M: perex@suse.cz
1523S: Maintained
1524
Bob Piccob9b03322005-11-07 00:59:19 -08001525HPET: High Precision Event Timers driver (hpet.c)
1526P: Clemens Ladisch
1527M: clemens@ladisch.de
1528S: Maintained
1529
1530HPET: i386
1531P: Venkatesh Pallipadi (Venki)
1532M: venkatesh.pallipadi@intel.com
1533S: Maintained
1534
1535HPET: x86_64
1536P: Andi Kleen and Vojtech Pavlik
1537M: ak@muc.de and vojtech@suse.cz
1538S: Maintained
1539
1540HPET: ACPI hpet.c
1541P: Bob Picco
1542M: bob.picco@hp.com
1543S: Maintained
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545HPFS FILESYSTEM
1546P: Mikulas Patocka
1547M: mikulas@artax.karlin.mff.cuni.cz
1548W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1549S: Maintained
1550
1551HUGETLB FILESYSTEM
1552P: William Irwin
1553M: wli@holomorphy.com
1554S: Maintained
1555
Jean Delvare5b543962005-08-15 19:51:02 +02001556I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557P: Jean Delvare
1558M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001559L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001560T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561S: Maintained
1562
1563I2O
1564P: Markus Lidel
1565M: markus.lidel@shadowconnect.com
1566W: http://i2o.shadowconnect.com/
1567S: Maintained
1568
1569i386 BOOT CODE
1570P: Riley H. Williams
1571M: Riley@Williams.Name
1572L: Linux-Kernel@vger.kernel.org
1573S: Maintained
1574
1575i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1576P: Dave Jones
1577M: davej@codemonkey.org.uk
1578P: H. Peter Anvin
1579M: hpa@zytor.com
1580S: Maintained
1581
1582i810 TCO TIMER WATCHDOG
1583P: Nils Faerber
1584M: nils@kernelconcepts.de
1585W: http://www.kernelconcepts.de/
1586S: Maintained
1587
1588IA64 (Itanium) PLATFORM
1589P: Tony Luck
1590M: tony.luck@intel.com
1591L: linux-ia64@vger.kernel.org
1592W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001593T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594S: Maintained
1595
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001596IBM ACPI EXTRAS DRIVER
1597P: Henrique de Moraes Holschuh
1598M: ibm-acpi@hmh.eng.br
1599L: ibm-acpi-devel@lists.sourceforge.net
1600W: http://ibm-acpi.sourceforge.net
1601W: http://thinkwiki.org/wiki/Ibm-acpi
1602T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1603S: Maintained
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001606P: Jes Sorensen
1607M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608L: linux-altix@sgi.com
1609L: linux-ia64@vger.kernel.org
1610W: http://www.sgi.com/altix
1611S: Maintained
1612
1613IBM MCA SCSI SUBSYSTEM DRIVER
1614P: Michael Lang
1615M: langa2@kph.uni-mainz.de
1616W: http://www.uni-mainz.de/~langm000/linux.html
1617S: Maintained
1618
1619IBM Power Linux RAID adapter
1620P: Brian King
1621M: brking@us.ibm.com
1622S: Supported
1623
1624IBM ServeRAID RAID DRIVER
1625P: Jack Hammer
1626P: Dave Jeffery
1627M: ipslinux@adaptec.com
1628W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1629S: Supported
1630
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001631IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001633M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001635T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636S: Maintained
1637
1638IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001639P: Alan Cox
1640M: alan@lxorguk.ukuu.org.uk
1641L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642S: Maintained
1643
1644IDE/ATAPI FLOPPY DRIVERS
1645P: Paul Bristow
1646M: Paul Bristow <paul@paulbristow.net>
1647W: http://paulbristow.net/linux/idefloppy.html
1648L: linux-kernel@vger.kernel.org
1649S: Maintained
1650
1651IDE/ATAPI TAPE DRIVERS
1652P: Gadi Oxman
1653M: Gadi Oxman <gadio@netvision.net.il>
1654L: linux-kernel@vger.kernel.org
1655S: Maintained
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657IEEE 1394 SUBSYSTEM
1658P: Ben Collins
1659M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001660P: Stefan Richter
1661M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662L: linux1394-devel@lists.sourceforge.net
1663W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001664T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665S: Maintained
1666
Stefan Richter87730d02006-09-16 12:24:00 +02001667IEEE 1394 IPV4 DRIVER (eth1394)
1668P: Stefan Richter
1669M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001671S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673IEEE 1394 PCILYNX DRIVER
1674P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001675M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001676P: Stefan Richter
1677M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001679S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681IEEE 1394 RAW I/O DRIVER
1682P: Ben Collins
1683M: bcollins@debian.org
1684P: Dan Dennedy
1685M: dan@dennedy.org
1686L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001687S: Maintained
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689IMS TWINTURBO FRAMEBUFFER DRIVER
1690P: Paul Mundt
1691M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001692L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693S: Maintained
1694
1695INFINIBAND SUBSYSTEM
1696P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001697M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698P: Sean Hefty
1699M: mshefty@ichips.intel.com
1700P: Hal Rosenstock
1701M: halr@voltaire.com
1702L: openib-general@openib.org
1703W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001704T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705S: Supported
1706
1707INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001708P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001709M: dmitry.torokhov@gmail.com
1710M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711L: linux-input@atrey.karlin.mff.cuni.cz
1712L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001713T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714S: Maintained
1715
Robert Lovec9f04f52005-07-15 12:21:07 -04001716INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001717P: John McCutchan
1718M: ttb@tentacle.dhs.org
1719P: Robert Love
1720M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001721L: linux-kernel@vger.kernel.org
1722S: Maintained
1723
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001724INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001725P: Sylvain Meyer
1726M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001727L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001728S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001731P: Antonino Daplas
1732M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001733L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001734S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1737P: Ingo Molnar
1738M: mingo@redhat.com
1739S: Maintained
1740
1741INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1742P: Jeff Garzik
1743M: jgarzik@pobox.com
1744W: http://sourceforge.net/projects/gkernel/
1745S: Maintained
1746
1747INTEL IA32 MICROCODE UPDATE SUPPORT
1748P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001749M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750S: Maintained
1751
Michael Buesch844dd052006-06-26 00:24:59 -07001752INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1753P: Deepak Saxena
1754M: dsaxena@plexity.net
1755S: Maintained
1756
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001757INTEL IXP2000 ETHERNET DRIVER
1758P: Lennert Buytenhek
1759M: kernel@wantstofly.org
1760L: netdev@vger.kernel.org
1761S: Maintained
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763INTEL PRO/100 ETHERNET SUPPORT
1764P: John Ronciak
1765M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766P: Jesse Brandeburg
1767M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001768P: Jeff Kirsher
1769M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001770P: Auke Kok
1771M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772W: http://sourceforge.net/projects/e1000/
1773S: Supported
1774
1775INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1776P: Jeb Cramer
1777M: cramerj@intel.com
1778P: John Ronciak
1779M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001780P: Jesse Brandeburg
1781M: jesse.brandeburg@intel.com
1782P: Jeff Kirsher
1783M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001784P: Auke Kok
1785M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786W: http://sourceforge.net/projects/e1000/
1787S: Supported
1788
1789INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001790P: Jeff Kirsher
1791M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792P: Ayyappan Veeraiyan
1793M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794P: John Ronciak
1795M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001796P: Jesse Brandeburg
1797M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001798P: Auke Kok
1799M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800W: http://sourceforge.net/projects/e1000/
1801S: Supported
1802
James Ketrenos826d2ab2005-11-07 18:56:59 -06001803INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1804P: Yi Zhu
1805M: yi.zhu@intel.com
1806P: James Ketrenos
1807M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001808L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001809L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1810W: http://ipw2100.sourceforge.net
1811S: Supported
1812
1813INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1814P: Yi Zhu
1815M: yi.zhu@intel.com
1816P: James Ketrenos
1817M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001818L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001819L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1820W: http://ipw2200.sourceforge.net
1821S: Supported
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823IOC3 DRIVER
1824P: Ralf Baechle
1825M: ralf@linux-mips.org
1826L: linux-mips@linux-mips.org
1827S: Maintained
1828
1829IP MASQUERADING:
1830P: Juanjo Ciarlante
1831M: jjciarla@raiz.uncu.edu.ar
1832S: Maintained
1833
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001834IPATH DRIVER:
1835P: Bryan O'Sullivan
1836M: support@pathscale.com
1837L: openib-general@openib.org
1838S: Supported
1839
Corey Minyard4409ebe2006-04-20 02:43:12 -07001840IPMI SUBSYSTEM
1841P: Corey Minyard
1842M: minyard@acm.org
1843L: openipmi-developer@lists.sourceforge.net
1844W: http://openipmi.sourceforge.net/
1845S: Supported
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847IPX NETWORK LAYER
1848P: Arnaldo Carvalho de Melo
1849M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001850L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851S: Maintained
1852
1853IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001854P: Samuel Ortiz
1855M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001856L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001858S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860ISAPNP
1861P: Jaroslav Kysela
1862M: perex@suse.cz
1863S: Maintained
1864
1865ISDN SUBSYSTEM
1866P: Karsten Keil
1867M: kkeil@suse.de
1868P: Kai Germaschewski
1869M: kai.germaschewski@gmx.de
1870L: isdn4linux@listserv.isdn4linux.de
1871W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001872T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873S: Maintained
1874
1875ISDN SUBSYSTEM (Eicon active card driver)
1876P: Armin Schindler
1877M: mac@melware.de
1878L: isdn4linux@listserv.isdn4linux.de
1879W: http://www.melware.de
1880S: Maintained
1881
1882JOURNALLING FLASH FILE SYSTEM (JFFS)
1883P: Axis Communications AB
1884M: jffs-dev@axis.com
1885L: jffs-dev@axis.com
1886W: http://www.developer.axis.com/software/jffs/
1887S: Maintained
1888
1889JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1890P: David Woodhouse
1891M: dwmw2@infradead.org
1892L: jffs-dev@axis.com
1893W: http://sources.redhat.com/jffs2/
1894S: Maintained
1895
1896JFS FILESYSTEM
1897P: Dave Kleikamp
1898M: shaggy@austin.ibm.com
1899L: jfs-discussion@lists.sourceforge.net
1900W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001901T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902S: Supported
1903
Josh Triplettde456d32006-07-30 03:04:00 -07001904JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001905P: Stephen Tweedie, Andrew Morton
1906M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001907L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001908S: Maintained
1909
Rudolf Marek4660cb32006-10-08 22:01:26 +02001910K8TEMP HARDWARE MONITORING DRIVER
1911P: Rudolf Marek
1912M: r.marek@assembler.cz
1913L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914S: Maintained
1915
1916KCONFIG
1917P: Roman Zippel
1918M: zippel@linux-m68k.org
1919L: kbuild-devel@lists.sourceforge.net
1920S: Maintained
1921
Vivek Goyalea6c2082006-05-20 14:59:55 -07001922KDUMP
1923P: Vivek Goyal
1924M: vgoyal@in.ibm.com
1925P: Haren Myneni
1926M: hbabu@us.ibm.com
1927L: fastboot@lists.osdl.org
1928L: linux-kernel@vger.kernel.org
1929W: http://lse.sourceforge.net/kdump/
1930S: Maintained
1931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932KERNEL AUTOMOUNTER (AUTOFS)
1933P: H. Peter Anvin
1934M: hpa@zytor.com
1935L: autofs@linux.kernel.org
1936S: Odd Fixes
1937
1938KERNEL AUTOMOUNTER v4 (AUTOFS4)
1939P: Ian Kent
1940M: raven@themaw.net
1941L: autofs@linux.kernel.org
1942S: Maintained
1943
1944KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1945P: Kai Germaschewski
1946M: kai@germaschewski.name
1947P: Sam Ravnborg
1948M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001949T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950S: Maintained
1951
1952KERNEL JANITORS
1953P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001954L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956S: Maintained
1957
1958KERNEL NFSD
1959P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001960M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961L: nfs@lists.sourceforge.net
1962W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001963S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Avi Kivity426d62e2006-12-13 00:34:03 -08001965KERNEL VIRTUAL MACHINE (KVM)
1966P: Avi Kivity
1967M: avi@qumranet.com
1968L: kvm-devel@lists.sourceforge.net
1969W: kvm.sourceforge.net
1970S: Supported
1971
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001972KEXEC
1973P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001974M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001975W: http://www.xmission.com/~ebiederm/files/kexec/
1976L: linux-kernel@vger.kernel.org
1977L: fastboot@osdl.org
1978S: Maintained
1979
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001980KPROBES
1981P: Prasanna S Panchamukhi
1982M: prasanna@in.ibm.com
1983P: Ananth N Mavinakayanahalli
1984M: ananth@in.ibm.com
1985P: Anil S Keshavamurthy
1986M: anil.s.keshavamurthy@intel.com
1987P: David S. Miller
1988M: davem@davemloft.net
1989L: linux-kernel@vger.kernel.org
1990S: Maintained
1991
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001992KS0108 LCD CONTROLLER DRIVER
1993P: Miguel Ojeda Sandonis
1994M: maxextreme@gmail.com
1995L: linux-kernel@vger.kernel.org
1996S: Maintained
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002000S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002LASI 53c700 driver for PARISC
2003P: James E.J. Bottomley
2004M: James.Bottomley@HansenPartnership.com
2005L: linux-scsi@vger.kernel.org
2006S: Maintained
2007
Richard Purdie263de9b2006-05-15 09:44:16 -07002008LED SUBSYSTEM
2009P: Richard Purdie
2010M: rpurdie@rpsys.net
2011S: Maintained
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013LEGO USB Tower driver
2014P: Juergen Stuber
2015M: starblue@users.sourceforge.net
2016L: legousb-devel@lists.sourceforge.net
2017W: http://legousb.sourceforge.net/
2018S: Maintained
2019
2020LINUX FOR IBM pSERIES (RS/6000)
2021P: Paul Mackerras
2022M: paulus@au.ibm.com
2023W: http://www.ibm.com/linux/ltc/projects/ppc
2024S: Supported
2025
2026LINUX FOR NCR VOYAGER
2027P: James Bottomley
2028M: James.Bottomley@HansenPartnership.com
2029W: http://www.hansenpartnership.com/voyager
2030S: Maintained
2031
2032LINUX FOR POWERPC
2033P: Paul Mackerras
2034M: paulus@samba.org
2035W: http://www.penguinppc.org/
2036L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002037T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038S: Supported
2039
2040LINUX FOR POWER MACINTOSH
2041P: Benjamin Herrenschmidt
2042M: benh@kernel.crashing.org
2043W: http://www.penguinppc.org/
2044L: linuxppc-dev@ozlabs.org
2045S: Maintained
2046
2047LINUX FOR POWERPC EMBEDDED MPC52XX
2048P: Sylvain Munaut
2049M: tnt@246tNt.com
2050W: http://www.246tNt.com/mpc52xx/
2051W: http://www.penguinppc.org/
2052L: linuxppc-dev@ozlabs.org
2053L: linuxppc-embedded@ozlabs.org
2054S: Maintained
2055
2056LINUX FOR POWERPC EMBEDDED PPC4XX
2057P: Matt Porter
2058M: mporter@kernel.crashing.org
2059W: http://www.penguinppc.org/
2060L: linuxppc-embedded@ozlabs.org
2061S: Maintained
2062
Tom Rinie93adf12005-07-26 12:49:53 -07002063LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064P: Tom Rini
2065M: trini@kernel.crashing.org
2066W: http://www.penguinppc.org/
2067L: linuxppc-embedded@ozlabs.org
2068S: Maintained
2069
Tom Rinie93adf12005-07-26 12:49:53 -07002070LINUX FOR POWERPC EMBEDDED PPC8XX
2071P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002072M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002073W: http://www.penguinppc.org/
2074L: linuxppc-embedded@ozlabs.org
2075S: Maintained
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002078P: Kumar Gala
2079M: galak@kernel.crashing.org
2080W: http://www.penguinppc.org/
2081L: linuxppc-embedded@ozlabs.org
2082S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Olof Johanssonab06ff32006-09-06 14:44:54 -05002084LINUX FOR POWERPC PA SEMI PWRFICIENT
2085P: Olof Johansson
2086M: olof@lixom.net
2087W: http://www.pasemi.com/
2088L: linuxppc-dev@ozlabs.org
2089S: Supported
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091LLC (802.2)
2092P: Arnaldo Carvalho de Melo
2093M: acme@conectiva.com.br
2094S: Maintained
2095
2096LINUX FOR 64BIT POWERPC
2097P: Paul Mackerras
2098M: paulus@samba.org
2099M: paulus@au.ibm.com
2100P: Anton Blanchard
2101M: anton@samba.org
2102M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002103W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002104L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105S: Supported
2106
2107LINUX SECURITY MODULE (LSM) FRAMEWORK
2108P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002109M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002110L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002112T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113S: Supported
2114
2115LM83 HARDWARE MONITOR DRIVER
2116P: Jean Delvare
2117M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002118L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119S: Maintained
2120
2121LM90 HARDWARE MONITOR DRIVER
2122P: Jean Delvare
2123M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002124L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125S: Maintained
2126
2127LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2128P: Richard Russon (FlatCap)
2129M: ldm@flatcap.org
2130L: ldm-devel@lists.sourceforge.net
2131W: http://ldm.sourceforge.net
2132S: Maintained
2133
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002134LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2135P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002136M: Eric.Moore@lsi.com
2137M: support@lsi.com
2138L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002139L: linux-scsi@vger.kernel.org
2140W: http://www.lsilogic.com/support
2141S: Supported
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2144P: Matthew Wilcox
2145M: matthew@wil.cx
2146L: linux-scsi@vger.kernel.org
2147S: Maintained
2148
2149M68K ARCHITECTURE
2150P: Geert Uytterhoeven
2151M: geert@linux-m68k.org
2152P: Roman Zippel
2153M: zippel@linux-m68k.org
2154L: linux-m68k@lists.linux-m68k.org
2155W: http://www.linux-m68k.org/
2156W: http://linux-m68k-cvs.ubb.ca/
2157S: Maintained
2158
2159M68K ON APPLE MACINTOSH
2160P: Joshua Thompson
2161M: funaho@jurai.org
2162W: http://www.mac.linux-m68k.org/
2163L: linux-mac68k@mac.linux-m68k.org
2164S: Maintained
2165
2166M68K ON HP9000/300
2167P: Philip Blundell
2168M: philb@gnu.org
2169W: http://www.tazenda.demon.co.uk/phil/linux-hp
2170S: Maintained
2171
2172MARVELL YUKON / SYSKONNECT DRIVER
2173P: Mirko Lindner
2174M: mlindner@syskonnect.de
2175P: Ralph Roesler
2176M: rroesler@syskonnect.de
2177W: http://www.syskonnect.com
2178S: Supported
2179
Michael Kerriskfaf16682005-07-31 22:34:47 -07002180MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002181P: Michael Kerrisk
2182M: mtk-manpages@gmx.net
2183W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2184S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002185
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002186MARVELL MV643XX ETHERNET DRIVER
2187P: Dale Farnsworth
2188M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002190M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002191L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002192S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194MATROX FRAMEBUFFER DRIVER
2195P: Petr Vandrovec
2196M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002197L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198S: Maintained
2199
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002200MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002201P: Neela Syam Kolli
2202M: Neela.Kolli@engenio.com
2203S: linux-scsi@vger.kernel.org
2204W: http://megaraid.lsilogic.com
2205S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002206
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002207MEMORY MANAGEMENT
2208L: linux-mm@kvack.org
2209L: linux-kernel@vger.kernel.org
2210W: http://www.linux-mm.org
2211S: Maintained
2212
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002213MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214P: David Woodhouse
2215M: dwmw2@infradead.org
2216W: http://www.linux-mtd.infradead.org/
2217L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002218T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219S: Maintained
2220
2221MICROTEK X6 SCANNER
2222P: Oliver Neukum
2223M: oliver@neukum.name
2224S: Maintained
2225
2226MIPS
2227P: Ralf Baechle
2228M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002229W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002231T: git www.linux-mips.org:/pub/scm/linux.git
2232S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234MISCELLANEOUS MCA-SUPPORT
2235P: James Bottomley
2236M: jejb@steeleye.com
2237L: linux-kernel@vger.kernel.org
2238S: Maintained
2239
2240MODULE SUPPORT
2241P: Rusty Russell
2242M: rusty@rustcorp.com.au
2243L: linux-kernel@vger.kernel.org
2244S: Maintained
2245
2246MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2247P: Stelian Pop
2248M: stelian@popies.net
2249W: http://popies.net/meye/
2250S: Maintained
2251
2252MOUSE AND MISC DEVICES [GENERAL]
2253P: Alessandro Rubini
2254M: rubini@ipvvis.unipv.it
2255L: linux-kernel@vger.kernel.org
2256S: Maintained
2257
Jiri Slabyd7354102006-12-08 02:38:35 -08002258MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2259P: Jiri Slaby
2260M: jirislaby@gmail.com
2261L: linux-kernel@vger.kernel.org
2262S: Maintained
2263
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002264MSI LAPTOP SUPPORT
2265P: Lennart Poettering
2266M: mzxreary@0pointer.de
2267L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2268W: http://0pointer.de/lennart/tchibo.html
2269S: Maintained
2270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271MTRR AND SIMILAR SUPPORT [i386]
2272P: Richard Gooch
2273M: rgooch@atnf.csiro.au
2274L: linux-kernel@vger.kernel.org
2275W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2276S: Maintained
2277
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002278MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2279P: Pierre Ossman
2280M: drzeus-mmc@drzeus.cx
2281L: linux-kernel@vger.kernel.org
2282S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284MULTISOUND SOUND DRIVER
2285P: Andrew Veliath
2286M: andrewtv@usa.net
2287S: Maintained
2288
Jiri Slabyd7354102006-12-08 02:38:35 -08002289MULTITECH MULTIPORT CARD (ISICOM)
2290P: Jiri Slaby
2291M: jirislaby@gmail.com
2292L: linux-kernel@vger.kernel.org
2293S: Maintained
2294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295NATSEMI ETHERNET DRIVER (DP8381x)
2296P: Tim Hockin
2297M: thockin@hockin.org
2298S: Maintained
2299
2300NCP FILESYSTEM
2301P: Petr Vandrovec
2302M: vandrove@vc.cvut.cz
2303L: linware@sh.cvut.cz
2304S: Maintained
2305
2306NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2307P: James E.J. Bottomley
2308M: James.Bottomley@HansenPartnership.com
2309L: linux-scsi@vger.kernel.org
2310S: Maintained
2311
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002312NETEM NETWORK EMULATOR
2313P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002314M: shemminger@linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002315L: netem@osdl.org
2316S: Maintained
2317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318NETFILTER/IPTABLES/IPCHAINS
2319P: Rusty Russell
2320P: Marc Boucher
2321P: James Morris
2322P: Harald Welte
2323P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002324P: Patrick McHardy
2325M: kaber@trash.net
2326L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002327L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002328L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329W: http://www.netfilter.org/
2330W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331S: Supported
2332
Paul Moore4cc67732006-09-25 15:57:13 -07002333NETLABEL
2334P: Paul Moore
2335M: paul.moore@hp.com
2336W: http://netlabel.sf.net
2337L: netdev@vger.kernel.org
2338S: Supported
2339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340NETROM NETWORK LAYER
2341P: Ralf Baechle
2342M: ralf@linux-mips.org
2343L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002344W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345S: Maintained
2346
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002347NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348P: Paul Clements
2349M: Paul.Clements@steeleye.com
2350S: Maintained
2351
2352NETWORK DEVICE DRIVERS
2353P: Andrew Morton
2354M: akpm@osdl.org
2355P: Jeff Garzik
2356M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002357L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002358T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359S: Maintained
2360
2361NETWORKING [GENERAL]
2362P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002363M: netdev@vger.kernel.org
2364L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002365W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366S: Maintained
2367
2368NETWORKING [IPv4/IPv6]
2369P: David S. Miller
2370M: davem@davemloft.net
2371P: Alexey Kuznetsov
2372M: kuznet@ms2.inr.ac.ru
2373P: Pekka Savola (ipv6)
2374M: pekkas@netcore.fi
2375P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002376M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377P: Hideaki YOSHIFUJI
2378M: yoshfuji@linux-ipv6.org
2379P: Patrick McHardy
2380M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002381L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002382T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383S: Maintained
2384
John W. Linville29f8f632006-01-18 14:52:48 -08002385NETWORKING [WIRELESS]
2386P: John W. Linville
2387M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002388L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002389T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2390S: Maintained
2391
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002392NETXEN (1/10) GbE SUPPORT
2393P: Amit S. Kale
2394M: amitkale@netxen.com
2395L: netdev@vger.kernel.org
2396W: http://www.netxen.com
2397S: Supported
2398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399IPVS
2400P: Wensong Zhang
2401M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002402P: Simon Horman
2403M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404P: Julian Anastasov
2405M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002406L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407S: Maintained
2408
2409NFS CLIENT
2410P: Trond Myklebust
2411M: trond.myklebust@fys.uio.no
2412L: linux-kernel@vger.kernel.org
2413S: Maintained
2414
2415NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002416P: Jan-Pascal van Best
2417M: janpascal@vanbest.org
2418P: Andreas Mohr
2419M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002420L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421S: Maintained
2422
2423NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2424P: YOKOTA Hiroshi
2425M: yokota@netlab.is.tsukuba.ac.jp
2426W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2427S: Maintained
2428
2429NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2430P: GOTO Masanori
2431M: gotom@debian.or.jp
2432P: YOKOTA Hiroshi
2433M: yokota@netlab.is.tsukuba.ac.jp
2434W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2435S: Maintained
2436
2437NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2438P: Eberhard Moenkeberg
2439M: emoenke@gwdg.de
2440L: linux-kernel@vger.kernel.org
2441S: Maintained
2442
2443NTFS FILESYSTEM
2444P: Anton Altaparmakov
2445M: aia21@cantab.net
2446L: linux-ntfs-dev@lists.sourceforge.net
2447L: linux-kernel@vger.kernel.org
2448W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002449T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450S: Maintained
2451
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002452NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002453P: Antonino Daplas
2454M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002455L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002456S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002458OPENCORES I2C BUS DRIVER
2459P: Peter Korsgaard
2460M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002461L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002462S: Maintained
2463
Mark Fashehccd979b2005-12-15 14:31:24 -08002464ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2465P: Mark Fasheh
2466M: mark.fasheh@oracle.com
2467P: Kurt Hackel
2468M: kurt.hackel@oracle.com
2469L: ocfs2-devel@oss.oracle.com
2470W: http://oss.oracle.com/projects/ocfs2/
2471S: Supported
2472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473OLYMPIC NETWORK DRIVER
2474P: Peter De Shrijver
2475M: p2@ace.ulyssis.student.kuleuven.ac.be
2476P: Mike Phillips
2477M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002478L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479L: linux-tr@linuxtr.net
2480W: http://www.linuxtr.net
2481S: Maintained
2482
Harald Weltec1986ee2005-11-13 16:06:29 -08002483OMNIKEY CARDMAN 4000 DRIVER
2484P: Harald Welte
2485M: laforge@gnumonks.org
2486S: Maintained
2487
Harald Welte77c44ab2005-11-13 16:06:26 -08002488OMNIKEY CARDMAN 4040 DRIVER
2489P: Harald Welte
2490M: laforge@gnumonks.org
2491S: Maintained
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493ONSTREAM SCSI TAPE DRIVER
2494P: Willem Riede
2495M: osst@riede.org
2496L: osst-users@lists.sourceforge.net
2497L: linux-scsi@vger.kernel.org
2498S: Maintained
2499
2500OPL3-SA2, SA3, and SAx DRIVER
2501P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002502M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503L: linux-sound@vger.kernel.org
2504S: Maintained
2505
2506OPROFILE
2507P: Philippe Elie
2508M: phil.el@wanadoo.fr
2509L: oprofile-list@lists.sf.net
2510S: Maintained
2511
2512ORINOCO DRIVER
2513P: Pavel Roskin
2514M: proski@gnu.org
2515P: David Gibson
2516M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002517L: orinoco-users@lists.sourceforge.net
2518L: orinoco-devel@lists.sourceforge.net
2519W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520S: Maintained
2521
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002522PA SEMI ETHERNET DRIVER
2523P: Olof Johansson
2524M: olof@lixom.net
2525L: netdev@vger.kernel.org
2526S: Maintained
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528PARALLEL PORT SUPPORT
2529P: Phil Blundell
2530M: philb@gnu.org
2531P: Tim Waugh
2532M: tim@cyberelk.net
2533P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534P: Andrea Arcangeli
2535M: andrea@suse.de
2536L: linux-parport@lists.infradead.org
2537W: http://people.redhat.com/twaugh/parport/
2538S: Maintained
2539
2540PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2541P: Tim Waugh
2542M: tim@cyberelk.net
2543L: linux-parport@lists.infradead.org
2544W: http://www.torque.net/linux-pp.html
2545S: Maintained
2546
2547PARISC ARCHITECTURE
2548P: Matthew Wilcox
2549M: matthew@wil.cx
2550P: Grant Grundler
2551M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002552P: Kyle McMartin
2553M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554L: parisc-linux@parisc-linux.org
2555W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002556T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2557T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558S: Maintained
2559
Jim Cromie1662d322006-10-06 00:43:59 -07002560PC87360 HARDWARE MONITORING DRIVER
2561P: Jim Cromie
2562M: jim.cromie@gmail.com
2563L: lm-sensors@lm-sensors.org
2564S: Maintained
2565
2566PC8736x GPIO DRIVER
2567P: Jim Cromie
2568M: jim.cromie@gmail.com
2569S: Maintained
2570
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002571PCI ERROR RECOVERY
2572P: Linas Vepstas
2573M: linas@austin.ibm.com
2574L: linux-kernel@vger.kernel.org
2575L: linux-pci@atrey.karlin.mff.cuni.cz
2576S: Supported
2577
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2579P: Thomas Sailer
2580M: sailer@ife.ee.ethz.ch
2581L: linux-sound@vger.kernel.org
2582W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2583S: Maintained
2584
2585PCI SUBSYSTEM
2586P: Greg Kroah-Hartman
2587M: gregkh@suse.de
2588L: linux-kernel@vger.kernel.org
2589L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002590T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591S: Supported
2592
2593PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002594P: Kristen Carlson Accardi
2595M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596S: Supported
2597
2598PCI HOTPLUG COMPAQ DRIVER
2599P: Greg Kroah-Hartman
2600M: greg@kroah.com
2601S: Maintained
2602
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002603PCIE HOTPLUG DRIVER
2604P: Kristen Carlson Accardi
2605M: kristen.c.accardi@intel.com
2606L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002607S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002608
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002610P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002611L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002613T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002614S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
2616PCNET32 NETWORK DRIVER
2617P: Thomas Bogendörfer
2618M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002619L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620S: Maintained
2621
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002622PER-TASK DELAY ACCOUNTING
2623P: Shailabh Nagar
2624M: nagar@watson.ibm.com
2625L: linux-kernel@vger.kernel.org
2626S: Maintained
2627
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002628PERSONALITY HANDLING
2629P: Christoph Hellwig
2630M: hch@infradead.org
2631L: linux-abi-devel@lists.sourceforge.net
2632S: Maintained
2633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634PHRAM MTD DRIVER
2635P: Jörn Engel
2636M: joern@wh.fh-wedel.de
2637L: linux-mtd@lists.infradead.org
2638S: Maintained
2639
Peter Osterlund249a6772005-09-27 21:45:30 -07002640PKTCDVD DRIVER
2641P: Peter Osterlund
2642M: petero2@telia.com
2643L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002644S: Maintained
2645
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646POSIX CLOCKS and TIMERS
2647P: George Anzinger
2648M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002649L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650S: Supported
2651
Eugene Surovegin24682972005-10-14 03:00:53 -07002652POWERPC 4xx EMAC DRIVER
2653P: Eugene Surovegin
2654M: ebs@ebshome.net
2655W: http://kernel.ebshome.net/emac/
2656L: linuxppc-embedded@ozlabs.org
2657L: netdev@vger.kernel.org
2658S: Maintained
2659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660PNP SUPPORT
2661P: Adam Belay
2662M: ambx1@neo.rr.com
2663S: Maintained
2664
Vitaly Wool999445d2007-01-04 13:07:03 +01002665PNXxxxx I2C DRIVER
2666P: Vitaly Wool
2667M: vitalywool@gmail.com
2668L: i2c@lm-sensors.org
2669S: Maintained
2670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671PPP PROTOCOL DRIVERS AND COMPRESSORS
2672P: Paul Mackerras
2673M: paulus@samba.org
2674L: linux-ppp@vger.kernel.org
2675S: Maintained
2676
2677PPP OVER ATM (RFC 2364)
2678P: Mitchell Blank Jr
2679M: mitch@sfgoth.com
2680S: Maintained
2681
2682PPP OVER ETHERNET
2683P: Michal Ostrowski
2684M: mostrows@speakeasy.net
2685S: Maintained
2686
2687PREEMPTIBLE KERNEL
2688P: Robert Love
2689M: rml@tech9.net
2690L: linux-kernel@vger.kernel.org
2691L: kpreempt-tech@lists.sourceforge.net
2692W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2693S: Supported
2694
2695PRISM54 WIRELESS DRIVER
2696P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002697M: developers@islsm.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002698L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699W: http://prism54.org
2700S: Maintained
2701
2702PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2703P: Peter Denison
2704M: promise@pnd-pc.demon.co.uk
2705W: http://www.pnd-pc.demon.co.uk/promise/
2706S: Maintained
2707
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002708PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2709P: Mikael Pettersson
2710M: mikpe@it.uu.se
2711L: linux-ide@vger.kernel.org
2712S: Maintained
2713
Geoff Levandf58a9d12006-11-23 00:46:51 +01002714PS3 PLATFORM SUPPORT
2715P: Geoff Levand
2716M: geoffrey.levand@am.sony.com
2717L: linuxppc-dev@ozlabs.org
2718L: cbe-oss-dev@ozlabs.org
2719S: Supported
2720
Michael Krufky83202042006-07-03 00:24:18 -07002721PVRUSB2 VIDEO4LINUX DRIVER
2722P: Mike Isely
2723M: isely@pobox.com
2724L: pvrusb2@isely.net
2725L: video4linux-list@redhat.com
2726W: http://www.isely.net/pvrusb2/
2727S: Maintained
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729PXA2xx SUPPORT
2730P: Nicolas Pitre
2731M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002732L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733S: Maintained
2734
2735QLOGIC QLA2XXX FC-SCSI DRIVER
2736P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002737M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738L: linux-scsi@vger.kernel.org
2739S: Supported
2740
Ron Mercer5a4faa82006-07-25 00:40:21 -07002741QLOGIC QLA3XXX NETWORK DRIVER
2742P: Ron Mercer
2743M: linux-driver@qlogic.com
2744L: netdev@vger.kernel.org
2745S: Supported
2746
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747QNX4 FILESYSTEM
2748P: Anders Larsen
2749M: al@alarsen.net
2750L: linux-kernel@vger.kernel.org
2751W: http://www.alarsen.net/linux/qnx4fs/
2752S: Maintained
2753
2754RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002755P: Benjamin Herrenschmidt
2756M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002757L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758S: Maintained
2759
2760RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002761P: Paul Mackerras
2762M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002763L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764S: Maintained
2765
2766RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2767P: Corey Thomas
2768M: corey@world.std.com
2769L: linux-kernel@vger.kernel.org
2770S: Maintained
2771
Matt Mackall9e95ce22005-04-16 15:25:56 -07002772RANDOM NUMBER DRIVER
2773P: Matt Mackall
2774M: mpm@selenic.com
2775S: Maintained
2776
Matt Porter394b7012005-11-07 01:00:15 -08002777RAPIDIO SUBSYSTEM
2778P: Matt Porter
2779M: mporter@kernel.crashing.org
2780L: linux-kernel@vger.kernel.org
2781S: Maintained
2782
Josh Triplett595182b2006-10-04 02:17:21 -07002783READ-COPY UPDATE (RCU)
2784P: Dipankar Sarma
2785M: dipankar@in.ibm.com
2786W: http://www.rdrop.com/users/paulmck/rclock/
2787L: linux-kernel@vger.kernel.org
2788S: Supported
2789
2790RCUTORTURE MODULE
2791P: Josh Triplett
2792M: josh@freedesktop.org
2793L: linux-kernel@vger.kernel.org
2794S: Maintained
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796REAL TIME CLOCK DRIVER
2797P: Paul Gortmaker
2798M: p_gortmaker@yahoo.com
2799L: linux-kernel@vger.kernel.org
2800S: Maintained
2801
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002802REAL TIME CLOCK (RTC) SUBSYSTEM
2803P: Alessandro Zummo
2804M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002805L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002806S: Maintained
2807
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808REISERFS FILE SYSTEM
2809P: Hans Reiser
2810M: reiserfs-dev@namesys.com
2811L: reiserfs-list@namesys.com
2812W: http://www.namesys.com
2813S: Supported
2814
2815ROCKETPORT DRIVER
2816P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817W: http://www.comtrol.com
2818S: Maintained
2819
2820ROSE NETWORK LAYER
2821P: Ralf Baechle
2822M: ralf@linux-mips.org
2823L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002824W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825S: Maintained
2826
2827RISCOM8 DRIVER
2828S: Orphan
2829
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002830S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002831P: Antonino Daplas
2832M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002833L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002834S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836S390
2837P: Martin Schwidefsky
2838M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002839P: Heiko Carstens
2840M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002842L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002843W: http://www.ibm.com/developerworks/linux/linux390/
2844S: Supported
2845
2846S390 NETWORK DRIVERS
2847P: Frank Pavlic
2848M: fpavlic@de.ibm.com
2849M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002850L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002851W: http://www.ibm.com/developerworks/linux/linux390/
2852S: Supported
2853
2854S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002855P: Swen Schillig
2856M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002857M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002858L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002859W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860S: Supported
2861
2862SAA7146 VIDEO4LINUX-2 DRIVER
2863P: Michael Hunold
2864M: michael@mihu.de
2865W: http://www.mihu.de/linux/saa7146
2866S: Maintained
2867
2868SBPCD CDROM DRIVER
2869P: Eberhard Moenkeberg
2870M: emoenke@gwdg.de
2871L: linux-kernel@vger.kernel.org
2872S: Maintained
2873
2874SC1200 WDT DRIVER
2875P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002876M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877S: Maintained
2878
2879SCHEDULER
2880P: Ingo Molnar
2881M: mingo@elte.hu
2882P: Robert Love [the preemptible kernel bits]
2883M: rml@tech9.net
2884L: linux-kernel@vger.kernel.org
2885S: Maintained
2886
2887SCSI CDROM DRIVER
2888P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002889M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890L: linux-scsi@vger.kernel.org
2891W: http://www.kernel.dk
2892S: Maintained
2893
2894SCSI SG DRIVER
2895P: Doug Gilbert
2896M: dgilbert@interlog.com
2897L: linux-scsi@vger.kernel.org
2898W: http://www.torque.net/sg
2899S: Maintained
2900
2901SCSI SUBSYSTEM
2902P: James E.J. Bottomley
2903M: James.Bottomley@SteelEye.com
2904L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002905T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906S: Maintained
2907
2908SCSI TAPE DRIVER
2909P: Kai Mäkisara
2910M: Kai.Makisara@kolumbus.fi
2911L: linux-scsi@vger.kernel.org
2912S: Maintained
2913
2914SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002915P: Sridhar Samudrala
2916M: sri@us.ibm.com
2917L: lksctp-developers@lists.sourceforge.net
2918S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
2920SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002921P: Jim Cromie
2922M: jim.cromie@gmail.com
2923S: Odd Fixes
2924
2925SCx200 GPIO DRIVER
2926P: Jim Cromie
2927M: jim.cromie@gmail.com
2928S: Maintained
2929
2930SCx200 HRT CLOCKSOURCE DRIVER
2931P: Jim Cromie
2932M: jim.cromie@gmail.com
2933S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
2935SECURITY CONTACT
2936P: Security Officers
2937M: security@kernel.org
2938S: Supported
2939
2940SELINUX SECURITY MODULE
2941P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002942M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002944M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945L: linux-kernel@vger.kernel.org (kernel issues)
2946L: selinux@tycho.nsa.gov (general discussion)
2947W: http://www.nsa.gov/selinux
2948S: Supported
2949
2950SERIAL ATA (SATA) SUBSYSTEM:
2951P: Jeff Garzik
2952M: jgarzik@pobox.com
2953L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002954T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955S: Supported
2956
2957SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2958P: Pat Gefre
2959M: pfg@sgi.com
2960L: linux-ia64@vger.kernel.org
2961S: Supported
2962
2963SGI VISUAL WORKSTATION 320 AND 540
2964P: Andrey Panin
2965M: pazke@donpac.ru
2966L: linux-visws-devel@lists.sf.net
2967W: http://linux-visws.sf.net
2968S: Maintained for 2.6.
2969
2970SIMTEC EB110ATX (Chalice CATS)
2971P: Ben Dooks
2972P: Vincent Sanders
2973M: support@simtec.co.uk
2974W: http://www.simtec.co.uk/products/EB110ATX/
2975S: Supported
2976
2977SIMTEC EB2410ITX (BAST)
2978P: Ben Dooks
2979P: Vincent Sanders
2980M: support@simtec.co.uk
2981W: http://www.simtec.co.uk/products/EB2410ITX/
2982S: Supported
2983
Francois Romieu92aab3c2005-07-30 13:11:18 +02002984SIS 190 ETHERNET DRIVER
2985P: Francois Romieu
2986M: romieu@fr.zoreil.com
2987L: netdev@vger.kernel.org
2988S: Maintained
2989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990SIS 5513 IDE CONTROLLER DRIVER
2991P: Lionel Bouton
2992M: Lionel.Bouton@inet6.fr
2993W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2994W: http://gyver.homeip.net/sis5513/index.html
2995S: Maintained
2996
2997SIS 900/7016 FAST ETHERNET DRIVER
2998P: Daniele Venzano
2999M: venza@brownhat.org
3000W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003001L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002S: Maintained
3003
3004SIS FRAMEBUFFER DRIVER
3005P: Thomas Winischhofer
3006M: thomas@winischhofer.net
3007W: http://www.winischhofer.net/linuxsisvga.shtml
3008S: Maintained
3009
3010SIS USB2VGA DRIVER
3011P: Thomas Winischhofer
3012M: thomas@winischhofer.net
3013W: http://www.winischhofer.at/linuxsisusbvga.shtml
3014S: Maintained
3015
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016SMC91x ETHERNET DRIVER
3017P: Nicolas Pitre
3018M: nico@cam.org
3019S: Maintained
3020
Daniel Drake8f0f8502006-07-18 22:00:25 +01003021SOFTMAC LAYER (IEEE 802.11)
3022P: Johannes Berg
3023M: johannes@sipsolutions.net
3024P: Joe Jezak
3025M: josejx@gentoo.org
3026P: Daniel Drake
3027M: dsd@gentoo.org
3028W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01003029L: netdev@vger.kernel.org
3030S: Maintained
3031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032SOFTWARE RAID (Multiple Disks) SUPPORT
3033P: Ingo Molnar
3034M: mingo@redhat.com
3035P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003036M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003038S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040SOFTWARE SUSPEND:
3041P: Pavel Machek
3042M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07003043L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044S: Maintained
3045
3046SONIC NETWORK DRIVER
3047P: Thomas Bogendoerfer
3048M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003049L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050S: Maintained
3051
3052SONY VAIO CONTROL DEVICE DRIVER
3053P: Stelian Pop
3054M: stelian@popies.net
3055W: http://popies.net/sonypi/
3056S: Maintained
3057
3058SOUND
3059P: Jaroslav Kysela
3060M: perex@suse.cz
3061L: alsa-devel@alsa-project.org
3062S: Maintained
3063
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003064SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3065P: Liam Girdwood
3066M: liam.girdwood@wolfsonmicro.com
3067L: alsa-devel@alsa-project.org
3068S: Supported
3069
Kumar Gala025c3982006-04-02 16:05:54 -05003070SPI SUBSYSTEM
3071P: David Brownell
3072M: dbrownell@users.sourceforge.net
3073L: spi-devel-general@lists.sourceforge.net
3074S: Maintained
3075
Steven Rostedt855f46a2006-08-05 12:14:50 -07003076STABLE BRANCH:
3077P: Greg Kroah-Hartman
3078M: greg@kroah.com
3079P: Chris Wright
3080M: chrisw@sous-sol.org
3081L: stable@kernel.org
3082S: Maintained
3083
Kylene Hall1c72d462005-05-01 08:59:13 -07003084TPM DEVICE DRIVER
3085P: Kylene Hall
3086M: kjhall@us.ibm.com
3087W: http://tpmdd.sourceforge.net
3088L: tpmdd-devel@lists.sourceforge.net
3089S: Maintained
3090
Mark Gross1a80ba82005-10-30 15:02:55 -08003091Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003092P: Mark Gross
3093M: mark.gross@intel.com
3094S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003095
Chris Zankel48b415c2005-06-23 22:01:07 -07003096TENSILICA XTENSA PORT (xtensa):
3097P: Chris Zankel
3098M: chris@zankel.net
3099S: Maintained
3100
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101UltraSPARC (sparc64):
3102P: David S. Miller
3103M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003105T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106S: Maintained
3107
3108SHARP LH SUPPORT (LH7952X & LH7A40X)
3109P: Marc Singer
3110M: elf@buici.com
3111W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003112L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113S: Maintained
3114
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003115SHPC HOTPLUG DRIVER
3116P: Kristen Carlson Accardi
3117M: kristen.c.accardi@intel.com
3118L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003119S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003120
Pierre Ossmand129bce2006-03-24 03:18:17 -08003121SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3122P: Pierre Ossman
3123M: drzeus-sdhci@drzeus.cx
3124L: sdhci-devel@list.drzeus.cx
3125W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3126S: Maintained
3127
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003128SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3129P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003130M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003131L: netdev@vger.kernel.org
3132S: Maintained
3133
Chris Boot1a87d942006-07-10 04:45:34 -07003134SOEKRIS NET48XX LED SUPPORT
3135P: Chris Boot
3136M: bootc@bootc.net
3137S: Maintained
3138
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139SPARC (sparc32):
3140P: William L. Irwin
3141M: wli@holomorphy.com
3142L: sparclinux@vger.kernel.org
3143S: Maintained
3144
3145SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3146P: Roger Wolff
3147M: R.E.Wolff@BitWizard.nl
3148L: linux-kernel@vger.kernel.org ?
3149S: Supported
3150
Jim Lewis2752e402006-09-29 02:01:19 -07003151SPIDERNET NETWORK DRIVER for CELL
3152P: Jim Lewis
3153M: jim@jklewis.com
3154L: netdev@vger.kernel.org
3155S: Supported
3156
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157SRM (Alpha) environment access
3158P: Jan-Benedict Glaw
3159M: jbglaw@lug-owl.de
3160L: linux-kernel@vger.kernel.org
3161S: Maintained
3162
3163STARFIRE/DURALAN NETWORK DRIVER
3164P: Ion Badulescu
3165M: ionut@cs.columbia.edu
3166S: Maintained
3167
3168STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3169W: http://mosquitonet.Stanford.EDU/strip.html
3170S: Unsupported ?
3171
3172STRADIS MPEG-2 DECODER DRIVER
3173P: Nathan Laredo
3174M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175W: http://www.stradis.com/
3176S: Maintained
3177
3178SUPERH (sh)
3179P: Paul Mundt
3180M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003181L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183S: Maintained
3184
3185SUPERH64 (sh64)
3186P: Paul Mundt
3187M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188L: linuxsh-shmedia-dev@lists.sourceforge.net
3189W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190S: Maintained
3191
3192SUN3/3X
3193P: Sam Creasey
3194M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195W: http://sammy.net/sun3/
3196S: Maintained
3197
3198SVGA HANDLING
3199P: Martin Mares
3200M: mj@ucw.cz
3201L: linux-video@atrey.karlin.mff.cuni.cz
3202S: Maintained
3203
3204SYSV FILESYSTEM
3205P: Christoph Hellwig
3206M: hch@infradead.org
3207S: Maintained
3208
Stephen Hemminger781b4562006-07-10 20:25:29 -07003209TC CLASSIFIER
3210P: Jamal Hadi Salim
3211M: hadi@cyberus.ca
3212L: netdev@vger.kernel.org
3213S: Maintained
3214
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003215TCP LOW PRIORITY MODULE
3216P: Wong Hoi Sing, Edison
3217M: hswong3i@gmail.com
3218P: Hung Hing Lun, Mike
3219M: hlhung3i@gmail.com
3220W: http://tcp-lp-mod.sourceforge.net/
3221S: Maintained
3222
Alex Dubov4020f2d2006-10-04 02:15:37 -07003223TI FLASH MEDIA INTERFACE DRIVER
3224P: Alex Dubov
3225M: oakad@yahoo.com
3226S: Maintained
3227
Michael Buesch844dd052006-06-26 00:24:59 -07003228TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3229P: Deepak Saxena
3230M: dsaxena@plexity.net
3231S: Maintained
3232
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003233TASKSTATS STATISTICS INTERFACE
3234P: Shailabh Nagar
3235M: nagar@watson.ibm.com
3236L: linux-kernel@vger.kernel.org
3237S: Maintained
3238
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003240P: Romain Lievin
3241M: roms@lpg.ticalc.org
3242S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
Per Lidene86eaa32006-01-12 16:45:18 +01003244TIPC NETWORK LAYER
3245P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003246M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003247P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003248M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003249P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003250M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003251L: tipc-discussion@lists.sourceforge.net
3252W: http://tipc.sourceforge.net/
3253W: http://tipc.cslab.ericsson.net/
3254T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3255S: Maintained
3256
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257TLAN NETWORK DRIVER
3258P: Samuel Chessman
3259M: chessman@tux.org
3260L: tlan-devel@lists.sourceforge.net
3261W: http://sourceforge.net/projects/tlan/
3262S: Maintained
3263
3264TOKEN-RING NETWORK DRIVER
3265P: Mike Phillips
3266M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003267L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268L: linux-tr@linuxtr.net
3269W: http://www.linuxtr.net
3270S: Maintained
3271
3272TOSHIBA ACPI EXTRAS DRIVER
3273P: John Belmonte
3274M: toshiba_acpi@memebeam.org
3275W: http://memebeam.org/toys/ToshibaAcpiDriver
3276S: Maintained
3277
3278TOSHIBA SMM DRIVER
3279P: Jonathan Buzzard
3280M: jonathan@buzzard.org.uk
3281L: tlinux-users@tce.toshiba-dme.co.jp
3282W: http://www.buzzard.org.uk/toshiba/
3283S: Maintained
3284
3285TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3286P: Muli Ben-Yehuda
3287M: mulix@mulix.org
3288L: linux-kernel@vger.kernel.org
3289S: Maintained
3290
3291TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003292P: Adrian Bunk
3293M: trivial@kernel.org
3294L: linux-kernel@vger.kernel.org
3295W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3296T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3297S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
3299TMS380 TOKEN-RING NETWORK DRIVER
3300P: Adam Fritzler
3301M: mid@auk.cx
3302L: linux-tr@linuxtr.net
3303W: http://www.auk.cx/tms380tr/
3304S: Maintained
3305
3306TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003307P: Valerie Henson
3308M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309L: tulip-users@lists.sourceforge.net
3310W: http://sourceforge.net/projects/tulip/
3311S: Maintained
3312
3313TUN/TAP driver
3314P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003315M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316L: vtun@office.satix.net
3317W: http://vtun.sourceforge.net/tun
3318S: Maintained
3319
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003320TURBOCHANNEL SUBSYSTEM
3321P: Maciej W. Rozycki
3322M: macro@linux-mips.org
3323S: Maintained
3324
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325U14-34F SCSI DRIVER
3326P: Dario Ballabio
3327M: ballabio_dario@emc.com
3328L: linux-scsi@vger.kernel.org
3329S: Maintained
3330
3331UDF FILESYSTEM
3332P: Ben Fennema
3333M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334W: http://linux-udf.sourceforge.net
3335S: Maintained
3336
3337UNIFORM CDROM DRIVER
3338P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003339M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340L: linux-kernel@vger.kernel.org
3341W: http://www.kernel.dk
3342S: Maintained
3343
3344USB ACM DRIVER
3345P: Oliver Neukum
3346M: oliver@neukum.name
3347L: linux-usb-users@lists.sourceforge.net
3348L: linux-usb-devel@lists.sourceforge.net
3349S: Maintained
3350
3351USB BLOCK DRIVER (UB ub)
3352P: Pete Zaitcev
3353M: zaitcev@redhat.com
3354L: linux-kernel@vger.kernel.org
3355L: linux-usb-devel@lists.sourceforge.net
3356S: Supported
3357
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358USB CDC ETHERNET DRIVER
3359P: Greg Kroah-Hartman
3360M: greg@kroah.com
3361L: linux-usb-users@lists.sourceforge.net
3362L: linux-usb-devel@lists.sourceforge.net
3363S: Maintained
3364W: http://www.kroah.com/linux-usb/
3365
3366USB EHCI DRIVER
3367P: David Brownell
3368M: dbrownell@users.sourceforge.net
3369L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003370S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Luca Risolia7ce08c92006-01-11 02:06:59 +00003372USB ET61X[12]51 DRIVER
3373P: Luca Risolia
3374M: luca.risolia@studio.unibo.it
3375L: linux-usb-devel@lists.sourceforge.net
3376L: video4linux-list@redhat.com
3377W: http://www.linux-projects.org
3378S: Maintained
3379
David Brownell69ae9e32006-11-14 02:03:31 -08003380USB GADGET/PERIPHERAL SUBSYSTEM
3381P: David Brownell
3382M: dbrownell@users.sourceforge.net
3383L: linux-usb-devel@lists.sourceforge.net
3384W: http://www.linux-usb.org/gadget
3385S: Maintained
3386
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387USB HID/HIDBP DRIVERS
Jiri Kosina641266f2007-01-15 09:56:21 +01003388P: Jiri Kosina
3389M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390L: linux-usb-devel@lists.sourceforge.net
3391S: Maintained
3392
3393USB HUB DRIVER
3394P: Johannes Erdfelt
3395M: johannes@erdfelt.com
3396L: linux-usb-users@lists.sourceforge.net
3397L: linux-usb-devel@lists.sourceforge.net
3398S: Maintained
3399
Olav Kongas959eea22005-11-03 17:38:14 +02003400USB ISP116X DRIVER
3401P: Olav Kongas
3402M: ok@artecdesign.ee
3403L: linux-usb-devel@lists.sourceforge.net
3404S: Maintained
3405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406USB KAWASAKI LSI DRIVER
3407P: Oliver Neukum
3408M: oliver@neukum.name
3409L: linux-usb-users@lists.sourceforge.net
3410L: linux-usb-devel@lists.sourceforge.net
3411S: Maintained
3412
3413USB MASS STORAGE DRIVER
3414P: Matthew Dharm
3415M: mdharm-usb@one-eyed-alien.net
3416L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003417L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418S: Maintained
3419W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3420
3421USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003422P: David Brownell
3423M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424L: linux-usb-users@lists.sourceforge.net
3425L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003426S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
Matthias Urlichsba460e42005-07-14 00:33:47 -07003428USB OPTION-CARD DRIVER
3429P: Matthias Urlichs
3430M: smurf@smurf.noris.de
3431L: linux-usb-devel@lists.sourceforge.net
3432S: Maintained
3433
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434USB OV511 DRIVER
3435P: Mark McClelland
3436M: mmcclell@bigfoot.com
3437L: linux-usb-users@lists.sourceforge.net
3438L: linux-usb-devel@lists.sourceforge.net
3439W: http://alpha.dyndns.org/ov511/
3440S: Maintained
3441
3442USB PEGASUS DRIVER
3443P: Petko Manolov
3444M: petkan@users.sourceforge.net
3445L: linux-usb-users@lists.sourceforge.net
3446L: linux-usb-devel@lists.sourceforge.net
3447W: http://pegasus2.sourceforge.net/
3448S: Maintained
3449
3450USB PRINTER DRIVER
3451P: Vojtech Pavlik
3452M: vojtech@suse.cz
3453L: linux-usb-users@lists.sourceforge.net
3454L: linux-usb-devel@lists.sourceforge.net
3455S: Maintained
3456
3457USB RTL8150 DRIVER
3458P: Petko Manolov
3459M: petkan@users.sourceforge.net
3460L: linux-usb-users@lists.sourceforge.net
3461L: linux-usb-devel@lists.sourceforge.net
3462W: http://pegasus2.sourceforge.net/
3463S: Maintained
3464
3465USB SE401 DRIVER
3466P: Jeroen Vreeken
3467M: pe1rxq@amsat.org
3468L: linux-usb-users@lists.sourceforge.net
3469L: linux-usb-devel@lists.sourceforge.net
3470W: http://www.chello.nl/~j.vreeken/se401/
3471S: Maintained
3472
3473USB SERIAL CYBERJACK DRIVER
3474P: Matthias Bruestle and Harald Welte
3475M: support@reiner-sct.com
3476W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3477S: Maintained
3478
3479USB SERIAL DIGI ACCELEPORT DRIVER
3480P: Peter Berger and Al Borchers
3481M: pberger@brimson.com
3482M: alborchers@steinerpoint.com
3483L: linux-usb-users@lists.sourceforge.net
3484L: linux-usb-devel@lists.sourceforge.net
3485S: Maintained
3486
3487USB SERIAL DRIVER
3488P: Greg Kroah-Hartman
3489M: gregkh@suse.de
3490L: linux-usb-users@lists.sourceforge.net
3491L: linux-usb-devel@lists.sourceforge.net
3492S: Supported
3493
3494USB SERIAL BELKIN F5U103 DRIVER
3495P: William Greathouse
3496M: wgreathouse@smva.com
3497L: linux-usb-users@lists.sourceforge.net
3498L: linux-usb-devel@lists.sourceforge.net
3499S: Maintained
3500
3501USB SERIAL CYPRESS M8 DRIVER
3502P: Lonnie Mendez
3503M: dignome@gmail.com
3504L: linux-usb-users@lists.sourceforge.net
3505L: linux-usb-devel@lists.sourceforge.net
3506S: Maintained
3507W: http://geocities.com/i0xox0i
3508W: http://firstlight.net/cvs
3509
3510USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3511L: linux-usb-users@lists.sourceforge.net
3512L: linux-usb-devel@lists.sourceforge.net
3513S: Maintained
3514
3515USB AUERSWALD DRIVER
3516P: Wolfgang Muees
3517M: wolfgang@iksw-muees.de
3518L: linux-usb-users@lists.sourceforge.net
3519L: linux-usb-devel@lists.sourceforge.net
3520S: Maintained
3521
3522USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3523P: Gary Brubaker
3524M: xavyer@ix.netcom.com
3525L: linux-usb-users@lists.sourceforge.net
3526L: linux-usb-devel@lists.sourceforge.net
3527S: Maintained
3528
3529USB SERIAL KEYSPAN DRIVER
3530P: Greg Kroah-Hartman
3531M: greg@kroah.com
3532L: linux-usb-users@lists.sourceforge.net
3533L: linux-usb-devel@lists.sourceforge.net
3534W: http://www.kroah.com/linux/
3535S: Maintained
3536
3537USB SERIAL WHITEHEAT DRIVER
3538P: Stuart MacDonald
3539M: stuartm@connecttech.com
3540L: linux-usb-users@lists.sourceforge.net
3541L: linux-usb-devel@lists.sourceforge.net
3542W: http://www.connecttech.com
3543S: Supported
3544
3545USB SN9C10x DRIVER
3546P: Luca Risolia
3547M: luca.risolia@studio.unibo.it
3548L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003549L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550W: http://www.linux-projects.org
3551S: Maintained
3552
3553USB SUBSYSTEM
3554P: Greg Kroah-Hartman
3555M: gregkh@suse.de
3556L: linux-usb-users@lists.sourceforge.net
3557L: linux-usb-devel@lists.sourceforge.net
3558W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003559T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560S: Supported
3561
3562USB UHCI DRIVER
3563P: Alan Stern
3564M: stern@rowland.harvard.edu
3565L: linux-usb-users@lists.sourceforge.net
3566L: linux-usb-devel@lists.sourceforge.net
3567S: Maintained
3568
David Brownell69ae9e32006-11-14 02:03:31 -08003569USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570P: David Brownell
3571M: dbrownell@users.sourceforge.net
3572L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003573W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574S: Maintained
3575
3576USB W996[87]CF DRIVER
3577P: Luca Risolia
3578M: luca.risolia@studio.unibo.it
3579L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003580L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581W: http://www.linux-projects.org
3582S: Maintained
3583
Luca Risolia60f78052006-02-06 16:29:35 +00003584USB ZC0301 DRIVER
3585P: Luca Risolia
3586M: luca.risolia@studio.unibo.it
3587L: linux-usb-devel@lists.sourceforge.net
3588L: video4linux-list@redhat.com
3589W: http://www.linux-projects.org
3590S: Maintained
3591
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592USB ZD1201 DRIVER
3593P: Jeroen Vreeken
3594M: pe1rxq@amsat.org
3595L: linux-usb-users@lists.sourceforge.net
3596L: linux-usb-devel@lists.sourceforge.net
3597W: http://linux-lc100020.sourceforge.net
3598S: Maintained
3599
3600USER-MODE LINUX
3601P: Jeff Dike
3602M: jdike@karaya.com
3603L: user-mode-linux-devel@lists.sourceforge.net
3604L: user-mode-linux-user@lists.sourceforge.net
3605W: http://user-mode-linux.sourceforge.net
3606S: Maintained
3607
3608FAT/VFAT/MSDOS FILESYSTEM:
3609P: OGAWA Hirofumi
3610M: hirofumi@mail.parknet.co.jp
3611L: linux-kernel@vger.kernel.org
3612S: Maintained
3613
3614VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3615P: Jeff Garzik
3616S: Odd fixes
3617
3618VIA RHINE NETWORK DRIVER
3619P: Roger Luethi
3620M: rl@hellgate.ch
3621S: Maintained
3622
Jean Delvare32c0a522005-09-22 21:47:58 +02003623VIAPRO SMBUS DRIVER
3624P: Jean Delvare
3625M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003626L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003627S: Maintained
3628
Francois Romieu01f20732007-01-26 00:57:17 -08003629VIA VELOCITY NETWORK DRIVER
3630P: Francois Romieu
3631M: romieu@fr.zoreil.com
3632L: netdev@vger.kernel.org
3633S: Maintained
3634
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635UCLINUX (AND M68KNOMMU)
3636P: Greg Ungerer
3637M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003639L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640S: Maintained
3641
3642UCLINUX FOR NEC V850
3643P: Miles Bader
3644M: uclinux-v850@lsi.nec.co.jp
3645W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3646W: http://www.ee.nec.de/uclinux/
3647S: Supported
3648
3649UCLINUX FOR RENESAS H8/300
3650P: Yoshinori Sato
3651M: ysato@users.sourceforge.jp
3652W: http://uclinux-h8.sourceforge.jp/
3653S: Supported
3654
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003655UFS FILESYSTEM
3656P: Evgeniy Dushistov
3657M: dushistov@mail.ru
3658L: linux-kernel@vger.kernel.org
3659S: Maintained
3660
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661USB DIAMOND RIO500 DRIVER
3662P: Cesar Miquel
3663M: miquel@df.uba.ar
3664L: rio500-users@lists.sourceforge.net
3665W: http://rio500.sourceforge.net
3666S: Maintained
3667
3668VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003669P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003670M: mchehab@infradead.org
3671M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003673W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003674T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003675S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676
Juerg Haefligerab413192006-09-24 20:54:04 +02003677VT1211 HARDWARE MONITOR DRIVER
3678P: Juerg Haefliger
3679M: juergh@gmail.com
3680L: lm-sensors@lm-sensors.org
3681S: Maintained
3682
Roger Lucas1de9e372005-11-26 20:20:05 +01003683VT8231 HARDWARE MONITOR DRIVER
3684P: Roger Lucas
3685M: roger@planbit.co.uk
3686L: lm-sensors@lm-sensors.org
3687S: Maintained
3688
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689W1 DALLAS'S 1-WIRE BUS
3690P: Evgeniy Polyakov
3691M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692S: Maintained
3693
Charles Spirakis13927072006-07-05 18:05:15 +02003694W83791D HARDWARE MONITORING DRIVER
3695P: Charles Spirakis
3696M: bezaur@gmail.com
3697L: lm-sensors@lm-sensors.org
3698S: Maintained
3699
Rudolf Marek61db0112006-12-12 18:18:30 +01003700W83793 HARDWARE MONITORING DRIVER
3701P: Rudolf Marek
3702M: r.marek@assembler.cz
3703L: lm-sensors@lm-sensors.org
3704S: Maintained
3705
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706W83L51xD SD/MMC CARD INTERFACE DRIVER
3707P: Pierre Ossman
3708M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003709L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710W: http://projects.drzeus.cx/wbsd
3711S: Maintained
3712
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003713WATCHDOG DEVICE DRIVERS
3714P: Wim Van Sebroeck
3715M: wim@iguana.be
3716T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3717S: Maintained
3718
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3720P: Jean Tourrilhes
3721M: jt@hpl.hp.com
3722W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3723S: Maintained
3724
3725WD7000 SCSI DRIVER
3726P: Miroslav Zagorac
3727M: zaga@fly.cc.fer.hr
3728L: linux-scsi@vger.kernel.org
3729S: Maintained
3730
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003731WISTRON LAPTOP BUTTON DRIVER
3732P: Miloslav Trmac
3733M: mitr@volny.cz
3734S: Maintained
3735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736WL3501 WIRELESS PCMCIA CARD DRIVER
3737P: Arnaldo Carvalho de Melo
3738M: acme@conectiva.com.br
3739W: http://advogato.org/person/acme
3740S: Maintained
3741
3742X.25 NETWORK LAYER
3743P: Henner Eisen
3744M: eis@baty.hanse.de
3745L: linux-x25@vger.kernel.org
3746S: Maintained
3747
3748XFS FILESYSTEM
3749P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003750P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003752L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003754T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755S: Supported
3756
Peter Korsgaard238b8722006-12-06 20:35:17 -08003757XILINX UARTLITE SERIAL DRIVER
3758P: Peter Korsgaard
3759M: jacmet@sunsite.dk
3760L: linux-serial@vger.kernel.org
3761S: Maintained
3762
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763X86 3-LEVEL PAGING (PAE) SUPPORT
3764P: Ingo Molnar
3765M: mingo@redhat.com
3766S: Maintained
3767
3768X86-64 port
3769P: Andi Kleen
3770M: ak@suse.de
3771L: discuss@x86-64.org
3772W: http://www.x86-64.org
3773S: Maintained
3774
3775YAM DRIVER FOR AX.25
3776P: Jean-Paul Roubelat
3777M: jpr@f6fbb.org
3778L: linux-hams@vger.kernel.org
3779S: Maintained
3780
Henkaf64a5e2005-10-12 15:02:56 +02003781YEALINK PHONE DRIVER
3782P: Henk Vergonet
3783M: Henk.Vergonet@gmail.com
3784L: usbb2k-api-dev@nongnu.org
3785S: Maintained
3786
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787Z8530 DRIVER FOR AX.25
3788P: Joerg Reuter
3789M: jreuter@yaina.de
3790W: http://yaina.de/jreuter/
3791W: http://www.qsl.net/dl1bke/
3792L: linux-hams@vger.kernel.org
3793S: Maintained
3794
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003795ZD1211RW WIRELESS DRIVER
3796P: Daniel Drake
3797M: dsd@gentoo.org
3798P: Ulrich Kunitz
3799M: kune@deine-taler.de
3800W: http://zd1211.ath.cx/wiki/DriverRewrite
3801L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3802S: Maintained
3803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804ZF MACHZ WATCHDOG
3805P: Fernando Fuganti
3806M: fuganti@netbank.com.br
3807W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3808S: Maintained
3809
3810ZR36067 VIDEO FOR LINUX DRIVER
3811P: Ronald Bultje
3812M: rbultje@ronald.bitfreak.net
3813L: mjpeg-users@lists.sourceforge.net
3814W: http://mjpeg.sourceforge.net/driver-zoran/
3815S: Maintained
3816
3817ZR36120 VIDEO FOR LINUX DRIVER
3818P: Pauline Middelink
3819M: middelin@polyware.nl
3820W: http://www.polyware.nl/~middelin/En/hobbies.html
3821W: http://www.polyware.nl/~middelin/hobbies.html
3822S: Maintained
3823
3824THE REST
3825P: Linus Torvalds
3826S: Buried alive in reporters