blob: 13902cbe56baa37743af5a62616edb3807a9f54f [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
Andrew Victord4a89c72006-12-04 13:56:21 +0100358ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
359P: Andrew Victor
360M: andrew@sanpeople.com
361L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
362W: http://maxim.org.za/at91_26.html
363S: Maintained
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365ARM/CORGI MACHINE SUPPORT
366P: Richard Purdie
367M: rpurdie@rpsys.net
368S: Maintained
369
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100370ARM/HP JORNADA 7XX MACHINE SUPPORT
371P: Kristoffer Ericson
372M: kristoffer_e1@hotmail.com
373W: www.jlime.com
374S: Maintained
375
Dirk Opfer8459c152005-11-06 14:27:52 +0000376ARM/TOSA MACHINE SUPPORT
377P: Dirk Opfer
378M: dirk@opfer-online.de
379S: Maintained
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ARM/PLEB SUPPORT
382P: Peter Chubb
383M: pleb@gelato.unsw.edu.au
384W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
385S: Maintained
386
387ARM/PT DIGITAL BOARD PORT
388P: Stefan Eletzhofer
389M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700390L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391W: http://www.arm.linux.org.uk/
392S: Maintained
393
394ARM/SHARK MACHINE SUPPORT
395P: Alexander Schulz
396M: alex@shark-linux.de
397W: http://www.shark-linux.de/shark.html
398S: Maintained
399
400ARM/STRONGARM110 PORT
401P: Russell King
402M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700403L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404W: http://www.arm.linux.org.uk/
405S: Maintained
406
407ARM/S3C2410 ARM ARCHITECTURE
408P: Ben Dooks
409M: ben-s3c2410@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700410L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411W: http://www.fluff.org/ben/linux/
412S: Maintained
413
414ARM/S3C2440 ARM ARCHITECTURE
415P: Ben Dooks
416M: ben-s3c2440@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700417L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418W: http://www.fluff.org/ben/linux/
419S: Maintained
420
421ARPD SUPPORT
422P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700423L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424S: Maintained
425
426ASUS ACPI EXTRAS DRIVER
427P: Karol Kozimor
428M: sziwan@users.sourceforge.net
429P: Julien Lerouge
430M: julien.lerouge@free.fr
431L: acpi4asus-user@lists.sourceforge.net
432W: http://sourceforge.net/projects/acpi4asus
433W: http://julien.lerouge.free.fr
434S: Maintained
435
436ATA OVER ETHERNET DRIVER
437P: Ed L. Cashin
438M: ecashin@coraid.com
439W: http://www.coraid.com/support/linux
440S: Supported
441
442ATM
443P: Chas Williams
444M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700445L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446W: http://linux-atm.sourceforge.net
447S: Maintained
448
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100449ATMEL MACB ETHERNET DRIVER
450P: Atmel AVR32 Support Team
451M: avr32@atmel.com
452P: Haavard Skinnemoen
453M: hskinnemoen@atmel.com
454S: Supported
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456ATMEL WIRELESS DRIVER
457P: Simon Kelley
458M: simon@thekelleys.org.uk
459W: http://www.thekelleys.org.uk/atmel
460W: http://atmelwlandriver.sourceforge.net/
461S: Maintained
462
Chris Wrighta92b7b82005-07-07 18:12:23 -0700463AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100464P: David Woodhouse
465M: dwmw2@infradead.org
466L: linux-audit@redhat.com
467W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800468T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700469S: Maintained
470
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700471AVR32 ARCHITECTURE
472P: Atmel AVR32 Support Team
473M: avr32@atmel.com
474P: Haavard Skinnemoen
475M: hskinnemoen@atmel.com
476W: http://www.atmel.com/products/AVR32/
477W: http://avr32linux.org/
478W: http://avrfreaks.net/
479S: Supported
480
481AVR32/AT32AP MACHINE SUPPORT
482P: Atmel AVR32 Support Team
483M: avr32@atmel.com
484P: Haavard Skinnemoen
485M: hskinnemoen@atmel.com
486S: Supported
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488AX.25 NETWORK LAYER
489P: Ralf Baechle
490M: ralf@linux-mips.org
491L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200492W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493S: Maintained
494
495BAYCOM/HDLCDRV DRIVERS FOR AX.25
496P: Thomas Sailer
497M: t.sailer@alumni.ethz.ch
498L: linux-hams@vger.kernel.org
499W: http://www.baycom.org/~tom/ham/ham.html
500S: Maintained
501
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200502BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
503P: Larry Finger
504M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200505P: Stefano Brivio
506M: st3@riseup.net
507W: http://bcm43xx.berlios.de/
508S: Maintained
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510BEFS FILE SYSTEM
511P: Sergey S. Kostyliov
512M: rathamahata@php4.ru
513L: linux-kernel@vger.kernel.org
514S: Maintained
515
516BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
517P: Kenji Hollis
518W: http://ftp.bitgate.com/pcwd/
519S: Maintained
520
521BFS FILE SYSTEM
522P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800523M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524L: linux-kernel@vger.kernel.org
525S: Maintained
526
527BLOCK LAYER
528P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200529M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800531T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532S: Maintained
533
534BLUETOOTH SUBSYSTEM
535P: Marcel Holtmann
536M: marcel@holtmann.org
537P: Maxim Krasnyansky
538M: maxk@qualcomm.com
539L: bluez-devel@lists.sf.net
540W: http://bluez.sf.net
541W: http://www.bluez.org
542W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800543T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544S: Maintained
545
546BLUETOOTH RFCOMM LAYER
547P: Marcel Holtmann
548M: marcel@holtmann.org
549P: Maxim Krasnyansky
550M: maxk@qualcomm.com
551S: Maintained
552
553BLUETOOTH BNEP LAYER
554P: Marcel Holtmann
555M: marcel@holtmann.org
556P: Maxim Krasnyansky
557M: maxk@qualcomm.com
558S: Maintained
559
560BLUETOOTH CMTP LAYER
561P: Marcel Holtmann
562M: marcel@holtmann.org
563S: Maintained
564
565BLUETOOTH HIDP LAYER
566P: Marcel Holtmann
567M: marcel@holtmann.org
568S: Maintained
569
570BLUETOOTH HCI UART DRIVER
571P: Marcel Holtmann
572M: marcel@holtmann.org
573P: Maxim Krasnyansky
574M: maxk@qualcomm.com
575S: Maintained
576
577BLUETOOTH HCI USB DRIVER
578P: Marcel Holtmann
579M: marcel@holtmann.org
580P: Maxim Krasnyansky
581M: maxk@qualcomm.com
582S: Maintained
583
584BLUETOOTH HCI BCM203X DRIVER
585P: Marcel Holtmann
586M: marcel@holtmann.org
587S: Maintained
588
589BLUETOOTH HCI BPA10X DRIVER
590P: Marcel Holtmann
591M: marcel@holtmann.org
592S: Maintained
593
594BLUETOOTH HCI BFUSB DRIVER
595P: Marcel Holtmann
596M: marcel@holtmann.org
597S: Maintained
598
599BLUETOOTH HCI DTL1 DRIVER
600P: Marcel Holtmann
601M: marcel@holtmann.org
602S: Maintained
603
604BLUETOOTH HCI BLUECARD DRIVER
605P: Marcel Holtmann
606M: marcel@holtmann.org
607S: Maintained
608
609BLUETOOTH HCI BT3C DRIVER
610P: Marcel Holtmann
611M: marcel@holtmann.org
612S: Maintained
613
614BLUETOOTH HCI BTUART DRIVER
615P: Marcel Holtmann
616M: marcel@holtmann.org
617S: Maintained
618
619BLUETOOTH HCI VHCI DRIVER
620P: Maxim Krasnyansky
621M: maxk@qualcomm.com
622S: Maintained
623
624BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100625P: Chad Tindel
626M: ctindel@users.sourceforge.net
627P: Jay Vosburgh
628M: fubar@us.ibm.com
629L: bonding-devel@lists.sourceforge.net
630W: http://sourceforge.net/projects/bonding/
631S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000633BROADBAND PROCESSOR ARCHITECTURE
634P: Arnd Bergmann
635M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100636L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400637W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000638S: Supported
639
Gary Zambrano39105892006-06-22 17:26:20 -0700640BROADCOM B44 10/100 ETHERNET DRIVER
641P: Gary Zambrano
642M: zambrano@broadcom.com
643L: netdev@vger.kernel.org
644S: Supported
645
Michael Chan948c51e2006-06-04 02:51:39 -0700646BROADCOM BNX2 GIGABIT ETHERNET DRIVER
647P: Michael Chan
648M: mchan@broadcom.com
649L: netdev@vger.kernel.org
650S: Supported
651
652BROADCOM TG3 GIGABIT ETHERNET DRIVER
653P: Michael Chan
654M: mchan@broadcom.com
655L: netdev@vger.kernel.org
656S: Supported
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700659P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200660M: mchehab@infradead.org
661M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700663W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200664T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700665S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200667CALGARY x86-64 IOMMU
668P: Muli Ben-Yehuda
669M: muli@il.ibm.com
670P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200671M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200672L: linux-kernel@vger.kernel.org
673L: discuss@x86-64.org
674S: Maintained
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676COMMON INTERNET FILE SYSTEM (CIFS)
677P: Steve French
678M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100679L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680L: samba-technical@lists.samba.org
681W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800682T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683S: Supported
684
Joel Becker7063fbf2005-12-15 14:29:43 -0800685CONFIGFS
686P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800687M: joel.becker@oracle.com
688L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800689S: Supported
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691CIRRUS LOGIC GENERIC FBDEV DRIVER
692P: Jeff Garzik
693M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800694L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695S: Odd Fixes
696
697CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
698P: Cirrus Logic Corporation (kernel 2.2 driver)
699M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
700P: Nils Faerber (port to kernel 2.4)
701M: Nils Faerber <nils@kernelconcepts.de>
702S: Maintained
703
704CODA FILE SYSTEM
705P: Jan Harkes
706M: jaharkes@cs.cmu.edu
707M: coda@cs.cmu.edu
708L: codalist@coda.cs.cmu.edu
709W: http://www.coda.cs.cmu.edu/
710S: Maintained
711
712COMPACTPCI HOTPLUG CORE
713P: Scott Murray
714M: scottm@somanetworks.com
715M: scott@spiteful.org
716L: pcihpd-discuss@lists.sourceforge.net
717S: Supported
718
719COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
720P: Scott Murray
721M: scottm@somanetworks.com
722M: scott@spiteful.org
723L: pcihpd-discuss@lists.sourceforge.net
724S: Supported
725
726COMPACTPCI HOTPLUG GENERIC DRIVER
727P: Scott Murray
728M: scottm@somanetworks.com
729M: scott@spiteful.org
730L: pcihpd-discuss@lists.sourceforge.net
731S: Supported
732
733COMPUTONE INTELLIPORT MULTIPORT CARD
734P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700735M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700737S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739COSA/SRP SYNC SERIAL DRIVER
740P: Jan "Yenya" Kasprzak
741M: kas@fi.muni.cz
742W: http://www.fi.muni.cz/~kas/cosa/
743S: Maintained
744
745CPU FREQUENCY DRIVERS
746P: Dave Jones
747M: davej@codemonkey.org.uk
748L: cpufreq@lists.linux.org.uk
749W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500750T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751S: Maintained
752
753CPUID/MSR DRIVER
754P: H. Peter Anvin
755M: hpa@zytor.com
756S: Maintained
757
Paul Jacksoned90fb42005-09-27 21:45:37 -0700758CPUSETS
759P: Paul Jackson
760P: Simon Derr
761M: pj@sgi.com
762M: simon.derr@bull.net
763L: linux-kernel@vger.kernel.org
764W: http://www.bullopensource.org/cpuset/
765S: Supported
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100768W: http://sourceforge.net/projects/cramfs/
769S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771CRIS PORT
772P: Mikael Starvik
773M: starvik@axis.com
774L: dev-etrax@axis.com
775W: http://developer.axis.com
776S: Maintained
777
778CRYPTO API
779P: Herbert Xu
780M: herbert@gondor.apana.org.au
781P: David S. Miller
782M: davem@davemloft.net
783L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800784T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785S: Maintained
786
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100787CS5535 Audio ALSA driver
788P: Jaya Kumar
789M: jayakumar.alsa@gmail.com
790S: Maintained
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792CYBERPRO FB DRIVER
793P: Russell King
794M: rmk@arm.linux.org.uk
795W: http://www.arm.linux.org.uk/
796S: Maintained
797
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700798CYBLAFB FRAMEBUFFER DRIVER
799P: Knut Petersen
800M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800801L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700802S: Maintained
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804CYCLADES 2X SYNC CARD DRIVER
805P: Arnaldo Carvalho de Melo
806M: acme@conectiva.com.br
807W: http://advogato.org/person/acme
808L: cycsyn-devel@bazar.conectiva.com.br
809S: Maintained
810
811CYCLADES ASYNC MUX DRIVER
812M: async@cyclades.com
813W: http://www.cyclades.com/
814S: Supported
815
816CYCLADES PC300 DRIVER
817M: pc300@cyclades.com
818W: http://www.cyclades.com/
819S: Supported
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821DAMA SLAVE for AX.25
822P: Joerg Reuter
823M: jreuter@yaina.de
824W: http://yaina.de/jreuter/
825W: http://www.qsl.net/dl1bke/
826L: linux-hams@vger.kernel.org
827S: Maintained
828
829DC395x SCSI driver
830P: Oliver Neukum
831M: oliver@neukum.name
832P: Ali Akcaagac
833M: aliakc@web.de
834P: Jamie Lenehan
835M: lenehan@twibble.org
836W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700837L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838L: http://lists.twibble.org/mailman/listinfo/dc395x/
839S: Maintained
840
841DC390/AM53C974 SCSI driver
842P: Kurt Garloff
843M: garloff@suse.de
844W: http://www.garloff.de/kurt/linux/dc390/
845P: Guennadi Liakhovetski
846M: g.liakhovetski@gmx.de
847S: Maintained
848
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700849DCCP PROTOCOL
850P: Arnaldo Carvalho de Melo
851M: acme@mandriva.com
852L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800853W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700854S: Maintained
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856DECnet NETWORK LAYER
857P: Patrick Caulfield
858M: patrick@tykepenguin.com
859W: http://linux-decnet.sourceforge.net
860L: linux-decnet-user@lists.sourceforge.net
861S: Maintained
862
863DEFXX FDDI NETWORK DRIVER
864P: Maciej W. Rozycki
865M: macro@linux-mips.org
866S: Maintained
867
868DELL LAPTOP SMM DRIVER
869P: Massimo Dal Zotto
870M: dz@debian.org
871W: http://www.debian.org/~dz/i8k/
872S: Maintained
873
Doug Warzecha90563ec2005-09-06 15:17:15 -0700874DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
875P: Doug Warzecha
876M: Douglas_Warzecha@dell.com
877S: Maintained
878
Pavel Machek5ddb88c2006-09-29 02:01:29 -0700879DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880P: Alasdair Kergon
881L: dm-devel@redhat.com
882W: http://sources.redhat.com/dm
883S: Maintained
884
885DEVICE NUMBER REGISTRY
886P: Torben Mathiasen
887M: device@lanana.org
888W: http://lanana.org/docs/device-list/index.html
889L: linux-kernel@vger.kernel.org
890S: Maintained
891
892DEVICE FILESYSTEM
893S: Obsolete
894
895DIGI INTL. EPCA DRIVER
896P: Digi International, Inc
897M: Eng.Linux@digi.com
898L: Eng.Linux@digi.com
899W: http://www.digi.com
900S: Orphaned
901
902DIGI RIGHTSWITCH NETWORK DRIVER
903P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -0700904L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905W: http://www.digi.com
906S: Orphaned
907
908DIRECTORY NOTIFICATION
909P: Stephen Rothwell
910M: sfr@canb.auug.org.au
911L: linux-kernel@vger.kernel.org
912S: Supported
913
914DISK GEOMETRY AND PARTITION HANDLING
915P: Andries Brouwer
916M: aeb@cwi.nl
917W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
918W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
919W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
920S: Maintained
921
922DISKQUOTA:
923P: Jan Kara
924M: jack@suse.cz
925L: linux-kernel@vger.kernel.org
926S: Maintained
927
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400928DISTRIBUTED LOCK MANAGER
929P: Patrick Caulfield
930M: pcaulfie@redhat.com
931P: David Teigland
932M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -0400933L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400934W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -0400935T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
936T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400937S: Supported
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
940P: Tobias Ringstrom
941M: tori@unhappy.mine.nu
942L: linux-kernel@vger.kernel.org
943S: Maintained
944
Martin Waitzba483d52005-06-17 13:20:59 -0700945DOCBOOK FOR DOCUMENTATION
946P: Martin Waitz
947M: tali@admingilde.org
Randy Dunlap0f40efb2006-07-03 00:24:15 -0700948P: Randy Dunlap
949M: rdunlap@xenotime.net
Martin Waitz061350e2006-01-09 20:53:53 -0800950T: git http://tali.admingilde.org/git/linux-docbook.git
Martin Waitzba483d52005-06-17 13:20:59 -0700951S: Maintained
952
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -0400953DOCKING STATION DRIVER
954P: Kristen Carlson Accardi
955M: kristen.c.accardi@intel.com
956L: linux-acpi@vger.kernel.org
957S: Maintained
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959DOUBLETALK DRIVER
960P: James R. Van Zandt
961M: jrv@vanzandt.mv.com
962L: blinux-list@redhat.com
963S: Maintained
964
965DRIVER CORE, KOBJECTS, AND SYSFS
966P: Greg Kroah-Hartman
967M: gregkh@suse.de
968L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800969T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970S: Supported
971
972DRM DRIVERS
973P: David Airlie
974M: airlied@linux.ie
975L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -0800976T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977S: Maintained
978
979DSCC4 DRIVER
980P: François Romieu
981M: romieu@cogenit.fr
982M: romieu@ensta.fr
983S: Maintained
984
985DVB SUBSYSTEM AND DRIVERS
986P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200987M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +0200989W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200990T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200991S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993EATA-DMA SCSI DRIVER
994P: Michael Neuffer
995L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
996S: Maintained
997
998EATA ISA/EISA/PCI SCSI DRIVER
999P: Dario Ballabio
1000M: ballabio_dario@emc.com
1001L: linux-scsi@vger.kernel.org
1002S: Maintained
1003
1004EATA-PIO SCSI DRIVER
1005P: Michael Neuffer
1006M: mike@i-Connect.Net
1007L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1008S: Maintained
1009
1010EBTABLES
1011P: Bart De Schuymer
1012M: bart.de.schuymer@pandora.be
1013L: ebtables-user@lists.sourceforge.net
1014L: ebtables-devel@lists.sourceforge.net
1015W: http://ebtables.sourceforge.net/
1016S: Maintained
1017
Michael Halcrow237fead2006-10-04 02:16:22 -07001018ECRYPT FILE SYSTEM
1019P: Mike Halcrow, Phillip Hellewell
1020M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1021L: ecryptfs-devel@lists.sourceforge.net
1022W: http://ecryptfs.sourceforge.net/
1023S: Supported
1024
Alan Coxda9bb1d2006-01-18 17:44:13 -08001025EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001026P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001027M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001028L: bluesmoke-devel@lists.sourceforge.net
1029W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001030S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001031
1032EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001033P: Mark Gross
1034M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001035L: bluesmoke-devel@lists.sourceforge.net
1036W: bluesmoke.sourceforge.net
1037S: Maintained
1038
1039EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001040P: Doug Thompson
1041M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001042L: bluesmoke-devel@lists.sourceforge.net
1043W: bluesmoke.sourceforge.net
1044S: Maintained
1045
1046EDAC-R82600
1047P: Tim Small
1048M: tim@buttersideup.com
1049L: bluesmoke-devel@lists.sourceforge.net
1050W: bluesmoke.sourceforge.net
1051S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053EEPRO100 NETWORK DRIVER
1054P: Andrey V. Savochkin
1055M: saw@saw.sw.com.sg
1056S: Maintained
1057
Josh Triplett0bee8d22006-07-30 03:03:58 -07001058EFS FILESYSTEM
1059W: http://aeschi.ch.eu.org/efs/
1060S: Orphan
1061
Heiko J Schickfab97222006-09-22 15:22:22 -07001062EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1063P: Hoang-Nam Nguyen
1064M: hnguyen@de.ibm.com
1065P: Christoph Raisch
1066M: raisch@de.ibm.com
1067L: openib-general@openib.org
1068S: Supported
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070EMU10K1 SOUND DRIVER
1071P: James Courtier-Dutton
1072M: James@superbug.demon.co.uk
1073L: emu10k1-devel@lists.sourceforge.net
1074W: http://sourceforge.net/projects/emu10k1/
1075S: Maintained
1076
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001077EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001078P: James Smart
1079M: james.smart@emulex.com
1080L: linux-scsi@vger.kernel.org
1081W: http://sourceforge.net/projects/lpfcxxxx
1082S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084EPSON 1355 FRAMEBUFFER DRIVER
1085P: Christopher Hoover
1086M: ch@murgatroid.com, ch@hpl.hp.com
1087S: Maintained
1088
1089ETHEREXPRESS-16 NETWORK DRIVER
1090P: Philip Blundell
1091M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001092L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093S: Maintained
1094
1095ETHERNET BRIDGE
1096P: Stephen Hemminger
1097M: shemminger@osdl.org
1098L: bridge@osdl.org
1099W: http://bridge.sourceforge.net/
1100S: Maintained
1101
1102ETHERTEAM 16I DRIVER
1103P: Mika Kuoppala
1104M: miku@iki.fi
1105S: Maintained
1106
1107EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001108L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109S: Maintained
1110
1111EXT3 FILE SYSTEM
1112P: Stephen Tweedie, Andrew Morton
1113M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001114L: linux-ext4@vger.kernel.org
1115S: Maintained
1116
1117EXT4 FILE SYSTEM
1118P: Stephen Tweedie, Andrew Morton
1119M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1120L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121S: Maintained
1122
Jean Delvaree53004e2006-01-09 23:26:14 +01001123F71805F HARDWARE MONITORING DRIVER
1124P: Jean Delvare
1125M: khali@linux-fr.org
1126L: lm-sensors@lm-sensors.org
1127S: Maintained
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129FARSYNC SYNCHRONOUS DRIVER
1130P: Kevin Curtis
1131M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132W: http://www.farsite.co.uk/
1133S: Supported
1134
1135FRAMEBUFFER LAYER
1136P: Antonino Daplas
1137M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001138L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139W: http://linux-fbdev.sourceforge.net/
1140S: Maintained
1141
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001142FREESCALE SOC FS_ENET DRIVER
1143P: Pantelis Antoniou
1144M: pantelis.antoniou@gmail.com
1145P: Vitaly Bordug
1146M: vbordug@ru.mvista.com
1147L: linuxppc-embedded@ozlabs.org
1148L: netdev@vger.kernel.org
1149S: Maintained
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151FILE LOCKING (flock() and fcntl()/lockf())
1152P: Matthew Wilcox
1153M: matthew@wil.cx
1154L: linux-fsdevel@vger.kernel.org
1155S: Maintained
1156
1157FILESYSTEMS (VFS and infrastructure)
1158P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001159M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160S: Maintained
1161
1162FIRMWARE LOADER (request_firmware)
1163L: linux-kernel@vger.kernel.org
1164S: Orphan
1165
1166FPU EMULATOR
1167P: Bill Metzenthen
1168M: billm@suburbia.net
1169W: http://suburbia.net/~billm/floating-point/emulator/
1170S: Maintained
1171
1172FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1173P: Mike McLagan
1174M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001175L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176S: Maintained
1177
1178FREEVXFS FILESYSTEM
1179P: Christoph Hellwig
1180M: hch@infradead.org
1181W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1182S: Maintained
1183
1184FUJITSU FR-V PORT
1185P: David Howells
1186M: dhowells@redhat.com
1187S: Maintained
1188
Miklos Szeredi04578f12005-09-09 13:10:22 -07001189FUSE: FILESYSTEM IN USERSPACE
1190P: Miklos Szeredi
1191M: miklos@szeredi.hu
1192L: fuse-devel@lists.sourceforge.net
1193W: http://fuse.sourceforge.net/
1194S: Maintained
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1197P: Rik Faith
1198M: faith@cs.unc.edu
1199L: linux-scsi@vger.kernel.org
1200S: Odd fixes (e.g., new signatures)
1201
1202GDT SCSI DISK ARRAY CONTROLLER DRIVER
1203P: Achim Leubner
1204M: achim_leubner@adaptec.com
1205L: linux-scsi@vger.kernel.org
1206W: http://www.icp-vortex.com/
1207S: Supported
1208
1209GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1210P: Krzysztof Halasa
1211M: khc@pm.waw.pl
1212W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1213S: Maintained
1214
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001215GFS2 FILE SYSTEM
1216P: Steven Whitehouse
1217M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001218L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001219W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001220T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1221T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001222S: Supported
1223
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001224GIGASET ISDN DRIVERS
1225P: Hansjoerg Lipp
1226M: hjlipp@web.de
1227P: Tilman Schmidt
1228M: tilman@imap.cc
1229L: gigaset307x-common@lists.sourceforge.net
1230W: http://gigaset307x.sourceforge.net/
1231S: Maintained
1232
Jean Delvare5b543962005-08-15 19:51:02 +02001233HARDWARE MONITORING
1234P: Jean Delvare
1235M: khali@linux-fr.org
1236L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001237W: http://www.lm-sensors.org/
1238T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001239S: Maintained
1240
Michael Buesch844dd052006-06-26 00:24:59 -07001241HARDWARE RANDOM NUMBER GENERATOR CORE
1242P: Michael Buesch
1243M: mb@bu3sch.de
1244S: Maintained
1245
Robert Love860e1d62005-08-31 23:57:59 -04001246HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1247P: Robert Love
1248M: rlove@rlove.org
1249M: linux-kernel@vger.kernel.org
1250W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1251S: Maintained
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253HARMONY SOUND DRIVER
1254P: Kyle McMartin
1255M: kyle@parisc-linux.org
1256W: http://www.parisc-linux.org/~kyle/harmony/
1257L: parisc-linux@lists.parisc-linux.org
1258S: Maintained
1259
1260HAYES ESP SERIAL DRIVER
1261P: Andrew J. Robinson
1262M: arobinso@nyx.net
1263L: linux-kernel@vger.kernel.org
1264W: http://www.nyx.net/~arobinso
1265S: Maintained
1266
1267HFS FILESYSTEM
1268P: Roman Zippel
1269M: zippel@linux-m68k.org
1270L: linux-kernel@vger.kernel.org
1271S: Maintained
1272
1273HGA FRAMEBUFFER DRIVER
1274P: Ferenc Bakonyi
1275M: fero@drama.obuda.kando.hu
1276L: linux-nvidia@lists.surfsouth.com
1277W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1278S: Maintained
1279
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001280HID CORE LAYER
1281P: Jiri Kosina
1282M: jkosina@suse.cz
1283L: linux-input@atrey.karlin.mff.cuni.cz
1284S: Maintained
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286HIGH-SPEED SCC DRIVER FOR AX.25
1287P: Klaus Kudielka
1288M: klaus.kudielka@ieee.org
1289L: linux-hams@vger.kernel.org
1290W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1291S: Maintained
1292
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001293HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1294P: HighPoint Linux Team
1295M: linux@highpoint-tech.com
1296W: http://www.highpoint-tech.com
1297S: Supported
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299HIPPI
1300P: Jes Sorensen
1301M: jes@trained-monkey.org
1302L: linux-hippi@sunsite.dk
1303S: Maintained
1304
1305HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1306P: Chirag Kantharia
1307M: chirag.kantharia@hp.com
1308L: iss_storagedev@hp.com
1309S: Maintained
1310
1311HEWLETT-PACKARD SMART2 RAID DRIVER
1312P: Chirag Kantharia
1313M: chirag.kantharia@hp.com
1314L: iss_storagedev@hp.com
1315S: Maintained
1316
1317HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1318P: Mike Miller
1319M: mike.miller@hp.com
1320L: iss_storagedev@hp.com
1321S: Supported
1322
Jouni Malinenff1d2762005-05-12 22:54:16 -04001323HOST AP DRIVER
1324P: Jouni Malinen
1325M: jkmaline@cc.hut.fi
1326L: hostap@shmoo.com
1327W: http://hostap.epitest.fi/
1328S: Maintained
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1331P: Jaroslav Kysela
1332M: perex@suse.cz
1333S: Maintained
1334
Bob Piccob9b03322005-11-07 00:59:19 -08001335HPET: High Precision Event Timers driver (hpet.c)
1336P: Clemens Ladisch
1337M: clemens@ladisch.de
1338S: Maintained
1339
1340HPET: i386
1341P: Venkatesh Pallipadi (Venki)
1342M: venkatesh.pallipadi@intel.com
1343S: Maintained
1344
1345HPET: x86_64
1346P: Andi Kleen and Vojtech Pavlik
1347M: ak@muc.de and vojtech@suse.cz
1348S: Maintained
1349
1350HPET: ACPI hpet.c
1351P: Bob Picco
1352M: bob.picco@hp.com
1353S: Maintained
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355HPFS FILESYSTEM
1356P: Mikulas Patocka
1357M: mikulas@artax.karlin.mff.cuni.cz
1358W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1359S: Maintained
1360
1361HUGETLB FILESYSTEM
1362P: William Irwin
1363M: wli@holomorphy.com
1364S: Maintained
1365
Jean Delvare5b543962005-08-15 19:51:02 +02001366I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367P: Jean Delvare
1368M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001369L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001370T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371S: Maintained
1372
1373I2O
1374P: Markus Lidel
1375M: markus.lidel@shadowconnect.com
1376W: http://i2o.shadowconnect.com/
1377S: Maintained
1378
1379i386 BOOT CODE
1380P: Riley H. Williams
1381M: Riley@Williams.Name
1382L: Linux-Kernel@vger.kernel.org
1383S: Maintained
1384
1385i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1386P: Dave Jones
1387M: davej@codemonkey.org.uk
1388P: H. Peter Anvin
1389M: hpa@zytor.com
1390S: Maintained
1391
1392i810 TCO TIMER WATCHDOG
1393P: Nils Faerber
1394M: nils@kernelconcepts.de
1395W: http://www.kernelconcepts.de/
1396S: Maintained
1397
1398IA64 (Itanium) PLATFORM
1399P: Tony Luck
1400M: tony.luck@intel.com
1401L: linux-ia64@vger.kernel.org
1402W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001403T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404S: Maintained
1405
1406SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001407P: Jes Sorensen
1408M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409L: linux-altix@sgi.com
1410L: linux-ia64@vger.kernel.org
1411W: http://www.sgi.com/altix
1412S: Maintained
1413
1414IBM MCA SCSI SUBSYSTEM DRIVER
1415P: Michael Lang
1416M: langa2@kph.uni-mainz.de
1417W: http://www.uni-mainz.de/~langm000/linux.html
1418S: Maintained
1419
1420IBM Power Linux RAID adapter
1421P: Brian King
1422M: brking@us.ibm.com
1423S: Supported
1424
1425IBM ServeRAID RAID DRIVER
1426P: Jack Hammer
1427P: Dave Jeffery
1428M: ipslinux@adaptec.com
1429W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1430S: Supported
1431
1432IDE DRIVER [GENERAL]
1433P: Bartlomiej Zolnierkiewicz
1434M: B.Zolnierkiewicz@elka.pw.edu.pl
1435L: linux-kernel@vger.kernel.org
1436L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001437T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438S: Maintained
1439
1440IDE/ATAPI CDROM DRIVER
1441P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001442M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443L: linux-kernel@vger.kernel.org
1444W: http://www.kernel.dk
1445S: Maintained
1446
1447IDE/ATAPI FLOPPY DRIVERS
1448P: Paul Bristow
1449M: Paul Bristow <paul@paulbristow.net>
1450W: http://paulbristow.net/linux/idefloppy.html
1451L: linux-kernel@vger.kernel.org
1452S: Maintained
1453
1454IDE/ATAPI TAPE DRIVERS
1455P: Gadi Oxman
1456M: Gadi Oxman <gadio@netvision.net.il>
1457L: linux-kernel@vger.kernel.org
1458S: Maintained
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460IEEE 1394 SUBSYSTEM
1461P: Ben Collins
1462M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001463P: Stefan Richter
1464M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465L: linux1394-devel@lists.sourceforge.net
1466W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001467T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468S: Maintained
1469
Stefan Richter87730d02006-09-16 12:24:00 +02001470IEEE 1394 IPV4 DRIVER (eth1394)
1471P: Stefan Richter
1472M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001474S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476IEEE 1394 PCILYNX DRIVER
1477P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001478M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001479P: Stefan Richter
1480M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001482S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484IEEE 1394 RAW I/O DRIVER
1485P: Ben Collins
1486M: bcollins@debian.org
1487P: Dan Dennedy
1488M: dan@dennedy.org
1489L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001490S: Maintained
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492IMS TWINTURBO FRAMEBUFFER DRIVER
1493P: Paul Mundt
1494M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001495L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496S: Maintained
1497
1498INFINIBAND SUBSYSTEM
1499P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001500M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501P: Sean Hefty
1502M: mshefty@ichips.intel.com
1503P: Hal Rosenstock
1504M: halr@voltaire.com
1505L: openib-general@openib.org
1506W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001507T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508S: Supported
1509
1510INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001511P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001512M: dmitry.torokhov@gmail.com
1513M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514L: linux-input@atrey.karlin.mff.cuni.cz
1515L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001516T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517S: Maintained
1518
Robert Lovec9f04f52005-07-15 12:21:07 -04001519INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001520P: John McCutchan
1521M: ttb@tentacle.dhs.org
1522P: Robert Love
1523M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001524L: linux-kernel@vger.kernel.org
1525S: Maintained
1526
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001527INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001528P: Sylvain Meyer
1529M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001530L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001531S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001534P: Antonino Daplas
1535M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001536L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001537S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1540P: Ingo Molnar
1541M: mingo@redhat.com
1542S: Maintained
1543
1544INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1545P: Jeff Garzik
1546M: jgarzik@pobox.com
1547W: http://sourceforge.net/projects/gkernel/
1548S: Maintained
1549
1550INTEL IA32 MICROCODE UPDATE SUPPORT
1551P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001552M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553S: Maintained
1554
Michael Buesch844dd052006-06-26 00:24:59 -07001555INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1556P: Deepak Saxena
1557M: dsaxena@plexity.net
1558S: Maintained
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560INTEL PRO/100 ETHERNET SUPPORT
1561P: John Ronciak
1562M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563P: Jesse Brandeburg
1564M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001565P: Jeff Kirsher
1566M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001567P: Auke Kok
1568M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569W: http://sourceforge.net/projects/e1000/
1570S: Supported
1571
1572INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1573P: Jeb Cramer
1574M: cramerj@intel.com
1575P: John Ronciak
1576M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001577P: Jesse Brandeburg
1578M: jesse.brandeburg@intel.com
1579P: Jeff Kirsher
1580M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001581P: Auke Kok
1582M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583W: http://sourceforge.net/projects/e1000/
1584S: Supported
1585
1586INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001587P: Jeff Kirsher
1588M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589P: Ayyappan Veeraiyan
1590M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591P: John Ronciak
1592M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001593P: Jesse Brandeburg
1594M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001595P: Auke Kok
1596M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597W: http://sourceforge.net/projects/e1000/
1598S: Supported
1599
James Ketrenos826d2ab2005-11-07 18:56:59 -06001600INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1601P: Yi Zhu
1602M: yi.zhu@intel.com
1603P: James Ketrenos
1604M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001605L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001606L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1607W: http://ipw2100.sourceforge.net
1608S: Supported
1609
1610INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1611P: Yi Zhu
1612M: yi.zhu@intel.com
1613P: James Ketrenos
1614M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001615L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001616L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1617W: http://ipw2200.sourceforge.net
1618S: Supported
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620IOC3 DRIVER
1621P: Ralf Baechle
1622M: ralf@linux-mips.org
1623L: linux-mips@linux-mips.org
1624S: Maintained
1625
1626IP MASQUERADING:
1627P: Juanjo Ciarlante
1628M: jjciarla@raiz.uncu.edu.ar
1629S: Maintained
1630
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001631IPATH DRIVER:
1632P: Bryan O'Sullivan
1633M: support@pathscale.com
1634L: openib-general@openib.org
1635S: Supported
1636
Corey Minyard4409ebe2006-04-20 02:43:12 -07001637IPMI SUBSYSTEM
1638P: Corey Minyard
1639M: minyard@acm.org
1640L: openipmi-developer@lists.sourceforge.net
1641W: http://openipmi.sourceforge.net/
1642S: Supported
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644IPX NETWORK LAYER
1645P: Arnaldo Carvalho de Melo
1646M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001647L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648S: Maintained
1649
1650IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001651P: Samuel Ortiz
1652M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001653L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001655S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657ISAPNP
1658P: Jaroslav Kysela
1659M: perex@suse.cz
1660S: Maintained
1661
1662ISDN SUBSYSTEM
1663P: Karsten Keil
1664M: kkeil@suse.de
1665P: Kai Germaschewski
1666M: kai.germaschewski@gmx.de
1667L: isdn4linux@listserv.isdn4linux.de
1668W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001669T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670S: Maintained
1671
1672ISDN SUBSYSTEM (Eicon active card driver)
1673P: Armin Schindler
1674M: mac@melware.de
1675L: isdn4linux@listserv.isdn4linux.de
1676W: http://www.melware.de
1677S: Maintained
1678
1679JOURNALLING FLASH FILE SYSTEM (JFFS)
1680P: Axis Communications AB
1681M: jffs-dev@axis.com
1682L: jffs-dev@axis.com
1683W: http://www.developer.axis.com/software/jffs/
1684S: Maintained
1685
1686JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1687P: David Woodhouse
1688M: dwmw2@infradead.org
1689L: jffs-dev@axis.com
1690W: http://sources.redhat.com/jffs2/
1691S: Maintained
1692
1693JFS FILESYSTEM
1694P: Dave Kleikamp
1695M: shaggy@austin.ibm.com
1696L: jfs-discussion@lists.sourceforge.net
1697W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001698T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699S: Supported
1700
Josh Triplettde456d32006-07-30 03:04:00 -07001701JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001702P: Stephen Tweedie, Andrew Morton
1703M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001704L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001705S: Maintained
1706
Rudolf Marek4660cb32006-10-08 22:01:26 +02001707K8TEMP HARDWARE MONITORING DRIVER
1708P: Rudolf Marek
1709M: r.marek@assembler.cz
1710L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711S: Maintained
1712
1713KCONFIG
1714P: Roman Zippel
1715M: zippel@linux-m68k.org
1716L: kbuild-devel@lists.sourceforge.net
1717S: Maintained
1718
Vivek Goyalea6c2082006-05-20 14:59:55 -07001719KDUMP
1720P: Vivek Goyal
1721M: vgoyal@in.ibm.com
1722P: Haren Myneni
1723M: hbabu@us.ibm.com
1724L: fastboot@lists.osdl.org
1725L: linux-kernel@vger.kernel.org
1726W: http://lse.sourceforge.net/kdump/
1727S: Maintained
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729KERNEL AUTOMOUNTER (AUTOFS)
1730P: H. Peter Anvin
1731M: hpa@zytor.com
1732L: autofs@linux.kernel.org
1733S: Odd Fixes
1734
1735KERNEL AUTOMOUNTER v4 (AUTOFS4)
1736P: Ian Kent
1737M: raven@themaw.net
1738L: autofs@linux.kernel.org
1739S: Maintained
1740
1741KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1742P: Kai Germaschewski
1743M: kai@germaschewski.name
1744P: Sam Ravnborg
1745M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001746T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747S: Maintained
1748
1749KERNEL JANITORS
1750P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001751L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753S: Maintained
1754
1755KERNEL NFSD
1756P: Neil Brown
1757M: neilb@cse.unsw.edu.au
1758L: nfs@lists.sourceforge.net
1759W: http://nfs.sourceforge.net/
1760W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1761S: Maintained
1762
Avi Kivity426d62e2006-12-13 00:34:03 -08001763KERNEL VIRTUAL MACHINE (KVM)
1764P: Avi Kivity
1765M: avi@qumranet.com
1766L: kvm-devel@lists.sourceforge.net
1767W: kvm.sourceforge.net
1768S: Supported
1769
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001770KEXEC
1771P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001772M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001773W: http://www.xmission.com/~ebiederm/files/kexec/
1774L: linux-kernel@vger.kernel.org
1775L: fastboot@osdl.org
1776S: Maintained
1777
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001778KPROBES
1779P: Prasanna S Panchamukhi
1780M: prasanna@in.ibm.com
1781P: Ananth N Mavinakayanahalli
1782M: ananth@in.ibm.com
1783P: Anil S Keshavamurthy
1784M: anil.s.keshavamurthy@intel.com
1785P: David S. Miller
1786M: davem@davemloft.net
1787L: linux-kernel@vger.kernel.org
1788S: Maintained
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001792S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794LASI 53c700 driver for PARISC
1795P: James E.J. Bottomley
1796M: James.Bottomley@HansenPartnership.com
1797L: linux-scsi@vger.kernel.org
1798S: Maintained
1799
Richard Purdie263de9b2006-05-15 09:44:16 -07001800LED SUBSYSTEM
1801P: Richard Purdie
1802M: rpurdie@rpsys.net
1803S: Maintained
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805LEGO USB Tower driver
1806P: Juergen Stuber
1807M: starblue@users.sourceforge.net
1808L: legousb-devel@lists.sourceforge.net
1809W: http://legousb.sourceforge.net/
1810S: Maintained
1811
1812LINUX FOR IBM pSERIES (RS/6000)
1813P: Paul Mackerras
1814M: paulus@au.ibm.com
1815W: http://www.ibm.com/linux/ltc/projects/ppc
1816S: Supported
1817
1818LINUX FOR NCR VOYAGER
1819P: James Bottomley
1820M: James.Bottomley@HansenPartnership.com
1821W: http://www.hansenpartnership.com/voyager
1822S: Maintained
1823
1824LINUX FOR POWERPC
1825P: Paul Mackerras
1826M: paulus@samba.org
1827W: http://www.penguinppc.org/
1828L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001829T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830S: Supported
1831
1832LINUX FOR POWER MACINTOSH
1833P: Benjamin Herrenschmidt
1834M: benh@kernel.crashing.org
1835W: http://www.penguinppc.org/
1836L: linuxppc-dev@ozlabs.org
1837S: Maintained
1838
1839LINUX FOR POWERPC EMBEDDED MPC52XX
1840P: Sylvain Munaut
1841M: tnt@246tNt.com
1842W: http://www.246tNt.com/mpc52xx/
1843W: http://www.penguinppc.org/
1844L: linuxppc-dev@ozlabs.org
1845L: linuxppc-embedded@ozlabs.org
1846S: Maintained
1847
1848LINUX FOR POWERPC EMBEDDED PPC4XX
1849P: Matt Porter
1850M: mporter@kernel.crashing.org
1851W: http://www.penguinppc.org/
1852L: linuxppc-embedded@ozlabs.org
1853S: Maintained
1854
Tom Rinie93adf12005-07-26 12:49:53 -07001855LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856P: Tom Rini
1857M: trini@kernel.crashing.org
1858W: http://www.penguinppc.org/
1859L: linuxppc-embedded@ozlabs.org
1860S: Maintained
1861
Tom Rinie93adf12005-07-26 12:49:53 -07001862LINUX FOR POWERPC EMBEDDED PPC8XX
1863P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001864M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001865W: http://www.penguinppc.org/
1866L: linuxppc-embedded@ozlabs.org
1867S: Maintained
1868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01001870P: Kumar Gala
1871M: galak@kernel.crashing.org
1872W: http://www.penguinppc.org/
1873L: linuxppc-embedded@ozlabs.org
1874S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Olof Johanssonab06ff32006-09-06 14:44:54 -05001876LINUX FOR POWERPC PA SEMI PWRFICIENT
1877P: Olof Johansson
1878M: olof@lixom.net
1879W: http://www.pasemi.com/
1880L: linuxppc-dev@ozlabs.org
1881S: Supported
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883LLC (802.2)
1884P: Arnaldo Carvalho de Melo
1885M: acme@conectiva.com.br
1886S: Maintained
1887
1888LINUX FOR 64BIT POWERPC
1889P: Paul Mackerras
1890M: paulus@samba.org
1891M: paulus@au.ibm.com
1892P: Anton Blanchard
1893M: anton@samba.org
1894M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001895W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001896L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897S: Supported
1898
1899LINUX SECURITY MODULE (LSM) FRAMEWORK
1900P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001901M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001902L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001904T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905S: Supported
1906
1907LM83 HARDWARE MONITOR DRIVER
1908P: Jean Delvare
1909M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001910L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911S: Maintained
1912
1913LM90 HARDWARE MONITOR DRIVER
1914P: Jean Delvare
1915M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001916L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917S: Maintained
1918
1919LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1920P: Richard Russon (FlatCap)
1921M: ldm@flatcap.org
1922L: ldm-devel@lists.sourceforge.net
1923W: http://ldm.sourceforge.net
1924S: Maintained
1925
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001926LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1927P: Eric Moore
1928M: Eric.Moore@lsil.com
1929M: support@lsil.com
1930L: mpt_linux_developer@lsil.com
1931L: linux-scsi@vger.kernel.org
1932W: http://www.lsilogic.com/support
1933S: Supported
1934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1936P: Matthew Wilcox
1937M: matthew@wil.cx
1938L: linux-scsi@vger.kernel.org
1939S: Maintained
1940
1941M68K ARCHITECTURE
1942P: Geert Uytterhoeven
1943M: geert@linux-m68k.org
1944P: Roman Zippel
1945M: zippel@linux-m68k.org
1946L: linux-m68k@lists.linux-m68k.org
1947W: http://www.linux-m68k.org/
1948W: http://linux-m68k-cvs.ubb.ca/
1949S: Maintained
1950
1951M68K ON APPLE MACINTOSH
1952P: Joshua Thompson
1953M: funaho@jurai.org
1954W: http://www.mac.linux-m68k.org/
1955L: linux-mac68k@mac.linux-m68k.org
1956S: Maintained
1957
1958M68K ON HP9000/300
1959P: Philip Blundell
1960M: philb@gnu.org
1961W: http://www.tazenda.demon.co.uk/phil/linux-hp
1962S: Maintained
1963
1964MARVELL YUKON / SYSKONNECT DRIVER
1965P: Mirko Lindner
1966M: mlindner@syskonnect.de
1967P: Ralph Roesler
1968M: rroesler@syskonnect.de
1969W: http://www.syskonnect.com
1970S: Supported
1971
Michael Kerriskfaf16682005-07-31 22:34:47 -07001972MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01001973P: Michael Kerrisk
1974M: mtk-manpages@gmx.net
1975W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1976S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07001977
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001978MARVELL MV643XX ETHERNET DRIVER
1979P: Dale Farnsworth
1980M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001982M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001983L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001984S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986MATROX FRAMEBUFFER DRIVER
1987P: Petr Vandrovec
1988M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001989L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990S: Maintained
1991
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001992MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01001993P: Neela Syam Kolli
1994M: Neela.Kolli@engenio.com
1995S: linux-scsi@vger.kernel.org
1996W: http://megaraid.lsilogic.com
1997S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001998
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001999MEMORY MANAGEMENT
2000L: linux-mm@kvack.org
2001L: linux-kernel@vger.kernel.org
2002W: http://www.linux-mm.org
2003S: Maintained
2004
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002005MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006P: David Woodhouse
2007M: dwmw2@infradead.org
2008W: http://www.linux-mtd.infradead.org/
2009L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002010T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011S: Maintained
2012
2013MICROTEK X6 SCANNER
2014P: Oliver Neukum
2015M: oliver@neukum.name
2016S: Maintained
2017
2018MIPS
2019P: Ralf Baechle
2020M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002021W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002023T: git www.linux-mips.org:/pub/scm/linux.git
2024S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026MISCELLANEOUS MCA-SUPPORT
2027P: James Bottomley
2028M: jejb@steeleye.com
2029L: linux-kernel@vger.kernel.org
2030S: Maintained
2031
2032MODULE SUPPORT
2033P: Rusty Russell
2034M: rusty@rustcorp.com.au
2035L: linux-kernel@vger.kernel.org
2036S: Maintained
2037
2038MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2039P: Stelian Pop
2040M: stelian@popies.net
2041W: http://popies.net/meye/
2042S: Maintained
2043
2044MOUSE AND MISC DEVICES [GENERAL]
2045P: Alessandro Rubini
2046M: rubini@ipvvis.unipv.it
2047L: linux-kernel@vger.kernel.org
2048S: Maintained
2049
Jiri Slabyd7354102006-12-08 02:38:35 -08002050MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2051P: Jiri Slaby
2052M: jirislaby@gmail.com
2053L: linux-kernel@vger.kernel.org
2054S: Maintained
2055
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002056MSI LAPTOP SUPPORT
2057P: Lennart Poettering
2058M: mzxreary@0pointer.de
2059L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2060W: http://0pointer.de/lennart/tchibo.html
2061S: Maintained
2062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063MTRR AND SIMILAR SUPPORT [i386]
2064P: Richard Gooch
2065M: rgooch@atnf.csiro.au
2066L: linux-kernel@vger.kernel.org
2067W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2068S: Maintained
2069
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002070MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2071P: Pierre Ossman
2072M: drzeus-mmc@drzeus.cx
2073L: linux-kernel@vger.kernel.org
2074S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076MULTISOUND SOUND DRIVER
2077P: Andrew Veliath
2078M: andrewtv@usa.net
2079S: Maintained
2080
Jiri Slabyd7354102006-12-08 02:38:35 -08002081MULTITECH MULTIPORT CARD (ISICOM)
2082P: Jiri Slaby
2083M: jirislaby@gmail.com
2084L: linux-kernel@vger.kernel.org
2085S: Maintained
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087NATSEMI ETHERNET DRIVER (DP8381x)
2088P: Tim Hockin
2089M: thockin@hockin.org
2090S: Maintained
2091
2092NCP FILESYSTEM
2093P: Petr Vandrovec
2094M: vandrove@vc.cvut.cz
2095L: linware@sh.cvut.cz
2096S: Maintained
2097
2098NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2099P: James E.J. Bottomley
2100M: James.Bottomley@HansenPartnership.com
2101L: linux-scsi@vger.kernel.org
2102S: Maintained
2103
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002104NETEM NETWORK EMULATOR
2105P: Stephen Hemminger
2106M: shemminger@osdl.org
2107L: netem@osdl.org
2108S: Maintained
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110NETFILTER/IPTABLES/IPCHAINS
2111P: Rusty Russell
2112P: Marc Boucher
2113P: James Morris
2114P: Harald Welte
2115P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002116P: Patrick McHardy
2117M: kaber@trash.net
2118L: netfilter-devel@lists.netfilter.org
2119L: netfilter@lists.netfilter.org
2120L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121W: http://www.netfilter.org/
2122W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123S: Supported
2124
Paul Moore4cc67732006-09-25 15:57:13 -07002125NETLABEL
2126P: Paul Moore
2127M: paul.moore@hp.com
2128W: http://netlabel.sf.net
2129L: netdev@vger.kernel.org
2130S: Supported
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132NETROM NETWORK LAYER
2133P: Ralf Baechle
2134M: ralf@linux-mips.org
2135L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002136W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137S: Maintained
2138
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002139NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140P: Paul Clements
2141M: Paul.Clements@steeleye.com
2142S: Maintained
2143
2144NETWORK DEVICE DRIVERS
2145P: Andrew Morton
2146M: akpm@osdl.org
2147P: Jeff Garzik
2148M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002149L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002150T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151S: Maintained
2152
2153NETWORKING [GENERAL]
2154P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002155M: netdev@vger.kernel.org
2156L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002157W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158S: Maintained
2159
2160NETWORKING [IPv4/IPv6]
2161P: David S. Miller
2162M: davem@davemloft.net
2163P: Alexey Kuznetsov
2164M: kuznet@ms2.inr.ac.ru
2165P: Pekka Savola (ipv6)
2166M: pekkas@netcore.fi
2167P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002168M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169P: Hideaki YOSHIFUJI
2170M: yoshfuji@linux-ipv6.org
2171P: Patrick McHardy
2172M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002173L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002174T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175S: Maintained
2176
John W. Linville29f8f632006-01-18 14:52:48 -08002177NETWORKING [WIRELESS]
2178P: John W. Linville
2179M: linville@tuxdriver.com
2180L: netdev@vger.kernel.org
2181T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2182S: Maintained
2183
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002184NETXEN (1/10) GbE SUPPORT
2185P: Amit S. Kale
2186M: amitkale@netxen.com
2187L: netdev@vger.kernel.org
2188W: http://www.netxen.com
2189S: Supported
2190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191IPVS
2192P: Wensong Zhang
2193M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002194P: Simon Horman
2195M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196P: Julian Anastasov
2197M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002198L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199S: Maintained
2200
2201NFS CLIENT
2202P: Trond Myklebust
2203M: trond.myklebust@fys.uio.no
2204L: linux-kernel@vger.kernel.org
2205S: Maintained
2206
2207NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002208P: Jan-Pascal van Best
2209M: janpascal@vanbest.org
2210P: Andreas Mohr
2211M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002212L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213S: Maintained
2214
2215NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2216P: YOKOTA Hiroshi
2217M: yokota@netlab.is.tsukuba.ac.jp
2218W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2219S: Maintained
2220
2221NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2222P: GOTO Masanori
2223M: gotom@debian.or.jp
2224P: YOKOTA Hiroshi
2225M: yokota@netlab.is.tsukuba.ac.jp
2226W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2227S: Maintained
2228
2229NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2230P: Eberhard Moenkeberg
2231M: emoenke@gwdg.de
2232L: linux-kernel@vger.kernel.org
2233S: Maintained
2234
2235NTFS FILESYSTEM
2236P: Anton Altaparmakov
2237M: aia21@cantab.net
2238L: linux-ntfs-dev@lists.sourceforge.net
2239L: linux-kernel@vger.kernel.org
2240W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002241T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242S: Maintained
2243
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002244NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002245P: Antonino Daplas
2246M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002247L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002248S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002250OPENCORES I2C BUS DRIVER
2251P: Peter Korsgaard
2252M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002253L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002254S: Maintained
2255
Mark Fashehccd979b2005-12-15 14:31:24 -08002256ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2257P: Mark Fasheh
2258M: mark.fasheh@oracle.com
2259P: Kurt Hackel
2260M: kurt.hackel@oracle.com
2261L: ocfs2-devel@oss.oracle.com
2262W: http://oss.oracle.com/projects/ocfs2/
2263S: Supported
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265OLYMPIC NETWORK DRIVER
2266P: Peter De Shrijver
2267M: p2@ace.ulyssis.student.kuleuven.ac.be
2268P: Mike Phillips
2269M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002270L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271L: linux-tr@linuxtr.net
2272W: http://www.linuxtr.net
2273S: Maintained
2274
Harald Weltec1986ee2005-11-13 16:06:29 -08002275OMNIKEY CARDMAN 4000 DRIVER
2276P: Harald Welte
2277M: laforge@gnumonks.org
2278S: Maintained
2279
Harald Welte77c44ab2005-11-13 16:06:26 -08002280OMNIKEY CARDMAN 4040 DRIVER
2281P: Harald Welte
2282M: laforge@gnumonks.org
2283S: Maintained
2284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285ONSTREAM SCSI TAPE DRIVER
2286P: Willem Riede
2287M: osst@riede.org
2288L: osst-users@lists.sourceforge.net
2289L: linux-scsi@vger.kernel.org
2290S: Maintained
2291
2292OPL3-SA2, SA3, and SAx DRIVER
2293P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002294M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295L: linux-sound@vger.kernel.org
2296S: Maintained
2297
2298OPROFILE
2299P: Philippe Elie
2300M: phil.el@wanadoo.fr
2301L: oprofile-list@lists.sf.net
2302S: Maintained
2303
2304ORINOCO DRIVER
2305P: Pavel Roskin
2306M: proski@gnu.org
2307P: David Gibson
2308M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002309L: orinoco-users@lists.sourceforge.net
2310L: orinoco-devel@lists.sourceforge.net
2311W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312S: Maintained
2313
2314PARALLEL PORT SUPPORT
2315P: Phil Blundell
2316M: philb@gnu.org
2317P: Tim Waugh
2318M: tim@cyberelk.net
2319P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320P: Andrea Arcangeli
2321M: andrea@suse.de
2322L: linux-parport@lists.infradead.org
2323W: http://people.redhat.com/twaugh/parport/
2324S: Maintained
2325
2326PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2327P: Tim Waugh
2328M: tim@cyberelk.net
2329L: linux-parport@lists.infradead.org
2330W: http://www.torque.net/linux-pp.html
2331S: Maintained
2332
2333PARISC ARCHITECTURE
2334P: Matthew Wilcox
2335M: matthew@wil.cx
2336P: Grant Grundler
2337M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002338P: Kyle McMartin
2339M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340L: parisc-linux@parisc-linux.org
2341W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002342T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2343T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344S: Maintained
2345
Jim Cromie1662d322006-10-06 00:43:59 -07002346PC87360 HARDWARE MONITORING DRIVER
2347P: Jim Cromie
2348M: jim.cromie@gmail.com
2349L: lm-sensors@lm-sensors.org
2350S: Maintained
2351
2352PC8736x GPIO DRIVER
2353P: Jim Cromie
2354M: jim.cromie@gmail.com
2355S: Maintained
2356
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002357PCI ERROR RECOVERY
2358P: Linas Vepstas
2359M: linas@austin.ibm.com
2360L: linux-kernel@vger.kernel.org
2361L: linux-pci@atrey.karlin.mff.cuni.cz
2362S: Supported
2363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2365P: Thomas Sailer
2366M: sailer@ife.ee.ethz.ch
2367L: linux-sound@vger.kernel.org
2368W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2369S: Maintained
2370
2371PCI SUBSYSTEM
2372P: Greg Kroah-Hartman
2373M: gregkh@suse.de
2374L: linux-kernel@vger.kernel.org
2375L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002376T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377S: Supported
2378
2379PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002380P: Kristen Carlson Accardi
2381M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382S: Supported
2383
2384PCI HOTPLUG COMPAQ DRIVER
2385P: Greg Kroah-Hartman
2386M: greg@kroah.com
2387S: Maintained
2388
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002389PCIE HOTPLUG DRIVER
2390P: Kristen Carlson Accardi
2391M: kristen.c.accardi@intel.com
2392L: pcihpd-discuss@lists.sourceforge.net
2393S: Maintained
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002396P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002397L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002399T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002400S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402PCNET32 NETWORK DRIVER
2403P: Thomas Bogendörfer
2404M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002405L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406S: Maintained
2407
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002408PER-TASK DELAY ACCOUNTING
2409P: Shailabh Nagar
2410M: nagar@watson.ibm.com
2411L: linux-kernel@vger.kernel.org
2412S: Maintained
2413
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002414PERSONALITY HANDLING
2415P: Christoph Hellwig
2416M: hch@infradead.org
2417L: linux-abi-devel@lists.sourceforge.net
2418S: Maintained
2419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420PHRAM MTD DRIVER
2421P: Jörn Engel
2422M: joern@wh.fh-wedel.de
2423L: linux-mtd@lists.infradead.org
2424S: Maintained
2425
Peter Osterlund249a6772005-09-27 21:45:30 -07002426PKTCDVD DRIVER
2427P: Peter Osterlund
2428M: petero2@telia.com
2429L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002430S: Maintained
2431
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432POSIX CLOCKS and TIMERS
2433P: George Anzinger
2434M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002435L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436S: Supported
2437
Eugene Surovegin24682972005-10-14 03:00:53 -07002438POWERPC 4xx EMAC DRIVER
2439P: Eugene Surovegin
2440M: ebs@ebshome.net
2441W: http://kernel.ebshome.net/emac/
2442L: linuxppc-embedded@ozlabs.org
2443L: netdev@vger.kernel.org
2444S: Maintained
2445
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446PNP SUPPORT
2447P: Adam Belay
2448M: ambx1@neo.rr.com
2449S: Maintained
2450
2451PPP PROTOCOL DRIVERS AND COMPRESSORS
2452P: Paul Mackerras
2453M: paulus@samba.org
2454L: linux-ppp@vger.kernel.org
2455S: Maintained
2456
2457PPP OVER ATM (RFC 2364)
2458P: Mitchell Blank Jr
2459M: mitch@sfgoth.com
2460S: Maintained
2461
2462PPP OVER ETHERNET
2463P: Michal Ostrowski
2464M: mostrows@speakeasy.net
2465S: Maintained
2466
2467PREEMPTIBLE KERNEL
2468P: Robert Love
2469M: rml@tech9.net
2470L: linux-kernel@vger.kernel.org
2471L: kpreempt-tech@lists.sourceforge.net
2472W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2473S: Supported
2474
2475PRISM54 WIRELESS DRIVER
2476P: Prism54 Development Team
2477M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002478L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479W: http://prism54.org
2480S: Maintained
2481
2482PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2483P: Peter Denison
2484M: promise@pnd-pc.demon.co.uk
2485W: http://www.pnd-pc.demon.co.uk/promise/
2486S: Maintained
2487
Geoff Levandf58a9d12006-11-23 00:46:51 +01002488PS3 PLATFORM SUPPORT
2489P: Geoff Levand
2490M: geoffrey.levand@am.sony.com
2491L: linuxppc-dev@ozlabs.org
2492L: cbe-oss-dev@ozlabs.org
2493S: Supported
2494
Michael Krufky83202042006-07-03 00:24:18 -07002495PVRUSB2 VIDEO4LINUX DRIVER
2496P: Mike Isely
2497M: isely@pobox.com
2498L: pvrusb2@isely.net
2499L: video4linux-list@redhat.com
2500W: http://www.isely.net/pvrusb2/
2501S: Maintained
2502
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503PXA2xx SUPPORT
2504P: Nicolas Pitre
2505M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002506L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507S: Maintained
2508
2509QLOGIC QLA2XXX FC-SCSI DRIVER
2510P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002511M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512L: linux-scsi@vger.kernel.org
2513S: Supported
2514
Ron Mercer5a4faa872006-07-25 00:40:21 -07002515QLOGIC QLA3XXX NETWORK DRIVER
2516P: Ron Mercer
2517M: linux-driver@qlogic.com
2518L: netdev@vger.kernel.org
2519S: Supported
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521QNX4 FILESYSTEM
2522P: Anders Larsen
2523M: al@alarsen.net
2524L: linux-kernel@vger.kernel.org
2525W: http://www.alarsen.net/linux/qnx4fs/
2526S: Maintained
2527
2528RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002529P: Benjamin Herrenschmidt
2530M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002531L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532S: Maintained
2533
2534RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002535P: Paul Mackerras
2536M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002537L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538S: Maintained
2539
2540RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2541P: Corey Thomas
2542M: corey@world.std.com
2543L: linux-kernel@vger.kernel.org
2544S: Maintained
2545
Matt Mackall9e95ce22005-04-16 15:25:56 -07002546RANDOM NUMBER DRIVER
2547P: Matt Mackall
2548M: mpm@selenic.com
2549S: Maintained
2550
Matt Porter394b7012005-11-07 01:00:15 -08002551RAPIDIO SUBSYSTEM
2552P: Matt Porter
2553M: mporter@kernel.crashing.org
2554L: linux-kernel@vger.kernel.org
2555S: Maintained
2556
Josh Triplett595182b2006-10-04 02:17:21 -07002557READ-COPY UPDATE (RCU)
2558P: Dipankar Sarma
2559M: dipankar@in.ibm.com
2560W: http://www.rdrop.com/users/paulmck/rclock/
2561L: linux-kernel@vger.kernel.org
2562S: Supported
2563
2564RCUTORTURE MODULE
2565P: Josh Triplett
2566M: josh@freedesktop.org
2567L: linux-kernel@vger.kernel.org
2568S: Maintained
2569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570REAL TIME CLOCK DRIVER
2571P: Paul Gortmaker
2572M: p_gortmaker@yahoo.com
2573L: linux-kernel@vger.kernel.org
2574S: Maintained
2575
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002576REAL TIME CLOCK (RTC) SUBSYSTEM
2577P: Alessandro Zummo
2578M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002579L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002580S: Maintained
2581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582REISERFS FILE SYSTEM
2583P: Hans Reiser
2584M: reiserfs-dev@namesys.com
2585L: reiserfs-list@namesys.com
2586W: http://www.namesys.com
2587S: Supported
2588
2589ROCKETPORT DRIVER
2590P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591W: http://www.comtrol.com
2592S: Maintained
2593
2594ROSE NETWORK LAYER
2595P: Ralf Baechle
2596M: ralf@linux-mips.org
2597L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002598W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599S: Maintained
2600
2601RISCOM8 DRIVER
2602S: Orphan
2603
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002604S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002605P: Antonino Daplas
2606M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002607L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002608S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610S390
2611P: Martin Schwidefsky
2612M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002613P: Heiko Carstens
2614M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615M: linux390@de.ibm.com
2616L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002617W: http://www.ibm.com/developerworks/linux/linux390/
2618S: Supported
2619
2620S390 NETWORK DRIVERS
2621P: Frank Pavlic
2622M: fpavlic@de.ibm.com
2623M: linux390@de.ibm.com
2624L: linux-390@vm.marist.edu
2625W: http://www.ibm.com/developerworks/linux/linux390/
2626S: Supported
2627
2628S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002629P: Swen Schillig
2630M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002631M: linux390@de.ibm.com
2632L: linux-390@vm.marist.edu
2633W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634S: Supported
2635
2636SAA7146 VIDEO4LINUX-2 DRIVER
2637P: Michael Hunold
2638M: michael@mihu.de
2639W: http://www.mihu.de/linux/saa7146
2640S: Maintained
2641
2642SBPCD CDROM DRIVER
2643P: Eberhard Moenkeberg
2644M: emoenke@gwdg.de
2645L: linux-kernel@vger.kernel.org
2646S: Maintained
2647
2648SC1200 WDT DRIVER
2649P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002650M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651S: Maintained
2652
2653SCHEDULER
2654P: Ingo Molnar
2655M: mingo@elte.hu
2656P: Robert Love [the preemptible kernel bits]
2657M: rml@tech9.net
2658L: linux-kernel@vger.kernel.org
2659S: Maintained
2660
2661SCSI CDROM DRIVER
2662P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002663M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664L: linux-scsi@vger.kernel.org
2665W: http://www.kernel.dk
2666S: Maintained
2667
2668SCSI SG DRIVER
2669P: Doug Gilbert
2670M: dgilbert@interlog.com
2671L: linux-scsi@vger.kernel.org
2672W: http://www.torque.net/sg
2673S: Maintained
2674
2675SCSI SUBSYSTEM
2676P: James E.J. Bottomley
2677M: James.Bottomley@SteelEye.com
2678L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002679T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680S: Maintained
2681
2682SCSI TAPE DRIVER
2683P: Kai Mäkisara
2684M: Kai.Makisara@kolumbus.fi
2685L: linux-scsi@vger.kernel.org
2686S: Maintained
2687
2688SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002689P: Sridhar Samudrala
2690M: sri@us.ibm.com
2691L: lksctp-developers@lists.sourceforge.net
2692S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
2694SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002695P: Jim Cromie
2696M: jim.cromie@gmail.com
2697S: Odd Fixes
2698
2699SCx200 GPIO DRIVER
2700P: Jim Cromie
2701M: jim.cromie@gmail.com
2702S: Maintained
2703
2704SCx200 HRT CLOCKSOURCE DRIVER
2705P: Jim Cromie
2706M: jim.cromie@gmail.com
2707S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709SECURITY CONTACT
2710P: Security Officers
2711M: security@kernel.org
2712S: Supported
2713
2714SELINUX SECURITY MODULE
2715P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002716M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002718M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719L: linux-kernel@vger.kernel.org (kernel issues)
2720L: selinux@tycho.nsa.gov (general discussion)
2721W: http://www.nsa.gov/selinux
2722S: Supported
2723
2724SERIAL ATA (SATA) SUBSYSTEM:
2725P: Jeff Garzik
2726M: jgarzik@pobox.com
2727L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002728T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729S: Supported
2730
2731SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2732P: Pat Gefre
2733M: pfg@sgi.com
2734L: linux-ia64@vger.kernel.org
2735S: Supported
2736
2737SGI VISUAL WORKSTATION 320 AND 540
2738P: Andrey Panin
2739M: pazke@donpac.ru
2740L: linux-visws-devel@lists.sf.net
2741W: http://linux-visws.sf.net
2742S: Maintained for 2.6.
2743
2744SIMTEC EB110ATX (Chalice CATS)
2745P: Ben Dooks
2746P: Vincent Sanders
2747M: support@simtec.co.uk
2748W: http://www.simtec.co.uk/products/EB110ATX/
2749S: Supported
2750
2751SIMTEC EB2410ITX (BAST)
2752P: Ben Dooks
2753P: Vincent Sanders
2754M: support@simtec.co.uk
2755W: http://www.simtec.co.uk/products/EB2410ITX/
2756S: Supported
2757
Francois Romieu92aab3c2005-07-30 13:11:18 +02002758SIS 190 ETHERNET DRIVER
2759P: Francois Romieu
2760M: romieu@fr.zoreil.com
2761L: netdev@vger.kernel.org
2762S: Maintained
2763
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764SIS 5513 IDE CONTROLLER DRIVER
2765P: Lionel Bouton
2766M: Lionel.Bouton@inet6.fr
2767W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2768W: http://gyver.homeip.net/sis5513/index.html
2769S: Maintained
2770
2771SIS 900/7016 FAST ETHERNET DRIVER
2772P: Daniele Venzano
2773M: venza@brownhat.org
2774W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002775L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776S: Maintained
2777
2778SIS FRAMEBUFFER DRIVER
2779P: Thomas Winischhofer
2780M: thomas@winischhofer.net
2781W: http://www.winischhofer.net/linuxsisvga.shtml
2782S: Maintained
2783
2784SIS USB2VGA DRIVER
2785P: Thomas Winischhofer
2786M: thomas@winischhofer.net
2787W: http://www.winischhofer.at/linuxsisusbvga.shtml
2788S: Maintained
2789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790SMC91x ETHERNET DRIVER
2791P: Nicolas Pitre
2792M: nico@cam.org
2793S: Maintained
2794
Daniel Drake8f0f8502006-07-18 22:00:25 +01002795SOFTMAC LAYER (IEEE 802.11)
2796P: Johannes Berg
2797M: johannes@sipsolutions.net
2798P: Joe Jezak
2799M: josejx@gentoo.org
2800P: Daniel Drake
2801M: dsd@gentoo.org
2802W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002803L: netdev@vger.kernel.org
2804S: Maintained
2805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806SOFTWARE RAID (Multiple Disks) SUPPORT
2807P: Ingo Molnar
2808M: mingo@redhat.com
2809P: Neil Brown
2810M: neilb@cse.unsw.edu.au
2811L: linux-raid@vger.kernel.org
2812S: Maintained
2813
2814SOFTWARE SUSPEND:
2815P: Pavel Machek
2816M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002817L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818S: Maintained
2819
2820SONIC NETWORK DRIVER
2821P: Thomas Bogendoerfer
2822M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002823L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824S: Maintained
2825
2826SONY VAIO CONTROL DEVICE DRIVER
2827P: Stelian Pop
2828M: stelian@popies.net
2829W: http://popies.net/sonypi/
2830S: Maintained
2831
2832SOUND
2833P: Jaroslav Kysela
2834M: perex@suse.cz
2835L: alsa-devel@alsa-project.org
2836S: Maintained
2837
Kumar Gala025c3982006-04-02 16:05:54 -05002838SPI SUBSYSTEM
2839P: David Brownell
2840M: dbrownell@users.sourceforge.net
2841L: spi-devel-general@lists.sourceforge.net
2842S: Maintained
2843
Steven Rostedt855f46a2006-08-05 12:14:50 -07002844STABLE BRANCH:
2845P: Greg Kroah-Hartman
2846M: greg@kroah.com
2847P: Chris Wright
2848M: chrisw@sous-sol.org
2849L: stable@kernel.org
2850S: Maintained
2851
Kylene Hall1c72d462005-05-01 08:59:13 -07002852TPM DEVICE DRIVER
2853P: Kylene Hall
2854M: kjhall@us.ibm.com
2855W: http://tpmdd.sourceforge.net
2856L: tpmdd-devel@lists.sourceforge.net
2857S: Maintained
2858
Mark Gross1a80ba82005-10-30 15:02:55 -08002859Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002860P: Mark Gross
2861M: mark.gross@intel.com
2862S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08002863
Chris Zankel48b415c2005-06-23 22:01:07 -07002864TENSILICA XTENSA PORT (xtensa):
2865P: Chris Zankel
2866M: chris@zankel.net
2867S: Maintained
2868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869UltraSPARC (sparc64):
2870P: David S. Miller
2871M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002873T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874S: Maintained
2875
2876SHARP LH SUPPORT (LH7952X & LH7A40X)
2877P: Marc Singer
2878M: elf@buici.com
2879W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002880L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881S: Maintained
2882
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002883SHPC HOTPLUG DRIVER
2884P: Kristen Carlson Accardi
2885M: kristen.c.accardi@intel.com
2886L: pcihpd-discuss@lists.sourceforge.net
2887S: Maintained
2888
Pierre Ossmand129bce2006-03-24 03:18:17 -08002889SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2890P: Pierre Ossman
2891M: drzeus-sdhci@drzeus.cx
2892L: sdhci-devel@list.drzeus.cx
2893W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2894S: Maintained
2895
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002896SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2897P: Stephen Hemminger
2898M: shemminger@osdl.org
2899L: netdev@vger.kernel.org
2900S: Maintained
2901
Chris Boot1a87d942006-07-10 04:45:34 -07002902SOEKRIS NET48XX LED SUPPORT
2903P: Chris Boot
2904M: bootc@bootc.net
2905S: Maintained
2906
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907SPARC (sparc32):
2908P: William L. Irwin
2909M: wli@holomorphy.com
2910L: sparclinux@vger.kernel.org
2911S: Maintained
2912
2913SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2914P: Roger Wolff
2915M: R.E.Wolff@BitWizard.nl
2916L: linux-kernel@vger.kernel.org ?
2917S: Supported
2918
Jim Lewis2752e402006-09-29 02:01:19 -07002919SPIDERNET NETWORK DRIVER for CELL
2920P: Jim Lewis
2921M: jim@jklewis.com
2922L: netdev@vger.kernel.org
2923S: Supported
2924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925SRM (Alpha) environment access
2926P: Jan-Benedict Glaw
2927M: jbglaw@lug-owl.de
2928L: linux-kernel@vger.kernel.org
2929S: Maintained
2930
2931STARFIRE/DURALAN NETWORK DRIVER
2932P: Ion Badulescu
2933M: ionut@cs.columbia.edu
2934S: Maintained
2935
2936STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2937W: http://mosquitonet.Stanford.EDU/strip.html
2938S: Unsupported ?
2939
2940STRADIS MPEG-2 DECODER DRIVER
2941P: Nathan Laredo
2942M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943W: http://www.stradis.com/
2944S: Maintained
2945
2946SUPERH (sh)
2947P: Paul Mundt
2948M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002949L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951S: Maintained
2952
2953SUPERH64 (sh64)
2954P: Paul Mundt
2955M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956L: linuxsh-shmedia-dev@lists.sourceforge.net
2957W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958S: Maintained
2959
2960SUN3/3X
2961P: Sam Creasey
2962M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963W: http://sammy.net/sun3/
2964S: Maintained
2965
2966SVGA HANDLING
2967P: Martin Mares
2968M: mj@ucw.cz
2969L: linux-video@atrey.karlin.mff.cuni.cz
2970S: Maintained
2971
2972SYSV FILESYSTEM
2973P: Christoph Hellwig
2974M: hch@infradead.org
2975S: Maintained
2976
Stephen Hemminger781b456a2006-07-10 20:25:29 -07002977TC CLASSIFIER
2978P: Jamal Hadi Salim
2979M: hadi@cyberus.ca
2980L: netdev@vger.kernel.org
2981S: Maintained
2982
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002983TCP LOW PRIORITY MODULE
2984P: Wong Hoi Sing, Edison
2985M: hswong3i@gmail.com
2986P: Hung Hing Lun, Mike
2987M: hlhung3i@gmail.com
2988W: http://tcp-lp-mod.sourceforge.net/
2989S: Maintained
2990
Alex Dubov4020f2d2006-10-04 02:15:37 -07002991TI FLASH MEDIA INTERFACE DRIVER
2992P: Alex Dubov
2993M: oakad@yahoo.com
2994S: Maintained
2995
Michael Buesch844dd052006-06-26 00:24:59 -07002996TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2997P: Deepak Saxena
2998M: dsaxena@plexity.net
2999S: Maintained
3000
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003001TASKSTATS STATISTICS INTERFACE
3002P: Shailabh Nagar
3003M: nagar@watson.ibm.com
3004L: linux-kernel@vger.kernel.org
3005S: Maintained
3006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003008P: Romain Lievin
3009M: roms@lpg.ticalc.org
3010S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Per Lidene86eaa32006-01-12 16:45:18 +01003012TIPC NETWORK LAYER
3013P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003014M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003015P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003016M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003017P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003018M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003019L: tipc-discussion@lists.sourceforge.net
3020W: http://tipc.sourceforge.net/
3021W: http://tipc.cslab.ericsson.net/
3022T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3023S: Maintained
3024
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025TLAN NETWORK DRIVER
3026P: Samuel Chessman
3027M: chessman@tux.org
3028L: tlan-devel@lists.sourceforge.net
3029W: http://sourceforge.net/projects/tlan/
3030S: Maintained
3031
3032TOKEN-RING NETWORK DRIVER
3033P: Mike Phillips
3034M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003035L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036L: linux-tr@linuxtr.net
3037W: http://www.linuxtr.net
3038S: Maintained
3039
3040TOSHIBA ACPI EXTRAS DRIVER
3041P: John Belmonte
3042M: toshiba_acpi@memebeam.org
3043W: http://memebeam.org/toys/ToshibaAcpiDriver
3044S: Maintained
3045
3046TOSHIBA SMM DRIVER
3047P: Jonathan Buzzard
3048M: jonathan@buzzard.org.uk
3049L: tlinux-users@tce.toshiba-dme.co.jp
3050W: http://www.buzzard.org.uk/toshiba/
3051S: Maintained
3052
3053TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3054P: Muli Ben-Yehuda
3055M: mulix@mulix.org
3056L: linux-kernel@vger.kernel.org
3057S: Maintained
3058
3059TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003060P: Adrian Bunk
3061M: trivial@kernel.org
3062L: linux-kernel@vger.kernel.org
3063W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3064T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3065S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
3067TMS380 TOKEN-RING NETWORK DRIVER
3068P: Adam Fritzler
3069M: mid@auk.cx
3070L: linux-tr@linuxtr.net
3071W: http://www.auk.cx/tms380tr/
3072S: Maintained
3073
3074TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003075P: Valerie Henson
3076M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077L: tulip-users@lists.sourceforge.net
3078W: http://sourceforge.net/projects/tulip/
3079S: Maintained
3080
3081TUN/TAP driver
3082P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003083M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084L: vtun@office.satix.net
3085W: http://vtun.sourceforge.net/tun
3086S: Maintained
3087
3088U14-34F SCSI DRIVER
3089P: Dario Ballabio
3090M: ballabio_dario@emc.com
3091L: linux-scsi@vger.kernel.org
3092S: Maintained
3093
3094UDF FILESYSTEM
3095P: Ben Fennema
3096M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097W: http://linux-udf.sourceforge.net
3098S: Maintained
3099
3100UNIFORM CDROM DRIVER
3101P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003102M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103L: linux-kernel@vger.kernel.org
3104W: http://www.kernel.dk
3105S: Maintained
3106
3107USB ACM DRIVER
3108P: Oliver Neukum
3109M: oliver@neukum.name
3110L: linux-usb-users@lists.sourceforge.net
3111L: linux-usb-devel@lists.sourceforge.net
3112S: Maintained
3113
3114USB BLOCK DRIVER (UB ub)
3115P: Pete Zaitcev
3116M: zaitcev@redhat.com
3117L: linux-kernel@vger.kernel.org
3118L: linux-usb-devel@lists.sourceforge.net
3119S: Supported
3120
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121USB CDC ETHERNET DRIVER
3122P: Greg Kroah-Hartman
3123M: greg@kroah.com
3124L: linux-usb-users@lists.sourceforge.net
3125L: linux-usb-devel@lists.sourceforge.net
3126S: Maintained
3127W: http://www.kroah.com/linux-usb/
3128
3129USB EHCI DRIVER
3130P: David Brownell
3131M: dbrownell@users.sourceforge.net
3132L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003133S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
Luca Risolia7ce08c92006-01-11 02:06:59 +00003135USB ET61X[12]51 DRIVER
3136P: Luca Risolia
3137M: luca.risolia@studio.unibo.it
3138L: linux-usb-devel@lists.sourceforge.net
3139L: video4linux-list@redhat.com
3140W: http://www.linux-projects.org
3141S: Maintained
3142
David Brownell69ae9e32006-11-14 02:03:31 -08003143USB GADGET/PERIPHERAL SUBSYSTEM
3144P: David Brownell
3145M: dbrownell@users.sourceforge.net
3146L: linux-usb-devel@lists.sourceforge.net
3147W: http://www.linux-usb.org/gadget
3148S: Maintained
3149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150USB HID/HIDBP DRIVERS
3151P: Vojtech Pavlik
3152M: vojtech@suse.cz
3153L: linux-usb-users@lists.sourceforge.net
3154L: linux-usb-devel@lists.sourceforge.net
3155S: Maintained
3156
3157USB HUB DRIVER
3158P: Johannes Erdfelt
3159M: johannes@erdfelt.com
3160L: linux-usb-users@lists.sourceforge.net
3161L: linux-usb-devel@lists.sourceforge.net
3162S: Maintained
3163
Olav Kongas959eea22005-11-03 17:38:14 +02003164USB ISP116X DRIVER
3165P: Olav Kongas
3166M: ok@artecdesign.ee
3167L: linux-usb-devel@lists.sourceforge.net
3168S: Maintained
3169
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170USB KAWASAKI LSI DRIVER
3171P: Oliver Neukum
3172M: oliver@neukum.name
3173L: linux-usb-users@lists.sourceforge.net
3174L: linux-usb-devel@lists.sourceforge.net
3175S: Maintained
3176
3177USB MASS STORAGE DRIVER
3178P: Matthew Dharm
3179M: mdharm-usb@one-eyed-alien.net
3180L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003181L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182S: Maintained
3183W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3184
3185USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003186P: David Brownell
3187M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188L: linux-usb-users@lists.sourceforge.net
3189L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003190S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Matthias Urlichsba460e42005-07-14 00:33:47 -07003192USB OPTION-CARD DRIVER
3193P: Matthias Urlichs
3194M: smurf@smurf.noris.de
3195L: linux-usb-devel@lists.sourceforge.net
3196S: Maintained
3197
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198USB OV511 DRIVER
3199P: Mark McClelland
3200M: mmcclell@bigfoot.com
3201L: linux-usb-users@lists.sourceforge.net
3202L: linux-usb-devel@lists.sourceforge.net
3203W: http://alpha.dyndns.org/ov511/
3204S: Maintained
3205
3206USB PEGASUS DRIVER
3207P: Petko Manolov
3208M: petkan@users.sourceforge.net
3209L: linux-usb-users@lists.sourceforge.net
3210L: linux-usb-devel@lists.sourceforge.net
3211W: http://pegasus2.sourceforge.net/
3212S: Maintained
3213
3214USB PRINTER DRIVER
3215P: Vojtech Pavlik
3216M: vojtech@suse.cz
3217L: linux-usb-users@lists.sourceforge.net
3218L: linux-usb-devel@lists.sourceforge.net
3219S: Maintained
3220
3221USB RTL8150 DRIVER
3222P: Petko Manolov
3223M: petkan@users.sourceforge.net
3224L: linux-usb-users@lists.sourceforge.net
3225L: linux-usb-devel@lists.sourceforge.net
3226W: http://pegasus2.sourceforge.net/
3227S: Maintained
3228
3229USB SE401 DRIVER
3230P: Jeroen Vreeken
3231M: pe1rxq@amsat.org
3232L: linux-usb-users@lists.sourceforge.net
3233L: linux-usb-devel@lists.sourceforge.net
3234W: http://www.chello.nl/~j.vreeken/se401/
3235S: Maintained
3236
3237USB SERIAL CYBERJACK DRIVER
3238P: Matthias Bruestle and Harald Welte
3239M: support@reiner-sct.com
3240W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3241S: Maintained
3242
3243USB SERIAL DIGI ACCELEPORT DRIVER
3244P: Peter Berger and Al Borchers
3245M: pberger@brimson.com
3246M: alborchers@steinerpoint.com
3247L: linux-usb-users@lists.sourceforge.net
3248L: linux-usb-devel@lists.sourceforge.net
3249S: Maintained
3250
3251USB SERIAL DRIVER
3252P: Greg Kroah-Hartman
3253M: gregkh@suse.de
3254L: linux-usb-users@lists.sourceforge.net
3255L: linux-usb-devel@lists.sourceforge.net
3256S: Supported
3257
3258USB SERIAL BELKIN F5U103 DRIVER
3259P: William Greathouse
3260M: wgreathouse@smva.com
3261L: linux-usb-users@lists.sourceforge.net
3262L: linux-usb-devel@lists.sourceforge.net
3263S: Maintained
3264
3265USB SERIAL CYPRESS M8 DRIVER
3266P: Lonnie Mendez
3267M: dignome@gmail.com
3268L: linux-usb-users@lists.sourceforge.net
3269L: linux-usb-devel@lists.sourceforge.net
3270S: Maintained
3271W: http://geocities.com/i0xox0i
3272W: http://firstlight.net/cvs
3273
3274USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3275L: linux-usb-users@lists.sourceforge.net
3276L: linux-usb-devel@lists.sourceforge.net
3277S: Maintained
3278
3279USB AUERSWALD DRIVER
3280P: Wolfgang Muees
3281M: wolfgang@iksw-muees.de
3282L: linux-usb-users@lists.sourceforge.net
3283L: linux-usb-devel@lists.sourceforge.net
3284S: Maintained
3285
3286USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3287P: Gary Brubaker
3288M: xavyer@ix.netcom.com
3289L: linux-usb-users@lists.sourceforge.net
3290L: linux-usb-devel@lists.sourceforge.net
3291S: Maintained
3292
3293USB SERIAL KEYSPAN DRIVER
3294P: Greg Kroah-Hartman
3295M: greg@kroah.com
3296L: linux-usb-users@lists.sourceforge.net
3297L: linux-usb-devel@lists.sourceforge.net
3298W: http://www.kroah.com/linux/
3299S: Maintained
3300
3301USB SERIAL WHITEHEAT DRIVER
3302P: Stuart MacDonald
3303M: stuartm@connecttech.com
3304L: linux-usb-users@lists.sourceforge.net
3305L: linux-usb-devel@lists.sourceforge.net
3306W: http://www.connecttech.com
3307S: Supported
3308
3309USB SN9C10x DRIVER
3310P: Luca Risolia
3311M: luca.risolia@studio.unibo.it
3312L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003313L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314W: http://www.linux-projects.org
3315S: Maintained
3316
3317USB SUBSYSTEM
3318P: Greg Kroah-Hartman
3319M: gregkh@suse.de
3320L: linux-usb-users@lists.sourceforge.net
3321L: linux-usb-devel@lists.sourceforge.net
3322W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003323T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324S: Supported
3325
3326USB UHCI DRIVER
3327P: Alan Stern
3328M: stern@rowland.harvard.edu
3329L: linux-usb-users@lists.sourceforge.net
3330L: linux-usb-devel@lists.sourceforge.net
3331S: Maintained
3332
David Brownell69ae9e32006-11-14 02:03:31 -08003333USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334P: David Brownell
3335M: dbrownell@users.sourceforge.net
3336L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003337W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338S: Maintained
3339
3340USB W996[87]CF DRIVER
3341P: Luca Risolia
3342M: luca.risolia@studio.unibo.it
3343L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003344L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345W: http://www.linux-projects.org
3346S: Maintained
3347
Luca Risolia60f78052006-02-06 16:29:35 +00003348USB ZC0301 DRIVER
3349P: Luca Risolia
3350M: luca.risolia@studio.unibo.it
3351L: linux-usb-devel@lists.sourceforge.net
3352L: video4linux-list@redhat.com
3353W: http://www.linux-projects.org
3354S: Maintained
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356USB ZD1201 DRIVER
3357P: Jeroen Vreeken
3358M: pe1rxq@amsat.org
3359L: linux-usb-users@lists.sourceforge.net
3360L: linux-usb-devel@lists.sourceforge.net
3361W: http://linux-lc100020.sourceforge.net
3362S: Maintained
3363
3364USER-MODE LINUX
3365P: Jeff Dike
3366M: jdike@karaya.com
3367L: user-mode-linux-devel@lists.sourceforge.net
3368L: user-mode-linux-user@lists.sourceforge.net
3369W: http://user-mode-linux.sourceforge.net
3370S: Maintained
3371
3372FAT/VFAT/MSDOS FILESYSTEM:
3373P: OGAWA Hirofumi
3374M: hirofumi@mail.parknet.co.jp
3375L: linux-kernel@vger.kernel.org
3376S: Maintained
3377
3378VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3379P: Jeff Garzik
3380S: Odd fixes
3381
3382VIA RHINE NETWORK DRIVER
3383P: Roger Luethi
3384M: rl@hellgate.ch
3385S: Maintained
3386
Jean Delvare32c0a522005-09-22 21:47:58 +02003387VIAPRO SMBUS DRIVER
3388P: Jean Delvare
3389M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003390L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003391S: Maintained
3392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393UCLINUX (AND M68KNOMMU)
3394P: Greg Ungerer
3395M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003397L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398S: Maintained
3399
3400UCLINUX FOR NEC V850
3401P: Miles Bader
3402M: uclinux-v850@lsi.nec.co.jp
3403W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3404W: http://www.ee.nec.de/uclinux/
3405S: Supported
3406
3407UCLINUX FOR RENESAS H8/300
3408P: Yoshinori Sato
3409M: ysato@users.sourceforge.jp
3410W: http://uclinux-h8.sourceforge.jp/
3411S: Supported
3412
3413USB DIAMOND RIO500 DRIVER
3414P: Cesar Miquel
3415M: miquel@df.uba.ar
3416L: rio500-users@lists.sourceforge.net
3417W: http://rio500.sourceforge.net
3418S: Maintained
3419
3420VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003421P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003422M: mchehab@infradead.org
3423M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003425W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003426T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003427S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
Juerg Haefligerab413192006-09-24 20:54:04 +02003429VT1211 HARDWARE MONITOR DRIVER
3430P: Juerg Haefliger
3431M: juergh@gmail.com
3432L: lm-sensors@lm-sensors.org
3433S: Maintained
3434
Roger Lucas1de9e372005-11-26 20:20:05 +01003435VT8231 HARDWARE MONITOR DRIVER
3436P: Roger Lucas
3437M: roger@planbit.co.uk
3438L: lm-sensors@lm-sensors.org
3439S: Maintained
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441W1 DALLAS'S 1-WIRE BUS
3442P: Evgeniy Polyakov
3443M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444S: Maintained
3445
Charles Spirakis13927072006-07-05 18:05:15 +02003446W83791D HARDWARE MONITORING DRIVER
3447P: Charles Spirakis
3448M: bezaur@gmail.com
3449L: lm-sensors@lm-sensors.org
3450S: Maintained
3451
Rudolf Marek61db0112006-12-12 18:18:30 +01003452W83793 HARDWARE MONITORING DRIVER
3453P: Rudolf Marek
3454M: r.marek@assembler.cz
3455L: lm-sensors@lm-sensors.org
3456S: Maintained
3457
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458W83L51xD SD/MMC CARD INTERFACE DRIVER
3459P: Pierre Ossman
3460M: drzeus-wbsd@drzeus.cx
3461L: wbsd-devel@list.drzeus.cx
3462W: http://projects.drzeus.cx/wbsd
3463S: Maintained
3464
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003465WATCHDOG DEVICE DRIVERS
3466P: Wim Van Sebroeck
3467M: wim@iguana.be
3468T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3469S: Maintained
3470
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3472P: Jean Tourrilhes
3473M: jt@hpl.hp.com
3474W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3475S: Maintained
3476
3477WD7000 SCSI DRIVER
3478P: Miroslav Zagorac
3479M: zaga@fly.cc.fer.hr
3480L: linux-scsi@vger.kernel.org
3481S: Maintained
3482
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003483WISTRON LAPTOP BUTTON DRIVER
3484P: Miloslav Trmac
3485M: mitr@volny.cz
3486S: Maintained
3487
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488WL3501 WIRELESS PCMCIA CARD DRIVER
3489P: Arnaldo Carvalho de Melo
3490M: acme@conectiva.com.br
3491W: http://advogato.org/person/acme
3492S: Maintained
3493
3494X.25 NETWORK LAYER
3495P: Henner Eisen
3496M: eis@baty.hanse.de
3497L: linux-x25@vger.kernel.org
3498S: Maintained
3499
3500XFS FILESYSTEM
3501P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003502P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003504L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003506T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507S: Supported
3508
Peter Korsgaard238b8722006-12-06 20:35:17 -08003509XILINX UARTLITE SERIAL DRIVER
3510P: Peter Korsgaard
3511M: jacmet@sunsite.dk
3512L: linux-serial@vger.kernel.org
3513S: Maintained
3514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515X86 3-LEVEL PAGING (PAE) SUPPORT
3516P: Ingo Molnar
3517M: mingo@redhat.com
3518S: Maintained
3519
3520X86-64 port
3521P: Andi Kleen
3522M: ak@suse.de
3523L: discuss@x86-64.org
3524W: http://www.x86-64.org
3525S: Maintained
3526
3527YAM DRIVER FOR AX.25
3528P: Jean-Paul Roubelat
3529M: jpr@f6fbb.org
3530L: linux-hams@vger.kernel.org
3531S: Maintained
3532
Henkaf64a5e2005-10-12 15:02:56 +02003533YEALINK PHONE DRIVER
3534P: Henk Vergonet
3535M: Henk.Vergonet@gmail.com
3536L: usbb2k-api-dev@nongnu.org
3537S: Maintained
3538
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539Z8530 DRIVER FOR AX.25
3540P: Joerg Reuter
3541M: jreuter@yaina.de
3542W: http://yaina.de/jreuter/
3543W: http://www.qsl.net/dl1bke/
3544L: linux-hams@vger.kernel.org
3545S: Maintained
3546
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003547ZD1211RW WIRELESS DRIVER
3548P: Daniel Drake
3549M: dsd@gentoo.org
3550P: Ulrich Kunitz
3551M: kune@deine-taler.de
3552W: http://zd1211.ath.cx/wiki/DriverRewrite
3553L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3554S: Maintained
3555
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556ZF MACHZ WATCHDOG
3557P: Fernando Fuganti
3558M: fuganti@netbank.com.br
3559W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3560S: Maintained
3561
3562ZR36067 VIDEO FOR LINUX DRIVER
3563P: Ronald Bultje
3564M: rbultje@ronald.bitfreak.net
3565L: mjpeg-users@lists.sourceforge.net
3566W: http://mjpeg.sourceforge.net/driver-zoran/
3567S: Maintained
3568
3569ZR36120 VIDEO FOR LINUX DRIVER
3570P: Pauline Middelink
3571M: middelin@polyware.nl
3572W: http://www.polyware.nl/~middelin/En/hobbies.html
3573W: http://www.polyware.nl/~middelin/hobbies.html
3574S: Maintained
3575
3576THE REST
3577P: Linus Torvalds
3578S: Buried alive in reporters