blob: 9c6aac33eb3bc39762707a937f4392302541a7e1 [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/
Josh Boyer1adc1232005-11-23 15:44:15 -0800750T: git kernel.org/pub/scm/linux/kernel/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
1280HIGH-SPEED SCC DRIVER FOR AX.25
1281P: Klaus Kudielka
1282M: klaus.kudielka@ieee.org
1283L: linux-hams@vger.kernel.org
1284W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1285S: Maintained
1286
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001287HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1288P: HighPoint Linux Team
1289M: linux@highpoint-tech.com
1290W: http://www.highpoint-tech.com
1291S: Supported
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293HIPPI
1294P: Jes Sorensen
1295M: jes@trained-monkey.org
1296L: linux-hippi@sunsite.dk
1297S: Maintained
1298
1299HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1300P: Chirag Kantharia
1301M: chirag.kantharia@hp.com
1302L: iss_storagedev@hp.com
1303S: Maintained
1304
1305HEWLETT-PACKARD SMART2 RAID DRIVER
1306P: Chirag Kantharia
1307M: chirag.kantharia@hp.com
1308L: iss_storagedev@hp.com
1309S: Maintained
1310
1311HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1312P: Mike Miller
1313M: mike.miller@hp.com
1314L: iss_storagedev@hp.com
1315S: Supported
1316
Jouni Malinenff1d2762005-05-12 22:54:16 -04001317HOST AP DRIVER
1318P: Jouni Malinen
1319M: jkmaline@cc.hut.fi
1320L: hostap@shmoo.com
1321W: http://hostap.epitest.fi/
1322S: Maintained
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1325P: Jaroslav Kysela
1326M: perex@suse.cz
1327S: Maintained
1328
Bob Piccob9b03322005-11-07 00:59:19 -08001329HPET: High Precision Event Timers driver (hpet.c)
1330P: Clemens Ladisch
1331M: clemens@ladisch.de
1332S: Maintained
1333
1334HPET: i386
1335P: Venkatesh Pallipadi (Venki)
1336M: venkatesh.pallipadi@intel.com
1337S: Maintained
1338
1339HPET: x86_64
1340P: Andi Kleen and Vojtech Pavlik
1341M: ak@muc.de and vojtech@suse.cz
1342S: Maintained
1343
1344HPET: ACPI hpet.c
1345P: Bob Picco
1346M: bob.picco@hp.com
1347S: Maintained
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349HPFS FILESYSTEM
1350P: Mikulas Patocka
1351M: mikulas@artax.karlin.mff.cuni.cz
1352W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1353S: Maintained
1354
1355HUGETLB FILESYSTEM
1356P: William Irwin
1357M: wli@holomorphy.com
1358S: Maintained
1359
Jean Delvare5b543962005-08-15 19:51:02 +02001360I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361P: Jean Delvare
1362M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001363L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001364T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365S: Maintained
1366
1367I2O
1368P: Markus Lidel
1369M: markus.lidel@shadowconnect.com
1370W: http://i2o.shadowconnect.com/
1371S: Maintained
1372
1373i386 BOOT CODE
1374P: Riley H. Williams
1375M: Riley@Williams.Name
1376L: Linux-Kernel@vger.kernel.org
1377S: Maintained
1378
1379i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1380P: Dave Jones
1381M: davej@codemonkey.org.uk
1382P: H. Peter Anvin
1383M: hpa@zytor.com
1384S: Maintained
1385
1386i810 TCO TIMER WATCHDOG
1387P: Nils Faerber
1388M: nils@kernelconcepts.de
1389W: http://www.kernelconcepts.de/
1390S: Maintained
1391
1392IA64 (Itanium) PLATFORM
1393P: Tony Luck
1394M: tony.luck@intel.com
1395L: linux-ia64@vger.kernel.org
1396W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001397T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398S: Maintained
1399
1400SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001401P: Jes Sorensen
1402M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403L: linux-altix@sgi.com
1404L: linux-ia64@vger.kernel.org
1405W: http://www.sgi.com/altix
1406S: Maintained
1407
1408IBM MCA SCSI SUBSYSTEM DRIVER
1409P: Michael Lang
1410M: langa2@kph.uni-mainz.de
1411W: http://www.uni-mainz.de/~langm000/linux.html
1412S: Maintained
1413
1414IBM Power Linux RAID adapter
1415P: Brian King
1416M: brking@us.ibm.com
1417S: Supported
1418
1419IBM ServeRAID RAID DRIVER
1420P: Jack Hammer
1421P: Dave Jeffery
1422M: ipslinux@adaptec.com
1423W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1424S: Supported
1425
1426IDE DRIVER [GENERAL]
1427P: Bartlomiej Zolnierkiewicz
1428M: B.Zolnierkiewicz@elka.pw.edu.pl
1429L: linux-kernel@vger.kernel.org
1430L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001431T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432S: Maintained
1433
1434IDE/ATAPI CDROM DRIVER
1435P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001436M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437L: linux-kernel@vger.kernel.org
1438W: http://www.kernel.dk
1439S: Maintained
1440
1441IDE/ATAPI FLOPPY DRIVERS
1442P: Paul Bristow
1443M: Paul Bristow <paul@paulbristow.net>
1444W: http://paulbristow.net/linux/idefloppy.html
1445L: linux-kernel@vger.kernel.org
1446S: Maintained
1447
1448IDE/ATAPI TAPE DRIVERS
1449P: Gadi Oxman
1450M: Gadi Oxman <gadio@netvision.net.il>
1451L: linux-kernel@vger.kernel.org
1452S: Maintained
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454IEEE 1394 SUBSYSTEM
1455P: Ben Collins
1456M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001457P: Stefan Richter
1458M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459L: linux1394-devel@lists.sourceforge.net
1460W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001461T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462S: Maintained
1463
Stefan Richter87730d02006-09-16 12:24:00 +02001464IEEE 1394 IPV4 DRIVER (eth1394)
1465P: Stefan Richter
1466M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001468S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470IEEE 1394 PCILYNX DRIVER
1471P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001472M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001473P: Stefan Richter
1474M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001476S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478IEEE 1394 RAW I/O DRIVER
1479P: Ben Collins
1480M: bcollins@debian.org
1481P: Dan Dennedy
1482M: dan@dennedy.org
1483L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001484S: Maintained
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486IMS TWINTURBO FRAMEBUFFER DRIVER
1487P: Paul Mundt
1488M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001489L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490S: Maintained
1491
1492INFINIBAND SUBSYSTEM
1493P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001494M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495P: Sean Hefty
1496M: mshefty@ichips.intel.com
1497P: Hal Rosenstock
1498M: halr@voltaire.com
1499L: openib-general@openib.org
1500W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001501T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502S: Supported
1503
1504INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001505P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001506M: dmitry.torokhov@gmail.com
1507M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508L: linux-input@atrey.karlin.mff.cuni.cz
1509L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001510T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511S: Maintained
1512
Robert Lovec9f04f52005-07-15 12:21:07 -04001513INOTIFY
1514P: John McCutchan and Robert Love
1515M: ttb@tentacle.dhs.org and rml@novell.com
1516L: linux-kernel@vger.kernel.org
1517S: Maintained
1518
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001519INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001520P: Sylvain Meyer
1521M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001522L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001523S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001526P: Antonino Daplas
1527M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001528L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001529S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1532P: Ingo Molnar
1533M: mingo@redhat.com
1534S: Maintained
1535
1536INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1537P: Jeff Garzik
1538M: jgarzik@pobox.com
1539W: http://sourceforge.net/projects/gkernel/
1540S: Maintained
1541
1542INTEL IA32 MICROCODE UPDATE SUPPORT
1543P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001544M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545S: Maintained
1546
Michael Buesch844dd052006-06-26 00:24:59 -07001547INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1548P: Deepak Saxena
1549M: dsaxena@plexity.net
1550S: Maintained
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552INTEL PRO/100 ETHERNET SUPPORT
1553P: John Ronciak
1554M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555P: Jesse Brandeburg
1556M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001557P: Jeff Kirsher
1558M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001559P: Auke Kok
1560M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561W: http://sourceforge.net/projects/e1000/
1562S: Supported
1563
1564INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1565P: Jeb Cramer
1566M: cramerj@intel.com
1567P: John Ronciak
1568M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001569P: Jesse Brandeburg
1570M: jesse.brandeburg@intel.com
1571P: Jeff Kirsher
1572M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001573P: Auke Kok
1574M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575W: http://sourceforge.net/projects/e1000/
1576S: Supported
1577
1578INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001579P: Jeff Kirsher
1580M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581P: Ayyappan Veeraiyan
1582M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583P: John Ronciak
1584M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001585P: Jesse Brandeburg
1586M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001587P: Auke Kok
1588M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589W: http://sourceforge.net/projects/e1000/
1590S: Supported
1591
James Ketrenos826d2ab2005-11-07 18:56:59 -06001592INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1593P: Yi Zhu
1594M: yi.zhu@intel.com
1595P: James Ketrenos
1596M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001597L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001598L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1599W: http://ipw2100.sourceforge.net
1600S: Supported
1601
1602INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1603P: Yi Zhu
1604M: yi.zhu@intel.com
1605P: James Ketrenos
1606M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001607L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001608L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1609W: http://ipw2200.sourceforge.net
1610S: Supported
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612IOC3 DRIVER
1613P: Ralf Baechle
1614M: ralf@linux-mips.org
1615L: linux-mips@linux-mips.org
1616S: Maintained
1617
1618IP MASQUERADING:
1619P: Juanjo Ciarlante
1620M: jjciarla@raiz.uncu.edu.ar
1621S: Maintained
1622
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001623IPATH DRIVER:
1624P: Bryan O'Sullivan
1625M: support@pathscale.com
1626L: openib-general@openib.org
1627S: Supported
1628
Corey Minyard4409ebe2006-04-20 02:43:12 -07001629IPMI SUBSYSTEM
1630P: Corey Minyard
1631M: minyard@acm.org
1632L: openipmi-developer@lists.sourceforge.net
1633W: http://openipmi.sourceforge.net/
1634S: Supported
1635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636IPX NETWORK LAYER
1637P: Arnaldo Carvalho de Melo
1638M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001639L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640S: Maintained
1641
1642IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001643P: Samuel Ortiz
1644M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001645L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001647S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649ISAPNP
1650P: Jaroslav Kysela
1651M: perex@suse.cz
1652S: Maintained
1653
1654ISDN SUBSYSTEM
1655P: Karsten Keil
1656M: kkeil@suse.de
1657P: Kai Germaschewski
1658M: kai.germaschewski@gmx.de
1659L: isdn4linux@listserv.isdn4linux.de
1660W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001661T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662S: Maintained
1663
1664ISDN SUBSYSTEM (Eicon active card driver)
1665P: Armin Schindler
1666M: mac@melware.de
1667L: isdn4linux@listserv.isdn4linux.de
1668W: http://www.melware.de
1669S: Maintained
1670
1671JOURNALLING FLASH FILE SYSTEM (JFFS)
1672P: Axis Communications AB
1673M: jffs-dev@axis.com
1674L: jffs-dev@axis.com
1675W: http://www.developer.axis.com/software/jffs/
1676S: Maintained
1677
1678JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1679P: David Woodhouse
1680M: dwmw2@infradead.org
1681L: jffs-dev@axis.com
1682W: http://sources.redhat.com/jffs2/
1683S: Maintained
1684
1685JFS FILESYSTEM
1686P: Dave Kleikamp
1687M: shaggy@austin.ibm.com
1688L: jfs-discussion@lists.sourceforge.net
1689W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001690T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691S: Supported
1692
Josh Triplettde456d32006-07-30 03:04:00 -07001693JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001694P: Stephen Tweedie, Andrew Morton
1695M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001696L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001697S: Maintained
1698
Rudolf Marek4660cb32006-10-08 22:01:26 +02001699K8TEMP HARDWARE MONITORING DRIVER
1700P: Rudolf Marek
1701M: r.marek@assembler.cz
1702L: lm-sensors@lm-sensors.org
1703S: Maintained
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705KCONFIG
1706P: Roman Zippel
1707M: zippel@linux-m68k.org
1708L: kbuild-devel@lists.sourceforge.net
1709S: Maintained
1710
Vivek Goyalea6c2082006-05-20 14:59:55 -07001711KDUMP
1712P: Vivek Goyal
1713M: vgoyal@in.ibm.com
1714P: Haren Myneni
1715M: hbabu@us.ibm.com
1716L: fastboot@lists.osdl.org
1717L: linux-kernel@vger.kernel.org
1718W: http://lse.sourceforge.net/kdump/
1719S: Maintained
1720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721KERNEL AUTOMOUNTER (AUTOFS)
1722P: H. Peter Anvin
1723M: hpa@zytor.com
1724L: autofs@linux.kernel.org
1725S: Odd Fixes
1726
1727KERNEL AUTOMOUNTER v4 (AUTOFS4)
1728P: Ian Kent
1729M: raven@themaw.net
1730L: autofs@linux.kernel.org
1731S: Maintained
1732
1733KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1734P: Kai Germaschewski
1735M: kai@germaschewski.name
1736P: Sam Ravnborg
1737M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001738T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739S: Maintained
1740
1741KERNEL JANITORS
1742P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001743L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745S: Maintained
1746
1747KERNEL NFSD
1748P: Neil Brown
1749M: neilb@cse.unsw.edu.au
1750L: nfs@lists.sourceforge.net
1751W: http://nfs.sourceforge.net/
1752W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1753S: Maintained
1754
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001755KEXEC
1756P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001757M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001758W: http://www.xmission.com/~ebiederm/files/kexec/
1759L: linux-kernel@vger.kernel.org
1760L: fastboot@osdl.org
1761S: Maintained
1762
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001763KPROBES
1764P: Prasanna S Panchamukhi
1765M: prasanna@in.ibm.com
1766P: Ananth N Mavinakayanahalli
1767M: ananth@in.ibm.com
1768P: Anil S Keshavamurthy
1769M: anil.s.keshavamurthy@intel.com
1770P: David S. Miller
1771M: davem@davemloft.net
1772L: linux-kernel@vger.kernel.org
1773S: Maintained
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001777S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779LASI 53c700 driver for PARISC
1780P: James E.J. Bottomley
1781M: James.Bottomley@HansenPartnership.com
1782L: linux-scsi@vger.kernel.org
1783S: Maintained
1784
Richard Purdie263de9b2006-05-15 09:44:16 -07001785LED SUBSYSTEM
1786P: Richard Purdie
1787M: rpurdie@rpsys.net
1788S: Maintained
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790LEGO USB Tower driver
1791P: Juergen Stuber
1792M: starblue@users.sourceforge.net
1793L: legousb-devel@lists.sourceforge.net
1794W: http://legousb.sourceforge.net/
1795S: Maintained
1796
1797LINUX FOR IBM pSERIES (RS/6000)
1798P: Paul Mackerras
1799M: paulus@au.ibm.com
1800W: http://www.ibm.com/linux/ltc/projects/ppc
1801S: Supported
1802
1803LINUX FOR NCR VOYAGER
1804P: James Bottomley
1805M: James.Bottomley@HansenPartnership.com
1806W: http://www.hansenpartnership.com/voyager
1807S: Maintained
1808
1809LINUX FOR POWERPC
1810P: Paul Mackerras
1811M: paulus@samba.org
1812W: http://www.penguinppc.org/
1813L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001814T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815S: Supported
1816
1817LINUX FOR POWER MACINTOSH
1818P: Benjamin Herrenschmidt
1819M: benh@kernel.crashing.org
1820W: http://www.penguinppc.org/
1821L: linuxppc-dev@ozlabs.org
1822S: Maintained
1823
1824LINUX FOR POWERPC EMBEDDED MPC52XX
1825P: Sylvain Munaut
1826M: tnt@246tNt.com
1827W: http://www.246tNt.com/mpc52xx/
1828W: http://www.penguinppc.org/
1829L: linuxppc-dev@ozlabs.org
1830L: linuxppc-embedded@ozlabs.org
1831S: Maintained
1832
1833LINUX FOR POWERPC EMBEDDED PPC4XX
1834P: Matt Porter
1835M: mporter@kernel.crashing.org
1836W: http://www.penguinppc.org/
1837L: linuxppc-embedded@ozlabs.org
1838S: Maintained
1839
Tom Rinie93adf12005-07-26 12:49:53 -07001840LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841P: Tom Rini
1842M: trini@kernel.crashing.org
1843W: http://www.penguinppc.org/
1844L: linuxppc-embedded@ozlabs.org
1845S: Maintained
1846
Tom Rinie93adf12005-07-26 12:49:53 -07001847LINUX FOR POWERPC EMBEDDED PPC8XX
1848P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001849M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001850W: http://www.penguinppc.org/
1851L: linuxppc-embedded@ozlabs.org
1852S: Maintained
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01001855P: Kumar Gala
1856M: galak@kernel.crashing.org
1857W: http://www.penguinppc.org/
1858L: linuxppc-embedded@ozlabs.org
1859S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Olof Johanssonab06ff32006-09-06 14:44:54 -05001861LINUX FOR POWERPC PA SEMI PWRFICIENT
1862P: Olof Johansson
1863M: olof@lixom.net
1864W: http://www.pasemi.com/
1865L: linuxppc-dev@ozlabs.org
1866S: Supported
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868LLC (802.2)
1869P: Arnaldo Carvalho de Melo
1870M: acme@conectiva.com.br
1871S: Maintained
1872
1873LINUX FOR 64BIT POWERPC
1874P: Paul Mackerras
1875M: paulus@samba.org
1876M: paulus@au.ibm.com
1877P: Anton Blanchard
1878M: anton@samba.org
1879M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001880W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001881L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882S: Supported
1883
1884LINUX SECURITY MODULE (LSM) FRAMEWORK
1885P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001886M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001887L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001889T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890S: Supported
1891
1892LM83 HARDWARE MONITOR DRIVER
1893P: Jean Delvare
1894M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001895L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896S: Maintained
1897
1898LM90 HARDWARE MONITOR DRIVER
1899P: Jean Delvare
1900M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001901L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902S: Maintained
1903
1904LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1905P: Richard Russon (FlatCap)
1906M: ldm@flatcap.org
1907L: ldm-devel@lists.sourceforge.net
1908W: http://ldm.sourceforge.net
1909S: Maintained
1910
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001911LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1912P: Eric Moore
1913M: Eric.Moore@lsil.com
1914M: support@lsil.com
1915L: mpt_linux_developer@lsil.com
1916L: linux-scsi@vger.kernel.org
1917W: http://www.lsilogic.com/support
1918S: Supported
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1921P: Matthew Wilcox
1922M: matthew@wil.cx
1923L: linux-scsi@vger.kernel.org
1924S: Maintained
1925
1926M68K ARCHITECTURE
1927P: Geert Uytterhoeven
1928M: geert@linux-m68k.org
1929P: Roman Zippel
1930M: zippel@linux-m68k.org
1931L: linux-m68k@lists.linux-m68k.org
1932W: http://www.linux-m68k.org/
1933W: http://linux-m68k-cvs.ubb.ca/
1934S: Maintained
1935
1936M68K ON APPLE MACINTOSH
1937P: Joshua Thompson
1938M: funaho@jurai.org
1939W: http://www.mac.linux-m68k.org/
1940L: linux-mac68k@mac.linux-m68k.org
1941S: Maintained
1942
1943M68K ON HP9000/300
1944P: Philip Blundell
1945M: philb@gnu.org
1946W: http://www.tazenda.demon.co.uk/phil/linux-hp
1947S: Maintained
1948
1949MARVELL YUKON / SYSKONNECT DRIVER
1950P: Mirko Lindner
1951M: mlindner@syskonnect.de
1952P: Ralph Roesler
1953M: rroesler@syskonnect.de
1954W: http://www.syskonnect.com
1955S: Supported
1956
Michael Kerriskfaf16682005-07-31 22:34:47 -07001957MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01001958P: Michael Kerrisk
1959M: mtk-manpages@gmx.net
1960W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1961S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07001962
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001963MARVELL MV643XX ETHERNET DRIVER
1964P: Dale Farnsworth
1965M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001967M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001968L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001969S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971MATROX FRAMEBUFFER DRIVER
1972P: Petr Vandrovec
1973M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001974L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975S: Maintained
1976
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001977MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01001978P: Neela Syam Kolli
1979M: Neela.Kolli@engenio.com
1980S: linux-scsi@vger.kernel.org
1981W: http://megaraid.lsilogic.com
1982S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001983
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001984MEMORY MANAGEMENT
1985L: linux-mm@kvack.org
1986L: linux-kernel@vger.kernel.org
1987W: http://www.linux-mm.org
1988S: Maintained
1989
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001990MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991P: David Woodhouse
1992M: dwmw2@infradead.org
1993W: http://www.linux-mtd.infradead.org/
1994L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001995T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996S: Maintained
1997
1998MICROTEK X6 SCANNER
1999P: Oliver Neukum
2000M: oliver@neukum.name
2001S: Maintained
2002
2003MIPS
2004P: Ralf Baechle
2005M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002006W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002008T: git www.linux-mips.org:/pub/scm/linux.git
2009S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011MISCELLANEOUS MCA-SUPPORT
2012P: James Bottomley
2013M: jejb@steeleye.com
2014L: linux-kernel@vger.kernel.org
2015S: Maintained
2016
2017MODULE SUPPORT
2018P: Rusty Russell
2019M: rusty@rustcorp.com.au
2020L: linux-kernel@vger.kernel.org
2021S: Maintained
2022
2023MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2024P: Stelian Pop
2025M: stelian@popies.net
2026W: http://popies.net/meye/
2027S: Maintained
2028
2029MOUSE AND MISC DEVICES [GENERAL]
2030P: Alessandro Rubini
2031M: rubini@ipvvis.unipv.it
2032L: linux-kernel@vger.kernel.org
2033S: Maintained
2034
Jiri Slabyd7354102006-12-08 02:38:35 -08002035MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2036P: Jiri Slaby
2037M: jirislaby@gmail.com
2038L: linux-kernel@vger.kernel.org
2039S: Maintained
2040
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002041MSI LAPTOP SUPPORT
2042P: Lennart Poettering
2043M: mzxreary@0pointer.de
2044L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2045W: http://0pointer.de/lennart/tchibo.html
2046S: Maintained
2047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048MTRR AND SIMILAR SUPPORT [i386]
2049P: Richard Gooch
2050M: rgooch@atnf.csiro.au
2051L: linux-kernel@vger.kernel.org
2052W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2053S: Maintained
2054
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002055MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2056P: Pierre Ossman
2057M: drzeus-mmc@drzeus.cx
2058L: linux-kernel@vger.kernel.org
2059S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061MULTISOUND SOUND DRIVER
2062P: Andrew Veliath
2063M: andrewtv@usa.net
2064S: Maintained
2065
Jiri Slabyd7354102006-12-08 02:38:35 -08002066MULTITECH MULTIPORT CARD (ISICOM)
2067P: Jiri Slaby
2068M: jirislaby@gmail.com
2069L: linux-kernel@vger.kernel.org
2070S: Maintained
2071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072NATSEMI ETHERNET DRIVER (DP8381x)
2073P: Tim Hockin
2074M: thockin@hockin.org
2075S: Maintained
2076
2077NCP FILESYSTEM
2078P: Petr Vandrovec
2079M: vandrove@vc.cvut.cz
2080L: linware@sh.cvut.cz
2081S: Maintained
2082
2083NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2084P: James E.J. Bottomley
2085M: James.Bottomley@HansenPartnership.com
2086L: linux-scsi@vger.kernel.org
2087S: Maintained
2088
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002089NETEM NETWORK EMULATOR
2090P: Stephen Hemminger
2091M: shemminger@osdl.org
2092L: netem@osdl.org
2093S: Maintained
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095NETFILTER/IPTABLES/IPCHAINS
2096P: Rusty Russell
2097P: Marc Boucher
2098P: James Morris
2099P: Harald Welte
2100P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002101P: Patrick McHardy
2102M: kaber@trash.net
2103L: netfilter-devel@lists.netfilter.org
2104L: netfilter@lists.netfilter.org
2105L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106W: http://www.netfilter.org/
2107W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108S: Supported
2109
Paul Moore4cc67732006-09-25 15:57:13 -07002110NETLABEL
2111P: Paul Moore
2112M: paul.moore@hp.com
2113W: http://netlabel.sf.net
2114L: netdev@vger.kernel.org
2115S: Supported
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117NETROM NETWORK LAYER
2118P: Ralf Baechle
2119M: ralf@linux-mips.org
2120L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002121W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122S: Maintained
2123
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002124NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125P: Paul Clements
2126M: Paul.Clements@steeleye.com
2127S: Maintained
2128
2129NETWORK DEVICE DRIVERS
2130P: Andrew Morton
2131M: akpm@osdl.org
2132P: Jeff Garzik
2133M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002134L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002135T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136S: Maintained
2137
2138NETWORKING [GENERAL]
2139P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002140M: netdev@vger.kernel.org
2141L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002142W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143S: Maintained
2144
2145NETWORKING [IPv4/IPv6]
2146P: David S. Miller
2147M: davem@davemloft.net
2148P: Alexey Kuznetsov
2149M: kuznet@ms2.inr.ac.ru
2150P: Pekka Savola (ipv6)
2151M: pekkas@netcore.fi
2152P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002153M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154P: Hideaki YOSHIFUJI
2155M: yoshfuji@linux-ipv6.org
2156P: Patrick McHardy
2157M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002158L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002159T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160S: Maintained
2161
John W. Linville29f8f632006-01-18 14:52:48 -08002162NETWORKING [WIRELESS]
2163P: John W. Linville
2164M: linville@tuxdriver.com
2165L: netdev@vger.kernel.org
2166T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2167S: Maintained
2168
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002169NETXEN (1/10) GbE SUPPORT
2170P: Amit S. Kale
2171M: amitkale@netxen.com
2172L: netdev@vger.kernel.org
2173W: http://www.netxen.com
2174S: Supported
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176IPVS
2177P: Wensong Zhang
2178M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002179P: Simon Horman
2180M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181P: Julian Anastasov
2182M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002183L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184S: Maintained
2185
2186NFS CLIENT
2187P: Trond Myklebust
2188M: trond.myklebust@fys.uio.no
2189L: linux-kernel@vger.kernel.org
2190S: Maintained
2191
2192NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002193P: Jan-Pascal van Best
2194M: janpascal@vanbest.org
2195P: Andreas Mohr
2196M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002197L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198S: Maintained
2199
2200NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2201P: YOKOTA Hiroshi
2202M: yokota@netlab.is.tsukuba.ac.jp
2203W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2204S: Maintained
2205
2206NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2207P: GOTO Masanori
2208M: gotom@debian.or.jp
2209P: YOKOTA Hiroshi
2210M: yokota@netlab.is.tsukuba.ac.jp
2211W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2212S: Maintained
2213
2214NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2215P: Eberhard Moenkeberg
2216M: emoenke@gwdg.de
2217L: linux-kernel@vger.kernel.org
2218S: Maintained
2219
2220NTFS FILESYSTEM
2221P: Anton Altaparmakov
2222M: aia21@cantab.net
2223L: linux-ntfs-dev@lists.sourceforge.net
2224L: linux-kernel@vger.kernel.org
2225W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002226T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227S: Maintained
2228
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002229NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002230P: Antonino Daplas
2231M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002232L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002233S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002235OPENCORES I2C BUS DRIVER
2236P: Peter Korsgaard
2237M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002238L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002239S: Maintained
2240
Mark Fashehccd979b2005-12-15 14:31:24 -08002241ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2242P: Mark Fasheh
2243M: mark.fasheh@oracle.com
2244P: Kurt Hackel
2245M: kurt.hackel@oracle.com
2246L: ocfs2-devel@oss.oracle.com
2247W: http://oss.oracle.com/projects/ocfs2/
2248S: Supported
2249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250OLYMPIC NETWORK DRIVER
2251P: Peter De Shrijver
2252M: p2@ace.ulyssis.student.kuleuven.ac.be
2253P: Mike Phillips
2254M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002255L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256L: linux-tr@linuxtr.net
2257W: http://www.linuxtr.net
2258S: Maintained
2259
Harald Weltec1986ee2005-11-13 16:06:29 -08002260OMNIKEY CARDMAN 4000 DRIVER
2261P: Harald Welte
2262M: laforge@gnumonks.org
2263S: Maintained
2264
Harald Welte77c44ab2005-11-13 16:06:26 -08002265OMNIKEY CARDMAN 4040 DRIVER
2266P: Harald Welte
2267M: laforge@gnumonks.org
2268S: Maintained
2269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270ONSTREAM SCSI TAPE DRIVER
2271P: Willem Riede
2272M: osst@riede.org
2273L: osst-users@lists.sourceforge.net
2274L: linux-scsi@vger.kernel.org
2275S: Maintained
2276
2277OPL3-SA2, SA3, and SAx DRIVER
2278P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002279M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280L: linux-sound@vger.kernel.org
2281S: Maintained
2282
2283OPROFILE
2284P: Philippe Elie
2285M: phil.el@wanadoo.fr
2286L: oprofile-list@lists.sf.net
2287S: Maintained
2288
2289ORINOCO DRIVER
2290P: Pavel Roskin
2291M: proski@gnu.org
2292P: David Gibson
2293M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002294L: orinoco-users@lists.sourceforge.net
2295L: orinoco-devel@lists.sourceforge.net
2296W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297S: Maintained
2298
2299PARALLEL PORT SUPPORT
2300P: Phil Blundell
2301M: philb@gnu.org
2302P: Tim Waugh
2303M: tim@cyberelk.net
2304P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305P: Andrea Arcangeli
2306M: andrea@suse.de
2307L: linux-parport@lists.infradead.org
2308W: http://people.redhat.com/twaugh/parport/
2309S: Maintained
2310
2311PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2312P: Tim Waugh
2313M: tim@cyberelk.net
2314L: linux-parport@lists.infradead.org
2315W: http://www.torque.net/linux-pp.html
2316S: Maintained
2317
2318PARISC ARCHITECTURE
2319P: Matthew Wilcox
2320M: matthew@wil.cx
2321P: Grant Grundler
2322M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002323P: Kyle McMartin
2324M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325L: parisc-linux@parisc-linux.org
2326W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002327T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2328T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329S: Maintained
2330
Jim Cromie1662d322006-10-06 00:43:59 -07002331PC87360 HARDWARE MONITORING DRIVER
2332P: Jim Cromie
2333M: jim.cromie@gmail.com
2334L: lm-sensors@lm-sensors.org
2335S: Maintained
2336
2337PC8736x GPIO DRIVER
2338P: Jim Cromie
2339M: jim.cromie@gmail.com
2340S: Maintained
2341
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002342PCI ERROR RECOVERY
2343P: Linas Vepstas
2344M: linas@austin.ibm.com
2345L: linux-kernel@vger.kernel.org
2346L: linux-pci@atrey.karlin.mff.cuni.cz
2347S: Supported
2348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2350P: Thomas Sailer
2351M: sailer@ife.ee.ethz.ch
2352L: linux-sound@vger.kernel.org
2353W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2354S: Maintained
2355
2356PCI SUBSYSTEM
2357P: Greg Kroah-Hartman
2358M: gregkh@suse.de
2359L: linux-kernel@vger.kernel.org
2360L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002361T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362S: Supported
2363
2364PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002365P: Kristen Carlson Accardi
2366M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367S: Supported
2368
2369PCI HOTPLUG COMPAQ DRIVER
2370P: Greg Kroah-Hartman
2371M: greg@kroah.com
2372S: Maintained
2373
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002374PCIE HOTPLUG DRIVER
2375P: Kristen Carlson Accardi
2376M: kristen.c.accardi@intel.com
2377L: pcihpd-discuss@lists.sourceforge.net
2378S: Maintained
2379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002381P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002382L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002384T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002385S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387PCNET32 NETWORK DRIVER
2388P: Thomas Bogendörfer
2389M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002390L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391S: Maintained
2392
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002393PER-TASK DELAY ACCOUNTING
2394P: Shailabh Nagar
2395M: nagar@watson.ibm.com
2396L: linux-kernel@vger.kernel.org
2397S: Maintained
2398
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002399PERSONALITY HANDLING
2400P: Christoph Hellwig
2401M: hch@infradead.org
2402L: linux-abi-devel@lists.sourceforge.net
2403S: Maintained
2404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405PHRAM MTD DRIVER
2406P: Jörn Engel
2407M: joern@wh.fh-wedel.de
2408L: linux-mtd@lists.infradead.org
2409S: Maintained
2410
Peter Osterlund249a6772005-09-27 21:45:30 -07002411PKTCDVD DRIVER
2412P: Peter Osterlund
2413M: petero2@telia.com
2414L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002415S: Maintained
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417POSIX CLOCKS and TIMERS
2418P: George Anzinger
2419M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002420L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421S: Supported
2422
Eugene Surovegin24682972005-10-14 03:00:53 -07002423POWERPC 4xx EMAC DRIVER
2424P: Eugene Surovegin
2425M: ebs@ebshome.net
2426W: http://kernel.ebshome.net/emac/
2427L: linuxppc-embedded@ozlabs.org
2428L: netdev@vger.kernel.org
2429S: Maintained
2430
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431PNP SUPPORT
2432P: Adam Belay
2433M: ambx1@neo.rr.com
2434S: Maintained
2435
2436PPP PROTOCOL DRIVERS AND COMPRESSORS
2437P: Paul Mackerras
2438M: paulus@samba.org
2439L: linux-ppp@vger.kernel.org
2440S: Maintained
2441
2442PPP OVER ATM (RFC 2364)
2443P: Mitchell Blank Jr
2444M: mitch@sfgoth.com
2445S: Maintained
2446
2447PPP OVER ETHERNET
2448P: Michal Ostrowski
2449M: mostrows@speakeasy.net
2450S: Maintained
2451
2452PREEMPTIBLE KERNEL
2453P: Robert Love
2454M: rml@tech9.net
2455L: linux-kernel@vger.kernel.org
2456L: kpreempt-tech@lists.sourceforge.net
2457W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2458S: Supported
2459
2460PRISM54 WIRELESS DRIVER
2461P: Prism54 Development Team
2462M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002463L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464W: http://prism54.org
2465S: Maintained
2466
2467PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2468P: Peter Denison
2469M: promise@pnd-pc.demon.co.uk
2470W: http://www.pnd-pc.demon.co.uk/promise/
2471S: Maintained
2472
Geoff Levandf58a9d12006-11-23 00:46:51 +01002473PS3 PLATFORM SUPPORT
2474P: Geoff Levand
2475M: geoffrey.levand@am.sony.com
2476L: linuxppc-dev@ozlabs.org
2477L: cbe-oss-dev@ozlabs.org
2478S: Supported
2479
Michael Krufky83202042006-07-03 00:24:18 -07002480PVRUSB2 VIDEO4LINUX DRIVER
2481P: Mike Isely
2482M: isely@pobox.com
2483L: pvrusb2@isely.net
2484L: video4linux-list@redhat.com
2485W: http://www.isely.net/pvrusb2/
2486S: Maintained
2487
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488PXA2xx SUPPORT
2489P: Nicolas Pitre
2490M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002491L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492S: Maintained
2493
2494QLOGIC QLA2XXX FC-SCSI DRIVER
2495P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002496M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497L: linux-scsi@vger.kernel.org
2498S: Supported
2499
Ron Mercer5a4faa872006-07-25 00:40:21 -07002500QLOGIC QLA3XXX NETWORK DRIVER
2501P: Ron Mercer
2502M: linux-driver@qlogic.com
2503L: netdev@vger.kernel.org
2504S: Supported
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506QNX4 FILESYSTEM
2507P: Anders Larsen
2508M: al@alarsen.net
2509L: linux-kernel@vger.kernel.org
2510W: http://www.alarsen.net/linux/qnx4fs/
2511S: Maintained
2512
2513RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002514P: Benjamin Herrenschmidt
2515M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002516L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517S: Maintained
2518
2519RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002520P: Paul Mackerras
2521M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002522L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523S: Maintained
2524
2525RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2526P: Corey Thomas
2527M: corey@world.std.com
2528L: linux-kernel@vger.kernel.org
2529S: Maintained
2530
Matt Mackall9e95ce22005-04-16 15:25:56 -07002531RANDOM NUMBER DRIVER
2532P: Matt Mackall
2533M: mpm@selenic.com
2534S: Maintained
2535
Matt Porter394b7012005-11-07 01:00:15 -08002536RAPIDIO SUBSYSTEM
2537P: Matt Porter
2538M: mporter@kernel.crashing.org
2539L: linux-kernel@vger.kernel.org
2540S: Maintained
2541
Josh Triplett595182b2006-10-04 02:17:21 -07002542READ-COPY UPDATE (RCU)
2543P: Dipankar Sarma
2544M: dipankar@in.ibm.com
2545W: http://www.rdrop.com/users/paulmck/rclock/
2546L: linux-kernel@vger.kernel.org
2547S: Supported
2548
2549RCUTORTURE MODULE
2550P: Josh Triplett
2551M: josh@freedesktop.org
2552L: linux-kernel@vger.kernel.org
2553S: Maintained
2554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555REAL TIME CLOCK DRIVER
2556P: Paul Gortmaker
2557M: p_gortmaker@yahoo.com
2558L: linux-kernel@vger.kernel.org
2559S: Maintained
2560
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002561REAL TIME CLOCK (RTC) SUBSYSTEM
2562P: Alessandro Zummo
2563M: a.zummo@towertech.it
2564L: linux-kernel@vger.kernel.org
2565S: Maintained
2566
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567REISERFS FILE SYSTEM
2568P: Hans Reiser
2569M: reiserfs-dev@namesys.com
2570L: reiserfs-list@namesys.com
2571W: http://www.namesys.com
2572S: Supported
2573
2574ROCKETPORT DRIVER
2575P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576W: http://www.comtrol.com
2577S: Maintained
2578
2579ROSE NETWORK LAYER
2580P: Ralf Baechle
2581M: ralf@linux-mips.org
2582L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002583W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584S: Maintained
2585
2586RISCOM8 DRIVER
2587S: Orphan
2588
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002589S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002590P: Antonino Daplas
2591M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002592L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002593S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002594
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595S390
2596P: Martin Schwidefsky
2597M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002598P: Heiko Carstens
2599M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600M: linux390@de.ibm.com
2601L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002602W: http://www.ibm.com/developerworks/linux/linux390/
2603S: Supported
2604
2605S390 NETWORK DRIVERS
2606P: Frank Pavlic
2607M: fpavlic@de.ibm.com
2608M: linux390@de.ibm.com
2609L: linux-390@vm.marist.edu
2610W: http://www.ibm.com/developerworks/linux/linux390/
2611S: Supported
2612
2613S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002614P: Swen Schillig
2615M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002616M: linux390@de.ibm.com
2617L: linux-390@vm.marist.edu
2618W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619S: Supported
2620
2621SAA7146 VIDEO4LINUX-2 DRIVER
2622P: Michael Hunold
2623M: michael@mihu.de
2624W: http://www.mihu.de/linux/saa7146
2625S: Maintained
2626
2627SBPCD CDROM DRIVER
2628P: Eberhard Moenkeberg
2629M: emoenke@gwdg.de
2630L: linux-kernel@vger.kernel.org
2631S: Maintained
2632
2633SC1200 WDT DRIVER
2634P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002635M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636S: Maintained
2637
2638SCHEDULER
2639P: Ingo Molnar
2640M: mingo@elte.hu
2641P: Robert Love [the preemptible kernel bits]
2642M: rml@tech9.net
2643L: linux-kernel@vger.kernel.org
2644S: Maintained
2645
2646SCSI CDROM DRIVER
2647P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002648M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649L: linux-scsi@vger.kernel.org
2650W: http://www.kernel.dk
2651S: Maintained
2652
2653SCSI SG DRIVER
2654P: Doug Gilbert
2655M: dgilbert@interlog.com
2656L: linux-scsi@vger.kernel.org
2657W: http://www.torque.net/sg
2658S: Maintained
2659
2660SCSI SUBSYSTEM
2661P: James E.J. Bottomley
2662M: James.Bottomley@SteelEye.com
2663L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002664T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665S: Maintained
2666
2667SCSI TAPE DRIVER
2668P: Kai Mäkisara
2669M: Kai.Makisara@kolumbus.fi
2670L: linux-scsi@vger.kernel.org
2671S: Maintained
2672
2673SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002674P: Sridhar Samudrala
2675M: sri@us.ibm.com
2676L: lksctp-developers@lists.sourceforge.net
2677S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
2679SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002680P: Jim Cromie
2681M: jim.cromie@gmail.com
2682S: Odd Fixes
2683
2684SCx200 GPIO DRIVER
2685P: Jim Cromie
2686M: jim.cromie@gmail.com
2687S: Maintained
2688
2689SCx200 HRT CLOCKSOURCE DRIVER
2690P: Jim Cromie
2691M: jim.cromie@gmail.com
2692S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
2694SECURITY CONTACT
2695P: Security Officers
2696M: security@kernel.org
2697S: Supported
2698
2699SELINUX SECURITY MODULE
2700P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002701M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002703M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704L: linux-kernel@vger.kernel.org (kernel issues)
2705L: selinux@tycho.nsa.gov (general discussion)
2706W: http://www.nsa.gov/selinux
2707S: Supported
2708
2709SERIAL ATA (SATA) SUBSYSTEM:
2710P: Jeff Garzik
2711M: jgarzik@pobox.com
2712L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002713T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714S: Supported
2715
2716SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2717P: Pat Gefre
2718M: pfg@sgi.com
2719L: linux-ia64@vger.kernel.org
2720S: Supported
2721
2722SGI VISUAL WORKSTATION 320 AND 540
2723P: Andrey Panin
2724M: pazke@donpac.ru
2725L: linux-visws-devel@lists.sf.net
2726W: http://linux-visws.sf.net
2727S: Maintained for 2.6.
2728
2729SIMTEC EB110ATX (Chalice CATS)
2730P: Ben Dooks
2731P: Vincent Sanders
2732M: support@simtec.co.uk
2733W: http://www.simtec.co.uk/products/EB110ATX/
2734S: Supported
2735
2736SIMTEC EB2410ITX (BAST)
2737P: Ben Dooks
2738P: Vincent Sanders
2739M: support@simtec.co.uk
2740W: http://www.simtec.co.uk/products/EB2410ITX/
2741S: Supported
2742
Francois Romieu92aab3c2005-07-30 13:11:18 +02002743SIS 190 ETHERNET DRIVER
2744P: Francois Romieu
2745M: romieu@fr.zoreil.com
2746L: netdev@vger.kernel.org
2747S: Maintained
2748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749SIS 5513 IDE CONTROLLER DRIVER
2750P: Lionel Bouton
2751M: Lionel.Bouton@inet6.fr
2752W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2753W: http://gyver.homeip.net/sis5513/index.html
2754S: Maintained
2755
2756SIS 900/7016 FAST ETHERNET DRIVER
2757P: Daniele Venzano
2758M: venza@brownhat.org
2759W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002760L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761S: Maintained
2762
2763SIS FRAMEBUFFER DRIVER
2764P: Thomas Winischhofer
2765M: thomas@winischhofer.net
2766W: http://www.winischhofer.net/linuxsisvga.shtml
2767S: Maintained
2768
2769SIS USB2VGA DRIVER
2770P: Thomas Winischhofer
2771M: thomas@winischhofer.net
2772W: http://www.winischhofer.at/linuxsisusbvga.shtml
2773S: Maintained
2774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775SMC91x ETHERNET DRIVER
2776P: Nicolas Pitre
2777M: nico@cam.org
2778S: Maintained
2779
Daniel Drake8f0f8502006-07-18 22:00:25 +01002780SOFTMAC LAYER (IEEE 802.11)
2781P: Johannes Berg
2782M: johannes@sipsolutions.net
2783P: Joe Jezak
2784M: josejx@gentoo.org
2785P: Daniel Drake
2786M: dsd@gentoo.org
2787W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002788L: netdev@vger.kernel.org
2789S: Maintained
2790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791SOFTWARE RAID (Multiple Disks) SUPPORT
2792P: Ingo Molnar
2793M: mingo@redhat.com
2794P: Neil Brown
2795M: neilb@cse.unsw.edu.au
2796L: linux-raid@vger.kernel.org
2797S: Maintained
2798
2799SOFTWARE SUSPEND:
2800P: Pavel Machek
2801M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002802L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803S: Maintained
2804
2805SONIC NETWORK DRIVER
2806P: Thomas Bogendoerfer
2807M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002808L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809S: Maintained
2810
2811SONY VAIO CONTROL DEVICE DRIVER
2812P: Stelian Pop
2813M: stelian@popies.net
2814W: http://popies.net/sonypi/
2815S: Maintained
2816
2817SOUND
2818P: Jaroslav Kysela
2819M: perex@suse.cz
2820L: alsa-devel@alsa-project.org
2821S: Maintained
2822
Kumar Gala025c3982006-04-02 16:05:54 -05002823SPI SUBSYSTEM
2824P: David Brownell
2825M: dbrownell@users.sourceforge.net
2826L: spi-devel-general@lists.sourceforge.net
2827S: Maintained
2828
Steven Rostedt855f46a2006-08-05 12:14:50 -07002829STABLE BRANCH:
2830P: Greg Kroah-Hartman
2831M: greg@kroah.com
2832P: Chris Wright
2833M: chrisw@sous-sol.org
2834L: stable@kernel.org
2835S: Maintained
2836
Kylene Hall1c72d462005-05-01 08:59:13 -07002837TPM DEVICE DRIVER
2838P: Kylene Hall
2839M: kjhall@us.ibm.com
2840W: http://tpmdd.sourceforge.net
2841L: tpmdd-devel@lists.sourceforge.net
2842S: Maintained
2843
Mark Gross1a80ba82005-10-30 15:02:55 -08002844Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002845P: Mark Gross
2846M: mark.gross@intel.com
2847S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08002848
Chris Zankel48b415c2005-06-23 22:01:07 -07002849TENSILICA XTENSA PORT (xtensa):
2850P: Chris Zankel
2851M: chris@zankel.net
2852S: Maintained
2853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854UltraSPARC (sparc64):
2855P: David S. Miller
2856M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002858T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859S: Maintained
2860
2861SHARP LH SUPPORT (LH7952X & LH7A40X)
2862P: Marc Singer
2863M: elf@buici.com
2864W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002865L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866S: Maintained
2867
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002868SHPC HOTPLUG DRIVER
2869P: Kristen Carlson Accardi
2870M: kristen.c.accardi@intel.com
2871L: pcihpd-discuss@lists.sourceforge.net
2872S: Maintained
2873
Pierre Ossmand129bce2006-03-24 03:18:17 -08002874SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2875P: Pierre Ossman
2876M: drzeus-sdhci@drzeus.cx
2877L: sdhci-devel@list.drzeus.cx
2878W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2879S: Maintained
2880
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002881SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2882P: Stephen Hemminger
2883M: shemminger@osdl.org
2884L: netdev@vger.kernel.org
2885S: Maintained
2886
Chris Boot1a87d942006-07-10 04:45:34 -07002887SOEKRIS NET48XX LED SUPPORT
2888P: Chris Boot
2889M: bootc@bootc.net
2890S: Maintained
2891
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892SPARC (sparc32):
2893P: William L. Irwin
2894M: wli@holomorphy.com
2895L: sparclinux@vger.kernel.org
2896S: Maintained
2897
2898SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2899P: Roger Wolff
2900M: R.E.Wolff@BitWizard.nl
2901L: linux-kernel@vger.kernel.org ?
2902S: Supported
2903
Jim Lewis2752e402006-09-29 02:01:19 -07002904SPIDERNET NETWORK DRIVER for CELL
2905P: Jim Lewis
2906M: jim@jklewis.com
2907L: netdev@vger.kernel.org
2908S: Supported
2909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910SRM (Alpha) environment access
2911P: Jan-Benedict Glaw
2912M: jbglaw@lug-owl.de
2913L: linux-kernel@vger.kernel.org
2914S: Maintained
2915
2916STARFIRE/DURALAN NETWORK DRIVER
2917P: Ion Badulescu
2918M: ionut@cs.columbia.edu
2919S: Maintained
2920
2921STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2922W: http://mosquitonet.Stanford.EDU/strip.html
2923S: Unsupported ?
2924
2925STRADIS MPEG-2 DECODER DRIVER
2926P: Nathan Laredo
2927M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928W: http://www.stradis.com/
2929S: Maintained
2930
2931SUPERH (sh)
2932P: Paul Mundt
2933M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002934L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936S: Maintained
2937
2938SUPERH64 (sh64)
2939P: Paul Mundt
2940M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941L: linuxsh-shmedia-dev@lists.sourceforge.net
2942W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943S: Maintained
2944
2945SUN3/3X
2946P: Sam Creasey
2947M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948W: http://sammy.net/sun3/
2949S: Maintained
2950
2951SVGA HANDLING
2952P: Martin Mares
2953M: mj@ucw.cz
2954L: linux-video@atrey.karlin.mff.cuni.cz
2955S: Maintained
2956
2957SYSV FILESYSTEM
2958P: Christoph Hellwig
2959M: hch@infradead.org
2960S: Maintained
2961
Stephen Hemminger781b456a2006-07-10 20:25:29 -07002962TC CLASSIFIER
2963P: Jamal Hadi Salim
2964M: hadi@cyberus.ca
2965L: netdev@vger.kernel.org
2966S: Maintained
2967
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002968TCP LOW PRIORITY MODULE
2969P: Wong Hoi Sing, Edison
2970M: hswong3i@gmail.com
2971P: Hung Hing Lun, Mike
2972M: hlhung3i@gmail.com
2973W: http://tcp-lp-mod.sourceforge.net/
2974S: Maintained
2975
Alex Dubov4020f2d2006-10-04 02:15:37 -07002976TI FLASH MEDIA INTERFACE DRIVER
2977P: Alex Dubov
2978M: oakad@yahoo.com
2979S: Maintained
2980
Michael Buesch844dd052006-06-26 00:24:59 -07002981TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2982P: Deepak Saxena
2983M: dsaxena@plexity.net
2984S: Maintained
2985
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002986TASKSTATS STATISTICS INTERFACE
2987P: Shailabh Nagar
2988M: nagar@watson.ibm.com
2989L: linux-kernel@vger.kernel.org
2990S: Maintained
2991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002993P: Romain Lievin
2994M: roms@lpg.ticalc.org
2995S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Per Lidene86eaa32006-01-12 16:45:18 +01002997TIPC NETWORK LAYER
2998P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002999M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003000P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003001M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003002P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003003M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003004L: tipc-discussion@lists.sourceforge.net
3005W: http://tipc.sourceforge.net/
3006W: http://tipc.cslab.ericsson.net/
3007T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3008S: Maintained
3009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010TLAN NETWORK DRIVER
3011P: Samuel Chessman
3012M: chessman@tux.org
3013L: tlan-devel@lists.sourceforge.net
3014W: http://sourceforge.net/projects/tlan/
3015S: Maintained
3016
3017TOKEN-RING NETWORK DRIVER
3018P: Mike Phillips
3019M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003020L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021L: linux-tr@linuxtr.net
3022W: http://www.linuxtr.net
3023S: Maintained
3024
3025TOSHIBA ACPI EXTRAS DRIVER
3026P: John Belmonte
3027M: toshiba_acpi@memebeam.org
3028W: http://memebeam.org/toys/ToshibaAcpiDriver
3029S: Maintained
3030
3031TOSHIBA SMM DRIVER
3032P: Jonathan Buzzard
3033M: jonathan@buzzard.org.uk
3034L: tlinux-users@tce.toshiba-dme.co.jp
3035W: http://www.buzzard.org.uk/toshiba/
3036S: Maintained
3037
3038TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3039P: Muli Ben-Yehuda
3040M: mulix@mulix.org
3041L: linux-kernel@vger.kernel.org
3042S: Maintained
3043
3044TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003045P: Adrian Bunk
3046M: trivial@kernel.org
3047L: linux-kernel@vger.kernel.org
3048W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3049T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3050S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
3052TMS380 TOKEN-RING NETWORK DRIVER
3053P: Adam Fritzler
3054M: mid@auk.cx
3055L: linux-tr@linuxtr.net
3056W: http://www.auk.cx/tms380tr/
3057S: Maintained
3058
3059TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003060P: Valerie Henson
3061M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062L: tulip-users@lists.sourceforge.net
3063W: http://sourceforge.net/projects/tulip/
3064S: Maintained
3065
3066TUN/TAP driver
3067P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003068M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069L: vtun@office.satix.net
3070W: http://vtun.sourceforge.net/tun
3071S: Maintained
3072
3073U14-34F SCSI DRIVER
3074P: Dario Ballabio
3075M: ballabio_dario@emc.com
3076L: linux-scsi@vger.kernel.org
3077S: Maintained
3078
3079UDF FILESYSTEM
3080P: Ben Fennema
3081M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082W: http://linux-udf.sourceforge.net
3083S: Maintained
3084
3085UNIFORM CDROM DRIVER
3086P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003087M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088L: linux-kernel@vger.kernel.org
3089W: http://www.kernel.dk
3090S: Maintained
3091
3092USB ACM DRIVER
3093P: Oliver Neukum
3094M: oliver@neukum.name
3095L: linux-usb-users@lists.sourceforge.net
3096L: linux-usb-devel@lists.sourceforge.net
3097S: Maintained
3098
3099USB BLOCK DRIVER (UB ub)
3100P: Pete Zaitcev
3101M: zaitcev@redhat.com
3102L: linux-kernel@vger.kernel.org
3103L: linux-usb-devel@lists.sourceforge.net
3104S: Supported
3105
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106USB CDC ETHERNET DRIVER
3107P: Greg Kroah-Hartman
3108M: greg@kroah.com
3109L: linux-usb-users@lists.sourceforge.net
3110L: linux-usb-devel@lists.sourceforge.net
3111S: Maintained
3112W: http://www.kroah.com/linux-usb/
3113
3114USB EHCI DRIVER
3115P: David Brownell
3116M: dbrownell@users.sourceforge.net
3117L: linux-usb-devel@lists.sourceforge.net
3118S: Maintained
3119
Luca Risolia7ce08c92006-01-11 02:06:59 +00003120USB ET61X[12]51 DRIVER
3121P: Luca Risolia
3122M: luca.risolia@studio.unibo.it
3123L: linux-usb-devel@lists.sourceforge.net
3124L: video4linux-list@redhat.com
3125W: http://www.linux-projects.org
3126S: Maintained
3127
David Brownell69ae9e32006-11-14 02:03:31 -08003128USB GADGET/PERIPHERAL SUBSYSTEM
3129P: David Brownell
3130M: dbrownell@users.sourceforge.net
3131L: linux-usb-devel@lists.sourceforge.net
3132W: http://www.linux-usb.org/gadget
3133S: Maintained
3134
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135USB HID/HIDBP DRIVERS
3136P: Vojtech Pavlik
3137M: vojtech@suse.cz
3138L: linux-usb-users@lists.sourceforge.net
3139L: linux-usb-devel@lists.sourceforge.net
3140S: Maintained
3141
3142USB HUB DRIVER
3143P: Johannes Erdfelt
3144M: johannes@erdfelt.com
3145L: linux-usb-users@lists.sourceforge.net
3146L: linux-usb-devel@lists.sourceforge.net
3147S: Maintained
3148
Olav Kongas959eea22005-11-03 17:38:14 +02003149USB ISP116X DRIVER
3150P: Olav Kongas
3151M: ok@artecdesign.ee
3152L: linux-usb-devel@lists.sourceforge.net
3153S: Maintained
3154
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155USB KAWASAKI LSI DRIVER
3156P: Oliver Neukum
3157M: oliver@neukum.name
3158L: linux-usb-users@lists.sourceforge.net
3159L: linux-usb-devel@lists.sourceforge.net
3160S: Maintained
3161
3162USB MASS STORAGE DRIVER
3163P: Matthew Dharm
3164M: mdharm-usb@one-eyed-alien.net
3165L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003166L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167S: Maintained
3168W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3169
3170USB OHCI DRIVER
3171P: Roman Weissgaerber
3172M: weissg@vienna.at
3173L: linux-usb-users@lists.sourceforge.net
3174L: linux-usb-devel@lists.sourceforge.net
3175S: Maintained
3176
Matthias Urlichsba460e42005-07-14 00:33:47 -07003177USB OPTION-CARD DRIVER
3178P: Matthias Urlichs
3179M: smurf@smurf.noris.de
3180L: linux-usb-devel@lists.sourceforge.net
3181S: Maintained
3182
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183USB OV511 DRIVER
3184P: Mark McClelland
3185M: mmcclell@bigfoot.com
3186L: linux-usb-users@lists.sourceforge.net
3187L: linux-usb-devel@lists.sourceforge.net
3188W: http://alpha.dyndns.org/ov511/
3189S: Maintained
3190
3191USB PEGASUS DRIVER
3192P: Petko Manolov
3193M: petkan@users.sourceforge.net
3194L: linux-usb-users@lists.sourceforge.net
3195L: linux-usb-devel@lists.sourceforge.net
3196W: http://pegasus2.sourceforge.net/
3197S: Maintained
3198
3199USB PRINTER DRIVER
3200P: Vojtech Pavlik
3201M: vojtech@suse.cz
3202L: linux-usb-users@lists.sourceforge.net
3203L: linux-usb-devel@lists.sourceforge.net
3204S: Maintained
3205
3206USB RTL8150 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 SE401 DRIVER
3215P: Jeroen Vreeken
3216M: pe1rxq@amsat.org
3217L: linux-usb-users@lists.sourceforge.net
3218L: linux-usb-devel@lists.sourceforge.net
3219W: http://www.chello.nl/~j.vreeken/se401/
3220S: Maintained
3221
3222USB SERIAL CYBERJACK DRIVER
3223P: Matthias Bruestle and Harald Welte
3224M: support@reiner-sct.com
3225W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3226S: Maintained
3227
3228USB SERIAL DIGI ACCELEPORT DRIVER
3229P: Peter Berger and Al Borchers
3230M: pberger@brimson.com
3231M: alborchers@steinerpoint.com
3232L: linux-usb-users@lists.sourceforge.net
3233L: linux-usb-devel@lists.sourceforge.net
3234S: Maintained
3235
3236USB SERIAL DRIVER
3237P: Greg Kroah-Hartman
3238M: gregkh@suse.de
3239L: linux-usb-users@lists.sourceforge.net
3240L: linux-usb-devel@lists.sourceforge.net
3241S: Supported
3242
3243USB SERIAL BELKIN F5U103 DRIVER
3244P: William Greathouse
3245M: wgreathouse@smva.com
3246L: linux-usb-users@lists.sourceforge.net
3247L: linux-usb-devel@lists.sourceforge.net
3248S: Maintained
3249
3250USB SERIAL CYPRESS M8 DRIVER
3251P: Lonnie Mendez
3252M: dignome@gmail.com
3253L: linux-usb-users@lists.sourceforge.net
3254L: linux-usb-devel@lists.sourceforge.net
3255S: Maintained
3256W: http://geocities.com/i0xox0i
3257W: http://firstlight.net/cvs
3258
3259USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3260L: linux-usb-users@lists.sourceforge.net
3261L: linux-usb-devel@lists.sourceforge.net
3262S: Maintained
3263
3264USB AUERSWALD DRIVER
3265P: Wolfgang Muees
3266M: wolfgang@iksw-muees.de
3267L: linux-usb-users@lists.sourceforge.net
3268L: linux-usb-devel@lists.sourceforge.net
3269S: Maintained
3270
3271USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3272P: Gary Brubaker
3273M: xavyer@ix.netcom.com
3274L: linux-usb-users@lists.sourceforge.net
3275L: linux-usb-devel@lists.sourceforge.net
3276S: Maintained
3277
3278USB SERIAL KEYSPAN DRIVER
3279P: Greg Kroah-Hartman
3280M: greg@kroah.com
3281L: linux-usb-users@lists.sourceforge.net
3282L: linux-usb-devel@lists.sourceforge.net
3283W: http://www.kroah.com/linux/
3284S: Maintained
3285
3286USB SERIAL WHITEHEAT DRIVER
3287P: Stuart MacDonald
3288M: stuartm@connecttech.com
3289L: linux-usb-users@lists.sourceforge.net
3290L: linux-usb-devel@lists.sourceforge.net
3291W: http://www.connecttech.com
3292S: Supported
3293
3294USB SN9C10x DRIVER
3295P: Luca Risolia
3296M: luca.risolia@studio.unibo.it
3297L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003298L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299W: http://www.linux-projects.org
3300S: Maintained
3301
3302USB SUBSYSTEM
3303P: Greg Kroah-Hartman
3304M: gregkh@suse.de
3305L: linux-usb-users@lists.sourceforge.net
3306L: linux-usb-devel@lists.sourceforge.net
3307W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003308T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309S: Supported
3310
3311USB UHCI DRIVER
3312P: Alan Stern
3313M: stern@rowland.harvard.edu
3314L: linux-usb-users@lists.sourceforge.net
3315L: linux-usb-devel@lists.sourceforge.net
3316S: Maintained
3317
David Brownell69ae9e32006-11-14 02:03:31 -08003318USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319P: David Brownell
3320M: dbrownell@users.sourceforge.net
3321L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003322W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323S: Maintained
3324
3325USB W996[87]CF DRIVER
3326P: Luca Risolia
3327M: luca.risolia@studio.unibo.it
3328L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003329L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330W: http://www.linux-projects.org
3331S: Maintained
3332
Luca Risolia60f78052006-02-06 16:29:35 +00003333USB ZC0301 DRIVER
3334P: Luca Risolia
3335M: luca.risolia@studio.unibo.it
3336L: linux-usb-devel@lists.sourceforge.net
3337L: video4linux-list@redhat.com
3338W: http://www.linux-projects.org
3339S: Maintained
3340
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341USB ZD1201 DRIVER
3342P: Jeroen Vreeken
3343M: pe1rxq@amsat.org
3344L: linux-usb-users@lists.sourceforge.net
3345L: linux-usb-devel@lists.sourceforge.net
3346W: http://linux-lc100020.sourceforge.net
3347S: Maintained
3348
3349USER-MODE LINUX
3350P: Jeff Dike
3351M: jdike@karaya.com
3352L: user-mode-linux-devel@lists.sourceforge.net
3353L: user-mode-linux-user@lists.sourceforge.net
3354W: http://user-mode-linux.sourceforge.net
3355S: Maintained
3356
3357FAT/VFAT/MSDOS FILESYSTEM:
3358P: OGAWA Hirofumi
3359M: hirofumi@mail.parknet.co.jp
3360L: linux-kernel@vger.kernel.org
3361S: Maintained
3362
3363VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3364P: Jeff Garzik
3365S: Odd fixes
3366
3367VIA RHINE NETWORK DRIVER
3368P: Roger Luethi
3369M: rl@hellgate.ch
3370S: Maintained
3371
Jean Delvare32c0a522005-09-22 21:47:58 +02003372VIAPRO SMBUS DRIVER
3373P: Jean Delvare
3374M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003375L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003376S: Maintained
3377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378UCLINUX (AND M68KNOMMU)
3379P: Greg Ungerer
3380M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003382L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383S: Maintained
3384
3385UCLINUX FOR NEC V850
3386P: Miles Bader
3387M: uclinux-v850@lsi.nec.co.jp
3388W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3389W: http://www.ee.nec.de/uclinux/
3390S: Supported
3391
3392UCLINUX FOR RENESAS H8/300
3393P: Yoshinori Sato
3394M: ysato@users.sourceforge.jp
3395W: http://uclinux-h8.sourceforge.jp/
3396S: Supported
3397
3398USB DIAMOND RIO500 DRIVER
3399P: Cesar Miquel
3400M: miquel@df.uba.ar
3401L: rio500-users@lists.sourceforge.net
3402W: http://rio500.sourceforge.net
3403S: Maintained
3404
3405VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003406P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003407M: mchehab@infradead.org
3408M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003410W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003411T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003412S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Juerg Haefligerab413192006-09-24 20:54:04 +02003414VT1211 HARDWARE MONITOR DRIVER
3415P: Juerg Haefliger
3416M: juergh@gmail.com
3417L: lm-sensors@lm-sensors.org
3418S: Maintained
3419
Roger Lucas1de9e372005-11-26 20:20:05 +01003420VT8231 HARDWARE MONITOR DRIVER
3421P: Roger Lucas
3422M: roger@planbit.co.uk
3423L: lm-sensors@lm-sensors.org
3424S: Maintained
3425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426W1 DALLAS'S 1-WIRE BUS
3427P: Evgeniy Polyakov
3428M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429S: Maintained
3430
Charles Spirakis13927072006-07-05 18:05:15 +02003431W83791D HARDWARE MONITORING DRIVER
3432P: Charles Spirakis
3433M: bezaur@gmail.com
3434L: lm-sensors@lm-sensors.org
3435S: Maintained
3436
Rudolf Marek61db0112006-12-12 18:18:30 +01003437W83793 HARDWARE MONITORING DRIVER
3438P: Rudolf Marek
3439M: r.marek@assembler.cz
3440L: lm-sensors@lm-sensors.org
3441S: Maintained
3442
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443W83L51xD SD/MMC CARD INTERFACE DRIVER
3444P: Pierre Ossman
3445M: drzeus-wbsd@drzeus.cx
3446L: wbsd-devel@list.drzeus.cx
3447W: http://projects.drzeus.cx/wbsd
3448S: Maintained
3449
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003450WATCHDOG DEVICE DRIVERS
3451P: Wim Van Sebroeck
3452M: wim@iguana.be
3453T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3454S: Maintained
3455
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3457P: Jean Tourrilhes
3458M: jt@hpl.hp.com
3459W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3460S: Maintained
3461
3462WD7000 SCSI DRIVER
3463P: Miroslav Zagorac
3464M: zaga@fly.cc.fer.hr
3465L: linux-scsi@vger.kernel.org
3466S: Maintained
3467
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003468WISTRON LAPTOP BUTTON DRIVER
3469P: Miloslav Trmac
3470M: mitr@volny.cz
3471S: Maintained
3472
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473WL3501 WIRELESS PCMCIA CARD DRIVER
3474P: Arnaldo Carvalho de Melo
3475M: acme@conectiva.com.br
3476W: http://advogato.org/person/acme
3477S: Maintained
3478
3479X.25 NETWORK LAYER
3480P: Henner Eisen
3481M: eis@baty.hanse.de
3482L: linux-x25@vger.kernel.org
3483S: Maintained
3484
3485XFS FILESYSTEM
3486P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003487P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003489L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003491T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492S: Supported
3493
Peter Korsgaard238b8722006-12-06 20:35:17 -08003494XILINX UARTLITE SERIAL DRIVER
3495P: Peter Korsgaard
3496M: jacmet@sunsite.dk
3497L: linux-serial@vger.kernel.org
3498S: Maintained
3499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500X86 3-LEVEL PAGING (PAE) SUPPORT
3501P: Ingo Molnar
3502M: mingo@redhat.com
3503S: Maintained
3504
3505X86-64 port
3506P: Andi Kleen
3507M: ak@suse.de
3508L: discuss@x86-64.org
3509W: http://www.x86-64.org
3510S: Maintained
3511
3512YAM DRIVER FOR AX.25
3513P: Jean-Paul Roubelat
3514M: jpr@f6fbb.org
3515L: linux-hams@vger.kernel.org
3516S: Maintained
3517
Henkaf64a5e2005-10-12 15:02:56 +02003518YEALINK PHONE DRIVER
3519P: Henk Vergonet
3520M: Henk.Vergonet@gmail.com
3521L: usbb2k-api-dev@nongnu.org
3522S: Maintained
3523
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524Z8530 DRIVER FOR AX.25
3525P: Joerg Reuter
3526M: jreuter@yaina.de
3527W: http://yaina.de/jreuter/
3528W: http://www.qsl.net/dl1bke/
3529L: linux-hams@vger.kernel.org
3530S: Maintained
3531
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003532ZD1211RW WIRELESS DRIVER
3533P: Daniel Drake
3534M: dsd@gentoo.org
3535P: Ulrich Kunitz
3536M: kune@deine-taler.de
3537W: http://zd1211.ath.cx/wiki/DriverRewrite
3538L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3539S: Maintained
3540
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541ZF MACHZ WATCHDOG
3542P: Fernando Fuganti
3543M: fuganti@netbank.com.br
3544W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3545S: Maintained
3546
3547ZR36067 VIDEO FOR LINUX DRIVER
3548P: Ronald Bultje
3549M: rbultje@ronald.bitfreak.net
3550L: mjpeg-users@lists.sourceforge.net
3551W: http://mjpeg.sourceforge.net/driver-zoran/
3552S: Maintained
3553
3554ZR36120 VIDEO FOR LINUX DRIVER
3555P: Pauline Middelink
3556M: middelin@polyware.nl
3557W: http://www.polyware.nl/~middelin/En/hobbies.html
3558W: http://www.polyware.nl/~middelin/hobbies.html
3559S: Maintained
3560
3561THE REST
3562P: Linus Torvalds
3563S: Buried alive in reporters