blob: dea5b2a6de0a8becde3fdba5e0c48f7cfcd0917c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
33 generalized kernel feature ready for next time. See
34 Documentation/CodingStyle for guidance here.
35
36 PLEASE try to include any credit lines you want added with the
37 patch. It avoids people being missed off by mistake and makes
38 it easier to know who wants adding and who doesn't.
39
40 PLEASE document known bugs. If it doesn't work for everything
41 or does something very odd once a month document it.
42
Alan Coxc9ee1332006-05-20 15:00:12 -070043 PLEASE remember that submissions must be made under the terms
44 of the OSDL certificate of contribution
45 (http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html)
46 and should include a Signed-off-by: line.
47
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486. Make sure you have the right to send any changes you make. If you
49 do changes at work you may find your employer owns the patch
50 not you.
51
Alan Coxc9ee1332006-05-20 15:00:12 -0700527. When sending security related changes or reports to a maintainer
53 please Cc: security@kernel.org, especially if the maintainer
54 does not respond.
55
568. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 -----------------------------------
59
60Maintainers List (try to look for most precise areas first)
61
62Note: For the hard of thinking, this list is meant to remain in alphabetical
63order. If you could add yourselves to it in alphabetical order that would be
64so much easier [Ed]
65
66P: Person
67M: Mail patches to
68L: Mailing list that is relevant to this area
69W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080070T: SCM tree type and location. Type is one of: git, hg, quilt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071S: Status, one of the following:
72
73 Supported: Someone is actually paid to look after this.
74 Maintained: Someone actually looks after it.
75 Odd Fixes: It has a maintainer but they don't have time to do
76 much other than throw the odd patch in. See below..
77 Orphan: No current maintainer [but maybe you could take the
78 role as you write your new code].
79 Obsolete: Old code. Something tagged obsolete generally means
80 it has been replaced by a better system and you
81 should be using that.
82
833C359 NETWORK DRIVER
84P: Mike Phillips
85M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -070086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070087L: linux-tr@linuxtr.net
88W: http://www.linuxtr.net
89S: Maintained
90
913C505 NETWORK DRIVER
92P: Philip Blundell
93M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -070094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070095S: Maintained
96
973CR990 NETWORK DRIVER
98P: David Dillow
99M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101S: Maintained
102
1033W-XXXX ATA-RAID CONTROLLER DRIVER
104P: Adam Radford
105M: linuxraid@amcc.com
106L: linux-scsi@vger.kernel.org
107W: http://www.amcc.com
108S: Supported
109
1103W-9XXX SATA-RAID CONTROLLER DRIVER
111P: Adam Radford
112M: linuxraid@amcc.com
113L: linux-scsi@vger.kernel.org
114W: http://www.amcc.com
115S: Supported
116
11753C700 AND 53C700-66 SCSI DRIVER
118P: James E.J. Bottomley
119M: James.Bottomley@HansenPartnership.com
120L: linux-scsi@vger.kernel.org
121S: Maintained
122
1236PACK NETWORK DRIVER FOR AX.25
124P: Andreas Koensgen
125M: ajk@iehk.rwth-aachen.de
126L: linux-hams@vger.kernel.org
127S: Maintained
128
1298139CP 10/100 FAST ETHERNET DRIVER
130P: Jeff Garzik
131M: jgarzik@pobox.com
132S: Maintained
133
1348139TOO 10/100 FAST ETHERNET DRIVER
135P: Jeff Garzik
136M: jgarzik@pobox.com
137W: http://sourceforge.net/projects/gkernel/
138S: Maintained
139
1408169 10/100/1000 GIGABIT ETHERNET DRIVER
141P: Francois Romieu
142M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700143L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Maintained
145
1468250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-serial@vger.kernel.org
148W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100149S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1518390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
152P: Paul Gortmaker
153M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
156
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001579P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100158P: Eric Van Hensbergen
159M: ericvh@gmail.com
160P: Ron Minnich
161M: rminnich@lanl.gov
162P: Latchesar Ionkov
163M: lucho@ionkov.net
164L: v9fs-developer@lists.sourceforge.net
165W: http://v9fs.sf.net
166T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
167S: Maintained
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169A2232 SERIAL BOARD DRIVER
170P: Enver Haase
171M: ehaase@inf.fu-berlin.de
172M: A2232@gmx.net
173L: linux-m68k@lists.linux-m68k.org
174S: Maintained
175
176AIO
177P: Benjamin LaHaise
178M: bcrl@kvack.org
179L: linux-aio@kvack.org
180S: Supported
181
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200182ABIT UGURU HARDWARE MONITOR DRIVER
183P: Hans de Goede
184M: j.w.r.degoede@hhs.nl
185L: lm-sensors@lm-sensors.org
186S: Maintained
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188ACENIC DRIVER
189P: Jes Sorensen
190M: jes@trained-monkey.org
191L: linux-acenic@sunsite.dk
192S: Maintained
193
194ACI MIXER DRIVER
195P: Robert Siemer
196M: Robert.Siemer@gmx.de
197L: linux-sound@vger.kernel.org
198W: http://www.stud.uni-karlsruhe.de/~uh1b/
199S: Maintained
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201AACRAID SCSI RAID DRIVER
202P: Adaptec OEM Raid Solutions
203L: linux-scsi@vger.kernel.org
204W: http://linux.dell.com/storage.shtml
205S: Supported
206
207ACPI
208P: Len Brown
209M: len.brown@intel.com
Len Brown6968e502005-12-30 00:32:49 -0500210L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800212T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213S: Maintained
214
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700215ACPI PCI HOTPLUG DRIVER
216P: Kristen Carlson Accardi
217M: kristen.c.accardi@intel.com
218L: pcihpd-discuss@lists.sourceforge.net
219S: Maintained
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221AD1816 SOUND DRIVER
222P: Thorsten Knabe
223M: Thorsten Knabe <linux@thorsten-knabe.de>
224W: http://linux.thorsten-knabe.de
225S: Maintained
226
Kyle McMartin6958ae32005-10-21 23:11:27 -0400227AD1889 SOUND DRIVER
228P: Kyle McMartin
229M: kyle@parisc-linux.org
230P: Thibaut Varene
231M: T-Bone@parisc-linux.org
232W: http://wiki.parisc-linux.org/AD1889
233L: parisc-linux@lists.parisc-linux.org
234S: Maintained
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ADM1025 HARDWARE MONITOR DRIVER
237P: Jean Delvare
238M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200239L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240S: Maintained
241
242ADT746X FAN DRIVER
243P: Colin Leroy
244M: colin@colino.net
245S: Maintained
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247AEDSP16 DRIVER
248P: Riccardo Facchetti
249M: fizban@tin.it
250S: Maintained
251
252AFFS FILE SYSTEM
253P: Roman Zippel
254M: zippel@linux-m68k.org
255S: Maintained
256
257AGPGART DRIVER
258P: Dave Jones
259M: davej@codemonkey.org.uk
260W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800261T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262S: Maintained
263
264AHA152X SCSI DRIVER
265P: Juergen E. Fischer
266M: Juergen Fischer <fischer@norbit.de>
267L: linux-scsi@vger.kernel.org
268S: Maintained
269
270ALCATEL SPEEDTOUCH USB DRIVER
271P: Duncan Sands
272M: duncan.sands@free.fr
273L: linux-usb-users@lists.sourceforge.net
274L: linux-usb-devel@lists.sourceforge.net
275W: http://www.linux-usb.org/SpeedTouch/
276S: Maintained
277
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000278ALI1563 I2C DRIVER
279P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100280M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200281L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000282S: Maintained
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284ALPHA PORT
285P: Richard Henderson
286M: rth@twiddle.net
287S: Odd Fixes for 2.4; Maintained for 2.6.
288P: Ivan Kokshaysky
289M: ink@jurassic.park.msu.ru
290S: Maintained for 2.4; PCI support for 2.6.
291
Jordan Crousef90b8112006-01-06 00:12:14 -0800292AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100293P: Jordan Crouse
294M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800295L: info-linux@geode.amd.com
296W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
297S: Supported
298
Stelian Pop284f42b2006-12-12 18:18:31 +0100299AMS (Apple Motion Sensor) DRIVER
300P: Stelian Pop
301M: stelian@popies.net
302P: Michael Hanselmann
303M: linux-kernel@hansmi.ch
304S: Supported
305
Tom Tuckerf94b5332006-09-22 15:22:48 -0700306AMSO1100 RNIC DRIVER
307P: Tom Tucker
308M: tom@opengridcomputing.com
309P: Steve Wise
310M: swise@opengridcomputing.com
311L: openib-general@openib.org
312S: Maintained
313
Johannes Berg42269062006-07-25 16:15:50 +0200314AOA (Apple Onboard Audio) ALSA DRIVER
315P: Johannes Berg
316M: johannes@sipsolutions.net
317L: linuxppc-dev@ozlabs.org
318L: alsa-devel@alsa-project.org
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321APM DRIVER
322P: Stephen Rothwell
323M: sfr@canb.auug.org.au
324L: linux-laptop@vger.kernel.org
325W: http://www.canb.auug.org.au/~sfr/
326S: Supported
327
328APPLETALK NETWORK LAYER
329P: Arnaldo Carvalho de Melo
330M: acme@conectiva.com.br
331S: Maintained
332
Jaya Kumar1154ea72005-06-21 17:17:04 -0700333ARC FRAMEBUFFER DRIVER
334P: Jaya Kumar
335M: jayalk@intworks.biz
336S: Maintained
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338ARM26 ARCHITECTURE
339P: Ian Molton
340M: spyro@f2s.com
341S: Maintained
342
343ARM26/ARCHIMEDES
344P: Ian Molton
345M: spyro@f2s.com
346S: Maintained
347
348ARM26/A5000
349P: John Appleby
350M: john@dnsworld.co.uk
351S: Maintained
352
353ARM MFM AND FLOPPY DRIVERS
354P: Ian Molton
355M: spyro@f2s.com
356S: Maintained
357
Andrew Victord4a89c72006-12-04 13:56:21 +0100358ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
359P: Andrew Victor
360M: andrew@sanpeople.com
361L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
362W: http://maxim.org.za/at91_26.html
363S: Maintained
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365ARM/CORGI MACHINE SUPPORT
366P: Richard Purdie
367M: rpurdie@rpsys.net
368S: Maintained
369
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100370ARM/HP JORNADA 7XX MACHINE SUPPORT
371P: Kristoffer Ericson
372M: kristoffer_e1@hotmail.com
373W: www.jlime.com
374S: Maintained
375
Dirk Opfer8459c152005-11-06 14:27:52 +0000376ARM/TOSA MACHINE SUPPORT
377P: Dirk Opfer
378M: dirk@opfer-online.de
379S: Maintained
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ARM/PLEB SUPPORT
382P: Peter Chubb
383M: pleb@gelato.unsw.edu.au
384W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
385S: Maintained
386
387ARM/PT DIGITAL BOARD PORT
388P: Stefan Eletzhofer
389M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700390L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391W: http://www.arm.linux.org.uk/
392S: Maintained
393
394ARM/SHARK MACHINE SUPPORT
395P: Alexander Schulz
396M: alex@shark-linux.de
397W: http://www.shark-linux.de/shark.html
398S: Maintained
399
400ARM/STRONGARM110 PORT
401P: Russell King
402M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700403L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404W: http://www.arm.linux.org.uk/
405S: Maintained
406
407ARM/S3C2410 ARM ARCHITECTURE
408P: Ben Dooks
409M: ben-s3c2410@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700410L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411W: http://www.fluff.org/ben/linux/
412S: Maintained
413
414ARM/S3C2440 ARM ARCHITECTURE
415P: Ben Dooks
416M: ben-s3c2440@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700417L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418W: http://www.fluff.org/ben/linux/
419S: Maintained
420
421ARPD SUPPORT
422P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700423L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424S: Maintained
425
426ASUS ACPI EXTRAS DRIVER
427P: Karol Kozimor
428M: sziwan@users.sourceforge.net
429P: Julien Lerouge
430M: julien.lerouge@free.fr
431L: acpi4asus-user@lists.sourceforge.net
432W: http://sourceforge.net/projects/acpi4asus
433W: http://julien.lerouge.free.fr
434S: Maintained
435
436ATA OVER ETHERNET DRIVER
437P: Ed L. Cashin
438M: ecashin@coraid.com
439W: http://www.coraid.com/support/linux
440S: Supported
441
442ATM
443P: Chas Williams
444M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700445L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446W: http://linux-atm.sourceforge.net
447S: Maintained
448
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100449ATMEL MACB ETHERNET DRIVER
450P: Atmel AVR32 Support Team
451M: avr32@atmel.com
452P: Haavard Skinnemoen
453M: hskinnemoen@atmel.com
454S: Supported
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456ATMEL WIRELESS DRIVER
457P: Simon Kelley
458M: simon@thekelleys.org.uk
459W: http://www.thekelleys.org.uk/atmel
460W: http://atmelwlandriver.sourceforge.net/
461S: Maintained
462
Chris Wrighta92b7b82005-07-07 18:12:23 -0700463AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100464P: David Woodhouse
465M: dwmw2@infradead.org
466L: linux-audit@redhat.com
467W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800468T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700469S: Maintained
470
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700471AVR32 ARCHITECTURE
472P: Atmel AVR32 Support Team
473M: avr32@atmel.com
474P: Haavard Skinnemoen
475M: hskinnemoen@atmel.com
476W: http://www.atmel.com/products/AVR32/
477W: http://avr32linux.org/
478W: http://avrfreaks.net/
479S: Supported
480
481AVR32/AT32AP MACHINE SUPPORT
482P: Atmel AVR32 Support Team
483M: avr32@atmel.com
484P: Haavard Skinnemoen
485M: hskinnemoen@atmel.com
486S: Supported
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488AX.25 NETWORK LAYER
489P: Ralf Baechle
490M: ralf@linux-mips.org
491L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200492W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493S: Maintained
494
495BAYCOM/HDLCDRV DRIVERS FOR AX.25
496P: Thomas Sailer
497M: t.sailer@alumni.ethz.ch
498L: linux-hams@vger.kernel.org
499W: http://www.baycom.org/~tom/ham/ham.html
500S: Maintained
501
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200502BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
503P: Larry Finger
504M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200505P: Stefano Brivio
506M: st3@riseup.net
507W: http://bcm43xx.berlios.de/
508S: Maintained
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510BEFS FILE SYSTEM
511P: Sergey S. Kostyliov
512M: rathamahata@php4.ru
513L: linux-kernel@vger.kernel.org
514S: Maintained
515
516BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
517P: Kenji Hollis
518W: http://ftp.bitgate.com/pcwd/
519S: Maintained
520
521BFS FILE SYSTEM
522P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800523M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524L: linux-kernel@vger.kernel.org
525S: Maintained
526
527BLOCK LAYER
528P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200529M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800531T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532S: Maintained
533
534BLUETOOTH SUBSYSTEM
535P: Marcel Holtmann
536M: marcel@holtmann.org
537P: Maxim Krasnyansky
538M: maxk@qualcomm.com
539L: bluez-devel@lists.sf.net
540W: http://bluez.sf.net
541W: http://www.bluez.org
542W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800543T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544S: Maintained
545
546BLUETOOTH RFCOMM LAYER
547P: Marcel Holtmann
548M: marcel@holtmann.org
549P: Maxim Krasnyansky
550M: maxk@qualcomm.com
551S: Maintained
552
553BLUETOOTH BNEP LAYER
554P: Marcel Holtmann
555M: marcel@holtmann.org
556P: Maxim Krasnyansky
557M: maxk@qualcomm.com
558S: Maintained
559
560BLUETOOTH CMTP LAYER
561P: Marcel Holtmann
562M: marcel@holtmann.org
563S: Maintained
564
565BLUETOOTH HIDP LAYER
566P: Marcel Holtmann
567M: marcel@holtmann.org
568S: Maintained
569
570BLUETOOTH HCI UART DRIVER
571P: Marcel Holtmann
572M: marcel@holtmann.org
573P: Maxim Krasnyansky
574M: maxk@qualcomm.com
575S: Maintained
576
577BLUETOOTH HCI USB DRIVER
578P: Marcel Holtmann
579M: marcel@holtmann.org
580P: Maxim Krasnyansky
581M: maxk@qualcomm.com
582S: Maintained
583
584BLUETOOTH HCI BCM203X DRIVER
585P: Marcel Holtmann
586M: marcel@holtmann.org
587S: Maintained
588
589BLUETOOTH HCI BPA10X DRIVER
590P: Marcel Holtmann
591M: marcel@holtmann.org
592S: Maintained
593
594BLUETOOTH HCI BFUSB DRIVER
595P: Marcel Holtmann
596M: marcel@holtmann.org
597S: Maintained
598
599BLUETOOTH HCI DTL1 DRIVER
600P: Marcel Holtmann
601M: marcel@holtmann.org
602S: Maintained
603
604BLUETOOTH HCI BLUECARD DRIVER
605P: Marcel Holtmann
606M: marcel@holtmann.org
607S: Maintained
608
609BLUETOOTH HCI BT3C DRIVER
610P: Marcel Holtmann
611M: marcel@holtmann.org
612S: Maintained
613
614BLUETOOTH HCI BTUART DRIVER
615P: Marcel Holtmann
616M: marcel@holtmann.org
617S: Maintained
618
619BLUETOOTH HCI VHCI DRIVER
620P: Maxim Krasnyansky
621M: maxk@qualcomm.com
622S: Maintained
623
624BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100625P: Chad Tindel
626M: ctindel@users.sourceforge.net
627P: Jay Vosburgh
628M: fubar@us.ibm.com
629L: bonding-devel@lists.sourceforge.net
630W: http://sourceforge.net/projects/bonding/
631S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000633BROADBAND PROCESSOR ARCHITECTURE
634P: Arnd Bergmann
635M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100636L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400637W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000638S: Supported
639
Gary Zambrano39105892006-06-22 17:26:20 -0700640BROADCOM B44 10/100 ETHERNET DRIVER
641P: Gary Zambrano
642M: zambrano@broadcom.com
643L: netdev@vger.kernel.org
644S: Supported
645
Michael Chan948c51e2006-06-04 02:51:39 -0700646BROADCOM BNX2 GIGABIT ETHERNET DRIVER
647P: Michael Chan
648M: mchan@broadcom.com
649L: netdev@vger.kernel.org
650S: Supported
651
652BROADCOM TG3 GIGABIT ETHERNET DRIVER
653P: Michael Chan
654M: mchan@broadcom.com
655L: netdev@vger.kernel.org
656S: Supported
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700659P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200660M: mchehab@infradead.org
661M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700663W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200664T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700665S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200667CALGARY x86-64 IOMMU
668P: Muli Ben-Yehuda
669M: muli@il.ibm.com
670P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200671M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200672L: linux-kernel@vger.kernel.org
673L: discuss@x86-64.org
674S: Maintained
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676COMMON INTERNET FILE SYSTEM (CIFS)
677P: Steve French
678M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100679L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680L: samba-technical@lists.samba.org
681W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800682T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683S: Supported
684
Joel Becker7063fbf2005-12-15 14:29:43 -0800685CONFIGFS
686P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800687M: joel.becker@oracle.com
688L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800689S: Supported
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691CIRRUS LOGIC GENERIC FBDEV DRIVER
692P: Jeff Garzik
693M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800694L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695S: Odd Fixes
696
697CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
698P: Cirrus Logic Corporation (kernel 2.2 driver)
699M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
700P: Nils Faerber (port to kernel 2.4)
701M: Nils Faerber <nils@kernelconcepts.de>
702S: Maintained
703
704CODA FILE SYSTEM
705P: Jan Harkes
706M: jaharkes@cs.cmu.edu
707M: coda@cs.cmu.edu
708L: codalist@coda.cs.cmu.edu
709W: http://www.coda.cs.cmu.edu/
710S: Maintained
711
712COMPACTPCI HOTPLUG CORE
713P: Scott Murray
714M: scottm@somanetworks.com
715M: scott@spiteful.org
716L: pcihpd-discuss@lists.sourceforge.net
717S: Supported
718
719COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
720P: Scott Murray
721M: scottm@somanetworks.com
722M: scott@spiteful.org
723L: pcihpd-discuss@lists.sourceforge.net
724S: Supported
725
726COMPACTPCI HOTPLUG GENERIC DRIVER
727P: Scott Murray
728M: scottm@somanetworks.com
729M: scott@spiteful.org
730L: pcihpd-discuss@lists.sourceforge.net
731S: Supported
732
733COMPUTONE INTELLIPORT MULTIPORT CARD
734P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700735M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700737S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739COSA/SRP SYNC SERIAL DRIVER
740P: Jan "Yenya" Kasprzak
741M: kas@fi.muni.cz
742W: http://www.fi.muni.cz/~kas/cosa/
743S: Maintained
744
745CPU FREQUENCY DRIVERS
746P: Dave Jones
747M: davej@codemonkey.org.uk
748L: cpufreq@lists.linux.org.uk
749W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500750T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751S: Maintained
752
753CPUID/MSR DRIVER
754P: H. Peter Anvin
755M: hpa@zytor.com
756S: Maintained
757
Paul Jacksoned90fb42005-09-27 21:45:37 -0700758CPUSETS
759P: Paul Jackson
760P: Simon Derr
761M: pj@sgi.com
762M: simon.derr@bull.net
763L: linux-kernel@vger.kernel.org
764W: http://www.bullopensource.org/cpuset/
765S: Supported
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100768W: http://sourceforge.net/projects/cramfs/
769S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771CRIS PORT
772P: Mikael Starvik
773M: starvik@axis.com
774L: dev-etrax@axis.com
775W: http://developer.axis.com
776S: Maintained
777
778CRYPTO API
779P: Herbert Xu
780M: herbert@gondor.apana.org.au
781P: David S. Miller
782M: davem@davemloft.net
783L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800784T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785S: Maintained
786
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100787CS5535 Audio ALSA driver
788P: Jaya Kumar
789M: jayakumar.alsa@gmail.com
790S: Maintained
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792CYBERPRO FB DRIVER
793P: Russell King
794M: rmk@arm.linux.org.uk
795W: http://www.arm.linux.org.uk/
796S: Maintained
797
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700798CYBLAFB FRAMEBUFFER DRIVER
799P: Knut Petersen
800M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800801L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700802S: Maintained
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804CYCLADES 2X SYNC CARD DRIVER
805P: Arnaldo Carvalho de Melo
806M: acme@conectiva.com.br
807W: http://advogato.org/person/acme
808L: cycsyn-devel@bazar.conectiva.com.br
809S: Maintained
810
811CYCLADES ASYNC MUX DRIVER
812M: async@cyclades.com
813W: http://www.cyclades.com/
814S: Supported
815
816CYCLADES PC300 DRIVER
817M: pc300@cyclades.com
818W: http://www.cyclades.com/
819S: Supported
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821DAMA SLAVE for AX.25
822P: Joerg Reuter
823M: jreuter@yaina.de
824W: http://yaina.de/jreuter/
825W: http://www.qsl.net/dl1bke/
826L: linux-hams@vger.kernel.org
827S: Maintained
828
829DC395x SCSI driver
830P: Oliver Neukum
831M: oliver@neukum.name
832P: Ali Akcaagac
833M: aliakc@web.de
834P: Jamie Lenehan
835M: lenehan@twibble.org
836W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700837L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838L: http://lists.twibble.org/mailman/listinfo/dc395x/
839S: Maintained
840
841DC390/AM53C974 SCSI driver
842P: Kurt Garloff
843M: garloff@suse.de
844W: http://www.garloff.de/kurt/linux/dc390/
845P: Guennadi Liakhovetski
846M: g.liakhovetski@gmx.de
847S: Maintained
848
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700849DCCP PROTOCOL
850P: Arnaldo Carvalho de Melo
851M: acme@mandriva.com
852L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800853W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700854S: Maintained
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856DECnet NETWORK LAYER
857P: Patrick Caulfield
858M: patrick@tykepenguin.com
859W: http://linux-decnet.sourceforge.net
860L: linux-decnet-user@lists.sourceforge.net
861S: Maintained
862
863DEFXX FDDI NETWORK DRIVER
864P: Maciej W. Rozycki
865M: macro@linux-mips.org
866S: Maintained
867
868DELL LAPTOP SMM DRIVER
869P: Massimo Dal Zotto
870M: dz@debian.org
871W: http://www.debian.org/~dz/i8k/
872S: Maintained
873
Doug Warzecha90563ec2005-09-06 15:17:15 -0700874DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
875P: Doug Warzecha
876M: Douglas_Warzecha@dell.com
877S: Maintained
878
Pavel Machek5ddb88c2006-09-29 02:01:29 -0700879DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880P: Alasdair Kergon
881L: dm-devel@redhat.com
882W: http://sources.redhat.com/dm
883S: Maintained
884
885DEVICE NUMBER REGISTRY
886P: Torben Mathiasen
887M: device@lanana.org
888W: http://lanana.org/docs/device-list/index.html
889L: linux-kernel@vger.kernel.org
890S: Maintained
891
892DEVICE FILESYSTEM
893S: Obsolete
894
895DIGI INTL. EPCA DRIVER
896P: Digi International, Inc
897M: Eng.Linux@digi.com
898L: Eng.Linux@digi.com
899W: http://www.digi.com
900S: Orphaned
901
902DIGI RIGHTSWITCH NETWORK DRIVER
903P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -0700904L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905W: http://www.digi.com
906S: Orphaned
907
908DIRECTORY NOTIFICATION
909P: Stephen Rothwell
910M: sfr@canb.auug.org.au
911L: linux-kernel@vger.kernel.org
912S: Supported
913
914DISK GEOMETRY AND PARTITION HANDLING
915P: Andries Brouwer
916M: aeb@cwi.nl
917W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
918W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
919W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
920S: Maintained
921
922DISKQUOTA:
923P: Jan Kara
924M: jack@suse.cz
925L: linux-kernel@vger.kernel.org
926S: Maintained
927
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400928DISTRIBUTED LOCK MANAGER
929P: Patrick Caulfield
930M: pcaulfie@redhat.com
931P: David Teigland
932M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -0400933L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400934W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -0400935T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
936T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400937S: Supported
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
940P: Tobias Ringstrom
941M: tori@unhappy.mine.nu
942L: linux-kernel@vger.kernel.org
943S: Maintained
944
Martin Waitzba483d52005-06-17 13:20:59 -0700945DOCBOOK FOR DOCUMENTATION
946P: Martin Waitz
947M: tali@admingilde.org
Randy Dunlap0f40efb2006-07-03 00:24:15 -0700948P: Randy Dunlap
949M: rdunlap@xenotime.net
Martin Waitz061350e2006-01-09 20:53:53 -0800950T: git http://tali.admingilde.org/git/linux-docbook.git
Martin Waitzba483d52005-06-17 13:20:59 -0700951S: Maintained
952
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -0400953DOCKING STATION DRIVER
954P: Kristen Carlson Accardi
955M: kristen.c.accardi@intel.com
956L: linux-acpi@vger.kernel.org
957S: Maintained
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959DOUBLETALK DRIVER
960P: James R. Van Zandt
961M: jrv@vanzandt.mv.com
962L: blinux-list@redhat.com
963S: Maintained
964
965DRIVER CORE, KOBJECTS, AND SYSFS
966P: Greg Kroah-Hartman
967M: gregkh@suse.de
968L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800969T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970S: Supported
971
972DRM DRIVERS
973P: David Airlie
974M: airlied@linux.ie
975L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -0800976T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977S: Maintained
978
979DSCC4 DRIVER
980P: François Romieu
981M: romieu@cogenit.fr
982M: romieu@ensta.fr
983S: Maintained
984
985DVB SUBSYSTEM AND DRIVERS
986P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200987M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +0200989W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200990T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200991S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993EATA-DMA SCSI DRIVER
994P: Michael Neuffer
995L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
996S: Maintained
997
998EATA ISA/EISA/PCI SCSI DRIVER
999P: Dario Ballabio
1000M: ballabio_dario@emc.com
1001L: linux-scsi@vger.kernel.org
1002S: Maintained
1003
1004EATA-PIO SCSI DRIVER
1005P: Michael Neuffer
1006M: mike@i-Connect.Net
1007L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1008S: Maintained
1009
1010EBTABLES
1011P: Bart De Schuymer
1012M: bart.de.schuymer@pandora.be
1013L: ebtables-user@lists.sourceforge.net
1014L: ebtables-devel@lists.sourceforge.net
1015W: http://ebtables.sourceforge.net/
1016S: Maintained
1017
Michael Halcrow237fead2006-10-04 02:16:22 -07001018ECRYPT FILE SYSTEM
1019P: Mike Halcrow, Phillip Hellewell
1020M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1021L: ecryptfs-devel@lists.sourceforge.net
1022W: http://ecryptfs.sourceforge.net/
1023S: Supported
1024
Alan Coxda9bb1d2006-01-18 17:44:13 -08001025EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001026P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001027M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001028L: bluesmoke-devel@lists.sourceforge.net
1029W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001030S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001031
1032EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001033P: Mark Gross
1034M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001035L: bluesmoke-devel@lists.sourceforge.net
1036W: bluesmoke.sourceforge.net
1037S: Maintained
1038
1039EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001040P: Doug Thompson
1041M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001042L: bluesmoke-devel@lists.sourceforge.net
1043W: bluesmoke.sourceforge.net
1044S: Maintained
1045
1046EDAC-R82600
1047P: Tim Small
1048M: tim@buttersideup.com
1049L: bluesmoke-devel@lists.sourceforge.net
1050W: bluesmoke.sourceforge.net
1051S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053EEPRO100 NETWORK DRIVER
1054P: Andrey V. Savochkin
1055M: saw@saw.sw.com.sg
1056S: Maintained
1057
Josh Triplett0bee8d22006-07-30 03:03:58 -07001058EFS FILESYSTEM
1059W: http://aeschi.ch.eu.org/efs/
1060S: Orphan
1061
Heiko J Schickfab97222006-09-22 15:22:22 -07001062EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1063P: Hoang-Nam Nguyen
1064M: hnguyen@de.ibm.com
1065P: Christoph Raisch
1066M: raisch@de.ibm.com
1067L: openib-general@openib.org
1068S: Supported
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070EMU10K1 SOUND DRIVER
1071P: James Courtier-Dutton
1072M: James@superbug.demon.co.uk
1073L: emu10k1-devel@lists.sourceforge.net
1074W: http://sourceforge.net/projects/emu10k1/
1075S: Maintained
1076
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001077EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001078P: James Smart
1079M: james.smart@emulex.com
1080L: linux-scsi@vger.kernel.org
1081W: http://sourceforge.net/projects/lpfcxxxx
1082S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084EPSON 1355 FRAMEBUFFER DRIVER
1085P: Christopher Hoover
1086M: ch@murgatroid.com, ch@hpl.hp.com
1087S: Maintained
1088
1089ETHEREXPRESS-16 NETWORK DRIVER
1090P: Philip Blundell
1091M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001092L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093S: Maintained
1094
1095ETHERNET BRIDGE
1096P: Stephen Hemminger
1097M: shemminger@osdl.org
1098L: bridge@osdl.org
1099W: http://bridge.sourceforge.net/
1100S: Maintained
1101
1102ETHERTEAM 16I DRIVER
1103P: Mika Kuoppala
1104M: miku@iki.fi
1105S: Maintained
1106
1107EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001108L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109S: Maintained
1110
1111EXT3 FILE SYSTEM
1112P: Stephen Tweedie, Andrew Morton
1113M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001114L: linux-ext4@vger.kernel.org
1115S: Maintained
1116
1117EXT4 FILE SYSTEM
1118P: Stephen Tweedie, Andrew Morton
1119M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1120L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121S: Maintained
1122
Jean Delvaree53004e2006-01-09 23:26:14 +01001123F71805F HARDWARE MONITORING DRIVER
1124P: Jean Delvare
1125M: khali@linux-fr.org
1126L: lm-sensors@lm-sensors.org
1127S: Maintained
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129FARSYNC SYNCHRONOUS DRIVER
1130P: Kevin Curtis
1131M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132W: http://www.farsite.co.uk/
1133S: Supported
1134
1135FRAMEBUFFER LAYER
1136P: Antonino Daplas
1137M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001138L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139W: http://linux-fbdev.sourceforge.net/
1140S: Maintained
1141
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001142FREESCALE SOC FS_ENET DRIVER
1143P: Pantelis Antoniou
1144M: pantelis.antoniou@gmail.com
1145P: Vitaly Bordug
1146M: vbordug@ru.mvista.com
1147L: linuxppc-embedded@ozlabs.org
1148L: netdev@vger.kernel.org
1149S: Maintained
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151FILE LOCKING (flock() and fcntl()/lockf())
1152P: Matthew Wilcox
1153M: matthew@wil.cx
1154L: linux-fsdevel@vger.kernel.org
1155S: Maintained
1156
1157FILESYSTEMS (VFS and infrastructure)
1158P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001159M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160S: Maintained
1161
1162FIRMWARE LOADER (request_firmware)
1163L: linux-kernel@vger.kernel.org
1164S: Orphan
1165
1166FPU EMULATOR
1167P: Bill Metzenthen
1168M: billm@suburbia.net
1169W: http://suburbia.net/~billm/floating-point/emulator/
1170S: Maintained
1171
1172FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1173P: Mike McLagan
1174M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001175L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176S: Maintained
1177
1178FREEVXFS FILESYSTEM
1179P: Christoph Hellwig
1180M: hch@infradead.org
1181W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1182S: Maintained
1183
1184FUJITSU FR-V PORT
1185P: David Howells
1186M: dhowells@redhat.com
1187S: Maintained
1188
Miklos Szeredi04578f12005-09-09 13:10:22 -07001189FUSE: FILESYSTEM IN USERSPACE
1190P: Miklos Szeredi
1191M: miklos@szeredi.hu
1192L: fuse-devel@lists.sourceforge.net
1193W: http://fuse.sourceforge.net/
1194S: Maintained
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1197P: Rik Faith
1198M: faith@cs.unc.edu
1199L: linux-scsi@vger.kernel.org
1200S: Odd fixes (e.g., new signatures)
1201
1202GDT SCSI DISK ARRAY CONTROLLER DRIVER
1203P: Achim Leubner
1204M: achim_leubner@adaptec.com
1205L: linux-scsi@vger.kernel.org
1206W: http://www.icp-vortex.com/
1207S: Supported
1208
1209GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1210P: Krzysztof Halasa
1211M: khc@pm.waw.pl
1212W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1213S: Maintained
1214
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001215GFS2 FILE SYSTEM
1216P: Steven Whitehouse
1217M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001218L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001219W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001220T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1221T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001222S: Supported
1223
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001224GIGASET ISDN DRIVERS
1225P: Hansjoerg Lipp
1226M: hjlipp@web.de
1227P: Tilman Schmidt
1228M: tilman@imap.cc
1229L: gigaset307x-common@lists.sourceforge.net
1230W: http://gigaset307x.sourceforge.net/
1231S: Maintained
1232
Jean Delvare5b543962005-08-15 19:51:02 +02001233HARDWARE MONITORING
1234P: Jean Delvare
1235M: khali@linux-fr.org
1236L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001237W: http://www.lm-sensors.org/
1238T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001239S: Maintained
1240
Michael Buesch844dd052006-06-26 00:24:59 -07001241HARDWARE RANDOM NUMBER GENERATOR CORE
1242P: Michael Buesch
1243M: mb@bu3sch.de
1244S: Maintained
1245
Robert Love860e1d62005-08-31 23:57:59 -04001246HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1247P: Robert Love
1248M: rlove@rlove.org
1249M: linux-kernel@vger.kernel.org
1250W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1251S: Maintained
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253HARMONY SOUND DRIVER
1254P: Kyle McMartin
1255M: kyle@parisc-linux.org
1256W: http://www.parisc-linux.org/~kyle/harmony/
1257L: parisc-linux@lists.parisc-linux.org
1258S: Maintained
1259
1260HAYES ESP SERIAL DRIVER
1261P: Andrew J. Robinson
1262M: arobinso@nyx.net
1263L: linux-kernel@vger.kernel.org
1264W: http://www.nyx.net/~arobinso
1265S: Maintained
1266
1267HFS FILESYSTEM
1268P: Roman Zippel
1269M: zippel@linux-m68k.org
1270L: linux-kernel@vger.kernel.org
1271S: Maintained
1272
1273HGA FRAMEBUFFER DRIVER
1274P: Ferenc Bakonyi
1275M: fero@drama.obuda.kando.hu
1276L: linux-nvidia@lists.surfsouth.com
1277W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1278S: Maintained
1279
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
Cal Peake18b36c712006-12-12 20:18:16 +01001514P: John McCutchan
1515M: ttb@tentacle.dhs.org
1516P: Robert Love
1517M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001518L: linux-kernel@vger.kernel.org
1519S: Maintained
1520
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001521INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001522P: Sylvain Meyer
1523M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001524L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001525S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001528P: Antonino Daplas
1529M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001530L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001531S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1534P: Ingo Molnar
1535M: mingo@redhat.com
1536S: Maintained
1537
1538INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1539P: Jeff Garzik
1540M: jgarzik@pobox.com
1541W: http://sourceforge.net/projects/gkernel/
1542S: Maintained
1543
1544INTEL IA32 MICROCODE UPDATE SUPPORT
1545P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001546M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547S: Maintained
1548
Michael Buesch844dd052006-06-26 00:24:59 -07001549INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1550P: Deepak Saxena
1551M: dsaxena@plexity.net
1552S: Maintained
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554INTEL PRO/100 ETHERNET SUPPORT
1555P: John Ronciak
1556M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557P: Jesse Brandeburg
1558M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001559P: Jeff Kirsher
1560M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001561P: Auke Kok
1562M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563W: http://sourceforge.net/projects/e1000/
1564S: Supported
1565
1566INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1567P: Jeb Cramer
1568M: cramerj@intel.com
1569P: John Ronciak
1570M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001571P: Jesse Brandeburg
1572M: jesse.brandeburg@intel.com
1573P: Jeff Kirsher
1574M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001575P: Auke Kok
1576M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577W: http://sourceforge.net/projects/e1000/
1578S: Supported
1579
1580INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001581P: Jeff Kirsher
1582M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583P: Ayyappan Veeraiyan
1584M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585P: John Ronciak
1586M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001587P: Jesse Brandeburg
1588M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001589P: Auke Kok
1590M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591W: http://sourceforge.net/projects/e1000/
1592S: Supported
1593
James Ketrenos826d2ab2005-11-07 18:56:59 -06001594INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1595P: Yi Zhu
1596M: yi.zhu@intel.com
1597P: James Ketrenos
1598M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001599L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001600L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1601W: http://ipw2100.sourceforge.net
1602S: Supported
1603
1604INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1605P: Yi Zhu
1606M: yi.zhu@intel.com
1607P: James Ketrenos
1608M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001609L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001610L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1611W: http://ipw2200.sourceforge.net
1612S: Supported
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614IOC3 DRIVER
1615P: Ralf Baechle
1616M: ralf@linux-mips.org
1617L: linux-mips@linux-mips.org
1618S: Maintained
1619
1620IP MASQUERADING:
1621P: Juanjo Ciarlante
1622M: jjciarla@raiz.uncu.edu.ar
1623S: Maintained
1624
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001625IPATH DRIVER:
1626P: Bryan O'Sullivan
1627M: support@pathscale.com
1628L: openib-general@openib.org
1629S: Supported
1630
Corey Minyard4409ebe2006-04-20 02:43:12 -07001631IPMI SUBSYSTEM
1632P: Corey Minyard
1633M: minyard@acm.org
1634L: openipmi-developer@lists.sourceforge.net
1635W: http://openipmi.sourceforge.net/
1636S: Supported
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638IPX NETWORK LAYER
1639P: Arnaldo Carvalho de Melo
1640M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001641L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642S: Maintained
1643
1644IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001645P: Samuel Ortiz
1646M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001647L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001649S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651ISAPNP
1652P: Jaroslav Kysela
1653M: perex@suse.cz
1654S: Maintained
1655
1656ISDN SUBSYSTEM
1657P: Karsten Keil
1658M: kkeil@suse.de
1659P: Kai Germaschewski
1660M: kai.germaschewski@gmx.de
1661L: isdn4linux@listserv.isdn4linux.de
1662W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001663T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664S: Maintained
1665
1666ISDN SUBSYSTEM (Eicon active card driver)
1667P: Armin Schindler
1668M: mac@melware.de
1669L: isdn4linux@listserv.isdn4linux.de
1670W: http://www.melware.de
1671S: Maintained
1672
1673JOURNALLING FLASH FILE SYSTEM (JFFS)
1674P: Axis Communications AB
1675M: jffs-dev@axis.com
1676L: jffs-dev@axis.com
1677W: http://www.developer.axis.com/software/jffs/
1678S: Maintained
1679
1680JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1681P: David Woodhouse
1682M: dwmw2@infradead.org
1683L: jffs-dev@axis.com
1684W: http://sources.redhat.com/jffs2/
1685S: Maintained
1686
1687JFS FILESYSTEM
1688P: Dave Kleikamp
1689M: shaggy@austin.ibm.com
1690L: jfs-discussion@lists.sourceforge.net
1691W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001692T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693S: Supported
1694
Josh Triplettde456d32006-07-30 03:04:00 -07001695JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001696P: Stephen Tweedie, Andrew Morton
1697M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001698L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001699S: Maintained
1700
Rudolf Marek4660cb32006-10-08 22:01:26 +02001701K8TEMP HARDWARE MONITORING DRIVER
1702P: Rudolf Marek
1703M: r.marek@assembler.cz
1704L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705S: Maintained
1706
1707KCONFIG
1708P: Roman Zippel
1709M: zippel@linux-m68k.org
1710L: kbuild-devel@lists.sourceforge.net
1711S: Maintained
1712
Vivek Goyalea6c2082006-05-20 14:59:55 -07001713KDUMP
1714P: Vivek Goyal
1715M: vgoyal@in.ibm.com
1716P: Haren Myneni
1717M: hbabu@us.ibm.com
1718L: fastboot@lists.osdl.org
1719L: linux-kernel@vger.kernel.org
1720W: http://lse.sourceforge.net/kdump/
1721S: Maintained
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723KERNEL AUTOMOUNTER (AUTOFS)
1724P: H. Peter Anvin
1725M: hpa@zytor.com
1726L: autofs@linux.kernel.org
1727S: Odd Fixes
1728
1729KERNEL AUTOMOUNTER v4 (AUTOFS4)
1730P: Ian Kent
1731M: raven@themaw.net
1732L: autofs@linux.kernel.org
1733S: Maintained
1734
1735KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1736P: Kai Germaschewski
1737M: kai@germaschewski.name
1738P: Sam Ravnborg
1739M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001740T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741S: Maintained
1742
1743KERNEL JANITORS
1744P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001745L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747S: Maintained
1748
1749KERNEL NFSD
1750P: Neil Brown
1751M: neilb@cse.unsw.edu.au
1752L: nfs@lists.sourceforge.net
1753W: http://nfs.sourceforge.net/
1754W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1755S: Maintained
1756
Avi Kivity426d62e2006-12-13 00:34:03 -08001757KERNEL VIRTUAL MACHINE (KVM)
1758P: Avi Kivity
1759M: avi@qumranet.com
1760L: kvm-devel@lists.sourceforge.net
1761W: kvm.sourceforge.net
1762S: Supported
1763
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001764KEXEC
1765P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001766M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001767W: http://www.xmission.com/~ebiederm/files/kexec/
1768L: linux-kernel@vger.kernel.org
1769L: fastboot@osdl.org
1770S: Maintained
1771
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001772KPROBES
1773P: Prasanna S Panchamukhi
1774M: prasanna@in.ibm.com
1775P: Ananth N Mavinakayanahalli
1776M: ananth@in.ibm.com
1777P: Anil S Keshavamurthy
1778M: anil.s.keshavamurthy@intel.com
1779P: David S. Miller
1780M: davem@davemloft.net
1781L: linux-kernel@vger.kernel.org
1782S: Maintained
1783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001786S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788LASI 53c700 driver for PARISC
1789P: James E.J. Bottomley
1790M: James.Bottomley@HansenPartnership.com
1791L: linux-scsi@vger.kernel.org
1792S: Maintained
1793
Richard Purdie263de9b2006-05-15 09:44:16 -07001794LED SUBSYSTEM
1795P: Richard Purdie
1796M: rpurdie@rpsys.net
1797S: Maintained
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799LEGO USB Tower driver
1800P: Juergen Stuber
1801M: starblue@users.sourceforge.net
1802L: legousb-devel@lists.sourceforge.net
1803W: http://legousb.sourceforge.net/
1804S: Maintained
1805
1806LINUX FOR IBM pSERIES (RS/6000)
1807P: Paul Mackerras
1808M: paulus@au.ibm.com
1809W: http://www.ibm.com/linux/ltc/projects/ppc
1810S: Supported
1811
1812LINUX FOR NCR VOYAGER
1813P: James Bottomley
1814M: James.Bottomley@HansenPartnership.com
1815W: http://www.hansenpartnership.com/voyager
1816S: Maintained
1817
1818LINUX FOR POWERPC
1819P: Paul Mackerras
1820M: paulus@samba.org
1821W: http://www.penguinppc.org/
1822L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001823T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824S: Supported
1825
1826LINUX FOR POWER MACINTOSH
1827P: Benjamin Herrenschmidt
1828M: benh@kernel.crashing.org
1829W: http://www.penguinppc.org/
1830L: linuxppc-dev@ozlabs.org
1831S: Maintained
1832
1833LINUX FOR POWERPC EMBEDDED MPC52XX
1834P: Sylvain Munaut
1835M: tnt@246tNt.com
1836W: http://www.246tNt.com/mpc52xx/
1837W: http://www.penguinppc.org/
1838L: linuxppc-dev@ozlabs.org
1839L: linuxppc-embedded@ozlabs.org
1840S: Maintained
1841
1842LINUX FOR POWERPC EMBEDDED PPC4XX
1843P: Matt Porter
1844M: mporter@kernel.crashing.org
1845W: http://www.penguinppc.org/
1846L: linuxppc-embedded@ozlabs.org
1847S: Maintained
1848
Tom Rinie93adf12005-07-26 12:49:53 -07001849LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850P: Tom Rini
1851M: trini@kernel.crashing.org
1852W: http://www.penguinppc.org/
1853L: linuxppc-embedded@ozlabs.org
1854S: Maintained
1855
Tom Rinie93adf12005-07-26 12:49:53 -07001856LINUX FOR POWERPC EMBEDDED PPC8XX
1857P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001858M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001859W: http://www.penguinppc.org/
1860L: linuxppc-embedded@ozlabs.org
1861S: Maintained
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01001864P: Kumar Gala
1865M: galak@kernel.crashing.org
1866W: http://www.penguinppc.org/
1867L: linuxppc-embedded@ozlabs.org
1868S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Olof Johanssonab06ff32006-09-06 14:44:54 -05001870LINUX FOR POWERPC PA SEMI PWRFICIENT
1871P: Olof Johansson
1872M: olof@lixom.net
1873W: http://www.pasemi.com/
1874L: linuxppc-dev@ozlabs.org
1875S: Supported
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877LLC (802.2)
1878P: Arnaldo Carvalho de Melo
1879M: acme@conectiva.com.br
1880S: Maintained
1881
1882LINUX FOR 64BIT POWERPC
1883P: Paul Mackerras
1884M: paulus@samba.org
1885M: paulus@au.ibm.com
1886P: Anton Blanchard
1887M: anton@samba.org
1888M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001889W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001890L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891S: Supported
1892
1893LINUX SECURITY MODULE (LSM) FRAMEWORK
1894P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001895M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001896L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001898T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899S: Supported
1900
1901LM83 HARDWARE MONITOR DRIVER
1902P: Jean Delvare
1903M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001904L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905S: Maintained
1906
1907LM90 HARDWARE MONITOR DRIVER
1908P: Jean Delvare
1909M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001910L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911S: Maintained
1912
1913LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1914P: Richard Russon (FlatCap)
1915M: ldm@flatcap.org
1916L: ldm-devel@lists.sourceforge.net
1917W: http://ldm.sourceforge.net
1918S: Maintained
1919
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001920LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1921P: Eric Moore
1922M: Eric.Moore@lsil.com
1923M: support@lsil.com
1924L: mpt_linux_developer@lsil.com
1925L: linux-scsi@vger.kernel.org
1926W: http://www.lsilogic.com/support
1927S: Supported
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1930P: Matthew Wilcox
1931M: matthew@wil.cx
1932L: linux-scsi@vger.kernel.org
1933S: Maintained
1934
1935M68K ARCHITECTURE
1936P: Geert Uytterhoeven
1937M: geert@linux-m68k.org
1938P: Roman Zippel
1939M: zippel@linux-m68k.org
1940L: linux-m68k@lists.linux-m68k.org
1941W: http://www.linux-m68k.org/
1942W: http://linux-m68k-cvs.ubb.ca/
1943S: Maintained
1944
1945M68K ON APPLE MACINTOSH
1946P: Joshua Thompson
1947M: funaho@jurai.org
1948W: http://www.mac.linux-m68k.org/
1949L: linux-mac68k@mac.linux-m68k.org
1950S: Maintained
1951
1952M68K ON HP9000/300
1953P: Philip Blundell
1954M: philb@gnu.org
1955W: http://www.tazenda.demon.co.uk/phil/linux-hp
1956S: Maintained
1957
1958MARVELL YUKON / SYSKONNECT DRIVER
1959P: Mirko Lindner
1960M: mlindner@syskonnect.de
1961P: Ralph Roesler
1962M: rroesler@syskonnect.de
1963W: http://www.syskonnect.com
1964S: Supported
1965
Michael Kerriskfaf16682005-07-31 22:34:47 -07001966MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01001967P: Michael Kerrisk
1968M: mtk-manpages@gmx.net
1969W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1970S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07001971
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001972MARVELL MV643XX ETHERNET DRIVER
1973P: Dale Farnsworth
1974M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001976M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001977L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001978S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980MATROX FRAMEBUFFER DRIVER
1981P: Petr Vandrovec
1982M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001983L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984S: Maintained
1985
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001986MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01001987P: Neela Syam Kolli
1988M: Neela.Kolli@engenio.com
1989S: linux-scsi@vger.kernel.org
1990W: http://megaraid.lsilogic.com
1991S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001992
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001993MEMORY MANAGEMENT
1994L: linux-mm@kvack.org
1995L: linux-kernel@vger.kernel.org
1996W: http://www.linux-mm.org
1997S: Maintained
1998
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001999MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000P: David Woodhouse
2001M: dwmw2@infradead.org
2002W: http://www.linux-mtd.infradead.org/
2003L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002004T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005S: Maintained
2006
2007MICROTEK X6 SCANNER
2008P: Oliver Neukum
2009M: oliver@neukum.name
2010S: Maintained
2011
2012MIPS
2013P: Ralf Baechle
2014M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002015W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002017T: git www.linux-mips.org:/pub/scm/linux.git
2018S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020MISCELLANEOUS MCA-SUPPORT
2021P: James Bottomley
2022M: jejb@steeleye.com
2023L: linux-kernel@vger.kernel.org
2024S: Maintained
2025
2026MODULE SUPPORT
2027P: Rusty Russell
2028M: rusty@rustcorp.com.au
2029L: linux-kernel@vger.kernel.org
2030S: Maintained
2031
2032MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2033P: Stelian Pop
2034M: stelian@popies.net
2035W: http://popies.net/meye/
2036S: Maintained
2037
2038MOUSE AND MISC DEVICES [GENERAL]
2039P: Alessandro Rubini
2040M: rubini@ipvvis.unipv.it
2041L: linux-kernel@vger.kernel.org
2042S: Maintained
2043
Jiri Slabyd7354102006-12-08 02:38:35 -08002044MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2045P: Jiri Slaby
2046M: jirislaby@gmail.com
2047L: linux-kernel@vger.kernel.org
2048S: Maintained
2049
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002050MSI LAPTOP SUPPORT
2051P: Lennart Poettering
2052M: mzxreary@0pointer.de
2053L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2054W: http://0pointer.de/lennart/tchibo.html
2055S: Maintained
2056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057MTRR AND SIMILAR SUPPORT [i386]
2058P: Richard Gooch
2059M: rgooch@atnf.csiro.au
2060L: linux-kernel@vger.kernel.org
2061W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2062S: Maintained
2063
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002064MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2065P: Pierre Ossman
2066M: drzeus-mmc@drzeus.cx
2067L: linux-kernel@vger.kernel.org
2068S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070MULTISOUND SOUND DRIVER
2071P: Andrew Veliath
2072M: andrewtv@usa.net
2073S: Maintained
2074
Jiri Slabyd7354102006-12-08 02:38:35 -08002075MULTITECH MULTIPORT CARD (ISICOM)
2076P: Jiri Slaby
2077M: jirislaby@gmail.com
2078L: linux-kernel@vger.kernel.org
2079S: Maintained
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081NATSEMI ETHERNET DRIVER (DP8381x)
2082P: Tim Hockin
2083M: thockin@hockin.org
2084S: Maintained
2085
2086NCP FILESYSTEM
2087P: Petr Vandrovec
2088M: vandrove@vc.cvut.cz
2089L: linware@sh.cvut.cz
2090S: Maintained
2091
2092NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2093P: James E.J. Bottomley
2094M: James.Bottomley@HansenPartnership.com
2095L: linux-scsi@vger.kernel.org
2096S: Maintained
2097
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002098NETEM NETWORK EMULATOR
2099P: Stephen Hemminger
2100M: shemminger@osdl.org
2101L: netem@osdl.org
2102S: Maintained
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104NETFILTER/IPTABLES/IPCHAINS
2105P: Rusty Russell
2106P: Marc Boucher
2107P: James Morris
2108P: Harald Welte
2109P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002110P: Patrick McHardy
2111M: kaber@trash.net
2112L: netfilter-devel@lists.netfilter.org
2113L: netfilter@lists.netfilter.org
2114L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115W: http://www.netfilter.org/
2116W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117S: Supported
2118
Paul Moore4cc67732006-09-25 15:57:13 -07002119NETLABEL
2120P: Paul Moore
2121M: paul.moore@hp.com
2122W: http://netlabel.sf.net
2123L: netdev@vger.kernel.org
2124S: Supported
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126NETROM NETWORK LAYER
2127P: Ralf Baechle
2128M: ralf@linux-mips.org
2129L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002130W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131S: Maintained
2132
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002133NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134P: Paul Clements
2135M: Paul.Clements@steeleye.com
2136S: Maintained
2137
2138NETWORK DEVICE DRIVERS
2139P: Andrew Morton
2140M: akpm@osdl.org
2141P: Jeff Garzik
2142M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002143L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002144T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145S: Maintained
2146
2147NETWORKING [GENERAL]
2148P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002149M: netdev@vger.kernel.org
2150L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002151W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152S: Maintained
2153
2154NETWORKING [IPv4/IPv6]
2155P: David S. Miller
2156M: davem@davemloft.net
2157P: Alexey Kuznetsov
2158M: kuznet@ms2.inr.ac.ru
2159P: Pekka Savola (ipv6)
2160M: pekkas@netcore.fi
2161P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002162M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163P: Hideaki YOSHIFUJI
2164M: yoshfuji@linux-ipv6.org
2165P: Patrick McHardy
2166M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002167L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002168T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169S: Maintained
2170
John W. Linville29f8f632006-01-18 14:52:48 -08002171NETWORKING [WIRELESS]
2172P: John W. Linville
2173M: linville@tuxdriver.com
2174L: netdev@vger.kernel.org
2175T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2176S: Maintained
2177
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002178NETXEN (1/10) GbE SUPPORT
2179P: Amit S. Kale
2180M: amitkale@netxen.com
2181L: netdev@vger.kernel.org
2182W: http://www.netxen.com
2183S: Supported
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185IPVS
2186P: Wensong Zhang
2187M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002188P: Simon Horman
2189M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190P: Julian Anastasov
2191M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002192L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193S: Maintained
2194
2195NFS CLIENT
2196P: Trond Myklebust
2197M: trond.myklebust@fys.uio.no
2198L: linux-kernel@vger.kernel.org
2199S: Maintained
2200
2201NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002202P: Jan-Pascal van Best
2203M: janpascal@vanbest.org
2204P: Andreas Mohr
2205M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002206L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207S: Maintained
2208
2209NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2210P: YOKOTA Hiroshi
2211M: yokota@netlab.is.tsukuba.ac.jp
2212W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2213S: Maintained
2214
2215NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2216P: GOTO Masanori
2217M: gotom@debian.or.jp
2218P: YOKOTA Hiroshi
2219M: yokota@netlab.is.tsukuba.ac.jp
2220W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2221S: Maintained
2222
2223NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2224P: Eberhard Moenkeberg
2225M: emoenke@gwdg.de
2226L: linux-kernel@vger.kernel.org
2227S: Maintained
2228
2229NTFS FILESYSTEM
2230P: Anton Altaparmakov
2231M: aia21@cantab.net
2232L: linux-ntfs-dev@lists.sourceforge.net
2233L: linux-kernel@vger.kernel.org
2234W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002235T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236S: Maintained
2237
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002238NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002239P: Antonino Daplas
2240M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002241L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002242S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002244OPENCORES I2C BUS DRIVER
2245P: Peter Korsgaard
2246M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002247L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002248S: Maintained
2249
Mark Fashehccd979b2005-12-15 14:31:24 -08002250ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2251P: Mark Fasheh
2252M: mark.fasheh@oracle.com
2253P: Kurt Hackel
2254M: kurt.hackel@oracle.com
2255L: ocfs2-devel@oss.oracle.com
2256W: http://oss.oracle.com/projects/ocfs2/
2257S: Supported
2258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259OLYMPIC NETWORK DRIVER
2260P: Peter De Shrijver
2261M: p2@ace.ulyssis.student.kuleuven.ac.be
2262P: Mike Phillips
2263M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002264L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265L: linux-tr@linuxtr.net
2266W: http://www.linuxtr.net
2267S: Maintained
2268
Harald Weltec1986ee2005-11-13 16:06:29 -08002269OMNIKEY CARDMAN 4000 DRIVER
2270P: Harald Welte
2271M: laforge@gnumonks.org
2272S: Maintained
2273
Harald Welte77c44ab2005-11-13 16:06:26 -08002274OMNIKEY CARDMAN 4040 DRIVER
2275P: Harald Welte
2276M: laforge@gnumonks.org
2277S: Maintained
2278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279ONSTREAM SCSI TAPE DRIVER
2280P: Willem Riede
2281M: osst@riede.org
2282L: osst-users@lists.sourceforge.net
2283L: linux-scsi@vger.kernel.org
2284S: Maintained
2285
2286OPL3-SA2, SA3, and SAx DRIVER
2287P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002288M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289L: linux-sound@vger.kernel.org
2290S: Maintained
2291
2292OPROFILE
2293P: Philippe Elie
2294M: phil.el@wanadoo.fr
2295L: oprofile-list@lists.sf.net
2296S: Maintained
2297
2298ORINOCO DRIVER
2299P: Pavel Roskin
2300M: proski@gnu.org
2301P: David Gibson
2302M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002303L: orinoco-users@lists.sourceforge.net
2304L: orinoco-devel@lists.sourceforge.net
2305W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306S: Maintained
2307
2308PARALLEL PORT SUPPORT
2309P: Phil Blundell
2310M: philb@gnu.org
2311P: Tim Waugh
2312M: tim@cyberelk.net
2313P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314P: Andrea Arcangeli
2315M: andrea@suse.de
2316L: linux-parport@lists.infradead.org
2317W: http://people.redhat.com/twaugh/parport/
2318S: Maintained
2319
2320PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2321P: Tim Waugh
2322M: tim@cyberelk.net
2323L: linux-parport@lists.infradead.org
2324W: http://www.torque.net/linux-pp.html
2325S: Maintained
2326
2327PARISC ARCHITECTURE
2328P: Matthew Wilcox
2329M: matthew@wil.cx
2330P: Grant Grundler
2331M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002332P: Kyle McMartin
2333M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334L: parisc-linux@parisc-linux.org
2335W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002336T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2337T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338S: Maintained
2339
Jim Cromie1662d322006-10-06 00:43:59 -07002340PC87360 HARDWARE MONITORING DRIVER
2341P: Jim Cromie
2342M: jim.cromie@gmail.com
2343L: lm-sensors@lm-sensors.org
2344S: Maintained
2345
2346PC8736x GPIO DRIVER
2347P: Jim Cromie
2348M: jim.cromie@gmail.com
2349S: Maintained
2350
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002351PCI ERROR RECOVERY
2352P: Linas Vepstas
2353M: linas@austin.ibm.com
2354L: linux-kernel@vger.kernel.org
2355L: linux-pci@atrey.karlin.mff.cuni.cz
2356S: Supported
2357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2359P: Thomas Sailer
2360M: sailer@ife.ee.ethz.ch
2361L: linux-sound@vger.kernel.org
2362W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2363S: Maintained
2364
2365PCI SUBSYSTEM
2366P: Greg Kroah-Hartman
2367M: gregkh@suse.de
2368L: linux-kernel@vger.kernel.org
2369L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002370T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371S: Supported
2372
2373PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002374P: Kristen Carlson Accardi
2375M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376S: Supported
2377
2378PCI HOTPLUG COMPAQ DRIVER
2379P: Greg Kroah-Hartman
2380M: greg@kroah.com
2381S: Maintained
2382
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002383PCIE HOTPLUG DRIVER
2384P: Kristen Carlson Accardi
2385M: kristen.c.accardi@intel.com
2386L: pcihpd-discuss@lists.sourceforge.net
2387S: Maintained
2388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002390P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002391L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002393T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002394S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396PCNET32 NETWORK DRIVER
2397P: Thomas Bogendörfer
2398M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002399L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400S: Maintained
2401
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002402PER-TASK DELAY ACCOUNTING
2403P: Shailabh Nagar
2404M: nagar@watson.ibm.com
2405L: linux-kernel@vger.kernel.org
2406S: Maintained
2407
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002408PERSONALITY HANDLING
2409P: Christoph Hellwig
2410M: hch@infradead.org
2411L: linux-abi-devel@lists.sourceforge.net
2412S: Maintained
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414PHRAM MTD DRIVER
2415P: Jörn Engel
2416M: joern@wh.fh-wedel.de
2417L: linux-mtd@lists.infradead.org
2418S: Maintained
2419
Peter Osterlund249a6772005-09-27 21:45:30 -07002420PKTCDVD DRIVER
2421P: Peter Osterlund
2422M: petero2@telia.com
2423L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002424S: Maintained
2425
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426POSIX CLOCKS and TIMERS
2427P: George Anzinger
2428M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002429L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430S: Supported
2431
Eugene Surovegin24682972005-10-14 03:00:53 -07002432POWERPC 4xx EMAC DRIVER
2433P: Eugene Surovegin
2434M: ebs@ebshome.net
2435W: http://kernel.ebshome.net/emac/
2436L: linuxppc-embedded@ozlabs.org
2437L: netdev@vger.kernel.org
2438S: Maintained
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440PNP SUPPORT
2441P: Adam Belay
2442M: ambx1@neo.rr.com
2443S: Maintained
2444
2445PPP PROTOCOL DRIVERS AND COMPRESSORS
2446P: Paul Mackerras
2447M: paulus@samba.org
2448L: linux-ppp@vger.kernel.org
2449S: Maintained
2450
2451PPP OVER ATM (RFC 2364)
2452P: Mitchell Blank Jr
2453M: mitch@sfgoth.com
2454S: Maintained
2455
2456PPP OVER ETHERNET
2457P: Michal Ostrowski
2458M: mostrows@speakeasy.net
2459S: Maintained
2460
2461PREEMPTIBLE KERNEL
2462P: Robert Love
2463M: rml@tech9.net
2464L: linux-kernel@vger.kernel.org
2465L: kpreempt-tech@lists.sourceforge.net
2466W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2467S: Supported
2468
2469PRISM54 WIRELESS DRIVER
2470P: Prism54 Development Team
2471M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002472L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473W: http://prism54.org
2474S: Maintained
2475
2476PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2477P: Peter Denison
2478M: promise@pnd-pc.demon.co.uk
2479W: http://www.pnd-pc.demon.co.uk/promise/
2480S: Maintained
2481
Geoff Levandf58a9d12006-11-23 00:46:51 +01002482PS3 PLATFORM SUPPORT
2483P: Geoff Levand
2484M: geoffrey.levand@am.sony.com
2485L: linuxppc-dev@ozlabs.org
2486L: cbe-oss-dev@ozlabs.org
2487S: Supported
2488
Michael Krufky83202042006-07-03 00:24:18 -07002489PVRUSB2 VIDEO4LINUX DRIVER
2490P: Mike Isely
2491M: isely@pobox.com
2492L: pvrusb2@isely.net
2493L: video4linux-list@redhat.com
2494W: http://www.isely.net/pvrusb2/
2495S: Maintained
2496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497PXA2xx SUPPORT
2498P: Nicolas Pitre
2499M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002500L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501S: Maintained
2502
2503QLOGIC QLA2XXX FC-SCSI DRIVER
2504P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002505M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506L: linux-scsi@vger.kernel.org
2507S: Supported
2508
Ron Mercer5a4faa872006-07-25 00:40:21 -07002509QLOGIC QLA3XXX NETWORK DRIVER
2510P: Ron Mercer
2511M: linux-driver@qlogic.com
2512L: netdev@vger.kernel.org
2513S: Supported
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515QNX4 FILESYSTEM
2516P: Anders Larsen
2517M: al@alarsen.net
2518L: linux-kernel@vger.kernel.org
2519W: http://www.alarsen.net/linux/qnx4fs/
2520S: Maintained
2521
2522RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002523P: Benjamin Herrenschmidt
2524M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002525L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526S: Maintained
2527
2528RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002529P: Paul Mackerras
2530M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002531L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532S: Maintained
2533
2534RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2535P: Corey Thomas
2536M: corey@world.std.com
2537L: linux-kernel@vger.kernel.org
2538S: Maintained
2539
Matt Mackall9e95ce22005-04-16 15:25:56 -07002540RANDOM NUMBER DRIVER
2541P: Matt Mackall
2542M: mpm@selenic.com
2543S: Maintained
2544
Matt Porter394b7012005-11-07 01:00:15 -08002545RAPIDIO SUBSYSTEM
2546P: Matt Porter
2547M: mporter@kernel.crashing.org
2548L: linux-kernel@vger.kernel.org
2549S: Maintained
2550
Josh Triplett595182b2006-10-04 02:17:21 -07002551READ-COPY UPDATE (RCU)
2552P: Dipankar Sarma
2553M: dipankar@in.ibm.com
2554W: http://www.rdrop.com/users/paulmck/rclock/
2555L: linux-kernel@vger.kernel.org
2556S: Supported
2557
2558RCUTORTURE MODULE
2559P: Josh Triplett
2560M: josh@freedesktop.org
2561L: linux-kernel@vger.kernel.org
2562S: Maintained
2563
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564REAL TIME CLOCK DRIVER
2565P: Paul Gortmaker
2566M: p_gortmaker@yahoo.com
2567L: linux-kernel@vger.kernel.org
2568S: Maintained
2569
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002570REAL TIME CLOCK (RTC) SUBSYSTEM
2571P: Alessandro Zummo
2572M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002573L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002574S: Maintained
2575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576REISERFS FILE SYSTEM
2577P: Hans Reiser
2578M: reiserfs-dev@namesys.com
2579L: reiserfs-list@namesys.com
2580W: http://www.namesys.com
2581S: Supported
2582
2583ROCKETPORT DRIVER
2584P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585W: http://www.comtrol.com
2586S: Maintained
2587
2588ROSE NETWORK LAYER
2589P: Ralf Baechle
2590M: ralf@linux-mips.org
2591L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002592W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593S: Maintained
2594
2595RISCOM8 DRIVER
2596S: Orphan
2597
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002598S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002599P: Antonino Daplas
2600M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002601L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002602S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604S390
2605P: Martin Schwidefsky
2606M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002607P: Heiko Carstens
2608M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609M: linux390@de.ibm.com
2610L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002611W: http://www.ibm.com/developerworks/linux/linux390/
2612S: Supported
2613
2614S390 NETWORK DRIVERS
2615P: Frank Pavlic
2616M: fpavlic@de.ibm.com
2617M: linux390@de.ibm.com
2618L: linux-390@vm.marist.edu
2619W: http://www.ibm.com/developerworks/linux/linux390/
2620S: Supported
2621
2622S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002623P: Swen Schillig
2624M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002625M: linux390@de.ibm.com
2626L: linux-390@vm.marist.edu
2627W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628S: Supported
2629
2630SAA7146 VIDEO4LINUX-2 DRIVER
2631P: Michael Hunold
2632M: michael@mihu.de
2633W: http://www.mihu.de/linux/saa7146
2634S: Maintained
2635
2636SBPCD CDROM DRIVER
2637P: Eberhard Moenkeberg
2638M: emoenke@gwdg.de
2639L: linux-kernel@vger.kernel.org
2640S: Maintained
2641
2642SC1200 WDT DRIVER
2643P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002644M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645S: Maintained
2646
2647SCHEDULER
2648P: Ingo Molnar
2649M: mingo@elte.hu
2650P: Robert Love [the preemptible kernel bits]
2651M: rml@tech9.net
2652L: linux-kernel@vger.kernel.org
2653S: Maintained
2654
2655SCSI CDROM DRIVER
2656P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002657M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658L: linux-scsi@vger.kernel.org
2659W: http://www.kernel.dk
2660S: Maintained
2661
2662SCSI SG DRIVER
2663P: Doug Gilbert
2664M: dgilbert@interlog.com
2665L: linux-scsi@vger.kernel.org
2666W: http://www.torque.net/sg
2667S: Maintained
2668
2669SCSI SUBSYSTEM
2670P: James E.J. Bottomley
2671M: James.Bottomley@SteelEye.com
2672L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002673T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674S: Maintained
2675
2676SCSI TAPE DRIVER
2677P: Kai Mäkisara
2678M: Kai.Makisara@kolumbus.fi
2679L: linux-scsi@vger.kernel.org
2680S: Maintained
2681
2682SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002683P: Sridhar Samudrala
2684M: sri@us.ibm.com
2685L: lksctp-developers@lists.sourceforge.net
2686S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
2688SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002689P: Jim Cromie
2690M: jim.cromie@gmail.com
2691S: Odd Fixes
2692
2693SCx200 GPIO DRIVER
2694P: Jim Cromie
2695M: jim.cromie@gmail.com
2696S: Maintained
2697
2698SCx200 HRT CLOCKSOURCE DRIVER
2699P: Jim Cromie
2700M: jim.cromie@gmail.com
2701S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
2703SECURITY CONTACT
2704P: Security Officers
2705M: security@kernel.org
2706S: Supported
2707
2708SELINUX SECURITY MODULE
2709P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002710M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002712M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713L: linux-kernel@vger.kernel.org (kernel issues)
2714L: selinux@tycho.nsa.gov (general discussion)
2715W: http://www.nsa.gov/selinux
2716S: Supported
2717
2718SERIAL ATA (SATA) SUBSYSTEM:
2719P: Jeff Garzik
2720M: jgarzik@pobox.com
2721L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002722T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723S: Supported
2724
2725SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2726P: Pat Gefre
2727M: pfg@sgi.com
2728L: linux-ia64@vger.kernel.org
2729S: Supported
2730
2731SGI VISUAL WORKSTATION 320 AND 540
2732P: Andrey Panin
2733M: pazke@donpac.ru
2734L: linux-visws-devel@lists.sf.net
2735W: http://linux-visws.sf.net
2736S: Maintained for 2.6.
2737
2738SIMTEC EB110ATX (Chalice CATS)
2739P: Ben Dooks
2740P: Vincent Sanders
2741M: support@simtec.co.uk
2742W: http://www.simtec.co.uk/products/EB110ATX/
2743S: Supported
2744
2745SIMTEC EB2410ITX (BAST)
2746P: Ben Dooks
2747P: Vincent Sanders
2748M: support@simtec.co.uk
2749W: http://www.simtec.co.uk/products/EB2410ITX/
2750S: Supported
2751
Francois Romieu92aab3c2005-07-30 13:11:18 +02002752SIS 190 ETHERNET DRIVER
2753P: Francois Romieu
2754M: romieu@fr.zoreil.com
2755L: netdev@vger.kernel.org
2756S: Maintained
2757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758SIS 5513 IDE CONTROLLER DRIVER
2759P: Lionel Bouton
2760M: Lionel.Bouton@inet6.fr
2761W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2762W: http://gyver.homeip.net/sis5513/index.html
2763S: Maintained
2764
2765SIS 900/7016 FAST ETHERNET DRIVER
2766P: Daniele Venzano
2767M: venza@brownhat.org
2768W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002769L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770S: Maintained
2771
2772SIS FRAMEBUFFER DRIVER
2773P: Thomas Winischhofer
2774M: thomas@winischhofer.net
2775W: http://www.winischhofer.net/linuxsisvga.shtml
2776S: Maintained
2777
2778SIS USB2VGA DRIVER
2779P: Thomas Winischhofer
2780M: thomas@winischhofer.net
2781W: http://www.winischhofer.at/linuxsisusbvga.shtml
2782S: Maintained
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784SMC91x ETHERNET DRIVER
2785P: Nicolas Pitre
2786M: nico@cam.org
2787S: Maintained
2788
Daniel Drake8f0f8502006-07-18 22:00:25 +01002789SOFTMAC LAYER (IEEE 802.11)
2790P: Johannes Berg
2791M: johannes@sipsolutions.net
2792P: Joe Jezak
2793M: josejx@gentoo.org
2794P: Daniel Drake
2795M: dsd@gentoo.org
2796W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002797L: netdev@vger.kernel.org
2798S: Maintained
2799
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800SOFTWARE RAID (Multiple Disks) SUPPORT
2801P: Ingo Molnar
2802M: mingo@redhat.com
2803P: Neil Brown
2804M: neilb@cse.unsw.edu.au
2805L: linux-raid@vger.kernel.org
2806S: Maintained
2807
2808SOFTWARE SUSPEND:
2809P: Pavel Machek
2810M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002811L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812S: Maintained
2813
2814SONIC NETWORK DRIVER
2815P: Thomas Bogendoerfer
2816M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002817L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818S: Maintained
2819
2820SONY VAIO CONTROL DEVICE DRIVER
2821P: Stelian Pop
2822M: stelian@popies.net
2823W: http://popies.net/sonypi/
2824S: Maintained
2825
2826SOUND
2827P: Jaroslav Kysela
2828M: perex@suse.cz
2829L: alsa-devel@alsa-project.org
2830S: Maintained
2831
Kumar Gala025c3982006-04-02 16:05:54 -05002832SPI SUBSYSTEM
2833P: David Brownell
2834M: dbrownell@users.sourceforge.net
2835L: spi-devel-general@lists.sourceforge.net
2836S: Maintained
2837
Steven Rostedt855f46a2006-08-05 12:14:50 -07002838STABLE BRANCH:
2839P: Greg Kroah-Hartman
2840M: greg@kroah.com
2841P: Chris Wright
2842M: chrisw@sous-sol.org
2843L: stable@kernel.org
2844S: Maintained
2845
Kylene Hall1c72d462005-05-01 08:59:13 -07002846TPM DEVICE DRIVER
2847P: Kylene Hall
2848M: kjhall@us.ibm.com
2849W: http://tpmdd.sourceforge.net
2850L: tpmdd-devel@lists.sourceforge.net
2851S: Maintained
2852
Mark Gross1a80ba82005-10-30 15:02:55 -08002853Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002854P: Mark Gross
2855M: mark.gross@intel.com
2856S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08002857
Chris Zankel48b415c2005-06-23 22:01:07 -07002858TENSILICA XTENSA PORT (xtensa):
2859P: Chris Zankel
2860M: chris@zankel.net
2861S: Maintained
2862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863UltraSPARC (sparc64):
2864P: David S. Miller
2865M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002867T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868S: Maintained
2869
2870SHARP LH SUPPORT (LH7952X & LH7A40X)
2871P: Marc Singer
2872M: elf@buici.com
2873W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002874L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875S: Maintained
2876
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002877SHPC HOTPLUG DRIVER
2878P: Kristen Carlson Accardi
2879M: kristen.c.accardi@intel.com
2880L: pcihpd-discuss@lists.sourceforge.net
2881S: Maintained
2882
Pierre Ossmand129bce2006-03-24 03:18:17 -08002883SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2884P: Pierre Ossman
2885M: drzeus-sdhci@drzeus.cx
2886L: sdhci-devel@list.drzeus.cx
2887W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2888S: Maintained
2889
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002890SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2891P: Stephen Hemminger
2892M: shemminger@osdl.org
2893L: netdev@vger.kernel.org
2894S: Maintained
2895
Chris Boot1a87d942006-07-10 04:45:34 -07002896SOEKRIS NET48XX LED SUPPORT
2897P: Chris Boot
2898M: bootc@bootc.net
2899S: Maintained
2900
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901SPARC (sparc32):
2902P: William L. Irwin
2903M: wli@holomorphy.com
2904L: sparclinux@vger.kernel.org
2905S: Maintained
2906
2907SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2908P: Roger Wolff
2909M: R.E.Wolff@BitWizard.nl
2910L: linux-kernel@vger.kernel.org ?
2911S: Supported
2912
Jim Lewis2752e402006-09-29 02:01:19 -07002913SPIDERNET NETWORK DRIVER for CELL
2914P: Jim Lewis
2915M: jim@jklewis.com
2916L: netdev@vger.kernel.org
2917S: Supported
2918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919SRM (Alpha) environment access
2920P: Jan-Benedict Glaw
2921M: jbglaw@lug-owl.de
2922L: linux-kernel@vger.kernel.org
2923S: Maintained
2924
2925STARFIRE/DURALAN NETWORK DRIVER
2926P: Ion Badulescu
2927M: ionut@cs.columbia.edu
2928S: Maintained
2929
2930STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2931W: http://mosquitonet.Stanford.EDU/strip.html
2932S: Unsupported ?
2933
2934STRADIS MPEG-2 DECODER DRIVER
2935P: Nathan Laredo
2936M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937W: http://www.stradis.com/
2938S: Maintained
2939
2940SUPERH (sh)
2941P: Paul Mundt
2942M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002943L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945S: Maintained
2946
2947SUPERH64 (sh64)
2948P: Paul Mundt
2949M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950L: linuxsh-shmedia-dev@lists.sourceforge.net
2951W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952S: Maintained
2953
2954SUN3/3X
2955P: Sam Creasey
2956M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957W: http://sammy.net/sun3/
2958S: Maintained
2959
2960SVGA HANDLING
2961P: Martin Mares
2962M: mj@ucw.cz
2963L: linux-video@atrey.karlin.mff.cuni.cz
2964S: Maintained
2965
2966SYSV FILESYSTEM
2967P: Christoph Hellwig
2968M: hch@infradead.org
2969S: Maintained
2970
Stephen Hemminger781b456a2006-07-10 20:25:29 -07002971TC CLASSIFIER
2972P: Jamal Hadi Salim
2973M: hadi@cyberus.ca
2974L: netdev@vger.kernel.org
2975S: Maintained
2976
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002977TCP LOW PRIORITY MODULE
2978P: Wong Hoi Sing, Edison
2979M: hswong3i@gmail.com
2980P: Hung Hing Lun, Mike
2981M: hlhung3i@gmail.com
2982W: http://tcp-lp-mod.sourceforge.net/
2983S: Maintained
2984
Alex Dubov4020f2d2006-10-04 02:15:37 -07002985TI FLASH MEDIA INTERFACE DRIVER
2986P: Alex Dubov
2987M: oakad@yahoo.com
2988S: Maintained
2989
Michael Buesch844dd052006-06-26 00:24:59 -07002990TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2991P: Deepak Saxena
2992M: dsaxena@plexity.net
2993S: Maintained
2994
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002995TASKSTATS STATISTICS INTERFACE
2996P: Shailabh Nagar
2997M: nagar@watson.ibm.com
2998L: linux-kernel@vger.kernel.org
2999S: Maintained
3000
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003002P: Romain Lievin
3003M: roms@lpg.ticalc.org
3004S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Per Lidene86eaa32006-01-12 16:45:18 +01003006TIPC NETWORK LAYER
3007P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003008M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003009P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003010M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003011P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003012M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003013L: tipc-discussion@lists.sourceforge.net
3014W: http://tipc.sourceforge.net/
3015W: http://tipc.cslab.ericsson.net/
3016T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3017S: Maintained
3018
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019TLAN NETWORK DRIVER
3020P: Samuel Chessman
3021M: chessman@tux.org
3022L: tlan-devel@lists.sourceforge.net
3023W: http://sourceforge.net/projects/tlan/
3024S: Maintained
3025
3026TOKEN-RING NETWORK DRIVER
3027P: Mike Phillips
3028M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003029L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030L: linux-tr@linuxtr.net
3031W: http://www.linuxtr.net
3032S: Maintained
3033
3034TOSHIBA ACPI EXTRAS DRIVER
3035P: John Belmonte
3036M: toshiba_acpi@memebeam.org
3037W: http://memebeam.org/toys/ToshibaAcpiDriver
3038S: Maintained
3039
3040TOSHIBA SMM DRIVER
3041P: Jonathan Buzzard
3042M: jonathan@buzzard.org.uk
3043L: tlinux-users@tce.toshiba-dme.co.jp
3044W: http://www.buzzard.org.uk/toshiba/
3045S: Maintained
3046
3047TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3048P: Muli Ben-Yehuda
3049M: mulix@mulix.org
3050L: linux-kernel@vger.kernel.org
3051S: Maintained
3052
3053TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003054P: Adrian Bunk
3055M: trivial@kernel.org
3056L: linux-kernel@vger.kernel.org
3057W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3058T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3059S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
3061TMS380 TOKEN-RING NETWORK DRIVER
3062P: Adam Fritzler
3063M: mid@auk.cx
3064L: linux-tr@linuxtr.net
3065W: http://www.auk.cx/tms380tr/
3066S: Maintained
3067
3068TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003069P: Valerie Henson
3070M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071L: tulip-users@lists.sourceforge.net
3072W: http://sourceforge.net/projects/tulip/
3073S: Maintained
3074
3075TUN/TAP driver
3076P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003077M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078L: vtun@office.satix.net
3079W: http://vtun.sourceforge.net/tun
3080S: Maintained
3081
3082U14-34F SCSI DRIVER
3083P: Dario Ballabio
3084M: ballabio_dario@emc.com
3085L: linux-scsi@vger.kernel.org
3086S: Maintained
3087
3088UDF FILESYSTEM
3089P: Ben Fennema
3090M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091W: http://linux-udf.sourceforge.net
3092S: Maintained
3093
3094UNIFORM CDROM DRIVER
3095P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003096M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097L: linux-kernel@vger.kernel.org
3098W: http://www.kernel.dk
3099S: Maintained
3100
3101USB ACM DRIVER
3102P: Oliver Neukum
3103M: oliver@neukum.name
3104L: linux-usb-users@lists.sourceforge.net
3105L: linux-usb-devel@lists.sourceforge.net
3106S: Maintained
3107
3108USB BLOCK DRIVER (UB ub)
3109P: Pete Zaitcev
3110M: zaitcev@redhat.com
3111L: linux-kernel@vger.kernel.org
3112L: linux-usb-devel@lists.sourceforge.net
3113S: Supported
3114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115USB CDC ETHERNET DRIVER
3116P: Greg Kroah-Hartman
3117M: greg@kroah.com
3118L: linux-usb-users@lists.sourceforge.net
3119L: linux-usb-devel@lists.sourceforge.net
3120S: Maintained
3121W: http://www.kroah.com/linux-usb/
3122
3123USB EHCI DRIVER
3124P: David Brownell
3125M: dbrownell@users.sourceforge.net
3126L: linux-usb-devel@lists.sourceforge.net
3127S: Maintained
3128
Luca Risolia7ce08c92006-01-11 02:06:59 +00003129USB ET61X[12]51 DRIVER
3130P: Luca Risolia
3131M: luca.risolia@studio.unibo.it
3132L: linux-usb-devel@lists.sourceforge.net
3133L: video4linux-list@redhat.com
3134W: http://www.linux-projects.org
3135S: Maintained
3136
David Brownell69ae9e32006-11-14 02:03:31 -08003137USB GADGET/PERIPHERAL SUBSYSTEM
3138P: David Brownell
3139M: dbrownell@users.sourceforge.net
3140L: linux-usb-devel@lists.sourceforge.net
3141W: http://www.linux-usb.org/gadget
3142S: Maintained
3143
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144USB HID/HIDBP DRIVERS
3145P: Vojtech Pavlik
3146M: vojtech@suse.cz
3147L: linux-usb-users@lists.sourceforge.net
3148L: linux-usb-devel@lists.sourceforge.net
3149S: Maintained
3150
3151USB HUB DRIVER
3152P: Johannes Erdfelt
3153M: johannes@erdfelt.com
3154L: linux-usb-users@lists.sourceforge.net
3155L: linux-usb-devel@lists.sourceforge.net
3156S: Maintained
3157
Olav Kongas959eea22005-11-03 17:38:14 +02003158USB ISP116X DRIVER
3159P: Olav Kongas
3160M: ok@artecdesign.ee
3161L: linux-usb-devel@lists.sourceforge.net
3162S: Maintained
3163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164USB KAWASAKI LSI DRIVER
3165P: Oliver Neukum
3166M: oliver@neukum.name
3167L: linux-usb-users@lists.sourceforge.net
3168L: linux-usb-devel@lists.sourceforge.net
3169S: Maintained
3170
3171USB MASS STORAGE DRIVER
3172P: Matthew Dharm
3173M: mdharm-usb@one-eyed-alien.net
3174L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003175L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176S: Maintained
3177W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3178
3179USB OHCI DRIVER
3180P: Roman Weissgaerber
3181M: weissg@vienna.at
3182L: linux-usb-users@lists.sourceforge.net
3183L: linux-usb-devel@lists.sourceforge.net
3184S: Maintained
3185
Matthias Urlichsba460e42005-07-14 00:33:47 -07003186USB OPTION-CARD DRIVER
3187P: Matthias Urlichs
3188M: smurf@smurf.noris.de
3189L: linux-usb-devel@lists.sourceforge.net
3190S: Maintained
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192USB OV511 DRIVER
3193P: Mark McClelland
3194M: mmcclell@bigfoot.com
3195L: linux-usb-users@lists.sourceforge.net
3196L: linux-usb-devel@lists.sourceforge.net
3197W: http://alpha.dyndns.org/ov511/
3198S: Maintained
3199
3200USB PEGASUS DRIVER
3201P: Petko Manolov
3202M: petkan@users.sourceforge.net
3203L: linux-usb-users@lists.sourceforge.net
3204L: linux-usb-devel@lists.sourceforge.net
3205W: http://pegasus2.sourceforge.net/
3206S: Maintained
3207
3208USB PRINTER DRIVER
3209P: Vojtech Pavlik
3210M: vojtech@suse.cz
3211L: linux-usb-users@lists.sourceforge.net
3212L: linux-usb-devel@lists.sourceforge.net
3213S: Maintained
3214
3215USB RTL8150 DRIVER
3216P: Petko Manolov
3217M: petkan@users.sourceforge.net
3218L: linux-usb-users@lists.sourceforge.net
3219L: linux-usb-devel@lists.sourceforge.net
3220W: http://pegasus2.sourceforge.net/
3221S: Maintained
3222
3223USB SE401 DRIVER
3224P: Jeroen Vreeken
3225M: pe1rxq@amsat.org
3226L: linux-usb-users@lists.sourceforge.net
3227L: linux-usb-devel@lists.sourceforge.net
3228W: http://www.chello.nl/~j.vreeken/se401/
3229S: Maintained
3230
3231USB SERIAL CYBERJACK DRIVER
3232P: Matthias Bruestle and Harald Welte
3233M: support@reiner-sct.com
3234W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3235S: Maintained
3236
3237USB SERIAL DIGI ACCELEPORT DRIVER
3238P: Peter Berger and Al Borchers
3239M: pberger@brimson.com
3240M: alborchers@steinerpoint.com
3241L: linux-usb-users@lists.sourceforge.net
3242L: linux-usb-devel@lists.sourceforge.net
3243S: Maintained
3244
3245USB SERIAL DRIVER
3246P: Greg Kroah-Hartman
3247M: gregkh@suse.de
3248L: linux-usb-users@lists.sourceforge.net
3249L: linux-usb-devel@lists.sourceforge.net
3250S: Supported
3251
3252USB SERIAL BELKIN F5U103 DRIVER
3253P: William Greathouse
3254M: wgreathouse@smva.com
3255L: linux-usb-users@lists.sourceforge.net
3256L: linux-usb-devel@lists.sourceforge.net
3257S: Maintained
3258
3259USB SERIAL CYPRESS M8 DRIVER
3260P: Lonnie Mendez
3261M: dignome@gmail.com
3262L: linux-usb-users@lists.sourceforge.net
3263L: linux-usb-devel@lists.sourceforge.net
3264S: Maintained
3265W: http://geocities.com/i0xox0i
3266W: http://firstlight.net/cvs
3267
3268USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3269L: linux-usb-users@lists.sourceforge.net
3270L: linux-usb-devel@lists.sourceforge.net
3271S: Maintained
3272
3273USB AUERSWALD DRIVER
3274P: Wolfgang Muees
3275M: wolfgang@iksw-muees.de
3276L: linux-usb-users@lists.sourceforge.net
3277L: linux-usb-devel@lists.sourceforge.net
3278S: Maintained
3279
3280USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3281P: Gary Brubaker
3282M: xavyer@ix.netcom.com
3283L: linux-usb-users@lists.sourceforge.net
3284L: linux-usb-devel@lists.sourceforge.net
3285S: Maintained
3286
3287USB SERIAL KEYSPAN DRIVER
3288P: Greg Kroah-Hartman
3289M: greg@kroah.com
3290L: linux-usb-users@lists.sourceforge.net
3291L: linux-usb-devel@lists.sourceforge.net
3292W: http://www.kroah.com/linux/
3293S: Maintained
3294
3295USB SERIAL WHITEHEAT DRIVER
3296P: Stuart MacDonald
3297M: stuartm@connecttech.com
3298L: linux-usb-users@lists.sourceforge.net
3299L: linux-usb-devel@lists.sourceforge.net
3300W: http://www.connecttech.com
3301S: Supported
3302
3303USB SN9C10x DRIVER
3304P: Luca Risolia
3305M: luca.risolia@studio.unibo.it
3306L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003307L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308W: http://www.linux-projects.org
3309S: Maintained
3310
3311USB SUBSYSTEM
3312P: Greg Kroah-Hartman
3313M: gregkh@suse.de
3314L: linux-usb-users@lists.sourceforge.net
3315L: linux-usb-devel@lists.sourceforge.net
3316W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003317T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318S: Supported
3319
3320USB UHCI DRIVER
3321P: Alan Stern
3322M: stern@rowland.harvard.edu
3323L: linux-usb-users@lists.sourceforge.net
3324L: linux-usb-devel@lists.sourceforge.net
3325S: Maintained
3326
David Brownell69ae9e32006-11-14 02:03:31 -08003327USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328P: David Brownell
3329M: dbrownell@users.sourceforge.net
3330L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003331W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332S: Maintained
3333
3334USB W996[87]CF DRIVER
3335P: Luca Risolia
3336M: luca.risolia@studio.unibo.it
3337L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003338L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339W: http://www.linux-projects.org
3340S: Maintained
3341
Luca Risolia60f78052006-02-06 16:29:35 +00003342USB ZC0301 DRIVER
3343P: Luca Risolia
3344M: luca.risolia@studio.unibo.it
3345L: linux-usb-devel@lists.sourceforge.net
3346L: video4linux-list@redhat.com
3347W: http://www.linux-projects.org
3348S: Maintained
3349
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350USB ZD1201 DRIVER
3351P: Jeroen Vreeken
3352M: pe1rxq@amsat.org
3353L: linux-usb-users@lists.sourceforge.net
3354L: linux-usb-devel@lists.sourceforge.net
3355W: http://linux-lc100020.sourceforge.net
3356S: Maintained
3357
3358USER-MODE LINUX
3359P: Jeff Dike
3360M: jdike@karaya.com
3361L: user-mode-linux-devel@lists.sourceforge.net
3362L: user-mode-linux-user@lists.sourceforge.net
3363W: http://user-mode-linux.sourceforge.net
3364S: Maintained
3365
3366FAT/VFAT/MSDOS FILESYSTEM:
3367P: OGAWA Hirofumi
3368M: hirofumi@mail.parknet.co.jp
3369L: linux-kernel@vger.kernel.org
3370S: Maintained
3371
3372VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3373P: Jeff Garzik
3374S: Odd fixes
3375
3376VIA RHINE NETWORK DRIVER
3377P: Roger Luethi
3378M: rl@hellgate.ch
3379S: Maintained
3380
Jean Delvare32c0a522005-09-22 21:47:58 +02003381VIAPRO SMBUS DRIVER
3382P: Jean Delvare
3383M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003384L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003385S: Maintained
3386
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387UCLINUX (AND M68KNOMMU)
3388P: Greg Ungerer
3389M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003391L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392S: Maintained
3393
3394UCLINUX FOR NEC V850
3395P: Miles Bader
3396M: uclinux-v850@lsi.nec.co.jp
3397W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3398W: http://www.ee.nec.de/uclinux/
3399S: Supported
3400
3401UCLINUX FOR RENESAS H8/300
3402P: Yoshinori Sato
3403M: ysato@users.sourceforge.jp
3404W: http://uclinux-h8.sourceforge.jp/
3405S: Supported
3406
3407USB DIAMOND RIO500 DRIVER
3408P: Cesar Miquel
3409M: miquel@df.uba.ar
3410L: rio500-users@lists.sourceforge.net
3411W: http://rio500.sourceforge.net
3412S: Maintained
3413
3414VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003415P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003416M: mchehab@infradead.org
3417M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003419W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003420T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003421S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422
Juerg Haefligerab413192006-09-24 20:54:04 +02003423VT1211 HARDWARE MONITOR DRIVER
3424P: Juerg Haefliger
3425M: juergh@gmail.com
3426L: lm-sensors@lm-sensors.org
3427S: Maintained
3428
Roger Lucas1de9e372005-11-26 20:20:05 +01003429VT8231 HARDWARE MONITOR DRIVER
3430P: Roger Lucas
3431M: roger@planbit.co.uk
3432L: lm-sensors@lm-sensors.org
3433S: Maintained
3434
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435W1 DALLAS'S 1-WIRE BUS
3436P: Evgeniy Polyakov
3437M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438S: Maintained
3439
Charles Spirakis13927072006-07-05 18:05:15 +02003440W83791D HARDWARE MONITORING DRIVER
3441P: Charles Spirakis
3442M: bezaur@gmail.com
3443L: lm-sensors@lm-sensors.org
3444S: Maintained
3445
Rudolf Marek61db0112006-12-12 18:18:30 +01003446W83793 HARDWARE MONITORING DRIVER
3447P: Rudolf Marek
3448M: r.marek@assembler.cz
3449L: lm-sensors@lm-sensors.org
3450S: Maintained
3451
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452W83L51xD SD/MMC CARD INTERFACE DRIVER
3453P: Pierre Ossman
3454M: drzeus-wbsd@drzeus.cx
3455L: wbsd-devel@list.drzeus.cx
3456W: http://projects.drzeus.cx/wbsd
3457S: Maintained
3458
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003459WATCHDOG DEVICE DRIVERS
3460P: Wim Van Sebroeck
3461M: wim@iguana.be
3462T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3463S: Maintained
3464
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3466P: Jean Tourrilhes
3467M: jt@hpl.hp.com
3468W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3469S: Maintained
3470
3471WD7000 SCSI DRIVER
3472P: Miroslav Zagorac
3473M: zaga@fly.cc.fer.hr
3474L: linux-scsi@vger.kernel.org
3475S: Maintained
3476
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003477WISTRON LAPTOP BUTTON DRIVER
3478P: Miloslav Trmac
3479M: mitr@volny.cz
3480S: Maintained
3481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482WL3501 WIRELESS PCMCIA CARD DRIVER
3483P: Arnaldo Carvalho de Melo
3484M: acme@conectiva.com.br
3485W: http://advogato.org/person/acme
3486S: Maintained
3487
3488X.25 NETWORK LAYER
3489P: Henner Eisen
3490M: eis@baty.hanse.de
3491L: linux-x25@vger.kernel.org
3492S: Maintained
3493
3494XFS FILESYSTEM
3495P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003496P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003498L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003500T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501S: Supported
3502
Peter Korsgaard238b8722006-12-06 20:35:17 -08003503XILINX UARTLITE SERIAL DRIVER
3504P: Peter Korsgaard
3505M: jacmet@sunsite.dk
3506L: linux-serial@vger.kernel.org
3507S: Maintained
3508
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509X86 3-LEVEL PAGING (PAE) SUPPORT
3510P: Ingo Molnar
3511M: mingo@redhat.com
3512S: Maintained
3513
3514X86-64 port
3515P: Andi Kleen
3516M: ak@suse.de
3517L: discuss@x86-64.org
3518W: http://www.x86-64.org
3519S: Maintained
3520
3521YAM DRIVER FOR AX.25
3522P: Jean-Paul Roubelat
3523M: jpr@f6fbb.org
3524L: linux-hams@vger.kernel.org
3525S: Maintained
3526
Henkaf64a5e2005-10-12 15:02:56 +02003527YEALINK PHONE DRIVER
3528P: Henk Vergonet
3529M: Henk.Vergonet@gmail.com
3530L: usbb2k-api-dev@nongnu.org
3531S: Maintained
3532
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533Z8530 DRIVER FOR AX.25
3534P: Joerg Reuter
3535M: jreuter@yaina.de
3536W: http://yaina.de/jreuter/
3537W: http://www.qsl.net/dl1bke/
3538L: linux-hams@vger.kernel.org
3539S: Maintained
3540
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003541ZD1211RW WIRELESS DRIVER
3542P: Daniel Drake
3543M: dsd@gentoo.org
3544P: Ulrich Kunitz
3545M: kune@deine-taler.de
3546W: http://zd1211.ath.cx/wiki/DriverRewrite
3547L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3548S: Maintained
3549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550ZF MACHZ WATCHDOG
3551P: Fernando Fuganti
3552M: fuganti@netbank.com.br
3553W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3554S: Maintained
3555
3556ZR36067 VIDEO FOR LINUX DRIVER
3557P: Ronald Bultje
3558M: rbultje@ronald.bitfreak.net
3559L: mjpeg-users@lists.sourceforge.net
3560W: http://mjpeg.sourceforge.net/driver-zoran/
3561S: Maintained
3562
3563ZR36120 VIDEO FOR LINUX DRIVER
3564P: Pauline Middelink
3565M: middelin@polyware.nl
3566W: http://www.polyware.nl/~middelin/En/hobbies.html
3567W: http://www.polyware.nl/~middelin/hobbies.html
3568S: Maintained
3569
3570THE REST
3571P: Linus Torvalds
3572S: Buried alive in reporters