blob: 3375ed1a9c011385ee6a4287dcc9c669d8b04da8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
33 generalized kernel feature ready for next time. See
34 Documentation/CodingStyle for guidance here.
35
36 PLEASE try to include any credit lines you want added with the
37 patch. It avoids people being missed off by mistake and makes
38 it easier to know who wants adding and who doesn't.
39
40 PLEASE document known bugs. If it doesn't work for everything
41 or does something very odd once a month document it.
42
Alan Coxc9ee1332006-05-20 15:00:12 -070043 PLEASE remember that submissions must be made under the terms
44 of the OSDL certificate of contribution
45 (http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html)
46 and should include a Signed-off-by: line.
47
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486. Make sure you have the right to send any changes you make. If you
49 do changes at work you may find your employer owns the patch
50 not you.
51
Alan Coxc9ee1332006-05-20 15:00:12 -0700527. When sending security related changes or reports to a maintainer
53 please Cc: security@kernel.org, especially if the maintainer
54 does not respond.
55
568. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 -----------------------------------
59
60Maintainers List (try to look for most precise areas first)
61
62Note: For the hard of thinking, this list is meant to remain in alphabetical
63order. If you could add yourselves to it in alphabetical order that would be
64so much easier [Ed]
65
66P: Person
67M: Mail patches to
68L: Mailing list that is relevant to this area
69W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080070T: SCM tree type and location. Type is one of: git, hg, quilt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071S: Status, one of the following:
72
73 Supported: Someone is actually paid to look after this.
74 Maintained: Someone actually looks after it.
75 Odd Fixes: It has a maintainer but they don't have time to do
76 much other than throw the odd patch in. See below..
77 Orphan: No current maintainer [but maybe you could take the
78 role as you write your new code].
79 Obsolete: Old code. Something tagged obsolete generally means
80 it has been replaced by a better system and you
81 should be using that.
82
833C359 NETWORK DRIVER
84P: Mike Phillips
85M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -070086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070087L: linux-tr@linuxtr.net
88W: http://www.linuxtr.net
89S: Maintained
90
913C505 NETWORK DRIVER
92P: Philip Blundell
93M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -070094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070095S: Maintained
96
973CR990 NETWORK DRIVER
98P: David Dillow
99M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101S: Maintained
102
1033W-XXXX ATA-RAID CONTROLLER DRIVER
104P: Adam Radford
105M: linuxraid@amcc.com
106L: linux-scsi@vger.kernel.org
107W: http://www.amcc.com
108S: Supported
109
1103W-9XXX SATA-RAID CONTROLLER DRIVER
111P: Adam Radford
112M: linuxraid@amcc.com
113L: linux-scsi@vger.kernel.org
114W: http://www.amcc.com
115S: Supported
116
11753C700 AND 53C700-66 SCSI DRIVER
118P: James E.J. Bottomley
119M: James.Bottomley@HansenPartnership.com
120L: linux-scsi@vger.kernel.org
121S: Maintained
122
1236PACK NETWORK DRIVER FOR AX.25
124P: Andreas Koensgen
125M: ajk@iehk.rwth-aachen.de
126L: linux-hams@vger.kernel.org
127S: Maintained
128
1298139CP 10/100 FAST ETHERNET DRIVER
130P: Jeff Garzik
131M: jgarzik@pobox.com
132S: Maintained
133
1348139TOO 10/100 FAST ETHERNET DRIVER
135P: Jeff Garzik
136M: jgarzik@pobox.com
137W: http://sourceforge.net/projects/gkernel/
138S: Maintained
139
1408169 10/100/1000 GIGABIT ETHERNET DRIVER
141P: Francois Romieu
142M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700143L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Maintained
145
1468250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-serial@vger.kernel.org
148W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100149S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1518390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
152P: Paul Gortmaker
153M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
156
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001579P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100158P: Eric Van Hensbergen
159M: ericvh@gmail.com
160P: Ron Minnich
161M: rminnich@lanl.gov
162P: Latchesar Ionkov
163M: lucho@ionkov.net
164L: v9fs-developer@lists.sourceforge.net
165W: http://v9fs.sf.net
166T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
167S: Maintained
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169A2232 SERIAL BOARD DRIVER
170P: Enver Haase
171M: ehaase@inf.fu-berlin.de
172M: A2232@gmx.net
173L: linux-m68k@lists.linux-m68k.org
174S: Maintained
175
176AIO
177P: Benjamin LaHaise
178M: bcrl@kvack.org
179L: linux-aio@kvack.org
180S: Supported
181
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200182ABIT UGURU HARDWARE MONITOR DRIVER
183P: Hans de Goede
184M: j.w.r.degoede@hhs.nl
185L: lm-sensors@lm-sensors.org
186S: Maintained
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188ACENIC DRIVER
189P: Jes Sorensen
190M: jes@trained-monkey.org
191L: linux-acenic@sunsite.dk
192S: Maintained
193
194ACI MIXER DRIVER
195P: Robert Siemer
196M: Robert.Siemer@gmx.de
197L: linux-sound@vger.kernel.org
198W: http://www.stud.uni-karlsruhe.de/~uh1b/
199S: Maintained
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201AACRAID SCSI RAID DRIVER
202P: Adaptec OEM Raid Solutions
203L: linux-scsi@vger.kernel.org
204W: http://linux.dell.com/storage.shtml
205S: Supported
206
207ACPI
208P: Len Brown
209M: len.brown@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500210M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500211L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800213T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500214S: Supported
215
216ACPI BATTERY DRIVERS
217P: Vladimir P. Lebedev
218M: vladimir.p.lebedev@intel.com
219L: linux-acpi@vger.kernel.org
220W: http://acpi.sourceforge.net/
221S: Supported
222
223ACPI EC DRIVER
224P: Alexey Starikovskiy
225M: alexey.y.starikovskiy@linux.intel.com
226L: linux-acpi@vger.kernel.org
227W: http://acpi.sourceforge.net/
228S: Supported
229
230ACPI FAN DRIVER
231P: Konstantin A. Karasyov
232M: konstantin.a.karasyov@intel.com
233L: linux-acpi@vger.kernel.org
234W: http://acpi.sourceforge.net/
235S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700237ACPI PCI HOTPLUG DRIVER
238P: Kristen Carlson Accardi
239M: kristen.c.accardi@intel.com
240L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -0500241S: Supported
242
243ACPI THERMAL DRIVER
244P: Konstantin A. Karasyov
245M: konstantin.a.karasyov@intel.com
246L: linux-acpi@vger.kernel.org
247W: http://acpi.sourceforge.net/
248S: Supported
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250AD1816 SOUND DRIVER
251P: Thorsten Knabe
252M: Thorsten Knabe <linux@thorsten-knabe.de>
253W: http://linux.thorsten-knabe.de
254S: Maintained
255
Kyle McMartin6958ae32005-10-21 23:11:27 -0400256AD1889 SOUND DRIVER
257P: Kyle McMartin
258M: kyle@parisc-linux.org
259P: Thibaut Varene
260M: T-Bone@parisc-linux.org
261W: http://wiki.parisc-linux.org/AD1889
262L: parisc-linux@lists.parisc-linux.org
263S: Maintained
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265ADM1025 HARDWARE MONITOR DRIVER
266P: Jean Delvare
267M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200268L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269S: Maintained
270
271ADT746X FAN DRIVER
272P: Colin Leroy
273M: colin@colino.net
274S: Maintained
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276AEDSP16 DRIVER
277P: Riccardo Facchetti
278M: fizban@tin.it
279S: Maintained
280
281AFFS FILE SYSTEM
282P: Roman Zippel
283M: zippel@linux-m68k.org
284S: Maintained
285
286AGPGART DRIVER
287P: Dave Jones
288M: davej@codemonkey.org.uk
289W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800290T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291S: Maintained
292
293AHA152X SCSI DRIVER
294P: Juergen E. Fischer
295M: Juergen Fischer <fischer@norbit.de>
296L: linux-scsi@vger.kernel.org
297S: Maintained
298
299ALCATEL SPEEDTOUCH USB DRIVER
300P: Duncan Sands
301M: duncan.sands@free.fr
302L: linux-usb-users@lists.sourceforge.net
303L: linux-usb-devel@lists.sourceforge.net
304W: http://www.linux-usb.org/SpeedTouch/
305S: Maintained
306
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000307ALI1563 I2C DRIVER
308P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100309M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200310L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000311S: Maintained
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313ALPHA PORT
314P: Richard Henderson
315M: rth@twiddle.net
316S: Odd Fixes for 2.4; Maintained for 2.6.
317P: Ivan Kokshaysky
318M: ink@jurassic.park.msu.ru
319S: Maintained for 2.4; PCI support for 2.6.
320
Jordan Crousef90b8112006-01-06 00:12:14 -0800321AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100322P: Jordan Crouse
323M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800324L: info-linux@geode.amd.com
325W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
326S: Supported
327
Stelian Pop284f42b2006-12-12 18:18:31 +0100328AMS (Apple Motion Sensor) DRIVER
329P: Stelian Pop
330M: stelian@popies.net
331P: Michael Hanselmann
332M: linux-kernel@hansmi.ch
333S: Supported
334
Tom Tuckerf94b5332006-09-22 15:22:48 -0700335AMSO1100 RNIC DRIVER
336P: Tom Tucker
337M: tom@opengridcomputing.com
338P: Steve Wise
339M: swise@opengridcomputing.com
340L: openib-general@openib.org
341S: Maintained
342
Johannes Berg42269062006-07-25 16:15:50 +0200343AOA (Apple Onboard Audio) ALSA DRIVER
344P: Johannes Berg
345M: johannes@sipsolutions.net
346L: linuxppc-dev@ozlabs.org
347L: alsa-devel@alsa-project.org
348S: Maintained
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350APM DRIVER
351P: Stephen Rothwell
352M: sfr@canb.auug.org.au
353L: linux-laptop@vger.kernel.org
354W: http://www.canb.auug.org.au/~sfr/
355S: Supported
356
357APPLETALK NETWORK LAYER
358P: Arnaldo Carvalho de Melo
359M: acme@conectiva.com.br
360S: Maintained
361
Jaya Kumar1154ea72005-06-21 17:17:04 -0700362ARC FRAMEBUFFER DRIVER
363P: Jaya Kumar
364M: jayalk@intworks.biz
365S: Maintained
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367ARM26 ARCHITECTURE
368P: Ian Molton
369M: spyro@f2s.com
370S: Maintained
371
372ARM26/ARCHIMEDES
373P: Ian Molton
374M: spyro@f2s.com
375S: Maintained
376
377ARM26/A5000
378P: John Appleby
379M: john@dnsworld.co.uk
380S: Maintained
381
382ARM MFM AND FLOPPY DRIVERS
383P: Ian Molton
384M: spyro@f2s.com
385S: Maintained
386
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800387ARM/ADI ROADRUNNER MACHINE SUPPORT
388P: Lennert Buytenhek
389M: kernel@wantstofly.org
390L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
391S: Maintained
392
393ARM/ADS SPHERE MACHINE SUPPORT
394P: Lennert Buytenhek
395M: kernel@wantstofly.org
396L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
397S: Maintained
398
399ARM/AJECO 1ARM MACHINE SUPPORT
400P: Lennert Buytenhek
401M: kernel@wantstofly.org
402L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
403S: Maintained
404
Andrew Victord4a89c72006-12-04 13:56:21 +0100405ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
406P: Andrew Victor
407M: andrew@sanpeople.com
408L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
409W: http://maxim.org.za/at91_26.html
410S: Maintained
411
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800412ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
413P: Lennert Buytenhek
414M: kernel@wantstofly.org
415L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
416S: Maintained
417
418ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
419P: Lennert Buytenhek
420M: kernel@wantstofly.org
421L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
422S: Maintained
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424ARM/CORGI MACHINE SUPPORT
425P: Richard Purdie
426M: rpurdie@rpsys.net
427S: Maintained
428
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800429ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
430P: Lennert Buytenhek
431M: kernel@wantstofly.org
432L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
433S: Maintained
434
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100435ARM/HP JORNADA 7XX MACHINE SUPPORT
436P: Kristoffer Ericson
437M: kristoffer_e1@hotmail.com
438W: www.jlime.com
439S: Maintained
440
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800441ARM/INTEL IOP32X ARM ARCHITECTURE
442P: Lennert Buytenhek
443M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100444P: Dan Williams
445M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800446L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100447S: Supported
448
449ARM/INTEL IOP33X ARM ARCHITECTURE
450P: Dan Williams
451M: dan.j.williams@intel.com
452L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
453S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800454
455ARM/INTEL IOP13XX ARM ARCHITECTURE
456P: Lennert Buytenhek
457M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100458P: Dan Williams
459M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800460L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100461S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800462
463ARM/INTEL IQ81342EX MACHINE SUPPORT
464P: Lennert Buytenhek
465M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100466P: Dan Williams
467M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800468L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100469S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800470
471ARM/INTEL IXP2000 ARM ARCHITECTURE
472P: Lennert Buytenhek
473M: kernel@wantstofly.org
474L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
475S: Maintained
476
477ARM/INTEL IXDP2850 MACHINE SUPPORT
478P: Lennert Buytenhek
479M: kernel@wantstofly.org
480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
481S: Maintained
482
483ARM/INTEL IXP23XX ARM ARCHITECTURE
484P: Lennert Buytenhek
485M: kernel@wantstofly.org
486L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
487S: Maintained
488
489ARM/INTEL XSC3 (MANZANO) ARM CORE
490P: Lennert Buytenhek
491M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100492P: Dan Williams
493M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800494L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100495S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800496
497ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
498P: Lennert Buytenhek
499M: kernel@wantstofly.org
500L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
501S: Maintained
502
503ARM/LOGICPD PXA270 MACHINE SUPPORT
504P: Lennert Buytenhek
505M: kernel@wantstofly.org
506L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
507S: Maintained
508
Dirk Opfer8459c152005-11-06 14:27:52 +0000509ARM/TOSA MACHINE SUPPORT
510P: Dirk Opfer
511M: dirk@opfer-online.de
512S: Maintained
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514ARM/PLEB SUPPORT
515P: Peter Chubb
516M: pleb@gelato.unsw.edu.au
517W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
518S: Maintained
519
520ARM/PT DIGITAL BOARD PORT
521P: Stefan Eletzhofer
522M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700523L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524W: http://www.arm.linux.org.uk/
525S: Maintained
526
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800527ARM/RADISYS ENP2611 MACHINE SUPPORT
528P: Lennert Buytenhek
529M: kernel@wantstofly.org
530L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
531S: Maintained
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533ARM/SHARK MACHINE SUPPORT
534P: Alexander Schulz
535M: alex@shark-linux.de
536W: http://www.shark-linux.de/shark.html
537S: Maintained
538
539ARM/STRONGARM110 PORT
540P: Russell King
541M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700542L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543W: http://www.arm.linux.org.uk/
544S: Maintained
545
546ARM/S3C2410 ARM ARCHITECTURE
547P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800548M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700549L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550W: http://www.fluff.org/ben/linux/
551S: Maintained
552
553ARM/S3C2440 ARM ARCHITECTURE
554P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800555M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700556L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557W: http://www.fluff.org/ben/linux/
558S: Maintained
559
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800560ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
561P: Lennert Buytenhek
562M: kernel@wantstofly.org
563L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
564S: Maintained
565
566ARM/THECUS N2100 MACHINE SUPPORT
567P: Lennert Buytenhek
568M: kernel@wantstofly.org
569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
570S: Maintained
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572ARPD SUPPORT
573P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700574L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575S: Maintained
576
577ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500578P: Corentin Chary
579M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580P: Karol Kozimor
581M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582L: acpi4asus-user@lists.sourceforge.net
583W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500584W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585S: Maintained
586
587ATA OVER ETHERNET DRIVER
588P: Ed L. Cashin
589M: ecashin@coraid.com
590W: http://www.coraid.com/support/linux
591S: Supported
592
593ATM
594P: Chas Williams
595M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700596L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597W: http://linux-atm.sourceforge.net
598S: Maintained
599
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100600ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100601P: Haavard Skinnemoen
602M: hskinnemoen@atmel.com
603S: Supported
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605ATMEL WIRELESS DRIVER
606P: Simon Kelley
607M: simon@thekelleys.org.uk
608W: http://www.thekelleys.org.uk/atmel
609W: http://atmelwlandriver.sourceforge.net/
610S: Maintained
611
Chris Wrighta92b7b82005-07-07 18:12:23 -0700612AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100613P: David Woodhouse
614M: dwmw2@infradead.org
615L: linux-audit@redhat.com
616W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800617T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700618S: Maintained
619
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700620AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700621P: Haavard Skinnemoen
622M: hskinnemoen@atmel.com
623W: http://www.atmel.com/products/AVR32/
624W: http://avr32linux.org/
625W: http://avrfreaks.net/
626S: Supported
627
628AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700629P: Haavard Skinnemoen
630M: hskinnemoen@atmel.com
631S: Supported
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633AX.25 NETWORK LAYER
634P: Ralf Baechle
635M: ralf@linux-mips.org
636L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200637W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638S: Maintained
639
640BAYCOM/HDLCDRV DRIVERS FOR AX.25
641P: Thomas Sailer
642M: t.sailer@alumni.ethz.ch
643L: linux-hams@vger.kernel.org
644W: http://www.baycom.org/~tom/ham/ham.html
645S: Maintained
646
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200647BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
648P: Larry Finger
649M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200650P: Stefano Brivio
651M: st3@riseup.net
652W: http://bcm43xx.berlios.de/
653S: Maintained
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655BEFS FILE SYSTEM
656P: Sergey S. Kostyliov
657M: rathamahata@php4.ru
658L: linux-kernel@vger.kernel.org
659S: Maintained
660
661BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
662P: Kenji Hollis
663W: http://ftp.bitgate.com/pcwd/
664S: Maintained
665
666BFS FILE SYSTEM
667P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800668M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669L: linux-kernel@vger.kernel.org
670S: Maintained
671
672BLOCK LAYER
673P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200674M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800676T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677S: Maintained
678
679BLUETOOTH SUBSYSTEM
680P: Marcel Holtmann
681M: marcel@holtmann.org
682P: Maxim Krasnyansky
683M: maxk@qualcomm.com
684L: bluez-devel@lists.sf.net
685W: http://bluez.sf.net
686W: http://www.bluez.org
687W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800688T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689S: Maintained
690
691BLUETOOTH RFCOMM LAYER
692P: Marcel Holtmann
693M: marcel@holtmann.org
694P: Maxim Krasnyansky
695M: maxk@qualcomm.com
696S: Maintained
697
698BLUETOOTH BNEP LAYER
699P: Marcel Holtmann
700M: marcel@holtmann.org
701P: Maxim Krasnyansky
702M: maxk@qualcomm.com
703S: Maintained
704
705BLUETOOTH CMTP LAYER
706P: Marcel Holtmann
707M: marcel@holtmann.org
708S: Maintained
709
710BLUETOOTH HIDP LAYER
711P: Marcel Holtmann
712M: marcel@holtmann.org
713S: Maintained
714
715BLUETOOTH HCI UART DRIVER
716P: Marcel Holtmann
717M: marcel@holtmann.org
718P: Maxim Krasnyansky
719M: maxk@qualcomm.com
720S: Maintained
721
722BLUETOOTH HCI USB DRIVER
723P: Marcel Holtmann
724M: marcel@holtmann.org
725P: Maxim Krasnyansky
726M: maxk@qualcomm.com
727S: Maintained
728
729BLUETOOTH HCI BCM203X DRIVER
730P: Marcel Holtmann
731M: marcel@holtmann.org
732S: Maintained
733
734BLUETOOTH HCI BPA10X DRIVER
735P: Marcel Holtmann
736M: marcel@holtmann.org
737S: Maintained
738
739BLUETOOTH HCI BFUSB DRIVER
740P: Marcel Holtmann
741M: marcel@holtmann.org
742S: Maintained
743
744BLUETOOTH HCI DTL1 DRIVER
745P: Marcel Holtmann
746M: marcel@holtmann.org
747S: Maintained
748
749BLUETOOTH HCI BLUECARD DRIVER
750P: Marcel Holtmann
751M: marcel@holtmann.org
752S: Maintained
753
754BLUETOOTH HCI BT3C DRIVER
755P: Marcel Holtmann
756M: marcel@holtmann.org
757S: Maintained
758
759BLUETOOTH HCI BTUART DRIVER
760P: Marcel Holtmann
761M: marcel@holtmann.org
762S: Maintained
763
764BLUETOOTH HCI VHCI DRIVER
765P: Maxim Krasnyansky
766M: maxk@qualcomm.com
767S: Maintained
768
769BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100770P: Chad Tindel
771M: ctindel@users.sourceforge.net
772P: Jay Vosburgh
773M: fubar@us.ibm.com
774L: bonding-devel@lists.sourceforge.net
775W: http://sourceforge.net/projects/bonding/
776S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000778BROADBAND PROCESSOR ARCHITECTURE
779P: Arnd Bergmann
780M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100781L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400782W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000783S: Supported
784
Gary Zambrano39105892006-06-22 17:26:20 -0700785BROADCOM B44 10/100 ETHERNET DRIVER
786P: Gary Zambrano
787M: zambrano@broadcom.com
788L: netdev@vger.kernel.org
789S: Supported
790
Michael Chan948c51e2006-06-04 02:51:39 -0700791BROADCOM BNX2 GIGABIT ETHERNET DRIVER
792P: Michael Chan
793M: mchan@broadcom.com
794L: netdev@vger.kernel.org
795S: Supported
796
797BROADCOM TG3 GIGABIT ETHERNET DRIVER
798P: Michael Chan
799M: mchan@broadcom.com
800L: netdev@vger.kernel.org
801S: Supported
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700804P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200805M: mchehab@infradead.org
806M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700808W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200809T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700810S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200812CALGARY x86-64 IOMMU
813P: Muli Ben-Yehuda
814M: muli@il.ibm.com
815P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200816M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200817L: linux-kernel@vger.kernel.org
818L: discuss@x86-64.org
819S: Maintained
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821COMMON INTERNET FILE SYSTEM (CIFS)
822P: Steve French
823M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100824L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825L: samba-technical@lists.samba.org
826W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800827T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828S: Supported
829
Joel Becker7063fbf2005-12-15 14:29:43 -0800830CONFIGFS
831P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800832M: joel.becker@oracle.com
833L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800834S: Supported
835
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800836CIRRUS LOGIC EP93XX ETHERNET DRIVER
837P: Lennert Buytenhek
838M: kernel@wantstofly.org
839L: netdev@vger.kernel.org
840S: Maintained
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842CIRRUS LOGIC GENERIC FBDEV DRIVER
843P: Jeff Garzik
844M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800845L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846S: Odd Fixes
847
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800848CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
849P: Lennert Buytenhek
850M: kernel@wantstofly.org
851L: linux-usb-devel@lists.sourceforge.net
852S: Maintained
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
855P: Cirrus Logic Corporation (kernel 2.2 driver)
856M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
857P: Nils Faerber (port to kernel 2.4)
858M: Nils Faerber <nils@kernelconcepts.de>
859S: Maintained
860
861CODA FILE SYSTEM
862P: Jan Harkes
863M: jaharkes@cs.cmu.edu
864M: coda@cs.cmu.edu
865L: codalist@coda.cs.cmu.edu
866W: http://www.coda.cs.cmu.edu/
867S: Maintained
868
869COMPACTPCI HOTPLUG CORE
870P: Scott Murray
871M: scottm@somanetworks.com
872M: scott@spiteful.org
873L: pcihpd-discuss@lists.sourceforge.net
874S: Supported
875
876COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
877P: Scott Murray
878M: scottm@somanetworks.com
879M: scott@spiteful.org
880L: pcihpd-discuss@lists.sourceforge.net
881S: Supported
882
883COMPACTPCI HOTPLUG GENERIC DRIVER
884P: Scott Murray
885M: scottm@somanetworks.com
886M: scott@spiteful.org
887L: pcihpd-discuss@lists.sourceforge.net
888S: Supported
889
890COMPUTONE INTELLIPORT MULTIPORT CARD
891P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700892M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700894S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896COSA/SRP SYNC SERIAL DRIVER
897P: Jan "Yenya" Kasprzak
898M: kas@fi.muni.cz
899W: http://www.fi.muni.cz/~kas/cosa/
900S: Maintained
901
902CPU FREQUENCY DRIVERS
903P: Dave Jones
904M: davej@codemonkey.org.uk
905L: cpufreq@lists.linux.org.uk
906W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500907T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908S: Maintained
909
910CPUID/MSR DRIVER
911P: H. Peter Anvin
912M: hpa@zytor.com
913S: Maintained
914
Paul Jacksoned90fb42005-09-27 21:45:37 -0700915CPUSETS
916P: Paul Jackson
917P: Simon Derr
918M: pj@sgi.com
919M: simon.derr@bull.net
920L: linux-kernel@vger.kernel.org
921W: http://www.bullopensource.org/cpuset/
922S: Supported
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100925W: http://sourceforge.net/projects/cramfs/
926S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928CRIS PORT
929P: Mikael Starvik
930M: starvik@axis.com
931L: dev-etrax@axis.com
932W: http://developer.axis.com
933S: Maintained
934
935CRYPTO API
936P: Herbert Xu
937M: herbert@gondor.apana.org.au
938P: David S. Miller
939M: davem@davemloft.net
940L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800941T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942S: Maintained
943
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100944CS5535 Audio ALSA driver
945P: Jaya Kumar
946M: jayakumar.alsa@gmail.com
947S: Maintained
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949CYBERPRO FB DRIVER
950P: Russell King
951M: rmk@arm.linux.org.uk
952W: http://www.arm.linux.org.uk/
953S: Maintained
954
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700955CYBLAFB FRAMEBUFFER DRIVER
956P: Knut Petersen
957M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800958L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700959S: Maintained
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961CYCLADES 2X SYNC CARD DRIVER
962P: Arnaldo Carvalho de Melo
963M: acme@conectiva.com.br
964W: http://advogato.org/person/acme
965L: cycsyn-devel@bazar.conectiva.com.br
966S: Maintained
967
968CYCLADES ASYNC MUX DRIVER
969M: async@cyclades.com
970W: http://www.cyclades.com/
971S: Supported
972
973CYCLADES PC300 DRIVER
974M: pc300@cyclades.com
975W: http://www.cyclades.com/
976S: Supported
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978DAMA SLAVE for AX.25
979P: Joerg Reuter
980M: jreuter@yaina.de
981W: http://yaina.de/jreuter/
982W: http://www.qsl.net/dl1bke/
983L: linux-hams@vger.kernel.org
984S: Maintained
985
986DC395x SCSI driver
987P: Oliver Neukum
988M: oliver@neukum.name
989P: Ali Akcaagac
990M: aliakc@web.de
991P: Jamie Lenehan
992M: lenehan@twibble.org
993W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700994L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995L: http://lists.twibble.org/mailman/listinfo/dc395x/
996S: Maintained
997
998DC390/AM53C974 SCSI driver
999P: Kurt Garloff
1000M: garloff@suse.de
1001W: http://www.garloff.de/kurt/linux/dc390/
1002P: Guennadi Liakhovetski
1003M: g.liakhovetski@gmx.de
1004S: Maintained
1005
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001006DCCP PROTOCOL
1007P: Arnaldo Carvalho de Melo
1008M: acme@mandriva.com
1009L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001010W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001011S: Maintained
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013DECnet NETWORK LAYER
1014P: Patrick Caulfield
1015M: patrick@tykepenguin.com
1016W: http://linux-decnet.sourceforge.net
1017L: linux-decnet-user@lists.sourceforge.net
1018S: Maintained
1019
1020DEFXX FDDI NETWORK DRIVER
1021P: Maciej W. Rozycki
1022M: macro@linux-mips.org
1023S: Maintained
1024
1025DELL LAPTOP SMM DRIVER
1026P: Massimo Dal Zotto
1027M: dz@debian.org
1028W: http://www.debian.org/~dz/i8k/
1029S: Maintained
1030
Doug Warzecha90563ec2005-09-06 15:17:15 -07001031DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1032P: Doug Warzecha
1033M: Douglas_Warzecha@dell.com
1034S: Maintained
1035
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001036DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037P: Alasdair Kergon
1038L: dm-devel@redhat.com
1039W: http://sources.redhat.com/dm
1040S: Maintained
1041
1042DEVICE NUMBER REGISTRY
1043P: Torben Mathiasen
1044M: device@lanana.org
1045W: http://lanana.org/docs/device-list/index.html
1046L: linux-kernel@vger.kernel.org
1047S: Maintained
1048
1049DEVICE FILESYSTEM
1050S: Obsolete
1051
1052DIGI INTL. EPCA DRIVER
1053P: Digi International, Inc
1054M: Eng.Linux@digi.com
1055L: Eng.Linux@digi.com
1056W: http://www.digi.com
1057S: Orphaned
1058
1059DIGI RIGHTSWITCH NETWORK DRIVER
1060P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001061L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062W: http://www.digi.com
1063S: Orphaned
1064
1065DIRECTORY NOTIFICATION
1066P: Stephen Rothwell
1067M: sfr@canb.auug.org.au
1068L: linux-kernel@vger.kernel.org
1069S: Supported
1070
1071DISK GEOMETRY AND PARTITION HANDLING
1072P: Andries Brouwer
1073M: aeb@cwi.nl
1074W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1075W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1076W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1077S: Maintained
1078
1079DISKQUOTA:
1080P: Jan Kara
1081M: jack@suse.cz
1082L: linux-kernel@vger.kernel.org
1083S: Maintained
1084
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001085DISTRIBUTED LOCK MANAGER
1086P: Patrick Caulfield
1087M: pcaulfie@redhat.com
1088P: David Teigland
1089M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001090L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001091W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001092T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1093T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001094S: Supported
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1097P: Tobias Ringstrom
1098M: tori@unhappy.mine.nu
1099L: linux-kernel@vger.kernel.org
1100S: Maintained
1101
Martin Waitzba483d52005-06-17 13:20:59 -07001102DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001103P: Randy Dunlap
1104M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001105S: Maintained
1106
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001107DOCKING STATION DRIVER
1108P: Kristen Carlson Accardi
1109M: kristen.c.accardi@intel.com
1110L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001111S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113DOUBLETALK DRIVER
1114P: James R. Van Zandt
1115M: jrv@vanzandt.mv.com
1116L: blinux-list@redhat.com
1117S: Maintained
1118
1119DRIVER CORE, KOBJECTS, AND SYSFS
1120P: Greg Kroah-Hartman
1121M: gregkh@suse.de
1122L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001123T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124S: Supported
1125
1126DRM DRIVERS
1127P: David Airlie
1128M: airlied@linux.ie
1129L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001130T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131S: Maintained
1132
1133DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001134P: Francois Romieu
1135M: romieu@fr.zoreil.com
1136L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137S: Maintained
1138
1139DVB SUBSYSTEM AND DRIVERS
1140P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001141M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001143W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001144T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001145S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147EATA-DMA SCSI DRIVER
1148P: Michael Neuffer
1149L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1150S: Maintained
1151
1152EATA ISA/EISA/PCI SCSI DRIVER
1153P: Dario Ballabio
1154M: ballabio_dario@emc.com
1155L: linux-scsi@vger.kernel.org
1156S: Maintained
1157
1158EATA-PIO SCSI DRIVER
1159P: Michael Neuffer
1160M: mike@i-Connect.Net
1161L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1162S: Maintained
1163
1164EBTABLES
1165P: Bart De Schuymer
1166M: bart.de.schuymer@pandora.be
1167L: ebtables-user@lists.sourceforge.net
1168L: ebtables-devel@lists.sourceforge.net
1169W: http://ebtables.sourceforge.net/
1170S: Maintained
1171
Michael Halcrow237fead2006-10-04 02:16:22 -07001172ECRYPT FILE SYSTEM
1173P: Mike Halcrow, Phillip Hellewell
1174M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1175L: ecryptfs-devel@lists.sourceforge.net
1176W: http://ecryptfs.sourceforge.net/
1177S: Supported
1178
Alan Coxda9bb1d2006-01-18 17:44:13 -08001179EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001180P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001181M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001182L: bluesmoke-devel@lists.sourceforge.net
1183W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001184S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001185
1186EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001187P: Mark Gross
1188M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001189L: bluesmoke-devel@lists.sourceforge.net
1190W: bluesmoke.sourceforge.net
1191S: Maintained
1192
1193EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001194P: Doug Thompson
1195M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001196L: bluesmoke-devel@lists.sourceforge.net
1197W: bluesmoke.sourceforge.net
1198S: Maintained
1199
1200EDAC-R82600
1201P: Tim Small
1202M: tim@buttersideup.com
1203L: bluesmoke-devel@lists.sourceforge.net
1204W: bluesmoke.sourceforge.net
1205S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207EEPRO100 NETWORK DRIVER
1208P: Andrey V. Savochkin
1209M: saw@saw.sw.com.sg
1210S: Maintained
1211
Josh Triplett0bee8d22006-07-30 03:03:58 -07001212EFS FILESYSTEM
1213W: http://aeschi.ch.eu.org/efs/
1214S: Orphan
1215
Heiko J Schickfab97222006-09-22 15:22:22 -07001216EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1217P: Hoang-Nam Nguyen
1218M: hnguyen@de.ibm.com
1219P: Christoph Raisch
1220M: raisch@de.ibm.com
1221L: openib-general@openib.org
1222S: Supported
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224EMU10K1 SOUND DRIVER
1225P: James Courtier-Dutton
1226M: James@superbug.demon.co.uk
1227L: emu10k1-devel@lists.sourceforge.net
1228W: http://sourceforge.net/projects/emu10k1/
1229S: Maintained
1230
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001231EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001232P: James Smart
1233M: james.smart@emulex.com
1234L: linux-scsi@vger.kernel.org
1235W: http://sourceforge.net/projects/lpfcxxxx
1236S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238EPSON 1355 FRAMEBUFFER DRIVER
1239P: Christopher Hoover
1240M: ch@murgatroid.com, ch@hpl.hp.com
1241S: Maintained
1242
1243ETHEREXPRESS-16 NETWORK DRIVER
1244P: Philip Blundell
1245M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001246L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247S: Maintained
1248
1249ETHERNET BRIDGE
1250P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08001251M: shemminger@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252L: bridge@osdl.org
1253W: http://bridge.sourceforge.net/
1254S: Maintained
1255
1256ETHERTEAM 16I DRIVER
1257P: Mika Kuoppala
1258M: miku@iki.fi
1259S: Maintained
1260
1261EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001262L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263S: Maintained
1264
1265EXT3 FILE SYSTEM
1266P: Stephen Tweedie, Andrew Morton
1267M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001268L: linux-ext4@vger.kernel.org
1269S: Maintained
1270
1271EXT4 FILE SYSTEM
1272P: Stephen Tweedie, Andrew Morton
1273M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1274L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275S: Maintained
1276
Jean Delvaree53004e2006-01-09 23:26:14 +01001277F71805F HARDWARE MONITORING DRIVER
1278P: Jean Delvare
1279M: khali@linux-fr.org
1280L: lm-sensors@lm-sensors.org
1281S: Maintained
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283FARSYNC SYNCHRONOUS DRIVER
1284P: Kevin Curtis
1285M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286W: http://www.farsite.co.uk/
1287S: Supported
1288
1289FRAMEBUFFER LAYER
1290P: Antonino Daplas
1291M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001292L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293W: http://linux-fbdev.sourceforge.net/
1294S: Maintained
1295
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001296FREESCALE SOC FS_ENET DRIVER
1297P: Pantelis Antoniou
1298M: pantelis.antoniou@gmail.com
1299P: Vitaly Bordug
1300M: vbordug@ru.mvista.com
1301L: linuxppc-embedded@ozlabs.org
1302L: netdev@vger.kernel.org
1303S: Maintained
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305FILE LOCKING (flock() and fcntl()/lockf())
1306P: Matthew Wilcox
1307M: matthew@wil.cx
1308L: linux-fsdevel@vger.kernel.org
1309S: Maintained
1310
1311FILESYSTEMS (VFS and infrastructure)
1312P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001313M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314S: Maintained
1315
1316FIRMWARE LOADER (request_firmware)
1317L: linux-kernel@vger.kernel.org
1318S: Orphan
1319
1320FPU EMULATOR
1321P: Bill Metzenthen
1322M: billm@suburbia.net
1323W: http://suburbia.net/~billm/floating-point/emulator/
1324S: Maintained
1325
1326FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1327P: Mike McLagan
1328M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001329L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330S: Maintained
1331
1332FREEVXFS FILESYSTEM
1333P: Christoph Hellwig
1334M: hch@infradead.org
1335W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1336S: Maintained
1337
1338FUJITSU FR-V PORT
1339P: David Howells
1340M: dhowells@redhat.com
1341S: Maintained
1342
Miklos Szeredi04578f12005-09-09 13:10:22 -07001343FUSE: FILESYSTEM IN USERSPACE
1344P: Miklos Szeredi
1345M: miklos@szeredi.hu
1346L: fuse-devel@lists.sourceforge.net
1347W: http://fuse.sourceforge.net/
1348S: Maintained
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1351P: Rik Faith
1352M: faith@cs.unc.edu
1353L: linux-scsi@vger.kernel.org
1354S: Odd fixes (e.g., new signatures)
1355
1356GDT SCSI DISK ARRAY CONTROLLER DRIVER
1357P: Achim Leubner
1358M: achim_leubner@adaptec.com
1359L: linux-scsi@vger.kernel.org
1360W: http://www.icp-vortex.com/
1361S: Supported
1362
1363GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1364P: Krzysztof Halasa
1365M: khc@pm.waw.pl
1366W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1367S: Maintained
1368
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001369GFS2 FILE SYSTEM
1370P: Steven Whitehouse
1371M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001372L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001373W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001374T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1375T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001376S: Supported
1377
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001378GIGASET ISDN DRIVERS
1379P: Hansjoerg Lipp
1380M: hjlipp@web.de
1381P: Tilman Schmidt
1382M: tilman@imap.cc
1383L: gigaset307x-common@lists.sourceforge.net
1384W: http://gigaset307x.sourceforge.net/
1385S: Maintained
1386
Jean Delvare5b543962005-08-15 19:51:02 +02001387HARDWARE MONITORING
1388P: Jean Delvare
1389M: khali@linux-fr.org
1390L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001391W: http://www.lm-sensors.org/
1392T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001393S: Maintained
1394
Michael Buesch844dd052006-06-26 00:24:59 -07001395HARDWARE RANDOM NUMBER GENERATOR CORE
1396P: Michael Buesch
1397M: mb@bu3sch.de
1398S: Maintained
1399
Robert Love860e1d62005-08-31 23:57:59 -04001400HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1401P: Robert Love
1402M: rlove@rlove.org
1403M: linux-kernel@vger.kernel.org
1404W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1405S: Maintained
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407HARMONY SOUND DRIVER
1408P: Kyle McMartin
1409M: kyle@parisc-linux.org
1410W: http://www.parisc-linux.org/~kyle/harmony/
1411L: parisc-linux@lists.parisc-linux.org
1412S: Maintained
1413
1414HAYES ESP SERIAL DRIVER
1415P: Andrew J. Robinson
1416M: arobinso@nyx.net
1417L: linux-kernel@vger.kernel.org
1418W: http://www.nyx.net/~arobinso
1419S: Maintained
1420
1421HFS FILESYSTEM
1422P: Roman Zippel
1423M: zippel@linux-m68k.org
1424L: linux-kernel@vger.kernel.org
1425S: Maintained
1426
1427HGA FRAMEBUFFER DRIVER
1428P: Ferenc Bakonyi
1429M: fero@drama.obuda.kando.hu
1430L: linux-nvidia@lists.surfsouth.com
1431W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1432S: Maintained
1433
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001434HID CORE LAYER
1435P: Jiri Kosina
1436M: jkosina@suse.cz
1437L: linux-input@atrey.karlin.mff.cuni.cz
1438S: Maintained
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440HIGH-SPEED SCC DRIVER FOR AX.25
1441P: Klaus Kudielka
1442M: klaus.kudielka@ieee.org
1443L: linux-hams@vger.kernel.org
1444W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1445S: Maintained
1446
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001447HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1448P: HighPoint Linux Team
1449M: linux@highpoint-tech.com
1450W: http://www.highpoint-tech.com
1451S: Supported
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453HIPPI
1454P: Jes Sorensen
1455M: jes@trained-monkey.org
1456L: linux-hippi@sunsite.dk
1457S: Maintained
1458
1459HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1460P: Chirag Kantharia
1461M: chirag.kantharia@hp.com
1462L: iss_storagedev@hp.com
1463S: Maintained
1464
1465HEWLETT-PACKARD SMART2 RAID DRIVER
1466P: Chirag Kantharia
1467M: chirag.kantharia@hp.com
1468L: iss_storagedev@hp.com
1469S: Maintained
1470
1471HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1472P: Mike Miller
1473M: mike.miller@hp.com
1474L: iss_storagedev@hp.com
1475S: Supported
1476
Jouni Malinenff1d2762005-05-12 22:54:16 -04001477HOST AP DRIVER
1478P: Jouni Malinen
1479M: jkmaline@cc.hut.fi
1480L: hostap@shmoo.com
1481W: http://hostap.epitest.fi/
1482S: Maintained
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1485P: Jaroslav Kysela
1486M: perex@suse.cz
1487S: Maintained
1488
Bob Piccob9b03322005-11-07 00:59:19 -08001489HPET: High Precision Event Timers driver (hpet.c)
1490P: Clemens Ladisch
1491M: clemens@ladisch.de
1492S: Maintained
1493
1494HPET: i386
1495P: Venkatesh Pallipadi (Venki)
1496M: venkatesh.pallipadi@intel.com
1497S: Maintained
1498
1499HPET: x86_64
1500P: Andi Kleen and Vojtech Pavlik
1501M: ak@muc.de and vojtech@suse.cz
1502S: Maintained
1503
1504HPET: ACPI hpet.c
1505P: Bob Picco
1506M: bob.picco@hp.com
1507S: Maintained
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509HPFS FILESYSTEM
1510P: Mikulas Patocka
1511M: mikulas@artax.karlin.mff.cuni.cz
1512W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1513S: Maintained
1514
1515HUGETLB FILESYSTEM
1516P: William Irwin
1517M: wli@holomorphy.com
1518S: Maintained
1519
Jean Delvare5b543962005-08-15 19:51:02 +02001520I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521P: Jean Delvare
1522M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001523L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001524T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525S: Maintained
1526
1527I2O
1528P: Markus Lidel
1529M: markus.lidel@shadowconnect.com
1530W: http://i2o.shadowconnect.com/
1531S: Maintained
1532
1533i386 BOOT CODE
1534P: Riley H. Williams
1535M: Riley@Williams.Name
1536L: Linux-Kernel@vger.kernel.org
1537S: Maintained
1538
1539i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1540P: Dave Jones
1541M: davej@codemonkey.org.uk
1542P: H. Peter Anvin
1543M: hpa@zytor.com
1544S: Maintained
1545
1546i810 TCO TIMER WATCHDOG
1547P: Nils Faerber
1548M: nils@kernelconcepts.de
1549W: http://www.kernelconcepts.de/
1550S: Maintained
1551
1552IA64 (Itanium) PLATFORM
1553P: Tony Luck
1554M: tony.luck@intel.com
1555L: linux-ia64@vger.kernel.org
1556W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001557T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558S: Maintained
1559
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001560IBM ACPI EXTRAS DRIVER
1561P: Henrique de Moraes Holschuh
1562M: ibm-acpi@hmh.eng.br
1563L: ibm-acpi-devel@lists.sourceforge.net
1564W: http://ibm-acpi.sourceforge.net
1565W: http://thinkwiki.org/wiki/Ibm-acpi
1566T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1567S: Maintained
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001570P: Jes Sorensen
1571M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572L: linux-altix@sgi.com
1573L: linux-ia64@vger.kernel.org
1574W: http://www.sgi.com/altix
1575S: Maintained
1576
1577IBM MCA SCSI SUBSYSTEM DRIVER
1578P: Michael Lang
1579M: langa2@kph.uni-mainz.de
1580W: http://www.uni-mainz.de/~langm000/linux.html
1581S: Maintained
1582
1583IBM Power Linux RAID adapter
1584P: Brian King
1585M: brking@us.ibm.com
1586S: Supported
1587
1588IBM ServeRAID RAID DRIVER
1589P: Jack Hammer
1590P: Dave Jeffery
1591M: ipslinux@adaptec.com
1592W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1593S: Supported
1594
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001595IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001597M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001599T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600S: Maintained
1601
1602IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001603P: Alan Cox
1604M: alan@lxorguk.ukuu.org.uk
1605L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606S: Maintained
1607
1608IDE/ATAPI FLOPPY DRIVERS
1609P: Paul Bristow
1610M: Paul Bristow <paul@paulbristow.net>
1611W: http://paulbristow.net/linux/idefloppy.html
1612L: linux-kernel@vger.kernel.org
1613S: Maintained
1614
1615IDE/ATAPI TAPE DRIVERS
1616P: Gadi Oxman
1617M: Gadi Oxman <gadio@netvision.net.il>
1618L: linux-kernel@vger.kernel.org
1619S: Maintained
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621IEEE 1394 SUBSYSTEM
1622P: Ben Collins
1623M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001624P: Stefan Richter
1625M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626L: linux1394-devel@lists.sourceforge.net
1627W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001628T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629S: Maintained
1630
Stefan Richter87730d02006-09-16 12:24:00 +02001631IEEE 1394 IPV4 DRIVER (eth1394)
1632P: Stefan Richter
1633M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001635S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637IEEE 1394 PCILYNX DRIVER
1638P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001639M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001640P: Stefan Richter
1641M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001643S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645IEEE 1394 RAW I/O DRIVER
1646P: Ben Collins
1647M: bcollins@debian.org
1648P: Dan Dennedy
1649M: dan@dennedy.org
1650L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001651S: Maintained
1652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653IMS TWINTURBO FRAMEBUFFER DRIVER
1654P: Paul Mundt
1655M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001656L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657S: Maintained
1658
1659INFINIBAND SUBSYSTEM
1660P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001661M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662P: Sean Hefty
1663M: mshefty@ichips.intel.com
1664P: Hal Rosenstock
1665M: halr@voltaire.com
1666L: openib-general@openib.org
1667W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001668T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669S: Supported
1670
1671INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001672P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001673M: dmitry.torokhov@gmail.com
1674M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675L: linux-input@atrey.karlin.mff.cuni.cz
1676L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001677T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678S: Maintained
1679
Robert Lovec9f04f52005-07-15 12:21:07 -04001680INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001681P: John McCutchan
1682M: ttb@tentacle.dhs.org
1683P: Robert Love
1684M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001685L: linux-kernel@vger.kernel.org
1686S: Maintained
1687
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001688INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001689P: Sylvain Meyer
1690M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001691L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001692S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001695P: Antonino Daplas
1696M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001697L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001698S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1701P: Ingo Molnar
1702M: mingo@redhat.com
1703S: Maintained
1704
1705INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1706P: Jeff Garzik
1707M: jgarzik@pobox.com
1708W: http://sourceforge.net/projects/gkernel/
1709S: Maintained
1710
1711INTEL IA32 MICROCODE UPDATE SUPPORT
1712P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001713M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714S: Maintained
1715
Michael Buesch844dd052006-06-26 00:24:59 -07001716INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1717P: Deepak Saxena
1718M: dsaxena@plexity.net
1719S: Maintained
1720
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001721INTEL IXP2000 ETHERNET DRIVER
1722P: Lennert Buytenhek
1723M: kernel@wantstofly.org
1724L: netdev@vger.kernel.org
1725S: Maintained
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727INTEL PRO/100 ETHERNET SUPPORT
1728P: John Ronciak
1729M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730P: Jesse Brandeburg
1731M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001732P: Jeff Kirsher
1733M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001734P: Auke Kok
1735M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736W: http://sourceforge.net/projects/e1000/
1737S: Supported
1738
1739INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1740P: Jeb Cramer
1741M: cramerj@intel.com
1742P: John Ronciak
1743M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001744P: Jesse Brandeburg
1745M: jesse.brandeburg@intel.com
1746P: Jeff Kirsher
1747M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001748P: Auke Kok
1749M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750W: http://sourceforge.net/projects/e1000/
1751S: Supported
1752
1753INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001754P: Jeff Kirsher
1755M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756P: Ayyappan Veeraiyan
1757M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758P: John Ronciak
1759M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001760P: Jesse Brandeburg
1761M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001762P: Auke Kok
1763M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764W: http://sourceforge.net/projects/e1000/
1765S: Supported
1766
James Ketrenos826d2ab2005-11-07 18:56:59 -06001767INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1768P: Yi Zhu
1769M: yi.zhu@intel.com
1770P: James Ketrenos
1771M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001772L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001773L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1774W: http://ipw2100.sourceforge.net
1775S: Supported
1776
1777INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1778P: Yi Zhu
1779M: yi.zhu@intel.com
1780P: James Ketrenos
1781M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001782L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001783L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1784W: http://ipw2200.sourceforge.net
1785S: Supported
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787IOC3 DRIVER
1788P: Ralf Baechle
1789M: ralf@linux-mips.org
1790L: linux-mips@linux-mips.org
1791S: Maintained
1792
1793IP MASQUERADING:
1794P: Juanjo Ciarlante
1795M: jjciarla@raiz.uncu.edu.ar
1796S: Maintained
1797
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001798IPATH DRIVER:
1799P: Bryan O'Sullivan
1800M: support@pathscale.com
1801L: openib-general@openib.org
1802S: Supported
1803
Corey Minyard4409ebe2006-04-20 02:43:12 -07001804IPMI SUBSYSTEM
1805P: Corey Minyard
1806M: minyard@acm.org
1807L: openipmi-developer@lists.sourceforge.net
1808W: http://openipmi.sourceforge.net/
1809S: Supported
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811IPX NETWORK LAYER
1812P: Arnaldo Carvalho de Melo
1813M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001814L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815S: Maintained
1816
1817IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001818P: Samuel Ortiz
1819M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001820L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001822S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824ISAPNP
1825P: Jaroslav Kysela
1826M: perex@suse.cz
1827S: Maintained
1828
1829ISDN SUBSYSTEM
1830P: Karsten Keil
1831M: kkeil@suse.de
1832P: Kai Germaschewski
1833M: kai.germaschewski@gmx.de
1834L: isdn4linux@listserv.isdn4linux.de
1835W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001836T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837S: Maintained
1838
1839ISDN SUBSYSTEM (Eicon active card driver)
1840P: Armin Schindler
1841M: mac@melware.de
1842L: isdn4linux@listserv.isdn4linux.de
1843W: http://www.melware.de
1844S: Maintained
1845
1846JOURNALLING FLASH FILE SYSTEM (JFFS)
1847P: Axis Communications AB
1848M: jffs-dev@axis.com
1849L: jffs-dev@axis.com
1850W: http://www.developer.axis.com/software/jffs/
1851S: Maintained
1852
1853JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1854P: David Woodhouse
1855M: dwmw2@infradead.org
1856L: jffs-dev@axis.com
1857W: http://sources.redhat.com/jffs2/
1858S: Maintained
1859
1860JFS FILESYSTEM
1861P: Dave Kleikamp
1862M: shaggy@austin.ibm.com
1863L: jfs-discussion@lists.sourceforge.net
1864W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001865T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866S: Supported
1867
Josh Triplettde456d32006-07-30 03:04:00 -07001868JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001869P: Stephen Tweedie, Andrew Morton
1870M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001871L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001872S: Maintained
1873
Rudolf Marek4660cb32006-10-08 22:01:26 +02001874K8TEMP HARDWARE MONITORING DRIVER
1875P: Rudolf Marek
1876M: r.marek@assembler.cz
1877L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878S: Maintained
1879
1880KCONFIG
1881P: Roman Zippel
1882M: zippel@linux-m68k.org
1883L: kbuild-devel@lists.sourceforge.net
1884S: Maintained
1885
Vivek Goyalea6c2082006-05-20 14:59:55 -07001886KDUMP
1887P: Vivek Goyal
1888M: vgoyal@in.ibm.com
1889P: Haren Myneni
1890M: hbabu@us.ibm.com
1891L: fastboot@lists.osdl.org
1892L: linux-kernel@vger.kernel.org
1893W: http://lse.sourceforge.net/kdump/
1894S: Maintained
1895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896KERNEL AUTOMOUNTER (AUTOFS)
1897P: H. Peter Anvin
1898M: hpa@zytor.com
1899L: autofs@linux.kernel.org
1900S: Odd Fixes
1901
1902KERNEL AUTOMOUNTER v4 (AUTOFS4)
1903P: Ian Kent
1904M: raven@themaw.net
1905L: autofs@linux.kernel.org
1906S: Maintained
1907
1908KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1909P: Kai Germaschewski
1910M: kai@germaschewski.name
1911P: Sam Ravnborg
1912M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001913T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914S: Maintained
1915
1916KERNEL JANITORS
1917P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001918L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920S: Maintained
1921
1922KERNEL NFSD
1923P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08001924M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925L: nfs@lists.sourceforge.net
1926W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08001927S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Avi Kivity426d62e2006-12-13 00:34:03 -08001929KERNEL VIRTUAL MACHINE (KVM)
1930P: Avi Kivity
1931M: avi@qumranet.com
1932L: kvm-devel@lists.sourceforge.net
1933W: kvm.sourceforge.net
1934S: Supported
1935
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001936KEXEC
1937P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001938M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001939W: http://www.xmission.com/~ebiederm/files/kexec/
1940L: linux-kernel@vger.kernel.org
1941L: fastboot@osdl.org
1942S: Maintained
1943
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001944KPROBES
1945P: Prasanna S Panchamukhi
1946M: prasanna@in.ibm.com
1947P: Ananth N Mavinakayanahalli
1948M: ananth@in.ibm.com
1949P: Anil S Keshavamurthy
1950M: anil.s.keshavamurthy@intel.com
1951P: David S. Miller
1952M: davem@davemloft.net
1953L: linux-kernel@vger.kernel.org
1954S: Maintained
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001958S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960LASI 53c700 driver for PARISC
1961P: James E.J. Bottomley
1962M: James.Bottomley@HansenPartnership.com
1963L: linux-scsi@vger.kernel.org
1964S: Maintained
1965
Richard Purdie263de9b2006-05-15 09:44:16 -07001966LED SUBSYSTEM
1967P: Richard Purdie
1968M: rpurdie@rpsys.net
1969S: Maintained
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971LEGO USB Tower driver
1972P: Juergen Stuber
1973M: starblue@users.sourceforge.net
1974L: legousb-devel@lists.sourceforge.net
1975W: http://legousb.sourceforge.net/
1976S: Maintained
1977
1978LINUX FOR IBM pSERIES (RS/6000)
1979P: Paul Mackerras
1980M: paulus@au.ibm.com
1981W: http://www.ibm.com/linux/ltc/projects/ppc
1982S: Supported
1983
1984LINUX FOR NCR VOYAGER
1985P: James Bottomley
1986M: James.Bottomley@HansenPartnership.com
1987W: http://www.hansenpartnership.com/voyager
1988S: Maintained
1989
1990LINUX FOR POWERPC
1991P: Paul Mackerras
1992M: paulus@samba.org
1993W: http://www.penguinppc.org/
1994L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001995T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996S: Supported
1997
1998LINUX FOR POWER MACINTOSH
1999P: Benjamin Herrenschmidt
2000M: benh@kernel.crashing.org
2001W: http://www.penguinppc.org/
2002L: linuxppc-dev@ozlabs.org
2003S: Maintained
2004
2005LINUX FOR POWERPC EMBEDDED MPC52XX
2006P: Sylvain Munaut
2007M: tnt@246tNt.com
2008W: http://www.246tNt.com/mpc52xx/
2009W: http://www.penguinppc.org/
2010L: linuxppc-dev@ozlabs.org
2011L: linuxppc-embedded@ozlabs.org
2012S: Maintained
2013
2014LINUX FOR POWERPC EMBEDDED PPC4XX
2015P: Matt Porter
2016M: mporter@kernel.crashing.org
2017W: http://www.penguinppc.org/
2018L: linuxppc-embedded@ozlabs.org
2019S: Maintained
2020
Tom Rinie93adf12005-07-26 12:49:53 -07002021LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022P: Tom Rini
2023M: trini@kernel.crashing.org
2024W: http://www.penguinppc.org/
2025L: linuxppc-embedded@ozlabs.org
2026S: Maintained
2027
Tom Rinie93adf12005-07-26 12:49:53 -07002028LINUX FOR POWERPC EMBEDDED PPC8XX
2029P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002030M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002031W: http://www.penguinppc.org/
2032L: linuxppc-embedded@ozlabs.org
2033S: Maintained
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002036P: Kumar Gala
2037M: galak@kernel.crashing.org
2038W: http://www.penguinppc.org/
2039L: linuxppc-embedded@ozlabs.org
2040S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Olof Johanssonab06ff32006-09-06 14:44:54 -05002042LINUX FOR POWERPC PA SEMI PWRFICIENT
2043P: Olof Johansson
2044M: olof@lixom.net
2045W: http://www.pasemi.com/
2046L: linuxppc-dev@ozlabs.org
2047S: Supported
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049LLC (802.2)
2050P: Arnaldo Carvalho de Melo
2051M: acme@conectiva.com.br
2052S: Maintained
2053
2054LINUX FOR 64BIT POWERPC
2055P: Paul Mackerras
2056M: paulus@samba.org
2057M: paulus@au.ibm.com
2058P: Anton Blanchard
2059M: anton@samba.org
2060M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002061W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002062L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063S: Supported
2064
2065LINUX SECURITY MODULE (LSM) FRAMEWORK
2066P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002067M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002068L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002070T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071S: Supported
2072
2073LM83 HARDWARE MONITOR DRIVER
2074P: Jean Delvare
2075M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002076L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077S: Maintained
2078
2079LM90 HARDWARE MONITOR DRIVER
2080P: Jean Delvare
2081M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002082L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083S: Maintained
2084
2085LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2086P: Richard Russon (FlatCap)
2087M: ldm@flatcap.org
2088L: ldm-devel@lists.sourceforge.net
2089W: http://ldm.sourceforge.net
2090S: Maintained
2091
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002092LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2093P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002094M: Eric.Moore@lsi.com
2095M: support@lsi.com
2096L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002097L: linux-scsi@vger.kernel.org
2098W: http://www.lsilogic.com/support
2099S: Supported
2100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2102P: Matthew Wilcox
2103M: matthew@wil.cx
2104L: linux-scsi@vger.kernel.org
2105S: Maintained
2106
2107M68K ARCHITECTURE
2108P: Geert Uytterhoeven
2109M: geert@linux-m68k.org
2110P: Roman Zippel
2111M: zippel@linux-m68k.org
2112L: linux-m68k@lists.linux-m68k.org
2113W: http://www.linux-m68k.org/
2114W: http://linux-m68k-cvs.ubb.ca/
2115S: Maintained
2116
2117M68K ON APPLE MACINTOSH
2118P: Joshua Thompson
2119M: funaho@jurai.org
2120W: http://www.mac.linux-m68k.org/
2121L: linux-mac68k@mac.linux-m68k.org
2122S: Maintained
2123
2124M68K ON HP9000/300
2125P: Philip Blundell
2126M: philb@gnu.org
2127W: http://www.tazenda.demon.co.uk/phil/linux-hp
2128S: Maintained
2129
2130MARVELL YUKON / SYSKONNECT DRIVER
2131P: Mirko Lindner
2132M: mlindner@syskonnect.de
2133P: Ralph Roesler
2134M: rroesler@syskonnect.de
2135W: http://www.syskonnect.com
2136S: Supported
2137
Michael Kerriskfaf16682005-07-31 22:34:47 -07002138MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002139P: Michael Kerrisk
2140M: mtk-manpages@gmx.net
2141W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2142S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002143
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002144MARVELL MV643XX ETHERNET DRIVER
2145P: Dale Farnsworth
2146M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002148M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002149L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002150S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152MATROX FRAMEBUFFER DRIVER
2153P: Petr Vandrovec
2154M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002155L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156S: Maintained
2157
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002158MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002159P: Neela Syam Kolli
2160M: Neela.Kolli@engenio.com
2161S: linux-scsi@vger.kernel.org
2162W: http://megaraid.lsilogic.com
2163S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002164
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002165MEMORY MANAGEMENT
2166L: linux-mm@kvack.org
2167L: linux-kernel@vger.kernel.org
2168W: http://www.linux-mm.org
2169S: Maintained
2170
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002171MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172P: David Woodhouse
2173M: dwmw2@infradead.org
2174W: http://www.linux-mtd.infradead.org/
2175L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002176T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177S: Maintained
2178
2179MICROTEK X6 SCANNER
2180P: Oliver Neukum
2181M: oliver@neukum.name
2182S: Maintained
2183
2184MIPS
2185P: Ralf Baechle
2186M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002187W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002189T: git www.linux-mips.org:/pub/scm/linux.git
2190S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192MISCELLANEOUS MCA-SUPPORT
2193P: James Bottomley
2194M: jejb@steeleye.com
2195L: linux-kernel@vger.kernel.org
2196S: Maintained
2197
2198MODULE SUPPORT
2199P: Rusty Russell
2200M: rusty@rustcorp.com.au
2201L: linux-kernel@vger.kernel.org
2202S: Maintained
2203
2204MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2205P: Stelian Pop
2206M: stelian@popies.net
2207W: http://popies.net/meye/
2208S: Maintained
2209
2210MOUSE AND MISC DEVICES [GENERAL]
2211P: Alessandro Rubini
2212M: rubini@ipvvis.unipv.it
2213L: linux-kernel@vger.kernel.org
2214S: Maintained
2215
Jiri Slabyd7354102006-12-08 02:38:35 -08002216MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2217P: Jiri Slaby
2218M: jirislaby@gmail.com
2219L: linux-kernel@vger.kernel.org
2220S: Maintained
2221
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002222MSI LAPTOP SUPPORT
2223P: Lennart Poettering
2224M: mzxreary@0pointer.de
2225L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2226W: http://0pointer.de/lennart/tchibo.html
2227S: Maintained
2228
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229MTRR AND SIMILAR SUPPORT [i386]
2230P: Richard Gooch
2231M: rgooch@atnf.csiro.au
2232L: linux-kernel@vger.kernel.org
2233W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2234S: Maintained
2235
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002236MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2237P: Pierre Ossman
2238M: drzeus-mmc@drzeus.cx
2239L: linux-kernel@vger.kernel.org
2240S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242MULTISOUND SOUND DRIVER
2243P: Andrew Veliath
2244M: andrewtv@usa.net
2245S: Maintained
2246
Jiri Slabyd7354102006-12-08 02:38:35 -08002247MULTITECH MULTIPORT CARD (ISICOM)
2248P: Jiri Slaby
2249M: jirislaby@gmail.com
2250L: linux-kernel@vger.kernel.org
2251S: Maintained
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253NATSEMI ETHERNET DRIVER (DP8381x)
2254P: Tim Hockin
2255M: thockin@hockin.org
2256S: Maintained
2257
2258NCP FILESYSTEM
2259P: Petr Vandrovec
2260M: vandrove@vc.cvut.cz
2261L: linware@sh.cvut.cz
2262S: Maintained
2263
2264NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2265P: James E.J. Bottomley
2266M: James.Bottomley@HansenPartnership.com
2267L: linux-scsi@vger.kernel.org
2268S: Maintained
2269
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002270NETEM NETWORK EMULATOR
2271P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002272M: shemminger@linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002273L: netem@osdl.org
2274S: Maintained
2275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276NETFILTER/IPTABLES/IPCHAINS
2277P: Rusty Russell
2278P: Marc Boucher
2279P: James Morris
2280P: Harald Welte
2281P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002282P: Patrick McHardy
2283M: kaber@trash.net
2284L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002285L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002286L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287W: http://www.netfilter.org/
2288W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289S: Supported
2290
Paul Moore4cc67732006-09-25 15:57:13 -07002291NETLABEL
2292P: Paul Moore
2293M: paul.moore@hp.com
2294W: http://netlabel.sf.net
2295L: netdev@vger.kernel.org
2296S: Supported
2297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298NETROM NETWORK LAYER
2299P: Ralf Baechle
2300M: ralf@linux-mips.org
2301L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002302W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303S: Maintained
2304
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002305NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306P: Paul Clements
2307M: Paul.Clements@steeleye.com
2308S: Maintained
2309
2310NETWORK DEVICE DRIVERS
2311P: Andrew Morton
2312M: akpm@osdl.org
2313P: Jeff Garzik
2314M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002315L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002316T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317S: Maintained
2318
2319NETWORKING [GENERAL]
2320P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002321M: netdev@vger.kernel.org
2322L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002323W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324S: Maintained
2325
2326NETWORKING [IPv4/IPv6]
2327P: David S. Miller
2328M: davem@davemloft.net
2329P: Alexey Kuznetsov
2330M: kuznet@ms2.inr.ac.ru
2331P: Pekka Savola (ipv6)
2332M: pekkas@netcore.fi
2333P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002334M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335P: Hideaki YOSHIFUJI
2336M: yoshfuji@linux-ipv6.org
2337P: Patrick McHardy
2338M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002339L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002340T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341S: Maintained
2342
John W. Linville29f8f632006-01-18 14:52:48 -08002343NETWORKING [WIRELESS]
2344P: John W. Linville
2345M: linville@tuxdriver.com
2346L: netdev@vger.kernel.org
2347T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2348S: Maintained
2349
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002350NETXEN (1/10) GbE SUPPORT
2351P: Amit S. Kale
2352M: amitkale@netxen.com
2353L: netdev@vger.kernel.org
2354W: http://www.netxen.com
2355S: Supported
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357IPVS
2358P: Wensong Zhang
2359M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002360P: Simon Horman
2361M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362P: Julian Anastasov
2363M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002364L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365S: Maintained
2366
2367NFS CLIENT
2368P: Trond Myklebust
2369M: trond.myklebust@fys.uio.no
2370L: linux-kernel@vger.kernel.org
2371S: Maintained
2372
2373NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002374P: Jan-Pascal van Best
2375M: janpascal@vanbest.org
2376P: Andreas Mohr
2377M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002378L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379S: Maintained
2380
2381NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2382P: YOKOTA Hiroshi
2383M: yokota@netlab.is.tsukuba.ac.jp
2384W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2385S: Maintained
2386
2387NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2388P: GOTO Masanori
2389M: gotom@debian.or.jp
2390P: YOKOTA Hiroshi
2391M: yokota@netlab.is.tsukuba.ac.jp
2392W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2393S: Maintained
2394
2395NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2396P: Eberhard Moenkeberg
2397M: emoenke@gwdg.de
2398L: linux-kernel@vger.kernel.org
2399S: Maintained
2400
2401NTFS FILESYSTEM
2402P: Anton Altaparmakov
2403M: aia21@cantab.net
2404L: linux-ntfs-dev@lists.sourceforge.net
2405L: linux-kernel@vger.kernel.org
2406W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002407T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408S: Maintained
2409
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002410NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002411P: Antonino Daplas
2412M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002413L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002414S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002416OPENCORES I2C BUS DRIVER
2417P: Peter Korsgaard
2418M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002419L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002420S: Maintained
2421
Mark Fashehccd979b2005-12-15 14:31:24 -08002422ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2423P: Mark Fasheh
2424M: mark.fasheh@oracle.com
2425P: Kurt Hackel
2426M: kurt.hackel@oracle.com
2427L: ocfs2-devel@oss.oracle.com
2428W: http://oss.oracle.com/projects/ocfs2/
2429S: Supported
2430
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431OLYMPIC NETWORK DRIVER
2432P: Peter De Shrijver
2433M: p2@ace.ulyssis.student.kuleuven.ac.be
2434P: Mike Phillips
2435M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002436L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437L: linux-tr@linuxtr.net
2438W: http://www.linuxtr.net
2439S: Maintained
2440
Harald Weltec1986ee2005-11-13 16:06:29 -08002441OMNIKEY CARDMAN 4000 DRIVER
2442P: Harald Welte
2443M: laforge@gnumonks.org
2444S: Maintained
2445
Harald Welte77c44ab2005-11-13 16:06:26 -08002446OMNIKEY CARDMAN 4040 DRIVER
2447P: Harald Welte
2448M: laforge@gnumonks.org
2449S: Maintained
2450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451ONSTREAM SCSI TAPE DRIVER
2452P: Willem Riede
2453M: osst@riede.org
2454L: osst-users@lists.sourceforge.net
2455L: linux-scsi@vger.kernel.org
2456S: Maintained
2457
2458OPL3-SA2, SA3, and SAx DRIVER
2459P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002460M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461L: linux-sound@vger.kernel.org
2462S: Maintained
2463
2464OPROFILE
2465P: Philippe Elie
2466M: phil.el@wanadoo.fr
2467L: oprofile-list@lists.sf.net
2468S: Maintained
2469
2470ORINOCO DRIVER
2471P: Pavel Roskin
2472M: proski@gnu.org
2473P: David Gibson
2474M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002475L: orinoco-users@lists.sourceforge.net
2476L: orinoco-devel@lists.sourceforge.net
2477W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478S: Maintained
2479
2480PARALLEL PORT SUPPORT
2481P: Phil Blundell
2482M: philb@gnu.org
2483P: Tim Waugh
2484M: tim@cyberelk.net
2485P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486P: Andrea Arcangeli
2487M: andrea@suse.de
2488L: linux-parport@lists.infradead.org
2489W: http://people.redhat.com/twaugh/parport/
2490S: Maintained
2491
2492PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2493P: Tim Waugh
2494M: tim@cyberelk.net
2495L: linux-parport@lists.infradead.org
2496W: http://www.torque.net/linux-pp.html
2497S: Maintained
2498
2499PARISC ARCHITECTURE
2500P: Matthew Wilcox
2501M: matthew@wil.cx
2502P: Grant Grundler
2503M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002504P: Kyle McMartin
2505M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506L: parisc-linux@parisc-linux.org
2507W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002508T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2509T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510S: Maintained
2511
Jim Cromie1662d322006-10-06 00:43:59 -07002512PC87360 HARDWARE MONITORING DRIVER
2513P: Jim Cromie
2514M: jim.cromie@gmail.com
2515L: lm-sensors@lm-sensors.org
2516S: Maintained
2517
2518PC8736x GPIO DRIVER
2519P: Jim Cromie
2520M: jim.cromie@gmail.com
2521S: Maintained
2522
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002523PCI ERROR RECOVERY
2524P: Linas Vepstas
2525M: linas@austin.ibm.com
2526L: linux-kernel@vger.kernel.org
2527L: linux-pci@atrey.karlin.mff.cuni.cz
2528S: Supported
2529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2531P: Thomas Sailer
2532M: sailer@ife.ee.ethz.ch
2533L: linux-sound@vger.kernel.org
2534W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2535S: Maintained
2536
2537PCI SUBSYSTEM
2538P: Greg Kroah-Hartman
2539M: gregkh@suse.de
2540L: linux-kernel@vger.kernel.org
2541L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002542T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543S: Supported
2544
2545PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002546P: Kristen Carlson Accardi
2547M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548S: Supported
2549
2550PCI HOTPLUG COMPAQ DRIVER
2551P: Greg Kroah-Hartman
2552M: greg@kroah.com
2553S: Maintained
2554
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002555PCIE HOTPLUG DRIVER
2556P: Kristen Carlson Accardi
2557M: kristen.c.accardi@intel.com
2558L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002559S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002560
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002562P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002563L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002565T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002566S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
2568PCNET32 NETWORK DRIVER
2569P: Thomas Bogendörfer
2570M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002571L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572S: Maintained
2573
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002574PER-TASK DELAY ACCOUNTING
2575P: Shailabh Nagar
2576M: nagar@watson.ibm.com
2577L: linux-kernel@vger.kernel.org
2578S: Maintained
2579
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002580PERSONALITY HANDLING
2581P: Christoph Hellwig
2582M: hch@infradead.org
2583L: linux-abi-devel@lists.sourceforge.net
2584S: Maintained
2585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586PHRAM MTD DRIVER
2587P: Jörn Engel
2588M: joern@wh.fh-wedel.de
2589L: linux-mtd@lists.infradead.org
2590S: Maintained
2591
Peter Osterlund249a6772005-09-27 21:45:30 -07002592PKTCDVD DRIVER
2593P: Peter Osterlund
2594M: petero2@telia.com
2595L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002596S: Maintained
2597
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598POSIX CLOCKS and TIMERS
2599P: George Anzinger
2600M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002601L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602S: Supported
2603
Eugene Surovegin24682972005-10-14 03:00:53 -07002604POWERPC 4xx EMAC DRIVER
2605P: Eugene Surovegin
2606M: ebs@ebshome.net
2607W: http://kernel.ebshome.net/emac/
2608L: linuxppc-embedded@ozlabs.org
2609L: netdev@vger.kernel.org
2610S: Maintained
2611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612PNP SUPPORT
2613P: Adam Belay
2614M: ambx1@neo.rr.com
2615S: Maintained
2616
Vitaly Wool999445d2007-01-04 13:07:03 +01002617PNXxxxx I2C DRIVER
2618P: Vitaly Wool
2619M: vitalywool@gmail.com
2620L: i2c@lm-sensors.org
2621S: Maintained
2622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623PPP PROTOCOL DRIVERS AND COMPRESSORS
2624P: Paul Mackerras
2625M: paulus@samba.org
2626L: linux-ppp@vger.kernel.org
2627S: Maintained
2628
2629PPP OVER ATM (RFC 2364)
2630P: Mitchell Blank Jr
2631M: mitch@sfgoth.com
2632S: Maintained
2633
2634PPP OVER ETHERNET
2635P: Michal Ostrowski
2636M: mostrows@speakeasy.net
2637S: Maintained
2638
2639PREEMPTIBLE KERNEL
2640P: Robert Love
2641M: rml@tech9.net
2642L: linux-kernel@vger.kernel.org
2643L: kpreempt-tech@lists.sourceforge.net
2644W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2645S: Supported
2646
2647PRISM54 WIRELESS DRIVER
2648P: Prism54 Development Team
2649M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002650L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651W: http://prism54.org
2652S: Maintained
2653
2654PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2655P: Peter Denison
2656M: promise@pnd-pc.demon.co.uk
2657W: http://www.pnd-pc.demon.co.uk/promise/
2658S: Maintained
2659
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002660PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2661P: Mikael Pettersson
2662M: mikpe@it.uu.se
2663L: linux-ide@vger.kernel.org
2664S: Maintained
2665
Geoff Levandf58a9d12006-11-23 00:46:51 +01002666PS3 PLATFORM SUPPORT
2667P: Geoff Levand
2668M: geoffrey.levand@am.sony.com
2669L: linuxppc-dev@ozlabs.org
2670L: cbe-oss-dev@ozlabs.org
2671S: Supported
2672
Michael Krufky83202042006-07-03 00:24:18 -07002673PVRUSB2 VIDEO4LINUX DRIVER
2674P: Mike Isely
2675M: isely@pobox.com
2676L: pvrusb2@isely.net
2677L: video4linux-list@redhat.com
2678W: http://www.isely.net/pvrusb2/
2679S: Maintained
2680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681PXA2xx SUPPORT
2682P: Nicolas Pitre
2683M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002684L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685S: Maintained
2686
2687QLOGIC QLA2XXX FC-SCSI DRIVER
2688P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002689M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690L: linux-scsi@vger.kernel.org
2691S: Supported
2692
Ron Mercer5a4faa872006-07-25 00:40:21 -07002693QLOGIC QLA3XXX NETWORK DRIVER
2694P: Ron Mercer
2695M: linux-driver@qlogic.com
2696L: netdev@vger.kernel.org
2697S: Supported
2698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699QNX4 FILESYSTEM
2700P: Anders Larsen
2701M: al@alarsen.net
2702L: linux-kernel@vger.kernel.org
2703W: http://www.alarsen.net/linux/qnx4fs/
2704S: Maintained
2705
2706RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002707P: Benjamin Herrenschmidt
2708M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002709L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710S: Maintained
2711
2712RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002713P: Paul Mackerras
2714M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002715L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716S: Maintained
2717
2718RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2719P: Corey Thomas
2720M: corey@world.std.com
2721L: linux-kernel@vger.kernel.org
2722S: Maintained
2723
Matt Mackall9e95ce22005-04-16 15:25:56 -07002724RANDOM NUMBER DRIVER
2725P: Matt Mackall
2726M: mpm@selenic.com
2727S: Maintained
2728
Matt Porter394b7012005-11-07 01:00:15 -08002729RAPIDIO SUBSYSTEM
2730P: Matt Porter
2731M: mporter@kernel.crashing.org
2732L: linux-kernel@vger.kernel.org
2733S: Maintained
2734
Josh Triplett595182b2006-10-04 02:17:21 -07002735READ-COPY UPDATE (RCU)
2736P: Dipankar Sarma
2737M: dipankar@in.ibm.com
2738W: http://www.rdrop.com/users/paulmck/rclock/
2739L: linux-kernel@vger.kernel.org
2740S: Supported
2741
2742RCUTORTURE MODULE
2743P: Josh Triplett
2744M: josh@freedesktop.org
2745L: linux-kernel@vger.kernel.org
2746S: Maintained
2747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748REAL TIME CLOCK DRIVER
2749P: Paul Gortmaker
2750M: p_gortmaker@yahoo.com
2751L: linux-kernel@vger.kernel.org
2752S: Maintained
2753
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002754REAL TIME CLOCK (RTC) SUBSYSTEM
2755P: Alessandro Zummo
2756M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002757L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002758S: Maintained
2759
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760REISERFS FILE SYSTEM
2761P: Hans Reiser
2762M: reiserfs-dev@namesys.com
2763L: reiserfs-list@namesys.com
2764W: http://www.namesys.com
2765S: Supported
2766
2767ROCKETPORT DRIVER
2768P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769W: http://www.comtrol.com
2770S: Maintained
2771
2772ROSE NETWORK LAYER
2773P: Ralf Baechle
2774M: ralf@linux-mips.org
2775L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002776W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777S: Maintained
2778
2779RISCOM8 DRIVER
2780S: Orphan
2781
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002782S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002783P: Antonino Daplas
2784M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002785L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002786S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002787
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788S390
2789P: Martin Schwidefsky
2790M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002791P: Heiko Carstens
2792M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793M: linux390@de.ibm.com
2794L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002795W: http://www.ibm.com/developerworks/linux/linux390/
2796S: Supported
2797
2798S390 NETWORK DRIVERS
2799P: Frank Pavlic
2800M: fpavlic@de.ibm.com
2801M: linux390@de.ibm.com
2802L: linux-390@vm.marist.edu
2803W: http://www.ibm.com/developerworks/linux/linux390/
2804S: Supported
2805
2806S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002807P: Swen Schillig
2808M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002809M: linux390@de.ibm.com
2810L: linux-390@vm.marist.edu
2811W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812S: Supported
2813
2814SAA7146 VIDEO4LINUX-2 DRIVER
2815P: Michael Hunold
2816M: michael@mihu.de
2817W: http://www.mihu.de/linux/saa7146
2818S: Maintained
2819
2820SBPCD CDROM DRIVER
2821P: Eberhard Moenkeberg
2822M: emoenke@gwdg.de
2823L: linux-kernel@vger.kernel.org
2824S: Maintained
2825
2826SC1200 WDT DRIVER
2827P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002828M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829S: Maintained
2830
2831SCHEDULER
2832P: Ingo Molnar
2833M: mingo@elte.hu
2834P: Robert Love [the preemptible kernel bits]
2835M: rml@tech9.net
2836L: linux-kernel@vger.kernel.org
2837S: Maintained
2838
2839SCSI CDROM DRIVER
2840P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002841M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842L: linux-scsi@vger.kernel.org
2843W: http://www.kernel.dk
2844S: Maintained
2845
2846SCSI SG DRIVER
2847P: Doug Gilbert
2848M: dgilbert@interlog.com
2849L: linux-scsi@vger.kernel.org
2850W: http://www.torque.net/sg
2851S: Maintained
2852
2853SCSI SUBSYSTEM
2854P: James E.J. Bottomley
2855M: James.Bottomley@SteelEye.com
2856L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002857T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858S: Maintained
2859
2860SCSI TAPE DRIVER
2861P: Kai Mäkisara
2862M: Kai.Makisara@kolumbus.fi
2863L: linux-scsi@vger.kernel.org
2864S: Maintained
2865
2866SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002867P: Sridhar Samudrala
2868M: sri@us.ibm.com
2869L: lksctp-developers@lists.sourceforge.net
2870S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
2872SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002873P: Jim Cromie
2874M: jim.cromie@gmail.com
2875S: Odd Fixes
2876
2877SCx200 GPIO DRIVER
2878P: Jim Cromie
2879M: jim.cromie@gmail.com
2880S: Maintained
2881
2882SCx200 HRT CLOCKSOURCE DRIVER
2883P: Jim Cromie
2884M: jim.cromie@gmail.com
2885S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
2887SECURITY CONTACT
2888P: Security Officers
2889M: security@kernel.org
2890S: Supported
2891
2892SELINUX SECURITY MODULE
2893P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002894M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002896M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897L: linux-kernel@vger.kernel.org (kernel issues)
2898L: selinux@tycho.nsa.gov (general discussion)
2899W: http://www.nsa.gov/selinux
2900S: Supported
2901
2902SERIAL ATA (SATA) SUBSYSTEM:
2903P: Jeff Garzik
2904M: jgarzik@pobox.com
2905L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002906T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907S: Supported
2908
2909SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2910P: Pat Gefre
2911M: pfg@sgi.com
2912L: linux-ia64@vger.kernel.org
2913S: Supported
2914
2915SGI VISUAL WORKSTATION 320 AND 540
2916P: Andrey Panin
2917M: pazke@donpac.ru
2918L: linux-visws-devel@lists.sf.net
2919W: http://linux-visws.sf.net
2920S: Maintained for 2.6.
2921
2922SIMTEC EB110ATX (Chalice CATS)
2923P: Ben Dooks
2924P: Vincent Sanders
2925M: support@simtec.co.uk
2926W: http://www.simtec.co.uk/products/EB110ATX/
2927S: Supported
2928
2929SIMTEC EB2410ITX (BAST)
2930P: Ben Dooks
2931P: Vincent Sanders
2932M: support@simtec.co.uk
2933W: http://www.simtec.co.uk/products/EB2410ITX/
2934S: Supported
2935
Francois Romieu92aab3c2005-07-30 13:11:18 +02002936SIS 190 ETHERNET DRIVER
2937P: Francois Romieu
2938M: romieu@fr.zoreil.com
2939L: netdev@vger.kernel.org
2940S: Maintained
2941
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942SIS 5513 IDE CONTROLLER DRIVER
2943P: Lionel Bouton
2944M: Lionel.Bouton@inet6.fr
2945W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2946W: http://gyver.homeip.net/sis5513/index.html
2947S: Maintained
2948
2949SIS 900/7016 FAST ETHERNET DRIVER
2950P: Daniele Venzano
2951M: venza@brownhat.org
2952W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002953L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954S: Maintained
2955
2956SIS FRAMEBUFFER DRIVER
2957P: Thomas Winischhofer
2958M: thomas@winischhofer.net
2959W: http://www.winischhofer.net/linuxsisvga.shtml
2960S: Maintained
2961
2962SIS USB2VGA DRIVER
2963P: Thomas Winischhofer
2964M: thomas@winischhofer.net
2965W: http://www.winischhofer.at/linuxsisusbvga.shtml
2966S: Maintained
2967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968SMC91x ETHERNET DRIVER
2969P: Nicolas Pitre
2970M: nico@cam.org
2971S: Maintained
2972
Daniel Drake8f0f8502006-07-18 22:00:25 +01002973SOFTMAC LAYER (IEEE 802.11)
2974P: Johannes Berg
2975M: johannes@sipsolutions.net
2976P: Joe Jezak
2977M: josejx@gentoo.org
2978P: Daniel Drake
2979M: dsd@gentoo.org
2980W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002981L: netdev@vger.kernel.org
2982S: Maintained
2983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984SOFTWARE RAID (Multiple Disks) SUPPORT
2985P: Ingo Molnar
2986M: mingo@redhat.com
2987P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08002988M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08002990S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
2992SOFTWARE SUSPEND:
2993P: Pavel Machek
2994M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002995L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996S: Maintained
2997
2998SONIC NETWORK DRIVER
2999P: Thomas Bogendoerfer
3000M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003001L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002S: Maintained
3003
3004SONY VAIO CONTROL DEVICE DRIVER
3005P: Stelian Pop
3006M: stelian@popies.net
3007W: http://popies.net/sonypi/
3008S: Maintained
3009
3010SOUND
3011P: Jaroslav Kysela
3012M: perex@suse.cz
3013L: alsa-devel@alsa-project.org
3014S: Maintained
3015
Kumar Gala025c3982006-04-02 16:05:54 -05003016SPI SUBSYSTEM
3017P: David Brownell
3018M: dbrownell@users.sourceforge.net
3019L: spi-devel-general@lists.sourceforge.net
3020S: Maintained
3021
Steven Rostedt855f46a2006-08-05 12:14:50 -07003022STABLE BRANCH:
3023P: Greg Kroah-Hartman
3024M: greg@kroah.com
3025P: Chris Wright
3026M: chrisw@sous-sol.org
3027L: stable@kernel.org
3028S: Maintained
3029
Kylene Hall1c72d462005-05-01 08:59:13 -07003030TPM DEVICE DRIVER
3031P: Kylene Hall
3032M: kjhall@us.ibm.com
3033W: http://tpmdd.sourceforge.net
3034L: tpmdd-devel@lists.sourceforge.net
3035S: Maintained
3036
Mark Gross1a80ba82005-10-30 15:02:55 -08003037Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003038P: Mark Gross
3039M: mark.gross@intel.com
3040S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003041
Chris Zankel48b415c2005-06-23 22:01:07 -07003042TENSILICA XTENSA PORT (xtensa):
3043P: Chris Zankel
3044M: chris@zankel.net
3045S: Maintained
3046
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047UltraSPARC (sparc64):
3048P: David S. Miller
3049M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003051T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052S: Maintained
3053
3054SHARP LH SUPPORT (LH7952X & LH7A40X)
3055P: Marc Singer
3056M: elf@buici.com
3057W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003058L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059S: Maintained
3060
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003061SHPC HOTPLUG DRIVER
3062P: Kristen Carlson Accardi
3063M: kristen.c.accardi@intel.com
3064L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003065S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003066
Pierre Ossmand129bce2006-03-24 03:18:17 -08003067SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3068P: Pierre Ossman
3069M: drzeus-sdhci@drzeus.cx
3070L: sdhci-devel@list.drzeus.cx
3071W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3072S: Maintained
3073
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003074SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3075P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003076M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003077L: netdev@vger.kernel.org
3078S: Maintained
3079
Chris Boot1a87d942006-07-10 04:45:34 -07003080SOEKRIS NET48XX LED SUPPORT
3081P: Chris Boot
3082M: bootc@bootc.net
3083S: Maintained
3084
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085SPARC (sparc32):
3086P: William L. Irwin
3087M: wli@holomorphy.com
3088L: sparclinux@vger.kernel.org
3089S: Maintained
3090
3091SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3092P: Roger Wolff
3093M: R.E.Wolff@BitWizard.nl
3094L: linux-kernel@vger.kernel.org ?
3095S: Supported
3096
Jim Lewis2752e402006-09-29 02:01:19 -07003097SPIDERNET NETWORK DRIVER for CELL
3098P: Jim Lewis
3099M: jim@jklewis.com
3100L: netdev@vger.kernel.org
3101S: Supported
3102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103SRM (Alpha) environment access
3104P: Jan-Benedict Glaw
3105M: jbglaw@lug-owl.de
3106L: linux-kernel@vger.kernel.org
3107S: Maintained
3108
3109STARFIRE/DURALAN NETWORK DRIVER
3110P: Ion Badulescu
3111M: ionut@cs.columbia.edu
3112S: Maintained
3113
3114STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3115W: http://mosquitonet.Stanford.EDU/strip.html
3116S: Unsupported ?
3117
3118STRADIS MPEG-2 DECODER DRIVER
3119P: Nathan Laredo
3120M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121W: http://www.stradis.com/
3122S: Maintained
3123
3124SUPERH (sh)
3125P: Paul Mundt
3126M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003127L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129S: Maintained
3130
3131SUPERH64 (sh64)
3132P: Paul Mundt
3133M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134L: linuxsh-shmedia-dev@lists.sourceforge.net
3135W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136S: Maintained
3137
3138SUN3/3X
3139P: Sam Creasey
3140M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141W: http://sammy.net/sun3/
3142S: Maintained
3143
3144SVGA HANDLING
3145P: Martin Mares
3146M: mj@ucw.cz
3147L: linux-video@atrey.karlin.mff.cuni.cz
3148S: Maintained
3149
3150SYSV FILESYSTEM
3151P: Christoph Hellwig
3152M: hch@infradead.org
3153S: Maintained
3154
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003155TC CLASSIFIER
3156P: Jamal Hadi Salim
3157M: hadi@cyberus.ca
3158L: netdev@vger.kernel.org
3159S: Maintained
3160
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003161TCP LOW PRIORITY MODULE
3162P: Wong Hoi Sing, Edison
3163M: hswong3i@gmail.com
3164P: Hung Hing Lun, Mike
3165M: hlhung3i@gmail.com
3166W: http://tcp-lp-mod.sourceforge.net/
3167S: Maintained
3168
Alex Dubov4020f2d2006-10-04 02:15:37 -07003169TI FLASH MEDIA INTERFACE DRIVER
3170P: Alex Dubov
3171M: oakad@yahoo.com
3172S: Maintained
3173
Michael Buesch844dd052006-06-26 00:24:59 -07003174TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3175P: Deepak Saxena
3176M: dsaxena@plexity.net
3177S: Maintained
3178
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003179TASKSTATS STATISTICS INTERFACE
3180P: Shailabh Nagar
3181M: nagar@watson.ibm.com
3182L: linux-kernel@vger.kernel.org
3183S: Maintained
3184
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003186P: Romain Lievin
3187M: roms@lpg.ticalc.org
3188S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Per Lidene86eaa32006-01-12 16:45:18 +01003190TIPC NETWORK LAYER
3191P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003192M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003193P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003194M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003195P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003196M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003197L: tipc-discussion@lists.sourceforge.net
3198W: http://tipc.sourceforge.net/
3199W: http://tipc.cslab.ericsson.net/
3200T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3201S: Maintained
3202
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203TLAN NETWORK DRIVER
3204P: Samuel Chessman
3205M: chessman@tux.org
3206L: tlan-devel@lists.sourceforge.net
3207W: http://sourceforge.net/projects/tlan/
3208S: Maintained
3209
3210TOKEN-RING NETWORK DRIVER
3211P: Mike Phillips
3212M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003213L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214L: linux-tr@linuxtr.net
3215W: http://www.linuxtr.net
3216S: Maintained
3217
3218TOSHIBA ACPI EXTRAS DRIVER
3219P: John Belmonte
3220M: toshiba_acpi@memebeam.org
3221W: http://memebeam.org/toys/ToshibaAcpiDriver
3222S: Maintained
3223
3224TOSHIBA SMM DRIVER
3225P: Jonathan Buzzard
3226M: jonathan@buzzard.org.uk
3227L: tlinux-users@tce.toshiba-dme.co.jp
3228W: http://www.buzzard.org.uk/toshiba/
3229S: Maintained
3230
3231TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3232P: Muli Ben-Yehuda
3233M: mulix@mulix.org
3234L: linux-kernel@vger.kernel.org
3235S: Maintained
3236
3237TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003238P: Adrian Bunk
3239M: trivial@kernel.org
3240L: linux-kernel@vger.kernel.org
3241W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3242T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3243S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
3245TMS380 TOKEN-RING NETWORK DRIVER
3246P: Adam Fritzler
3247M: mid@auk.cx
3248L: linux-tr@linuxtr.net
3249W: http://www.auk.cx/tms380tr/
3250S: Maintained
3251
3252TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003253P: Valerie Henson
3254M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255L: tulip-users@lists.sourceforge.net
3256W: http://sourceforge.net/projects/tulip/
3257S: Maintained
3258
3259TUN/TAP driver
3260P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003261M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262L: vtun@office.satix.net
3263W: http://vtun.sourceforge.net/tun
3264S: Maintained
3265
3266U14-34F SCSI DRIVER
3267P: Dario Ballabio
3268M: ballabio_dario@emc.com
3269L: linux-scsi@vger.kernel.org
3270S: Maintained
3271
3272UDF FILESYSTEM
3273P: Ben Fennema
3274M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275W: http://linux-udf.sourceforge.net
3276S: Maintained
3277
3278UNIFORM CDROM DRIVER
3279P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003280M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281L: linux-kernel@vger.kernel.org
3282W: http://www.kernel.dk
3283S: Maintained
3284
3285USB ACM DRIVER
3286P: Oliver Neukum
3287M: oliver@neukum.name
3288L: linux-usb-users@lists.sourceforge.net
3289L: linux-usb-devel@lists.sourceforge.net
3290S: Maintained
3291
3292USB BLOCK DRIVER (UB ub)
3293P: Pete Zaitcev
3294M: zaitcev@redhat.com
3295L: linux-kernel@vger.kernel.org
3296L: linux-usb-devel@lists.sourceforge.net
3297S: Supported
3298
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299USB CDC ETHERNET DRIVER
3300P: Greg Kroah-Hartman
3301M: greg@kroah.com
3302L: linux-usb-users@lists.sourceforge.net
3303L: linux-usb-devel@lists.sourceforge.net
3304S: Maintained
3305W: http://www.kroah.com/linux-usb/
3306
3307USB EHCI DRIVER
3308P: David Brownell
3309M: dbrownell@users.sourceforge.net
3310L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003311S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Luca Risolia7ce08c92006-01-11 02:06:59 +00003313USB ET61X[12]51 DRIVER
3314P: Luca Risolia
3315M: luca.risolia@studio.unibo.it
3316L: linux-usb-devel@lists.sourceforge.net
3317L: video4linux-list@redhat.com
3318W: http://www.linux-projects.org
3319S: Maintained
3320
David Brownell69ae9e32006-11-14 02:03:31 -08003321USB GADGET/PERIPHERAL SUBSYSTEM
3322P: David Brownell
3323M: dbrownell@users.sourceforge.net
3324L: linux-usb-devel@lists.sourceforge.net
3325W: http://www.linux-usb.org/gadget
3326S: Maintained
3327
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003329P: Jiri Kosina
3330M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331L: linux-usb-devel@lists.sourceforge.net
3332S: Maintained
3333
3334USB HUB DRIVER
3335P: Johannes Erdfelt
3336M: johannes@erdfelt.com
3337L: linux-usb-users@lists.sourceforge.net
3338L: linux-usb-devel@lists.sourceforge.net
3339S: Maintained
3340
Olav Kongas959eea22005-11-03 17:38:14 +02003341USB ISP116X DRIVER
3342P: Olav Kongas
3343M: ok@artecdesign.ee
3344L: linux-usb-devel@lists.sourceforge.net
3345S: Maintained
3346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347USB KAWASAKI LSI DRIVER
3348P: Oliver Neukum
3349M: oliver@neukum.name
3350L: linux-usb-users@lists.sourceforge.net
3351L: linux-usb-devel@lists.sourceforge.net
3352S: Maintained
3353
3354USB MASS STORAGE DRIVER
3355P: Matthew Dharm
3356M: mdharm-usb@one-eyed-alien.net
3357L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003358L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359S: Maintained
3360W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3361
3362USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003363P: David Brownell
3364M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365L: linux-usb-users@lists.sourceforge.net
3366L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003367S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
Matthias Urlichsba460e42005-07-14 00:33:47 -07003369USB OPTION-CARD DRIVER
3370P: Matthias Urlichs
3371M: smurf@smurf.noris.de
3372L: linux-usb-devel@lists.sourceforge.net
3373S: Maintained
3374
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375USB OV511 DRIVER
3376P: Mark McClelland
3377M: mmcclell@bigfoot.com
3378L: linux-usb-users@lists.sourceforge.net
3379L: linux-usb-devel@lists.sourceforge.net
3380W: http://alpha.dyndns.org/ov511/
3381S: Maintained
3382
3383USB PEGASUS DRIVER
3384P: Petko Manolov
3385M: petkan@users.sourceforge.net
3386L: linux-usb-users@lists.sourceforge.net
3387L: linux-usb-devel@lists.sourceforge.net
3388W: http://pegasus2.sourceforge.net/
3389S: Maintained
3390
3391USB PRINTER DRIVER
3392P: Vojtech Pavlik
3393M: vojtech@suse.cz
3394L: linux-usb-users@lists.sourceforge.net
3395L: linux-usb-devel@lists.sourceforge.net
3396S: Maintained
3397
3398USB RTL8150 DRIVER
3399P: Petko Manolov
3400M: petkan@users.sourceforge.net
3401L: linux-usb-users@lists.sourceforge.net
3402L: linux-usb-devel@lists.sourceforge.net
3403W: http://pegasus2.sourceforge.net/
3404S: Maintained
3405
3406USB SE401 DRIVER
3407P: Jeroen Vreeken
3408M: pe1rxq@amsat.org
3409L: linux-usb-users@lists.sourceforge.net
3410L: linux-usb-devel@lists.sourceforge.net
3411W: http://www.chello.nl/~j.vreeken/se401/
3412S: Maintained
3413
3414USB SERIAL CYBERJACK DRIVER
3415P: Matthias Bruestle and Harald Welte
3416M: support@reiner-sct.com
3417W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3418S: Maintained
3419
3420USB SERIAL DIGI ACCELEPORT DRIVER
3421P: Peter Berger and Al Borchers
3422M: pberger@brimson.com
3423M: alborchers@steinerpoint.com
3424L: linux-usb-users@lists.sourceforge.net
3425L: linux-usb-devel@lists.sourceforge.net
3426S: Maintained
3427
3428USB SERIAL DRIVER
3429P: Greg Kroah-Hartman
3430M: gregkh@suse.de
3431L: linux-usb-users@lists.sourceforge.net
3432L: linux-usb-devel@lists.sourceforge.net
3433S: Supported
3434
3435USB SERIAL BELKIN F5U103 DRIVER
3436P: William Greathouse
3437M: wgreathouse@smva.com
3438L: linux-usb-users@lists.sourceforge.net
3439L: linux-usb-devel@lists.sourceforge.net
3440S: Maintained
3441
3442USB SERIAL CYPRESS M8 DRIVER
3443P: Lonnie Mendez
3444M: dignome@gmail.com
3445L: linux-usb-users@lists.sourceforge.net
3446L: linux-usb-devel@lists.sourceforge.net
3447S: Maintained
3448W: http://geocities.com/i0xox0i
3449W: http://firstlight.net/cvs
3450
3451USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3452L: linux-usb-users@lists.sourceforge.net
3453L: linux-usb-devel@lists.sourceforge.net
3454S: Maintained
3455
3456USB AUERSWALD DRIVER
3457P: Wolfgang Muees
3458M: wolfgang@iksw-muees.de
3459L: linux-usb-users@lists.sourceforge.net
3460L: linux-usb-devel@lists.sourceforge.net
3461S: Maintained
3462
3463USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3464P: Gary Brubaker
3465M: xavyer@ix.netcom.com
3466L: linux-usb-users@lists.sourceforge.net
3467L: linux-usb-devel@lists.sourceforge.net
3468S: Maintained
3469
3470USB SERIAL KEYSPAN DRIVER
3471P: Greg Kroah-Hartman
3472M: greg@kroah.com
3473L: linux-usb-users@lists.sourceforge.net
3474L: linux-usb-devel@lists.sourceforge.net
3475W: http://www.kroah.com/linux/
3476S: Maintained
3477
3478USB SERIAL WHITEHEAT DRIVER
3479P: Stuart MacDonald
3480M: stuartm@connecttech.com
3481L: linux-usb-users@lists.sourceforge.net
3482L: linux-usb-devel@lists.sourceforge.net
3483W: http://www.connecttech.com
3484S: Supported
3485
3486USB SN9C10x DRIVER
3487P: Luca Risolia
3488M: luca.risolia@studio.unibo.it
3489L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003490L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491W: http://www.linux-projects.org
3492S: Maintained
3493
3494USB SUBSYSTEM
3495P: Greg Kroah-Hartman
3496M: gregkh@suse.de
3497L: linux-usb-users@lists.sourceforge.net
3498L: linux-usb-devel@lists.sourceforge.net
3499W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003500T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501S: Supported
3502
3503USB UHCI DRIVER
3504P: Alan Stern
3505M: stern@rowland.harvard.edu
3506L: linux-usb-users@lists.sourceforge.net
3507L: linux-usb-devel@lists.sourceforge.net
3508S: Maintained
3509
David Brownell69ae9e32006-11-14 02:03:31 -08003510USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511P: David Brownell
3512M: dbrownell@users.sourceforge.net
3513L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003514W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515S: Maintained
3516
3517USB W996[87]CF DRIVER
3518P: Luca Risolia
3519M: luca.risolia@studio.unibo.it
3520L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003521L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522W: http://www.linux-projects.org
3523S: Maintained
3524
Luca Risolia60f78052006-02-06 16:29:35 +00003525USB ZC0301 DRIVER
3526P: Luca Risolia
3527M: luca.risolia@studio.unibo.it
3528L: linux-usb-devel@lists.sourceforge.net
3529L: video4linux-list@redhat.com
3530W: http://www.linux-projects.org
3531S: Maintained
3532
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533USB ZD1201 DRIVER
3534P: Jeroen Vreeken
3535M: pe1rxq@amsat.org
3536L: linux-usb-users@lists.sourceforge.net
3537L: linux-usb-devel@lists.sourceforge.net
3538W: http://linux-lc100020.sourceforge.net
3539S: Maintained
3540
3541USER-MODE LINUX
3542P: Jeff Dike
3543M: jdike@karaya.com
3544L: user-mode-linux-devel@lists.sourceforge.net
3545L: user-mode-linux-user@lists.sourceforge.net
3546W: http://user-mode-linux.sourceforge.net
3547S: Maintained
3548
3549FAT/VFAT/MSDOS FILESYSTEM:
3550P: OGAWA Hirofumi
3551M: hirofumi@mail.parknet.co.jp
3552L: linux-kernel@vger.kernel.org
3553S: Maintained
3554
3555VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3556P: Jeff Garzik
3557S: Odd fixes
3558
3559VIA RHINE NETWORK DRIVER
3560P: Roger Luethi
3561M: rl@hellgate.ch
3562S: Maintained
3563
Jean Delvare32c0a522005-09-22 21:47:58 +02003564VIAPRO SMBUS DRIVER
3565P: Jean Delvare
3566M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003567L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003568S: Maintained
3569
Francois Romieu01f20732007-01-26 00:57:17 -08003570VIA VELOCITY NETWORK DRIVER
3571P: Francois Romieu
3572M: romieu@fr.zoreil.com
3573L: netdev@vger.kernel.org
3574S: Maintained
3575
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576UCLINUX (AND M68KNOMMU)
3577P: Greg Ungerer
3578M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003580L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581S: Maintained
3582
3583UCLINUX FOR NEC V850
3584P: Miles Bader
3585M: uclinux-v850@lsi.nec.co.jp
3586W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3587W: http://www.ee.nec.de/uclinux/
3588S: Supported
3589
3590UCLINUX FOR RENESAS H8/300
3591P: Yoshinori Sato
3592M: ysato@users.sourceforge.jp
3593W: http://uclinux-h8.sourceforge.jp/
3594S: Supported
3595
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003596UFS FILESYSTEM
3597P: Evgeniy Dushistov
3598M: dushistov@mail.ru
3599L: linux-kernel@vger.kernel.org
3600S: Maintained
3601
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602USB DIAMOND RIO500 DRIVER
3603P: Cesar Miquel
3604M: miquel@df.uba.ar
3605L: rio500-users@lists.sourceforge.net
3606W: http://rio500.sourceforge.net
3607S: Maintained
3608
3609VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003610P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003611M: mchehab@infradead.org
3612M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003614W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003615T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003616S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617
Juerg Haefligerab413192006-09-24 20:54:04 +02003618VT1211 HARDWARE MONITOR DRIVER
3619P: Juerg Haefliger
3620M: juergh@gmail.com
3621L: lm-sensors@lm-sensors.org
3622S: Maintained
3623
Roger Lucas1de9e372005-11-26 20:20:05 +01003624VT8231 HARDWARE MONITOR DRIVER
3625P: Roger Lucas
3626M: roger@planbit.co.uk
3627L: lm-sensors@lm-sensors.org
3628S: Maintained
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630W1 DALLAS'S 1-WIRE BUS
3631P: Evgeniy Polyakov
3632M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633S: Maintained
3634
Charles Spirakis13927072006-07-05 18:05:15 +02003635W83791D HARDWARE MONITORING DRIVER
3636P: Charles Spirakis
3637M: bezaur@gmail.com
3638L: lm-sensors@lm-sensors.org
3639S: Maintained
3640
Rudolf Marek61db0112006-12-12 18:18:30 +01003641W83793 HARDWARE MONITORING DRIVER
3642P: Rudolf Marek
3643M: r.marek@assembler.cz
3644L: lm-sensors@lm-sensors.org
3645S: Maintained
3646
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647W83L51xD SD/MMC CARD INTERFACE DRIVER
3648P: Pierre Ossman
3649M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003650L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651W: http://projects.drzeus.cx/wbsd
3652S: Maintained
3653
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003654WATCHDOG DEVICE DRIVERS
3655P: Wim Van Sebroeck
3656M: wim@iguana.be
3657T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3658S: Maintained
3659
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3661P: Jean Tourrilhes
3662M: jt@hpl.hp.com
3663W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3664S: Maintained
3665
3666WD7000 SCSI DRIVER
3667P: Miroslav Zagorac
3668M: zaga@fly.cc.fer.hr
3669L: linux-scsi@vger.kernel.org
3670S: Maintained
3671
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003672WISTRON LAPTOP BUTTON DRIVER
3673P: Miloslav Trmac
3674M: mitr@volny.cz
3675S: Maintained
3676
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677WL3501 WIRELESS PCMCIA CARD DRIVER
3678P: Arnaldo Carvalho de Melo
3679M: acme@conectiva.com.br
3680W: http://advogato.org/person/acme
3681S: Maintained
3682
3683X.25 NETWORK LAYER
3684P: Henner Eisen
3685M: eis@baty.hanse.de
3686L: linux-x25@vger.kernel.org
3687S: Maintained
3688
3689XFS FILESYSTEM
3690P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003691P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003693L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003695T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696S: Supported
3697
Peter Korsgaard238b8722006-12-06 20:35:17 -08003698XILINX UARTLITE SERIAL DRIVER
3699P: Peter Korsgaard
3700M: jacmet@sunsite.dk
3701L: linux-serial@vger.kernel.org
3702S: Maintained
3703
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704X86 3-LEVEL PAGING (PAE) SUPPORT
3705P: Ingo Molnar
3706M: mingo@redhat.com
3707S: Maintained
3708
3709X86-64 port
3710P: Andi Kleen
3711M: ak@suse.de
3712L: discuss@x86-64.org
3713W: http://www.x86-64.org
3714S: Maintained
3715
3716YAM DRIVER FOR AX.25
3717P: Jean-Paul Roubelat
3718M: jpr@f6fbb.org
3719L: linux-hams@vger.kernel.org
3720S: Maintained
3721
Henkaf64a5e2005-10-12 15:02:56 +02003722YEALINK PHONE DRIVER
3723P: Henk Vergonet
3724M: Henk.Vergonet@gmail.com
3725L: usbb2k-api-dev@nongnu.org
3726S: Maintained
3727
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728Z8530 DRIVER FOR AX.25
3729P: Joerg Reuter
3730M: jreuter@yaina.de
3731W: http://yaina.de/jreuter/
3732W: http://www.qsl.net/dl1bke/
3733L: linux-hams@vger.kernel.org
3734S: Maintained
3735
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003736ZD1211RW WIRELESS DRIVER
3737P: Daniel Drake
3738M: dsd@gentoo.org
3739P: Ulrich Kunitz
3740M: kune@deine-taler.de
3741W: http://zd1211.ath.cx/wiki/DriverRewrite
3742L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3743S: Maintained
3744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745ZF MACHZ WATCHDOG
3746P: Fernando Fuganti
3747M: fuganti@netbank.com.br
3748W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3749S: Maintained
3750
3751ZR36067 VIDEO FOR LINUX DRIVER
3752P: Ronald Bultje
3753M: rbultje@ronald.bitfreak.net
3754L: mjpeg-users@lists.sourceforge.net
3755W: http://mjpeg.sourceforge.net/driver-zoran/
3756S: Maintained
3757
3758ZR36120 VIDEO FOR LINUX DRIVER
3759P: Pauline Middelink
3760M: middelin@polyware.nl
3761W: http://www.polyware.nl/~middelin/En/hobbies.html
3762W: http://www.polyware.nl/~middelin/hobbies.html
3763S: Maintained
3764
3765THE REST
3766P: Linus Torvalds
3767S: Buried alive in reporters