blob: 7f7c7db174cc94b1c21bf23ed606b52291e181d1 [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 Becker62ca3d22006-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
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001400IBM ACPI EXTRAS DRIVER
1401P: Henrique de Moraes Holschuh
1402M: ibm-acpi@hmh.eng.br
1403L: ibm-acpi-devel@lists.sourceforge.net
1404W: http://ibm-acpi.sourceforge.net
1405W: http://thinkwiki.org/wiki/Ibm-acpi
1406T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1407S: Maintained
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001410P: Jes Sorensen
1411M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412L: linux-altix@sgi.com
1413L: linux-ia64@vger.kernel.org
1414W: http://www.sgi.com/altix
1415S: Maintained
1416
1417IBM MCA SCSI SUBSYSTEM DRIVER
1418P: Michael Lang
1419M: langa2@kph.uni-mainz.de
1420W: http://www.uni-mainz.de/~langm000/linux.html
1421S: Maintained
1422
1423IBM Power Linux RAID adapter
1424P: Brian King
1425M: brking@us.ibm.com
1426S: Supported
1427
1428IBM ServeRAID RAID DRIVER
1429P: Jack Hammer
1430P: Dave Jeffery
1431M: ipslinux@adaptec.com
1432W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1433S: Supported
1434
1435IDE DRIVER [GENERAL]
1436P: Bartlomiej Zolnierkiewicz
1437M: B.Zolnierkiewicz@elka.pw.edu.pl
1438L: linux-kernel@vger.kernel.org
1439L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001440T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441S: Maintained
1442
1443IDE/ATAPI CDROM DRIVER
1444P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001445M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446L: linux-kernel@vger.kernel.org
1447W: http://www.kernel.dk
1448S: Maintained
1449
1450IDE/ATAPI FLOPPY DRIVERS
1451P: Paul Bristow
1452M: Paul Bristow <paul@paulbristow.net>
1453W: http://paulbristow.net/linux/idefloppy.html
1454L: linux-kernel@vger.kernel.org
1455S: Maintained
1456
1457IDE/ATAPI TAPE DRIVERS
1458P: Gadi Oxman
1459M: Gadi Oxman <gadio@netvision.net.il>
1460L: linux-kernel@vger.kernel.org
1461S: Maintained
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463IEEE 1394 SUBSYSTEM
1464P: Ben Collins
1465M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001466P: Stefan Richter
1467M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468L: linux1394-devel@lists.sourceforge.net
1469W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001470T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471S: Maintained
1472
Stefan Richter87730d02006-09-16 12:24:00 +02001473IEEE 1394 IPV4 DRIVER (eth1394)
1474P: Stefan Richter
1475M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001477S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479IEEE 1394 PCILYNX DRIVER
1480P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001481M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001482P: Stefan Richter
1483M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001485S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487IEEE 1394 RAW I/O DRIVER
1488P: Ben Collins
1489M: bcollins@debian.org
1490P: Dan Dennedy
1491M: dan@dennedy.org
1492L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001493S: Maintained
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495IMS TWINTURBO FRAMEBUFFER DRIVER
1496P: Paul Mundt
1497M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001498L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499S: Maintained
1500
1501INFINIBAND SUBSYSTEM
1502P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001503M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504P: Sean Hefty
1505M: mshefty@ichips.intel.com
1506P: Hal Rosenstock
1507M: halr@voltaire.com
1508L: openib-general@openib.org
1509W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001510T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511S: Supported
1512
1513INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001514P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001515M: dmitry.torokhov@gmail.com
1516M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517L: linux-input@atrey.karlin.mff.cuni.cz
1518L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001519T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520S: Maintained
1521
Robert Lovec9f04f52005-07-15 12:21:07 -04001522INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001523P: John McCutchan
1524M: ttb@tentacle.dhs.org
1525P: Robert Love
1526M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001527L: linux-kernel@vger.kernel.org
1528S: Maintained
1529
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001530INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001531P: Sylvain Meyer
1532M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001533L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001534S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001537P: Antonino Daplas
1538M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001539L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001540S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1543P: Ingo Molnar
1544M: mingo@redhat.com
1545S: Maintained
1546
1547INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1548P: Jeff Garzik
1549M: jgarzik@pobox.com
1550W: http://sourceforge.net/projects/gkernel/
1551S: Maintained
1552
1553INTEL IA32 MICROCODE UPDATE SUPPORT
1554P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001555M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556S: Maintained
1557
Michael Buesch844dd052006-06-26 00:24:59 -07001558INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1559P: Deepak Saxena
1560M: dsaxena@plexity.net
1561S: Maintained
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563INTEL PRO/100 ETHERNET SUPPORT
1564P: John Ronciak
1565M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566P: Jesse Brandeburg
1567M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001568P: Jeff Kirsher
1569M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001570P: Auke Kok
1571M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572W: http://sourceforge.net/projects/e1000/
1573S: Supported
1574
1575INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1576P: Jeb Cramer
1577M: cramerj@intel.com
1578P: John Ronciak
1579M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001580P: Jesse Brandeburg
1581M: jesse.brandeburg@intel.com
1582P: Jeff Kirsher
1583M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001584P: Auke Kok
1585M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586W: http://sourceforge.net/projects/e1000/
1587S: Supported
1588
1589INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001590P: Jeff Kirsher
1591M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592P: Ayyappan Veeraiyan
1593M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594P: John Ronciak
1595M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001596P: Jesse Brandeburg
1597M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001598P: Auke Kok
1599M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600W: http://sourceforge.net/projects/e1000/
1601S: Supported
1602
James Ketrenos826d2ab2005-11-07 18:56:59 -06001603INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1604P: Yi Zhu
1605M: yi.zhu@intel.com
1606P: James Ketrenos
1607M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001608L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001609L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1610W: http://ipw2100.sourceforge.net
1611S: Supported
1612
1613INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1614P: Yi Zhu
1615M: yi.zhu@intel.com
1616P: James Ketrenos
1617M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001618L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001619L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1620W: http://ipw2200.sourceforge.net
1621S: Supported
1622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623IOC3 DRIVER
1624P: Ralf Baechle
1625M: ralf@linux-mips.org
1626L: linux-mips@linux-mips.org
1627S: Maintained
1628
1629IP MASQUERADING:
1630P: Juanjo Ciarlante
1631M: jjciarla@raiz.uncu.edu.ar
1632S: Maintained
1633
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001634IPATH DRIVER:
1635P: Bryan O'Sullivan
1636M: support@pathscale.com
1637L: openib-general@openib.org
1638S: Supported
1639
Corey Minyard4409ebe2006-04-20 02:43:12 -07001640IPMI SUBSYSTEM
1641P: Corey Minyard
1642M: minyard@acm.org
1643L: openipmi-developer@lists.sourceforge.net
1644W: http://openipmi.sourceforge.net/
1645S: Supported
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647IPX NETWORK LAYER
1648P: Arnaldo Carvalho de Melo
1649M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001650L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651S: Maintained
1652
1653IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001654P: Samuel Ortiz
1655M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001656L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001658S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660ISAPNP
1661P: Jaroslav Kysela
1662M: perex@suse.cz
1663S: Maintained
1664
1665ISDN SUBSYSTEM
1666P: Karsten Keil
1667M: kkeil@suse.de
1668P: Kai Germaschewski
1669M: kai.germaschewski@gmx.de
1670L: isdn4linux@listserv.isdn4linux.de
1671W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001672T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673S: Maintained
1674
1675ISDN SUBSYSTEM (Eicon active card driver)
1676P: Armin Schindler
1677M: mac@melware.de
1678L: isdn4linux@listserv.isdn4linux.de
1679W: http://www.melware.de
1680S: Maintained
1681
1682JOURNALLING FLASH FILE SYSTEM (JFFS)
1683P: Axis Communications AB
1684M: jffs-dev@axis.com
1685L: jffs-dev@axis.com
1686W: http://www.developer.axis.com/software/jffs/
1687S: Maintained
1688
1689JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1690P: David Woodhouse
1691M: dwmw2@infradead.org
1692L: jffs-dev@axis.com
1693W: http://sources.redhat.com/jffs2/
1694S: Maintained
1695
1696JFS FILESYSTEM
1697P: Dave Kleikamp
1698M: shaggy@austin.ibm.com
1699L: jfs-discussion@lists.sourceforge.net
1700W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001701T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702S: Supported
1703
Josh Triplettde456d32006-07-30 03:04:00 -07001704JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001705P: Stephen Tweedie, Andrew Morton
1706M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001707L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001708S: Maintained
1709
Rudolf Marek4660cb32006-10-08 22:01:26 +02001710K8TEMP HARDWARE MONITORING DRIVER
1711P: Rudolf Marek
1712M: r.marek@assembler.cz
1713L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714S: Maintained
1715
1716KCONFIG
1717P: Roman Zippel
1718M: zippel@linux-m68k.org
1719L: kbuild-devel@lists.sourceforge.net
1720S: Maintained
1721
Vivek Goyalea6c2082006-05-20 14:59:55 -07001722KDUMP
1723P: Vivek Goyal
1724M: vgoyal@in.ibm.com
1725P: Haren Myneni
1726M: hbabu@us.ibm.com
1727L: fastboot@lists.osdl.org
1728L: linux-kernel@vger.kernel.org
1729W: http://lse.sourceforge.net/kdump/
1730S: Maintained
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732KERNEL AUTOMOUNTER (AUTOFS)
1733P: H. Peter Anvin
1734M: hpa@zytor.com
1735L: autofs@linux.kernel.org
1736S: Odd Fixes
1737
1738KERNEL AUTOMOUNTER v4 (AUTOFS4)
1739P: Ian Kent
1740M: raven@themaw.net
1741L: autofs@linux.kernel.org
1742S: Maintained
1743
1744KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1745P: Kai Germaschewski
1746M: kai@germaschewski.name
1747P: Sam Ravnborg
1748M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001749T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750S: Maintained
1751
1752KERNEL JANITORS
1753P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001754L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756S: Maintained
1757
1758KERNEL NFSD
1759P: Neil Brown
1760M: neilb@cse.unsw.edu.au
1761L: nfs@lists.sourceforge.net
1762W: http://nfs.sourceforge.net/
1763W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1764S: Maintained
1765
Avi Kivity426d62e2006-12-13 00:34:03 -08001766KERNEL VIRTUAL MACHINE (KVM)
1767P: Avi Kivity
1768M: avi@qumranet.com
1769L: kvm-devel@lists.sourceforge.net
1770W: kvm.sourceforge.net
1771S: Supported
1772
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001773KEXEC
1774P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001775M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001776W: http://www.xmission.com/~ebiederm/files/kexec/
1777L: linux-kernel@vger.kernel.org
1778L: fastboot@osdl.org
1779S: Maintained
1780
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001781KPROBES
1782P: Prasanna S Panchamukhi
1783M: prasanna@in.ibm.com
1784P: Ananth N Mavinakayanahalli
1785M: ananth@in.ibm.com
1786P: Anil S Keshavamurthy
1787M: anil.s.keshavamurthy@intel.com
1788P: David S. Miller
1789M: davem@davemloft.net
1790L: linux-kernel@vger.kernel.org
1791S: Maintained
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001795S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797LASI 53c700 driver for PARISC
1798P: James E.J. Bottomley
1799M: James.Bottomley@HansenPartnership.com
1800L: linux-scsi@vger.kernel.org
1801S: Maintained
1802
Richard Purdie263de9b2006-05-15 09:44:16 -07001803LED SUBSYSTEM
1804P: Richard Purdie
1805M: rpurdie@rpsys.net
1806S: Maintained
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808LEGO USB Tower driver
1809P: Juergen Stuber
1810M: starblue@users.sourceforge.net
1811L: legousb-devel@lists.sourceforge.net
1812W: http://legousb.sourceforge.net/
1813S: Maintained
1814
1815LINUX FOR IBM pSERIES (RS/6000)
1816P: Paul Mackerras
1817M: paulus@au.ibm.com
1818W: http://www.ibm.com/linux/ltc/projects/ppc
1819S: Supported
1820
1821LINUX FOR NCR VOYAGER
1822P: James Bottomley
1823M: James.Bottomley@HansenPartnership.com
1824W: http://www.hansenpartnership.com/voyager
1825S: Maintained
1826
1827LINUX FOR POWERPC
1828P: Paul Mackerras
1829M: paulus@samba.org
1830W: http://www.penguinppc.org/
1831L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001832T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833S: Supported
1834
1835LINUX FOR POWER MACINTOSH
1836P: Benjamin Herrenschmidt
1837M: benh@kernel.crashing.org
1838W: http://www.penguinppc.org/
1839L: linuxppc-dev@ozlabs.org
1840S: Maintained
1841
1842LINUX FOR POWERPC EMBEDDED MPC52XX
1843P: Sylvain Munaut
1844M: tnt@246tNt.com
1845W: http://www.246tNt.com/mpc52xx/
1846W: http://www.penguinppc.org/
1847L: linuxppc-dev@ozlabs.org
1848L: linuxppc-embedded@ozlabs.org
1849S: Maintained
1850
1851LINUX FOR POWERPC EMBEDDED PPC4XX
1852P: Matt Porter
1853M: mporter@kernel.crashing.org
1854W: http://www.penguinppc.org/
1855L: linuxppc-embedded@ozlabs.org
1856S: Maintained
1857
Tom Rinie93adf12005-07-26 12:49:53 -07001858LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859P: Tom Rini
1860M: trini@kernel.crashing.org
1861W: http://www.penguinppc.org/
1862L: linuxppc-embedded@ozlabs.org
1863S: Maintained
1864
Tom Rinie93adf12005-07-26 12:49:53 -07001865LINUX FOR POWERPC EMBEDDED PPC8XX
1866P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001867M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001868W: http://www.penguinppc.org/
1869L: linuxppc-embedded@ozlabs.org
1870S: Maintained
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01001873P: Kumar Gala
1874M: galak@kernel.crashing.org
1875W: http://www.penguinppc.org/
1876L: linuxppc-embedded@ozlabs.org
1877S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Olof Johanssonab06ff32006-09-06 14:44:54 -05001879LINUX FOR POWERPC PA SEMI PWRFICIENT
1880P: Olof Johansson
1881M: olof@lixom.net
1882W: http://www.pasemi.com/
1883L: linuxppc-dev@ozlabs.org
1884S: Supported
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886LLC (802.2)
1887P: Arnaldo Carvalho de Melo
1888M: acme@conectiva.com.br
1889S: Maintained
1890
1891LINUX FOR 64BIT POWERPC
1892P: Paul Mackerras
1893M: paulus@samba.org
1894M: paulus@au.ibm.com
1895P: Anton Blanchard
1896M: anton@samba.org
1897M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001898W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001899L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900S: Supported
1901
1902LINUX SECURITY MODULE (LSM) FRAMEWORK
1903P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001904M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001905L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001907T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908S: Supported
1909
1910LM83 HARDWARE MONITOR DRIVER
1911P: Jean Delvare
1912M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001913L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914S: Maintained
1915
1916LM90 HARDWARE MONITOR DRIVER
1917P: Jean Delvare
1918M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001919L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920S: Maintained
1921
1922LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1923P: Richard Russon (FlatCap)
1924M: ldm@flatcap.org
1925L: ldm-devel@lists.sourceforge.net
1926W: http://ldm.sourceforge.net
1927S: Maintained
1928
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001929LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1930P: Eric Moore
1931M: Eric.Moore@lsil.com
1932M: support@lsil.com
1933L: mpt_linux_developer@lsil.com
1934L: linux-scsi@vger.kernel.org
1935W: http://www.lsilogic.com/support
1936S: Supported
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1939P: Matthew Wilcox
1940M: matthew@wil.cx
1941L: linux-scsi@vger.kernel.org
1942S: Maintained
1943
1944M68K ARCHITECTURE
1945P: Geert Uytterhoeven
1946M: geert@linux-m68k.org
1947P: Roman Zippel
1948M: zippel@linux-m68k.org
1949L: linux-m68k@lists.linux-m68k.org
1950W: http://www.linux-m68k.org/
1951W: http://linux-m68k-cvs.ubb.ca/
1952S: Maintained
1953
1954M68K ON APPLE MACINTOSH
1955P: Joshua Thompson
1956M: funaho@jurai.org
1957W: http://www.mac.linux-m68k.org/
1958L: linux-mac68k@mac.linux-m68k.org
1959S: Maintained
1960
1961M68K ON HP9000/300
1962P: Philip Blundell
1963M: philb@gnu.org
1964W: http://www.tazenda.demon.co.uk/phil/linux-hp
1965S: Maintained
1966
1967MARVELL YUKON / SYSKONNECT DRIVER
1968P: Mirko Lindner
1969M: mlindner@syskonnect.de
1970P: Ralph Roesler
1971M: rroesler@syskonnect.de
1972W: http://www.syskonnect.com
1973S: Supported
1974
Michael Kerriskfaf16682005-07-31 22:34:47 -07001975MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01001976P: Michael Kerrisk
1977M: mtk-manpages@gmx.net
1978W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1979S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07001980
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001981MARVELL MV643XX ETHERNET DRIVER
1982P: Dale Farnsworth
1983M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001985M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001986L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001987S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989MATROX FRAMEBUFFER DRIVER
1990P: Petr Vandrovec
1991M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001992L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993S: Maintained
1994
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001995MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01001996P: Neela Syam Kolli
1997M: Neela.Kolli@engenio.com
1998S: linux-scsi@vger.kernel.org
1999W: http://megaraid.lsilogic.com
2000S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002001
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002002MEMORY MANAGEMENT
2003L: linux-mm@kvack.org
2004L: linux-kernel@vger.kernel.org
2005W: http://www.linux-mm.org
2006S: Maintained
2007
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002008MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009P: David Woodhouse
2010M: dwmw2@infradead.org
2011W: http://www.linux-mtd.infradead.org/
2012L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002013T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014S: Maintained
2015
2016MICROTEK X6 SCANNER
2017P: Oliver Neukum
2018M: oliver@neukum.name
2019S: Maintained
2020
2021MIPS
2022P: Ralf Baechle
2023M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002024W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002026T: git www.linux-mips.org:/pub/scm/linux.git
2027S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029MISCELLANEOUS MCA-SUPPORT
2030P: James Bottomley
2031M: jejb@steeleye.com
2032L: linux-kernel@vger.kernel.org
2033S: Maintained
2034
2035MODULE SUPPORT
2036P: Rusty Russell
2037M: rusty@rustcorp.com.au
2038L: linux-kernel@vger.kernel.org
2039S: Maintained
2040
2041MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2042P: Stelian Pop
2043M: stelian@popies.net
2044W: http://popies.net/meye/
2045S: Maintained
2046
2047MOUSE AND MISC DEVICES [GENERAL]
2048P: Alessandro Rubini
2049M: rubini@ipvvis.unipv.it
2050L: linux-kernel@vger.kernel.org
2051S: Maintained
2052
Jiri Slabyd7354102006-12-08 02:38:35 -08002053MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2054P: Jiri Slaby
2055M: jirislaby@gmail.com
2056L: linux-kernel@vger.kernel.org
2057S: Maintained
2058
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002059MSI LAPTOP SUPPORT
2060P: Lennart Poettering
2061M: mzxreary@0pointer.de
2062L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2063W: http://0pointer.de/lennart/tchibo.html
2064S: Maintained
2065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066MTRR AND SIMILAR SUPPORT [i386]
2067P: Richard Gooch
2068M: rgooch@atnf.csiro.au
2069L: linux-kernel@vger.kernel.org
2070W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2071S: Maintained
2072
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002073MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2074P: Pierre Ossman
2075M: drzeus-mmc@drzeus.cx
2076L: linux-kernel@vger.kernel.org
2077S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079MULTISOUND SOUND DRIVER
2080P: Andrew Veliath
2081M: andrewtv@usa.net
2082S: Maintained
2083
Jiri Slabyd7354102006-12-08 02:38:35 -08002084MULTITECH MULTIPORT CARD (ISICOM)
2085P: Jiri Slaby
2086M: jirislaby@gmail.com
2087L: linux-kernel@vger.kernel.org
2088S: Maintained
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090NATSEMI ETHERNET DRIVER (DP8381x)
2091P: Tim Hockin
2092M: thockin@hockin.org
2093S: Maintained
2094
2095NCP FILESYSTEM
2096P: Petr Vandrovec
2097M: vandrove@vc.cvut.cz
2098L: linware@sh.cvut.cz
2099S: Maintained
2100
2101NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2102P: James E.J. Bottomley
2103M: James.Bottomley@HansenPartnership.com
2104L: linux-scsi@vger.kernel.org
2105S: Maintained
2106
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002107NETEM NETWORK EMULATOR
2108P: Stephen Hemminger
2109M: shemminger@osdl.org
2110L: netem@osdl.org
2111S: Maintained
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113NETFILTER/IPTABLES/IPCHAINS
2114P: Rusty Russell
2115P: Marc Boucher
2116P: James Morris
2117P: Harald Welte
2118P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002119P: Patrick McHardy
2120M: kaber@trash.net
2121L: netfilter-devel@lists.netfilter.org
2122L: netfilter@lists.netfilter.org
2123L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124W: http://www.netfilter.org/
2125W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126S: Supported
2127
Paul Moore4cc67732006-09-25 15:57:13 -07002128NETLABEL
2129P: Paul Moore
2130M: paul.moore@hp.com
2131W: http://netlabel.sf.net
2132L: netdev@vger.kernel.org
2133S: Supported
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135NETROM NETWORK LAYER
2136P: Ralf Baechle
2137M: ralf@linux-mips.org
2138L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002139W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140S: Maintained
2141
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002142NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143P: Paul Clements
2144M: Paul.Clements@steeleye.com
2145S: Maintained
2146
2147NETWORK DEVICE DRIVERS
2148P: Andrew Morton
2149M: akpm@osdl.org
2150P: Jeff Garzik
2151M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002152L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002153T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154S: Maintained
2155
2156NETWORKING [GENERAL]
2157P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002158M: netdev@vger.kernel.org
2159L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002160W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161S: Maintained
2162
2163NETWORKING [IPv4/IPv6]
2164P: David S. Miller
2165M: davem@davemloft.net
2166P: Alexey Kuznetsov
2167M: kuznet@ms2.inr.ac.ru
2168P: Pekka Savola (ipv6)
2169M: pekkas@netcore.fi
2170P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002171M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172P: Hideaki YOSHIFUJI
2173M: yoshfuji@linux-ipv6.org
2174P: Patrick McHardy
2175M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002176L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002177T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178S: Maintained
2179
John W. Linville29f8f632006-01-18 14:52:48 -08002180NETWORKING [WIRELESS]
2181P: John W. Linville
2182M: linville@tuxdriver.com
2183L: netdev@vger.kernel.org
2184T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2185S: Maintained
2186
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002187NETXEN (1/10) GbE SUPPORT
2188P: Amit S. Kale
2189M: amitkale@netxen.com
2190L: netdev@vger.kernel.org
2191W: http://www.netxen.com
2192S: Supported
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194IPVS
2195P: Wensong Zhang
2196M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002197P: Simon Horman
2198M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199P: Julian Anastasov
2200M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002201L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202S: Maintained
2203
2204NFS CLIENT
2205P: Trond Myklebust
2206M: trond.myklebust@fys.uio.no
2207L: linux-kernel@vger.kernel.org
2208S: Maintained
2209
2210NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002211P: Jan-Pascal van Best
2212M: janpascal@vanbest.org
2213P: Andreas Mohr
2214M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002215L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216S: Maintained
2217
2218NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2219P: YOKOTA Hiroshi
2220M: yokota@netlab.is.tsukuba.ac.jp
2221W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2222S: Maintained
2223
2224NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2225P: GOTO Masanori
2226M: gotom@debian.or.jp
2227P: YOKOTA Hiroshi
2228M: yokota@netlab.is.tsukuba.ac.jp
2229W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2230S: Maintained
2231
2232NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2233P: Eberhard Moenkeberg
2234M: emoenke@gwdg.de
2235L: linux-kernel@vger.kernel.org
2236S: Maintained
2237
2238NTFS FILESYSTEM
2239P: Anton Altaparmakov
2240M: aia21@cantab.net
2241L: linux-ntfs-dev@lists.sourceforge.net
2242L: linux-kernel@vger.kernel.org
2243W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002244T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245S: Maintained
2246
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002247NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002248P: Antonino Daplas
2249M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002250L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002251S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002253OPENCORES I2C BUS DRIVER
2254P: Peter Korsgaard
2255M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002256L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002257S: Maintained
2258
Mark Fashehccd979b2005-12-15 14:31:24 -08002259ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2260P: Mark Fasheh
2261M: mark.fasheh@oracle.com
2262P: Kurt Hackel
2263M: kurt.hackel@oracle.com
2264L: ocfs2-devel@oss.oracle.com
2265W: http://oss.oracle.com/projects/ocfs2/
2266S: Supported
2267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268OLYMPIC NETWORK DRIVER
2269P: Peter De Shrijver
2270M: p2@ace.ulyssis.student.kuleuven.ac.be
2271P: Mike Phillips
2272M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002273L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274L: linux-tr@linuxtr.net
2275W: http://www.linuxtr.net
2276S: Maintained
2277
Harald Weltec1986ee2005-11-13 16:06:29 -08002278OMNIKEY CARDMAN 4000 DRIVER
2279P: Harald Welte
2280M: laforge@gnumonks.org
2281S: Maintained
2282
Harald Welte77c44ab2005-11-13 16:06:26 -08002283OMNIKEY CARDMAN 4040 DRIVER
2284P: Harald Welte
2285M: laforge@gnumonks.org
2286S: Maintained
2287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288ONSTREAM SCSI TAPE DRIVER
2289P: Willem Riede
2290M: osst@riede.org
2291L: osst-users@lists.sourceforge.net
2292L: linux-scsi@vger.kernel.org
2293S: Maintained
2294
2295OPL3-SA2, SA3, and SAx DRIVER
2296P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002297M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298L: linux-sound@vger.kernel.org
2299S: Maintained
2300
2301OPROFILE
2302P: Philippe Elie
2303M: phil.el@wanadoo.fr
2304L: oprofile-list@lists.sf.net
2305S: Maintained
2306
2307ORINOCO DRIVER
2308P: Pavel Roskin
2309M: proski@gnu.org
2310P: David Gibson
2311M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002312L: orinoco-users@lists.sourceforge.net
2313L: orinoco-devel@lists.sourceforge.net
2314W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315S: Maintained
2316
2317PARALLEL PORT SUPPORT
2318P: Phil Blundell
2319M: philb@gnu.org
2320P: Tim Waugh
2321M: tim@cyberelk.net
2322P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323P: Andrea Arcangeli
2324M: andrea@suse.de
2325L: linux-parport@lists.infradead.org
2326W: http://people.redhat.com/twaugh/parport/
2327S: Maintained
2328
2329PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2330P: Tim Waugh
2331M: tim@cyberelk.net
2332L: linux-parport@lists.infradead.org
2333W: http://www.torque.net/linux-pp.html
2334S: Maintained
2335
2336PARISC ARCHITECTURE
2337P: Matthew Wilcox
2338M: matthew@wil.cx
2339P: Grant Grundler
2340M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002341P: Kyle McMartin
2342M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343L: parisc-linux@parisc-linux.org
2344W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002345T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2346T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347S: Maintained
2348
Jim Cromie1662d322006-10-06 00:43:59 -07002349PC87360 HARDWARE MONITORING DRIVER
2350P: Jim Cromie
2351M: jim.cromie@gmail.com
2352L: lm-sensors@lm-sensors.org
2353S: Maintained
2354
2355PC8736x GPIO DRIVER
2356P: Jim Cromie
2357M: jim.cromie@gmail.com
2358S: Maintained
2359
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002360PCI ERROR RECOVERY
2361P: Linas Vepstas
2362M: linas@austin.ibm.com
2363L: linux-kernel@vger.kernel.org
2364L: linux-pci@atrey.karlin.mff.cuni.cz
2365S: Supported
2366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2368P: Thomas Sailer
2369M: sailer@ife.ee.ethz.ch
2370L: linux-sound@vger.kernel.org
2371W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2372S: Maintained
2373
2374PCI SUBSYSTEM
2375P: Greg Kroah-Hartman
2376M: gregkh@suse.de
2377L: linux-kernel@vger.kernel.org
2378L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002379T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380S: Supported
2381
2382PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002383P: Kristen Carlson Accardi
2384M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385S: Supported
2386
2387PCI HOTPLUG COMPAQ DRIVER
2388P: Greg Kroah-Hartman
2389M: greg@kroah.com
2390S: Maintained
2391
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002392PCIE HOTPLUG DRIVER
2393P: Kristen Carlson Accardi
2394M: kristen.c.accardi@intel.com
2395L: pcihpd-discuss@lists.sourceforge.net
2396S: Maintained
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002399P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002400L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002402T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002403S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405PCNET32 NETWORK DRIVER
2406P: Thomas Bogendörfer
2407M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002408L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409S: Maintained
2410
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002411PER-TASK DELAY ACCOUNTING
2412P: Shailabh Nagar
2413M: nagar@watson.ibm.com
2414L: linux-kernel@vger.kernel.org
2415S: Maintained
2416
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002417PERSONALITY HANDLING
2418P: Christoph Hellwig
2419M: hch@infradead.org
2420L: linux-abi-devel@lists.sourceforge.net
2421S: Maintained
2422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423PHRAM MTD DRIVER
2424P: Jörn Engel
2425M: joern@wh.fh-wedel.de
2426L: linux-mtd@lists.infradead.org
2427S: Maintained
2428
Peter Osterlund249a6772005-09-27 21:45:30 -07002429PKTCDVD DRIVER
2430P: Peter Osterlund
2431M: petero2@telia.com
2432L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002433S: Maintained
2434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435POSIX CLOCKS and TIMERS
2436P: George Anzinger
2437M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002438L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439S: Supported
2440
Eugene Surovegin24682972005-10-14 03:00:53 -07002441POWERPC 4xx EMAC DRIVER
2442P: Eugene Surovegin
2443M: ebs@ebshome.net
2444W: http://kernel.ebshome.net/emac/
2445L: linuxppc-embedded@ozlabs.org
2446L: netdev@vger.kernel.org
2447S: Maintained
2448
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449PNP SUPPORT
2450P: Adam Belay
2451M: ambx1@neo.rr.com
2452S: Maintained
2453
2454PPP PROTOCOL DRIVERS AND COMPRESSORS
2455P: Paul Mackerras
2456M: paulus@samba.org
2457L: linux-ppp@vger.kernel.org
2458S: Maintained
2459
2460PPP OVER ATM (RFC 2364)
2461P: Mitchell Blank Jr
2462M: mitch@sfgoth.com
2463S: Maintained
2464
2465PPP OVER ETHERNET
2466P: Michal Ostrowski
2467M: mostrows@speakeasy.net
2468S: Maintained
2469
2470PREEMPTIBLE KERNEL
2471P: Robert Love
2472M: rml@tech9.net
2473L: linux-kernel@vger.kernel.org
2474L: kpreempt-tech@lists.sourceforge.net
2475W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2476S: Supported
2477
2478PRISM54 WIRELESS DRIVER
2479P: Prism54 Development Team
2480M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002481L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482W: http://prism54.org
2483S: Maintained
2484
2485PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2486P: Peter Denison
2487M: promise@pnd-pc.demon.co.uk
2488W: http://www.pnd-pc.demon.co.uk/promise/
2489S: Maintained
2490
Geoff Levandf58a9d12006-11-23 00:46:51 +01002491PS3 PLATFORM SUPPORT
2492P: Geoff Levand
2493M: geoffrey.levand@am.sony.com
2494L: linuxppc-dev@ozlabs.org
2495L: cbe-oss-dev@ozlabs.org
2496S: Supported
2497
Michael Krufky83202042006-07-03 00:24:18 -07002498PVRUSB2 VIDEO4LINUX DRIVER
2499P: Mike Isely
2500M: isely@pobox.com
2501L: pvrusb2@isely.net
2502L: video4linux-list@redhat.com
2503W: http://www.isely.net/pvrusb2/
2504S: Maintained
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506PXA2xx SUPPORT
2507P: Nicolas Pitre
2508M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002509L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510S: Maintained
2511
2512QLOGIC QLA2XXX FC-SCSI DRIVER
2513P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002514M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515L: linux-scsi@vger.kernel.org
2516S: Supported
2517
Ron Mercer5a4faa82006-07-25 00:40:21 -07002518QLOGIC QLA3XXX NETWORK DRIVER
2519P: Ron Mercer
2520M: linux-driver@qlogic.com
2521L: netdev@vger.kernel.org
2522S: Supported
2523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524QNX4 FILESYSTEM
2525P: Anders Larsen
2526M: al@alarsen.net
2527L: linux-kernel@vger.kernel.org
2528W: http://www.alarsen.net/linux/qnx4fs/
2529S: Maintained
2530
2531RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002532P: Benjamin Herrenschmidt
2533M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002534L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535S: Maintained
2536
2537RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002538P: Paul Mackerras
2539M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002540L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541S: Maintained
2542
2543RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2544P: Corey Thomas
2545M: corey@world.std.com
2546L: linux-kernel@vger.kernel.org
2547S: Maintained
2548
Matt Mackall9e95ce22005-04-16 15:25:56 -07002549RANDOM NUMBER DRIVER
2550P: Matt Mackall
2551M: mpm@selenic.com
2552S: Maintained
2553
Matt Porter394b7012005-11-07 01:00:15 -08002554RAPIDIO SUBSYSTEM
2555P: Matt Porter
2556M: mporter@kernel.crashing.org
2557L: linux-kernel@vger.kernel.org
2558S: Maintained
2559
Josh Triplett595182b2006-10-04 02:17:21 -07002560READ-COPY UPDATE (RCU)
2561P: Dipankar Sarma
2562M: dipankar@in.ibm.com
2563W: http://www.rdrop.com/users/paulmck/rclock/
2564L: linux-kernel@vger.kernel.org
2565S: Supported
2566
2567RCUTORTURE MODULE
2568P: Josh Triplett
2569M: josh@freedesktop.org
2570L: linux-kernel@vger.kernel.org
2571S: Maintained
2572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573REAL TIME CLOCK DRIVER
2574P: Paul Gortmaker
2575M: p_gortmaker@yahoo.com
2576L: linux-kernel@vger.kernel.org
2577S: Maintained
2578
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002579REAL TIME CLOCK (RTC) SUBSYSTEM
2580P: Alessandro Zummo
2581M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002582L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002583S: Maintained
2584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585REISERFS FILE SYSTEM
2586P: Hans Reiser
2587M: reiserfs-dev@namesys.com
2588L: reiserfs-list@namesys.com
2589W: http://www.namesys.com
2590S: Supported
2591
2592ROCKETPORT DRIVER
2593P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594W: http://www.comtrol.com
2595S: Maintained
2596
2597ROSE NETWORK LAYER
2598P: Ralf Baechle
2599M: ralf@linux-mips.org
2600L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002601W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602S: Maintained
2603
2604RISCOM8 DRIVER
2605S: Orphan
2606
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002607S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002608P: Antonino Daplas
2609M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002610L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002611S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613S390
2614P: Martin Schwidefsky
2615M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002616P: Heiko Carstens
2617M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618M: linux390@de.ibm.com
2619L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002620W: http://www.ibm.com/developerworks/linux/linux390/
2621S: Supported
2622
2623S390 NETWORK DRIVERS
2624P: Frank Pavlic
2625M: fpavlic@de.ibm.com
2626M: linux390@de.ibm.com
2627L: linux-390@vm.marist.edu
2628W: http://www.ibm.com/developerworks/linux/linux390/
2629S: Supported
2630
2631S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002632P: Swen Schillig
2633M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002634M: linux390@de.ibm.com
2635L: linux-390@vm.marist.edu
2636W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637S: Supported
2638
2639SAA7146 VIDEO4LINUX-2 DRIVER
2640P: Michael Hunold
2641M: michael@mihu.de
2642W: http://www.mihu.de/linux/saa7146
2643S: Maintained
2644
2645SBPCD CDROM DRIVER
2646P: Eberhard Moenkeberg
2647M: emoenke@gwdg.de
2648L: linux-kernel@vger.kernel.org
2649S: Maintained
2650
2651SC1200 WDT DRIVER
2652P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002653M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654S: Maintained
2655
2656SCHEDULER
2657P: Ingo Molnar
2658M: mingo@elte.hu
2659P: Robert Love [the preemptible kernel bits]
2660M: rml@tech9.net
2661L: linux-kernel@vger.kernel.org
2662S: Maintained
2663
2664SCSI CDROM DRIVER
2665P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002666M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667L: linux-scsi@vger.kernel.org
2668W: http://www.kernel.dk
2669S: Maintained
2670
2671SCSI SG DRIVER
2672P: Doug Gilbert
2673M: dgilbert@interlog.com
2674L: linux-scsi@vger.kernel.org
2675W: http://www.torque.net/sg
2676S: Maintained
2677
2678SCSI SUBSYSTEM
2679P: James E.J. Bottomley
2680M: James.Bottomley@SteelEye.com
2681L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002682T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683S: Maintained
2684
2685SCSI TAPE DRIVER
2686P: Kai Mäkisara
2687M: Kai.Makisara@kolumbus.fi
2688L: linux-scsi@vger.kernel.org
2689S: Maintained
2690
2691SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002692P: Sridhar Samudrala
2693M: sri@us.ibm.com
2694L: lksctp-developers@lists.sourceforge.net
2695S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002698P: Jim Cromie
2699M: jim.cromie@gmail.com
2700S: Odd Fixes
2701
2702SCx200 GPIO DRIVER
2703P: Jim Cromie
2704M: jim.cromie@gmail.com
2705S: Maintained
2706
2707SCx200 HRT CLOCKSOURCE DRIVER
2708P: Jim Cromie
2709M: jim.cromie@gmail.com
2710S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
2712SECURITY CONTACT
2713P: Security Officers
2714M: security@kernel.org
2715S: Supported
2716
2717SELINUX SECURITY MODULE
2718P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002719M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002721M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722L: linux-kernel@vger.kernel.org (kernel issues)
2723L: selinux@tycho.nsa.gov (general discussion)
2724W: http://www.nsa.gov/selinux
2725S: Supported
2726
2727SERIAL ATA (SATA) SUBSYSTEM:
2728P: Jeff Garzik
2729M: jgarzik@pobox.com
2730L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002731T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732S: Supported
2733
2734SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2735P: Pat Gefre
2736M: pfg@sgi.com
2737L: linux-ia64@vger.kernel.org
2738S: Supported
2739
2740SGI VISUAL WORKSTATION 320 AND 540
2741P: Andrey Panin
2742M: pazke@donpac.ru
2743L: linux-visws-devel@lists.sf.net
2744W: http://linux-visws.sf.net
2745S: Maintained for 2.6.
2746
2747SIMTEC EB110ATX (Chalice CATS)
2748P: Ben Dooks
2749P: Vincent Sanders
2750M: support@simtec.co.uk
2751W: http://www.simtec.co.uk/products/EB110ATX/
2752S: Supported
2753
2754SIMTEC EB2410ITX (BAST)
2755P: Ben Dooks
2756P: Vincent Sanders
2757M: support@simtec.co.uk
2758W: http://www.simtec.co.uk/products/EB2410ITX/
2759S: Supported
2760
Francois Romieu92aab3c2005-07-30 13:11:18 +02002761SIS 190 ETHERNET DRIVER
2762P: Francois Romieu
2763M: romieu@fr.zoreil.com
2764L: netdev@vger.kernel.org
2765S: Maintained
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767SIS 5513 IDE CONTROLLER DRIVER
2768P: Lionel Bouton
2769M: Lionel.Bouton@inet6.fr
2770W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2771W: http://gyver.homeip.net/sis5513/index.html
2772S: Maintained
2773
2774SIS 900/7016 FAST ETHERNET DRIVER
2775P: Daniele Venzano
2776M: venza@brownhat.org
2777W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002778L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779S: Maintained
2780
2781SIS FRAMEBUFFER DRIVER
2782P: Thomas Winischhofer
2783M: thomas@winischhofer.net
2784W: http://www.winischhofer.net/linuxsisvga.shtml
2785S: Maintained
2786
2787SIS USB2VGA DRIVER
2788P: Thomas Winischhofer
2789M: thomas@winischhofer.net
2790W: http://www.winischhofer.at/linuxsisusbvga.shtml
2791S: Maintained
2792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793SMC91x ETHERNET DRIVER
2794P: Nicolas Pitre
2795M: nico@cam.org
2796S: Maintained
2797
Daniel Drake8f0f8502006-07-18 22:00:25 +01002798SOFTMAC LAYER (IEEE 802.11)
2799P: Johannes Berg
2800M: johannes@sipsolutions.net
2801P: Joe Jezak
2802M: josejx@gentoo.org
2803P: Daniel Drake
2804M: dsd@gentoo.org
2805W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002806L: netdev@vger.kernel.org
2807S: Maintained
2808
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809SOFTWARE RAID (Multiple Disks) SUPPORT
2810P: Ingo Molnar
2811M: mingo@redhat.com
2812P: Neil Brown
2813M: neilb@cse.unsw.edu.au
2814L: linux-raid@vger.kernel.org
2815S: Maintained
2816
2817SOFTWARE SUSPEND:
2818P: Pavel Machek
2819M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002820L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821S: Maintained
2822
2823SONIC NETWORK DRIVER
2824P: Thomas Bogendoerfer
2825M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002826L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827S: Maintained
2828
2829SONY VAIO CONTROL DEVICE DRIVER
2830P: Stelian Pop
2831M: stelian@popies.net
2832W: http://popies.net/sonypi/
2833S: Maintained
2834
2835SOUND
2836P: Jaroslav Kysela
2837M: perex@suse.cz
2838L: alsa-devel@alsa-project.org
2839S: Maintained
2840
Kumar Gala025c3982006-04-02 16:05:54 -05002841SPI SUBSYSTEM
2842P: David Brownell
2843M: dbrownell@users.sourceforge.net
2844L: spi-devel-general@lists.sourceforge.net
2845S: Maintained
2846
Steven Rostedt855f46a2006-08-05 12:14:50 -07002847STABLE BRANCH:
2848P: Greg Kroah-Hartman
2849M: greg@kroah.com
2850P: Chris Wright
2851M: chrisw@sous-sol.org
2852L: stable@kernel.org
2853S: Maintained
2854
Kylene Hall1c72d462005-05-01 08:59:13 -07002855TPM DEVICE DRIVER
2856P: Kylene Hall
2857M: kjhall@us.ibm.com
2858W: http://tpmdd.sourceforge.net
2859L: tpmdd-devel@lists.sourceforge.net
2860S: Maintained
2861
Mark Gross1a80ba82005-10-30 15:02:55 -08002862Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002863P: Mark Gross
2864M: mark.gross@intel.com
2865S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08002866
Chris Zankel48b415c2005-06-23 22:01:07 -07002867TENSILICA XTENSA PORT (xtensa):
2868P: Chris Zankel
2869M: chris@zankel.net
2870S: Maintained
2871
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872UltraSPARC (sparc64):
2873P: David S. Miller
2874M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002876T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877S: Maintained
2878
2879SHARP LH SUPPORT (LH7952X & LH7A40X)
2880P: Marc Singer
2881M: elf@buici.com
2882W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002883L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884S: Maintained
2885
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002886SHPC HOTPLUG DRIVER
2887P: Kristen Carlson Accardi
2888M: kristen.c.accardi@intel.com
2889L: pcihpd-discuss@lists.sourceforge.net
2890S: Maintained
2891
Pierre Ossmand129bce2006-03-24 03:18:17 -08002892SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2893P: Pierre Ossman
2894M: drzeus-sdhci@drzeus.cx
2895L: sdhci-devel@list.drzeus.cx
2896W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2897S: Maintained
2898
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002899SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2900P: Stephen Hemminger
2901M: shemminger@osdl.org
2902L: netdev@vger.kernel.org
2903S: Maintained
2904
Chris Boot1a87d942006-07-10 04:45:34 -07002905SOEKRIS NET48XX LED SUPPORT
2906P: Chris Boot
2907M: bootc@bootc.net
2908S: Maintained
2909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910SPARC (sparc32):
2911P: William L. Irwin
2912M: wli@holomorphy.com
2913L: sparclinux@vger.kernel.org
2914S: Maintained
2915
2916SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2917P: Roger Wolff
2918M: R.E.Wolff@BitWizard.nl
2919L: linux-kernel@vger.kernel.org ?
2920S: Supported
2921
Jim Lewis2752e402006-09-29 02:01:19 -07002922SPIDERNET NETWORK DRIVER for CELL
2923P: Jim Lewis
2924M: jim@jklewis.com
2925L: netdev@vger.kernel.org
2926S: Supported
2927
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928SRM (Alpha) environment access
2929P: Jan-Benedict Glaw
2930M: jbglaw@lug-owl.de
2931L: linux-kernel@vger.kernel.org
2932S: Maintained
2933
2934STARFIRE/DURALAN NETWORK DRIVER
2935P: Ion Badulescu
2936M: ionut@cs.columbia.edu
2937S: Maintained
2938
2939STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2940W: http://mosquitonet.Stanford.EDU/strip.html
2941S: Unsupported ?
2942
2943STRADIS MPEG-2 DECODER DRIVER
2944P: Nathan Laredo
2945M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946W: http://www.stradis.com/
2947S: Maintained
2948
2949SUPERH (sh)
2950P: Paul Mundt
2951M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002952L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954S: Maintained
2955
2956SUPERH64 (sh64)
2957P: Paul Mundt
2958M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959L: linuxsh-shmedia-dev@lists.sourceforge.net
2960W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961S: Maintained
2962
2963SUN3/3X
2964P: Sam Creasey
2965M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966W: http://sammy.net/sun3/
2967S: Maintained
2968
2969SVGA HANDLING
2970P: Martin Mares
2971M: mj@ucw.cz
2972L: linux-video@atrey.karlin.mff.cuni.cz
2973S: Maintained
2974
2975SYSV FILESYSTEM
2976P: Christoph Hellwig
2977M: hch@infradead.org
2978S: Maintained
2979
Stephen Hemminger781b4562006-07-10 20:25:29 -07002980TC CLASSIFIER
2981P: Jamal Hadi Salim
2982M: hadi@cyberus.ca
2983L: netdev@vger.kernel.org
2984S: Maintained
2985
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002986TCP LOW PRIORITY MODULE
2987P: Wong Hoi Sing, Edison
2988M: hswong3i@gmail.com
2989P: Hung Hing Lun, Mike
2990M: hlhung3i@gmail.com
2991W: http://tcp-lp-mod.sourceforge.net/
2992S: Maintained
2993
Alex Dubov4020f2d2006-10-04 02:15:37 -07002994TI FLASH MEDIA INTERFACE DRIVER
2995P: Alex Dubov
2996M: oakad@yahoo.com
2997S: Maintained
2998
Michael Buesch844dd052006-06-26 00:24:59 -07002999TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3000P: Deepak Saxena
3001M: dsaxena@plexity.net
3002S: Maintained
3003
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003004TASKSTATS STATISTICS INTERFACE
3005P: Shailabh Nagar
3006M: nagar@watson.ibm.com
3007L: linux-kernel@vger.kernel.org
3008S: Maintained
3009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003011P: Romain Lievin
3012M: roms@lpg.ticalc.org
3013S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Per Lidene86eaa32006-01-12 16:45:18 +01003015TIPC NETWORK LAYER
3016P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003017M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003018P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003019M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003020P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003021M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003022L: tipc-discussion@lists.sourceforge.net
3023W: http://tipc.sourceforge.net/
3024W: http://tipc.cslab.ericsson.net/
3025T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3026S: Maintained
3027
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028TLAN NETWORK DRIVER
3029P: Samuel Chessman
3030M: chessman@tux.org
3031L: tlan-devel@lists.sourceforge.net
3032W: http://sourceforge.net/projects/tlan/
3033S: Maintained
3034
3035TOKEN-RING NETWORK DRIVER
3036P: Mike Phillips
3037M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003038L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039L: linux-tr@linuxtr.net
3040W: http://www.linuxtr.net
3041S: Maintained
3042
3043TOSHIBA ACPI EXTRAS DRIVER
3044P: John Belmonte
3045M: toshiba_acpi@memebeam.org
3046W: http://memebeam.org/toys/ToshibaAcpiDriver
3047S: Maintained
3048
3049TOSHIBA SMM DRIVER
3050P: Jonathan Buzzard
3051M: jonathan@buzzard.org.uk
3052L: tlinux-users@tce.toshiba-dme.co.jp
3053W: http://www.buzzard.org.uk/toshiba/
3054S: Maintained
3055
3056TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3057P: Muli Ben-Yehuda
3058M: mulix@mulix.org
3059L: linux-kernel@vger.kernel.org
3060S: Maintained
3061
3062TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003063P: Adrian Bunk
3064M: trivial@kernel.org
3065L: linux-kernel@vger.kernel.org
3066W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3067T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3068S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
3070TMS380 TOKEN-RING NETWORK DRIVER
3071P: Adam Fritzler
3072M: mid@auk.cx
3073L: linux-tr@linuxtr.net
3074W: http://www.auk.cx/tms380tr/
3075S: Maintained
3076
3077TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003078P: Valerie Henson
3079M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080L: tulip-users@lists.sourceforge.net
3081W: http://sourceforge.net/projects/tulip/
3082S: Maintained
3083
3084TUN/TAP driver
3085P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003086M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087L: vtun@office.satix.net
3088W: http://vtun.sourceforge.net/tun
3089S: Maintained
3090
3091U14-34F SCSI DRIVER
3092P: Dario Ballabio
3093M: ballabio_dario@emc.com
3094L: linux-scsi@vger.kernel.org
3095S: Maintained
3096
3097UDF FILESYSTEM
3098P: Ben Fennema
3099M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100W: http://linux-udf.sourceforge.net
3101S: Maintained
3102
3103UNIFORM CDROM DRIVER
3104P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003105M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106L: linux-kernel@vger.kernel.org
3107W: http://www.kernel.dk
3108S: Maintained
3109
3110USB ACM DRIVER
3111P: Oliver Neukum
3112M: oliver@neukum.name
3113L: linux-usb-users@lists.sourceforge.net
3114L: linux-usb-devel@lists.sourceforge.net
3115S: Maintained
3116
3117USB BLOCK DRIVER (UB ub)
3118P: Pete Zaitcev
3119M: zaitcev@redhat.com
3120L: linux-kernel@vger.kernel.org
3121L: linux-usb-devel@lists.sourceforge.net
3122S: Supported
3123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124USB CDC ETHERNET DRIVER
3125P: Greg Kroah-Hartman
3126M: greg@kroah.com
3127L: linux-usb-users@lists.sourceforge.net
3128L: linux-usb-devel@lists.sourceforge.net
3129S: Maintained
3130W: http://www.kroah.com/linux-usb/
3131
3132USB EHCI DRIVER
3133P: David Brownell
3134M: dbrownell@users.sourceforge.net
3135L: linux-usb-devel@lists.sourceforge.net
3136S: Maintained
3137
Luca Risolia7ce08c92006-01-11 02:06:59 +00003138USB ET61X[12]51 DRIVER
3139P: Luca Risolia
3140M: luca.risolia@studio.unibo.it
3141L: linux-usb-devel@lists.sourceforge.net
3142L: video4linux-list@redhat.com
3143W: http://www.linux-projects.org
3144S: Maintained
3145
David Brownell69ae9e32006-11-14 02:03:31 -08003146USB GADGET/PERIPHERAL SUBSYSTEM
3147P: David Brownell
3148M: dbrownell@users.sourceforge.net
3149L: linux-usb-devel@lists.sourceforge.net
3150W: http://www.linux-usb.org/gadget
3151S: Maintained
3152
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153USB HID/HIDBP DRIVERS
3154P: Vojtech Pavlik
3155M: vojtech@suse.cz
3156L: linux-usb-users@lists.sourceforge.net
3157L: linux-usb-devel@lists.sourceforge.net
3158S: Maintained
3159
3160USB HUB DRIVER
3161P: Johannes Erdfelt
3162M: johannes@erdfelt.com
3163L: linux-usb-users@lists.sourceforge.net
3164L: linux-usb-devel@lists.sourceforge.net
3165S: Maintained
3166
Olav Kongas959eea22005-11-03 17:38:14 +02003167USB ISP116X DRIVER
3168P: Olav Kongas
3169M: ok@artecdesign.ee
3170L: linux-usb-devel@lists.sourceforge.net
3171S: Maintained
3172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173USB KAWASAKI LSI DRIVER
3174P: Oliver Neukum
3175M: oliver@neukum.name
3176L: linux-usb-users@lists.sourceforge.net
3177L: linux-usb-devel@lists.sourceforge.net
3178S: Maintained
3179
3180USB MASS STORAGE DRIVER
3181P: Matthew Dharm
3182M: mdharm-usb@one-eyed-alien.net
3183L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003184L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185S: Maintained
3186W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3187
3188USB OHCI DRIVER
3189P: Roman Weissgaerber
3190M: weissg@vienna.at
3191L: linux-usb-users@lists.sourceforge.net
3192L: linux-usb-devel@lists.sourceforge.net
3193S: Maintained
3194
Matthias Urlichsba460e42005-07-14 00:33:47 -07003195USB OPTION-CARD DRIVER
3196P: Matthias Urlichs
3197M: smurf@smurf.noris.de
3198L: linux-usb-devel@lists.sourceforge.net
3199S: Maintained
3200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201USB OV511 DRIVER
3202P: Mark McClelland
3203M: mmcclell@bigfoot.com
3204L: linux-usb-users@lists.sourceforge.net
3205L: linux-usb-devel@lists.sourceforge.net
3206W: http://alpha.dyndns.org/ov511/
3207S: Maintained
3208
3209USB PEGASUS DRIVER
3210P: Petko Manolov
3211M: petkan@users.sourceforge.net
3212L: linux-usb-users@lists.sourceforge.net
3213L: linux-usb-devel@lists.sourceforge.net
3214W: http://pegasus2.sourceforge.net/
3215S: Maintained
3216
3217USB PRINTER DRIVER
3218P: Vojtech Pavlik
3219M: vojtech@suse.cz
3220L: linux-usb-users@lists.sourceforge.net
3221L: linux-usb-devel@lists.sourceforge.net
3222S: Maintained
3223
3224USB RTL8150 DRIVER
3225P: Petko Manolov
3226M: petkan@users.sourceforge.net
3227L: linux-usb-users@lists.sourceforge.net
3228L: linux-usb-devel@lists.sourceforge.net
3229W: http://pegasus2.sourceforge.net/
3230S: Maintained
3231
3232USB SE401 DRIVER
3233P: Jeroen Vreeken
3234M: pe1rxq@amsat.org
3235L: linux-usb-users@lists.sourceforge.net
3236L: linux-usb-devel@lists.sourceforge.net
3237W: http://www.chello.nl/~j.vreeken/se401/
3238S: Maintained
3239
3240USB SERIAL CYBERJACK DRIVER
3241P: Matthias Bruestle and Harald Welte
3242M: support@reiner-sct.com
3243W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3244S: Maintained
3245
3246USB SERIAL DIGI ACCELEPORT DRIVER
3247P: Peter Berger and Al Borchers
3248M: pberger@brimson.com
3249M: alborchers@steinerpoint.com
3250L: linux-usb-users@lists.sourceforge.net
3251L: linux-usb-devel@lists.sourceforge.net
3252S: Maintained
3253
3254USB SERIAL DRIVER
3255P: Greg Kroah-Hartman
3256M: gregkh@suse.de
3257L: linux-usb-users@lists.sourceforge.net
3258L: linux-usb-devel@lists.sourceforge.net
3259S: Supported
3260
3261USB SERIAL BELKIN F5U103 DRIVER
3262P: William Greathouse
3263M: wgreathouse@smva.com
3264L: linux-usb-users@lists.sourceforge.net
3265L: linux-usb-devel@lists.sourceforge.net
3266S: Maintained
3267
3268USB SERIAL CYPRESS M8 DRIVER
3269P: Lonnie Mendez
3270M: dignome@gmail.com
3271L: linux-usb-users@lists.sourceforge.net
3272L: linux-usb-devel@lists.sourceforge.net
3273S: Maintained
3274W: http://geocities.com/i0xox0i
3275W: http://firstlight.net/cvs
3276
3277USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3278L: linux-usb-users@lists.sourceforge.net
3279L: linux-usb-devel@lists.sourceforge.net
3280S: Maintained
3281
3282USB AUERSWALD DRIVER
3283P: Wolfgang Muees
3284M: wolfgang@iksw-muees.de
3285L: linux-usb-users@lists.sourceforge.net
3286L: linux-usb-devel@lists.sourceforge.net
3287S: Maintained
3288
3289USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3290P: Gary Brubaker
3291M: xavyer@ix.netcom.com
3292L: linux-usb-users@lists.sourceforge.net
3293L: linux-usb-devel@lists.sourceforge.net
3294S: Maintained
3295
3296USB SERIAL KEYSPAN DRIVER
3297P: Greg Kroah-Hartman
3298M: greg@kroah.com
3299L: linux-usb-users@lists.sourceforge.net
3300L: linux-usb-devel@lists.sourceforge.net
3301W: http://www.kroah.com/linux/
3302S: Maintained
3303
3304USB SERIAL WHITEHEAT DRIVER
3305P: Stuart MacDonald
3306M: stuartm@connecttech.com
3307L: linux-usb-users@lists.sourceforge.net
3308L: linux-usb-devel@lists.sourceforge.net
3309W: http://www.connecttech.com
3310S: Supported
3311
3312USB SN9C10x DRIVER
3313P: Luca Risolia
3314M: luca.risolia@studio.unibo.it
3315L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003316L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317W: http://www.linux-projects.org
3318S: Maintained
3319
3320USB SUBSYSTEM
3321P: Greg Kroah-Hartman
3322M: gregkh@suse.de
3323L: linux-usb-users@lists.sourceforge.net
3324L: linux-usb-devel@lists.sourceforge.net
3325W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003326T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327S: Supported
3328
3329USB UHCI DRIVER
3330P: Alan Stern
3331M: stern@rowland.harvard.edu
3332L: linux-usb-users@lists.sourceforge.net
3333L: linux-usb-devel@lists.sourceforge.net
3334S: Maintained
3335
David Brownell69ae9e32006-11-14 02:03:31 -08003336USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337P: David Brownell
3338M: dbrownell@users.sourceforge.net
3339L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003340W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341S: Maintained
3342
3343USB W996[87]CF DRIVER
3344P: Luca Risolia
3345M: luca.risolia@studio.unibo.it
3346L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003347L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348W: http://www.linux-projects.org
3349S: Maintained
3350
Luca Risolia60f78052006-02-06 16:29:35 +00003351USB ZC0301 DRIVER
3352P: Luca Risolia
3353M: luca.risolia@studio.unibo.it
3354L: linux-usb-devel@lists.sourceforge.net
3355L: video4linux-list@redhat.com
3356W: http://www.linux-projects.org
3357S: Maintained
3358
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359USB ZD1201 DRIVER
3360P: Jeroen Vreeken
3361M: pe1rxq@amsat.org
3362L: linux-usb-users@lists.sourceforge.net
3363L: linux-usb-devel@lists.sourceforge.net
3364W: http://linux-lc100020.sourceforge.net
3365S: Maintained
3366
3367USER-MODE LINUX
3368P: Jeff Dike
3369M: jdike@karaya.com
3370L: user-mode-linux-devel@lists.sourceforge.net
3371L: user-mode-linux-user@lists.sourceforge.net
3372W: http://user-mode-linux.sourceforge.net
3373S: Maintained
3374
3375FAT/VFAT/MSDOS FILESYSTEM:
3376P: OGAWA Hirofumi
3377M: hirofumi@mail.parknet.co.jp
3378L: linux-kernel@vger.kernel.org
3379S: Maintained
3380
3381VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3382P: Jeff Garzik
3383S: Odd fixes
3384
3385VIA RHINE NETWORK DRIVER
3386P: Roger Luethi
3387M: rl@hellgate.ch
3388S: Maintained
3389
Jean Delvare32c0a522005-09-22 21:47:58 +02003390VIAPRO SMBUS DRIVER
3391P: Jean Delvare
3392M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003393L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003394S: Maintained
3395
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396UCLINUX (AND M68KNOMMU)
3397P: Greg Ungerer
3398M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003400L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401S: Maintained
3402
3403UCLINUX FOR NEC V850
3404P: Miles Bader
3405M: uclinux-v850@lsi.nec.co.jp
3406W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3407W: http://www.ee.nec.de/uclinux/
3408S: Supported
3409
3410UCLINUX FOR RENESAS H8/300
3411P: Yoshinori Sato
3412M: ysato@users.sourceforge.jp
3413W: http://uclinux-h8.sourceforge.jp/
3414S: Supported
3415
3416USB DIAMOND RIO500 DRIVER
3417P: Cesar Miquel
3418M: miquel@df.uba.ar
3419L: rio500-users@lists.sourceforge.net
3420W: http://rio500.sourceforge.net
3421S: Maintained
3422
3423VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003424P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003425M: mchehab@infradead.org
3426M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003428W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003429T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003430S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
Juerg Haefligerab413192006-09-24 20:54:04 +02003432VT1211 HARDWARE MONITOR DRIVER
3433P: Juerg Haefliger
3434M: juergh@gmail.com
3435L: lm-sensors@lm-sensors.org
3436S: Maintained
3437
Roger Lucas1de9e372005-11-26 20:20:05 +01003438VT8231 HARDWARE MONITOR DRIVER
3439P: Roger Lucas
3440M: roger@planbit.co.uk
3441L: lm-sensors@lm-sensors.org
3442S: Maintained
3443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444W1 DALLAS'S 1-WIRE BUS
3445P: Evgeniy Polyakov
3446M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447S: Maintained
3448
Charles Spirakis13927072006-07-05 18:05:15 +02003449W83791D HARDWARE MONITORING DRIVER
3450P: Charles Spirakis
3451M: bezaur@gmail.com
3452L: lm-sensors@lm-sensors.org
3453S: Maintained
3454
Rudolf Marek61db0112006-12-12 18:18:30 +01003455W83793 HARDWARE MONITORING DRIVER
3456P: Rudolf Marek
3457M: r.marek@assembler.cz
3458L: lm-sensors@lm-sensors.org
3459S: Maintained
3460
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461W83L51xD SD/MMC CARD INTERFACE DRIVER
3462P: Pierre Ossman
3463M: drzeus-wbsd@drzeus.cx
3464L: wbsd-devel@list.drzeus.cx
3465W: http://projects.drzeus.cx/wbsd
3466S: Maintained
3467
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003468WATCHDOG DEVICE DRIVERS
3469P: Wim Van Sebroeck
3470M: wim@iguana.be
3471T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3472S: Maintained
3473
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3475P: Jean Tourrilhes
3476M: jt@hpl.hp.com
3477W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3478S: Maintained
3479
3480WD7000 SCSI DRIVER
3481P: Miroslav Zagorac
3482M: zaga@fly.cc.fer.hr
3483L: linux-scsi@vger.kernel.org
3484S: Maintained
3485
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003486WISTRON LAPTOP BUTTON DRIVER
3487P: Miloslav Trmac
3488M: mitr@volny.cz
3489S: Maintained
3490
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491WL3501 WIRELESS PCMCIA CARD DRIVER
3492P: Arnaldo Carvalho de Melo
3493M: acme@conectiva.com.br
3494W: http://advogato.org/person/acme
3495S: Maintained
3496
3497X.25 NETWORK LAYER
3498P: Henner Eisen
3499M: eis@baty.hanse.de
3500L: linux-x25@vger.kernel.org
3501S: Maintained
3502
3503XFS FILESYSTEM
3504P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003505P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003507L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003509T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510S: Supported
3511
Peter Korsgaard238b8722006-12-06 20:35:17 -08003512XILINX UARTLITE SERIAL DRIVER
3513P: Peter Korsgaard
3514M: jacmet@sunsite.dk
3515L: linux-serial@vger.kernel.org
3516S: Maintained
3517
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518X86 3-LEVEL PAGING (PAE) SUPPORT
3519P: Ingo Molnar
3520M: mingo@redhat.com
3521S: Maintained
3522
3523X86-64 port
3524P: Andi Kleen
3525M: ak@suse.de
3526L: discuss@x86-64.org
3527W: http://www.x86-64.org
3528S: Maintained
3529
3530YAM DRIVER FOR AX.25
3531P: Jean-Paul Roubelat
3532M: jpr@f6fbb.org
3533L: linux-hams@vger.kernel.org
3534S: Maintained
3535
Henkaf64a5e2005-10-12 15:02:56 +02003536YEALINK PHONE DRIVER
3537P: Henk Vergonet
3538M: Henk.Vergonet@gmail.com
3539L: usbb2k-api-dev@nongnu.org
3540S: Maintained
3541
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542Z8530 DRIVER FOR AX.25
3543P: Joerg Reuter
3544M: jreuter@yaina.de
3545W: http://yaina.de/jreuter/
3546W: http://www.qsl.net/dl1bke/
3547L: linux-hams@vger.kernel.org
3548S: Maintained
3549
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003550ZD1211RW WIRELESS DRIVER
3551P: Daniel Drake
3552M: dsd@gentoo.org
3553P: Ulrich Kunitz
3554M: kune@deine-taler.de
3555W: http://zd1211.ath.cx/wiki/DriverRewrite
3556L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3557S: Maintained
3558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559ZF MACHZ WATCHDOG
3560P: Fernando Fuganti
3561M: fuganti@netbank.com.br
3562W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3563S: Maintained
3564
3565ZR36067 VIDEO FOR LINUX DRIVER
3566P: Ronald Bultje
3567M: rbultje@ronald.bitfreak.net
3568L: mjpeg-users@lists.sourceforge.net
3569W: http://mjpeg.sourceforge.net/driver-zoran/
3570S: Maintained
3571
3572ZR36120 VIDEO FOR LINUX DRIVER
3573P: Pauline Middelink
3574M: middelin@polyware.nl
3575W: http://www.polyware.nl/~middelin/En/hobbies.html
3576W: http://www.polyware.nl/~middelin/hobbies.html
3577S: Maintained
3578
3579THE REST
3580P: Linus Torvalds
3581S: Buried alive in reporters