blob: 0f6d13bd4688fc6a11a471dba16e3a1401837765 [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
Len Brown0b67d942006-12-22 21:18:56 -0500535P: Corentin Chary
536M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537P: Karol Kozimor
538M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539L: acpi4asus-user@lists.sourceforge.net
540W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500541W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542S: 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 Becker62ca3d262006-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 Peake18b36c712006-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
2582PPP PROTOCOL DRIVERS AND COMPRESSORS
2583P: Paul Mackerras
2584M: paulus@samba.org
2585L: linux-ppp@vger.kernel.org
2586S: Maintained
2587
2588PPP OVER ATM (RFC 2364)
2589P: Mitchell Blank Jr
2590M: mitch@sfgoth.com
2591S: Maintained
2592
2593PPP OVER ETHERNET
2594P: Michal Ostrowski
2595M: mostrows@speakeasy.net
2596S: Maintained
2597
2598PREEMPTIBLE KERNEL
2599P: Robert Love
2600M: rml@tech9.net
2601L: linux-kernel@vger.kernel.org
2602L: kpreempt-tech@lists.sourceforge.net
2603W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2604S: Supported
2605
2606PRISM54 WIRELESS DRIVER
2607P: Prism54 Development Team
2608M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002609L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610W: http://prism54.org
2611S: Maintained
2612
2613PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2614P: Peter Denison
2615M: promise@pnd-pc.demon.co.uk
2616W: http://www.pnd-pc.demon.co.uk/promise/
2617S: Maintained
2618
Geoff Levandf58a9d12006-11-23 00:46:51 +01002619PS3 PLATFORM SUPPORT
2620P: Geoff Levand
2621M: geoffrey.levand@am.sony.com
2622L: linuxppc-dev@ozlabs.org
2623L: cbe-oss-dev@ozlabs.org
2624S: Supported
2625
Michael Krufky83202042006-07-03 00:24:18 -07002626PVRUSB2 VIDEO4LINUX DRIVER
2627P: Mike Isely
2628M: isely@pobox.com
2629L: pvrusb2@isely.net
2630L: video4linux-list@redhat.com
2631W: http://www.isely.net/pvrusb2/
2632S: Maintained
2633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634PXA2xx SUPPORT
2635P: Nicolas Pitre
2636M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002637L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638S: Maintained
2639
2640QLOGIC QLA2XXX FC-SCSI DRIVER
2641P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002642M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643L: linux-scsi@vger.kernel.org
2644S: Supported
2645
Ron Mercer5a4faa872006-07-25 00:40:21 -07002646QLOGIC QLA3XXX NETWORK DRIVER
2647P: Ron Mercer
2648M: linux-driver@qlogic.com
2649L: netdev@vger.kernel.org
2650S: Supported
2651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652QNX4 FILESYSTEM
2653P: Anders Larsen
2654M: al@alarsen.net
2655L: linux-kernel@vger.kernel.org
2656W: http://www.alarsen.net/linux/qnx4fs/
2657S: Maintained
2658
2659RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002660P: Benjamin Herrenschmidt
2661M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002662L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663S: Maintained
2664
2665RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002666P: Paul Mackerras
2667M: paulus@samba.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
2671RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2672P: Corey Thomas
2673M: corey@world.std.com
2674L: linux-kernel@vger.kernel.org
2675S: Maintained
2676
Matt Mackall9e95ce22005-04-16 15:25:56 -07002677RANDOM NUMBER DRIVER
2678P: Matt Mackall
2679M: mpm@selenic.com
2680S: Maintained
2681
Matt Porter394b7012005-11-07 01:00:15 -08002682RAPIDIO SUBSYSTEM
2683P: Matt Porter
2684M: mporter@kernel.crashing.org
2685L: linux-kernel@vger.kernel.org
2686S: Maintained
2687
Josh Triplett595182b2006-10-04 02:17:21 -07002688READ-COPY UPDATE (RCU)
2689P: Dipankar Sarma
2690M: dipankar@in.ibm.com
2691W: http://www.rdrop.com/users/paulmck/rclock/
2692L: linux-kernel@vger.kernel.org
2693S: Supported
2694
2695RCUTORTURE MODULE
2696P: Josh Triplett
2697M: josh@freedesktop.org
2698L: linux-kernel@vger.kernel.org
2699S: Maintained
2700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701REAL TIME CLOCK DRIVER
2702P: Paul Gortmaker
2703M: p_gortmaker@yahoo.com
2704L: linux-kernel@vger.kernel.org
2705S: Maintained
2706
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002707REAL TIME CLOCK (RTC) SUBSYSTEM
2708P: Alessandro Zummo
2709M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002710L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002711S: Maintained
2712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713REISERFS FILE SYSTEM
2714P: Hans Reiser
2715M: reiserfs-dev@namesys.com
2716L: reiserfs-list@namesys.com
2717W: http://www.namesys.com
2718S: Supported
2719
2720ROCKETPORT DRIVER
2721P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722W: http://www.comtrol.com
2723S: Maintained
2724
2725ROSE NETWORK LAYER
2726P: Ralf Baechle
2727M: ralf@linux-mips.org
2728L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002729W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730S: Maintained
2731
2732RISCOM8 DRIVER
2733S: Orphan
2734
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002735S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002736P: Antonino Daplas
2737M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002738L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002739S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741S390
2742P: Martin Schwidefsky
2743M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002744P: Heiko Carstens
2745M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746M: linux390@de.ibm.com
2747L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002748W: http://www.ibm.com/developerworks/linux/linux390/
2749S: Supported
2750
2751S390 NETWORK DRIVERS
2752P: Frank Pavlic
2753M: fpavlic@de.ibm.com
2754M: linux390@de.ibm.com
2755L: linux-390@vm.marist.edu
2756W: http://www.ibm.com/developerworks/linux/linux390/
2757S: Supported
2758
2759S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002760P: Swen Schillig
2761M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002762M: linux390@de.ibm.com
2763L: linux-390@vm.marist.edu
2764W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765S: Supported
2766
2767SAA7146 VIDEO4LINUX-2 DRIVER
2768P: Michael Hunold
2769M: michael@mihu.de
2770W: http://www.mihu.de/linux/saa7146
2771S: Maintained
2772
2773SBPCD CDROM DRIVER
2774P: Eberhard Moenkeberg
2775M: emoenke@gwdg.de
2776L: linux-kernel@vger.kernel.org
2777S: Maintained
2778
2779SC1200 WDT DRIVER
2780P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002781M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782S: Maintained
2783
2784SCHEDULER
2785P: Ingo Molnar
2786M: mingo@elte.hu
2787P: Robert Love [the preemptible kernel bits]
2788M: rml@tech9.net
2789L: linux-kernel@vger.kernel.org
2790S: Maintained
2791
2792SCSI CDROM DRIVER
2793P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002794M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795L: linux-scsi@vger.kernel.org
2796W: http://www.kernel.dk
2797S: Maintained
2798
2799SCSI SG DRIVER
2800P: Doug Gilbert
2801M: dgilbert@interlog.com
2802L: linux-scsi@vger.kernel.org
2803W: http://www.torque.net/sg
2804S: Maintained
2805
2806SCSI SUBSYSTEM
2807P: James E.J. Bottomley
2808M: James.Bottomley@SteelEye.com
2809L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002810T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811S: Maintained
2812
2813SCSI TAPE DRIVER
2814P: Kai Mäkisara
2815M: Kai.Makisara@kolumbus.fi
2816L: linux-scsi@vger.kernel.org
2817S: Maintained
2818
2819SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002820P: Sridhar Samudrala
2821M: sri@us.ibm.com
2822L: lksctp-developers@lists.sourceforge.net
2823S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
2825SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002826P: Jim Cromie
2827M: jim.cromie@gmail.com
2828S: Odd Fixes
2829
2830SCx200 GPIO DRIVER
2831P: Jim Cromie
2832M: jim.cromie@gmail.com
2833S: Maintained
2834
2835SCx200 HRT CLOCKSOURCE DRIVER
2836P: Jim Cromie
2837M: jim.cromie@gmail.com
2838S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840SECURITY CONTACT
2841P: Security Officers
2842M: security@kernel.org
2843S: Supported
2844
2845SELINUX SECURITY MODULE
2846P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002847M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002849M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850L: linux-kernel@vger.kernel.org (kernel issues)
2851L: selinux@tycho.nsa.gov (general discussion)
2852W: http://www.nsa.gov/selinux
2853S: Supported
2854
2855SERIAL ATA (SATA) SUBSYSTEM:
2856P: Jeff Garzik
2857M: jgarzik@pobox.com
2858L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002859T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860S: Supported
2861
2862SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2863P: Pat Gefre
2864M: pfg@sgi.com
2865L: linux-ia64@vger.kernel.org
2866S: Supported
2867
2868SGI VISUAL WORKSTATION 320 AND 540
2869P: Andrey Panin
2870M: pazke@donpac.ru
2871L: linux-visws-devel@lists.sf.net
2872W: http://linux-visws.sf.net
2873S: Maintained for 2.6.
2874
2875SIMTEC EB110ATX (Chalice CATS)
2876P: Ben Dooks
2877P: Vincent Sanders
2878M: support@simtec.co.uk
2879W: http://www.simtec.co.uk/products/EB110ATX/
2880S: Supported
2881
2882SIMTEC EB2410ITX (BAST)
2883P: Ben Dooks
2884P: Vincent Sanders
2885M: support@simtec.co.uk
2886W: http://www.simtec.co.uk/products/EB2410ITX/
2887S: Supported
2888
Francois Romieu92aab3c2005-07-30 13:11:18 +02002889SIS 190 ETHERNET DRIVER
2890P: Francois Romieu
2891M: romieu@fr.zoreil.com
2892L: netdev@vger.kernel.org
2893S: Maintained
2894
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895SIS 5513 IDE CONTROLLER DRIVER
2896P: Lionel Bouton
2897M: Lionel.Bouton@inet6.fr
2898W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2899W: http://gyver.homeip.net/sis5513/index.html
2900S: Maintained
2901
2902SIS 900/7016 FAST ETHERNET DRIVER
2903P: Daniele Venzano
2904M: venza@brownhat.org
2905W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002906L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907S: Maintained
2908
2909SIS FRAMEBUFFER DRIVER
2910P: Thomas Winischhofer
2911M: thomas@winischhofer.net
2912W: http://www.winischhofer.net/linuxsisvga.shtml
2913S: Maintained
2914
2915SIS USB2VGA DRIVER
2916P: Thomas Winischhofer
2917M: thomas@winischhofer.net
2918W: http://www.winischhofer.at/linuxsisusbvga.shtml
2919S: Maintained
2920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921SMC91x ETHERNET DRIVER
2922P: Nicolas Pitre
2923M: nico@cam.org
2924S: Maintained
2925
Daniel Drake8f0f8502006-07-18 22:00:25 +01002926SOFTMAC LAYER (IEEE 802.11)
2927P: Johannes Berg
2928M: johannes@sipsolutions.net
2929P: Joe Jezak
2930M: josejx@gentoo.org
2931P: Daniel Drake
2932M: dsd@gentoo.org
2933W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002934L: netdev@vger.kernel.org
2935S: Maintained
2936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937SOFTWARE RAID (Multiple Disks) SUPPORT
2938P: Ingo Molnar
2939M: mingo@redhat.com
2940P: Neil Brown
2941M: neilb@cse.unsw.edu.au
2942L: linux-raid@vger.kernel.org
2943S: Maintained
2944
2945SOFTWARE SUSPEND:
2946P: Pavel Machek
2947M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002948L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949S: Maintained
2950
2951SONIC NETWORK DRIVER
2952P: Thomas Bogendoerfer
2953M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002954L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955S: Maintained
2956
2957SONY VAIO CONTROL DEVICE DRIVER
2958P: Stelian Pop
2959M: stelian@popies.net
2960W: http://popies.net/sonypi/
2961S: Maintained
2962
2963SOUND
2964P: Jaroslav Kysela
2965M: perex@suse.cz
2966L: alsa-devel@alsa-project.org
2967S: Maintained
2968
Kumar Gala025c3982006-04-02 16:05:54 -05002969SPI SUBSYSTEM
2970P: David Brownell
2971M: dbrownell@users.sourceforge.net
2972L: spi-devel-general@lists.sourceforge.net
2973S: Maintained
2974
Steven Rostedt855f46a2006-08-05 12:14:50 -07002975STABLE BRANCH:
2976P: Greg Kroah-Hartman
2977M: greg@kroah.com
2978P: Chris Wright
2979M: chrisw@sous-sol.org
2980L: stable@kernel.org
2981S: Maintained
2982
Kylene Hall1c72d462005-05-01 08:59:13 -07002983TPM DEVICE DRIVER
2984P: Kylene Hall
2985M: kjhall@us.ibm.com
2986W: http://tpmdd.sourceforge.net
2987L: tpmdd-devel@lists.sourceforge.net
2988S: Maintained
2989
Mark Gross1a80ba82005-10-30 15:02:55 -08002990Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002991P: Mark Gross
2992M: mark.gross@intel.com
2993S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08002994
Chris Zankel48b415c2005-06-23 22:01:07 -07002995TENSILICA XTENSA PORT (xtensa):
2996P: Chris Zankel
2997M: chris@zankel.net
2998S: Maintained
2999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000UltraSPARC (sparc64):
3001P: David S. Miller
3002M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003004T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005S: Maintained
3006
3007SHARP LH SUPPORT (LH7952X & LH7A40X)
3008P: Marc Singer
3009M: elf@buici.com
3010W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003011L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012S: Maintained
3013
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003014SHPC HOTPLUG DRIVER
3015P: Kristen Carlson Accardi
3016M: kristen.c.accardi@intel.com
3017L: pcihpd-discuss@lists.sourceforge.net
3018S: Maintained
3019
Pierre Ossmand129bce2006-03-24 03:18:17 -08003020SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3021P: Pierre Ossman
3022M: drzeus-sdhci@drzeus.cx
3023L: sdhci-devel@list.drzeus.cx
3024W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3025S: Maintained
3026
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003027SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3028P: Stephen Hemminger
3029M: shemminger@osdl.org
3030L: netdev@vger.kernel.org
3031S: Maintained
3032
Chris Boot1a87d942006-07-10 04:45:34 -07003033SOEKRIS NET48XX LED SUPPORT
3034P: Chris Boot
3035M: bootc@bootc.net
3036S: Maintained
3037
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038SPARC (sparc32):
3039P: William L. Irwin
3040M: wli@holomorphy.com
3041L: sparclinux@vger.kernel.org
3042S: Maintained
3043
3044SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3045P: Roger Wolff
3046M: R.E.Wolff@BitWizard.nl
3047L: linux-kernel@vger.kernel.org ?
3048S: Supported
3049
Jim Lewis2752e402006-09-29 02:01:19 -07003050SPIDERNET NETWORK DRIVER for CELL
3051P: Jim Lewis
3052M: jim@jklewis.com
3053L: netdev@vger.kernel.org
3054S: Supported
3055
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056SRM (Alpha) environment access
3057P: Jan-Benedict Glaw
3058M: jbglaw@lug-owl.de
3059L: linux-kernel@vger.kernel.org
3060S: Maintained
3061
3062STARFIRE/DURALAN NETWORK DRIVER
3063P: Ion Badulescu
3064M: ionut@cs.columbia.edu
3065S: Maintained
3066
3067STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3068W: http://mosquitonet.Stanford.EDU/strip.html
3069S: Unsupported ?
3070
3071STRADIS MPEG-2 DECODER DRIVER
3072P: Nathan Laredo
3073M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074W: http://www.stradis.com/
3075S: Maintained
3076
3077SUPERH (sh)
3078P: Paul Mundt
3079M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003080L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082S: Maintained
3083
3084SUPERH64 (sh64)
3085P: Paul Mundt
3086M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087L: linuxsh-shmedia-dev@lists.sourceforge.net
3088W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089S: Maintained
3090
3091SUN3/3X
3092P: Sam Creasey
3093M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094W: http://sammy.net/sun3/
3095S: Maintained
3096
3097SVGA HANDLING
3098P: Martin Mares
3099M: mj@ucw.cz
3100L: linux-video@atrey.karlin.mff.cuni.cz
3101S: Maintained
3102
3103SYSV FILESYSTEM
3104P: Christoph Hellwig
3105M: hch@infradead.org
3106S: Maintained
3107
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003108TC CLASSIFIER
3109P: Jamal Hadi Salim
3110M: hadi@cyberus.ca
3111L: netdev@vger.kernel.org
3112S: Maintained
3113
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003114TCP LOW PRIORITY MODULE
3115P: Wong Hoi Sing, Edison
3116M: hswong3i@gmail.com
3117P: Hung Hing Lun, Mike
3118M: hlhung3i@gmail.com
3119W: http://tcp-lp-mod.sourceforge.net/
3120S: Maintained
3121
Alex Dubov4020f2d2006-10-04 02:15:37 -07003122TI FLASH MEDIA INTERFACE DRIVER
3123P: Alex Dubov
3124M: oakad@yahoo.com
3125S: Maintained
3126
Michael Buesch844dd052006-06-26 00:24:59 -07003127TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3128P: Deepak Saxena
3129M: dsaxena@plexity.net
3130S: Maintained
3131
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003132TASKSTATS STATISTICS INTERFACE
3133P: Shailabh Nagar
3134M: nagar@watson.ibm.com
3135L: linux-kernel@vger.kernel.org
3136S: Maintained
3137
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003139P: Romain Lievin
3140M: roms@lpg.ticalc.org
3141S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Per Lidene86eaa32006-01-12 16:45:18 +01003143TIPC NETWORK LAYER
3144P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003145M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003146P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003147M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003148P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003149M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003150L: tipc-discussion@lists.sourceforge.net
3151W: http://tipc.sourceforge.net/
3152W: http://tipc.cslab.ericsson.net/
3153T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3154S: Maintained
3155
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156TLAN NETWORK DRIVER
3157P: Samuel Chessman
3158M: chessman@tux.org
3159L: tlan-devel@lists.sourceforge.net
3160W: http://sourceforge.net/projects/tlan/
3161S: Maintained
3162
3163TOKEN-RING NETWORK DRIVER
3164P: Mike Phillips
3165M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003166L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167L: linux-tr@linuxtr.net
3168W: http://www.linuxtr.net
3169S: Maintained
3170
3171TOSHIBA ACPI EXTRAS DRIVER
3172P: John Belmonte
3173M: toshiba_acpi@memebeam.org
3174W: http://memebeam.org/toys/ToshibaAcpiDriver
3175S: Maintained
3176
3177TOSHIBA SMM DRIVER
3178P: Jonathan Buzzard
3179M: jonathan@buzzard.org.uk
3180L: tlinux-users@tce.toshiba-dme.co.jp
3181W: http://www.buzzard.org.uk/toshiba/
3182S: Maintained
3183
3184TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3185P: Muli Ben-Yehuda
3186M: mulix@mulix.org
3187L: linux-kernel@vger.kernel.org
3188S: Maintained
3189
3190TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003191P: Adrian Bunk
3192M: trivial@kernel.org
3193L: linux-kernel@vger.kernel.org
3194W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3195T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3196S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
3198TMS380 TOKEN-RING NETWORK DRIVER
3199P: Adam Fritzler
3200M: mid@auk.cx
3201L: linux-tr@linuxtr.net
3202W: http://www.auk.cx/tms380tr/
3203S: Maintained
3204
3205TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003206P: Valerie Henson
3207M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208L: tulip-users@lists.sourceforge.net
3209W: http://sourceforge.net/projects/tulip/
3210S: Maintained
3211
3212TUN/TAP driver
3213P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003214M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215L: vtun@office.satix.net
3216W: http://vtun.sourceforge.net/tun
3217S: Maintained
3218
3219U14-34F SCSI DRIVER
3220P: Dario Ballabio
3221M: ballabio_dario@emc.com
3222L: linux-scsi@vger.kernel.org
3223S: Maintained
3224
3225UDF FILESYSTEM
3226P: Ben Fennema
3227M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228W: http://linux-udf.sourceforge.net
3229S: Maintained
3230
3231UNIFORM CDROM DRIVER
3232P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003233M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234L: linux-kernel@vger.kernel.org
3235W: http://www.kernel.dk
3236S: Maintained
3237
3238USB ACM DRIVER
3239P: Oliver Neukum
3240M: oliver@neukum.name
3241L: linux-usb-users@lists.sourceforge.net
3242L: linux-usb-devel@lists.sourceforge.net
3243S: Maintained
3244
3245USB BLOCK DRIVER (UB ub)
3246P: Pete Zaitcev
3247M: zaitcev@redhat.com
3248L: linux-kernel@vger.kernel.org
3249L: linux-usb-devel@lists.sourceforge.net
3250S: Supported
3251
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252USB CDC ETHERNET DRIVER
3253P: Greg Kroah-Hartman
3254M: greg@kroah.com
3255L: linux-usb-users@lists.sourceforge.net
3256L: linux-usb-devel@lists.sourceforge.net
3257S: Maintained
3258W: http://www.kroah.com/linux-usb/
3259
3260USB EHCI DRIVER
3261P: David Brownell
3262M: dbrownell@users.sourceforge.net
3263L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003264S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
Luca Risolia7ce08c92006-01-11 02:06:59 +00003266USB ET61X[12]51 DRIVER
3267P: Luca Risolia
3268M: luca.risolia@studio.unibo.it
3269L: linux-usb-devel@lists.sourceforge.net
3270L: video4linux-list@redhat.com
3271W: http://www.linux-projects.org
3272S: Maintained
3273
David Brownell69ae9e32006-11-14 02:03:31 -08003274USB GADGET/PERIPHERAL SUBSYSTEM
3275P: David Brownell
3276M: dbrownell@users.sourceforge.net
3277L: linux-usb-devel@lists.sourceforge.net
3278W: http://www.linux-usb.org/gadget
3279S: Maintained
3280
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281USB HID/HIDBP DRIVERS
3282P: Vojtech Pavlik
3283M: vojtech@suse.cz
3284L: linux-usb-users@lists.sourceforge.net
3285L: linux-usb-devel@lists.sourceforge.net
3286S: Maintained
3287
3288USB HUB DRIVER
3289P: Johannes Erdfelt
3290M: johannes@erdfelt.com
3291L: linux-usb-users@lists.sourceforge.net
3292L: linux-usb-devel@lists.sourceforge.net
3293S: Maintained
3294
Olav Kongas959eea22005-11-03 17:38:14 +02003295USB ISP116X DRIVER
3296P: Olav Kongas
3297M: ok@artecdesign.ee
3298L: linux-usb-devel@lists.sourceforge.net
3299S: Maintained
3300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301USB KAWASAKI LSI DRIVER
3302P: Oliver Neukum
3303M: oliver@neukum.name
3304L: linux-usb-users@lists.sourceforge.net
3305L: linux-usb-devel@lists.sourceforge.net
3306S: Maintained
3307
3308USB MASS STORAGE DRIVER
3309P: Matthew Dharm
3310M: mdharm-usb@one-eyed-alien.net
3311L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003312L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313S: Maintained
3314W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3315
3316USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003317P: David Brownell
3318M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319L: linux-usb-users@lists.sourceforge.net
3320L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003321S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322
Matthias Urlichsba460e42005-07-14 00:33:47 -07003323USB OPTION-CARD DRIVER
3324P: Matthias Urlichs
3325M: smurf@smurf.noris.de
3326L: linux-usb-devel@lists.sourceforge.net
3327S: Maintained
3328
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329USB OV511 DRIVER
3330P: Mark McClelland
3331M: mmcclell@bigfoot.com
3332L: linux-usb-users@lists.sourceforge.net
3333L: linux-usb-devel@lists.sourceforge.net
3334W: http://alpha.dyndns.org/ov511/
3335S: Maintained
3336
3337USB PEGASUS DRIVER
3338P: Petko Manolov
3339M: petkan@users.sourceforge.net
3340L: linux-usb-users@lists.sourceforge.net
3341L: linux-usb-devel@lists.sourceforge.net
3342W: http://pegasus2.sourceforge.net/
3343S: Maintained
3344
3345USB PRINTER DRIVER
3346P: Vojtech Pavlik
3347M: vojtech@suse.cz
3348L: linux-usb-users@lists.sourceforge.net
3349L: linux-usb-devel@lists.sourceforge.net
3350S: Maintained
3351
3352USB RTL8150 DRIVER
3353P: Petko Manolov
3354M: petkan@users.sourceforge.net
3355L: linux-usb-users@lists.sourceforge.net
3356L: linux-usb-devel@lists.sourceforge.net
3357W: http://pegasus2.sourceforge.net/
3358S: Maintained
3359
3360USB SE401 DRIVER
3361P: Jeroen Vreeken
3362M: pe1rxq@amsat.org
3363L: linux-usb-users@lists.sourceforge.net
3364L: linux-usb-devel@lists.sourceforge.net
3365W: http://www.chello.nl/~j.vreeken/se401/
3366S: Maintained
3367
3368USB SERIAL CYBERJACK DRIVER
3369P: Matthias Bruestle and Harald Welte
3370M: support@reiner-sct.com
3371W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3372S: Maintained
3373
3374USB SERIAL DIGI ACCELEPORT DRIVER
3375P: Peter Berger and Al Borchers
3376M: pberger@brimson.com
3377M: alborchers@steinerpoint.com
3378L: linux-usb-users@lists.sourceforge.net
3379L: linux-usb-devel@lists.sourceforge.net
3380S: Maintained
3381
3382USB SERIAL DRIVER
3383P: Greg Kroah-Hartman
3384M: gregkh@suse.de
3385L: linux-usb-users@lists.sourceforge.net
3386L: linux-usb-devel@lists.sourceforge.net
3387S: Supported
3388
3389USB SERIAL BELKIN F5U103 DRIVER
3390P: William Greathouse
3391M: wgreathouse@smva.com
3392L: linux-usb-users@lists.sourceforge.net
3393L: linux-usb-devel@lists.sourceforge.net
3394S: Maintained
3395
3396USB SERIAL CYPRESS M8 DRIVER
3397P: Lonnie Mendez
3398M: dignome@gmail.com
3399L: linux-usb-users@lists.sourceforge.net
3400L: linux-usb-devel@lists.sourceforge.net
3401S: Maintained
3402W: http://geocities.com/i0xox0i
3403W: http://firstlight.net/cvs
3404
3405USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3406L: linux-usb-users@lists.sourceforge.net
3407L: linux-usb-devel@lists.sourceforge.net
3408S: Maintained
3409
3410USB AUERSWALD DRIVER
3411P: Wolfgang Muees
3412M: wolfgang@iksw-muees.de
3413L: linux-usb-users@lists.sourceforge.net
3414L: linux-usb-devel@lists.sourceforge.net
3415S: Maintained
3416
3417USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3418P: Gary Brubaker
3419M: xavyer@ix.netcom.com
3420L: linux-usb-users@lists.sourceforge.net
3421L: linux-usb-devel@lists.sourceforge.net
3422S: Maintained
3423
3424USB SERIAL KEYSPAN DRIVER
3425P: Greg Kroah-Hartman
3426M: greg@kroah.com
3427L: linux-usb-users@lists.sourceforge.net
3428L: linux-usb-devel@lists.sourceforge.net
3429W: http://www.kroah.com/linux/
3430S: Maintained
3431
3432USB SERIAL WHITEHEAT DRIVER
3433P: Stuart MacDonald
3434M: stuartm@connecttech.com
3435L: linux-usb-users@lists.sourceforge.net
3436L: linux-usb-devel@lists.sourceforge.net
3437W: http://www.connecttech.com
3438S: Supported
3439
3440USB SN9C10x DRIVER
3441P: Luca Risolia
3442M: luca.risolia@studio.unibo.it
3443L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003444L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445W: http://www.linux-projects.org
3446S: Maintained
3447
3448USB SUBSYSTEM
3449P: Greg Kroah-Hartman
3450M: gregkh@suse.de
3451L: linux-usb-users@lists.sourceforge.net
3452L: linux-usb-devel@lists.sourceforge.net
3453W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003454T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455S: Supported
3456
3457USB UHCI DRIVER
3458P: Alan Stern
3459M: stern@rowland.harvard.edu
3460L: linux-usb-users@lists.sourceforge.net
3461L: linux-usb-devel@lists.sourceforge.net
3462S: Maintained
3463
David Brownell69ae9e32006-11-14 02:03:31 -08003464USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465P: David Brownell
3466M: dbrownell@users.sourceforge.net
3467L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003468W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469S: Maintained
3470
3471USB W996[87]CF DRIVER
3472P: Luca Risolia
3473M: luca.risolia@studio.unibo.it
3474L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003475L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476W: http://www.linux-projects.org
3477S: Maintained
3478
Luca Risolia60f78052006-02-06 16:29:35 +00003479USB ZC0301 DRIVER
3480P: Luca Risolia
3481M: luca.risolia@studio.unibo.it
3482L: linux-usb-devel@lists.sourceforge.net
3483L: video4linux-list@redhat.com
3484W: http://www.linux-projects.org
3485S: Maintained
3486
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487USB ZD1201 DRIVER
3488P: Jeroen Vreeken
3489M: pe1rxq@amsat.org
3490L: linux-usb-users@lists.sourceforge.net
3491L: linux-usb-devel@lists.sourceforge.net
3492W: http://linux-lc100020.sourceforge.net
3493S: Maintained
3494
3495USER-MODE LINUX
3496P: Jeff Dike
3497M: jdike@karaya.com
3498L: user-mode-linux-devel@lists.sourceforge.net
3499L: user-mode-linux-user@lists.sourceforge.net
3500W: http://user-mode-linux.sourceforge.net
3501S: Maintained
3502
3503FAT/VFAT/MSDOS FILESYSTEM:
3504P: OGAWA Hirofumi
3505M: hirofumi@mail.parknet.co.jp
3506L: linux-kernel@vger.kernel.org
3507S: Maintained
3508
3509VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3510P: Jeff Garzik
3511S: Odd fixes
3512
3513VIA RHINE NETWORK DRIVER
3514P: Roger Luethi
3515M: rl@hellgate.ch
3516S: Maintained
3517
Jean Delvare32c0a522005-09-22 21:47:58 +02003518VIAPRO SMBUS DRIVER
3519P: Jean Delvare
3520M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003521L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003522S: Maintained
3523
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524UCLINUX (AND M68KNOMMU)
3525P: Greg Ungerer
3526M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003528L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529S: Maintained
3530
3531UCLINUX FOR NEC V850
3532P: Miles Bader
3533M: uclinux-v850@lsi.nec.co.jp
3534W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3535W: http://www.ee.nec.de/uclinux/
3536S: Supported
3537
3538UCLINUX FOR RENESAS H8/300
3539P: Yoshinori Sato
3540M: ysato@users.sourceforge.jp
3541W: http://uclinux-h8.sourceforge.jp/
3542S: Supported
3543
3544USB DIAMOND RIO500 DRIVER
3545P: Cesar Miquel
3546M: miquel@df.uba.ar
3547L: rio500-users@lists.sourceforge.net
3548W: http://rio500.sourceforge.net
3549S: Maintained
3550
3551VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003552P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003553M: mchehab@infradead.org
3554M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003556W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003557T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003558S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
Juerg Haefligerab413192006-09-24 20:54:04 +02003560VT1211 HARDWARE MONITOR DRIVER
3561P: Juerg Haefliger
3562M: juergh@gmail.com
3563L: lm-sensors@lm-sensors.org
3564S: Maintained
3565
Roger Lucas1de9e372005-11-26 20:20:05 +01003566VT8231 HARDWARE MONITOR DRIVER
3567P: Roger Lucas
3568M: roger@planbit.co.uk
3569L: lm-sensors@lm-sensors.org
3570S: Maintained
3571
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572W1 DALLAS'S 1-WIRE BUS
3573P: Evgeniy Polyakov
3574M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575S: Maintained
3576
Charles Spirakis13927072006-07-05 18:05:15 +02003577W83791D HARDWARE MONITORING DRIVER
3578P: Charles Spirakis
3579M: bezaur@gmail.com
3580L: lm-sensors@lm-sensors.org
3581S: Maintained
3582
Rudolf Marek61db0112006-12-12 18:18:30 +01003583W83793 HARDWARE MONITORING DRIVER
3584P: Rudolf Marek
3585M: r.marek@assembler.cz
3586L: lm-sensors@lm-sensors.org
3587S: Maintained
3588
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589W83L51xD SD/MMC CARD INTERFACE DRIVER
3590P: Pierre Ossman
3591M: drzeus-wbsd@drzeus.cx
3592L: wbsd-devel@list.drzeus.cx
3593W: http://projects.drzeus.cx/wbsd
3594S: Maintained
3595
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003596WATCHDOG DEVICE DRIVERS
3597P: Wim Van Sebroeck
3598M: wim@iguana.be
3599T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3600S: Maintained
3601
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3603P: Jean Tourrilhes
3604M: jt@hpl.hp.com
3605W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3606S: Maintained
3607
3608WD7000 SCSI DRIVER
3609P: Miroslav Zagorac
3610M: zaga@fly.cc.fer.hr
3611L: linux-scsi@vger.kernel.org
3612S: Maintained
3613
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003614WISTRON LAPTOP BUTTON DRIVER
3615P: Miloslav Trmac
3616M: mitr@volny.cz
3617S: Maintained
3618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619WL3501 WIRELESS PCMCIA CARD DRIVER
3620P: Arnaldo Carvalho de Melo
3621M: acme@conectiva.com.br
3622W: http://advogato.org/person/acme
3623S: Maintained
3624
3625X.25 NETWORK LAYER
3626P: Henner Eisen
3627M: eis@baty.hanse.de
3628L: linux-x25@vger.kernel.org
3629S: Maintained
3630
3631XFS FILESYSTEM
3632P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003633P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003635L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003637T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638S: Supported
3639
Peter Korsgaard238b8722006-12-06 20:35:17 -08003640XILINX UARTLITE SERIAL DRIVER
3641P: Peter Korsgaard
3642M: jacmet@sunsite.dk
3643L: linux-serial@vger.kernel.org
3644S: Maintained
3645
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646X86 3-LEVEL PAGING (PAE) SUPPORT
3647P: Ingo Molnar
3648M: mingo@redhat.com
3649S: Maintained
3650
3651X86-64 port
3652P: Andi Kleen
3653M: ak@suse.de
3654L: discuss@x86-64.org
3655W: http://www.x86-64.org
3656S: Maintained
3657
3658YAM DRIVER FOR AX.25
3659P: Jean-Paul Roubelat
3660M: jpr@f6fbb.org
3661L: linux-hams@vger.kernel.org
3662S: Maintained
3663
Henkaf64a5e2005-10-12 15:02:56 +02003664YEALINK PHONE DRIVER
3665P: Henk Vergonet
3666M: Henk.Vergonet@gmail.com
3667L: usbb2k-api-dev@nongnu.org
3668S: Maintained
3669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670Z8530 DRIVER FOR AX.25
3671P: Joerg Reuter
3672M: jreuter@yaina.de
3673W: http://yaina.de/jreuter/
3674W: http://www.qsl.net/dl1bke/
3675L: linux-hams@vger.kernel.org
3676S: Maintained
3677
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003678ZD1211RW WIRELESS DRIVER
3679P: Daniel Drake
3680M: dsd@gentoo.org
3681P: Ulrich Kunitz
3682M: kune@deine-taler.de
3683W: http://zd1211.ath.cx/wiki/DriverRewrite
3684L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3685S: Maintained
3686
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687ZF MACHZ WATCHDOG
3688P: Fernando Fuganti
3689M: fuganti@netbank.com.br
3690W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3691S: Maintained
3692
3693ZR36067 VIDEO FOR LINUX DRIVER
3694P: Ronald Bultje
3695M: rbultje@ronald.bitfreak.net
3696L: mjpeg-users@lists.sourceforge.net
3697W: http://mjpeg.sourceforge.net/driver-zoran/
3698S: Maintained
3699
3700ZR36120 VIDEO FOR LINUX DRIVER
3701P: Pauline Middelink
3702M: middelin@polyware.nl
3703W: http://www.polyware.nl/~middelin/En/hobbies.html
3704W: http://www.polyware.nl/~middelin/hobbies.html
3705S: Maintained
3706
3707THE REST
3708P: Linus Torvalds
3709S: Buried alive in reporters