blob: 3780623cc70ce9bba63834ad52b9ca17c64700d5 [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
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700638AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700639P: Haavard Skinnemoen
640M: hskinnemoen@atmel.com
641W: http://www.atmel.com/products/AVR32/
642W: http://avr32linux.org/
643W: http://avrfreaks.net/
644S: Supported
645
646AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700647P: Haavard Skinnemoen
648M: hskinnemoen@atmel.com
649S: Supported
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651AX.25 NETWORK LAYER
652P: Ralf Baechle
653M: ralf@linux-mips.org
654L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200655W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656S: Maintained
657
658BAYCOM/HDLCDRV DRIVERS FOR AX.25
659P: Thomas Sailer
660M: t.sailer@alumni.ethz.ch
661L: linux-hams@vger.kernel.org
662W: http://www.baycom.org/~tom/ham/ham.html
663S: Maintained
664
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200665BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
666P: Larry Finger
667M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200668P: Stefano Brivio
669M: st3@riseup.net
670W: http://bcm43xx.berlios.de/
671S: Maintained
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673BEFS FILE SYSTEM
674P: Sergey S. Kostyliov
675M: rathamahata@php4.ru
676L: linux-kernel@vger.kernel.org
677S: Maintained
678
679BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
680P: Kenji Hollis
681W: http://ftp.bitgate.com/pcwd/
682S: Maintained
683
684BFS FILE SYSTEM
685P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800686M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687L: linux-kernel@vger.kernel.org
688S: Maintained
689
690BLOCK LAYER
691P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200692M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800694T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695S: Maintained
696
697BLUETOOTH SUBSYSTEM
698P: Marcel Holtmann
699M: marcel@holtmann.org
700P: Maxim Krasnyansky
701M: maxk@qualcomm.com
702L: bluez-devel@lists.sf.net
703W: http://bluez.sf.net
704W: http://www.bluez.org
705W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800706T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707S: Maintained
708
709BLUETOOTH RFCOMM LAYER
710P: Marcel Holtmann
711M: marcel@holtmann.org
712P: Maxim Krasnyansky
713M: maxk@qualcomm.com
714S: Maintained
715
716BLUETOOTH BNEP LAYER
717P: Marcel Holtmann
718M: marcel@holtmann.org
719P: Maxim Krasnyansky
720M: maxk@qualcomm.com
721S: Maintained
722
723BLUETOOTH CMTP LAYER
724P: Marcel Holtmann
725M: marcel@holtmann.org
726S: Maintained
727
728BLUETOOTH HIDP LAYER
729P: Marcel Holtmann
730M: marcel@holtmann.org
731S: Maintained
732
733BLUETOOTH HCI UART DRIVER
734P: Marcel Holtmann
735M: marcel@holtmann.org
736P: Maxim Krasnyansky
737M: maxk@qualcomm.com
738S: Maintained
739
740BLUETOOTH HCI USB DRIVER
741P: Marcel Holtmann
742M: marcel@holtmann.org
743P: Maxim Krasnyansky
744M: maxk@qualcomm.com
745S: Maintained
746
747BLUETOOTH HCI BCM203X DRIVER
748P: Marcel Holtmann
749M: marcel@holtmann.org
750S: Maintained
751
752BLUETOOTH HCI BPA10X DRIVER
753P: Marcel Holtmann
754M: marcel@holtmann.org
755S: Maintained
756
757BLUETOOTH HCI BFUSB DRIVER
758P: Marcel Holtmann
759M: marcel@holtmann.org
760S: Maintained
761
762BLUETOOTH HCI DTL1 DRIVER
763P: Marcel Holtmann
764M: marcel@holtmann.org
765S: Maintained
766
767BLUETOOTH HCI BLUECARD DRIVER
768P: Marcel Holtmann
769M: marcel@holtmann.org
770S: Maintained
771
772BLUETOOTH HCI BT3C DRIVER
773P: Marcel Holtmann
774M: marcel@holtmann.org
775S: Maintained
776
777BLUETOOTH HCI BTUART DRIVER
778P: Marcel Holtmann
779M: marcel@holtmann.org
780S: Maintained
781
782BLUETOOTH HCI VHCI DRIVER
783P: Maxim Krasnyansky
784M: maxk@qualcomm.com
785S: Maintained
786
787BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100788P: Chad Tindel
789M: ctindel@users.sourceforge.net
790P: Jay Vosburgh
791M: fubar@us.ibm.com
792L: bonding-devel@lists.sourceforge.net
793W: http://sourceforge.net/projects/bonding/
794S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000796BROADBAND PROCESSOR ARCHITECTURE
797P: Arnd Bergmann
798M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100799L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400800W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000801S: Supported
802
Gary Zambrano39105892006-06-22 17:26:20 -0700803BROADCOM B44 10/100 ETHERNET DRIVER
804P: Gary Zambrano
805M: zambrano@broadcom.com
806L: netdev@vger.kernel.org
807S: Supported
808
Michael Chan948c51e2006-06-04 02:51:39 -0700809BROADCOM BNX2 GIGABIT ETHERNET DRIVER
810P: Michael Chan
811M: mchan@broadcom.com
812L: netdev@vger.kernel.org
813S: Supported
814
815BROADCOM TG3 GIGABIT ETHERNET DRIVER
816P: Michael Chan
817M: mchan@broadcom.com
818L: netdev@vger.kernel.org
819S: Supported
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700822P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200823M: mchehab@infradead.org
824M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700826W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200827T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700828S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200830CALGARY x86-64 IOMMU
831P: Muli Ben-Yehuda
832M: muli@il.ibm.com
833P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200834M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200835L: linux-kernel@vger.kernel.org
836L: discuss@x86-64.org
837S: Maintained
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839COMMON INTERNET FILE SYSTEM (CIFS)
840P: Steve French
841M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100842L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843L: samba-technical@lists.samba.org
844W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800845T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846S: Supported
847
Joel Becker7063fbf2005-12-15 14:29:43 -0800848CONFIGFS
849P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800850M: joel.becker@oracle.com
851L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800852S: Supported
853
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800854CIRRUS LOGIC EP93XX ETHERNET DRIVER
855P: Lennert Buytenhek
856M: kernel@wantstofly.org
857L: netdev@vger.kernel.org
858S: Maintained
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860CIRRUS LOGIC GENERIC FBDEV DRIVER
861P: Jeff Garzik
862M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800863L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864S: Odd Fixes
865
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800866CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
867P: Lennert Buytenhek
868M: kernel@wantstofly.org
869L: linux-usb-devel@lists.sourceforge.net
870S: Maintained
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
873P: Cirrus Logic Corporation (kernel 2.2 driver)
874M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
875P: Nils Faerber (port to kernel 2.4)
876M: Nils Faerber <nils@kernelconcepts.de>
877S: Maintained
878
879CODA FILE SYSTEM
880P: Jan Harkes
881M: jaharkes@cs.cmu.edu
882M: coda@cs.cmu.edu
883L: codalist@coda.cs.cmu.edu
884W: http://www.coda.cs.cmu.edu/
885S: Maintained
886
887COMPACTPCI HOTPLUG CORE
888P: Scott Murray
889M: scottm@somanetworks.com
890M: scott@spiteful.org
891L: pcihpd-discuss@lists.sourceforge.net
892S: Supported
893
894COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
895P: Scott Murray
896M: scottm@somanetworks.com
897M: scott@spiteful.org
898L: pcihpd-discuss@lists.sourceforge.net
899S: Supported
900
901COMPACTPCI HOTPLUG GENERIC DRIVER
902P: Scott Murray
903M: scottm@somanetworks.com
904M: scott@spiteful.org
905L: pcihpd-discuss@lists.sourceforge.net
906S: Supported
907
908COMPUTONE INTELLIPORT MULTIPORT CARD
909P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700910M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700912S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914COSA/SRP SYNC SERIAL DRIVER
915P: Jan "Yenya" Kasprzak
916M: kas@fi.muni.cz
917W: http://www.fi.muni.cz/~kas/cosa/
918S: Maintained
919
920CPU FREQUENCY DRIVERS
921P: Dave Jones
922M: davej@codemonkey.org.uk
923L: cpufreq@lists.linux.org.uk
924W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500925T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926S: Maintained
927
928CPUID/MSR DRIVER
929P: H. Peter Anvin
930M: hpa@zytor.com
931S: Maintained
932
Paul Jacksoned90fb42005-09-27 21:45:37 -0700933CPUSETS
934P: Paul Jackson
935P: Simon Derr
936M: pj@sgi.com
937M: simon.derr@bull.net
938L: linux-kernel@vger.kernel.org
939W: http://www.bullopensource.org/cpuset/
940S: Supported
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100943W: http://sourceforge.net/projects/cramfs/
944S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946CRIS PORT
947P: Mikael Starvik
948M: starvik@axis.com
949L: dev-etrax@axis.com
950W: http://developer.axis.com
951S: Maintained
952
953CRYPTO API
954P: Herbert Xu
955M: herbert@gondor.apana.org.au
956P: David S. Miller
957M: davem@davemloft.net
958L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800959T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960S: Maintained
961
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100962CS5535 Audio ALSA driver
963P: Jaya Kumar
964M: jayakumar.alsa@gmail.com
965S: Maintained
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967CYBERPRO FB DRIVER
968P: Russell King
969M: rmk@arm.linux.org.uk
970W: http://www.arm.linux.org.uk/
971S: Maintained
972
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700973CYBLAFB FRAMEBUFFER DRIVER
974P: Knut Petersen
975M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800976L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700977S: Maintained
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979CYCLADES 2X SYNC CARD DRIVER
980P: Arnaldo Carvalho de Melo
981M: acme@conectiva.com.br
982W: http://advogato.org/person/acme
983L: cycsyn-devel@bazar.conectiva.com.br
984S: Maintained
985
986CYCLADES ASYNC MUX DRIVER
987M: async@cyclades.com
988W: http://www.cyclades.com/
989S: Supported
990
991CYCLADES PC300 DRIVER
992M: pc300@cyclades.com
993W: http://www.cyclades.com/
994S: Supported
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996DAMA SLAVE for AX.25
997P: Joerg Reuter
998M: jreuter@yaina.de
999W: http://yaina.de/jreuter/
1000W: http://www.qsl.net/dl1bke/
1001L: linux-hams@vger.kernel.org
1002S: Maintained
1003
1004DC395x SCSI driver
1005P: Oliver Neukum
1006M: oliver@neukum.name
1007P: Ali Akcaagac
1008M: aliakc@web.de
1009P: Jamie Lenehan
1010M: lenehan@twibble.org
1011W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001012L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013L: http://lists.twibble.org/mailman/listinfo/dc395x/
1014S: Maintained
1015
1016DC390/AM53C974 SCSI driver
1017P: Kurt Garloff
1018M: garloff@suse.de
1019W: http://www.garloff.de/kurt/linux/dc390/
1020P: Guennadi Liakhovetski
1021M: g.liakhovetski@gmx.de
1022S: Maintained
1023
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001024DCCP PROTOCOL
1025P: Arnaldo Carvalho de Melo
1026M: acme@mandriva.com
1027L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001028W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001029S: Maintained
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031DECnet NETWORK LAYER
1032P: Patrick Caulfield
1033M: patrick@tykepenguin.com
1034W: http://linux-decnet.sourceforge.net
1035L: linux-decnet-user@lists.sourceforge.net
1036S: Maintained
1037
1038DEFXX FDDI NETWORK DRIVER
1039P: Maciej W. Rozycki
1040M: macro@linux-mips.org
1041S: Maintained
1042
1043DELL LAPTOP SMM DRIVER
1044P: Massimo Dal Zotto
1045M: dz@debian.org
1046W: http://www.debian.org/~dz/i8k/
1047S: Maintained
1048
Doug Warzecha90563ec2005-09-06 15:17:15 -07001049DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1050P: Doug Warzecha
1051M: Douglas_Warzecha@dell.com
1052S: Maintained
1053
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001054DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055P: Alasdair Kergon
1056L: dm-devel@redhat.com
1057W: http://sources.redhat.com/dm
1058S: Maintained
1059
1060DEVICE NUMBER REGISTRY
1061P: Torben Mathiasen
1062M: device@lanana.org
1063W: http://lanana.org/docs/device-list/index.html
1064L: linux-kernel@vger.kernel.org
1065S: Maintained
1066
1067DEVICE FILESYSTEM
1068S: Obsolete
1069
1070DIGI INTL. EPCA DRIVER
1071P: Digi International, Inc
1072M: Eng.Linux@digi.com
1073L: Eng.Linux@digi.com
1074W: http://www.digi.com
1075S: Orphaned
1076
1077DIGI RIGHTSWITCH NETWORK DRIVER
1078P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001079L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080W: http://www.digi.com
1081S: Orphaned
1082
1083DIRECTORY NOTIFICATION
1084P: Stephen Rothwell
1085M: sfr@canb.auug.org.au
1086L: linux-kernel@vger.kernel.org
1087S: Supported
1088
1089DISK GEOMETRY AND PARTITION HANDLING
1090P: Andries Brouwer
1091M: aeb@cwi.nl
1092W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1093W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1094W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1095S: Maintained
1096
1097DISKQUOTA:
1098P: Jan Kara
1099M: jack@suse.cz
1100L: linux-kernel@vger.kernel.org
1101S: Maintained
1102
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001103DISTRIBUTED LOCK MANAGER
1104P: Patrick Caulfield
1105M: pcaulfie@redhat.com
1106P: David Teigland
1107M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001108L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001109W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001110T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1111T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001112S: Supported
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1115P: Tobias Ringstrom
1116M: tori@unhappy.mine.nu
1117L: linux-kernel@vger.kernel.org
1118S: Maintained
1119
Martin Waitzba483d52005-06-17 13:20:59 -07001120DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001121P: Randy Dunlap
1122M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001123S: Maintained
1124
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001125DOCKING STATION DRIVER
1126P: Kristen Carlson Accardi
1127M: kristen.c.accardi@intel.com
1128L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001129S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131DOUBLETALK DRIVER
1132P: James R. Van Zandt
1133M: jrv@vanzandt.mv.com
1134L: blinux-list@redhat.com
1135S: Maintained
1136
1137DRIVER CORE, KOBJECTS, AND SYSFS
1138P: Greg Kroah-Hartman
1139M: gregkh@suse.de
1140L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001141T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142S: Supported
1143
1144DRM DRIVERS
1145P: David Airlie
1146M: airlied@linux.ie
1147L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001148T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149S: Maintained
1150
1151DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001152P: Francois Romieu
1153M: romieu@fr.zoreil.com
1154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155S: Maintained
1156
1157DVB SUBSYSTEM AND DRIVERS
1158P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001159M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001161W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001162T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001163S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165EATA-DMA SCSI DRIVER
1166P: Michael Neuffer
1167L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1168S: Maintained
1169
1170EATA ISA/EISA/PCI SCSI DRIVER
1171P: Dario Ballabio
1172M: ballabio_dario@emc.com
1173L: linux-scsi@vger.kernel.org
1174S: Maintained
1175
1176EATA-PIO SCSI DRIVER
1177P: Michael Neuffer
1178M: mike@i-Connect.Net
1179L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1180S: Maintained
1181
1182EBTABLES
1183P: Bart De Schuymer
1184M: bart.de.schuymer@pandora.be
1185L: ebtables-user@lists.sourceforge.net
1186L: ebtables-devel@lists.sourceforge.net
1187W: http://ebtables.sourceforge.net/
1188S: Maintained
1189
Michael Halcrow237fead2006-10-04 02:16:22 -07001190ECRYPT FILE SYSTEM
1191P: Mike Halcrow, Phillip Hellewell
1192M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1193L: ecryptfs-devel@lists.sourceforge.net
1194W: http://ecryptfs.sourceforge.net/
1195S: Supported
1196
Alan Coxda9bb1d2006-01-18 17:44:13 -08001197EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001198P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001199M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001200L: bluesmoke-devel@lists.sourceforge.net
1201W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001202S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001203
1204EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001205P: Mark Gross
1206M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001207L: bluesmoke-devel@lists.sourceforge.net
1208W: bluesmoke.sourceforge.net
1209S: Maintained
1210
1211EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001212P: Doug Thompson
1213M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001214L: bluesmoke-devel@lists.sourceforge.net
1215W: bluesmoke.sourceforge.net
1216S: Maintained
1217
1218EDAC-R82600
1219P: Tim Small
1220M: tim@buttersideup.com
1221L: bluesmoke-devel@lists.sourceforge.net
1222W: bluesmoke.sourceforge.net
1223S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225EEPRO100 NETWORK DRIVER
1226P: Andrey V. Savochkin
1227M: saw@saw.sw.com.sg
1228S: Maintained
1229
Josh Triplett0bee8d22006-07-30 03:03:58 -07001230EFS FILESYSTEM
1231W: http://aeschi.ch.eu.org/efs/
1232S: Orphan
1233
Heiko J Schickfab97222006-09-22 15:22:22 -07001234EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1235P: Hoang-Nam Nguyen
1236M: hnguyen@de.ibm.com
1237P: Christoph Raisch
1238M: raisch@de.ibm.com
1239L: openib-general@openib.org
1240S: Supported
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242EMU10K1 SOUND DRIVER
1243P: James Courtier-Dutton
1244M: James@superbug.demon.co.uk
1245L: emu10k1-devel@lists.sourceforge.net
1246W: http://sourceforge.net/projects/emu10k1/
1247S: Maintained
1248
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001249EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001250P: James Smart
1251M: james.smart@emulex.com
1252L: linux-scsi@vger.kernel.org
1253W: http://sourceforge.net/projects/lpfcxxxx
1254S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256EPSON 1355 FRAMEBUFFER DRIVER
1257P: Christopher Hoover
1258M: ch@murgatroid.com, ch@hpl.hp.com
1259S: Maintained
1260
1261ETHEREXPRESS-16 NETWORK DRIVER
1262P: Philip Blundell
1263M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001264L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265S: Maintained
1266
1267ETHERNET BRIDGE
1268P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08001269M: shemminger@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270L: bridge@osdl.org
1271W: http://bridge.sourceforge.net/
1272S: Maintained
1273
1274ETHERTEAM 16I DRIVER
1275P: Mika Kuoppala
1276M: miku@iki.fi
1277S: Maintained
1278
1279EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001280L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281S: Maintained
1282
1283EXT3 FILE SYSTEM
1284P: Stephen Tweedie, Andrew Morton
1285M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001286L: linux-ext4@vger.kernel.org
1287S: Maintained
1288
1289EXT4 FILE SYSTEM
1290P: Stephen Tweedie, Andrew Morton
1291M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1292L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293S: Maintained
1294
Jean Delvaree53004e2006-01-09 23:26:14 +01001295F71805F HARDWARE MONITORING DRIVER
1296P: Jean Delvare
1297M: khali@linux-fr.org
1298L: lm-sensors@lm-sensors.org
1299S: Maintained
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301FARSYNC SYNCHRONOUS DRIVER
1302P: Kevin Curtis
1303M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304W: http://www.farsite.co.uk/
1305S: Supported
1306
1307FRAMEBUFFER LAYER
1308P: Antonino Daplas
1309M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001310L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311W: http://linux-fbdev.sourceforge.net/
1312S: Maintained
1313
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001314FREESCALE SOC FS_ENET DRIVER
1315P: Pantelis Antoniou
1316M: pantelis.antoniou@gmail.com
1317P: Vitaly Bordug
1318M: vbordug@ru.mvista.com
1319L: linuxppc-embedded@ozlabs.org
1320L: netdev@vger.kernel.org
1321S: Maintained
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323FILE LOCKING (flock() and fcntl()/lockf())
1324P: Matthew Wilcox
1325M: matthew@wil.cx
1326L: linux-fsdevel@vger.kernel.org
1327S: Maintained
1328
1329FILESYSTEMS (VFS and infrastructure)
1330P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001331M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332S: Maintained
1333
1334FIRMWARE LOADER (request_firmware)
1335L: linux-kernel@vger.kernel.org
1336S: Orphan
1337
1338FPU EMULATOR
1339P: Bill Metzenthen
1340M: billm@suburbia.net
1341W: http://suburbia.net/~billm/floating-point/emulator/
1342S: Maintained
1343
1344FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1345P: Mike McLagan
1346M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001347L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348S: Maintained
1349
1350FREEVXFS FILESYSTEM
1351P: Christoph Hellwig
1352M: hch@infradead.org
1353W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1354S: Maintained
1355
1356FUJITSU FR-V PORT
1357P: David Howells
1358M: dhowells@redhat.com
1359S: Maintained
1360
Miklos Szeredi04578f12005-09-09 13:10:22 -07001361FUSE: FILESYSTEM IN USERSPACE
1362P: Miklos Szeredi
1363M: miklos@szeredi.hu
1364L: fuse-devel@lists.sourceforge.net
1365W: http://fuse.sourceforge.net/
1366S: Maintained
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1369P: Rik Faith
1370M: faith@cs.unc.edu
1371L: linux-scsi@vger.kernel.org
1372S: Odd fixes (e.g., new signatures)
1373
1374GDT SCSI DISK ARRAY CONTROLLER DRIVER
1375P: Achim Leubner
1376M: achim_leubner@adaptec.com
1377L: linux-scsi@vger.kernel.org
1378W: http://www.icp-vortex.com/
1379S: Supported
1380
1381GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1382P: Krzysztof Halasa
1383M: khc@pm.waw.pl
1384W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1385S: Maintained
1386
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001387GFS2 FILE SYSTEM
1388P: Steven Whitehouse
1389M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001390L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001391W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001392T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1393T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001394S: Supported
1395
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001396GIGASET ISDN DRIVERS
1397P: Hansjoerg Lipp
1398M: hjlipp@web.de
1399P: Tilman Schmidt
1400M: tilman@imap.cc
1401L: gigaset307x-common@lists.sourceforge.net
1402W: http://gigaset307x.sourceforge.net/
1403S: Maintained
1404
Jean Delvare5b543962005-08-15 19:51:02 +02001405HARDWARE MONITORING
1406P: Jean Delvare
1407M: khali@linux-fr.org
1408L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001409W: http://www.lm-sensors.org/
1410T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001411S: Maintained
1412
Michael Buesch844dd052006-06-26 00:24:59 -07001413HARDWARE RANDOM NUMBER GENERATOR CORE
1414P: Michael Buesch
1415M: mb@bu3sch.de
1416S: Maintained
1417
Robert Love860e1d62005-08-31 23:57:59 -04001418HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1419P: Robert Love
1420M: rlove@rlove.org
1421M: linux-kernel@vger.kernel.org
1422W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1423S: Maintained
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425HARMONY SOUND DRIVER
1426P: Kyle McMartin
1427M: kyle@parisc-linux.org
1428W: http://www.parisc-linux.org/~kyle/harmony/
1429L: parisc-linux@lists.parisc-linux.org
1430S: Maintained
1431
1432HAYES ESP SERIAL DRIVER
1433P: Andrew J. Robinson
1434M: arobinso@nyx.net
1435L: linux-kernel@vger.kernel.org
1436W: http://www.nyx.net/~arobinso
1437S: Maintained
1438
1439HFS FILESYSTEM
1440P: Roman Zippel
1441M: zippel@linux-m68k.org
1442L: linux-kernel@vger.kernel.org
1443S: Maintained
1444
1445HGA FRAMEBUFFER DRIVER
1446P: Ferenc Bakonyi
1447M: fero@drama.obuda.kando.hu
1448L: linux-nvidia@lists.surfsouth.com
1449W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1450S: Maintained
1451
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001452HID CORE LAYER
1453P: Jiri Kosina
1454M: jkosina@suse.cz
1455L: linux-input@atrey.karlin.mff.cuni.cz
1456S: Maintained
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458HIGH-SPEED SCC DRIVER FOR AX.25
1459P: Klaus Kudielka
1460M: klaus.kudielka@ieee.org
1461L: linux-hams@vger.kernel.org
1462W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1463S: Maintained
1464
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001465HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1466P: HighPoint Linux Team
1467M: linux@highpoint-tech.com
1468W: http://www.highpoint-tech.com
1469S: Supported
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471HIPPI
1472P: Jes Sorensen
1473M: jes@trained-monkey.org
1474L: linux-hippi@sunsite.dk
1475S: Maintained
1476
1477HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1478P: Chirag Kantharia
1479M: chirag.kantharia@hp.com
1480L: iss_storagedev@hp.com
1481S: Maintained
1482
1483HEWLETT-PACKARD SMART2 RAID DRIVER
1484P: Chirag Kantharia
1485M: chirag.kantharia@hp.com
1486L: iss_storagedev@hp.com
1487S: Maintained
1488
1489HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1490P: Mike Miller
1491M: mike.miller@hp.com
1492L: iss_storagedev@hp.com
1493S: Supported
1494
Jouni Malinenff1d2762005-05-12 22:54:16 -04001495HOST AP DRIVER
1496P: Jouni Malinen
1497M: jkmaline@cc.hut.fi
1498L: hostap@shmoo.com
1499W: http://hostap.epitest.fi/
1500S: Maintained
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1503P: Jaroslav Kysela
1504M: perex@suse.cz
1505S: Maintained
1506
Bob Piccob9b03322005-11-07 00:59:19 -08001507HPET: High Precision Event Timers driver (hpet.c)
1508P: Clemens Ladisch
1509M: clemens@ladisch.de
1510S: Maintained
1511
1512HPET: i386
1513P: Venkatesh Pallipadi (Venki)
1514M: venkatesh.pallipadi@intel.com
1515S: Maintained
1516
1517HPET: x86_64
1518P: Andi Kleen and Vojtech Pavlik
1519M: ak@muc.de and vojtech@suse.cz
1520S: Maintained
1521
1522HPET: ACPI hpet.c
1523P: Bob Picco
1524M: bob.picco@hp.com
1525S: Maintained
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527HPFS FILESYSTEM
1528P: Mikulas Patocka
1529M: mikulas@artax.karlin.mff.cuni.cz
1530W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1531S: Maintained
1532
1533HUGETLB FILESYSTEM
1534P: William Irwin
1535M: wli@holomorphy.com
1536S: Maintained
1537
Jean Delvare5b543962005-08-15 19:51:02 +02001538I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539P: Jean Delvare
1540M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001541L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001542T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543S: Maintained
1544
1545I2O
1546P: Markus Lidel
1547M: markus.lidel@shadowconnect.com
1548W: http://i2o.shadowconnect.com/
1549S: Maintained
1550
1551i386 BOOT CODE
1552P: Riley H. Williams
1553M: Riley@Williams.Name
1554L: Linux-Kernel@vger.kernel.org
1555S: Maintained
1556
1557i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1558P: Dave Jones
1559M: davej@codemonkey.org.uk
1560P: H. Peter Anvin
1561M: hpa@zytor.com
1562S: Maintained
1563
1564i810 TCO TIMER WATCHDOG
1565P: Nils Faerber
1566M: nils@kernelconcepts.de
1567W: http://www.kernelconcepts.de/
1568S: Maintained
1569
1570IA64 (Itanium) PLATFORM
1571P: Tony Luck
1572M: tony.luck@intel.com
1573L: linux-ia64@vger.kernel.org
1574W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001575T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576S: Maintained
1577
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001578IBM ACPI EXTRAS DRIVER
1579P: Henrique de Moraes Holschuh
1580M: ibm-acpi@hmh.eng.br
1581L: ibm-acpi-devel@lists.sourceforge.net
1582W: http://ibm-acpi.sourceforge.net
1583W: http://thinkwiki.org/wiki/Ibm-acpi
1584T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1585S: Maintained
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001588P: Jes Sorensen
1589M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590L: linux-altix@sgi.com
1591L: linux-ia64@vger.kernel.org
1592W: http://www.sgi.com/altix
1593S: Maintained
1594
1595IBM MCA SCSI SUBSYSTEM DRIVER
1596P: Michael Lang
1597M: langa2@kph.uni-mainz.de
1598W: http://www.uni-mainz.de/~langm000/linux.html
1599S: Maintained
1600
1601IBM Power Linux RAID adapter
1602P: Brian King
1603M: brking@us.ibm.com
1604S: Supported
1605
1606IBM ServeRAID RAID DRIVER
1607P: Jack Hammer
1608P: Dave Jeffery
1609M: ipslinux@adaptec.com
1610W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1611S: Supported
1612
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001613IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001615M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001617T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618S: Maintained
1619
1620IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001621P: Alan Cox
1622M: alan@lxorguk.ukuu.org.uk
1623L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624S: Maintained
1625
1626IDE/ATAPI FLOPPY DRIVERS
1627P: Paul Bristow
1628M: Paul Bristow <paul@paulbristow.net>
1629W: http://paulbristow.net/linux/idefloppy.html
1630L: linux-kernel@vger.kernel.org
1631S: Maintained
1632
1633IDE/ATAPI TAPE DRIVERS
1634P: Gadi Oxman
1635M: Gadi Oxman <gadio@netvision.net.il>
1636L: linux-kernel@vger.kernel.org
1637S: Maintained
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639IEEE 1394 SUBSYSTEM
1640P: Ben Collins
1641M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001642P: Stefan Richter
1643M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644L: linux1394-devel@lists.sourceforge.net
1645W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001646T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647S: Maintained
1648
Stefan Richter87730d02006-09-16 12:24:00 +02001649IEEE 1394 IPV4 DRIVER (eth1394)
1650P: Stefan Richter
1651M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001653S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655IEEE 1394 PCILYNX DRIVER
1656P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001657M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001658P: Stefan Richter
1659M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001661S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663IEEE 1394 RAW I/O DRIVER
1664P: Ben Collins
1665M: bcollins@debian.org
1666P: Dan Dennedy
1667M: dan@dennedy.org
1668L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001669S: Maintained
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671IMS TWINTURBO FRAMEBUFFER DRIVER
1672P: Paul Mundt
1673M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001674L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675S: Maintained
1676
1677INFINIBAND SUBSYSTEM
1678P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001679M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680P: Sean Hefty
1681M: mshefty@ichips.intel.com
1682P: Hal Rosenstock
1683M: halr@voltaire.com
1684L: openib-general@openib.org
1685W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001686T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687S: Supported
1688
1689INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001690P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001691M: dmitry.torokhov@gmail.com
1692M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693L: linux-input@atrey.karlin.mff.cuni.cz
1694L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001695T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696S: Maintained
1697
Robert Lovec9f04f52005-07-15 12:21:07 -04001698INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001699P: John McCutchan
1700M: ttb@tentacle.dhs.org
1701P: Robert Love
1702M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001703L: linux-kernel@vger.kernel.org
1704S: Maintained
1705
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001706INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001707P: Sylvain Meyer
1708M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001709L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001710S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001713P: Antonino Daplas
1714M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001715L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001716S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1719P: Ingo Molnar
1720M: mingo@redhat.com
1721S: Maintained
1722
1723INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1724P: Jeff Garzik
1725M: jgarzik@pobox.com
1726W: http://sourceforge.net/projects/gkernel/
1727S: Maintained
1728
1729INTEL IA32 MICROCODE UPDATE SUPPORT
1730P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001731M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732S: Maintained
1733
Michael Buesch844dd052006-06-26 00:24:59 -07001734INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1735P: Deepak Saxena
1736M: dsaxena@plexity.net
1737S: Maintained
1738
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001739INTEL IXP2000 ETHERNET DRIVER
1740P: Lennert Buytenhek
1741M: kernel@wantstofly.org
1742L: netdev@vger.kernel.org
1743S: Maintained
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745INTEL PRO/100 ETHERNET SUPPORT
1746P: John Ronciak
1747M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748P: Jesse Brandeburg
1749M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001750P: Jeff Kirsher
1751M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001752P: Auke Kok
1753M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754W: http://sourceforge.net/projects/e1000/
1755S: Supported
1756
1757INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1758P: Jeb Cramer
1759M: cramerj@intel.com
1760P: John Ronciak
1761M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001762P: Jesse Brandeburg
1763M: jesse.brandeburg@intel.com
1764P: Jeff Kirsher
1765M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001766P: Auke Kok
1767M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768W: http://sourceforge.net/projects/e1000/
1769S: Supported
1770
1771INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001772P: Jeff Kirsher
1773M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774P: Ayyappan Veeraiyan
1775M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776P: John Ronciak
1777M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001778P: Jesse Brandeburg
1779M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001780P: Auke Kok
1781M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782W: http://sourceforge.net/projects/e1000/
1783S: Supported
1784
James Ketrenos826d2ab2005-11-07 18:56:59 -06001785INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1786P: Yi Zhu
1787M: yi.zhu@intel.com
1788P: James Ketrenos
1789M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001790L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001791L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1792W: http://ipw2100.sourceforge.net
1793S: Supported
1794
1795INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1796P: Yi Zhu
1797M: yi.zhu@intel.com
1798P: James Ketrenos
1799M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001800L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001801L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1802W: http://ipw2200.sourceforge.net
1803S: Supported
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805IOC3 DRIVER
1806P: Ralf Baechle
1807M: ralf@linux-mips.org
1808L: linux-mips@linux-mips.org
1809S: Maintained
1810
1811IP MASQUERADING:
1812P: Juanjo Ciarlante
1813M: jjciarla@raiz.uncu.edu.ar
1814S: Maintained
1815
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001816IPATH DRIVER:
1817P: Bryan O'Sullivan
1818M: support@pathscale.com
1819L: openib-general@openib.org
1820S: Supported
1821
Corey Minyard4409ebe2006-04-20 02:43:12 -07001822IPMI SUBSYSTEM
1823P: Corey Minyard
1824M: minyard@acm.org
1825L: openipmi-developer@lists.sourceforge.net
1826W: http://openipmi.sourceforge.net/
1827S: Supported
1828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829IPX NETWORK LAYER
1830P: Arnaldo Carvalho de Melo
1831M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001832L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833S: Maintained
1834
1835IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001836P: Samuel Ortiz
1837M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001838L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001840S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842ISAPNP
1843P: Jaroslav Kysela
1844M: perex@suse.cz
1845S: Maintained
1846
1847ISDN SUBSYSTEM
1848P: Karsten Keil
1849M: kkeil@suse.de
1850P: Kai Germaschewski
1851M: kai.germaschewski@gmx.de
1852L: isdn4linux@listserv.isdn4linux.de
1853W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001854T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855S: Maintained
1856
1857ISDN SUBSYSTEM (Eicon active card driver)
1858P: Armin Schindler
1859M: mac@melware.de
1860L: isdn4linux@listserv.isdn4linux.de
1861W: http://www.melware.de
1862S: Maintained
1863
1864JOURNALLING FLASH FILE SYSTEM (JFFS)
1865P: Axis Communications AB
1866M: jffs-dev@axis.com
1867L: jffs-dev@axis.com
1868W: http://www.developer.axis.com/software/jffs/
1869S: Maintained
1870
1871JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1872P: David Woodhouse
1873M: dwmw2@infradead.org
1874L: jffs-dev@axis.com
1875W: http://sources.redhat.com/jffs2/
1876S: Maintained
1877
1878JFS FILESYSTEM
1879P: Dave Kleikamp
1880M: shaggy@austin.ibm.com
1881L: jfs-discussion@lists.sourceforge.net
1882W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001883T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884S: Supported
1885
Josh Triplettde456d32006-07-30 03:04:00 -07001886JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001887P: Stephen Tweedie, Andrew Morton
1888M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001889L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001890S: Maintained
1891
Rudolf Marek4660cb32006-10-08 22:01:26 +02001892K8TEMP HARDWARE MONITORING DRIVER
1893P: Rudolf Marek
1894M: r.marek@assembler.cz
1895L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896S: Maintained
1897
1898KCONFIG
1899P: Roman Zippel
1900M: zippel@linux-m68k.org
1901L: kbuild-devel@lists.sourceforge.net
1902S: Maintained
1903
Vivek Goyalea6c2082006-05-20 14:59:55 -07001904KDUMP
1905P: Vivek Goyal
1906M: vgoyal@in.ibm.com
1907P: Haren Myneni
1908M: hbabu@us.ibm.com
1909L: fastboot@lists.osdl.org
1910L: linux-kernel@vger.kernel.org
1911W: http://lse.sourceforge.net/kdump/
1912S: Maintained
1913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914KERNEL AUTOMOUNTER (AUTOFS)
1915P: H. Peter Anvin
1916M: hpa@zytor.com
1917L: autofs@linux.kernel.org
1918S: Odd Fixes
1919
1920KERNEL AUTOMOUNTER v4 (AUTOFS4)
1921P: Ian Kent
1922M: raven@themaw.net
1923L: autofs@linux.kernel.org
1924S: Maintained
1925
1926KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1927P: Kai Germaschewski
1928M: kai@germaschewski.name
1929P: Sam Ravnborg
1930M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001931T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932S: Maintained
1933
1934KERNEL JANITORS
1935P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001936L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938S: Maintained
1939
1940KERNEL NFSD
1941P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001942M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943L: nfs@lists.sourceforge.net
1944W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001945S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Avi Kivity426d62e2006-12-13 00:34:03 -08001947KERNEL VIRTUAL MACHINE (KVM)
1948P: Avi Kivity
1949M: avi@qumranet.com
1950L: kvm-devel@lists.sourceforge.net
1951W: kvm.sourceforge.net
1952S: Supported
1953
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001954KEXEC
1955P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001956M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001957W: http://www.xmission.com/~ebiederm/files/kexec/
1958L: linux-kernel@vger.kernel.org
1959L: fastboot@osdl.org
1960S: Maintained
1961
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001962KPROBES
1963P: Prasanna S Panchamukhi
1964M: prasanna@in.ibm.com
1965P: Ananth N Mavinakayanahalli
1966M: ananth@in.ibm.com
1967P: Anil S Keshavamurthy
1968M: anil.s.keshavamurthy@intel.com
1969P: David S. Miller
1970M: davem@davemloft.net
1971L: linux-kernel@vger.kernel.org
1972S: Maintained
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001976S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978LASI 53c700 driver for PARISC
1979P: James E.J. Bottomley
1980M: James.Bottomley@HansenPartnership.com
1981L: linux-scsi@vger.kernel.org
1982S: Maintained
1983
Richard Purdie263de9b2006-05-15 09:44:16 -07001984LED SUBSYSTEM
1985P: Richard Purdie
1986M: rpurdie@rpsys.net
1987S: Maintained
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989LEGO USB Tower driver
1990P: Juergen Stuber
1991M: starblue@users.sourceforge.net
1992L: legousb-devel@lists.sourceforge.net
1993W: http://legousb.sourceforge.net/
1994S: Maintained
1995
1996LINUX FOR IBM pSERIES (RS/6000)
1997P: Paul Mackerras
1998M: paulus@au.ibm.com
1999W: http://www.ibm.com/linux/ltc/projects/ppc
2000S: Supported
2001
2002LINUX FOR NCR VOYAGER
2003P: James Bottomley
2004M: James.Bottomley@HansenPartnership.com
2005W: http://www.hansenpartnership.com/voyager
2006S: Maintained
2007
2008LINUX FOR POWERPC
2009P: Paul Mackerras
2010M: paulus@samba.org
2011W: http://www.penguinppc.org/
2012L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002013T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014S: Supported
2015
2016LINUX FOR POWER MACINTOSH
2017P: Benjamin Herrenschmidt
2018M: benh@kernel.crashing.org
2019W: http://www.penguinppc.org/
2020L: linuxppc-dev@ozlabs.org
2021S: Maintained
2022
2023LINUX FOR POWERPC EMBEDDED MPC52XX
2024P: Sylvain Munaut
2025M: tnt@246tNt.com
2026W: http://www.246tNt.com/mpc52xx/
2027W: http://www.penguinppc.org/
2028L: linuxppc-dev@ozlabs.org
2029L: linuxppc-embedded@ozlabs.org
2030S: Maintained
2031
2032LINUX FOR POWERPC EMBEDDED PPC4XX
2033P: Matt Porter
2034M: mporter@kernel.crashing.org
2035W: http://www.penguinppc.org/
2036L: linuxppc-embedded@ozlabs.org
2037S: Maintained
2038
Tom Rinie93adf12005-07-26 12:49:53 -07002039LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040P: Tom Rini
2041M: trini@kernel.crashing.org
2042W: http://www.penguinppc.org/
2043L: linuxppc-embedded@ozlabs.org
2044S: Maintained
2045
Tom Rinie93adf12005-07-26 12:49:53 -07002046LINUX FOR POWERPC EMBEDDED PPC8XX
2047P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002048M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002049W: http://www.penguinppc.org/
2050L: linuxppc-embedded@ozlabs.org
2051S: Maintained
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002054P: Kumar Gala
2055M: galak@kernel.crashing.org
2056W: http://www.penguinppc.org/
2057L: linuxppc-embedded@ozlabs.org
2058S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Olof Johanssonab06ff32006-09-06 14:44:54 -05002060LINUX FOR POWERPC PA SEMI PWRFICIENT
2061P: Olof Johansson
2062M: olof@lixom.net
2063W: http://www.pasemi.com/
2064L: linuxppc-dev@ozlabs.org
2065S: Supported
2066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067LLC (802.2)
2068P: Arnaldo Carvalho de Melo
2069M: acme@conectiva.com.br
2070S: Maintained
2071
2072LINUX FOR 64BIT POWERPC
2073P: Paul Mackerras
2074M: paulus@samba.org
2075M: paulus@au.ibm.com
2076P: Anton Blanchard
2077M: anton@samba.org
2078M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002079W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002080L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081S: Supported
2082
2083LINUX SECURITY MODULE (LSM) FRAMEWORK
2084P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002085M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002086L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002088T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089S: Supported
2090
2091LM83 HARDWARE MONITOR DRIVER
2092P: Jean Delvare
2093M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002094L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095S: Maintained
2096
2097LM90 HARDWARE MONITOR DRIVER
2098P: Jean Delvare
2099M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002100L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101S: Maintained
2102
2103LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2104P: Richard Russon (FlatCap)
2105M: ldm@flatcap.org
2106L: ldm-devel@lists.sourceforge.net
2107W: http://ldm.sourceforge.net
2108S: Maintained
2109
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002110LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2111P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002112M: Eric.Moore@lsi.com
2113M: support@lsi.com
2114L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002115L: linux-scsi@vger.kernel.org
2116W: http://www.lsilogic.com/support
2117S: Supported
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2120P: Matthew Wilcox
2121M: matthew@wil.cx
2122L: linux-scsi@vger.kernel.org
2123S: Maintained
2124
2125M68K ARCHITECTURE
2126P: Geert Uytterhoeven
2127M: geert@linux-m68k.org
2128P: Roman Zippel
2129M: zippel@linux-m68k.org
2130L: linux-m68k@lists.linux-m68k.org
2131W: http://www.linux-m68k.org/
2132W: http://linux-m68k-cvs.ubb.ca/
2133S: Maintained
2134
2135M68K ON APPLE MACINTOSH
2136P: Joshua Thompson
2137M: funaho@jurai.org
2138W: http://www.mac.linux-m68k.org/
2139L: linux-mac68k@mac.linux-m68k.org
2140S: Maintained
2141
2142M68K ON HP9000/300
2143P: Philip Blundell
2144M: philb@gnu.org
2145W: http://www.tazenda.demon.co.uk/phil/linux-hp
2146S: Maintained
2147
2148MARVELL YUKON / SYSKONNECT DRIVER
2149P: Mirko Lindner
2150M: mlindner@syskonnect.de
2151P: Ralph Roesler
2152M: rroesler@syskonnect.de
2153W: http://www.syskonnect.com
2154S: Supported
2155
Michael Kerriskfaf16682005-07-31 22:34:47 -07002156MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002157P: Michael Kerrisk
2158M: mtk-manpages@gmx.net
2159W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2160S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002161
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002162MARVELL MV643XX ETHERNET DRIVER
2163P: Dale Farnsworth
2164M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002166M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002167L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002168S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
2170MATROX FRAMEBUFFER DRIVER
2171P: Petr Vandrovec
2172M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002173L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174S: Maintained
2175
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002176MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002177P: Neela Syam Kolli
2178M: Neela.Kolli@engenio.com
2179S: linux-scsi@vger.kernel.org
2180W: http://megaraid.lsilogic.com
2181S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002182
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002183MEMORY MANAGEMENT
2184L: linux-mm@kvack.org
2185L: linux-kernel@vger.kernel.org
2186W: http://www.linux-mm.org
2187S: Maintained
2188
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002189MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190P: David Woodhouse
2191M: dwmw2@infradead.org
2192W: http://www.linux-mtd.infradead.org/
2193L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002194T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195S: Maintained
2196
2197MICROTEK X6 SCANNER
2198P: Oliver Neukum
2199M: oliver@neukum.name
2200S: Maintained
2201
2202MIPS
2203P: Ralf Baechle
2204M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002205W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002207T: git www.linux-mips.org:/pub/scm/linux.git
2208S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210MISCELLANEOUS MCA-SUPPORT
2211P: James Bottomley
2212M: jejb@steeleye.com
2213L: linux-kernel@vger.kernel.org
2214S: Maintained
2215
2216MODULE SUPPORT
2217P: Rusty Russell
2218M: rusty@rustcorp.com.au
2219L: linux-kernel@vger.kernel.org
2220S: Maintained
2221
2222MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2223P: Stelian Pop
2224M: stelian@popies.net
2225W: http://popies.net/meye/
2226S: Maintained
2227
2228MOUSE AND MISC DEVICES [GENERAL]
2229P: Alessandro Rubini
2230M: rubini@ipvvis.unipv.it
2231L: linux-kernel@vger.kernel.org
2232S: Maintained
2233
Jiri Slabyd7354102006-12-08 02:38:35 -08002234MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2235P: Jiri Slaby
2236M: jirislaby@gmail.com
2237L: linux-kernel@vger.kernel.org
2238S: Maintained
2239
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002240MSI LAPTOP SUPPORT
2241P: Lennart Poettering
2242M: mzxreary@0pointer.de
2243L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2244W: http://0pointer.de/lennart/tchibo.html
2245S: Maintained
2246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247MTRR AND SIMILAR SUPPORT [i386]
2248P: Richard Gooch
2249M: rgooch@atnf.csiro.au
2250L: linux-kernel@vger.kernel.org
2251W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2252S: Maintained
2253
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002254MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2255P: Pierre Ossman
2256M: drzeus-mmc@drzeus.cx
2257L: linux-kernel@vger.kernel.org
2258S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002259
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260MULTISOUND SOUND DRIVER
2261P: Andrew Veliath
2262M: andrewtv@usa.net
2263S: Maintained
2264
Jiri Slabyd7354102006-12-08 02:38:35 -08002265MULTITECH MULTIPORT CARD (ISICOM)
2266P: Jiri Slaby
2267M: jirislaby@gmail.com
2268L: linux-kernel@vger.kernel.org
2269S: Maintained
2270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271NATSEMI ETHERNET DRIVER (DP8381x)
2272P: Tim Hockin
2273M: thockin@hockin.org
2274S: Maintained
2275
2276NCP FILESYSTEM
2277P: Petr Vandrovec
2278M: vandrove@vc.cvut.cz
2279L: linware@sh.cvut.cz
2280S: Maintained
2281
2282NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2283P: James E.J. Bottomley
2284M: James.Bottomley@HansenPartnership.com
2285L: linux-scsi@vger.kernel.org
2286S: Maintained
2287
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002288NETEM NETWORK EMULATOR
2289P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002290M: shemminger@linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002291L: netem@osdl.org
2292S: Maintained
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294NETFILTER/IPTABLES/IPCHAINS
2295P: Rusty Russell
2296P: Marc Boucher
2297P: James Morris
2298P: Harald Welte
2299P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002300P: Patrick McHardy
2301M: kaber@trash.net
2302L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002303L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002304L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305W: http://www.netfilter.org/
2306W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307S: Supported
2308
Paul Moore4cc67732006-09-25 15:57:13 -07002309NETLABEL
2310P: Paul Moore
2311M: paul.moore@hp.com
2312W: http://netlabel.sf.net
2313L: netdev@vger.kernel.org
2314S: Supported
2315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316NETROM NETWORK LAYER
2317P: Ralf Baechle
2318M: ralf@linux-mips.org
2319L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002320W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321S: Maintained
2322
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002323NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324P: Paul Clements
2325M: Paul.Clements@steeleye.com
2326S: Maintained
2327
2328NETWORK DEVICE DRIVERS
2329P: Andrew Morton
2330M: akpm@osdl.org
2331P: Jeff Garzik
2332M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002333L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002334T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335S: Maintained
2336
2337NETWORKING [GENERAL]
2338P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002339M: netdev@vger.kernel.org
2340L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002341W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342S: Maintained
2343
2344NETWORKING [IPv4/IPv6]
2345P: David S. Miller
2346M: davem@davemloft.net
2347P: Alexey Kuznetsov
2348M: kuznet@ms2.inr.ac.ru
2349P: Pekka Savola (ipv6)
2350M: pekkas@netcore.fi
2351P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002352M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353P: Hideaki YOSHIFUJI
2354M: yoshfuji@linux-ipv6.org
2355P: Patrick McHardy
2356M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002357L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002358T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359S: Maintained
2360
John W. Linville29f8f632006-01-18 14:52:48 -08002361NETWORKING [WIRELESS]
2362P: John W. Linville
2363M: linville@tuxdriver.com
2364L: netdev@vger.kernel.org
2365T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2366S: Maintained
2367
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002368NETXEN (1/10) GbE SUPPORT
2369P: Amit S. Kale
2370M: amitkale@netxen.com
2371L: netdev@vger.kernel.org
2372W: http://www.netxen.com
2373S: Supported
2374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375IPVS
2376P: Wensong Zhang
2377M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002378P: Simon Horman
2379M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380P: Julian Anastasov
2381M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002382L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383S: Maintained
2384
2385NFS CLIENT
2386P: Trond Myklebust
2387M: trond.myklebust@fys.uio.no
2388L: linux-kernel@vger.kernel.org
2389S: Maintained
2390
2391NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002392P: Jan-Pascal van Best
2393M: janpascal@vanbest.org
2394P: Andreas Mohr
2395M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002396L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397S: Maintained
2398
2399NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2400P: YOKOTA Hiroshi
2401M: yokota@netlab.is.tsukuba.ac.jp
2402W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2403S: Maintained
2404
2405NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2406P: GOTO Masanori
2407M: gotom@debian.or.jp
2408P: YOKOTA Hiroshi
2409M: yokota@netlab.is.tsukuba.ac.jp
2410W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2411S: Maintained
2412
2413NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2414P: Eberhard Moenkeberg
2415M: emoenke@gwdg.de
2416L: linux-kernel@vger.kernel.org
2417S: Maintained
2418
2419NTFS FILESYSTEM
2420P: Anton Altaparmakov
2421M: aia21@cantab.net
2422L: linux-ntfs-dev@lists.sourceforge.net
2423L: linux-kernel@vger.kernel.org
2424W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002425T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426S: Maintained
2427
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002428NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002429P: Antonino Daplas
2430M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002431L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002432S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002434OPENCORES I2C BUS DRIVER
2435P: Peter Korsgaard
2436M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002437L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002438S: Maintained
2439
Mark Fashehccd979b2005-12-15 14:31:24 -08002440ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2441P: Mark Fasheh
2442M: mark.fasheh@oracle.com
2443P: Kurt Hackel
2444M: kurt.hackel@oracle.com
2445L: ocfs2-devel@oss.oracle.com
2446W: http://oss.oracle.com/projects/ocfs2/
2447S: Supported
2448
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449OLYMPIC NETWORK DRIVER
2450P: Peter De Shrijver
2451M: p2@ace.ulyssis.student.kuleuven.ac.be
2452P: Mike Phillips
2453M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002454L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455L: linux-tr@linuxtr.net
2456W: http://www.linuxtr.net
2457S: Maintained
2458
Harald Weltec1986ee2005-11-13 16:06:29 -08002459OMNIKEY CARDMAN 4000 DRIVER
2460P: Harald Welte
2461M: laforge@gnumonks.org
2462S: Maintained
2463
Harald Welte77c44ab2005-11-13 16:06:26 -08002464OMNIKEY CARDMAN 4040 DRIVER
2465P: Harald Welte
2466M: laforge@gnumonks.org
2467S: Maintained
2468
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469ONSTREAM SCSI TAPE DRIVER
2470P: Willem Riede
2471M: osst@riede.org
2472L: osst-users@lists.sourceforge.net
2473L: linux-scsi@vger.kernel.org
2474S: Maintained
2475
2476OPL3-SA2, SA3, and SAx DRIVER
2477P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002478M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479L: linux-sound@vger.kernel.org
2480S: Maintained
2481
2482OPROFILE
2483P: Philippe Elie
2484M: phil.el@wanadoo.fr
2485L: oprofile-list@lists.sf.net
2486S: Maintained
2487
2488ORINOCO DRIVER
2489P: Pavel Roskin
2490M: proski@gnu.org
2491P: David Gibson
2492M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002493L: orinoco-users@lists.sourceforge.net
2494L: orinoco-devel@lists.sourceforge.net
2495W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496S: Maintained
2497
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002498PA SEMI ETHERNET DRIVER
2499P: Olof Johansson
2500M: olof@lixom.net
2501L: netdev@vger.kernel.org
2502S: Maintained
2503
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504PARALLEL PORT SUPPORT
2505P: Phil Blundell
2506M: philb@gnu.org
2507P: Tim Waugh
2508M: tim@cyberelk.net
2509P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510P: Andrea Arcangeli
2511M: andrea@suse.de
2512L: linux-parport@lists.infradead.org
2513W: http://people.redhat.com/twaugh/parport/
2514S: Maintained
2515
2516PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2517P: Tim Waugh
2518M: tim@cyberelk.net
2519L: linux-parport@lists.infradead.org
2520W: http://www.torque.net/linux-pp.html
2521S: Maintained
2522
2523PARISC ARCHITECTURE
2524P: Matthew Wilcox
2525M: matthew@wil.cx
2526P: Grant Grundler
2527M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002528P: Kyle McMartin
2529M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530L: parisc-linux@parisc-linux.org
2531W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002532T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2533T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534S: Maintained
2535
Jim Cromie1662d322006-10-06 00:43:59 -07002536PC87360 HARDWARE MONITORING DRIVER
2537P: Jim Cromie
2538M: jim.cromie@gmail.com
2539L: lm-sensors@lm-sensors.org
2540S: Maintained
2541
2542PC8736x GPIO DRIVER
2543P: Jim Cromie
2544M: jim.cromie@gmail.com
2545S: Maintained
2546
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002547PCI ERROR RECOVERY
2548P: Linas Vepstas
2549M: linas@austin.ibm.com
2550L: linux-kernel@vger.kernel.org
2551L: linux-pci@atrey.karlin.mff.cuni.cz
2552S: Supported
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2555P: Thomas Sailer
2556M: sailer@ife.ee.ethz.ch
2557L: linux-sound@vger.kernel.org
2558W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2559S: Maintained
2560
2561PCI SUBSYSTEM
2562P: Greg Kroah-Hartman
2563M: gregkh@suse.de
2564L: linux-kernel@vger.kernel.org
2565L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002566T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567S: Supported
2568
2569PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002570P: Kristen Carlson Accardi
2571M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572S: Supported
2573
2574PCI HOTPLUG COMPAQ DRIVER
2575P: Greg Kroah-Hartman
2576M: greg@kroah.com
2577S: Maintained
2578
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002579PCIE HOTPLUG DRIVER
2580P: Kristen Carlson Accardi
2581M: kristen.c.accardi@intel.com
2582L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002583S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002586P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002587L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002589T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002590S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592PCNET32 NETWORK DRIVER
2593P: Thomas Bogendörfer
2594M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002595L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596S: Maintained
2597
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002598PER-TASK DELAY ACCOUNTING
2599P: Shailabh Nagar
2600M: nagar@watson.ibm.com
2601L: linux-kernel@vger.kernel.org
2602S: Maintained
2603
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002604PERSONALITY HANDLING
2605P: Christoph Hellwig
2606M: hch@infradead.org
2607L: linux-abi-devel@lists.sourceforge.net
2608S: Maintained
2609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610PHRAM MTD DRIVER
2611P: Jörn Engel
2612M: joern@wh.fh-wedel.de
2613L: linux-mtd@lists.infradead.org
2614S: Maintained
2615
Peter Osterlund249a6772005-09-27 21:45:30 -07002616PKTCDVD DRIVER
2617P: Peter Osterlund
2618M: petero2@telia.com
2619L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002620S: Maintained
2621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622POSIX CLOCKS and TIMERS
2623P: George Anzinger
2624M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002625L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626S: Supported
2627
Eugene Surovegin24682972005-10-14 03:00:53 -07002628POWERPC 4xx EMAC DRIVER
2629P: Eugene Surovegin
2630M: ebs@ebshome.net
2631W: http://kernel.ebshome.net/emac/
2632L: linuxppc-embedded@ozlabs.org
2633L: netdev@vger.kernel.org
2634S: Maintained
2635
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636PNP SUPPORT
2637P: Adam Belay
2638M: ambx1@neo.rr.com
2639S: Maintained
2640
Vitaly Wool999445d2007-01-04 13:07:03 +01002641PNXxxxx I2C DRIVER
2642P: Vitaly Wool
2643M: vitalywool@gmail.com
2644L: i2c@lm-sensors.org
2645S: Maintained
2646
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647PPP PROTOCOL DRIVERS AND COMPRESSORS
2648P: Paul Mackerras
2649M: paulus@samba.org
2650L: linux-ppp@vger.kernel.org
2651S: Maintained
2652
2653PPP OVER ATM (RFC 2364)
2654P: Mitchell Blank Jr
2655M: mitch@sfgoth.com
2656S: Maintained
2657
2658PPP OVER ETHERNET
2659P: Michal Ostrowski
2660M: mostrows@speakeasy.net
2661S: Maintained
2662
2663PREEMPTIBLE KERNEL
2664P: Robert Love
2665M: rml@tech9.net
2666L: linux-kernel@vger.kernel.org
2667L: kpreempt-tech@lists.sourceforge.net
2668W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2669S: Supported
2670
2671PRISM54 WIRELESS DRIVER
2672P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002673M: developers@islsm.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002674L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675W: http://prism54.org
2676S: Maintained
2677
2678PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2679P: Peter Denison
2680M: promise@pnd-pc.demon.co.uk
2681W: http://www.pnd-pc.demon.co.uk/promise/
2682S: Maintained
2683
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002684PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2685P: Mikael Pettersson
2686M: mikpe@it.uu.se
2687L: linux-ide@vger.kernel.org
2688S: Maintained
2689
Geoff Levandf58a9d12006-11-23 00:46:51 +01002690PS3 PLATFORM SUPPORT
2691P: Geoff Levand
2692M: geoffrey.levand@am.sony.com
2693L: linuxppc-dev@ozlabs.org
2694L: cbe-oss-dev@ozlabs.org
2695S: Supported
2696
Michael Krufky83202042006-07-03 00:24:18 -07002697PVRUSB2 VIDEO4LINUX DRIVER
2698P: Mike Isely
2699M: isely@pobox.com
2700L: pvrusb2@isely.net
2701L: video4linux-list@redhat.com
2702W: http://www.isely.net/pvrusb2/
2703S: Maintained
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705PXA2xx SUPPORT
2706P: Nicolas Pitre
2707M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002708L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709S: Maintained
2710
2711QLOGIC QLA2XXX FC-SCSI DRIVER
2712P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002713M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714L: linux-scsi@vger.kernel.org
2715S: Supported
2716
Ron Mercer5a4faa82006-07-25 00:40:21 -07002717QLOGIC QLA3XXX NETWORK DRIVER
2718P: Ron Mercer
2719M: linux-driver@qlogic.com
2720L: netdev@vger.kernel.org
2721S: Supported
2722
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723QNX4 FILESYSTEM
2724P: Anders Larsen
2725M: al@alarsen.net
2726L: linux-kernel@vger.kernel.org
2727W: http://www.alarsen.net/linux/qnx4fs/
2728S: Maintained
2729
2730RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002731P: Benjamin Herrenschmidt
2732M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002733L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734S: Maintained
2735
2736RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002737P: Paul Mackerras
2738M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002739L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740S: Maintained
2741
2742RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2743P: Corey Thomas
2744M: corey@world.std.com
2745L: linux-kernel@vger.kernel.org
2746S: Maintained
2747
Matt Mackall9e95ce22005-04-16 15:25:56 -07002748RANDOM NUMBER DRIVER
2749P: Matt Mackall
2750M: mpm@selenic.com
2751S: Maintained
2752
Matt Porter394b7012005-11-07 01:00:15 -08002753RAPIDIO SUBSYSTEM
2754P: Matt Porter
2755M: mporter@kernel.crashing.org
2756L: linux-kernel@vger.kernel.org
2757S: Maintained
2758
Josh Triplett595182b2006-10-04 02:17:21 -07002759READ-COPY UPDATE (RCU)
2760P: Dipankar Sarma
2761M: dipankar@in.ibm.com
2762W: http://www.rdrop.com/users/paulmck/rclock/
2763L: linux-kernel@vger.kernel.org
2764S: Supported
2765
2766RCUTORTURE MODULE
2767P: Josh Triplett
2768M: josh@freedesktop.org
2769L: linux-kernel@vger.kernel.org
2770S: Maintained
2771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772REAL TIME CLOCK DRIVER
2773P: Paul Gortmaker
2774M: p_gortmaker@yahoo.com
2775L: linux-kernel@vger.kernel.org
2776S: Maintained
2777
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002778REAL TIME CLOCK (RTC) SUBSYSTEM
2779P: Alessandro Zummo
2780M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002781L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002782S: Maintained
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784REISERFS FILE SYSTEM
2785P: Hans Reiser
2786M: reiserfs-dev@namesys.com
2787L: reiserfs-list@namesys.com
2788W: http://www.namesys.com
2789S: Supported
2790
2791ROCKETPORT DRIVER
2792P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793W: http://www.comtrol.com
2794S: Maintained
2795
2796ROSE NETWORK LAYER
2797P: Ralf Baechle
2798M: ralf@linux-mips.org
2799L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002800W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801S: Maintained
2802
2803RISCOM8 DRIVER
2804S: Orphan
2805
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002806S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002807P: Antonino Daplas
2808M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002809L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002810S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812S390
2813P: Martin Schwidefsky
2814M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002815P: Heiko Carstens
2816M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002818L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002819W: http://www.ibm.com/developerworks/linux/linux390/
2820S: Supported
2821
2822S390 NETWORK DRIVERS
2823P: Frank Pavlic
2824M: fpavlic@de.ibm.com
2825M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002826L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002827W: http://www.ibm.com/developerworks/linux/linux390/
2828S: Supported
2829
2830S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002831P: Swen Schillig
2832M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002833M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01002834L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002835W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836S: Supported
2837
2838SAA7146 VIDEO4LINUX-2 DRIVER
2839P: Michael Hunold
2840M: michael@mihu.de
2841W: http://www.mihu.de/linux/saa7146
2842S: Maintained
2843
2844SBPCD CDROM DRIVER
2845P: Eberhard Moenkeberg
2846M: emoenke@gwdg.de
2847L: linux-kernel@vger.kernel.org
2848S: Maintained
2849
2850SC1200 WDT DRIVER
2851P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002852M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853S: Maintained
2854
2855SCHEDULER
2856P: Ingo Molnar
2857M: mingo@elte.hu
2858P: Robert Love [the preemptible kernel bits]
2859M: rml@tech9.net
2860L: linux-kernel@vger.kernel.org
2861S: Maintained
2862
2863SCSI CDROM DRIVER
2864P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002865M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866L: linux-scsi@vger.kernel.org
2867W: http://www.kernel.dk
2868S: Maintained
2869
2870SCSI SG DRIVER
2871P: Doug Gilbert
2872M: dgilbert@interlog.com
2873L: linux-scsi@vger.kernel.org
2874W: http://www.torque.net/sg
2875S: Maintained
2876
2877SCSI SUBSYSTEM
2878P: James E.J. Bottomley
2879M: James.Bottomley@SteelEye.com
2880L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002881T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882S: Maintained
2883
2884SCSI TAPE DRIVER
2885P: Kai Mäkisara
2886M: Kai.Makisara@kolumbus.fi
2887L: linux-scsi@vger.kernel.org
2888S: Maintained
2889
2890SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002891P: Sridhar Samudrala
2892M: sri@us.ibm.com
2893L: lksctp-developers@lists.sourceforge.net
2894S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
2896SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002897P: Jim Cromie
2898M: jim.cromie@gmail.com
2899S: Odd Fixes
2900
2901SCx200 GPIO DRIVER
2902P: Jim Cromie
2903M: jim.cromie@gmail.com
2904S: Maintained
2905
2906SCx200 HRT CLOCKSOURCE DRIVER
2907P: Jim Cromie
2908M: jim.cromie@gmail.com
2909S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
2911SECURITY CONTACT
2912P: Security Officers
2913M: security@kernel.org
2914S: Supported
2915
2916SELINUX SECURITY MODULE
2917P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002918M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002920M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921L: linux-kernel@vger.kernel.org (kernel issues)
2922L: selinux@tycho.nsa.gov (general discussion)
2923W: http://www.nsa.gov/selinux
2924S: Supported
2925
2926SERIAL ATA (SATA) SUBSYSTEM:
2927P: Jeff Garzik
2928M: jgarzik@pobox.com
2929L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002930T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931S: Supported
2932
2933SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2934P: Pat Gefre
2935M: pfg@sgi.com
2936L: linux-ia64@vger.kernel.org
2937S: Supported
2938
2939SGI VISUAL WORKSTATION 320 AND 540
2940P: Andrey Panin
2941M: pazke@donpac.ru
2942L: linux-visws-devel@lists.sf.net
2943W: http://linux-visws.sf.net
2944S: Maintained for 2.6.
2945
2946SIMTEC EB110ATX (Chalice CATS)
2947P: Ben Dooks
2948P: Vincent Sanders
2949M: support@simtec.co.uk
2950W: http://www.simtec.co.uk/products/EB110ATX/
2951S: Supported
2952
2953SIMTEC EB2410ITX (BAST)
2954P: Ben Dooks
2955P: Vincent Sanders
2956M: support@simtec.co.uk
2957W: http://www.simtec.co.uk/products/EB2410ITX/
2958S: Supported
2959
Francois Romieu92aab3c2005-07-30 13:11:18 +02002960SIS 190 ETHERNET DRIVER
2961P: Francois Romieu
2962M: romieu@fr.zoreil.com
2963L: netdev@vger.kernel.org
2964S: Maintained
2965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966SIS 5513 IDE CONTROLLER DRIVER
2967P: Lionel Bouton
2968M: Lionel.Bouton@inet6.fr
2969W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2970W: http://gyver.homeip.net/sis5513/index.html
2971S: Maintained
2972
2973SIS 900/7016 FAST ETHERNET DRIVER
2974P: Daniele Venzano
2975M: venza@brownhat.org
2976W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002977L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978S: Maintained
2979
2980SIS FRAMEBUFFER DRIVER
2981P: Thomas Winischhofer
2982M: thomas@winischhofer.net
2983W: http://www.winischhofer.net/linuxsisvga.shtml
2984S: Maintained
2985
2986SIS USB2VGA DRIVER
2987P: Thomas Winischhofer
2988M: thomas@winischhofer.net
2989W: http://www.winischhofer.at/linuxsisusbvga.shtml
2990S: Maintained
2991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992SMC91x ETHERNET DRIVER
2993P: Nicolas Pitre
2994M: nico@cam.org
2995S: Maintained
2996
Daniel Drake8f0f8502006-07-18 22:00:25 +01002997SOFTMAC LAYER (IEEE 802.11)
2998P: Johannes Berg
2999M: johannes@sipsolutions.net
3000P: Joe Jezak
3001M: josejx@gentoo.org
3002P: Daniel Drake
3003M: dsd@gentoo.org
3004W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01003005L: netdev@vger.kernel.org
3006S: Maintained
3007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008SOFTWARE RAID (Multiple Disks) SUPPORT
3009P: Ingo Molnar
3010M: mingo@redhat.com
3011P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003012M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003014S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
3016SOFTWARE SUSPEND:
3017P: Pavel Machek
3018M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07003019L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020S: Maintained
3021
3022SONIC NETWORK DRIVER
3023P: Thomas Bogendoerfer
3024M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003025L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026S: Maintained
3027
3028SONY VAIO CONTROL DEVICE DRIVER
3029P: Stelian Pop
3030M: stelian@popies.net
3031W: http://popies.net/sonypi/
3032S: Maintained
3033
3034SOUND
3035P: Jaroslav Kysela
3036M: perex@suse.cz
3037L: alsa-devel@alsa-project.org
3038S: Maintained
3039
Kumar Gala025c3982006-04-02 16:05:54 -05003040SPI SUBSYSTEM
3041P: David Brownell
3042M: dbrownell@users.sourceforge.net
3043L: spi-devel-general@lists.sourceforge.net
3044S: Maintained
3045
Steven Rostedt855f46a2006-08-05 12:14:50 -07003046STABLE BRANCH:
3047P: Greg Kroah-Hartman
3048M: greg@kroah.com
3049P: Chris Wright
3050M: chrisw@sous-sol.org
3051L: stable@kernel.org
3052S: Maintained
3053
Kylene Hall1c72d462005-05-01 08:59:13 -07003054TPM DEVICE DRIVER
3055P: Kylene Hall
3056M: kjhall@us.ibm.com
3057W: http://tpmdd.sourceforge.net
3058L: tpmdd-devel@lists.sourceforge.net
3059S: Maintained
3060
Mark Gross1a80ba82005-10-30 15:02:55 -08003061Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003062P: Mark Gross
3063M: mark.gross@intel.com
3064S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003065
Chris Zankel48b415c2005-06-23 22:01:07 -07003066TENSILICA XTENSA PORT (xtensa):
3067P: Chris Zankel
3068M: chris@zankel.net
3069S: Maintained
3070
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071UltraSPARC (sparc64):
3072P: David S. Miller
3073M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003075T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076S: Maintained
3077
3078SHARP LH SUPPORT (LH7952X & LH7A40X)
3079P: Marc Singer
3080M: elf@buici.com
3081W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003082L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083S: Maintained
3084
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003085SHPC HOTPLUG DRIVER
3086P: Kristen Carlson Accardi
3087M: kristen.c.accardi@intel.com
3088L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003089S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003090
Pierre Ossmand129bce2006-03-24 03:18:17 -08003091SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3092P: Pierre Ossman
3093M: drzeus-sdhci@drzeus.cx
3094L: sdhci-devel@list.drzeus.cx
3095W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3096S: Maintained
3097
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003098SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3099P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003100M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003101L: netdev@vger.kernel.org
3102S: Maintained
3103
Chris Boot1a87d942006-07-10 04:45:34 -07003104SOEKRIS NET48XX LED SUPPORT
3105P: Chris Boot
3106M: bootc@bootc.net
3107S: Maintained
3108
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109SPARC (sparc32):
3110P: William L. Irwin
3111M: wli@holomorphy.com
3112L: sparclinux@vger.kernel.org
3113S: Maintained
3114
3115SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3116P: Roger Wolff
3117M: R.E.Wolff@BitWizard.nl
3118L: linux-kernel@vger.kernel.org ?
3119S: Supported
3120
Jim Lewis2752e402006-09-29 02:01:19 -07003121SPIDERNET NETWORK DRIVER for CELL
3122P: Jim Lewis
3123M: jim@jklewis.com
3124L: netdev@vger.kernel.org
3125S: Supported
3126
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127SRM (Alpha) environment access
3128P: Jan-Benedict Glaw
3129M: jbglaw@lug-owl.de
3130L: linux-kernel@vger.kernel.org
3131S: Maintained
3132
3133STARFIRE/DURALAN NETWORK DRIVER
3134P: Ion Badulescu
3135M: ionut@cs.columbia.edu
3136S: Maintained
3137
3138STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3139W: http://mosquitonet.Stanford.EDU/strip.html
3140S: Unsupported ?
3141
3142STRADIS MPEG-2 DECODER DRIVER
3143P: Nathan Laredo
3144M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145W: http://www.stradis.com/
3146S: Maintained
3147
3148SUPERH (sh)
3149P: Paul Mundt
3150M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003151L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153S: Maintained
3154
3155SUPERH64 (sh64)
3156P: Paul Mundt
3157M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158L: linuxsh-shmedia-dev@lists.sourceforge.net
3159W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160S: Maintained
3161
3162SUN3/3X
3163P: Sam Creasey
3164M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165W: http://sammy.net/sun3/
3166S: Maintained
3167
3168SVGA HANDLING
3169P: Martin Mares
3170M: mj@ucw.cz
3171L: linux-video@atrey.karlin.mff.cuni.cz
3172S: Maintained
3173
3174SYSV FILESYSTEM
3175P: Christoph Hellwig
3176M: hch@infradead.org
3177S: Maintained
3178
Stephen Hemminger781b4562006-07-10 20:25:29 -07003179TC CLASSIFIER
3180P: Jamal Hadi Salim
3181M: hadi@cyberus.ca
3182L: netdev@vger.kernel.org
3183S: Maintained
3184
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003185TCP LOW PRIORITY MODULE
3186P: Wong Hoi Sing, Edison
3187M: hswong3i@gmail.com
3188P: Hung Hing Lun, Mike
3189M: hlhung3i@gmail.com
3190W: http://tcp-lp-mod.sourceforge.net/
3191S: Maintained
3192
Alex Dubov4020f2d2006-10-04 02:15:37 -07003193TI FLASH MEDIA INTERFACE DRIVER
3194P: Alex Dubov
3195M: oakad@yahoo.com
3196S: Maintained
3197
Michael Buesch844dd052006-06-26 00:24:59 -07003198TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3199P: Deepak Saxena
3200M: dsaxena@plexity.net
3201S: Maintained
3202
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003203TASKSTATS STATISTICS INTERFACE
3204P: Shailabh Nagar
3205M: nagar@watson.ibm.com
3206L: linux-kernel@vger.kernel.org
3207S: Maintained
3208
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003210P: Romain Lievin
3211M: roms@lpg.ticalc.org
3212S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
Per Lidene86eaa32006-01-12 16:45:18 +01003214TIPC NETWORK LAYER
3215P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003216M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003217P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003218M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003219P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003220M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003221L: tipc-discussion@lists.sourceforge.net
3222W: http://tipc.sourceforge.net/
3223W: http://tipc.cslab.ericsson.net/
3224T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3225S: Maintained
3226
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227TLAN NETWORK DRIVER
3228P: Samuel Chessman
3229M: chessman@tux.org
3230L: tlan-devel@lists.sourceforge.net
3231W: http://sourceforge.net/projects/tlan/
3232S: Maintained
3233
3234TOKEN-RING NETWORK DRIVER
3235P: Mike Phillips
3236M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003237L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238L: linux-tr@linuxtr.net
3239W: http://www.linuxtr.net
3240S: Maintained
3241
3242TOSHIBA ACPI EXTRAS DRIVER
3243P: John Belmonte
3244M: toshiba_acpi@memebeam.org
3245W: http://memebeam.org/toys/ToshibaAcpiDriver
3246S: Maintained
3247
3248TOSHIBA SMM DRIVER
3249P: Jonathan Buzzard
3250M: jonathan@buzzard.org.uk
3251L: tlinux-users@tce.toshiba-dme.co.jp
3252W: http://www.buzzard.org.uk/toshiba/
3253S: Maintained
3254
3255TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3256P: Muli Ben-Yehuda
3257M: mulix@mulix.org
3258L: linux-kernel@vger.kernel.org
3259S: Maintained
3260
3261TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003262P: Adrian Bunk
3263M: trivial@kernel.org
3264L: linux-kernel@vger.kernel.org
3265W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3266T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3267S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
3269TMS380 TOKEN-RING NETWORK DRIVER
3270P: Adam Fritzler
3271M: mid@auk.cx
3272L: linux-tr@linuxtr.net
3273W: http://www.auk.cx/tms380tr/
3274S: Maintained
3275
3276TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003277P: Valerie Henson
3278M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279L: tulip-users@lists.sourceforge.net
3280W: http://sourceforge.net/projects/tulip/
3281S: Maintained
3282
3283TUN/TAP driver
3284P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003285M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286L: vtun@office.satix.net
3287W: http://vtun.sourceforge.net/tun
3288S: Maintained
3289
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003290TURBOCHANNEL SUBSYSTEM
3291P: Maciej W. Rozycki
3292M: macro@linux-mips.org
3293S: Maintained
3294
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295U14-34F SCSI DRIVER
3296P: Dario Ballabio
3297M: ballabio_dario@emc.com
3298L: linux-scsi@vger.kernel.org
3299S: Maintained
3300
3301UDF FILESYSTEM
3302P: Ben Fennema
3303M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304W: http://linux-udf.sourceforge.net
3305S: Maintained
3306
3307UNIFORM CDROM DRIVER
3308P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003309M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310L: linux-kernel@vger.kernel.org
3311W: http://www.kernel.dk
3312S: Maintained
3313
3314USB ACM DRIVER
3315P: Oliver Neukum
3316M: oliver@neukum.name
3317L: linux-usb-users@lists.sourceforge.net
3318L: linux-usb-devel@lists.sourceforge.net
3319S: Maintained
3320
3321USB BLOCK DRIVER (UB ub)
3322P: Pete Zaitcev
3323M: zaitcev@redhat.com
3324L: linux-kernel@vger.kernel.org
3325L: linux-usb-devel@lists.sourceforge.net
3326S: Supported
3327
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328USB CDC ETHERNET DRIVER
3329P: Greg Kroah-Hartman
3330M: greg@kroah.com
3331L: linux-usb-users@lists.sourceforge.net
3332L: linux-usb-devel@lists.sourceforge.net
3333S: Maintained
3334W: http://www.kroah.com/linux-usb/
3335
3336USB EHCI DRIVER
3337P: David Brownell
3338M: dbrownell@users.sourceforge.net
3339L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003340S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341
Luca Risolia7ce08c92006-01-11 02:06:59 +00003342USB ET61X[12]51 DRIVER
3343P: Luca Risolia
3344M: luca.risolia@studio.unibo.it
3345L: linux-usb-devel@lists.sourceforge.net
3346L: video4linux-list@redhat.com
3347W: http://www.linux-projects.org
3348S: Maintained
3349
David Brownell69ae9e32006-11-14 02:03:31 -08003350USB GADGET/PERIPHERAL SUBSYSTEM
3351P: David Brownell
3352M: dbrownell@users.sourceforge.net
3353L: linux-usb-devel@lists.sourceforge.net
3354W: http://www.linux-usb.org/gadget
3355S: Maintained
3356
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357USB HID/HIDBP DRIVERS
Jiri Kosina641266f2007-01-15 09:56:21 +01003358P: Jiri Kosina
3359M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360L: linux-usb-devel@lists.sourceforge.net
3361S: Maintained
3362
3363USB HUB DRIVER
3364P: Johannes Erdfelt
3365M: johannes@erdfelt.com
3366L: linux-usb-users@lists.sourceforge.net
3367L: linux-usb-devel@lists.sourceforge.net
3368S: Maintained
3369
Olav Kongas959eea22005-11-03 17:38:14 +02003370USB ISP116X DRIVER
3371P: Olav Kongas
3372M: ok@artecdesign.ee
3373L: linux-usb-devel@lists.sourceforge.net
3374S: Maintained
3375
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376USB KAWASAKI LSI DRIVER
3377P: Oliver Neukum
3378M: oliver@neukum.name
3379L: linux-usb-users@lists.sourceforge.net
3380L: linux-usb-devel@lists.sourceforge.net
3381S: Maintained
3382
3383USB MASS STORAGE DRIVER
3384P: Matthew Dharm
3385M: mdharm-usb@one-eyed-alien.net
3386L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003387L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388S: Maintained
3389W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3390
3391USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003392P: David Brownell
3393M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394L: linux-usb-users@lists.sourceforge.net
3395L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003396S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397
Matthias Urlichsba460e42005-07-14 00:33:47 -07003398USB OPTION-CARD DRIVER
3399P: Matthias Urlichs
3400M: smurf@smurf.noris.de
3401L: linux-usb-devel@lists.sourceforge.net
3402S: Maintained
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404USB OV511 DRIVER
3405P: Mark McClelland
3406M: mmcclell@bigfoot.com
3407L: linux-usb-users@lists.sourceforge.net
3408L: linux-usb-devel@lists.sourceforge.net
3409W: http://alpha.dyndns.org/ov511/
3410S: Maintained
3411
3412USB PEGASUS DRIVER
3413P: Petko Manolov
3414M: petkan@users.sourceforge.net
3415L: linux-usb-users@lists.sourceforge.net
3416L: linux-usb-devel@lists.sourceforge.net
3417W: http://pegasus2.sourceforge.net/
3418S: Maintained
3419
3420USB PRINTER DRIVER
3421P: Vojtech Pavlik
3422M: vojtech@suse.cz
3423L: linux-usb-users@lists.sourceforge.net
3424L: linux-usb-devel@lists.sourceforge.net
3425S: Maintained
3426
3427USB RTL8150 DRIVER
3428P: Petko Manolov
3429M: petkan@users.sourceforge.net
3430L: linux-usb-users@lists.sourceforge.net
3431L: linux-usb-devel@lists.sourceforge.net
3432W: http://pegasus2.sourceforge.net/
3433S: Maintained
3434
3435USB SE401 DRIVER
3436P: Jeroen Vreeken
3437M: pe1rxq@amsat.org
3438L: linux-usb-users@lists.sourceforge.net
3439L: linux-usb-devel@lists.sourceforge.net
3440W: http://www.chello.nl/~j.vreeken/se401/
3441S: Maintained
3442
3443USB SERIAL CYBERJACK DRIVER
3444P: Matthias Bruestle and Harald Welte
3445M: support@reiner-sct.com
3446W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3447S: Maintained
3448
3449USB SERIAL DIGI ACCELEPORT DRIVER
3450P: Peter Berger and Al Borchers
3451M: pberger@brimson.com
3452M: alborchers@steinerpoint.com
3453L: linux-usb-users@lists.sourceforge.net
3454L: linux-usb-devel@lists.sourceforge.net
3455S: Maintained
3456
3457USB SERIAL DRIVER
3458P: Greg Kroah-Hartman
3459M: gregkh@suse.de
3460L: linux-usb-users@lists.sourceforge.net
3461L: linux-usb-devel@lists.sourceforge.net
3462S: Supported
3463
3464USB SERIAL BELKIN F5U103 DRIVER
3465P: William Greathouse
3466M: wgreathouse@smva.com
3467L: linux-usb-users@lists.sourceforge.net
3468L: linux-usb-devel@lists.sourceforge.net
3469S: Maintained
3470
3471USB SERIAL CYPRESS M8 DRIVER
3472P: Lonnie Mendez
3473M: dignome@gmail.com
3474L: linux-usb-users@lists.sourceforge.net
3475L: linux-usb-devel@lists.sourceforge.net
3476S: Maintained
3477W: http://geocities.com/i0xox0i
3478W: http://firstlight.net/cvs
3479
3480USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3481L: linux-usb-users@lists.sourceforge.net
3482L: linux-usb-devel@lists.sourceforge.net
3483S: Maintained
3484
3485USB AUERSWALD DRIVER
3486P: Wolfgang Muees
3487M: wolfgang@iksw-muees.de
3488L: linux-usb-users@lists.sourceforge.net
3489L: linux-usb-devel@lists.sourceforge.net
3490S: Maintained
3491
3492USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3493P: Gary Brubaker
3494M: xavyer@ix.netcom.com
3495L: linux-usb-users@lists.sourceforge.net
3496L: linux-usb-devel@lists.sourceforge.net
3497S: Maintained
3498
3499USB SERIAL KEYSPAN DRIVER
3500P: Greg Kroah-Hartman
3501M: greg@kroah.com
3502L: linux-usb-users@lists.sourceforge.net
3503L: linux-usb-devel@lists.sourceforge.net
3504W: http://www.kroah.com/linux/
3505S: Maintained
3506
3507USB SERIAL WHITEHEAT DRIVER
3508P: Stuart MacDonald
3509M: stuartm@connecttech.com
3510L: linux-usb-users@lists.sourceforge.net
3511L: linux-usb-devel@lists.sourceforge.net
3512W: http://www.connecttech.com
3513S: Supported
3514
3515USB SN9C10x DRIVER
3516P: Luca Risolia
3517M: luca.risolia@studio.unibo.it
3518L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003519L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520W: http://www.linux-projects.org
3521S: Maintained
3522
3523USB SUBSYSTEM
3524P: Greg Kroah-Hartman
3525M: gregkh@suse.de
3526L: linux-usb-users@lists.sourceforge.net
3527L: linux-usb-devel@lists.sourceforge.net
3528W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003529T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530S: Supported
3531
3532USB UHCI DRIVER
3533P: Alan Stern
3534M: stern@rowland.harvard.edu
3535L: linux-usb-users@lists.sourceforge.net
3536L: linux-usb-devel@lists.sourceforge.net
3537S: Maintained
3538
David Brownell69ae9e32006-11-14 02:03:31 -08003539USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540P: David Brownell
3541M: dbrownell@users.sourceforge.net
3542L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003543W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544S: Maintained
3545
3546USB W996[87]CF DRIVER
3547P: Luca Risolia
3548M: luca.risolia@studio.unibo.it
3549L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003550L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551W: http://www.linux-projects.org
3552S: Maintained
3553
Luca Risolia60f78052006-02-06 16:29:35 +00003554USB ZC0301 DRIVER
3555P: Luca Risolia
3556M: luca.risolia@studio.unibo.it
3557L: linux-usb-devel@lists.sourceforge.net
3558L: video4linux-list@redhat.com
3559W: http://www.linux-projects.org
3560S: Maintained
3561
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562USB ZD1201 DRIVER
3563P: Jeroen Vreeken
3564M: pe1rxq@amsat.org
3565L: linux-usb-users@lists.sourceforge.net
3566L: linux-usb-devel@lists.sourceforge.net
3567W: http://linux-lc100020.sourceforge.net
3568S: Maintained
3569
3570USER-MODE LINUX
3571P: Jeff Dike
3572M: jdike@karaya.com
3573L: user-mode-linux-devel@lists.sourceforge.net
3574L: user-mode-linux-user@lists.sourceforge.net
3575W: http://user-mode-linux.sourceforge.net
3576S: Maintained
3577
3578FAT/VFAT/MSDOS FILESYSTEM:
3579P: OGAWA Hirofumi
3580M: hirofumi@mail.parknet.co.jp
3581L: linux-kernel@vger.kernel.org
3582S: Maintained
3583
3584VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3585P: Jeff Garzik
3586S: Odd fixes
3587
3588VIA RHINE NETWORK DRIVER
3589P: Roger Luethi
3590M: rl@hellgate.ch
3591S: Maintained
3592
Jean Delvare32c0a522005-09-22 21:47:58 +02003593VIAPRO SMBUS DRIVER
3594P: Jean Delvare
3595M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003596L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003597S: Maintained
3598
Francois Romieu01f20732007-01-26 00:57:17 -08003599VIA VELOCITY NETWORK DRIVER
3600P: Francois Romieu
3601M: romieu@fr.zoreil.com
3602L: netdev@vger.kernel.org
3603S: Maintained
3604
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605UCLINUX (AND M68KNOMMU)
3606P: Greg Ungerer
3607M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003609L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610S: Maintained
3611
3612UCLINUX FOR NEC V850
3613P: Miles Bader
3614M: uclinux-v850@lsi.nec.co.jp
3615W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3616W: http://www.ee.nec.de/uclinux/
3617S: Supported
3618
3619UCLINUX FOR RENESAS H8/300
3620P: Yoshinori Sato
3621M: ysato@users.sourceforge.jp
3622W: http://uclinux-h8.sourceforge.jp/
3623S: Supported
3624
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003625UFS FILESYSTEM
3626P: Evgeniy Dushistov
3627M: dushistov@mail.ru
3628L: linux-kernel@vger.kernel.org
3629S: Maintained
3630
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631USB DIAMOND RIO500 DRIVER
3632P: Cesar Miquel
3633M: miquel@df.uba.ar
3634L: rio500-users@lists.sourceforge.net
3635W: http://rio500.sourceforge.net
3636S: Maintained
3637
3638VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003639P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003640M: mchehab@infradead.org
3641M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003643W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003644T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003645S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
Juerg Haefligerab413192006-09-24 20:54:04 +02003647VT1211 HARDWARE MONITOR DRIVER
3648P: Juerg Haefliger
3649M: juergh@gmail.com
3650L: lm-sensors@lm-sensors.org
3651S: Maintained
3652
Roger Lucas1de9e372005-11-26 20:20:05 +01003653VT8231 HARDWARE MONITOR DRIVER
3654P: Roger Lucas
3655M: roger@planbit.co.uk
3656L: lm-sensors@lm-sensors.org
3657S: Maintained
3658
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659W1 DALLAS'S 1-WIRE BUS
3660P: Evgeniy Polyakov
3661M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662S: Maintained
3663
Charles Spirakis13927072006-07-05 18:05:15 +02003664W83791D HARDWARE MONITORING DRIVER
3665P: Charles Spirakis
3666M: bezaur@gmail.com
3667L: lm-sensors@lm-sensors.org
3668S: Maintained
3669
Rudolf Marek61db0112006-12-12 18:18:30 +01003670W83793 HARDWARE MONITORING DRIVER
3671P: Rudolf Marek
3672M: r.marek@assembler.cz
3673L: lm-sensors@lm-sensors.org
3674S: Maintained
3675
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676W83L51xD SD/MMC CARD INTERFACE DRIVER
3677P: Pierre Ossman
3678M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003679L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680W: http://projects.drzeus.cx/wbsd
3681S: Maintained
3682
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003683WATCHDOG DEVICE DRIVERS
3684P: Wim Van Sebroeck
3685M: wim@iguana.be
3686T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3687S: Maintained
3688
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3690P: Jean Tourrilhes
3691M: jt@hpl.hp.com
3692W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3693S: Maintained
3694
3695WD7000 SCSI DRIVER
3696P: Miroslav Zagorac
3697M: zaga@fly.cc.fer.hr
3698L: linux-scsi@vger.kernel.org
3699S: Maintained
3700
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003701WISTRON LAPTOP BUTTON DRIVER
3702P: Miloslav Trmac
3703M: mitr@volny.cz
3704S: Maintained
3705
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706WL3501 WIRELESS PCMCIA CARD DRIVER
3707P: Arnaldo Carvalho de Melo
3708M: acme@conectiva.com.br
3709W: http://advogato.org/person/acme
3710S: Maintained
3711
3712X.25 NETWORK LAYER
3713P: Henner Eisen
3714M: eis@baty.hanse.de
3715L: linux-x25@vger.kernel.org
3716S: Maintained
3717
3718XFS FILESYSTEM
3719P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003720P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003722L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003724T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725S: Supported
3726
Peter Korsgaard238b8722006-12-06 20:35:17 -08003727XILINX UARTLITE SERIAL DRIVER
3728P: Peter Korsgaard
3729M: jacmet@sunsite.dk
3730L: linux-serial@vger.kernel.org
3731S: Maintained
3732
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733X86 3-LEVEL PAGING (PAE) SUPPORT
3734P: Ingo Molnar
3735M: mingo@redhat.com
3736S: Maintained
3737
3738X86-64 port
3739P: Andi Kleen
3740M: ak@suse.de
3741L: discuss@x86-64.org
3742W: http://www.x86-64.org
3743S: Maintained
3744
3745YAM DRIVER FOR AX.25
3746P: Jean-Paul Roubelat
3747M: jpr@f6fbb.org
3748L: linux-hams@vger.kernel.org
3749S: Maintained
3750
Henkaf64a5e2005-10-12 15:02:56 +02003751YEALINK PHONE DRIVER
3752P: Henk Vergonet
3753M: Henk.Vergonet@gmail.com
3754L: usbb2k-api-dev@nongnu.org
3755S: Maintained
3756
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757Z8530 DRIVER FOR AX.25
3758P: Joerg Reuter
3759M: jreuter@yaina.de
3760W: http://yaina.de/jreuter/
3761W: http://www.qsl.net/dl1bke/
3762L: linux-hams@vger.kernel.org
3763S: Maintained
3764
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003765ZD1211RW WIRELESS DRIVER
3766P: Daniel Drake
3767M: dsd@gentoo.org
3768P: Ulrich Kunitz
3769M: kune@deine-taler.de
3770W: http://zd1211.ath.cx/wiki/DriverRewrite
3771L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3772S: Maintained
3773
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774ZF MACHZ WATCHDOG
3775P: Fernando Fuganti
3776M: fuganti@netbank.com.br
3777W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3778S: Maintained
3779
3780ZR36067 VIDEO FOR LINUX DRIVER
3781P: Ronald Bultje
3782M: rbultje@ronald.bitfreak.net
3783L: mjpeg-users@lists.sourceforge.net
3784W: http://mjpeg.sourceforge.net/driver-zoran/
3785S: Maintained
3786
3787ZR36120 VIDEO FOR LINUX DRIVER
3788P: Pauline Middelink
3789M: middelin@polyware.nl
3790W: http://www.polyware.nl/~middelin/En/hobbies.html
3791W: http://www.polyware.nl/~middelin/hobbies.html
3792S: Maintained
3793
3794THE REST
3795P: Linus Torvalds
3796S: Buried alive in reporters