blob: c0f9a1ad361ef017936cdecaedd9f4a32b61af50 [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
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800623ATMEL SPI DRIVER
624P: Haavard Skinnemoen
625M: hskinnemoen@atmel.com
626S: Supported
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628ATMEL WIRELESS DRIVER
629P: Simon Kelley
630M: simon@thekelleys.org.uk
631W: http://www.thekelleys.org.uk/atmel
632W: http://atmelwlandriver.sourceforge.net/
633S: Maintained
634
Chris Wrighta92b7b82005-07-07 18:12:23 -0700635AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100636P: David Woodhouse
637M: dwmw2@infradead.org
638L: linux-audit@redhat.com
639W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800640T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700641S: Maintained
642
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800643AUXILIARY DISPLAY DRIVERS
644P: Miguel Ojeda Sandonis
645M: maxextreme@gmail.com
646L: linux-kernel@vger.kernel.org
647S: Maintained
648
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700649AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700650P: Haavard Skinnemoen
651M: hskinnemoen@atmel.com
652W: http://www.atmel.com/products/AVR32/
653W: http://avr32linux.org/
654W: http://avrfreaks.net/
655S: Supported
656
657AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700658P: Haavard Skinnemoen
659M: hskinnemoen@atmel.com
660S: Supported
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662AX.25 NETWORK LAYER
663P: Ralf Baechle
664M: ralf@linux-mips.org
665L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200666W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667S: Maintained
668
669BAYCOM/HDLCDRV DRIVERS FOR AX.25
670P: Thomas Sailer
671M: t.sailer@alumni.ethz.ch
672L: linux-hams@vger.kernel.org
673W: http://www.baycom.org/~tom/ham/ham.html
674S: Maintained
675
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200676BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
677P: Larry Finger
678M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200679P: Stefano Brivio
680M: st3@riseup.net
681W: http://bcm43xx.berlios.de/
682S: Maintained
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684BEFS FILE SYSTEM
685P: Sergey S. Kostyliov
686M: rathamahata@php4.ru
687L: linux-kernel@vger.kernel.org
688S: Maintained
689
690BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
691P: Kenji Hollis
692W: http://ftp.bitgate.com/pcwd/
693S: Maintained
694
695BFS FILE SYSTEM
696P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800697M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698L: linux-kernel@vger.kernel.org
699S: Maintained
700
701BLOCK LAYER
702P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200703M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800705T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706S: Maintained
707
708BLUETOOTH SUBSYSTEM
709P: Marcel Holtmann
710M: marcel@holtmann.org
711P: Maxim Krasnyansky
712M: maxk@qualcomm.com
713L: bluez-devel@lists.sf.net
714W: http://bluez.sf.net
715W: http://www.bluez.org
716W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800717T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718S: Maintained
719
720BLUETOOTH RFCOMM LAYER
721P: Marcel Holtmann
722M: marcel@holtmann.org
723P: Maxim Krasnyansky
724M: maxk@qualcomm.com
725S: Maintained
726
727BLUETOOTH BNEP LAYER
728P: Marcel Holtmann
729M: marcel@holtmann.org
730P: Maxim Krasnyansky
731M: maxk@qualcomm.com
732S: Maintained
733
734BLUETOOTH CMTP LAYER
735P: Marcel Holtmann
736M: marcel@holtmann.org
737S: Maintained
738
739BLUETOOTH HIDP LAYER
740P: Marcel Holtmann
741M: marcel@holtmann.org
742S: Maintained
743
744BLUETOOTH HCI UART DRIVER
745P: Marcel Holtmann
746M: marcel@holtmann.org
747P: Maxim Krasnyansky
748M: maxk@qualcomm.com
749S: Maintained
750
751BLUETOOTH HCI USB DRIVER
752P: Marcel Holtmann
753M: marcel@holtmann.org
754P: Maxim Krasnyansky
755M: maxk@qualcomm.com
756S: Maintained
757
758BLUETOOTH HCI BCM203X DRIVER
759P: Marcel Holtmann
760M: marcel@holtmann.org
761S: Maintained
762
763BLUETOOTH HCI BPA10X DRIVER
764P: Marcel Holtmann
765M: marcel@holtmann.org
766S: Maintained
767
768BLUETOOTH HCI BFUSB DRIVER
769P: Marcel Holtmann
770M: marcel@holtmann.org
771S: Maintained
772
773BLUETOOTH HCI DTL1 DRIVER
774P: Marcel Holtmann
775M: marcel@holtmann.org
776S: Maintained
777
778BLUETOOTH HCI BLUECARD DRIVER
779P: Marcel Holtmann
780M: marcel@holtmann.org
781S: Maintained
782
783BLUETOOTH HCI BT3C DRIVER
784P: Marcel Holtmann
785M: marcel@holtmann.org
786S: Maintained
787
788BLUETOOTH HCI BTUART DRIVER
789P: Marcel Holtmann
790M: marcel@holtmann.org
791S: Maintained
792
793BLUETOOTH HCI VHCI DRIVER
794P: Maxim Krasnyansky
795M: maxk@qualcomm.com
796S: Maintained
797
798BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100799P: Chad Tindel
800M: ctindel@users.sourceforge.net
801P: Jay Vosburgh
802M: fubar@us.ibm.com
803L: bonding-devel@lists.sourceforge.net
804W: http://sourceforge.net/projects/bonding/
805S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000807BROADBAND PROCESSOR ARCHITECTURE
808P: Arnd Bergmann
809M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100810L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400811W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000812S: Supported
813
Gary Zambrano39105892006-06-22 17:26:20 -0700814BROADCOM B44 10/100 ETHERNET DRIVER
815P: Gary Zambrano
816M: zambrano@broadcom.com
817L: netdev@vger.kernel.org
818S: Supported
819
Michael Chan948c51e2006-06-04 02:51:39 -0700820BROADCOM BNX2 GIGABIT ETHERNET DRIVER
821P: Michael Chan
822M: mchan@broadcom.com
823L: netdev@vger.kernel.org
824S: Supported
825
826BROADCOM TG3 GIGABIT ETHERNET DRIVER
827P: Michael Chan
828M: mchan@broadcom.com
829L: netdev@vger.kernel.org
830S: Supported
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700833P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200834M: mchehab@infradead.org
835M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700837W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200838T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700839S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200841CALGARY x86-64 IOMMU
842P: Muli Ben-Yehuda
843M: muli@il.ibm.com
844P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200845M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200846L: linux-kernel@vger.kernel.org
847L: discuss@x86-64.org
848S: Maintained
849
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800850CFAG12864B LCD DRIVER
851P: Miguel Ojeda Sandonis
852M: maxextreme@gmail.com
853L: linux-kernel@vger.kernel.org
854S: Maintained
855
856CFAG12864BFB LCD FRAMEBUFFER DRIVER
857P: Miguel Ojeda Sandonis
858M: maxextreme@gmail.com
859L: linux-kernel@vger.kernel.org
860S: Maintained
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862COMMON INTERNET FILE SYSTEM (CIFS)
863P: Steve French
864M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100865L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866L: samba-technical@lists.samba.org
867W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800868T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869S: Supported
870
Joel Becker7063fbf2005-12-15 14:29:43 -0800871CONFIGFS
872P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800873M: joel.becker@oracle.com
874L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800875S: Supported
876
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800877CIRRUS LOGIC EP93XX ETHERNET DRIVER
878P: Lennert Buytenhek
879M: kernel@wantstofly.org
880L: netdev@vger.kernel.org
881S: Maintained
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883CIRRUS LOGIC GENERIC FBDEV DRIVER
884P: Jeff Garzik
885M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800886L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887S: Odd Fixes
888
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800889CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
890P: Lennert Buytenhek
891M: kernel@wantstofly.org
892L: linux-usb-devel@lists.sourceforge.net
893S: Maintained
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
896P: Cirrus Logic Corporation (kernel 2.2 driver)
897M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
898P: Nils Faerber (port to kernel 2.4)
899M: Nils Faerber <nils@kernelconcepts.de>
900S: Maintained
901
902CODA FILE SYSTEM
903P: Jan Harkes
904M: jaharkes@cs.cmu.edu
905M: coda@cs.cmu.edu
906L: codalist@coda.cs.cmu.edu
907W: http://www.coda.cs.cmu.edu/
908S: Maintained
909
910COMPACTPCI HOTPLUG CORE
911P: Scott Murray
912M: scottm@somanetworks.com
913M: scott@spiteful.org
914L: pcihpd-discuss@lists.sourceforge.net
915S: Supported
916
917COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
918P: Scott Murray
919M: scottm@somanetworks.com
920M: scott@spiteful.org
921L: pcihpd-discuss@lists.sourceforge.net
922S: Supported
923
924COMPACTPCI HOTPLUG GENERIC DRIVER
925P: Scott Murray
926M: scottm@somanetworks.com
927M: scott@spiteful.org
928L: pcihpd-discuss@lists.sourceforge.net
929S: Supported
930
931COMPUTONE INTELLIPORT MULTIPORT CARD
932P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700933M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700935S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937COSA/SRP SYNC SERIAL DRIVER
938P: Jan "Yenya" Kasprzak
939M: kas@fi.muni.cz
940W: http://www.fi.muni.cz/~kas/cosa/
941S: Maintained
942
943CPU FREQUENCY DRIVERS
944P: Dave Jones
945M: davej@codemonkey.org.uk
946L: cpufreq@lists.linux.org.uk
947W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500948T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949S: Maintained
950
951CPUID/MSR DRIVER
952P: H. Peter Anvin
953M: hpa@zytor.com
954S: Maintained
955
Paul Jacksoned90fb42005-09-27 21:45:37 -0700956CPUSETS
957P: Paul Jackson
958P: Simon Derr
959M: pj@sgi.com
960M: simon.derr@bull.net
961L: linux-kernel@vger.kernel.org
962W: http://www.bullopensource.org/cpuset/
963S: Supported
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100966W: http://sourceforge.net/projects/cramfs/
967S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969CRIS PORT
970P: Mikael Starvik
971M: starvik@axis.com
972L: dev-etrax@axis.com
973W: http://developer.axis.com
974S: Maintained
975
976CRYPTO API
977P: Herbert Xu
978M: herbert@gondor.apana.org.au
979P: David S. Miller
980M: davem@davemloft.net
981L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800982T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983S: Maintained
984
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100985CS5535 Audio ALSA driver
986P: Jaya Kumar
987M: jayakumar.alsa@gmail.com
988S: Maintained
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990CYBERPRO FB DRIVER
991P: Russell King
992M: rmk@arm.linux.org.uk
993W: http://www.arm.linux.org.uk/
994S: Maintained
995
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700996CYBLAFB FRAMEBUFFER DRIVER
997P: Knut Petersen
998M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800999L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001000S: Maintained
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002CYCLADES 2X SYNC CARD DRIVER
1003P: Arnaldo Carvalho de Melo
1004M: acme@conectiva.com.br
1005W: http://advogato.org/person/acme
1006L: cycsyn-devel@bazar.conectiva.com.br
1007S: Maintained
1008
1009CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001011S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001015S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017DAMA SLAVE for AX.25
1018P: Joerg Reuter
1019M: jreuter@yaina.de
1020W: http://yaina.de/jreuter/
1021W: http://www.qsl.net/dl1bke/
1022L: linux-hams@vger.kernel.org
1023S: Maintained
1024
1025DC395x SCSI driver
1026P: Oliver Neukum
1027M: oliver@neukum.name
1028P: Ali Akcaagac
1029M: aliakc@web.de
1030P: Jamie Lenehan
1031M: lenehan@twibble.org
1032W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001033L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034L: http://lists.twibble.org/mailman/listinfo/dc395x/
1035S: Maintained
1036
1037DC390/AM53C974 SCSI driver
1038P: Kurt Garloff
1039M: garloff@suse.de
1040W: http://www.garloff.de/kurt/linux/dc390/
1041P: Guennadi Liakhovetski
1042M: g.liakhovetski@gmx.de
1043S: Maintained
1044
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001045DCCP PROTOCOL
1046P: Arnaldo Carvalho de Melo
1047M: acme@mandriva.com
1048L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001049W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001050S: Maintained
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052DECnet NETWORK LAYER
1053P: Patrick Caulfield
1054M: patrick@tykepenguin.com
1055W: http://linux-decnet.sourceforge.net
1056L: linux-decnet-user@lists.sourceforge.net
1057S: Maintained
1058
1059DEFXX FDDI NETWORK DRIVER
1060P: Maciej W. Rozycki
1061M: macro@linux-mips.org
1062S: Maintained
1063
1064DELL LAPTOP SMM DRIVER
1065P: Massimo Dal Zotto
1066M: dz@debian.org
1067W: http://www.debian.org/~dz/i8k/
1068S: Maintained
1069
Doug Warzecha90563ec2005-09-06 15:17:15 -07001070DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1071P: Doug Warzecha
1072M: Douglas_Warzecha@dell.com
1073S: Maintained
1074
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001075DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076P: Alasdair Kergon
1077L: dm-devel@redhat.com
1078W: http://sources.redhat.com/dm
1079S: Maintained
1080
1081DEVICE NUMBER REGISTRY
1082P: Torben Mathiasen
1083M: device@lanana.org
1084W: http://lanana.org/docs/device-list/index.html
1085L: linux-kernel@vger.kernel.org
1086S: Maintained
1087
1088DEVICE FILESYSTEM
1089S: Obsolete
1090
1091DIGI INTL. EPCA DRIVER
1092P: Digi International, Inc
1093M: Eng.Linux@digi.com
1094L: Eng.Linux@digi.com
1095W: http://www.digi.com
1096S: Orphaned
1097
1098DIGI RIGHTSWITCH NETWORK DRIVER
1099P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101W: http://www.digi.com
1102S: Orphaned
1103
1104DIRECTORY NOTIFICATION
1105P: Stephen Rothwell
1106M: sfr@canb.auug.org.au
1107L: linux-kernel@vger.kernel.org
1108S: Supported
1109
1110DISK GEOMETRY AND PARTITION HANDLING
1111P: Andries Brouwer
1112M: aeb@cwi.nl
1113W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1114W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1115W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1116S: Maintained
1117
1118DISKQUOTA:
1119P: Jan Kara
1120M: jack@suse.cz
1121L: linux-kernel@vger.kernel.org
1122S: Maintained
1123
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001124DISTRIBUTED LOCK MANAGER
1125P: Patrick Caulfield
1126M: pcaulfie@redhat.com
1127P: David Teigland
1128M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001129L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001130W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001131T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1132T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001133S: Supported
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1136P: Tobias Ringstrom
1137M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001138L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139S: Maintained
1140
Martin Waitzba483d52005-06-17 13:20:59 -07001141DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001142P: Randy Dunlap
1143M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001144S: Maintained
1145
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001146DOCKING STATION DRIVER
1147P: Kristen Carlson Accardi
1148M: kristen.c.accardi@intel.com
1149L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001150S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152DOUBLETALK DRIVER
1153P: James R. Van Zandt
1154M: jrv@vanzandt.mv.com
1155L: blinux-list@redhat.com
1156S: Maintained
1157
1158DRIVER CORE, KOBJECTS, AND SYSFS
1159P: Greg Kroah-Hartman
1160M: gregkh@suse.de
1161L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001162T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163S: Supported
1164
1165DRM DRIVERS
1166P: David Airlie
1167M: airlied@linux.ie
1168L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001169T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170S: Maintained
1171
1172DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001173P: Francois Romieu
1174M: romieu@fr.zoreil.com
1175L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176S: Maintained
1177
1178DVB SUBSYSTEM AND DRIVERS
1179P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001180M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001182W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001183T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001184S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186EATA-DMA SCSI DRIVER
1187P: Michael Neuffer
1188L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1189S: Maintained
1190
1191EATA ISA/EISA/PCI SCSI DRIVER
1192P: Dario Ballabio
1193M: ballabio_dario@emc.com
1194L: linux-scsi@vger.kernel.org
1195S: Maintained
1196
1197EATA-PIO SCSI DRIVER
1198P: Michael Neuffer
1199M: mike@i-Connect.Net
1200L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1201S: Maintained
1202
1203EBTABLES
1204P: Bart De Schuymer
1205M: bart.de.schuymer@pandora.be
1206L: ebtables-user@lists.sourceforge.net
1207L: ebtables-devel@lists.sourceforge.net
1208W: http://ebtables.sourceforge.net/
1209S: Maintained
1210
Michael Halcrow237fead2006-10-04 02:16:22 -07001211ECRYPT FILE SYSTEM
1212P: Mike Halcrow, Phillip Hellewell
1213M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1214L: ecryptfs-devel@lists.sourceforge.net
1215W: http://ecryptfs.sourceforge.net/
1216S: Supported
1217
Alan Coxda9bb1d2006-01-18 17:44:13 -08001218EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001219P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001220M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001221L: bluesmoke-devel@lists.sourceforge.net
1222W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001223S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001224
1225EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001226P: Mark Gross
1227M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001228L: bluesmoke-devel@lists.sourceforge.net
1229W: bluesmoke.sourceforge.net
1230S: Maintained
1231
1232EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001233P: Doug Thompson
1234M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001235L: bluesmoke-devel@lists.sourceforge.net
1236W: bluesmoke.sourceforge.net
1237S: Maintained
1238
1239EDAC-R82600
1240P: Tim Small
1241M: tim@buttersideup.com
1242L: bluesmoke-devel@lists.sourceforge.net
1243W: bluesmoke.sourceforge.net
1244S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246EEPRO100 NETWORK DRIVER
1247P: Andrey V. Savochkin
1248M: saw@saw.sw.com.sg
1249S: Maintained
1250
Josh Triplett0bee8d22006-07-30 03:03:58 -07001251EFS FILESYSTEM
1252W: http://aeschi.ch.eu.org/efs/
1253S: Orphan
1254
Heiko J Schickfab97222006-09-22 15:22:22 -07001255EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1256P: Hoang-Nam Nguyen
1257M: hnguyen@de.ibm.com
1258P: Christoph Raisch
1259M: raisch@de.ibm.com
1260L: openib-general@openib.org
1261S: Supported
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263EMU10K1 SOUND DRIVER
1264P: James Courtier-Dutton
1265M: James@superbug.demon.co.uk
1266L: emu10k1-devel@lists.sourceforge.net
1267W: http://sourceforge.net/projects/emu10k1/
1268S: Maintained
1269
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001270EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001271P: James Smart
1272M: james.smart@emulex.com
1273L: linux-scsi@vger.kernel.org
1274W: http://sourceforge.net/projects/lpfcxxxx
1275S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277EPSON 1355 FRAMEBUFFER DRIVER
1278P: Christopher Hoover
1279M: ch@murgatroid.com, ch@hpl.hp.com
1280S: Maintained
1281
1282ETHEREXPRESS-16 NETWORK DRIVER
1283P: Philip Blundell
1284M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001285L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286S: Maintained
1287
1288ETHERNET BRIDGE
1289P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08001290M: shemminger@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291L: bridge@osdl.org
1292W: http://bridge.sourceforge.net/
1293S: Maintained
1294
1295ETHERTEAM 16I DRIVER
1296P: Mika Kuoppala
1297M: miku@iki.fi
1298S: Maintained
1299
1300EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001301L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302S: Maintained
1303
1304EXT3 FILE SYSTEM
1305P: Stephen Tweedie, Andrew Morton
1306M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001307L: linux-ext4@vger.kernel.org
1308S: Maintained
1309
1310EXT4 FILE SYSTEM
1311P: Stephen Tweedie, Andrew Morton
1312M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1313L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314S: Maintained
1315
Jean Delvaree53004e2006-01-09 23:26:14 +01001316F71805F HARDWARE MONITORING DRIVER
1317P: Jean Delvare
1318M: khali@linux-fr.org
1319L: lm-sensors@lm-sensors.org
1320S: Maintained
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322FARSYNC SYNCHRONOUS DRIVER
1323P: Kevin Curtis
1324M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325W: http://www.farsite.co.uk/
1326S: Supported
1327
1328FRAMEBUFFER LAYER
1329P: Antonino Daplas
1330M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001331L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332W: http://linux-fbdev.sourceforge.net/
1333S: Maintained
1334
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001335FREESCALE SOC FS_ENET DRIVER
1336P: Pantelis Antoniou
1337M: pantelis.antoniou@gmail.com
1338P: Vitaly Bordug
1339M: vbordug@ru.mvista.com
1340L: linuxppc-embedded@ozlabs.org
1341L: netdev@vger.kernel.org
1342S: Maintained
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344FILE LOCKING (flock() and fcntl()/lockf())
1345P: Matthew Wilcox
1346M: matthew@wil.cx
1347L: linux-fsdevel@vger.kernel.org
1348S: Maintained
1349
1350FILESYSTEMS (VFS and infrastructure)
1351P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001352M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353S: Maintained
1354
1355FIRMWARE LOADER (request_firmware)
1356L: linux-kernel@vger.kernel.org
1357S: Orphan
1358
1359FPU EMULATOR
1360P: Bill Metzenthen
1361M: billm@suburbia.net
1362W: http://suburbia.net/~billm/floating-point/emulator/
1363S: Maintained
1364
1365FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1366P: Mike McLagan
1367M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001368L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369S: Maintained
1370
1371FREEVXFS FILESYSTEM
1372P: Christoph Hellwig
1373M: hch@infradead.org
1374W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1375S: Maintained
1376
1377FUJITSU FR-V PORT
1378P: David Howells
1379M: dhowells@redhat.com
1380S: Maintained
1381
Miklos Szeredi04578f12005-09-09 13:10:22 -07001382FUSE: FILESYSTEM IN USERSPACE
1383P: Miklos Szeredi
1384M: miklos@szeredi.hu
1385L: fuse-devel@lists.sourceforge.net
1386W: http://fuse.sourceforge.net/
1387S: Maintained
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1390P: Rik Faith
1391M: faith@cs.unc.edu
1392L: linux-scsi@vger.kernel.org
1393S: Odd fixes (e.g., new signatures)
1394
1395GDT SCSI DISK ARRAY CONTROLLER DRIVER
1396P: Achim Leubner
1397M: achim_leubner@adaptec.com
1398L: linux-scsi@vger.kernel.org
1399W: http://www.icp-vortex.com/
1400S: Supported
1401
1402GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1403P: Krzysztof Halasa
1404M: khc@pm.waw.pl
1405W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1406S: Maintained
1407
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001408GFS2 FILE SYSTEM
1409P: Steven Whitehouse
1410M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001411L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001412W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001413T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1414T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001415S: Supported
1416
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001417GIGASET ISDN DRIVERS
1418P: Hansjoerg Lipp
1419M: hjlipp@web.de
1420P: Tilman Schmidt
1421M: tilman@imap.cc
1422L: gigaset307x-common@lists.sourceforge.net
1423W: http://gigaset307x.sourceforge.net/
1424S: Maintained
1425
Jean Delvare5b543962005-08-15 19:51:02 +02001426HARDWARE MONITORING
1427P: Jean Delvare
1428M: khali@linux-fr.org
1429L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001430W: http://www.lm-sensors.org/
1431T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001432S: Maintained
1433
Michael Buesch844dd052006-06-26 00:24:59 -07001434HARDWARE RANDOM NUMBER GENERATOR CORE
1435P: Michael Buesch
1436M: mb@bu3sch.de
1437S: Maintained
1438
Robert Love860e1d62005-08-31 23:57:59 -04001439HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1440P: Robert Love
1441M: rlove@rlove.org
1442M: linux-kernel@vger.kernel.org
1443W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1444S: Maintained
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446HARMONY SOUND DRIVER
1447P: Kyle McMartin
1448M: kyle@parisc-linux.org
1449W: http://www.parisc-linux.org/~kyle/harmony/
1450L: parisc-linux@lists.parisc-linux.org
1451S: Maintained
1452
1453HAYES ESP SERIAL DRIVER
1454P: Andrew J. Robinson
1455M: arobinso@nyx.net
1456L: linux-kernel@vger.kernel.org
1457W: http://www.nyx.net/~arobinso
1458S: Maintained
1459
1460HFS FILESYSTEM
1461P: Roman Zippel
1462M: zippel@linux-m68k.org
1463L: linux-kernel@vger.kernel.org
1464S: Maintained
1465
1466HGA FRAMEBUFFER DRIVER
1467P: Ferenc Bakonyi
1468M: fero@drama.obuda.kando.hu
1469L: linux-nvidia@lists.surfsouth.com
1470W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1471S: Maintained
1472
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001473HID CORE LAYER
1474P: Jiri Kosina
1475M: jkosina@suse.cz
1476L: linux-input@atrey.karlin.mff.cuni.cz
1477S: Maintained
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479HIGH-SPEED SCC DRIVER FOR AX.25
1480P: Klaus Kudielka
1481M: klaus.kudielka@ieee.org
1482L: linux-hams@vger.kernel.org
1483W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1484S: Maintained
1485
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001486HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1487P: HighPoint Linux Team
1488M: linux@highpoint-tech.com
1489W: http://www.highpoint-tech.com
1490S: Supported
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492HIPPI
1493P: Jes Sorensen
1494M: jes@trained-monkey.org
1495L: linux-hippi@sunsite.dk
1496S: Maintained
1497
1498HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1499P: Chirag Kantharia
1500M: chirag.kantharia@hp.com
1501L: iss_storagedev@hp.com
1502S: Maintained
1503
1504HEWLETT-PACKARD SMART2 RAID DRIVER
1505P: Chirag Kantharia
1506M: chirag.kantharia@hp.com
1507L: iss_storagedev@hp.com
1508S: Maintained
1509
1510HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1511P: Mike Miller
1512M: mike.miller@hp.com
1513L: iss_storagedev@hp.com
1514S: Supported
1515
Jouni Malinenff1d2762005-05-12 22:54:16 -04001516HOST AP DRIVER
1517P: Jouni Malinen
1518M: jkmaline@cc.hut.fi
1519L: hostap@shmoo.com
1520W: http://hostap.epitest.fi/
1521S: Maintained
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1524P: Jaroslav Kysela
1525M: perex@suse.cz
1526S: Maintained
1527
Bob Piccob9b03322005-11-07 00:59:19 -08001528HPET: High Precision Event Timers driver (hpet.c)
1529P: Clemens Ladisch
1530M: clemens@ladisch.de
1531S: Maintained
1532
1533HPET: i386
1534P: Venkatesh Pallipadi (Venki)
1535M: venkatesh.pallipadi@intel.com
1536S: Maintained
1537
1538HPET: x86_64
1539P: Andi Kleen and Vojtech Pavlik
1540M: ak@muc.de and vojtech@suse.cz
1541S: Maintained
1542
1543HPET: ACPI hpet.c
1544P: Bob Picco
1545M: bob.picco@hp.com
1546S: Maintained
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548HPFS FILESYSTEM
1549P: Mikulas Patocka
1550M: mikulas@artax.karlin.mff.cuni.cz
1551W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1552S: Maintained
1553
1554HUGETLB FILESYSTEM
1555P: William Irwin
1556M: wli@holomorphy.com
1557S: Maintained
1558
Jean Delvare5b543962005-08-15 19:51:02 +02001559I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560P: Jean Delvare
1561M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001562L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001563T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564S: Maintained
1565
1566I2O
1567P: Markus Lidel
1568M: markus.lidel@shadowconnect.com
1569W: http://i2o.shadowconnect.com/
1570S: Maintained
1571
1572i386 BOOT CODE
1573P: Riley H. Williams
1574M: Riley@Williams.Name
1575L: Linux-Kernel@vger.kernel.org
1576S: Maintained
1577
1578i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1579P: Dave Jones
1580M: davej@codemonkey.org.uk
1581P: H. Peter Anvin
1582M: hpa@zytor.com
1583S: Maintained
1584
1585i810 TCO TIMER WATCHDOG
1586P: Nils Faerber
1587M: nils@kernelconcepts.de
1588W: http://www.kernelconcepts.de/
1589S: Maintained
1590
1591IA64 (Itanium) PLATFORM
1592P: Tony Luck
1593M: tony.luck@intel.com
1594L: linux-ia64@vger.kernel.org
1595W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001596T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597S: Maintained
1598
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001599IBM ACPI EXTRAS DRIVER
1600P: Henrique de Moraes Holschuh
1601M: ibm-acpi@hmh.eng.br
1602L: ibm-acpi-devel@lists.sourceforge.net
1603W: http://ibm-acpi.sourceforge.net
1604W: http://thinkwiki.org/wiki/Ibm-acpi
1605T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1606S: Maintained
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001609P: Jes Sorensen
1610M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611L: linux-altix@sgi.com
1612L: linux-ia64@vger.kernel.org
1613W: http://www.sgi.com/altix
1614S: Maintained
1615
1616IBM MCA SCSI SUBSYSTEM DRIVER
1617P: Michael Lang
1618M: langa2@kph.uni-mainz.de
1619W: http://www.uni-mainz.de/~langm000/linux.html
1620S: Maintained
1621
1622IBM Power Linux RAID adapter
1623P: Brian King
1624M: brking@us.ibm.com
1625S: Supported
1626
1627IBM ServeRAID RAID DRIVER
1628P: Jack Hammer
1629P: Dave Jeffery
1630M: ipslinux@adaptec.com
1631W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1632S: Supported
1633
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001634IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001636M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001638T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639S: Maintained
1640
1641IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001642P: Alan Cox
1643M: alan@lxorguk.ukuu.org.uk
1644L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645S: Maintained
1646
1647IDE/ATAPI FLOPPY DRIVERS
1648P: Paul Bristow
1649M: Paul Bristow <paul@paulbristow.net>
1650W: http://paulbristow.net/linux/idefloppy.html
1651L: linux-kernel@vger.kernel.org
1652S: Maintained
1653
1654IDE/ATAPI TAPE DRIVERS
1655P: Gadi Oxman
1656M: Gadi Oxman <gadio@netvision.net.il>
1657L: linux-kernel@vger.kernel.org
1658S: Maintained
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660IEEE 1394 SUBSYSTEM
1661P: Ben Collins
1662M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001663P: Stefan Richter
1664M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665L: linux1394-devel@lists.sourceforge.net
1666W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001667T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668S: Maintained
1669
Stefan Richter87730d02006-09-16 12:24:00 +02001670IEEE 1394 IPV4 DRIVER (eth1394)
1671P: Stefan Richter
1672M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001674S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676IEEE 1394 PCILYNX DRIVER
1677P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001678M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001679P: Stefan Richter
1680M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001682S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684IEEE 1394 RAW I/O DRIVER
1685P: Ben Collins
1686M: bcollins@debian.org
1687P: Dan Dennedy
1688M: dan@dennedy.org
1689L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001690S: Maintained
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692IMS TWINTURBO FRAMEBUFFER DRIVER
1693P: Paul Mundt
1694M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001695L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696S: Maintained
1697
1698INFINIBAND SUBSYSTEM
1699P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001700M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701P: Sean Hefty
1702M: mshefty@ichips.intel.com
1703P: Hal Rosenstock
1704M: halr@voltaire.com
1705L: openib-general@openib.org
1706W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001707T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708S: Supported
1709
1710INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001711P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001712M: dmitry.torokhov@gmail.com
1713M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714L: linux-input@atrey.karlin.mff.cuni.cz
1715L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001716T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717S: Maintained
1718
Robert Lovec9f04f52005-07-15 12:21:07 -04001719INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001720P: John McCutchan
1721M: ttb@tentacle.dhs.org
1722P: Robert Love
1723M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001724L: linux-kernel@vger.kernel.org
1725S: Maintained
1726
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001727INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001728P: Sylvain Meyer
1729M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001730L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001731S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001734P: Antonino Daplas
1735M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001736L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001737S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1740P: Ingo Molnar
1741M: mingo@redhat.com
1742S: Maintained
1743
1744INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1745P: Jeff Garzik
1746M: jgarzik@pobox.com
1747W: http://sourceforge.net/projects/gkernel/
1748S: Maintained
1749
1750INTEL IA32 MICROCODE UPDATE SUPPORT
1751P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001752M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753S: Maintained
1754
Michael Buesch844dd052006-06-26 00:24:59 -07001755INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1756P: Deepak Saxena
1757M: dsaxena@plexity.net
1758S: Maintained
1759
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001760INTEL IXP2000 ETHERNET DRIVER
1761P: Lennert Buytenhek
1762M: kernel@wantstofly.org
1763L: netdev@vger.kernel.org
1764S: Maintained
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766INTEL PRO/100 ETHERNET SUPPORT
1767P: John Ronciak
1768M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769P: Jesse Brandeburg
1770M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001771P: Jeff Kirsher
1772M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001773P: Auke Kok
1774M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775W: http://sourceforge.net/projects/e1000/
1776S: Supported
1777
1778INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1779P: Jeb Cramer
1780M: cramerj@intel.com
1781P: John Ronciak
1782M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001783P: Jesse Brandeburg
1784M: jesse.brandeburg@intel.com
1785P: Jeff Kirsher
1786M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001787P: Auke Kok
1788M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789W: http://sourceforge.net/projects/e1000/
1790S: Supported
1791
1792INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001793P: Jeff Kirsher
1794M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795P: Ayyappan Veeraiyan
1796M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797P: John Ronciak
1798M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001799P: Jesse Brandeburg
1800M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001801P: Auke Kok
1802M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803W: http://sourceforge.net/projects/e1000/
1804S: Supported
1805
James Ketrenos826d2ab2005-11-07 18:56:59 -06001806INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1807P: Yi Zhu
1808M: yi.zhu@intel.com
1809P: James Ketrenos
1810M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001811L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001812L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1813W: http://ipw2100.sourceforge.net
1814S: Supported
1815
1816INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1817P: Yi Zhu
1818M: yi.zhu@intel.com
1819P: James Ketrenos
1820M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001821L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001822L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1823W: http://ipw2200.sourceforge.net
1824S: Supported
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826IOC3 DRIVER
1827P: Ralf Baechle
1828M: ralf@linux-mips.org
1829L: linux-mips@linux-mips.org
1830S: Maintained
1831
1832IP MASQUERADING:
1833P: Juanjo Ciarlante
1834M: jjciarla@raiz.uncu.edu.ar
1835S: Maintained
1836
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001837IPATH DRIVER:
1838P: Bryan O'Sullivan
1839M: support@pathscale.com
1840L: openib-general@openib.org
1841S: Supported
1842
Corey Minyard4409ebe2006-04-20 02:43:12 -07001843IPMI SUBSYSTEM
1844P: Corey Minyard
1845M: minyard@acm.org
1846L: openipmi-developer@lists.sourceforge.net
1847W: http://openipmi.sourceforge.net/
1848S: Supported
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850IPX NETWORK LAYER
1851P: Arnaldo Carvalho de Melo
1852M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001853L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854S: Maintained
1855
1856IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001857P: Samuel Ortiz
1858M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001859L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001861S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863ISAPNP
1864P: Jaroslav Kysela
1865M: perex@suse.cz
1866S: Maintained
1867
1868ISDN SUBSYSTEM
1869P: Karsten Keil
1870M: kkeil@suse.de
1871P: Kai Germaschewski
1872M: kai.germaschewski@gmx.de
1873L: isdn4linux@listserv.isdn4linux.de
1874W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001875T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876S: Maintained
1877
1878ISDN SUBSYSTEM (Eicon active card driver)
1879P: Armin Schindler
1880M: mac@melware.de
1881L: isdn4linux@listserv.isdn4linux.de
1882W: http://www.melware.de
1883S: Maintained
1884
1885JOURNALLING FLASH FILE SYSTEM (JFFS)
1886P: Axis Communications AB
1887M: jffs-dev@axis.com
1888L: jffs-dev@axis.com
1889W: http://www.developer.axis.com/software/jffs/
1890S: Maintained
1891
1892JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1893P: David Woodhouse
1894M: dwmw2@infradead.org
1895L: jffs-dev@axis.com
1896W: http://sources.redhat.com/jffs2/
1897S: Maintained
1898
1899JFS FILESYSTEM
1900P: Dave Kleikamp
1901M: shaggy@austin.ibm.com
1902L: jfs-discussion@lists.sourceforge.net
1903W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001904T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905S: Supported
1906
Josh Triplettde456d32006-07-30 03:04:00 -07001907JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001908P: Stephen Tweedie, Andrew Morton
1909M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001910L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001911S: Maintained
1912
Rudolf Marek4660cb32006-10-08 22:01:26 +02001913K8TEMP HARDWARE MONITORING DRIVER
1914P: Rudolf Marek
1915M: r.marek@assembler.cz
1916L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917S: Maintained
1918
1919KCONFIG
1920P: Roman Zippel
1921M: zippel@linux-m68k.org
1922L: kbuild-devel@lists.sourceforge.net
1923S: Maintained
1924
Vivek Goyalea6c2082006-05-20 14:59:55 -07001925KDUMP
1926P: Vivek Goyal
1927M: vgoyal@in.ibm.com
1928P: Haren Myneni
1929M: hbabu@us.ibm.com
1930L: fastboot@lists.osdl.org
1931L: linux-kernel@vger.kernel.org
1932W: http://lse.sourceforge.net/kdump/
1933S: Maintained
1934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935KERNEL AUTOMOUNTER (AUTOFS)
1936P: H. Peter Anvin
1937M: hpa@zytor.com
1938L: autofs@linux.kernel.org
1939S: Odd Fixes
1940
1941KERNEL AUTOMOUNTER v4 (AUTOFS4)
1942P: Ian Kent
1943M: raven@themaw.net
1944L: autofs@linux.kernel.org
1945S: Maintained
1946
1947KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1948P: Kai Germaschewski
1949M: kai@germaschewski.name
1950P: Sam Ravnborg
1951M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001952T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953S: Maintained
1954
1955KERNEL JANITORS
1956P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001957L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959S: Maintained
1960
1961KERNEL NFSD
1962P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001963M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964L: nfs@lists.sourceforge.net
1965W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001966S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Avi Kivity426d62e2006-12-13 00:34:03 -08001968KERNEL VIRTUAL MACHINE (KVM)
1969P: Avi Kivity
1970M: avi@qumranet.com
1971L: kvm-devel@lists.sourceforge.net
1972W: kvm.sourceforge.net
1973S: Supported
1974
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001975KEXEC
1976P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001977M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001978W: http://www.xmission.com/~ebiederm/files/kexec/
1979L: linux-kernel@vger.kernel.org
1980L: fastboot@osdl.org
1981S: Maintained
1982
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001983KPROBES
1984P: Prasanna S Panchamukhi
1985M: prasanna@in.ibm.com
1986P: Ananth N Mavinakayanahalli
1987M: ananth@in.ibm.com
1988P: Anil S Keshavamurthy
1989M: anil.s.keshavamurthy@intel.com
1990P: David S. Miller
1991M: davem@davemloft.net
1992L: linux-kernel@vger.kernel.org
1993S: Maintained
1994
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001995KS0108 LCD CONTROLLER DRIVER
1996P: Miguel Ojeda Sandonis
1997M: maxextreme@gmail.com
1998L: linux-kernel@vger.kernel.org
1999S: Maintained
2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002003S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005LASI 53c700 driver for PARISC
2006P: James E.J. Bottomley
2007M: James.Bottomley@HansenPartnership.com
2008L: linux-scsi@vger.kernel.org
2009S: Maintained
2010
Richard Purdie263de9b2006-05-15 09:44:16 -07002011LED SUBSYSTEM
2012P: Richard Purdie
2013M: rpurdie@rpsys.net
2014S: Maintained
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016LEGO USB Tower driver
2017P: Juergen Stuber
2018M: starblue@users.sourceforge.net
2019L: legousb-devel@lists.sourceforge.net
2020W: http://legousb.sourceforge.net/
2021S: Maintained
2022
2023LINUX FOR IBM pSERIES (RS/6000)
2024P: Paul Mackerras
2025M: paulus@au.ibm.com
2026W: http://www.ibm.com/linux/ltc/projects/ppc
2027S: Supported
2028
2029LINUX FOR NCR VOYAGER
2030P: James Bottomley
2031M: James.Bottomley@HansenPartnership.com
2032W: http://www.hansenpartnership.com/voyager
2033S: Maintained
2034
2035LINUX FOR POWERPC
2036P: Paul Mackerras
2037M: paulus@samba.org
2038W: http://www.penguinppc.org/
2039L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002040T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041S: Supported
2042
2043LINUX FOR POWER MACINTOSH
2044P: Benjamin Herrenschmidt
2045M: benh@kernel.crashing.org
2046W: http://www.penguinppc.org/
2047L: linuxppc-dev@ozlabs.org
2048S: Maintained
2049
2050LINUX FOR POWERPC EMBEDDED MPC52XX
2051P: Sylvain Munaut
2052M: tnt@246tNt.com
2053W: http://www.246tNt.com/mpc52xx/
2054W: http://www.penguinppc.org/
2055L: linuxppc-dev@ozlabs.org
2056L: linuxppc-embedded@ozlabs.org
2057S: Maintained
2058
2059LINUX FOR POWERPC EMBEDDED PPC4XX
2060P: Matt Porter
2061M: mporter@kernel.crashing.org
2062W: http://www.penguinppc.org/
2063L: linuxppc-embedded@ozlabs.org
2064S: Maintained
2065
Tom Rinie93adf12005-07-26 12:49:53 -07002066LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067P: Tom Rini
2068M: trini@kernel.crashing.org
2069W: http://www.penguinppc.org/
2070L: linuxppc-embedded@ozlabs.org
2071S: Maintained
2072
Tom Rinie93adf12005-07-26 12:49:53 -07002073LINUX FOR POWERPC EMBEDDED PPC8XX
2074P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002075M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002076W: http://www.penguinppc.org/
2077L: linuxppc-embedded@ozlabs.org
2078S: Maintained
2079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002081P: Kumar Gala
2082M: galak@kernel.crashing.org
2083W: http://www.penguinppc.org/
2084L: linuxppc-embedded@ozlabs.org
2085S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Olof Johanssonab06ff32006-09-06 14:44:54 -05002087LINUX FOR POWERPC PA SEMI PWRFICIENT
2088P: Olof Johansson
2089M: olof@lixom.net
2090W: http://www.pasemi.com/
2091L: linuxppc-dev@ozlabs.org
2092S: Supported
2093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094LLC (802.2)
2095P: Arnaldo Carvalho de Melo
2096M: acme@conectiva.com.br
2097S: Maintained
2098
2099LINUX FOR 64BIT POWERPC
2100P: Paul Mackerras
2101M: paulus@samba.org
2102M: paulus@au.ibm.com
2103P: Anton Blanchard
2104M: anton@samba.org
2105M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002106W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002107L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108S: Supported
2109
2110LINUX SECURITY MODULE (LSM) FRAMEWORK
2111P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002112M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002113L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002115T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116S: Supported
2117
2118LM83 HARDWARE MONITOR DRIVER
2119P: Jean Delvare
2120M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002121L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122S: Maintained
2123
2124LM90 HARDWARE MONITOR DRIVER
2125P: Jean Delvare
2126M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002127L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128S: Maintained
2129
2130LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2131P: Richard Russon (FlatCap)
2132M: ldm@flatcap.org
2133L: ldm-devel@lists.sourceforge.net
2134W: http://ldm.sourceforge.net
2135S: Maintained
2136
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002137LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2138P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002139M: Eric.Moore@lsi.com
2140M: support@lsi.com
2141L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002142L: linux-scsi@vger.kernel.org
2143W: http://www.lsilogic.com/support
2144S: Supported
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2147P: Matthew Wilcox
2148M: matthew@wil.cx
2149L: linux-scsi@vger.kernel.org
2150S: Maintained
2151
2152M68K ARCHITECTURE
2153P: Geert Uytterhoeven
2154M: geert@linux-m68k.org
2155P: Roman Zippel
2156M: zippel@linux-m68k.org
2157L: linux-m68k@lists.linux-m68k.org
2158W: http://www.linux-m68k.org/
2159W: http://linux-m68k-cvs.ubb.ca/
2160S: Maintained
2161
2162M68K ON APPLE MACINTOSH
2163P: Joshua Thompson
2164M: funaho@jurai.org
2165W: http://www.mac.linux-m68k.org/
2166L: linux-mac68k@mac.linux-m68k.org
2167S: Maintained
2168
2169M68K ON HP9000/300
2170P: Philip Blundell
2171M: philb@gnu.org
2172W: http://www.tazenda.demon.co.uk/phil/linux-hp
2173S: Maintained
2174
2175MARVELL YUKON / SYSKONNECT DRIVER
2176P: Mirko Lindner
2177M: mlindner@syskonnect.de
2178P: Ralph Roesler
2179M: rroesler@syskonnect.de
2180W: http://www.syskonnect.com
2181S: Supported
2182
Michael Kerriskfaf16682005-07-31 22:34:47 -07002183MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002184P: Michael Kerrisk
2185M: mtk-manpages@gmx.net
2186W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2187S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002188
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002189MARVELL MV643XX ETHERNET DRIVER
2190P: Dale Farnsworth
2191M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002193M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002194L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002195S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
2197MATROX FRAMEBUFFER DRIVER
2198P: Petr Vandrovec
2199M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002200L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201S: Maintained
2202
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002203MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002204P: Neela Syam Kolli
2205M: Neela.Kolli@engenio.com
2206S: linux-scsi@vger.kernel.org
2207W: http://megaraid.lsilogic.com
2208S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002209
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002210MEMORY MANAGEMENT
2211L: linux-mm@kvack.org
2212L: linux-kernel@vger.kernel.org
2213W: http://www.linux-mm.org
2214S: Maintained
2215
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002216MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217P: David Woodhouse
2218M: dwmw2@infradead.org
2219W: http://www.linux-mtd.infradead.org/
2220L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002221T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222S: Maintained
2223
2224MICROTEK X6 SCANNER
2225P: Oliver Neukum
2226M: oliver@neukum.name
2227S: Maintained
2228
2229MIPS
2230P: Ralf Baechle
2231M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002232W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002234T: git www.linux-mips.org:/pub/scm/linux.git
2235S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237MISCELLANEOUS MCA-SUPPORT
2238P: James Bottomley
2239M: jejb@steeleye.com
2240L: linux-kernel@vger.kernel.org
2241S: Maintained
2242
2243MODULE SUPPORT
2244P: Rusty Russell
2245M: rusty@rustcorp.com.au
2246L: linux-kernel@vger.kernel.org
2247S: Maintained
2248
2249MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2250P: Stelian Pop
2251M: stelian@popies.net
2252W: http://popies.net/meye/
2253S: Maintained
2254
2255MOUSE AND MISC DEVICES [GENERAL]
2256P: Alessandro Rubini
2257M: rubini@ipvvis.unipv.it
2258L: linux-kernel@vger.kernel.org
2259S: Maintained
2260
Jiri Slabyd7354102006-12-08 02:38:35 -08002261MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2262P: Jiri Slaby
2263M: jirislaby@gmail.com
2264L: linux-kernel@vger.kernel.org
2265S: Maintained
2266
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002267MSI LAPTOP SUPPORT
2268P: Lennart Poettering
2269M: mzxreary@0pointer.de
2270L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2271W: http://0pointer.de/lennart/tchibo.html
2272S: Maintained
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274MTRR AND SIMILAR SUPPORT [i386]
2275P: Richard Gooch
2276M: rgooch@atnf.csiro.au
2277L: linux-kernel@vger.kernel.org
2278W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2279S: Maintained
2280
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002281MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2282P: Pierre Ossman
2283M: drzeus-mmc@drzeus.cx
2284L: linux-kernel@vger.kernel.org
2285S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287MULTISOUND SOUND DRIVER
2288P: Andrew Veliath
2289M: andrewtv@usa.net
2290S: Maintained
2291
Jiri Slabyd7354102006-12-08 02:38:35 -08002292MULTITECH MULTIPORT CARD (ISICOM)
2293P: Jiri Slaby
2294M: jirislaby@gmail.com
2295L: linux-kernel@vger.kernel.org
2296S: Maintained
2297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298NATSEMI ETHERNET DRIVER (DP8381x)
2299P: Tim Hockin
2300M: thockin@hockin.org
2301S: Maintained
2302
2303NCP FILESYSTEM
2304P: Petr Vandrovec
2305M: vandrove@vc.cvut.cz
2306L: linware@sh.cvut.cz
2307S: Maintained
2308
2309NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2310P: James E.J. Bottomley
2311M: James.Bottomley@HansenPartnership.com
2312L: linux-scsi@vger.kernel.org
2313S: Maintained
2314
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002315NETEM NETWORK EMULATOR
2316P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002317M: shemminger@linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002318L: netem@osdl.org
2319S: Maintained
2320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321NETFILTER/IPTABLES/IPCHAINS
2322P: Rusty Russell
2323P: Marc Boucher
2324P: James Morris
2325P: Harald Welte
2326P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002327P: Patrick McHardy
2328M: kaber@trash.net
2329L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002330L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002331L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332W: http://www.netfilter.org/
2333W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334S: Supported
2335
Paul Moore4cc67732006-09-25 15:57:13 -07002336NETLABEL
2337P: Paul Moore
2338M: paul.moore@hp.com
2339W: http://netlabel.sf.net
2340L: netdev@vger.kernel.org
2341S: Supported
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343NETROM NETWORK LAYER
2344P: Ralf Baechle
2345M: ralf@linux-mips.org
2346L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002347W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348S: Maintained
2349
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002350NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351P: Paul Clements
2352M: Paul.Clements@steeleye.com
2353S: Maintained
2354
2355NETWORK DEVICE DRIVERS
2356P: Andrew Morton
2357M: akpm@osdl.org
2358P: Jeff Garzik
2359M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002360L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002361T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362S: Maintained
2363
2364NETWORKING [GENERAL]
2365P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002366M: netdev@vger.kernel.org
2367L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002368W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369S: Maintained
2370
2371NETWORKING [IPv4/IPv6]
2372P: David S. Miller
2373M: davem@davemloft.net
2374P: Alexey Kuznetsov
2375M: kuznet@ms2.inr.ac.ru
2376P: Pekka Savola (ipv6)
2377M: pekkas@netcore.fi
2378P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002379M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380P: Hideaki YOSHIFUJI
2381M: yoshfuji@linux-ipv6.org
2382P: Patrick McHardy
2383M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002384L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002385T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386S: Maintained
2387
John W. Linville29f8f632006-01-18 14:52:48 -08002388NETWORKING [WIRELESS]
2389P: John W. Linville
2390M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002391L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002392T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2393S: Maintained
2394
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002395NETXEN (1/10) GbE SUPPORT
2396P: Amit S. Kale
2397M: amitkale@netxen.com
2398L: netdev@vger.kernel.org
2399W: http://www.netxen.com
2400S: Supported
2401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402IPVS
2403P: Wensong Zhang
2404M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002405P: Simon Horman
2406M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407P: Julian Anastasov
2408M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002409L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410S: Maintained
2411
2412NFS CLIENT
2413P: Trond Myklebust
2414M: trond.myklebust@fys.uio.no
2415L: linux-kernel@vger.kernel.org
2416S: Maintained
2417
2418NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002419P: Jan-Pascal van Best
2420M: janpascal@vanbest.org
2421P: Andreas Mohr
2422M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002423L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424S: Maintained
2425
2426NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2427P: YOKOTA Hiroshi
2428M: yokota@netlab.is.tsukuba.ac.jp
2429W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2430S: Maintained
2431
2432NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2433P: GOTO Masanori
2434M: gotom@debian.or.jp
2435P: YOKOTA Hiroshi
2436M: yokota@netlab.is.tsukuba.ac.jp
2437W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2438S: Maintained
2439
2440NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2441P: Eberhard Moenkeberg
2442M: emoenke@gwdg.de
2443L: linux-kernel@vger.kernel.org
2444S: Maintained
2445
2446NTFS FILESYSTEM
2447P: Anton Altaparmakov
2448M: aia21@cantab.net
2449L: linux-ntfs-dev@lists.sourceforge.net
2450L: linux-kernel@vger.kernel.org
2451W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002452T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453S: Maintained
2454
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002455NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002456P: Antonino Daplas
2457M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002458L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002459S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002461OPENCORES I2C BUS DRIVER
2462P: Peter Korsgaard
2463M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002464L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002465S: Maintained
2466
Mark Fashehccd979b2005-12-15 14:31:24 -08002467ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2468P: Mark Fasheh
2469M: mark.fasheh@oracle.com
2470P: Kurt Hackel
2471M: kurt.hackel@oracle.com
2472L: ocfs2-devel@oss.oracle.com
2473W: http://oss.oracle.com/projects/ocfs2/
2474S: Supported
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476OLYMPIC NETWORK DRIVER
2477P: Peter De Shrijver
2478M: p2@ace.ulyssis.student.kuleuven.ac.be
2479P: Mike Phillips
2480M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002481L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482L: linux-tr@linuxtr.net
2483W: http://www.linuxtr.net
2484S: Maintained
2485
Harald Weltec1986ee2005-11-13 16:06:29 -08002486OMNIKEY CARDMAN 4000 DRIVER
2487P: Harald Welte
2488M: laforge@gnumonks.org
2489S: Maintained
2490
Harald Welte77c44ab2005-11-13 16:06:26 -08002491OMNIKEY CARDMAN 4040 DRIVER
2492P: Harald Welte
2493M: laforge@gnumonks.org
2494S: Maintained
2495
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496ONSTREAM SCSI TAPE DRIVER
2497P: Willem Riede
2498M: osst@riede.org
2499L: osst-users@lists.sourceforge.net
2500L: linux-scsi@vger.kernel.org
2501S: Maintained
2502
2503OPL3-SA2, SA3, and SAx DRIVER
2504P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002505M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506L: linux-sound@vger.kernel.org
2507S: Maintained
2508
2509OPROFILE
2510P: Philippe Elie
2511M: phil.el@wanadoo.fr
2512L: oprofile-list@lists.sf.net
2513S: Maintained
2514
2515ORINOCO DRIVER
2516P: Pavel Roskin
2517M: proski@gnu.org
2518P: David Gibson
2519M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002520L: orinoco-users@lists.sourceforge.net
2521L: orinoco-devel@lists.sourceforge.net
2522W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523S: Maintained
2524
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002525PA SEMI ETHERNET DRIVER
2526P: Olof Johansson
2527M: olof@lixom.net
2528L: netdev@vger.kernel.org
2529S: Maintained
2530
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002531PA SEMI SMBUS DRIVER
2532P: Olof Johansson
2533M: olof@lixom.net
2534L: i2c@lm-sensors.org
2535S: Maintained
2536
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537PARALLEL PORT SUPPORT
2538P: Phil Blundell
2539M: philb@gnu.org
2540P: Tim Waugh
2541M: tim@cyberelk.net
2542P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543P: Andrea Arcangeli
2544M: andrea@suse.de
2545L: linux-parport@lists.infradead.org
2546W: http://people.redhat.com/twaugh/parport/
2547S: Maintained
2548
2549PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2550P: Tim Waugh
2551M: tim@cyberelk.net
2552L: linux-parport@lists.infradead.org
2553W: http://www.torque.net/linux-pp.html
2554S: Maintained
2555
2556PARISC ARCHITECTURE
2557P: Matthew Wilcox
2558M: matthew@wil.cx
2559P: Grant Grundler
2560M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002561P: Kyle McMartin
2562M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563L: parisc-linux@parisc-linux.org
2564W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002565T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2566T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567S: Maintained
2568
Jim Cromie1662d322006-10-06 00:43:59 -07002569PC87360 HARDWARE MONITORING DRIVER
2570P: Jim Cromie
2571M: jim.cromie@gmail.com
2572L: lm-sensors@lm-sensors.org
2573S: Maintained
2574
2575PC8736x GPIO DRIVER
2576P: Jim Cromie
2577M: jim.cromie@gmail.com
2578S: Maintained
2579
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002580PCI ERROR RECOVERY
2581P: Linas Vepstas
2582M: linas@austin.ibm.com
2583L: linux-kernel@vger.kernel.org
2584L: linux-pci@atrey.karlin.mff.cuni.cz
2585S: Supported
2586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2588P: Thomas Sailer
2589M: sailer@ife.ee.ethz.ch
2590L: linux-sound@vger.kernel.org
2591W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2592S: Maintained
2593
2594PCI SUBSYSTEM
2595P: Greg Kroah-Hartman
2596M: gregkh@suse.de
2597L: linux-kernel@vger.kernel.org
2598L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002599T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600S: Supported
2601
2602PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002603P: Kristen Carlson Accardi
2604M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605S: Supported
2606
2607PCI HOTPLUG COMPAQ DRIVER
2608P: Greg Kroah-Hartman
2609M: greg@kroah.com
2610S: Maintained
2611
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002612PCIE HOTPLUG DRIVER
2613P: Kristen Carlson Accardi
2614M: kristen.c.accardi@intel.com
2615L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002616S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002617
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002619P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002620L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002622T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002623S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
2625PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002626P: Don Fry
2627M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002628L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629S: Maintained
2630
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002631PER-TASK DELAY ACCOUNTING
2632P: Shailabh Nagar
2633M: nagar@watson.ibm.com
2634L: linux-kernel@vger.kernel.org
2635S: Maintained
2636
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002637PERSONALITY HANDLING
2638P: Christoph Hellwig
2639M: hch@infradead.org
2640L: linux-abi-devel@lists.sourceforge.net
2641S: Maintained
2642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643PHRAM MTD DRIVER
2644P: Jörn Engel
2645M: joern@wh.fh-wedel.de
2646L: linux-mtd@lists.infradead.org
2647S: Maintained
2648
Peter Osterlund249a6772005-09-27 21:45:30 -07002649PKTCDVD DRIVER
2650P: Peter Osterlund
2651M: petero2@telia.com
2652L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002653S: Maintained
2654
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655POSIX CLOCKS and TIMERS
2656P: George Anzinger
2657M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002658L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659S: Supported
2660
Eugene Surovegin24682972005-10-14 03:00:53 -07002661POWERPC 4xx EMAC DRIVER
2662P: Eugene Surovegin
2663M: ebs@ebshome.net
2664W: http://kernel.ebshome.net/emac/
2665L: linuxppc-embedded@ozlabs.org
2666L: netdev@vger.kernel.org
2667S: Maintained
2668
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669PNP SUPPORT
2670P: Adam Belay
2671M: ambx1@neo.rr.com
2672S: Maintained
2673
Vitaly Wool999445d2007-01-04 13:07:03 +01002674PNXxxxx I2C DRIVER
2675P: Vitaly Wool
2676M: vitalywool@gmail.com
2677L: i2c@lm-sensors.org
2678S: Maintained
2679
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680PPP PROTOCOL DRIVERS AND COMPRESSORS
2681P: Paul Mackerras
2682M: paulus@samba.org
2683L: linux-ppp@vger.kernel.org
2684S: Maintained
2685
2686PPP OVER ATM (RFC 2364)
2687P: Mitchell Blank Jr
2688M: mitch@sfgoth.com
2689S: Maintained
2690
2691PPP OVER ETHERNET
2692P: Michal Ostrowski
2693M: mostrows@speakeasy.net
2694S: Maintained
2695
2696PREEMPTIBLE KERNEL
2697P: Robert Love
2698M: rml@tech9.net
2699L: linux-kernel@vger.kernel.org
2700L: kpreempt-tech@lists.sourceforge.net
2701W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2702S: Supported
2703
2704PRISM54 WIRELESS DRIVER
2705P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002706M: developers@islsm.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002707L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708W: http://prism54.org
2709S: Maintained
2710
2711PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2712P: Peter Denison
2713M: promise@pnd-pc.demon.co.uk
2714W: http://www.pnd-pc.demon.co.uk/promise/
2715S: Maintained
2716
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002717PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2718P: Mikael Pettersson
2719M: mikpe@it.uu.se
2720L: linux-ide@vger.kernel.org
2721S: Maintained
2722
Geoff Levandf58a9d12006-11-23 00:46:51 +01002723PS3 PLATFORM SUPPORT
2724P: Geoff Levand
2725M: geoffrey.levand@am.sony.com
2726L: linuxppc-dev@ozlabs.org
2727L: cbe-oss-dev@ozlabs.org
2728S: Supported
2729
Michael Krufky83202042006-07-03 00:24:18 -07002730PVRUSB2 VIDEO4LINUX DRIVER
2731P: Mike Isely
2732M: isely@pobox.com
2733L: pvrusb2@isely.net
2734L: video4linux-list@redhat.com
2735W: http://www.isely.net/pvrusb2/
2736S: Maintained
2737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738PXA2xx SUPPORT
2739P: Nicolas Pitre
2740M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002741L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742S: Maintained
2743
2744QLOGIC QLA2XXX FC-SCSI DRIVER
2745P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002746M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747L: linux-scsi@vger.kernel.org
2748S: Supported
2749
Ron Mercer5a4faa872006-07-25 00:40:21 -07002750QLOGIC QLA3XXX NETWORK DRIVER
2751P: Ron Mercer
2752M: linux-driver@qlogic.com
2753L: netdev@vger.kernel.org
2754S: Supported
2755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756QNX4 FILESYSTEM
2757P: Anders Larsen
2758M: al@alarsen.net
2759L: linux-kernel@vger.kernel.org
2760W: http://www.alarsen.net/linux/qnx4fs/
2761S: Maintained
2762
2763RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002764P: Benjamin Herrenschmidt
2765M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002766L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767S: Maintained
2768
2769RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002770P: Paul Mackerras
2771M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002772L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773S: Maintained
2774
2775RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2776P: Corey Thomas
2777M: corey@world.std.com
2778L: linux-kernel@vger.kernel.org
2779S: Maintained
2780
Matt Mackall9e95ce22005-04-16 15:25:56 -07002781RANDOM NUMBER DRIVER
2782P: Matt Mackall
2783M: mpm@selenic.com
2784S: Maintained
2785
Matt Porter394b7012005-11-07 01:00:15 -08002786RAPIDIO SUBSYSTEM
2787P: Matt Porter
2788M: mporter@kernel.crashing.org
2789L: linux-kernel@vger.kernel.org
2790S: Maintained
2791
Josh Triplett595182b2006-10-04 02:17:21 -07002792READ-COPY UPDATE (RCU)
2793P: Dipankar Sarma
2794M: dipankar@in.ibm.com
2795W: http://www.rdrop.com/users/paulmck/rclock/
2796L: linux-kernel@vger.kernel.org
2797S: Supported
2798
2799RCUTORTURE MODULE
2800P: Josh Triplett
2801M: josh@freedesktop.org
2802L: linux-kernel@vger.kernel.org
2803S: Maintained
2804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805REAL TIME CLOCK DRIVER
2806P: Paul Gortmaker
2807M: p_gortmaker@yahoo.com
2808L: linux-kernel@vger.kernel.org
2809S: Maintained
2810
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002811REAL TIME CLOCK (RTC) SUBSYSTEM
2812P: Alessandro Zummo
2813M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002814L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002815S: Maintained
2816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817REISERFS FILE SYSTEM
2818P: Hans Reiser
2819M: reiserfs-dev@namesys.com
2820L: reiserfs-list@namesys.com
2821W: http://www.namesys.com
2822S: Supported
2823
2824ROCKETPORT DRIVER
2825P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826W: http://www.comtrol.com
2827S: Maintained
2828
2829ROSE NETWORK LAYER
2830P: Ralf Baechle
2831M: ralf@linux-mips.org
2832L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002833W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834S: Maintained
2835
2836RISCOM8 DRIVER
2837S: Orphan
2838
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002839S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002840P: Antonino Daplas
2841M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002842L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002843S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002844
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845S390
2846P: Martin Schwidefsky
2847M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002848P: Heiko Carstens
2849M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002851L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002852W: http://www.ibm.com/developerworks/linux/linux390/
2853S: Supported
2854
2855S390 NETWORK DRIVERS
2856P: Frank Pavlic
2857M: fpavlic@de.ibm.com
2858M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002859L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002860W: http://www.ibm.com/developerworks/linux/linux390/
2861S: Supported
2862
2863S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002864P: Swen Schillig
2865M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002866M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01002867L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08002868W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869S: Supported
2870
2871SAA7146 VIDEO4LINUX-2 DRIVER
2872P: Michael Hunold
2873M: michael@mihu.de
2874W: http://www.mihu.de/linux/saa7146
2875S: Maintained
2876
2877SBPCD CDROM DRIVER
2878P: Eberhard Moenkeberg
2879M: emoenke@gwdg.de
2880L: linux-kernel@vger.kernel.org
2881S: Maintained
2882
2883SC1200 WDT DRIVER
2884P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002885M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886S: Maintained
2887
2888SCHEDULER
2889P: Ingo Molnar
2890M: mingo@elte.hu
2891P: Robert Love [the preemptible kernel bits]
2892M: rml@tech9.net
2893L: linux-kernel@vger.kernel.org
2894S: Maintained
2895
2896SCSI CDROM DRIVER
2897P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002898M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899L: linux-scsi@vger.kernel.org
2900W: http://www.kernel.dk
2901S: Maintained
2902
2903SCSI SG DRIVER
2904P: Doug Gilbert
2905M: dgilbert@interlog.com
2906L: linux-scsi@vger.kernel.org
2907W: http://www.torque.net/sg
2908S: Maintained
2909
2910SCSI SUBSYSTEM
2911P: James E.J. Bottomley
2912M: James.Bottomley@SteelEye.com
2913L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002914T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915S: Maintained
2916
2917SCSI TAPE DRIVER
2918P: Kai Mäkisara
2919M: Kai.Makisara@kolumbus.fi
2920L: linux-scsi@vger.kernel.org
2921S: Maintained
2922
2923SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002924P: Sridhar Samudrala
2925M: sri@us.ibm.com
2926L: lksctp-developers@lists.sourceforge.net
2927S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
2929SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002930P: Jim Cromie
2931M: jim.cromie@gmail.com
2932S: Odd Fixes
2933
2934SCx200 GPIO DRIVER
2935P: Jim Cromie
2936M: jim.cromie@gmail.com
2937S: Maintained
2938
2939SCx200 HRT CLOCKSOURCE DRIVER
2940P: Jim Cromie
2941M: jim.cromie@gmail.com
2942S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943
2944SECURITY CONTACT
2945P: Security Officers
2946M: security@kernel.org
2947S: Supported
2948
2949SELINUX SECURITY MODULE
2950P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002951M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002953M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954L: linux-kernel@vger.kernel.org (kernel issues)
2955L: selinux@tycho.nsa.gov (general discussion)
2956W: http://www.nsa.gov/selinux
2957S: Supported
2958
2959SERIAL ATA (SATA) SUBSYSTEM:
2960P: Jeff Garzik
2961M: jgarzik@pobox.com
2962L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002963T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964S: Supported
2965
2966SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2967P: Pat Gefre
2968M: pfg@sgi.com
2969L: linux-ia64@vger.kernel.org
2970S: Supported
2971
2972SGI VISUAL WORKSTATION 320 AND 540
2973P: Andrey Panin
2974M: pazke@donpac.ru
2975L: linux-visws-devel@lists.sf.net
2976W: http://linux-visws.sf.net
2977S: Maintained for 2.6.
2978
2979SIMTEC EB110ATX (Chalice CATS)
2980P: Ben Dooks
2981P: Vincent Sanders
2982M: support@simtec.co.uk
2983W: http://www.simtec.co.uk/products/EB110ATX/
2984S: Supported
2985
2986SIMTEC EB2410ITX (BAST)
2987P: Ben Dooks
2988P: Vincent Sanders
2989M: support@simtec.co.uk
2990W: http://www.simtec.co.uk/products/EB2410ITX/
2991S: Supported
2992
Francois Romieu92aab3c2005-07-30 13:11:18 +02002993SIS 190 ETHERNET DRIVER
2994P: Francois Romieu
2995M: romieu@fr.zoreil.com
2996L: netdev@vger.kernel.org
2997S: Maintained
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999SIS 5513 IDE CONTROLLER DRIVER
3000P: Lionel Bouton
3001M: Lionel.Bouton@inet6.fr
3002W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3003W: http://gyver.homeip.net/sis5513/index.html
3004S: Maintained
3005
3006SIS 900/7016 FAST ETHERNET DRIVER
3007P: Daniele Venzano
3008M: venza@brownhat.org
3009W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003010L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011S: Maintained
3012
3013SIS FRAMEBUFFER DRIVER
3014P: Thomas Winischhofer
3015M: thomas@winischhofer.net
3016W: http://www.winischhofer.net/linuxsisvga.shtml
3017S: Maintained
3018
3019SIS USB2VGA DRIVER
3020P: Thomas Winischhofer
3021M: thomas@winischhofer.net
3022W: http://www.winischhofer.at/linuxsisusbvga.shtml
3023S: Maintained
3024
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025SMC91x ETHERNET DRIVER
3026P: Nicolas Pitre
3027M: nico@cam.org
3028S: Maintained
3029
Daniel Drake8f0f8502006-07-18 22:00:25 +01003030SOFTMAC LAYER (IEEE 802.11)
3031P: Johannes Berg
3032M: johannes@sipsolutions.net
3033P: Joe Jezak
3034M: josejx@gentoo.org
3035P: Daniel Drake
3036M: dsd@gentoo.org
3037W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01003038L: netdev@vger.kernel.org
3039S: Maintained
3040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041SOFTWARE RAID (Multiple Disks) SUPPORT
3042P: Ingo Molnar
3043M: mingo@redhat.com
3044P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003045M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003047S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
3049SOFTWARE SUSPEND:
3050P: Pavel Machek
3051M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07003052L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053S: Maintained
3054
3055SONIC NETWORK DRIVER
3056P: Thomas Bogendoerfer
3057M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003058L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059S: Maintained
3060
3061SONY VAIO CONTROL DEVICE DRIVER
3062P: Stelian Pop
3063M: stelian@popies.net
3064W: http://popies.net/sonypi/
3065S: Maintained
3066
3067SOUND
3068P: Jaroslav Kysela
3069M: perex@suse.cz
3070L: alsa-devel@alsa-project.org
3071S: Maintained
3072
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003073SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3074P: Liam Girdwood
3075M: liam.girdwood@wolfsonmicro.com
3076L: alsa-devel@alsa-project.org
3077S: Supported
3078
Kumar Gala025c3982006-04-02 16:05:54 -05003079SPI SUBSYSTEM
3080P: David Brownell
3081M: dbrownell@users.sourceforge.net
3082L: spi-devel-general@lists.sourceforge.net
3083S: Maintained
3084
Steven Rostedt855f46a2006-08-05 12:14:50 -07003085STABLE BRANCH:
3086P: Greg Kroah-Hartman
3087M: greg@kroah.com
3088P: Chris Wright
3089M: chrisw@sous-sol.org
3090L: stable@kernel.org
3091S: Maintained
3092
Kylene Hall1c72d462005-05-01 08:59:13 -07003093TPM DEVICE DRIVER
3094P: Kylene Hall
3095M: kjhall@us.ibm.com
3096W: http://tpmdd.sourceforge.net
3097L: tpmdd-devel@lists.sourceforge.net
3098S: Maintained
3099
Mark Gross1a80ba82005-10-30 15:02:55 -08003100Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003101P: Mark Gross
3102M: mark.gross@intel.com
3103S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003104
Chris Zankel48b415c2005-06-23 22:01:07 -07003105TENSILICA XTENSA PORT (xtensa):
3106P: Chris Zankel
3107M: chris@zankel.net
3108S: Maintained
3109
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110UltraSPARC (sparc64):
3111P: David S. Miller
3112M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003114T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115S: Maintained
3116
3117SHARP LH SUPPORT (LH7952X & LH7A40X)
3118P: Marc Singer
3119M: elf@buici.com
3120W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003121L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122S: Maintained
3123
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003124SHPC HOTPLUG DRIVER
3125P: Kristen Carlson Accardi
3126M: kristen.c.accardi@intel.com
3127L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003128S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003129
Pierre Ossmand129bce2006-03-24 03:18:17 -08003130SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3131P: Pierre Ossman
3132M: drzeus-sdhci@drzeus.cx
3133L: sdhci-devel@list.drzeus.cx
3134W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3135S: Maintained
3136
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003137SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3138P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003139M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003140L: netdev@vger.kernel.org
3141S: Maintained
3142
Chris Boot1a87d942006-07-10 04:45:34 -07003143SOEKRIS NET48XX LED SUPPORT
3144P: Chris Boot
3145M: bootc@bootc.net
3146S: Maintained
3147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148SPARC (sparc32):
3149P: William L. Irwin
3150M: wli@holomorphy.com
3151L: sparclinux@vger.kernel.org
3152S: Maintained
3153
3154SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3155P: Roger Wolff
3156M: R.E.Wolff@BitWizard.nl
3157L: linux-kernel@vger.kernel.org ?
3158S: Supported
3159
Jim Lewis2752e402006-09-29 02:01:19 -07003160SPIDERNET NETWORK DRIVER for CELL
3161P: Jim Lewis
3162M: jim@jklewis.com
3163L: netdev@vger.kernel.org
3164S: Supported
3165
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166SRM (Alpha) environment access
3167P: Jan-Benedict Glaw
3168M: jbglaw@lug-owl.de
3169L: linux-kernel@vger.kernel.org
3170S: Maintained
3171
3172STARFIRE/DURALAN NETWORK DRIVER
3173P: Ion Badulescu
3174M: ionut@cs.columbia.edu
3175S: Maintained
3176
3177STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3178W: http://mosquitonet.Stanford.EDU/strip.html
3179S: Unsupported ?
3180
3181STRADIS MPEG-2 DECODER DRIVER
3182P: Nathan Laredo
3183M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184W: http://www.stradis.com/
3185S: Maintained
3186
3187SUPERH (sh)
3188P: Paul Mundt
3189M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003190L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192S: Maintained
3193
3194SUPERH64 (sh64)
3195P: Paul Mundt
3196M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197L: linuxsh-shmedia-dev@lists.sourceforge.net
3198W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199S: Maintained
3200
3201SUN3/3X
3202P: Sam Creasey
3203M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204W: http://sammy.net/sun3/
3205S: Maintained
3206
3207SVGA HANDLING
3208P: Martin Mares
3209M: mj@ucw.cz
3210L: linux-video@atrey.karlin.mff.cuni.cz
3211S: Maintained
3212
3213SYSV FILESYSTEM
3214P: Christoph Hellwig
3215M: hch@infradead.org
3216S: Maintained
3217
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003218TC CLASSIFIER
3219P: Jamal Hadi Salim
3220M: hadi@cyberus.ca
3221L: netdev@vger.kernel.org
3222S: Maintained
3223
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003224TCP LOW PRIORITY MODULE
3225P: Wong Hoi Sing, Edison
3226M: hswong3i@gmail.com
3227P: Hung Hing Lun, Mike
3228M: hlhung3i@gmail.com
3229W: http://tcp-lp-mod.sourceforge.net/
3230S: Maintained
3231
Alex Dubov4020f2d2006-10-04 02:15:37 -07003232TI FLASH MEDIA INTERFACE DRIVER
3233P: Alex Dubov
3234M: oakad@yahoo.com
3235S: Maintained
3236
Michael Buesch844dd052006-06-26 00:24:59 -07003237TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3238P: Deepak Saxena
3239M: dsaxena@plexity.net
3240S: Maintained
3241
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003242TASKSTATS STATISTICS INTERFACE
3243P: Shailabh Nagar
3244M: nagar@watson.ibm.com
3245L: linux-kernel@vger.kernel.org
3246S: Maintained
3247
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003249P: Romain Lievin
3250M: roms@lpg.ticalc.org
3251S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
Per Lidene86eaa32006-01-12 16:45:18 +01003253TIPC NETWORK LAYER
3254P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003255M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003256P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003257M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003258P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003259M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003260L: tipc-discussion@lists.sourceforge.net
3261W: http://tipc.sourceforge.net/
3262W: http://tipc.cslab.ericsson.net/
3263T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3264S: Maintained
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266TLAN NETWORK DRIVER
3267P: Samuel Chessman
3268M: chessman@tux.org
3269L: tlan-devel@lists.sourceforge.net
3270W: http://sourceforge.net/projects/tlan/
3271S: Maintained
3272
3273TOKEN-RING NETWORK DRIVER
3274P: Mike Phillips
3275M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003276L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277L: linux-tr@linuxtr.net
3278W: http://www.linuxtr.net
3279S: Maintained
3280
3281TOSHIBA ACPI EXTRAS DRIVER
3282P: John Belmonte
3283M: toshiba_acpi@memebeam.org
3284W: http://memebeam.org/toys/ToshibaAcpiDriver
3285S: Maintained
3286
3287TOSHIBA SMM DRIVER
3288P: Jonathan Buzzard
3289M: jonathan@buzzard.org.uk
3290L: tlinux-users@tce.toshiba-dme.co.jp
3291W: http://www.buzzard.org.uk/toshiba/
3292S: Maintained
3293
3294TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3295P: Muli Ben-Yehuda
3296M: mulix@mulix.org
3297L: linux-kernel@vger.kernel.org
3298S: Maintained
3299
3300TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003301P: Adrian Bunk
3302M: trivial@kernel.org
3303L: linux-kernel@vger.kernel.org
3304W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3305T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3306S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
3308TMS380 TOKEN-RING NETWORK DRIVER
3309P: Adam Fritzler
3310M: mid@auk.cx
3311L: linux-tr@linuxtr.net
3312W: http://www.auk.cx/tms380tr/
3313S: Maintained
3314
3315TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003316P: Valerie Henson
3317M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318L: tulip-users@lists.sourceforge.net
3319W: http://sourceforge.net/projects/tulip/
3320S: Maintained
3321
3322TUN/TAP driver
3323P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003324M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325L: vtun@office.satix.net
3326W: http://vtun.sourceforge.net/tun
3327S: Maintained
3328
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003329TURBOCHANNEL SUBSYSTEM
3330P: Maciej W. Rozycki
3331M: macro@linux-mips.org
3332S: Maintained
3333
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334U14-34F SCSI DRIVER
3335P: Dario Ballabio
3336M: ballabio_dario@emc.com
3337L: linux-scsi@vger.kernel.org
3338S: Maintained
3339
3340UDF FILESYSTEM
3341P: Ben Fennema
3342M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343W: http://linux-udf.sourceforge.net
3344S: Maintained
3345
3346UNIFORM CDROM DRIVER
3347P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003348M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349L: linux-kernel@vger.kernel.org
3350W: http://www.kernel.dk
3351S: Maintained
3352
3353USB ACM DRIVER
3354P: Oliver Neukum
3355M: oliver@neukum.name
3356L: linux-usb-users@lists.sourceforge.net
3357L: linux-usb-devel@lists.sourceforge.net
3358S: Maintained
3359
3360USB BLOCK DRIVER (UB ub)
3361P: Pete Zaitcev
3362M: zaitcev@redhat.com
3363L: linux-kernel@vger.kernel.org
3364L: linux-usb-devel@lists.sourceforge.net
3365S: Supported
3366
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367USB CDC ETHERNET DRIVER
3368P: Greg Kroah-Hartman
3369M: greg@kroah.com
3370L: linux-usb-users@lists.sourceforge.net
3371L: linux-usb-devel@lists.sourceforge.net
3372S: Maintained
3373W: http://www.kroah.com/linux-usb/
3374
3375USB EHCI DRIVER
3376P: David Brownell
3377M: dbrownell@users.sourceforge.net
3378L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003379S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
Luca Risolia7ce08c92006-01-11 02:06:59 +00003381USB ET61X[12]51 DRIVER
3382P: Luca Risolia
3383M: luca.risolia@studio.unibo.it
3384L: linux-usb-devel@lists.sourceforge.net
3385L: video4linux-list@redhat.com
3386W: http://www.linux-projects.org
3387S: Maintained
3388
David Brownell69ae9e32006-11-14 02:03:31 -08003389USB GADGET/PERIPHERAL SUBSYSTEM
3390P: David Brownell
3391M: dbrownell@users.sourceforge.net
3392L: linux-usb-devel@lists.sourceforge.net
3393W: http://www.linux-usb.org/gadget
3394S: Maintained
3395
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003397P: Jiri Kosina
3398M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399L: linux-usb-devel@lists.sourceforge.net
3400S: Maintained
3401
3402USB HUB DRIVER
3403P: Johannes Erdfelt
3404M: johannes@erdfelt.com
3405L: linux-usb-users@lists.sourceforge.net
3406L: linux-usb-devel@lists.sourceforge.net
3407S: Maintained
3408
Olav Kongas959eea22005-11-03 17:38:14 +02003409USB ISP116X DRIVER
3410P: Olav Kongas
3411M: ok@artecdesign.ee
3412L: linux-usb-devel@lists.sourceforge.net
3413S: Maintained
3414
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415USB KAWASAKI LSI DRIVER
3416P: Oliver Neukum
3417M: oliver@neukum.name
3418L: linux-usb-users@lists.sourceforge.net
3419L: linux-usb-devel@lists.sourceforge.net
3420S: Maintained
3421
3422USB MASS STORAGE DRIVER
3423P: Matthew Dharm
3424M: mdharm-usb@one-eyed-alien.net
3425L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003426L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427S: Maintained
3428W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3429
3430USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003431P: David Brownell
3432M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433L: linux-usb-users@lists.sourceforge.net
3434L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003435S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Matthias Urlichsba460e42005-07-14 00:33:47 -07003437USB OPTION-CARD DRIVER
3438P: Matthias Urlichs
3439M: smurf@smurf.noris.de
3440L: linux-usb-devel@lists.sourceforge.net
3441S: Maintained
3442
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443USB OV511 DRIVER
3444P: Mark McClelland
3445M: mmcclell@bigfoot.com
3446L: linux-usb-users@lists.sourceforge.net
3447L: linux-usb-devel@lists.sourceforge.net
3448W: http://alpha.dyndns.org/ov511/
3449S: Maintained
3450
3451USB PEGASUS DRIVER
3452P: Petko Manolov
3453M: petkan@users.sourceforge.net
3454L: linux-usb-users@lists.sourceforge.net
3455L: linux-usb-devel@lists.sourceforge.net
3456W: http://pegasus2.sourceforge.net/
3457S: Maintained
3458
3459USB PRINTER DRIVER
3460P: Vojtech Pavlik
3461M: vojtech@suse.cz
3462L: linux-usb-users@lists.sourceforge.net
3463L: linux-usb-devel@lists.sourceforge.net
3464S: Maintained
3465
3466USB RTL8150 DRIVER
3467P: Petko Manolov
3468M: petkan@users.sourceforge.net
3469L: linux-usb-users@lists.sourceforge.net
3470L: linux-usb-devel@lists.sourceforge.net
3471W: http://pegasus2.sourceforge.net/
3472S: Maintained
3473
3474USB SE401 DRIVER
3475P: Jeroen Vreeken
3476M: pe1rxq@amsat.org
3477L: linux-usb-users@lists.sourceforge.net
3478L: linux-usb-devel@lists.sourceforge.net
3479W: http://www.chello.nl/~j.vreeken/se401/
3480S: Maintained
3481
3482USB SERIAL CYBERJACK DRIVER
3483P: Matthias Bruestle and Harald Welte
3484M: support@reiner-sct.com
3485W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3486S: Maintained
3487
3488USB SERIAL DIGI ACCELEPORT DRIVER
3489P: Peter Berger and Al Borchers
3490M: pberger@brimson.com
3491M: alborchers@steinerpoint.com
3492L: linux-usb-users@lists.sourceforge.net
3493L: linux-usb-devel@lists.sourceforge.net
3494S: Maintained
3495
3496USB SERIAL DRIVER
3497P: Greg Kroah-Hartman
3498M: gregkh@suse.de
3499L: linux-usb-users@lists.sourceforge.net
3500L: linux-usb-devel@lists.sourceforge.net
3501S: Supported
3502
3503USB SERIAL BELKIN F5U103 DRIVER
3504P: William Greathouse
3505M: wgreathouse@smva.com
3506L: linux-usb-users@lists.sourceforge.net
3507L: linux-usb-devel@lists.sourceforge.net
3508S: Maintained
3509
3510USB SERIAL CYPRESS M8 DRIVER
3511P: Lonnie Mendez
3512M: dignome@gmail.com
3513L: linux-usb-users@lists.sourceforge.net
3514L: linux-usb-devel@lists.sourceforge.net
3515S: Maintained
3516W: http://geocities.com/i0xox0i
3517W: http://firstlight.net/cvs
3518
3519USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3520L: linux-usb-users@lists.sourceforge.net
3521L: linux-usb-devel@lists.sourceforge.net
3522S: Maintained
3523
3524USB AUERSWALD DRIVER
3525P: Wolfgang Muees
3526M: wolfgang@iksw-muees.de
3527L: linux-usb-users@lists.sourceforge.net
3528L: linux-usb-devel@lists.sourceforge.net
3529S: Maintained
3530
3531USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3532P: Gary Brubaker
3533M: xavyer@ix.netcom.com
3534L: linux-usb-users@lists.sourceforge.net
3535L: linux-usb-devel@lists.sourceforge.net
3536S: Maintained
3537
3538USB SERIAL KEYSPAN DRIVER
3539P: Greg Kroah-Hartman
3540M: greg@kroah.com
3541L: linux-usb-users@lists.sourceforge.net
3542L: linux-usb-devel@lists.sourceforge.net
3543W: http://www.kroah.com/linux/
3544S: Maintained
3545
3546USB SERIAL WHITEHEAT DRIVER
3547P: Stuart MacDonald
3548M: stuartm@connecttech.com
3549L: linux-usb-users@lists.sourceforge.net
3550L: linux-usb-devel@lists.sourceforge.net
3551W: http://www.connecttech.com
3552S: Supported
3553
3554USB SN9C10x DRIVER
3555P: Luca Risolia
3556M: luca.risolia@studio.unibo.it
3557L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003558L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559W: http://www.linux-projects.org
3560S: Maintained
3561
3562USB SUBSYSTEM
3563P: Greg Kroah-Hartman
3564M: gregkh@suse.de
3565L: linux-usb-users@lists.sourceforge.net
3566L: linux-usb-devel@lists.sourceforge.net
3567W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003568T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569S: Supported
3570
3571USB UHCI DRIVER
3572P: Alan Stern
3573M: stern@rowland.harvard.edu
3574L: linux-usb-users@lists.sourceforge.net
3575L: linux-usb-devel@lists.sourceforge.net
3576S: Maintained
3577
David Brownell69ae9e32006-11-14 02:03:31 -08003578USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579P: David Brownell
3580M: dbrownell@users.sourceforge.net
3581L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003582W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583S: Maintained
3584
3585USB W996[87]CF DRIVER
3586P: Luca Risolia
3587M: luca.risolia@studio.unibo.it
3588L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003589L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590W: http://www.linux-projects.org
3591S: Maintained
3592
Luca Risolia60f78052006-02-06 16:29:35 +00003593USB ZC0301 DRIVER
3594P: Luca Risolia
3595M: luca.risolia@studio.unibo.it
3596L: linux-usb-devel@lists.sourceforge.net
3597L: video4linux-list@redhat.com
3598W: http://www.linux-projects.org
3599S: Maintained
3600
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601USB ZD1201 DRIVER
3602P: Jeroen Vreeken
3603M: pe1rxq@amsat.org
3604L: linux-usb-users@lists.sourceforge.net
3605L: linux-usb-devel@lists.sourceforge.net
3606W: http://linux-lc100020.sourceforge.net
3607S: Maintained
3608
3609USER-MODE LINUX
3610P: Jeff Dike
3611M: jdike@karaya.com
3612L: user-mode-linux-devel@lists.sourceforge.net
3613L: user-mode-linux-user@lists.sourceforge.net
3614W: http://user-mode-linux.sourceforge.net
3615S: Maintained
3616
3617FAT/VFAT/MSDOS FILESYSTEM:
3618P: OGAWA Hirofumi
3619M: hirofumi@mail.parknet.co.jp
3620L: linux-kernel@vger.kernel.org
3621S: Maintained
3622
3623VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3624P: Jeff Garzik
3625S: Odd fixes
3626
3627VIA RHINE NETWORK DRIVER
3628P: Roger Luethi
3629M: rl@hellgate.ch
3630S: Maintained
3631
Jean Delvare32c0a522005-09-22 21:47:58 +02003632VIAPRO SMBUS DRIVER
3633P: Jean Delvare
3634M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003635L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003636S: Maintained
3637
Francois Romieu01f20732007-01-26 00:57:17 -08003638VIA VELOCITY NETWORK DRIVER
3639P: Francois Romieu
3640M: romieu@fr.zoreil.com
3641L: netdev@vger.kernel.org
3642S: Maintained
3643
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644UCLINUX (AND M68KNOMMU)
3645P: Greg Ungerer
3646M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003648L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649S: Maintained
3650
3651UCLINUX FOR NEC V850
3652P: Miles Bader
3653M: uclinux-v850@lsi.nec.co.jp
3654W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3655W: http://www.ee.nec.de/uclinux/
3656S: Supported
3657
3658UCLINUX FOR RENESAS H8/300
3659P: Yoshinori Sato
3660M: ysato@users.sourceforge.jp
3661W: http://uclinux-h8.sourceforge.jp/
3662S: Supported
3663
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003664UFS FILESYSTEM
3665P: Evgeniy Dushistov
3666M: dushistov@mail.ru
3667L: linux-kernel@vger.kernel.org
3668S: Maintained
3669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670USB DIAMOND RIO500 DRIVER
3671P: Cesar Miquel
3672M: miquel@df.uba.ar
3673L: rio500-users@lists.sourceforge.net
3674W: http://rio500.sourceforge.net
3675S: Maintained
3676
3677VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003678P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003679M: mchehab@infradead.org
3680M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003682W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003683T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003684S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685
Juerg Haefligerab413192006-09-24 20:54:04 +02003686VT1211 HARDWARE MONITOR DRIVER
3687P: Juerg Haefliger
3688M: juergh@gmail.com
3689L: lm-sensors@lm-sensors.org
3690S: Maintained
3691
Roger Lucas1de9e372005-11-26 20:20:05 +01003692VT8231 HARDWARE MONITOR DRIVER
3693P: Roger Lucas
3694M: roger@planbit.co.uk
3695L: lm-sensors@lm-sensors.org
3696S: Maintained
3697
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698W1 DALLAS'S 1-WIRE BUS
3699P: Evgeniy Polyakov
3700M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701S: Maintained
3702
Charles Spirakis13927072006-07-05 18:05:15 +02003703W83791D HARDWARE MONITORING DRIVER
3704P: Charles Spirakis
3705M: bezaur@gmail.com
3706L: lm-sensors@lm-sensors.org
3707S: Maintained
3708
Rudolf Marek61db0112006-12-12 18:18:30 +01003709W83793 HARDWARE MONITORING DRIVER
3710P: Rudolf Marek
3711M: r.marek@assembler.cz
3712L: lm-sensors@lm-sensors.org
3713S: Maintained
3714
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715W83L51xD SD/MMC CARD INTERFACE DRIVER
3716P: Pierre Ossman
3717M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003718L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719W: http://projects.drzeus.cx/wbsd
3720S: Maintained
3721
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003722WATCHDOG DEVICE DRIVERS
3723P: Wim Van Sebroeck
3724M: wim@iguana.be
3725T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3726S: Maintained
3727
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3729P: Jean Tourrilhes
3730M: jt@hpl.hp.com
3731W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3732S: Maintained
3733
3734WD7000 SCSI DRIVER
3735P: Miroslav Zagorac
3736M: zaga@fly.cc.fer.hr
3737L: linux-scsi@vger.kernel.org
3738S: Maintained
3739
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003740WISTRON LAPTOP BUTTON DRIVER
3741P: Miloslav Trmac
3742M: mitr@volny.cz
3743S: Maintained
3744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745WL3501 WIRELESS PCMCIA CARD DRIVER
3746P: Arnaldo Carvalho de Melo
3747M: acme@conectiva.com.br
3748W: http://advogato.org/person/acme
3749S: Maintained
3750
3751X.25 NETWORK LAYER
3752P: Henner Eisen
3753M: eis@baty.hanse.de
3754L: linux-x25@vger.kernel.org
3755S: Maintained
3756
3757XFS FILESYSTEM
3758P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003759P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003761L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003763T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764S: Supported
3765
Peter Korsgaard238b8722006-12-06 20:35:17 -08003766XILINX UARTLITE SERIAL DRIVER
3767P: Peter Korsgaard
3768M: jacmet@sunsite.dk
3769L: linux-serial@vger.kernel.org
3770S: Maintained
3771
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772X86 3-LEVEL PAGING (PAE) SUPPORT
3773P: Ingo Molnar
3774M: mingo@redhat.com
3775S: Maintained
3776
3777X86-64 port
3778P: Andi Kleen
3779M: ak@suse.de
3780L: discuss@x86-64.org
3781W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01003782T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783S: Maintained
3784
3785YAM DRIVER FOR AX.25
3786P: Jean-Paul Roubelat
3787M: jpr@f6fbb.org
3788L: linux-hams@vger.kernel.org
3789S: Maintained
3790
Henkaf64a5e2005-10-12 15:02:56 +02003791YEALINK PHONE DRIVER
3792P: Henk Vergonet
3793M: Henk.Vergonet@gmail.com
3794L: usbb2k-api-dev@nongnu.org
3795S: Maintained
3796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797Z8530 DRIVER FOR AX.25
3798P: Joerg Reuter
3799M: jreuter@yaina.de
3800W: http://yaina.de/jreuter/
3801W: http://www.qsl.net/dl1bke/
3802L: linux-hams@vger.kernel.org
3803S: Maintained
3804
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003805ZD1211RW WIRELESS DRIVER
3806P: Daniel Drake
3807M: dsd@gentoo.org
3808P: Ulrich Kunitz
3809M: kune@deine-taler.de
3810W: http://zd1211.ath.cx/wiki/DriverRewrite
3811L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3812S: Maintained
3813
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814ZF MACHZ WATCHDOG
3815P: Fernando Fuganti
3816M: fuganti@netbank.com.br
3817W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3818S: Maintained
3819
3820ZR36067 VIDEO FOR LINUX DRIVER
3821P: Ronald Bultje
3822M: rbultje@ronald.bitfreak.net
3823L: mjpeg-users@lists.sourceforge.net
3824W: http://mjpeg.sourceforge.net/driver-zoran/
3825S: Maintained
3826
3827ZR36120 VIDEO FOR LINUX DRIVER
3828P: Pauline Middelink
3829M: middelin@polyware.nl
3830W: http://www.polyware.nl/~middelin/En/hobbies.html
3831W: http://www.polyware.nl/~middelin/hobbies.html
3832S: Maintained
3833
3834THE REST
3835P: Linus Torvalds
3836S: Buried alive in reporters