blob: 0d54cc45ea3e44de6c8ffa1bacbe3f210a3a6936 [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 Brown6968e502005-12-30 00:32:49 -0500210L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800212T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213S: Maintained
214
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700215ACPI PCI HOTPLUG DRIVER
216P: Kristen Carlson Accardi
217M: kristen.c.accardi@intel.com
218L: pcihpd-discuss@lists.sourceforge.net
219S: Maintained
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221AD1816 SOUND DRIVER
222P: Thorsten Knabe
223M: Thorsten Knabe <linux@thorsten-knabe.de>
224W: http://linux.thorsten-knabe.de
225S: Maintained
226
Kyle McMartin6958ae32005-10-21 23:11:27 -0400227AD1889 SOUND DRIVER
228P: Kyle McMartin
229M: kyle@parisc-linux.org
230P: Thibaut Varene
231M: T-Bone@parisc-linux.org
232W: http://wiki.parisc-linux.org/AD1889
233L: parisc-linux@lists.parisc-linux.org
234S: Maintained
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ADM1025 HARDWARE MONITOR DRIVER
237P: Jean Delvare
238M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200239L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240S: Maintained
241
242ADT746X FAN DRIVER
243P: Colin Leroy
244M: colin@colino.net
245S: Maintained
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247AEDSP16 DRIVER
248P: Riccardo Facchetti
249M: fizban@tin.it
250S: Maintained
251
252AFFS FILE SYSTEM
253P: Roman Zippel
254M: zippel@linux-m68k.org
255S: Maintained
256
257AGPGART DRIVER
258P: Dave Jones
259M: davej@codemonkey.org.uk
260W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800261T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262S: Maintained
263
264AHA152X SCSI DRIVER
265P: Juergen E. Fischer
266M: Juergen Fischer <fischer@norbit.de>
267L: linux-scsi@vger.kernel.org
268S: Maintained
269
270ALCATEL SPEEDTOUCH USB DRIVER
271P: Duncan Sands
272M: duncan.sands@free.fr
273L: linux-usb-users@lists.sourceforge.net
274L: linux-usb-devel@lists.sourceforge.net
275W: http://www.linux-usb.org/SpeedTouch/
276S: Maintained
277
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000278ALI1563 I2C DRIVER
279P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100280M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200281L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000282S: Maintained
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284ALPHA PORT
285P: Richard Henderson
286M: rth@twiddle.net
287S: Odd Fixes for 2.4; Maintained for 2.6.
288P: Ivan Kokshaysky
289M: ink@jurassic.park.msu.ru
290S: Maintained for 2.4; PCI support for 2.6.
291
Jordan Crousef90b8112006-01-06 00:12:14 -0800292AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100293P: Jordan Crouse
294M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800295L: info-linux@geode.amd.com
296W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
297S: Supported
298
Stelian Pop284f42b2006-12-12 18:18:31 +0100299AMS (Apple Motion Sensor) DRIVER
300P: Stelian Pop
301M: stelian@popies.net
302P: Michael Hanselmann
303M: linux-kernel@hansmi.ch
304S: Supported
305
Tom Tuckerf94b5332006-09-22 15:22:48 -0700306AMSO1100 RNIC DRIVER
307P: Tom Tucker
308M: tom@opengridcomputing.com
309P: Steve Wise
310M: swise@opengridcomputing.com
311L: openib-general@openib.org
312S: Maintained
313
Johannes Berg42269062006-07-25 16:15:50 +0200314AOA (Apple Onboard Audio) ALSA DRIVER
315P: Johannes Berg
316M: johannes@sipsolutions.net
317L: linuxppc-dev@ozlabs.org
318L: alsa-devel@alsa-project.org
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321APM DRIVER
322P: Stephen Rothwell
323M: sfr@canb.auug.org.au
324L: linux-laptop@vger.kernel.org
325W: http://www.canb.auug.org.au/~sfr/
326S: Supported
327
328APPLETALK NETWORK LAYER
329P: Arnaldo Carvalho de Melo
330M: acme@conectiva.com.br
331S: Maintained
332
Jaya Kumar1154ea72005-06-21 17:17:04 -0700333ARC FRAMEBUFFER DRIVER
334P: Jaya Kumar
335M: jayalk@intworks.biz
336S: Maintained
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338ARM26 ARCHITECTURE
339P: Ian Molton
340M: spyro@f2s.com
341S: Maintained
342
343ARM26/ARCHIMEDES
344P: Ian Molton
345M: spyro@f2s.com
346S: Maintained
347
348ARM26/A5000
349P: John Appleby
350M: john@dnsworld.co.uk
351S: Maintained
352
353ARM MFM AND FLOPPY DRIVERS
354P: Ian Molton
355M: spyro@f2s.com
356S: Maintained
357
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800358ARM/ADI ROADRUNNER MACHINE SUPPORT
359P: Lennert Buytenhek
360M: kernel@wantstofly.org
361L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
362S: Maintained
363
364ARM/ADS SPHERE MACHINE SUPPORT
365P: Lennert Buytenhek
366M: kernel@wantstofly.org
367L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
368S: Maintained
369
370ARM/AJECO 1ARM MACHINE SUPPORT
371P: Lennert Buytenhek
372M: kernel@wantstofly.org
373L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
374S: Maintained
375
Andrew Victord4a89c72006-12-04 13:56:21 +0100376ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
377P: Andrew Victor
378M: andrew@sanpeople.com
379L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
380W: http://maxim.org.za/at91_26.html
381S: Maintained
382
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800383ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
384P: Lennert Buytenhek
385M: kernel@wantstofly.org
386L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
387S: Maintained
388
389ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
390P: Lennert Buytenhek
391M: kernel@wantstofly.org
392L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
393S: Maintained
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395ARM/CORGI MACHINE SUPPORT
396P: Richard Purdie
397M: rpurdie@rpsys.net
398S: Maintained
399
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800400ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
401P: Lennert Buytenhek
402M: kernel@wantstofly.org
403L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
404S: Maintained
405
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100406ARM/HP JORNADA 7XX MACHINE SUPPORT
407P: Kristoffer Ericson
408M: kristoffer_e1@hotmail.com
409W: www.jlime.com
410S: Maintained
411
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800412ARM/INTEL IOP32X ARM ARCHITECTURE
413P: Lennert Buytenhek
414M: kernel@wantstofly.org
415L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
416S: Maintained
417
418ARM/INTEL IOP13XX ARM ARCHITECTURE
419P: Lennert Buytenhek
420M: kernel@wantstofly.org
421L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
422S: Maintained
423
424ARM/INTEL IQ81342EX MACHINE SUPPORT
425P: Lennert Buytenhek
426M: kernel@wantstofly.org
427L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
428S: Maintained
429
430ARM/INTEL IXP2000 ARM ARCHITECTURE
431P: Lennert Buytenhek
432M: kernel@wantstofly.org
433L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
434S: Maintained
435
436ARM/INTEL IXDP2850 MACHINE SUPPORT
437P: Lennert Buytenhek
438M: kernel@wantstofly.org
439L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
440S: Maintained
441
442ARM/INTEL IXP23XX ARM ARCHITECTURE
443P: Lennert Buytenhek
444M: kernel@wantstofly.org
445L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
446S: Maintained
447
448ARM/INTEL XSC3 (MANZANO) ARM CORE
449P: Lennert Buytenhek
450M: kernel@wantstofly.org
451L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
452S: Maintained
453
454ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
455P: Lennert Buytenhek
456M: kernel@wantstofly.org
457L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
458S: Maintained
459
460ARM/LOGICPD PXA270 MACHINE SUPPORT
461P: Lennert Buytenhek
462M: kernel@wantstofly.org
463L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
464S: Maintained
465
Dirk Opfer8459c152005-11-06 14:27:52 +0000466ARM/TOSA MACHINE SUPPORT
467P: Dirk Opfer
468M: dirk@opfer-online.de
469S: Maintained
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471ARM/PLEB SUPPORT
472P: Peter Chubb
473M: pleb@gelato.unsw.edu.au
474W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
475S: Maintained
476
477ARM/PT DIGITAL BOARD PORT
478P: Stefan Eletzhofer
479M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481W: http://www.arm.linux.org.uk/
482S: Maintained
483
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800484ARM/RADISYS ENP2611 MACHINE SUPPORT
485P: Lennert Buytenhek
486M: kernel@wantstofly.org
487L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
488S: Maintained
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490ARM/SHARK MACHINE SUPPORT
491P: Alexander Schulz
492M: alex@shark-linux.de
493W: http://www.shark-linux.de/shark.html
494S: Maintained
495
496ARM/STRONGARM110 PORT
497P: Russell King
498M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700499L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500W: http://www.arm.linux.org.uk/
501S: Maintained
502
503ARM/S3C2410 ARM ARCHITECTURE
504P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800505M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700506L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507W: http://www.fluff.org/ben/linux/
508S: Maintained
509
510ARM/S3C2440 ARM ARCHITECTURE
511P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800512M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700513L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514W: http://www.fluff.org/ben/linux/
515S: Maintained
516
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800517ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
518P: Lennert Buytenhek
519M: kernel@wantstofly.org
520L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
521S: Maintained
522
523ARM/THECUS N2100 MACHINE SUPPORT
524P: Lennert Buytenhek
525M: kernel@wantstofly.org
526L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
527S: Maintained
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529ARPD SUPPORT
530P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700531L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532S: Maintained
533
534ASUS ACPI EXTRAS DRIVER
535P: Karol Kozimor
536M: sziwan@users.sourceforge.net
537P: Julien Lerouge
538M: julien.lerouge@free.fr
539L: acpi4asus-user@lists.sourceforge.net
540W: http://sourceforge.net/projects/acpi4asus
541W: http://julien.lerouge.free.fr
542S: Maintained
543
544ATA OVER ETHERNET DRIVER
545P: Ed L. Cashin
546M: ecashin@coraid.com
547W: http://www.coraid.com/support/linux
548S: Supported
549
550ATM
551P: Chas Williams
552M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700553L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554W: http://linux-atm.sourceforge.net
555S: Maintained
556
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100557ATMEL MACB ETHERNET DRIVER
558P: Atmel AVR32 Support Team
559M: avr32@atmel.com
560P: Haavard Skinnemoen
561M: hskinnemoen@atmel.com
562S: Supported
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564ATMEL WIRELESS DRIVER
565P: Simon Kelley
566M: simon@thekelleys.org.uk
567W: http://www.thekelleys.org.uk/atmel
568W: http://atmelwlandriver.sourceforge.net/
569S: Maintained
570
Chris Wrighta92b7b82005-07-07 18:12:23 -0700571AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100572P: David Woodhouse
573M: dwmw2@infradead.org
574L: linux-audit@redhat.com
575W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800576T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700577S: Maintained
578
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700579AVR32 ARCHITECTURE
580P: Atmel AVR32 Support Team
581M: avr32@atmel.com
582P: Haavard Skinnemoen
583M: hskinnemoen@atmel.com
584W: http://www.atmel.com/products/AVR32/
585W: http://avr32linux.org/
586W: http://avrfreaks.net/
587S: Supported
588
589AVR32/AT32AP MACHINE SUPPORT
590P: Atmel AVR32 Support Team
591M: avr32@atmel.com
592P: Haavard Skinnemoen
593M: hskinnemoen@atmel.com
594S: Supported
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596AX.25 NETWORK LAYER
597P: Ralf Baechle
598M: ralf@linux-mips.org
599L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200600W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601S: Maintained
602
603BAYCOM/HDLCDRV DRIVERS FOR AX.25
604P: Thomas Sailer
605M: t.sailer@alumni.ethz.ch
606L: linux-hams@vger.kernel.org
607W: http://www.baycom.org/~tom/ham/ham.html
608S: Maintained
609
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200610BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
611P: Larry Finger
612M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200613P: Stefano Brivio
614M: st3@riseup.net
615W: http://bcm43xx.berlios.de/
616S: Maintained
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618BEFS FILE SYSTEM
619P: Sergey S. Kostyliov
620M: rathamahata@php4.ru
621L: linux-kernel@vger.kernel.org
622S: Maintained
623
624BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
625P: Kenji Hollis
626W: http://ftp.bitgate.com/pcwd/
627S: Maintained
628
629BFS FILE SYSTEM
630P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800631M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632L: linux-kernel@vger.kernel.org
633S: Maintained
634
635BLOCK LAYER
636P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200637M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800639T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640S: Maintained
641
642BLUETOOTH SUBSYSTEM
643P: Marcel Holtmann
644M: marcel@holtmann.org
645P: Maxim Krasnyansky
646M: maxk@qualcomm.com
647L: bluez-devel@lists.sf.net
648W: http://bluez.sf.net
649W: http://www.bluez.org
650W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800651T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652S: Maintained
653
654BLUETOOTH RFCOMM LAYER
655P: Marcel Holtmann
656M: marcel@holtmann.org
657P: Maxim Krasnyansky
658M: maxk@qualcomm.com
659S: Maintained
660
661BLUETOOTH BNEP LAYER
662P: Marcel Holtmann
663M: marcel@holtmann.org
664P: Maxim Krasnyansky
665M: maxk@qualcomm.com
666S: Maintained
667
668BLUETOOTH CMTP LAYER
669P: Marcel Holtmann
670M: marcel@holtmann.org
671S: Maintained
672
673BLUETOOTH HIDP LAYER
674P: Marcel Holtmann
675M: marcel@holtmann.org
676S: Maintained
677
678BLUETOOTH HCI UART DRIVER
679P: Marcel Holtmann
680M: marcel@holtmann.org
681P: Maxim Krasnyansky
682M: maxk@qualcomm.com
683S: Maintained
684
685BLUETOOTH HCI USB DRIVER
686P: Marcel Holtmann
687M: marcel@holtmann.org
688P: Maxim Krasnyansky
689M: maxk@qualcomm.com
690S: Maintained
691
692BLUETOOTH HCI BCM203X DRIVER
693P: Marcel Holtmann
694M: marcel@holtmann.org
695S: Maintained
696
697BLUETOOTH HCI BPA10X DRIVER
698P: Marcel Holtmann
699M: marcel@holtmann.org
700S: Maintained
701
702BLUETOOTH HCI BFUSB DRIVER
703P: Marcel Holtmann
704M: marcel@holtmann.org
705S: Maintained
706
707BLUETOOTH HCI DTL1 DRIVER
708P: Marcel Holtmann
709M: marcel@holtmann.org
710S: Maintained
711
712BLUETOOTH HCI BLUECARD DRIVER
713P: Marcel Holtmann
714M: marcel@holtmann.org
715S: Maintained
716
717BLUETOOTH HCI BT3C DRIVER
718P: Marcel Holtmann
719M: marcel@holtmann.org
720S: Maintained
721
722BLUETOOTH HCI BTUART DRIVER
723P: Marcel Holtmann
724M: marcel@holtmann.org
725S: Maintained
726
727BLUETOOTH HCI VHCI DRIVER
728P: Maxim Krasnyansky
729M: maxk@qualcomm.com
730S: Maintained
731
732BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100733P: Chad Tindel
734M: ctindel@users.sourceforge.net
735P: Jay Vosburgh
736M: fubar@us.ibm.com
737L: bonding-devel@lists.sourceforge.net
738W: http://sourceforge.net/projects/bonding/
739S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000741BROADBAND PROCESSOR ARCHITECTURE
742P: Arnd Bergmann
743M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100744L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400745W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000746S: Supported
747
Gary Zambrano39105892006-06-22 17:26:20 -0700748BROADCOM B44 10/100 ETHERNET DRIVER
749P: Gary Zambrano
750M: zambrano@broadcom.com
751L: netdev@vger.kernel.org
752S: Supported
753
Michael Chan948c51e2006-06-04 02:51:39 -0700754BROADCOM BNX2 GIGABIT ETHERNET DRIVER
755P: Michael Chan
756M: mchan@broadcom.com
757L: netdev@vger.kernel.org
758S: Supported
759
760BROADCOM TG3 GIGABIT ETHERNET DRIVER
761P: Michael Chan
762M: mchan@broadcom.com
763L: netdev@vger.kernel.org
764S: Supported
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700767P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200768M: mchehab@infradead.org
769M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700771W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200772T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700773S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200775CALGARY x86-64 IOMMU
776P: Muli Ben-Yehuda
777M: muli@il.ibm.com
778P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200779M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200780L: linux-kernel@vger.kernel.org
781L: discuss@x86-64.org
782S: Maintained
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784COMMON INTERNET FILE SYSTEM (CIFS)
785P: Steve French
786M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100787L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788L: samba-technical@lists.samba.org
789W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800790T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791S: Supported
792
Joel Becker7063fbf2005-12-15 14:29:43 -0800793CONFIGFS
794P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800795M: joel.becker@oracle.com
796L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800797S: Supported
798
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800799CIRRUS LOGIC EP93XX ETHERNET DRIVER
800P: Lennert Buytenhek
801M: kernel@wantstofly.org
802L: netdev@vger.kernel.org
803S: Maintained
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805CIRRUS LOGIC GENERIC FBDEV DRIVER
806P: Jeff Garzik
807M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800808L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809S: Odd Fixes
810
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800811CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
812P: Lennert Buytenhek
813M: kernel@wantstofly.org
814L: linux-usb-devel@lists.sourceforge.net
815S: Maintained
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
818P: Cirrus Logic Corporation (kernel 2.2 driver)
819M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
820P: Nils Faerber (port to kernel 2.4)
821M: Nils Faerber <nils@kernelconcepts.de>
822S: Maintained
823
824CODA FILE SYSTEM
825P: Jan Harkes
826M: jaharkes@cs.cmu.edu
827M: coda@cs.cmu.edu
828L: codalist@coda.cs.cmu.edu
829W: http://www.coda.cs.cmu.edu/
830S: Maintained
831
832COMPACTPCI HOTPLUG CORE
833P: Scott Murray
834M: scottm@somanetworks.com
835M: scott@spiteful.org
836L: pcihpd-discuss@lists.sourceforge.net
837S: Supported
838
839COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
840P: Scott Murray
841M: scottm@somanetworks.com
842M: scott@spiteful.org
843L: pcihpd-discuss@lists.sourceforge.net
844S: Supported
845
846COMPACTPCI HOTPLUG GENERIC DRIVER
847P: Scott Murray
848M: scottm@somanetworks.com
849M: scott@spiteful.org
850L: pcihpd-discuss@lists.sourceforge.net
851S: Supported
852
853COMPUTONE INTELLIPORT MULTIPORT CARD
854P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700855M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700857S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859COSA/SRP SYNC SERIAL DRIVER
860P: Jan "Yenya" Kasprzak
861M: kas@fi.muni.cz
862W: http://www.fi.muni.cz/~kas/cosa/
863S: Maintained
864
865CPU FREQUENCY DRIVERS
866P: Dave Jones
867M: davej@codemonkey.org.uk
868L: cpufreq@lists.linux.org.uk
869W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500870T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871S: Maintained
872
873CPUID/MSR DRIVER
874P: H. Peter Anvin
875M: hpa@zytor.com
876S: Maintained
877
Paul Jacksoned90fb42005-09-27 21:45:37 -0700878CPUSETS
879P: Paul Jackson
880P: Simon Derr
881M: pj@sgi.com
882M: simon.derr@bull.net
883L: linux-kernel@vger.kernel.org
884W: http://www.bullopensource.org/cpuset/
885S: Supported
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100888W: http://sourceforge.net/projects/cramfs/
889S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891CRIS PORT
892P: Mikael Starvik
893M: starvik@axis.com
894L: dev-etrax@axis.com
895W: http://developer.axis.com
896S: Maintained
897
898CRYPTO API
899P: Herbert Xu
900M: herbert@gondor.apana.org.au
901P: David S. Miller
902M: davem@davemloft.net
903L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800904T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905S: Maintained
906
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100907CS5535 Audio ALSA driver
908P: Jaya Kumar
909M: jayakumar.alsa@gmail.com
910S: Maintained
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912CYBERPRO FB DRIVER
913P: Russell King
914M: rmk@arm.linux.org.uk
915W: http://www.arm.linux.org.uk/
916S: Maintained
917
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700918CYBLAFB FRAMEBUFFER DRIVER
919P: Knut Petersen
920M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800921L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700922S: Maintained
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924CYCLADES 2X SYNC CARD DRIVER
925P: Arnaldo Carvalho de Melo
926M: acme@conectiva.com.br
927W: http://advogato.org/person/acme
928L: cycsyn-devel@bazar.conectiva.com.br
929S: Maintained
930
931CYCLADES ASYNC MUX DRIVER
932M: async@cyclades.com
933W: http://www.cyclades.com/
934S: Supported
935
936CYCLADES PC300 DRIVER
937M: pc300@cyclades.com
938W: http://www.cyclades.com/
939S: Supported
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941DAMA SLAVE for AX.25
942P: Joerg Reuter
943M: jreuter@yaina.de
944W: http://yaina.de/jreuter/
945W: http://www.qsl.net/dl1bke/
946L: linux-hams@vger.kernel.org
947S: Maintained
948
949DC395x SCSI driver
950P: Oliver Neukum
951M: oliver@neukum.name
952P: Ali Akcaagac
953M: aliakc@web.de
954P: Jamie Lenehan
955M: lenehan@twibble.org
956W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700957L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958L: http://lists.twibble.org/mailman/listinfo/dc395x/
959S: Maintained
960
961DC390/AM53C974 SCSI driver
962P: Kurt Garloff
963M: garloff@suse.de
964W: http://www.garloff.de/kurt/linux/dc390/
965P: Guennadi Liakhovetski
966M: g.liakhovetski@gmx.de
967S: Maintained
968
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700969DCCP PROTOCOL
970P: Arnaldo Carvalho de Melo
971M: acme@mandriva.com
972L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800973W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700974S: Maintained
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976DECnet NETWORK LAYER
977P: Patrick Caulfield
978M: patrick@tykepenguin.com
979W: http://linux-decnet.sourceforge.net
980L: linux-decnet-user@lists.sourceforge.net
981S: Maintained
982
983DEFXX FDDI NETWORK DRIVER
984P: Maciej W. Rozycki
985M: macro@linux-mips.org
986S: Maintained
987
988DELL LAPTOP SMM DRIVER
989P: Massimo Dal Zotto
990M: dz@debian.org
991W: http://www.debian.org/~dz/i8k/
992S: Maintained
993
Doug Warzecha90563ec2005-09-06 15:17:15 -0700994DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
995P: Doug Warzecha
996M: Douglas_Warzecha@dell.com
997S: Maintained
998
Pavel Machek5ddb88c2006-09-29 02:01:29 -0700999DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000P: Alasdair Kergon
1001L: dm-devel@redhat.com
1002W: http://sources.redhat.com/dm
1003S: Maintained
1004
1005DEVICE NUMBER REGISTRY
1006P: Torben Mathiasen
1007M: device@lanana.org
1008W: http://lanana.org/docs/device-list/index.html
1009L: linux-kernel@vger.kernel.org
1010S: Maintained
1011
1012DEVICE FILESYSTEM
1013S: Obsolete
1014
1015DIGI INTL. EPCA DRIVER
1016P: Digi International, Inc
1017M: Eng.Linux@digi.com
1018L: Eng.Linux@digi.com
1019W: http://www.digi.com
1020S: Orphaned
1021
1022DIGI RIGHTSWITCH NETWORK DRIVER
1023P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001024L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025W: http://www.digi.com
1026S: Orphaned
1027
1028DIRECTORY NOTIFICATION
1029P: Stephen Rothwell
1030M: sfr@canb.auug.org.au
1031L: linux-kernel@vger.kernel.org
1032S: Supported
1033
1034DISK GEOMETRY AND PARTITION HANDLING
1035P: Andries Brouwer
1036M: aeb@cwi.nl
1037W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1038W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1039W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1040S: Maintained
1041
1042DISKQUOTA:
1043P: Jan Kara
1044M: jack@suse.cz
1045L: linux-kernel@vger.kernel.org
1046S: Maintained
1047
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001048DISTRIBUTED LOCK MANAGER
1049P: Patrick Caulfield
1050M: pcaulfie@redhat.com
1051P: David Teigland
1052M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001053L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001054W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001055T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1056T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001057S: Supported
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1060P: Tobias Ringstrom
1061M: tori@unhappy.mine.nu
1062L: linux-kernel@vger.kernel.org
1063S: Maintained
1064
Martin Waitzba483d52005-06-17 13:20:59 -07001065DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001066P: Randy Dunlap
1067M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001068S: Maintained
1069
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001070DOCKING STATION DRIVER
1071P: Kristen Carlson Accardi
1072M: kristen.c.accardi@intel.com
1073L: linux-acpi@vger.kernel.org
1074S: Maintained
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076DOUBLETALK DRIVER
1077P: James R. Van Zandt
1078M: jrv@vanzandt.mv.com
1079L: blinux-list@redhat.com
1080S: Maintained
1081
1082DRIVER CORE, KOBJECTS, AND SYSFS
1083P: Greg Kroah-Hartman
1084M: gregkh@suse.de
1085L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001086T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087S: Supported
1088
1089DRM DRIVERS
1090P: David Airlie
1091M: airlied@linux.ie
1092L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001093T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094S: Maintained
1095
1096DSCC4 DRIVER
1097P: François Romieu
1098M: romieu@cogenit.fr
1099M: romieu@ensta.fr
1100S: Maintained
1101
1102DVB SUBSYSTEM AND DRIVERS
1103P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001104M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001106W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001107T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001108S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110EATA-DMA SCSI DRIVER
1111P: Michael Neuffer
1112L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1113S: Maintained
1114
1115EATA ISA/EISA/PCI SCSI DRIVER
1116P: Dario Ballabio
1117M: ballabio_dario@emc.com
1118L: linux-scsi@vger.kernel.org
1119S: Maintained
1120
1121EATA-PIO SCSI DRIVER
1122P: Michael Neuffer
1123M: mike@i-Connect.Net
1124L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1125S: Maintained
1126
1127EBTABLES
1128P: Bart De Schuymer
1129M: bart.de.schuymer@pandora.be
1130L: ebtables-user@lists.sourceforge.net
1131L: ebtables-devel@lists.sourceforge.net
1132W: http://ebtables.sourceforge.net/
1133S: Maintained
1134
Michael Halcrow237fead2006-10-04 02:16:22 -07001135ECRYPT FILE SYSTEM
1136P: Mike Halcrow, Phillip Hellewell
1137M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1138L: ecryptfs-devel@lists.sourceforge.net
1139W: http://ecryptfs.sourceforge.net/
1140S: Supported
1141
Alan Coxda9bb1d2006-01-18 17:44:13 -08001142EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001143P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001144M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001145L: bluesmoke-devel@lists.sourceforge.net
1146W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001147S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001148
1149EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001150P: Mark Gross
1151M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001152L: bluesmoke-devel@lists.sourceforge.net
1153W: bluesmoke.sourceforge.net
1154S: Maintained
1155
1156EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001157P: Doug Thompson
1158M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001159L: bluesmoke-devel@lists.sourceforge.net
1160W: bluesmoke.sourceforge.net
1161S: Maintained
1162
1163EDAC-R82600
1164P: Tim Small
1165M: tim@buttersideup.com
1166L: bluesmoke-devel@lists.sourceforge.net
1167W: bluesmoke.sourceforge.net
1168S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170EEPRO100 NETWORK DRIVER
1171P: Andrey V. Savochkin
1172M: saw@saw.sw.com.sg
1173S: Maintained
1174
Josh Triplett0bee8d22006-07-30 03:03:58 -07001175EFS FILESYSTEM
1176W: http://aeschi.ch.eu.org/efs/
1177S: Orphan
1178
Heiko J Schickfab97222006-09-22 15:22:22 -07001179EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1180P: Hoang-Nam Nguyen
1181M: hnguyen@de.ibm.com
1182P: Christoph Raisch
1183M: raisch@de.ibm.com
1184L: openib-general@openib.org
1185S: Supported
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187EMU10K1 SOUND DRIVER
1188P: James Courtier-Dutton
1189M: James@superbug.demon.co.uk
1190L: emu10k1-devel@lists.sourceforge.net
1191W: http://sourceforge.net/projects/emu10k1/
1192S: Maintained
1193
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001194EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001195P: James Smart
1196M: james.smart@emulex.com
1197L: linux-scsi@vger.kernel.org
1198W: http://sourceforge.net/projects/lpfcxxxx
1199S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201EPSON 1355 FRAMEBUFFER DRIVER
1202P: Christopher Hoover
1203M: ch@murgatroid.com, ch@hpl.hp.com
1204S: Maintained
1205
1206ETHEREXPRESS-16 NETWORK DRIVER
1207P: Philip Blundell
1208M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001209L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210S: Maintained
1211
1212ETHERNET BRIDGE
1213P: Stephen Hemminger
1214M: shemminger@osdl.org
1215L: bridge@osdl.org
1216W: http://bridge.sourceforge.net/
1217S: Maintained
1218
1219ETHERTEAM 16I DRIVER
1220P: Mika Kuoppala
1221M: miku@iki.fi
1222S: Maintained
1223
1224EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001225L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226S: Maintained
1227
1228EXT3 FILE SYSTEM
1229P: Stephen Tweedie, Andrew Morton
1230M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001231L: linux-ext4@vger.kernel.org
1232S: Maintained
1233
1234EXT4 FILE SYSTEM
1235P: Stephen Tweedie, Andrew Morton
1236M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1237L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238S: Maintained
1239
Jean Delvaree53004e2006-01-09 23:26:14 +01001240F71805F HARDWARE MONITORING DRIVER
1241P: Jean Delvare
1242M: khali@linux-fr.org
1243L: lm-sensors@lm-sensors.org
1244S: Maintained
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246FARSYNC SYNCHRONOUS DRIVER
1247P: Kevin Curtis
1248M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249W: http://www.farsite.co.uk/
1250S: Supported
1251
1252FRAMEBUFFER LAYER
1253P: Antonino Daplas
1254M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001255L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256W: http://linux-fbdev.sourceforge.net/
1257S: Maintained
1258
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001259FREESCALE SOC FS_ENET DRIVER
1260P: Pantelis Antoniou
1261M: pantelis.antoniou@gmail.com
1262P: Vitaly Bordug
1263M: vbordug@ru.mvista.com
1264L: linuxppc-embedded@ozlabs.org
1265L: netdev@vger.kernel.org
1266S: Maintained
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268FILE LOCKING (flock() and fcntl()/lockf())
1269P: Matthew Wilcox
1270M: matthew@wil.cx
1271L: linux-fsdevel@vger.kernel.org
1272S: Maintained
1273
1274FILESYSTEMS (VFS and infrastructure)
1275P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001276M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277S: Maintained
1278
1279FIRMWARE LOADER (request_firmware)
1280L: linux-kernel@vger.kernel.org
1281S: Orphan
1282
1283FPU EMULATOR
1284P: Bill Metzenthen
1285M: billm@suburbia.net
1286W: http://suburbia.net/~billm/floating-point/emulator/
1287S: Maintained
1288
1289FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1290P: Mike McLagan
1291M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001292L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293S: Maintained
1294
1295FREEVXFS FILESYSTEM
1296P: Christoph Hellwig
1297M: hch@infradead.org
1298W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1299S: Maintained
1300
1301FUJITSU FR-V PORT
1302P: David Howells
1303M: dhowells@redhat.com
1304S: Maintained
1305
Miklos Szeredi04578f12005-09-09 13:10:22 -07001306FUSE: FILESYSTEM IN USERSPACE
1307P: Miklos Szeredi
1308M: miklos@szeredi.hu
1309L: fuse-devel@lists.sourceforge.net
1310W: http://fuse.sourceforge.net/
1311S: Maintained
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1314P: Rik Faith
1315M: faith@cs.unc.edu
1316L: linux-scsi@vger.kernel.org
1317S: Odd fixes (e.g., new signatures)
1318
1319GDT SCSI DISK ARRAY CONTROLLER DRIVER
1320P: Achim Leubner
1321M: achim_leubner@adaptec.com
1322L: linux-scsi@vger.kernel.org
1323W: http://www.icp-vortex.com/
1324S: Supported
1325
1326GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1327P: Krzysztof Halasa
1328M: khc@pm.waw.pl
1329W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1330S: Maintained
1331
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001332GFS2 FILE SYSTEM
1333P: Steven Whitehouse
1334M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001335L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001336W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001337T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1338T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001339S: Supported
1340
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001341GIGASET ISDN DRIVERS
1342P: Hansjoerg Lipp
1343M: hjlipp@web.de
1344P: Tilman Schmidt
1345M: tilman@imap.cc
1346L: gigaset307x-common@lists.sourceforge.net
1347W: http://gigaset307x.sourceforge.net/
1348S: Maintained
1349
Jean Delvare5b543962005-08-15 19:51:02 +02001350HARDWARE MONITORING
1351P: Jean Delvare
1352M: khali@linux-fr.org
1353L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001354W: http://www.lm-sensors.org/
1355T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001356S: Maintained
1357
Michael Buesch844dd052006-06-26 00:24:59 -07001358HARDWARE RANDOM NUMBER GENERATOR CORE
1359P: Michael Buesch
1360M: mb@bu3sch.de
1361S: Maintained
1362
Robert Love860e1d62005-08-31 23:57:59 -04001363HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1364P: Robert Love
1365M: rlove@rlove.org
1366M: linux-kernel@vger.kernel.org
1367W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1368S: Maintained
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370HARMONY SOUND DRIVER
1371P: Kyle McMartin
1372M: kyle@parisc-linux.org
1373W: http://www.parisc-linux.org/~kyle/harmony/
1374L: parisc-linux@lists.parisc-linux.org
1375S: Maintained
1376
1377HAYES ESP SERIAL DRIVER
1378P: Andrew J. Robinson
1379M: arobinso@nyx.net
1380L: linux-kernel@vger.kernel.org
1381W: http://www.nyx.net/~arobinso
1382S: Maintained
1383
1384HFS FILESYSTEM
1385P: Roman Zippel
1386M: zippel@linux-m68k.org
1387L: linux-kernel@vger.kernel.org
1388S: Maintained
1389
1390HGA FRAMEBUFFER DRIVER
1391P: Ferenc Bakonyi
1392M: fero@drama.obuda.kando.hu
1393L: linux-nvidia@lists.surfsouth.com
1394W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1395S: Maintained
1396
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001397HID CORE LAYER
1398P: Jiri Kosina
1399M: jkosina@suse.cz
1400L: linux-input@atrey.karlin.mff.cuni.cz
1401S: Maintained
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403HIGH-SPEED SCC DRIVER FOR AX.25
1404P: Klaus Kudielka
1405M: klaus.kudielka@ieee.org
1406L: linux-hams@vger.kernel.org
1407W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1408S: Maintained
1409
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001410HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1411P: HighPoint Linux Team
1412M: linux@highpoint-tech.com
1413W: http://www.highpoint-tech.com
1414S: Supported
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416HIPPI
1417P: Jes Sorensen
1418M: jes@trained-monkey.org
1419L: linux-hippi@sunsite.dk
1420S: Maintained
1421
1422HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1423P: Chirag Kantharia
1424M: chirag.kantharia@hp.com
1425L: iss_storagedev@hp.com
1426S: Maintained
1427
1428HEWLETT-PACKARD SMART2 RAID DRIVER
1429P: Chirag Kantharia
1430M: chirag.kantharia@hp.com
1431L: iss_storagedev@hp.com
1432S: Maintained
1433
1434HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1435P: Mike Miller
1436M: mike.miller@hp.com
1437L: iss_storagedev@hp.com
1438S: Supported
1439
Jouni Malinenff1d2762005-05-12 22:54:16 -04001440HOST AP DRIVER
1441P: Jouni Malinen
1442M: jkmaline@cc.hut.fi
1443L: hostap@shmoo.com
1444W: http://hostap.epitest.fi/
1445S: Maintained
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1448P: Jaroslav Kysela
1449M: perex@suse.cz
1450S: Maintained
1451
Bob Piccob9b03322005-11-07 00:59:19 -08001452HPET: High Precision Event Timers driver (hpet.c)
1453P: Clemens Ladisch
1454M: clemens@ladisch.de
1455S: Maintained
1456
1457HPET: i386
1458P: Venkatesh Pallipadi (Venki)
1459M: venkatesh.pallipadi@intel.com
1460S: Maintained
1461
1462HPET: x86_64
1463P: Andi Kleen and Vojtech Pavlik
1464M: ak@muc.de and vojtech@suse.cz
1465S: Maintained
1466
1467HPET: ACPI hpet.c
1468P: Bob Picco
1469M: bob.picco@hp.com
1470S: Maintained
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472HPFS FILESYSTEM
1473P: Mikulas Patocka
1474M: mikulas@artax.karlin.mff.cuni.cz
1475W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1476S: Maintained
1477
1478HUGETLB FILESYSTEM
1479P: William Irwin
1480M: wli@holomorphy.com
1481S: Maintained
1482
Jean Delvare5b543962005-08-15 19:51:02 +02001483I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484P: Jean Delvare
1485M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001486L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001487T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488S: Maintained
1489
1490I2O
1491P: Markus Lidel
1492M: markus.lidel@shadowconnect.com
1493W: http://i2o.shadowconnect.com/
1494S: Maintained
1495
1496i386 BOOT CODE
1497P: Riley H. Williams
1498M: Riley@Williams.Name
1499L: Linux-Kernel@vger.kernel.org
1500S: Maintained
1501
1502i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1503P: Dave Jones
1504M: davej@codemonkey.org.uk
1505P: H. Peter Anvin
1506M: hpa@zytor.com
1507S: Maintained
1508
1509i810 TCO TIMER WATCHDOG
1510P: Nils Faerber
1511M: nils@kernelconcepts.de
1512W: http://www.kernelconcepts.de/
1513S: Maintained
1514
1515IA64 (Itanium) PLATFORM
1516P: Tony Luck
1517M: tony.luck@intel.com
1518L: linux-ia64@vger.kernel.org
1519W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001520T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521S: Maintained
1522
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001523IBM ACPI EXTRAS DRIVER
1524P: Henrique de Moraes Holschuh
1525M: ibm-acpi@hmh.eng.br
1526L: ibm-acpi-devel@lists.sourceforge.net
1527W: http://ibm-acpi.sourceforge.net
1528W: http://thinkwiki.org/wiki/Ibm-acpi
1529T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1530S: Maintained
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001533P: Jes Sorensen
1534M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535L: linux-altix@sgi.com
1536L: linux-ia64@vger.kernel.org
1537W: http://www.sgi.com/altix
1538S: Maintained
1539
1540IBM MCA SCSI SUBSYSTEM DRIVER
1541P: Michael Lang
1542M: langa2@kph.uni-mainz.de
1543W: http://www.uni-mainz.de/~langm000/linux.html
1544S: Maintained
1545
1546IBM Power Linux RAID adapter
1547P: Brian King
1548M: brking@us.ibm.com
1549S: Supported
1550
1551IBM ServeRAID RAID DRIVER
1552P: Jack Hammer
1553P: Dave Jeffery
1554M: ipslinux@adaptec.com
1555W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1556S: Supported
1557
1558IDE DRIVER [GENERAL]
1559P: Bartlomiej Zolnierkiewicz
1560M: B.Zolnierkiewicz@elka.pw.edu.pl
1561L: linux-kernel@vger.kernel.org
1562L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001563T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564S: Maintained
1565
1566IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001567P: Alan Cox
1568M: alan@lxorguk.ukuu.org.uk
1569L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570S: Maintained
1571
1572IDE/ATAPI FLOPPY DRIVERS
1573P: Paul Bristow
1574M: Paul Bristow <paul@paulbristow.net>
1575W: http://paulbristow.net/linux/idefloppy.html
1576L: linux-kernel@vger.kernel.org
1577S: Maintained
1578
1579IDE/ATAPI TAPE DRIVERS
1580P: Gadi Oxman
1581M: Gadi Oxman <gadio@netvision.net.il>
1582L: linux-kernel@vger.kernel.org
1583S: Maintained
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585IEEE 1394 SUBSYSTEM
1586P: Ben Collins
1587M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001588P: Stefan Richter
1589M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590L: linux1394-devel@lists.sourceforge.net
1591W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001592T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593S: Maintained
1594
Stefan Richter87730d02006-09-16 12:24:00 +02001595IEEE 1394 IPV4 DRIVER (eth1394)
1596P: Stefan Richter
1597M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001599S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601IEEE 1394 PCILYNX DRIVER
1602P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001603M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001604P: Stefan Richter
1605M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001607S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609IEEE 1394 RAW I/O DRIVER
1610P: Ben Collins
1611M: bcollins@debian.org
1612P: Dan Dennedy
1613M: dan@dennedy.org
1614L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001615S: Maintained
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617IMS TWINTURBO FRAMEBUFFER DRIVER
1618P: Paul Mundt
1619M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001620L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621S: Maintained
1622
1623INFINIBAND SUBSYSTEM
1624P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001625M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626P: Sean Hefty
1627M: mshefty@ichips.intel.com
1628P: Hal Rosenstock
1629M: halr@voltaire.com
1630L: openib-general@openib.org
1631W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001632T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633S: Supported
1634
1635INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001636P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001637M: dmitry.torokhov@gmail.com
1638M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639L: linux-input@atrey.karlin.mff.cuni.cz
1640L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001641T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642S: Maintained
1643
Robert Lovec9f04f52005-07-15 12:21:07 -04001644INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001645P: John McCutchan
1646M: ttb@tentacle.dhs.org
1647P: Robert Love
1648M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001649L: linux-kernel@vger.kernel.org
1650S: Maintained
1651
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001652INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001653P: Sylvain Meyer
1654M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001655L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001656S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001659P: Antonino Daplas
1660M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001661L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001662S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1665P: Ingo Molnar
1666M: mingo@redhat.com
1667S: Maintained
1668
1669INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1670P: Jeff Garzik
1671M: jgarzik@pobox.com
1672W: http://sourceforge.net/projects/gkernel/
1673S: Maintained
1674
1675INTEL IA32 MICROCODE UPDATE SUPPORT
1676P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001677M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678S: Maintained
1679
Michael Buesch844dd052006-06-26 00:24:59 -07001680INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1681P: Deepak Saxena
1682M: dsaxena@plexity.net
1683S: Maintained
1684
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001685INTEL IXP2000 ETHERNET DRIVER
1686P: Lennert Buytenhek
1687M: kernel@wantstofly.org
1688L: netdev@vger.kernel.org
1689S: Maintained
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691INTEL PRO/100 ETHERNET SUPPORT
1692P: John Ronciak
1693M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694P: Jesse Brandeburg
1695M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001696P: Jeff Kirsher
1697M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001698P: Auke Kok
1699M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700W: http://sourceforge.net/projects/e1000/
1701S: Supported
1702
1703INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1704P: Jeb Cramer
1705M: cramerj@intel.com
1706P: John Ronciak
1707M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001708P: Jesse Brandeburg
1709M: jesse.brandeburg@intel.com
1710P: Jeff Kirsher
1711M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001712P: Auke Kok
1713M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714W: http://sourceforge.net/projects/e1000/
1715S: Supported
1716
1717INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001718P: Jeff Kirsher
1719M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720P: Ayyappan Veeraiyan
1721M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722P: John Ronciak
1723M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001724P: Jesse Brandeburg
1725M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001726P: Auke Kok
1727M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728W: http://sourceforge.net/projects/e1000/
1729S: Supported
1730
James Ketrenos826d2ab2005-11-07 18:56:59 -06001731INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1732P: Yi Zhu
1733M: yi.zhu@intel.com
1734P: James Ketrenos
1735M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001736L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001737L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1738W: http://ipw2100.sourceforge.net
1739S: Supported
1740
1741INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1742P: Yi Zhu
1743M: yi.zhu@intel.com
1744P: James Ketrenos
1745M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001746L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001747L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1748W: http://ipw2200.sourceforge.net
1749S: Supported
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751IOC3 DRIVER
1752P: Ralf Baechle
1753M: ralf@linux-mips.org
1754L: linux-mips@linux-mips.org
1755S: Maintained
1756
1757IP MASQUERADING:
1758P: Juanjo Ciarlante
1759M: jjciarla@raiz.uncu.edu.ar
1760S: Maintained
1761
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001762IPATH DRIVER:
1763P: Bryan O'Sullivan
1764M: support@pathscale.com
1765L: openib-general@openib.org
1766S: Supported
1767
Corey Minyard4409ebe2006-04-20 02:43:12 -07001768IPMI SUBSYSTEM
1769P: Corey Minyard
1770M: minyard@acm.org
1771L: openipmi-developer@lists.sourceforge.net
1772W: http://openipmi.sourceforge.net/
1773S: Supported
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775IPX NETWORK LAYER
1776P: Arnaldo Carvalho de Melo
1777M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001778L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779S: Maintained
1780
1781IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001782P: Samuel Ortiz
1783M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001784L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001786S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788ISAPNP
1789P: Jaroslav Kysela
1790M: perex@suse.cz
1791S: Maintained
1792
1793ISDN SUBSYSTEM
1794P: Karsten Keil
1795M: kkeil@suse.de
1796P: Kai Germaschewski
1797M: kai.germaschewski@gmx.de
1798L: isdn4linux@listserv.isdn4linux.de
1799W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001800T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801S: Maintained
1802
1803ISDN SUBSYSTEM (Eicon active card driver)
1804P: Armin Schindler
1805M: mac@melware.de
1806L: isdn4linux@listserv.isdn4linux.de
1807W: http://www.melware.de
1808S: Maintained
1809
1810JOURNALLING FLASH FILE SYSTEM (JFFS)
1811P: Axis Communications AB
1812M: jffs-dev@axis.com
1813L: jffs-dev@axis.com
1814W: http://www.developer.axis.com/software/jffs/
1815S: Maintained
1816
1817JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1818P: David Woodhouse
1819M: dwmw2@infradead.org
1820L: jffs-dev@axis.com
1821W: http://sources.redhat.com/jffs2/
1822S: Maintained
1823
1824JFS FILESYSTEM
1825P: Dave Kleikamp
1826M: shaggy@austin.ibm.com
1827L: jfs-discussion@lists.sourceforge.net
1828W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001829T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830S: Supported
1831
Josh Triplettde456d32006-07-30 03:04:00 -07001832JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001833P: Stephen Tweedie, Andrew Morton
1834M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001835L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001836S: Maintained
1837
Rudolf Marek4660cb32006-10-08 22:01:26 +02001838K8TEMP HARDWARE MONITORING DRIVER
1839P: Rudolf Marek
1840M: r.marek@assembler.cz
1841L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842S: Maintained
1843
1844KCONFIG
1845P: Roman Zippel
1846M: zippel@linux-m68k.org
1847L: kbuild-devel@lists.sourceforge.net
1848S: Maintained
1849
Vivek Goyalea6c2082006-05-20 14:59:55 -07001850KDUMP
1851P: Vivek Goyal
1852M: vgoyal@in.ibm.com
1853P: Haren Myneni
1854M: hbabu@us.ibm.com
1855L: fastboot@lists.osdl.org
1856L: linux-kernel@vger.kernel.org
1857W: http://lse.sourceforge.net/kdump/
1858S: Maintained
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860KERNEL AUTOMOUNTER (AUTOFS)
1861P: H. Peter Anvin
1862M: hpa@zytor.com
1863L: autofs@linux.kernel.org
1864S: Odd Fixes
1865
1866KERNEL AUTOMOUNTER v4 (AUTOFS4)
1867P: Ian Kent
1868M: raven@themaw.net
1869L: autofs@linux.kernel.org
1870S: Maintained
1871
1872KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1873P: Kai Germaschewski
1874M: kai@germaschewski.name
1875P: Sam Ravnborg
1876M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001877T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878S: Maintained
1879
1880KERNEL JANITORS
1881P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001882L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884S: Maintained
1885
1886KERNEL NFSD
1887P: Neil Brown
1888M: neilb@cse.unsw.edu.au
1889L: nfs@lists.sourceforge.net
1890W: http://nfs.sourceforge.net/
1891W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1892S: Maintained
1893
Avi Kivity426d62e2006-12-13 00:34:03 -08001894KERNEL VIRTUAL MACHINE (KVM)
1895P: Avi Kivity
1896M: avi@qumranet.com
1897L: kvm-devel@lists.sourceforge.net
1898W: kvm.sourceforge.net
1899S: Supported
1900
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001901KEXEC
1902P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001903M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001904W: http://www.xmission.com/~ebiederm/files/kexec/
1905L: linux-kernel@vger.kernel.org
1906L: fastboot@osdl.org
1907S: Maintained
1908
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001909KPROBES
1910P: Prasanna S Panchamukhi
1911M: prasanna@in.ibm.com
1912P: Ananth N Mavinakayanahalli
1913M: ananth@in.ibm.com
1914P: Anil S Keshavamurthy
1915M: anil.s.keshavamurthy@intel.com
1916P: David S. Miller
1917M: davem@davemloft.net
1918L: linux-kernel@vger.kernel.org
1919S: Maintained
1920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001923S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925LASI 53c700 driver for PARISC
1926P: James E.J. Bottomley
1927M: James.Bottomley@HansenPartnership.com
1928L: linux-scsi@vger.kernel.org
1929S: Maintained
1930
Richard Purdie263de9b2006-05-15 09:44:16 -07001931LED SUBSYSTEM
1932P: Richard Purdie
1933M: rpurdie@rpsys.net
1934S: Maintained
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936LEGO USB Tower driver
1937P: Juergen Stuber
1938M: starblue@users.sourceforge.net
1939L: legousb-devel@lists.sourceforge.net
1940W: http://legousb.sourceforge.net/
1941S: Maintained
1942
1943LINUX FOR IBM pSERIES (RS/6000)
1944P: Paul Mackerras
1945M: paulus@au.ibm.com
1946W: http://www.ibm.com/linux/ltc/projects/ppc
1947S: Supported
1948
1949LINUX FOR NCR VOYAGER
1950P: James Bottomley
1951M: James.Bottomley@HansenPartnership.com
1952W: http://www.hansenpartnership.com/voyager
1953S: Maintained
1954
1955LINUX FOR POWERPC
1956P: Paul Mackerras
1957M: paulus@samba.org
1958W: http://www.penguinppc.org/
1959L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001960T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961S: Supported
1962
1963LINUX FOR POWER MACINTOSH
1964P: Benjamin Herrenschmidt
1965M: benh@kernel.crashing.org
1966W: http://www.penguinppc.org/
1967L: linuxppc-dev@ozlabs.org
1968S: Maintained
1969
1970LINUX FOR POWERPC EMBEDDED MPC52XX
1971P: Sylvain Munaut
1972M: tnt@246tNt.com
1973W: http://www.246tNt.com/mpc52xx/
1974W: http://www.penguinppc.org/
1975L: linuxppc-dev@ozlabs.org
1976L: linuxppc-embedded@ozlabs.org
1977S: Maintained
1978
1979LINUX FOR POWERPC EMBEDDED PPC4XX
1980P: Matt Porter
1981M: mporter@kernel.crashing.org
1982W: http://www.penguinppc.org/
1983L: linuxppc-embedded@ozlabs.org
1984S: Maintained
1985
Tom Rinie93adf12005-07-26 12:49:53 -07001986LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987P: Tom Rini
1988M: trini@kernel.crashing.org
1989W: http://www.penguinppc.org/
1990L: linuxppc-embedded@ozlabs.org
1991S: Maintained
1992
Tom Rinie93adf12005-07-26 12:49:53 -07001993LINUX FOR POWERPC EMBEDDED PPC8XX
1994P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001995M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001996W: http://www.penguinppc.org/
1997L: linuxppc-embedded@ozlabs.org
1998S: Maintained
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002001P: Kumar Gala
2002M: galak@kernel.crashing.org
2003W: http://www.penguinppc.org/
2004L: linuxppc-embedded@ozlabs.org
2005S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Olof Johanssonab06ff32006-09-06 14:44:54 -05002007LINUX FOR POWERPC PA SEMI PWRFICIENT
2008P: Olof Johansson
2009M: olof@lixom.net
2010W: http://www.pasemi.com/
2011L: linuxppc-dev@ozlabs.org
2012S: Supported
2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014LLC (802.2)
2015P: Arnaldo Carvalho de Melo
2016M: acme@conectiva.com.br
2017S: Maintained
2018
2019LINUX FOR 64BIT POWERPC
2020P: Paul Mackerras
2021M: paulus@samba.org
2022M: paulus@au.ibm.com
2023P: Anton Blanchard
2024M: anton@samba.org
2025M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002026W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002027L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028S: Supported
2029
2030LINUX SECURITY MODULE (LSM) FRAMEWORK
2031P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002032M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002033L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002035T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036S: Supported
2037
2038LM83 HARDWARE MONITOR DRIVER
2039P: Jean Delvare
2040M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002041L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042S: Maintained
2043
2044LM90 HARDWARE MONITOR DRIVER
2045P: Jean Delvare
2046M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002047L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048S: Maintained
2049
2050LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2051P: Richard Russon (FlatCap)
2052M: ldm@flatcap.org
2053L: ldm-devel@lists.sourceforge.net
2054W: http://ldm.sourceforge.net
2055S: Maintained
2056
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002057LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2058P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002059M: Eric.Moore@lsi.com
2060M: support@lsi.com
2061L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002062L: linux-scsi@vger.kernel.org
2063W: http://www.lsilogic.com/support
2064S: Supported
2065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2067P: Matthew Wilcox
2068M: matthew@wil.cx
2069L: linux-scsi@vger.kernel.org
2070S: Maintained
2071
2072M68K ARCHITECTURE
2073P: Geert Uytterhoeven
2074M: geert@linux-m68k.org
2075P: Roman Zippel
2076M: zippel@linux-m68k.org
2077L: linux-m68k@lists.linux-m68k.org
2078W: http://www.linux-m68k.org/
2079W: http://linux-m68k-cvs.ubb.ca/
2080S: Maintained
2081
2082M68K ON APPLE MACINTOSH
2083P: Joshua Thompson
2084M: funaho@jurai.org
2085W: http://www.mac.linux-m68k.org/
2086L: linux-mac68k@mac.linux-m68k.org
2087S: Maintained
2088
2089M68K ON HP9000/300
2090P: Philip Blundell
2091M: philb@gnu.org
2092W: http://www.tazenda.demon.co.uk/phil/linux-hp
2093S: Maintained
2094
2095MARVELL YUKON / SYSKONNECT DRIVER
2096P: Mirko Lindner
2097M: mlindner@syskonnect.de
2098P: Ralph Roesler
2099M: rroesler@syskonnect.de
2100W: http://www.syskonnect.com
2101S: Supported
2102
Michael Kerriskfaf16682005-07-31 22:34:47 -07002103MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002104P: Michael Kerrisk
2105M: mtk-manpages@gmx.net
2106W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2107S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002108
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002109MARVELL MV643XX ETHERNET DRIVER
2110P: Dale Farnsworth
2111M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002113M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002114L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002115S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117MATROX FRAMEBUFFER DRIVER
2118P: Petr Vandrovec
2119M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002120L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121S: Maintained
2122
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002123MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002124P: Neela Syam Kolli
2125M: Neela.Kolli@engenio.com
2126S: linux-scsi@vger.kernel.org
2127W: http://megaraid.lsilogic.com
2128S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002129
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002130MEMORY MANAGEMENT
2131L: linux-mm@kvack.org
2132L: linux-kernel@vger.kernel.org
2133W: http://www.linux-mm.org
2134S: Maintained
2135
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002136MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137P: David Woodhouse
2138M: dwmw2@infradead.org
2139W: http://www.linux-mtd.infradead.org/
2140L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002141T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142S: Maintained
2143
2144MICROTEK X6 SCANNER
2145P: Oliver Neukum
2146M: oliver@neukum.name
2147S: Maintained
2148
2149MIPS
2150P: Ralf Baechle
2151M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002152W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002154T: git www.linux-mips.org:/pub/scm/linux.git
2155S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157MISCELLANEOUS MCA-SUPPORT
2158P: James Bottomley
2159M: jejb@steeleye.com
2160L: linux-kernel@vger.kernel.org
2161S: Maintained
2162
2163MODULE SUPPORT
2164P: Rusty Russell
2165M: rusty@rustcorp.com.au
2166L: linux-kernel@vger.kernel.org
2167S: Maintained
2168
2169MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2170P: Stelian Pop
2171M: stelian@popies.net
2172W: http://popies.net/meye/
2173S: Maintained
2174
2175MOUSE AND MISC DEVICES [GENERAL]
2176P: Alessandro Rubini
2177M: rubini@ipvvis.unipv.it
2178L: linux-kernel@vger.kernel.org
2179S: Maintained
2180
Jiri Slabyd7354102006-12-08 02:38:35 -08002181MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2182P: Jiri Slaby
2183M: jirislaby@gmail.com
2184L: linux-kernel@vger.kernel.org
2185S: Maintained
2186
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002187MSI LAPTOP SUPPORT
2188P: Lennart Poettering
2189M: mzxreary@0pointer.de
2190L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2191W: http://0pointer.de/lennart/tchibo.html
2192S: Maintained
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194MTRR AND SIMILAR SUPPORT [i386]
2195P: Richard Gooch
2196M: rgooch@atnf.csiro.au
2197L: linux-kernel@vger.kernel.org
2198W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2199S: Maintained
2200
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002201MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2202P: Pierre Ossman
2203M: drzeus-mmc@drzeus.cx
2204L: linux-kernel@vger.kernel.org
2205S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207MULTISOUND SOUND DRIVER
2208P: Andrew Veliath
2209M: andrewtv@usa.net
2210S: Maintained
2211
Jiri Slabyd7354102006-12-08 02:38:35 -08002212MULTITECH MULTIPORT CARD (ISICOM)
2213P: Jiri Slaby
2214M: jirislaby@gmail.com
2215L: linux-kernel@vger.kernel.org
2216S: Maintained
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218NATSEMI ETHERNET DRIVER (DP8381x)
2219P: Tim Hockin
2220M: thockin@hockin.org
2221S: Maintained
2222
2223NCP FILESYSTEM
2224P: Petr Vandrovec
2225M: vandrove@vc.cvut.cz
2226L: linware@sh.cvut.cz
2227S: Maintained
2228
2229NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2230P: James E.J. Bottomley
2231M: James.Bottomley@HansenPartnership.com
2232L: linux-scsi@vger.kernel.org
2233S: Maintained
2234
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002235NETEM NETWORK EMULATOR
2236P: Stephen Hemminger
2237M: shemminger@osdl.org
2238L: netem@osdl.org
2239S: Maintained
2240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241NETFILTER/IPTABLES/IPCHAINS
2242P: Rusty Russell
2243P: Marc Boucher
2244P: James Morris
2245P: Harald Welte
2246P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002247P: Patrick McHardy
2248M: kaber@trash.net
2249L: netfilter-devel@lists.netfilter.org
2250L: netfilter@lists.netfilter.org
2251L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252W: http://www.netfilter.org/
2253W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254S: Supported
2255
Paul Moore4cc67732006-09-25 15:57:13 -07002256NETLABEL
2257P: Paul Moore
2258M: paul.moore@hp.com
2259W: http://netlabel.sf.net
2260L: netdev@vger.kernel.org
2261S: Supported
2262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263NETROM NETWORK LAYER
2264P: Ralf Baechle
2265M: ralf@linux-mips.org
2266L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002267W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268S: Maintained
2269
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002270NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271P: Paul Clements
2272M: Paul.Clements@steeleye.com
2273S: Maintained
2274
2275NETWORK DEVICE DRIVERS
2276P: Andrew Morton
2277M: akpm@osdl.org
2278P: Jeff Garzik
2279M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002280L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002281T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282S: Maintained
2283
2284NETWORKING [GENERAL]
2285P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002286M: netdev@vger.kernel.org
2287L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002288W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289S: Maintained
2290
2291NETWORKING [IPv4/IPv6]
2292P: David S. Miller
2293M: davem@davemloft.net
2294P: Alexey Kuznetsov
2295M: kuznet@ms2.inr.ac.ru
2296P: Pekka Savola (ipv6)
2297M: pekkas@netcore.fi
2298P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002299M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300P: Hideaki YOSHIFUJI
2301M: yoshfuji@linux-ipv6.org
2302P: Patrick McHardy
2303M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002304L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002305T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306S: Maintained
2307
John W. Linville29f8f632006-01-18 14:52:48 -08002308NETWORKING [WIRELESS]
2309P: John W. Linville
2310M: linville@tuxdriver.com
2311L: netdev@vger.kernel.org
2312T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2313S: Maintained
2314
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002315NETXEN (1/10) GbE SUPPORT
2316P: Amit S. Kale
2317M: amitkale@netxen.com
2318L: netdev@vger.kernel.org
2319W: http://www.netxen.com
2320S: Supported
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322IPVS
2323P: Wensong Zhang
2324M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002325P: Simon Horman
2326M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327P: Julian Anastasov
2328M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002329L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330S: Maintained
2331
2332NFS CLIENT
2333P: Trond Myklebust
2334M: trond.myklebust@fys.uio.no
2335L: linux-kernel@vger.kernel.org
2336S: Maintained
2337
2338NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002339P: Jan-Pascal van Best
2340M: janpascal@vanbest.org
2341P: Andreas Mohr
2342M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002343L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344S: Maintained
2345
2346NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2347P: YOKOTA Hiroshi
2348M: yokota@netlab.is.tsukuba.ac.jp
2349W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2350S: Maintained
2351
2352NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2353P: GOTO Masanori
2354M: gotom@debian.or.jp
2355P: YOKOTA Hiroshi
2356M: yokota@netlab.is.tsukuba.ac.jp
2357W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2358S: Maintained
2359
2360NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2361P: Eberhard Moenkeberg
2362M: emoenke@gwdg.de
2363L: linux-kernel@vger.kernel.org
2364S: Maintained
2365
2366NTFS FILESYSTEM
2367P: Anton Altaparmakov
2368M: aia21@cantab.net
2369L: linux-ntfs-dev@lists.sourceforge.net
2370L: linux-kernel@vger.kernel.org
2371W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002372T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373S: Maintained
2374
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002375NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002376P: Antonino Daplas
2377M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002378L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002379S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002381OPENCORES I2C BUS DRIVER
2382P: Peter Korsgaard
2383M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002384L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002385S: Maintained
2386
Mark Fashehccd979b2005-12-15 14:31:24 -08002387ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2388P: Mark Fasheh
2389M: mark.fasheh@oracle.com
2390P: Kurt Hackel
2391M: kurt.hackel@oracle.com
2392L: ocfs2-devel@oss.oracle.com
2393W: http://oss.oracle.com/projects/ocfs2/
2394S: Supported
2395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396OLYMPIC NETWORK DRIVER
2397P: Peter De Shrijver
2398M: p2@ace.ulyssis.student.kuleuven.ac.be
2399P: Mike Phillips
2400M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002401L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402L: linux-tr@linuxtr.net
2403W: http://www.linuxtr.net
2404S: Maintained
2405
Harald Weltec1986ee2005-11-13 16:06:29 -08002406OMNIKEY CARDMAN 4000 DRIVER
2407P: Harald Welte
2408M: laforge@gnumonks.org
2409S: Maintained
2410
Harald Welte77c44ab2005-11-13 16:06:26 -08002411OMNIKEY CARDMAN 4040 DRIVER
2412P: Harald Welte
2413M: laforge@gnumonks.org
2414S: Maintained
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416ONSTREAM SCSI TAPE DRIVER
2417P: Willem Riede
2418M: osst@riede.org
2419L: osst-users@lists.sourceforge.net
2420L: linux-scsi@vger.kernel.org
2421S: Maintained
2422
2423OPL3-SA2, SA3, and SAx DRIVER
2424P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002425M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426L: linux-sound@vger.kernel.org
2427S: Maintained
2428
2429OPROFILE
2430P: Philippe Elie
2431M: phil.el@wanadoo.fr
2432L: oprofile-list@lists.sf.net
2433S: Maintained
2434
2435ORINOCO DRIVER
2436P: Pavel Roskin
2437M: proski@gnu.org
2438P: David Gibson
2439M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002440L: orinoco-users@lists.sourceforge.net
2441L: orinoco-devel@lists.sourceforge.net
2442W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443S: Maintained
2444
2445PARALLEL PORT SUPPORT
2446P: Phil Blundell
2447M: philb@gnu.org
2448P: Tim Waugh
2449M: tim@cyberelk.net
2450P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451P: Andrea Arcangeli
2452M: andrea@suse.de
2453L: linux-parport@lists.infradead.org
2454W: http://people.redhat.com/twaugh/parport/
2455S: Maintained
2456
2457PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2458P: Tim Waugh
2459M: tim@cyberelk.net
2460L: linux-parport@lists.infradead.org
2461W: http://www.torque.net/linux-pp.html
2462S: Maintained
2463
2464PARISC ARCHITECTURE
2465P: Matthew Wilcox
2466M: matthew@wil.cx
2467P: Grant Grundler
2468M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002469P: Kyle McMartin
2470M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471L: parisc-linux@parisc-linux.org
2472W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002473T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2474T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475S: Maintained
2476
Jim Cromie1662d322006-10-06 00:43:59 -07002477PC87360 HARDWARE MONITORING DRIVER
2478P: Jim Cromie
2479M: jim.cromie@gmail.com
2480L: lm-sensors@lm-sensors.org
2481S: Maintained
2482
2483PC8736x GPIO DRIVER
2484P: Jim Cromie
2485M: jim.cromie@gmail.com
2486S: Maintained
2487
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002488PCI ERROR RECOVERY
2489P: Linas Vepstas
2490M: linas@austin.ibm.com
2491L: linux-kernel@vger.kernel.org
2492L: linux-pci@atrey.karlin.mff.cuni.cz
2493S: Supported
2494
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2496P: Thomas Sailer
2497M: sailer@ife.ee.ethz.ch
2498L: linux-sound@vger.kernel.org
2499W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2500S: Maintained
2501
2502PCI SUBSYSTEM
2503P: Greg Kroah-Hartman
2504M: gregkh@suse.de
2505L: linux-kernel@vger.kernel.org
2506L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002507T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508S: Supported
2509
2510PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002511P: Kristen Carlson Accardi
2512M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513S: Supported
2514
2515PCI HOTPLUG COMPAQ DRIVER
2516P: Greg Kroah-Hartman
2517M: greg@kroah.com
2518S: Maintained
2519
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002520PCIE HOTPLUG DRIVER
2521P: Kristen Carlson Accardi
2522M: kristen.c.accardi@intel.com
2523L: pcihpd-discuss@lists.sourceforge.net
2524S: Maintained
2525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002527P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002528L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002530T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002531S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533PCNET32 NETWORK DRIVER
2534P: Thomas Bogendörfer
2535M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002536L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537S: Maintained
2538
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002539PER-TASK DELAY ACCOUNTING
2540P: Shailabh Nagar
2541M: nagar@watson.ibm.com
2542L: linux-kernel@vger.kernel.org
2543S: Maintained
2544
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002545PERSONALITY HANDLING
2546P: Christoph Hellwig
2547M: hch@infradead.org
2548L: linux-abi-devel@lists.sourceforge.net
2549S: Maintained
2550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551PHRAM MTD DRIVER
2552P: Jörn Engel
2553M: joern@wh.fh-wedel.de
2554L: linux-mtd@lists.infradead.org
2555S: Maintained
2556
Peter Osterlund249a6772005-09-27 21:45:30 -07002557PKTCDVD DRIVER
2558P: Peter Osterlund
2559M: petero2@telia.com
2560L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002561S: Maintained
2562
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563POSIX CLOCKS and TIMERS
2564P: George Anzinger
2565M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002566L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567S: Supported
2568
Eugene Surovegin24682972005-10-14 03:00:53 -07002569POWERPC 4xx EMAC DRIVER
2570P: Eugene Surovegin
2571M: ebs@ebshome.net
2572W: http://kernel.ebshome.net/emac/
2573L: linuxppc-embedded@ozlabs.org
2574L: netdev@vger.kernel.org
2575S: Maintained
2576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577PNP SUPPORT
2578P: Adam Belay
2579M: ambx1@neo.rr.com
2580S: Maintained
2581
Vitaly Wool999445d2007-01-04 13:07:03 +01002582PNXxxxx I2C DRIVER
2583P: Vitaly Wool
2584M: vitalywool@gmail.com
2585L: i2c@lm-sensors.org
2586S: Maintained
2587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588PPP PROTOCOL DRIVERS AND COMPRESSORS
2589P: Paul Mackerras
2590M: paulus@samba.org
2591L: linux-ppp@vger.kernel.org
2592S: Maintained
2593
2594PPP OVER ATM (RFC 2364)
2595P: Mitchell Blank Jr
2596M: mitch@sfgoth.com
2597S: Maintained
2598
2599PPP OVER ETHERNET
2600P: Michal Ostrowski
2601M: mostrows@speakeasy.net
2602S: Maintained
2603
2604PREEMPTIBLE KERNEL
2605P: Robert Love
2606M: rml@tech9.net
2607L: linux-kernel@vger.kernel.org
2608L: kpreempt-tech@lists.sourceforge.net
2609W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2610S: Supported
2611
2612PRISM54 WIRELESS DRIVER
2613P: Prism54 Development Team
2614M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002615L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616W: http://prism54.org
2617S: Maintained
2618
2619PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2620P: Peter Denison
2621M: promise@pnd-pc.demon.co.uk
2622W: http://www.pnd-pc.demon.co.uk/promise/
2623S: Maintained
2624
Geoff Levandf58a9d12006-11-23 00:46:51 +01002625PS3 PLATFORM SUPPORT
2626P: Geoff Levand
2627M: geoffrey.levand@am.sony.com
2628L: linuxppc-dev@ozlabs.org
2629L: cbe-oss-dev@ozlabs.org
2630S: Supported
2631
Michael Krufky83202042006-07-03 00:24:18 -07002632PVRUSB2 VIDEO4LINUX DRIVER
2633P: Mike Isely
2634M: isely@pobox.com
2635L: pvrusb2@isely.net
2636L: video4linux-list@redhat.com
2637W: http://www.isely.net/pvrusb2/
2638S: Maintained
2639
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640PXA2xx SUPPORT
2641P: Nicolas Pitre
2642M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002643L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644S: Maintained
2645
2646QLOGIC QLA2XXX FC-SCSI DRIVER
2647P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002648M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649L: linux-scsi@vger.kernel.org
2650S: Supported
2651
Ron Mercer5a4faa82006-07-25 00:40:21 -07002652QLOGIC QLA3XXX NETWORK DRIVER
2653P: Ron Mercer
2654M: linux-driver@qlogic.com
2655L: netdev@vger.kernel.org
2656S: Supported
2657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658QNX4 FILESYSTEM
2659P: Anders Larsen
2660M: al@alarsen.net
2661L: linux-kernel@vger.kernel.org
2662W: http://www.alarsen.net/linux/qnx4fs/
2663S: Maintained
2664
2665RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002666P: Benjamin Herrenschmidt
2667M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002668L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669S: Maintained
2670
2671RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002672P: Paul Mackerras
2673M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002674L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675S: Maintained
2676
2677RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2678P: Corey Thomas
2679M: corey@world.std.com
2680L: linux-kernel@vger.kernel.org
2681S: Maintained
2682
Matt Mackall9e95ce22005-04-16 15:25:56 -07002683RANDOM NUMBER DRIVER
2684P: Matt Mackall
2685M: mpm@selenic.com
2686S: Maintained
2687
Matt Porter394b7012005-11-07 01:00:15 -08002688RAPIDIO SUBSYSTEM
2689P: Matt Porter
2690M: mporter@kernel.crashing.org
2691L: linux-kernel@vger.kernel.org
2692S: Maintained
2693
Josh Triplett595182b2006-10-04 02:17:21 -07002694READ-COPY UPDATE (RCU)
2695P: Dipankar Sarma
2696M: dipankar@in.ibm.com
2697W: http://www.rdrop.com/users/paulmck/rclock/
2698L: linux-kernel@vger.kernel.org
2699S: Supported
2700
2701RCUTORTURE MODULE
2702P: Josh Triplett
2703M: josh@freedesktop.org
2704L: linux-kernel@vger.kernel.org
2705S: Maintained
2706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707REAL TIME CLOCK DRIVER
2708P: Paul Gortmaker
2709M: p_gortmaker@yahoo.com
2710L: linux-kernel@vger.kernel.org
2711S: Maintained
2712
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002713REAL TIME CLOCK (RTC) SUBSYSTEM
2714P: Alessandro Zummo
2715M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002716L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002717S: Maintained
2718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719REISERFS FILE SYSTEM
2720P: Hans Reiser
2721M: reiserfs-dev@namesys.com
2722L: reiserfs-list@namesys.com
2723W: http://www.namesys.com
2724S: Supported
2725
2726ROCKETPORT DRIVER
2727P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728W: http://www.comtrol.com
2729S: Maintained
2730
2731ROSE NETWORK LAYER
2732P: Ralf Baechle
2733M: ralf@linux-mips.org
2734L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002735W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736S: Maintained
2737
2738RISCOM8 DRIVER
2739S: Orphan
2740
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002741S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002742P: Antonino Daplas
2743M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002744L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002745S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002746
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747S390
2748P: Martin Schwidefsky
2749M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002750P: Heiko Carstens
2751M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752M: linux390@de.ibm.com
2753L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002754W: http://www.ibm.com/developerworks/linux/linux390/
2755S: Supported
2756
2757S390 NETWORK DRIVERS
2758P: Frank Pavlic
2759M: fpavlic@de.ibm.com
2760M: linux390@de.ibm.com
2761L: linux-390@vm.marist.edu
2762W: http://www.ibm.com/developerworks/linux/linux390/
2763S: Supported
2764
2765S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002766P: Swen Schillig
2767M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002768M: linux390@de.ibm.com
2769L: linux-390@vm.marist.edu
2770W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771S: Supported
2772
2773SAA7146 VIDEO4LINUX-2 DRIVER
2774P: Michael Hunold
2775M: michael@mihu.de
2776W: http://www.mihu.de/linux/saa7146
2777S: Maintained
2778
2779SBPCD CDROM DRIVER
2780P: Eberhard Moenkeberg
2781M: emoenke@gwdg.de
2782L: linux-kernel@vger.kernel.org
2783S: Maintained
2784
2785SC1200 WDT DRIVER
2786P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002787M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788S: Maintained
2789
2790SCHEDULER
2791P: Ingo Molnar
2792M: mingo@elte.hu
2793P: Robert Love [the preemptible kernel bits]
2794M: rml@tech9.net
2795L: linux-kernel@vger.kernel.org
2796S: Maintained
2797
2798SCSI CDROM DRIVER
2799P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002800M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801L: linux-scsi@vger.kernel.org
2802W: http://www.kernel.dk
2803S: Maintained
2804
2805SCSI SG DRIVER
2806P: Doug Gilbert
2807M: dgilbert@interlog.com
2808L: linux-scsi@vger.kernel.org
2809W: http://www.torque.net/sg
2810S: Maintained
2811
2812SCSI SUBSYSTEM
2813P: James E.J. Bottomley
2814M: James.Bottomley@SteelEye.com
2815L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002816T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817S: Maintained
2818
2819SCSI TAPE DRIVER
2820P: Kai Mäkisara
2821M: Kai.Makisara@kolumbus.fi
2822L: linux-scsi@vger.kernel.org
2823S: Maintained
2824
2825SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002826P: Sridhar Samudrala
2827M: sri@us.ibm.com
2828L: lksctp-developers@lists.sourceforge.net
2829S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002832P: Jim Cromie
2833M: jim.cromie@gmail.com
2834S: Odd Fixes
2835
2836SCx200 GPIO DRIVER
2837P: Jim Cromie
2838M: jim.cromie@gmail.com
2839S: Maintained
2840
2841SCx200 HRT CLOCKSOURCE DRIVER
2842P: Jim Cromie
2843M: jim.cromie@gmail.com
2844S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
2846SECURITY CONTACT
2847P: Security Officers
2848M: security@kernel.org
2849S: Supported
2850
2851SELINUX SECURITY MODULE
2852P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002853M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002855M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856L: linux-kernel@vger.kernel.org (kernel issues)
2857L: selinux@tycho.nsa.gov (general discussion)
2858W: http://www.nsa.gov/selinux
2859S: Supported
2860
2861SERIAL ATA (SATA) SUBSYSTEM:
2862P: Jeff Garzik
2863M: jgarzik@pobox.com
2864L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002865T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866S: Supported
2867
2868SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2869P: Pat Gefre
2870M: pfg@sgi.com
2871L: linux-ia64@vger.kernel.org
2872S: Supported
2873
2874SGI VISUAL WORKSTATION 320 AND 540
2875P: Andrey Panin
2876M: pazke@donpac.ru
2877L: linux-visws-devel@lists.sf.net
2878W: http://linux-visws.sf.net
2879S: Maintained for 2.6.
2880
2881SIMTEC EB110ATX (Chalice CATS)
2882P: Ben Dooks
2883P: Vincent Sanders
2884M: support@simtec.co.uk
2885W: http://www.simtec.co.uk/products/EB110ATX/
2886S: Supported
2887
2888SIMTEC EB2410ITX (BAST)
2889P: Ben Dooks
2890P: Vincent Sanders
2891M: support@simtec.co.uk
2892W: http://www.simtec.co.uk/products/EB2410ITX/
2893S: Supported
2894
Francois Romieu92aab3c2005-07-30 13:11:18 +02002895SIS 190 ETHERNET DRIVER
2896P: Francois Romieu
2897M: romieu@fr.zoreil.com
2898L: netdev@vger.kernel.org
2899S: Maintained
2900
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901SIS 5513 IDE CONTROLLER DRIVER
2902P: Lionel Bouton
2903M: Lionel.Bouton@inet6.fr
2904W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2905W: http://gyver.homeip.net/sis5513/index.html
2906S: Maintained
2907
2908SIS 900/7016 FAST ETHERNET DRIVER
2909P: Daniele Venzano
2910M: venza@brownhat.org
2911W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002912L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913S: Maintained
2914
2915SIS FRAMEBUFFER DRIVER
2916P: Thomas Winischhofer
2917M: thomas@winischhofer.net
2918W: http://www.winischhofer.net/linuxsisvga.shtml
2919S: Maintained
2920
2921SIS USB2VGA DRIVER
2922P: Thomas Winischhofer
2923M: thomas@winischhofer.net
2924W: http://www.winischhofer.at/linuxsisusbvga.shtml
2925S: Maintained
2926
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927SMC91x ETHERNET DRIVER
2928P: Nicolas Pitre
2929M: nico@cam.org
2930S: Maintained
2931
Daniel Drake8f0f8502006-07-18 22:00:25 +01002932SOFTMAC LAYER (IEEE 802.11)
2933P: Johannes Berg
2934M: johannes@sipsolutions.net
2935P: Joe Jezak
2936M: josejx@gentoo.org
2937P: Daniel Drake
2938M: dsd@gentoo.org
2939W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002940L: netdev@vger.kernel.org
2941S: Maintained
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943SOFTWARE RAID (Multiple Disks) SUPPORT
2944P: Ingo Molnar
2945M: mingo@redhat.com
2946P: Neil Brown
2947M: neilb@cse.unsw.edu.au
2948L: linux-raid@vger.kernel.org
2949S: Maintained
2950
2951SOFTWARE SUSPEND:
2952P: Pavel Machek
2953M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002954L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955S: Maintained
2956
2957SONIC NETWORK DRIVER
2958P: Thomas Bogendoerfer
2959M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002960L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961S: Maintained
2962
2963SONY VAIO CONTROL DEVICE DRIVER
2964P: Stelian Pop
2965M: stelian@popies.net
2966W: http://popies.net/sonypi/
2967S: Maintained
2968
2969SOUND
2970P: Jaroslav Kysela
2971M: perex@suse.cz
2972L: alsa-devel@alsa-project.org
2973S: Maintained
2974
Kumar Gala025c3982006-04-02 16:05:54 -05002975SPI SUBSYSTEM
2976P: David Brownell
2977M: dbrownell@users.sourceforge.net
2978L: spi-devel-general@lists.sourceforge.net
2979S: Maintained
2980
Steven Rostedt855f46a2006-08-05 12:14:50 -07002981STABLE BRANCH:
2982P: Greg Kroah-Hartman
2983M: greg@kroah.com
2984P: Chris Wright
2985M: chrisw@sous-sol.org
2986L: stable@kernel.org
2987S: Maintained
2988
Kylene Hall1c72d462005-05-01 08:59:13 -07002989TPM DEVICE DRIVER
2990P: Kylene Hall
2991M: kjhall@us.ibm.com
2992W: http://tpmdd.sourceforge.net
2993L: tpmdd-devel@lists.sourceforge.net
2994S: Maintained
2995
Mark Gross1a80ba82005-10-30 15:02:55 -08002996Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002997P: Mark Gross
2998M: mark.gross@intel.com
2999S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003000
Chris Zankel48b415c2005-06-23 22:01:07 -07003001TENSILICA XTENSA PORT (xtensa):
3002P: Chris Zankel
3003M: chris@zankel.net
3004S: Maintained
3005
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006UltraSPARC (sparc64):
3007P: David S. Miller
3008M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003010T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011S: Maintained
3012
3013SHARP LH SUPPORT (LH7952X & LH7A40X)
3014P: Marc Singer
3015M: elf@buici.com
3016W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003017L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018S: Maintained
3019
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003020SHPC HOTPLUG DRIVER
3021P: Kristen Carlson Accardi
3022M: kristen.c.accardi@intel.com
3023L: pcihpd-discuss@lists.sourceforge.net
3024S: Maintained
3025
Pierre Ossmand129bce2006-03-24 03:18:17 -08003026SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3027P: Pierre Ossman
3028M: drzeus-sdhci@drzeus.cx
3029L: sdhci-devel@list.drzeus.cx
3030W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3031S: Maintained
3032
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003033SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3034P: Stephen Hemminger
3035M: shemminger@osdl.org
3036L: netdev@vger.kernel.org
3037S: Maintained
3038
Chris Boot1a87d942006-07-10 04:45:34 -07003039SOEKRIS NET48XX LED SUPPORT
3040P: Chris Boot
3041M: bootc@bootc.net
3042S: Maintained
3043
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044SPARC (sparc32):
3045P: William L. Irwin
3046M: wli@holomorphy.com
3047L: sparclinux@vger.kernel.org
3048S: Maintained
3049
3050SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3051P: Roger Wolff
3052M: R.E.Wolff@BitWizard.nl
3053L: linux-kernel@vger.kernel.org ?
3054S: Supported
3055
Jim Lewis2752e402006-09-29 02:01:19 -07003056SPIDERNET NETWORK DRIVER for CELL
3057P: Jim Lewis
3058M: jim@jklewis.com
3059L: netdev@vger.kernel.org
3060S: Supported
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062SRM (Alpha) environment access
3063P: Jan-Benedict Glaw
3064M: jbglaw@lug-owl.de
3065L: linux-kernel@vger.kernel.org
3066S: Maintained
3067
3068STARFIRE/DURALAN NETWORK DRIVER
3069P: Ion Badulescu
3070M: ionut@cs.columbia.edu
3071S: Maintained
3072
3073STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3074W: http://mosquitonet.Stanford.EDU/strip.html
3075S: Unsupported ?
3076
3077STRADIS MPEG-2 DECODER DRIVER
3078P: Nathan Laredo
3079M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080W: http://www.stradis.com/
3081S: Maintained
3082
3083SUPERH (sh)
3084P: Paul Mundt
3085M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003086L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088S: Maintained
3089
3090SUPERH64 (sh64)
3091P: Paul Mundt
3092M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093L: linuxsh-shmedia-dev@lists.sourceforge.net
3094W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095S: Maintained
3096
3097SUN3/3X
3098P: Sam Creasey
3099M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100W: http://sammy.net/sun3/
3101S: Maintained
3102
3103SVGA HANDLING
3104P: Martin Mares
3105M: mj@ucw.cz
3106L: linux-video@atrey.karlin.mff.cuni.cz
3107S: Maintained
3108
3109SYSV FILESYSTEM
3110P: Christoph Hellwig
3111M: hch@infradead.org
3112S: Maintained
3113
Stephen Hemminger781b4562006-07-10 20:25:29 -07003114TC CLASSIFIER
3115P: Jamal Hadi Salim
3116M: hadi@cyberus.ca
3117L: netdev@vger.kernel.org
3118S: Maintained
3119
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003120TCP LOW PRIORITY MODULE
3121P: Wong Hoi Sing, Edison
3122M: hswong3i@gmail.com
3123P: Hung Hing Lun, Mike
3124M: hlhung3i@gmail.com
3125W: http://tcp-lp-mod.sourceforge.net/
3126S: Maintained
3127
Alex Dubov4020f2d2006-10-04 02:15:37 -07003128TI FLASH MEDIA INTERFACE DRIVER
3129P: Alex Dubov
3130M: oakad@yahoo.com
3131S: Maintained
3132
Michael Buesch844dd052006-06-26 00:24:59 -07003133TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3134P: Deepak Saxena
3135M: dsaxena@plexity.net
3136S: Maintained
3137
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003138TASKSTATS STATISTICS INTERFACE
3139P: Shailabh Nagar
3140M: nagar@watson.ibm.com
3141L: linux-kernel@vger.kernel.org
3142S: Maintained
3143
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003145P: Romain Lievin
3146M: roms@lpg.ticalc.org
3147S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Per Lidene86eaa32006-01-12 16:45:18 +01003149TIPC NETWORK LAYER
3150P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003151M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003152P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003153M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003154P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003155M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003156L: tipc-discussion@lists.sourceforge.net
3157W: http://tipc.sourceforge.net/
3158W: http://tipc.cslab.ericsson.net/
3159T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3160S: Maintained
3161
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162TLAN NETWORK DRIVER
3163P: Samuel Chessman
3164M: chessman@tux.org
3165L: tlan-devel@lists.sourceforge.net
3166W: http://sourceforge.net/projects/tlan/
3167S: Maintained
3168
3169TOKEN-RING NETWORK DRIVER
3170P: Mike Phillips
3171M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003172L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173L: linux-tr@linuxtr.net
3174W: http://www.linuxtr.net
3175S: Maintained
3176
3177TOSHIBA ACPI EXTRAS DRIVER
3178P: John Belmonte
3179M: toshiba_acpi@memebeam.org
3180W: http://memebeam.org/toys/ToshibaAcpiDriver
3181S: Maintained
3182
3183TOSHIBA SMM DRIVER
3184P: Jonathan Buzzard
3185M: jonathan@buzzard.org.uk
3186L: tlinux-users@tce.toshiba-dme.co.jp
3187W: http://www.buzzard.org.uk/toshiba/
3188S: Maintained
3189
3190TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3191P: Muli Ben-Yehuda
3192M: mulix@mulix.org
3193L: linux-kernel@vger.kernel.org
3194S: Maintained
3195
3196TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003197P: Adrian Bunk
3198M: trivial@kernel.org
3199L: linux-kernel@vger.kernel.org
3200W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3201T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3202S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
3204TMS380 TOKEN-RING NETWORK DRIVER
3205P: Adam Fritzler
3206M: mid@auk.cx
3207L: linux-tr@linuxtr.net
3208W: http://www.auk.cx/tms380tr/
3209S: Maintained
3210
3211TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003212P: Valerie Henson
3213M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214L: tulip-users@lists.sourceforge.net
3215W: http://sourceforge.net/projects/tulip/
3216S: Maintained
3217
3218TUN/TAP driver
3219P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003220M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221L: vtun@office.satix.net
3222W: http://vtun.sourceforge.net/tun
3223S: Maintained
3224
3225U14-34F SCSI DRIVER
3226P: Dario Ballabio
3227M: ballabio_dario@emc.com
3228L: linux-scsi@vger.kernel.org
3229S: Maintained
3230
3231UDF FILESYSTEM
3232P: Ben Fennema
3233M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234W: http://linux-udf.sourceforge.net
3235S: Maintained
3236
3237UNIFORM CDROM DRIVER
3238P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003239M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240L: linux-kernel@vger.kernel.org
3241W: http://www.kernel.dk
3242S: Maintained
3243
3244USB ACM DRIVER
3245P: Oliver Neukum
3246M: oliver@neukum.name
3247L: linux-usb-users@lists.sourceforge.net
3248L: linux-usb-devel@lists.sourceforge.net
3249S: Maintained
3250
3251USB BLOCK DRIVER (UB ub)
3252P: Pete Zaitcev
3253M: zaitcev@redhat.com
3254L: linux-kernel@vger.kernel.org
3255L: linux-usb-devel@lists.sourceforge.net
3256S: Supported
3257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258USB CDC ETHERNET DRIVER
3259P: Greg Kroah-Hartman
3260M: greg@kroah.com
3261L: linux-usb-users@lists.sourceforge.net
3262L: linux-usb-devel@lists.sourceforge.net
3263S: Maintained
3264W: http://www.kroah.com/linux-usb/
3265
3266USB EHCI DRIVER
3267P: David Brownell
3268M: dbrownell@users.sourceforge.net
3269L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003270S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
Luca Risolia7ce08c92006-01-11 02:06:59 +00003272USB ET61X[12]51 DRIVER
3273P: Luca Risolia
3274M: luca.risolia@studio.unibo.it
3275L: linux-usb-devel@lists.sourceforge.net
3276L: video4linux-list@redhat.com
3277W: http://www.linux-projects.org
3278S: Maintained
3279
David Brownell69ae9e32006-11-14 02:03:31 -08003280USB GADGET/PERIPHERAL SUBSYSTEM
3281P: David Brownell
3282M: dbrownell@users.sourceforge.net
3283L: linux-usb-devel@lists.sourceforge.net
3284W: http://www.linux-usb.org/gadget
3285S: Maintained
3286
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287USB HID/HIDBP DRIVERS
3288P: Vojtech Pavlik
3289M: vojtech@suse.cz
3290L: linux-usb-users@lists.sourceforge.net
3291L: linux-usb-devel@lists.sourceforge.net
3292S: Maintained
3293
3294USB HUB DRIVER
3295P: Johannes Erdfelt
3296M: johannes@erdfelt.com
3297L: linux-usb-users@lists.sourceforge.net
3298L: linux-usb-devel@lists.sourceforge.net
3299S: Maintained
3300
Olav Kongas959eea22005-11-03 17:38:14 +02003301USB ISP116X DRIVER
3302P: Olav Kongas
3303M: ok@artecdesign.ee
3304L: linux-usb-devel@lists.sourceforge.net
3305S: Maintained
3306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307USB KAWASAKI LSI DRIVER
3308P: Oliver Neukum
3309M: oliver@neukum.name
3310L: linux-usb-users@lists.sourceforge.net
3311L: linux-usb-devel@lists.sourceforge.net
3312S: Maintained
3313
3314USB MASS STORAGE DRIVER
3315P: Matthew Dharm
3316M: mdharm-usb@one-eyed-alien.net
3317L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003318L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319S: Maintained
3320W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3321
3322USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003323P: David Brownell
3324M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325L: linux-usb-users@lists.sourceforge.net
3326L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003327S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
Matthias Urlichsba460e42005-07-14 00:33:47 -07003329USB OPTION-CARD DRIVER
3330P: Matthias Urlichs
3331M: smurf@smurf.noris.de
3332L: linux-usb-devel@lists.sourceforge.net
3333S: Maintained
3334
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335USB OV511 DRIVER
3336P: Mark McClelland
3337M: mmcclell@bigfoot.com
3338L: linux-usb-users@lists.sourceforge.net
3339L: linux-usb-devel@lists.sourceforge.net
3340W: http://alpha.dyndns.org/ov511/
3341S: Maintained
3342
3343USB PEGASUS DRIVER
3344P: Petko Manolov
3345M: petkan@users.sourceforge.net
3346L: linux-usb-users@lists.sourceforge.net
3347L: linux-usb-devel@lists.sourceforge.net
3348W: http://pegasus2.sourceforge.net/
3349S: Maintained
3350
3351USB PRINTER DRIVER
3352P: Vojtech Pavlik
3353M: vojtech@suse.cz
3354L: linux-usb-users@lists.sourceforge.net
3355L: linux-usb-devel@lists.sourceforge.net
3356S: Maintained
3357
3358USB RTL8150 DRIVER
3359P: Petko Manolov
3360M: petkan@users.sourceforge.net
3361L: linux-usb-users@lists.sourceforge.net
3362L: linux-usb-devel@lists.sourceforge.net
3363W: http://pegasus2.sourceforge.net/
3364S: Maintained
3365
3366USB SE401 DRIVER
3367P: Jeroen Vreeken
3368M: pe1rxq@amsat.org
3369L: linux-usb-users@lists.sourceforge.net
3370L: linux-usb-devel@lists.sourceforge.net
3371W: http://www.chello.nl/~j.vreeken/se401/
3372S: Maintained
3373
3374USB SERIAL CYBERJACK DRIVER
3375P: Matthias Bruestle and Harald Welte
3376M: support@reiner-sct.com
3377W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3378S: Maintained
3379
3380USB SERIAL DIGI ACCELEPORT DRIVER
3381P: Peter Berger and Al Borchers
3382M: pberger@brimson.com
3383M: alborchers@steinerpoint.com
3384L: linux-usb-users@lists.sourceforge.net
3385L: linux-usb-devel@lists.sourceforge.net
3386S: Maintained
3387
3388USB SERIAL DRIVER
3389P: Greg Kroah-Hartman
3390M: gregkh@suse.de
3391L: linux-usb-users@lists.sourceforge.net
3392L: linux-usb-devel@lists.sourceforge.net
3393S: Supported
3394
3395USB SERIAL BELKIN F5U103 DRIVER
3396P: William Greathouse
3397M: wgreathouse@smva.com
3398L: linux-usb-users@lists.sourceforge.net
3399L: linux-usb-devel@lists.sourceforge.net
3400S: Maintained
3401
3402USB SERIAL CYPRESS M8 DRIVER
3403P: Lonnie Mendez
3404M: dignome@gmail.com
3405L: linux-usb-users@lists.sourceforge.net
3406L: linux-usb-devel@lists.sourceforge.net
3407S: Maintained
3408W: http://geocities.com/i0xox0i
3409W: http://firstlight.net/cvs
3410
3411USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3412L: linux-usb-users@lists.sourceforge.net
3413L: linux-usb-devel@lists.sourceforge.net
3414S: Maintained
3415
3416USB AUERSWALD DRIVER
3417P: Wolfgang Muees
3418M: wolfgang@iksw-muees.de
3419L: linux-usb-users@lists.sourceforge.net
3420L: linux-usb-devel@lists.sourceforge.net
3421S: Maintained
3422
3423USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3424P: Gary Brubaker
3425M: xavyer@ix.netcom.com
3426L: linux-usb-users@lists.sourceforge.net
3427L: linux-usb-devel@lists.sourceforge.net
3428S: Maintained
3429
3430USB SERIAL KEYSPAN DRIVER
3431P: Greg Kroah-Hartman
3432M: greg@kroah.com
3433L: linux-usb-users@lists.sourceforge.net
3434L: linux-usb-devel@lists.sourceforge.net
3435W: http://www.kroah.com/linux/
3436S: Maintained
3437
3438USB SERIAL WHITEHEAT DRIVER
3439P: Stuart MacDonald
3440M: stuartm@connecttech.com
3441L: linux-usb-users@lists.sourceforge.net
3442L: linux-usb-devel@lists.sourceforge.net
3443W: http://www.connecttech.com
3444S: Supported
3445
3446USB SN9C10x DRIVER
3447P: Luca Risolia
3448M: luca.risolia@studio.unibo.it
3449L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003450L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451W: http://www.linux-projects.org
3452S: Maintained
3453
3454USB SUBSYSTEM
3455P: Greg Kroah-Hartman
3456M: gregkh@suse.de
3457L: linux-usb-users@lists.sourceforge.net
3458L: linux-usb-devel@lists.sourceforge.net
3459W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003460T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461S: Supported
3462
3463USB UHCI DRIVER
3464P: Alan Stern
3465M: stern@rowland.harvard.edu
3466L: linux-usb-users@lists.sourceforge.net
3467L: linux-usb-devel@lists.sourceforge.net
3468S: Maintained
3469
David Brownell69ae9e32006-11-14 02:03:31 -08003470USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471P: David Brownell
3472M: dbrownell@users.sourceforge.net
3473L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003474W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475S: Maintained
3476
3477USB W996[87]CF DRIVER
3478P: Luca Risolia
3479M: luca.risolia@studio.unibo.it
3480L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003481L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482W: http://www.linux-projects.org
3483S: Maintained
3484
Luca Risolia60f78052006-02-06 16:29:35 +00003485USB ZC0301 DRIVER
3486P: Luca Risolia
3487M: luca.risolia@studio.unibo.it
3488L: linux-usb-devel@lists.sourceforge.net
3489L: video4linux-list@redhat.com
3490W: http://www.linux-projects.org
3491S: Maintained
3492
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493USB ZD1201 DRIVER
3494P: Jeroen Vreeken
3495M: pe1rxq@amsat.org
3496L: linux-usb-users@lists.sourceforge.net
3497L: linux-usb-devel@lists.sourceforge.net
3498W: http://linux-lc100020.sourceforge.net
3499S: Maintained
3500
3501USER-MODE LINUX
3502P: Jeff Dike
3503M: jdike@karaya.com
3504L: user-mode-linux-devel@lists.sourceforge.net
3505L: user-mode-linux-user@lists.sourceforge.net
3506W: http://user-mode-linux.sourceforge.net
3507S: Maintained
3508
3509FAT/VFAT/MSDOS FILESYSTEM:
3510P: OGAWA Hirofumi
3511M: hirofumi@mail.parknet.co.jp
3512L: linux-kernel@vger.kernel.org
3513S: Maintained
3514
3515VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3516P: Jeff Garzik
3517S: Odd fixes
3518
3519VIA RHINE NETWORK DRIVER
3520P: Roger Luethi
3521M: rl@hellgate.ch
3522S: Maintained
3523
Jean Delvare32c0a522005-09-22 21:47:58 +02003524VIAPRO SMBUS DRIVER
3525P: Jean Delvare
3526M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003527L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003528S: Maintained
3529
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530UCLINUX (AND M68KNOMMU)
3531P: Greg Ungerer
3532M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003534L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535S: Maintained
3536
3537UCLINUX FOR NEC V850
3538P: Miles Bader
3539M: uclinux-v850@lsi.nec.co.jp
3540W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3541W: http://www.ee.nec.de/uclinux/
3542S: Supported
3543
3544UCLINUX FOR RENESAS H8/300
3545P: Yoshinori Sato
3546M: ysato@users.sourceforge.jp
3547W: http://uclinux-h8.sourceforge.jp/
3548S: Supported
3549
3550USB DIAMOND RIO500 DRIVER
3551P: Cesar Miquel
3552M: miquel@df.uba.ar
3553L: rio500-users@lists.sourceforge.net
3554W: http://rio500.sourceforge.net
3555S: Maintained
3556
3557VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003558P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003559M: mchehab@infradead.org
3560M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003562W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003563T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003564S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
Juerg Haefligerab413192006-09-24 20:54:04 +02003566VT1211 HARDWARE MONITOR DRIVER
3567P: Juerg Haefliger
3568M: juergh@gmail.com
3569L: lm-sensors@lm-sensors.org
3570S: Maintained
3571
Roger Lucas1de9e372005-11-26 20:20:05 +01003572VT8231 HARDWARE MONITOR DRIVER
3573P: Roger Lucas
3574M: roger@planbit.co.uk
3575L: lm-sensors@lm-sensors.org
3576S: Maintained
3577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578W1 DALLAS'S 1-WIRE BUS
3579P: Evgeniy Polyakov
3580M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581S: Maintained
3582
Charles Spirakis13927072006-07-05 18:05:15 +02003583W83791D HARDWARE MONITORING DRIVER
3584P: Charles Spirakis
3585M: bezaur@gmail.com
3586L: lm-sensors@lm-sensors.org
3587S: Maintained
3588
Rudolf Marek61db0112006-12-12 18:18:30 +01003589W83793 HARDWARE MONITORING DRIVER
3590P: Rudolf Marek
3591M: r.marek@assembler.cz
3592L: lm-sensors@lm-sensors.org
3593S: Maintained
3594
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595W83L51xD SD/MMC CARD INTERFACE DRIVER
3596P: Pierre Ossman
3597M: drzeus-wbsd@drzeus.cx
3598L: wbsd-devel@list.drzeus.cx
3599W: http://projects.drzeus.cx/wbsd
3600S: Maintained
3601
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003602WATCHDOG DEVICE DRIVERS
3603P: Wim Van Sebroeck
3604M: wim@iguana.be
3605T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3606S: Maintained
3607
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3609P: Jean Tourrilhes
3610M: jt@hpl.hp.com
3611W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3612S: Maintained
3613
3614WD7000 SCSI DRIVER
3615P: Miroslav Zagorac
3616M: zaga@fly.cc.fer.hr
3617L: linux-scsi@vger.kernel.org
3618S: Maintained
3619
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003620WISTRON LAPTOP BUTTON DRIVER
3621P: Miloslav Trmac
3622M: mitr@volny.cz
3623S: Maintained
3624
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625WL3501 WIRELESS PCMCIA CARD DRIVER
3626P: Arnaldo Carvalho de Melo
3627M: acme@conectiva.com.br
3628W: http://advogato.org/person/acme
3629S: Maintained
3630
3631X.25 NETWORK LAYER
3632P: Henner Eisen
3633M: eis@baty.hanse.de
3634L: linux-x25@vger.kernel.org
3635S: Maintained
3636
3637XFS FILESYSTEM
3638P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003639P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003641L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003643T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644S: Supported
3645
Peter Korsgaard238b8722006-12-06 20:35:17 -08003646XILINX UARTLITE SERIAL DRIVER
3647P: Peter Korsgaard
3648M: jacmet@sunsite.dk
3649L: linux-serial@vger.kernel.org
3650S: Maintained
3651
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652X86 3-LEVEL PAGING (PAE) SUPPORT
3653P: Ingo Molnar
3654M: mingo@redhat.com
3655S: Maintained
3656
3657X86-64 port
3658P: Andi Kleen
3659M: ak@suse.de
3660L: discuss@x86-64.org
3661W: http://www.x86-64.org
3662S: Maintained
3663
3664YAM DRIVER FOR AX.25
3665P: Jean-Paul Roubelat
3666M: jpr@f6fbb.org
3667L: linux-hams@vger.kernel.org
3668S: Maintained
3669
Henkaf64a5e2005-10-12 15:02:56 +02003670YEALINK PHONE DRIVER
3671P: Henk Vergonet
3672M: Henk.Vergonet@gmail.com
3673L: usbb2k-api-dev@nongnu.org
3674S: Maintained
3675
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676Z8530 DRIVER FOR AX.25
3677P: Joerg Reuter
3678M: jreuter@yaina.de
3679W: http://yaina.de/jreuter/
3680W: http://www.qsl.net/dl1bke/
3681L: linux-hams@vger.kernel.org
3682S: Maintained
3683
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003684ZD1211RW WIRELESS DRIVER
3685P: Daniel Drake
3686M: dsd@gentoo.org
3687P: Ulrich Kunitz
3688M: kune@deine-taler.de
3689W: http://zd1211.ath.cx/wiki/DriverRewrite
3690L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3691S: Maintained
3692
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693ZF MACHZ WATCHDOG
3694P: Fernando Fuganti
3695M: fuganti@netbank.com.br
3696W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3697S: Maintained
3698
3699ZR36067 VIDEO FOR LINUX DRIVER
3700P: Ronald Bultje
3701M: rbultje@ronald.bitfreak.net
3702L: mjpeg-users@lists.sourceforge.net
3703W: http://mjpeg.sourceforge.net/driver-zoran/
3704S: Maintained
3705
3706ZR36120 VIDEO FOR LINUX DRIVER
3707P: Pauline Middelink
3708M: middelin@polyware.nl
3709W: http://www.polyware.nl/~middelin/En/hobbies.html
3710W: http://www.polyware.nl/~middelin/hobbies.html
3711S: Maintained
3712
3713THE REST
3714P: Linus Torvalds
3715S: Buried alive in reporters