blob: 9649ed90e7939ee39a33d882df6f47bdf49eacc6 [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
280M: r.marek@sh.cvut.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
Tom Tuckerf94b5332006-09-22 15:22:48 -0700299AMSO1100 RNIC DRIVER
300P: Tom Tucker
301M: tom@opengridcomputing.com
302P: Steve Wise
303M: swise@opengridcomputing.com
304L: openib-general@openib.org
305S: Maintained
306
Johannes Berg42269062006-07-25 16:15:50 +0200307AOA (Apple Onboard Audio) ALSA DRIVER
308P: Johannes Berg
309M: johannes@sipsolutions.net
310L: linuxppc-dev@ozlabs.org
311L: alsa-devel@alsa-project.org
312S: Maintained
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314APM DRIVER
315P: Stephen Rothwell
316M: sfr@canb.auug.org.au
317L: linux-laptop@vger.kernel.org
318W: http://www.canb.auug.org.au/~sfr/
319S: Supported
320
321APPLETALK NETWORK LAYER
322P: Arnaldo Carvalho de Melo
323M: acme@conectiva.com.br
324S: Maintained
325
Jaya Kumar1154ea72005-06-21 17:17:04 -0700326ARC FRAMEBUFFER DRIVER
327P: Jaya Kumar
328M: jayalk@intworks.biz
329S: Maintained
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331ARM26 ARCHITECTURE
332P: Ian Molton
333M: spyro@f2s.com
334S: Maintained
335
336ARM26/ARCHIMEDES
337P: Ian Molton
338M: spyro@f2s.com
339S: Maintained
340
341ARM26/A5000
342P: John Appleby
343M: john@dnsworld.co.uk
344S: Maintained
345
346ARM MFM AND FLOPPY DRIVERS
347P: Ian Molton
348M: spyro@f2s.com
349S: Maintained
350
Andrew Victord4a89c72006-12-04 13:56:21 +0100351ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
352P: Andrew Victor
353M: andrew@sanpeople.com
354L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
355W: http://maxim.org.za/at91_26.html
356S: Maintained
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358ARM/CORGI MACHINE SUPPORT
359P: Richard Purdie
360M: rpurdie@rpsys.net
361S: Maintained
362
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100363ARM/HP JORNADA 7XX MACHINE SUPPORT
364P: Kristoffer Ericson
365M: kristoffer_e1@hotmail.com
366W: www.jlime.com
367S: Maintained
368
Dirk Opfer8459c152005-11-06 14:27:52 +0000369ARM/TOSA MACHINE SUPPORT
370P: Dirk Opfer
371M: dirk@opfer-online.de
372S: Maintained
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374ARM/PLEB SUPPORT
375P: Peter Chubb
376M: pleb@gelato.unsw.edu.au
377W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
378S: Maintained
379
380ARM/PT DIGITAL BOARD PORT
381P: Stefan Eletzhofer
382M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700383L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384W: http://www.arm.linux.org.uk/
385S: Maintained
386
387ARM/SHARK MACHINE SUPPORT
388P: Alexander Schulz
389M: alex@shark-linux.de
390W: http://www.shark-linux.de/shark.html
391S: Maintained
392
393ARM/STRONGARM110 PORT
394P: Russell King
395M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700396L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397W: http://www.arm.linux.org.uk/
398S: Maintained
399
400ARM/S3C2410 ARM ARCHITECTURE
401P: Ben Dooks
402M: ben-s3c2410@fluff.org
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.fluff.org/ben/linux/
405S: Maintained
406
407ARM/S3C2440 ARM ARCHITECTURE
408P: Ben Dooks
409M: ben-s3c2440@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
414ARPD SUPPORT
415P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700416L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417S: Maintained
418
419ASUS ACPI EXTRAS DRIVER
420P: Karol Kozimor
421M: sziwan@users.sourceforge.net
422P: Julien Lerouge
423M: julien.lerouge@free.fr
424L: acpi4asus-user@lists.sourceforge.net
425W: http://sourceforge.net/projects/acpi4asus
426W: http://julien.lerouge.free.fr
427S: Maintained
428
429ATA OVER ETHERNET DRIVER
430P: Ed L. Cashin
431M: ecashin@coraid.com
432W: http://www.coraid.com/support/linux
433S: Supported
434
435ATM
436P: Chas Williams
437M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700438L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439W: http://linux-atm.sourceforge.net
440S: Maintained
441
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100442ATMEL MACB ETHERNET DRIVER
443P: Atmel AVR32 Support Team
444M: avr32@atmel.com
445P: Haavard Skinnemoen
446M: hskinnemoen@atmel.com
447S: Supported
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449ATMEL WIRELESS DRIVER
450P: Simon Kelley
451M: simon@thekelleys.org.uk
452W: http://www.thekelleys.org.uk/atmel
453W: http://atmelwlandriver.sourceforge.net/
454S: Maintained
455
Chris Wrighta92b7b82005-07-07 18:12:23 -0700456AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100457P: David Woodhouse
458M: dwmw2@infradead.org
459L: linux-audit@redhat.com
460W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800461T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700462S: Maintained
463
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700464AVR32 ARCHITECTURE
465P: Atmel AVR32 Support Team
466M: avr32@atmel.com
467P: Haavard Skinnemoen
468M: hskinnemoen@atmel.com
469W: http://www.atmel.com/products/AVR32/
470W: http://avr32linux.org/
471W: http://avrfreaks.net/
472S: Supported
473
474AVR32/AT32AP MACHINE SUPPORT
475P: Atmel AVR32 Support Team
476M: avr32@atmel.com
477P: Haavard Skinnemoen
478M: hskinnemoen@atmel.com
479S: Supported
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481AX.25 NETWORK LAYER
482P: Ralf Baechle
483M: ralf@linux-mips.org
484L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200485W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486S: Maintained
487
488BAYCOM/HDLCDRV DRIVERS FOR AX.25
489P: Thomas Sailer
490M: t.sailer@alumni.ethz.ch
491L: linux-hams@vger.kernel.org
492W: http://www.baycom.org/~tom/ham/ham.html
493S: Maintained
494
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200495BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
496P: Larry Finger
497M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200498P: Stefano Brivio
499M: st3@riseup.net
500W: http://bcm43xx.berlios.de/
501S: Maintained
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503BEFS FILE SYSTEM
504P: Sergey S. Kostyliov
505M: rathamahata@php4.ru
506L: linux-kernel@vger.kernel.org
507S: Maintained
508
509BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
510P: Kenji Hollis
511W: http://ftp.bitgate.com/pcwd/
512S: Maintained
513
514BFS FILE SYSTEM
515P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800516M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517L: linux-kernel@vger.kernel.org
518S: Maintained
519
520BLOCK LAYER
521P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200522M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800524T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525S: Maintained
526
527BLUETOOTH SUBSYSTEM
528P: Marcel Holtmann
529M: marcel@holtmann.org
530P: Maxim Krasnyansky
531M: maxk@qualcomm.com
532L: bluez-devel@lists.sf.net
533W: http://bluez.sf.net
534W: http://www.bluez.org
535W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800536T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537S: Maintained
538
539BLUETOOTH RFCOMM LAYER
540P: Marcel Holtmann
541M: marcel@holtmann.org
542P: Maxim Krasnyansky
543M: maxk@qualcomm.com
544S: Maintained
545
546BLUETOOTH BNEP LAYER
547P: Marcel Holtmann
548M: marcel@holtmann.org
549P: Maxim Krasnyansky
550M: maxk@qualcomm.com
551S: Maintained
552
553BLUETOOTH CMTP LAYER
554P: Marcel Holtmann
555M: marcel@holtmann.org
556S: Maintained
557
558BLUETOOTH HIDP LAYER
559P: Marcel Holtmann
560M: marcel@holtmann.org
561S: Maintained
562
563BLUETOOTH HCI UART DRIVER
564P: Marcel Holtmann
565M: marcel@holtmann.org
566P: Maxim Krasnyansky
567M: maxk@qualcomm.com
568S: Maintained
569
570BLUETOOTH HCI USB DRIVER
571P: Marcel Holtmann
572M: marcel@holtmann.org
573P: Maxim Krasnyansky
574M: maxk@qualcomm.com
575S: Maintained
576
577BLUETOOTH HCI BCM203X DRIVER
578P: Marcel Holtmann
579M: marcel@holtmann.org
580S: Maintained
581
582BLUETOOTH HCI BPA10X DRIVER
583P: Marcel Holtmann
584M: marcel@holtmann.org
585S: Maintained
586
587BLUETOOTH HCI BFUSB DRIVER
588P: Marcel Holtmann
589M: marcel@holtmann.org
590S: Maintained
591
592BLUETOOTH HCI DTL1 DRIVER
593P: Marcel Holtmann
594M: marcel@holtmann.org
595S: Maintained
596
597BLUETOOTH HCI BLUECARD DRIVER
598P: Marcel Holtmann
599M: marcel@holtmann.org
600S: Maintained
601
602BLUETOOTH HCI BT3C DRIVER
603P: Marcel Holtmann
604M: marcel@holtmann.org
605S: Maintained
606
607BLUETOOTH HCI BTUART DRIVER
608P: Marcel Holtmann
609M: marcel@holtmann.org
610S: Maintained
611
612BLUETOOTH HCI VHCI DRIVER
613P: Maxim Krasnyansky
614M: maxk@qualcomm.com
615S: Maintained
616
617BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100618P: Chad Tindel
619M: ctindel@users.sourceforge.net
620P: Jay Vosburgh
621M: fubar@us.ibm.com
622L: bonding-devel@lists.sourceforge.net
623W: http://sourceforge.net/projects/bonding/
624S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000626BROADBAND PROCESSOR ARCHITECTURE
627P: Arnd Bergmann
628M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100629L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400630W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000631S: Supported
632
Gary Zambrano39105892006-06-22 17:26:20 -0700633BROADCOM B44 10/100 ETHERNET DRIVER
634P: Gary Zambrano
635M: zambrano@broadcom.com
636L: netdev@vger.kernel.org
637S: Supported
638
Michael Chan948c51e2006-06-04 02:51:39 -0700639BROADCOM BNX2 GIGABIT ETHERNET DRIVER
640P: Michael Chan
641M: mchan@broadcom.com
642L: netdev@vger.kernel.org
643S: Supported
644
645BROADCOM TG3 GIGABIT ETHERNET DRIVER
646P: Michael Chan
647M: mchan@broadcom.com
648L: netdev@vger.kernel.org
649S: Supported
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700652P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200653M: mchehab@infradead.org
654M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700656W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200657T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700658S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200660CALGARY x86-64 IOMMU
661P: Muli Ben-Yehuda
662M: muli@il.ibm.com
663P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200664M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200665L: linux-kernel@vger.kernel.org
666L: discuss@x86-64.org
667S: Maintained
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669COMMON INTERNET FILE SYSTEM (CIFS)
670P: Steve French
671M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100672L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673L: samba-technical@lists.samba.org
674W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800675T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676S: Supported
677
Joel Becker7063fbf2005-12-15 14:29:43 -0800678CONFIGFS
679P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800680M: joel.becker@oracle.com
681L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800682S: Supported
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684CIRRUS LOGIC GENERIC FBDEV DRIVER
685P: Jeff Garzik
686M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800687L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688S: Odd Fixes
689
690CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
691P: Cirrus Logic Corporation (kernel 2.2 driver)
692M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
693P: Nils Faerber (port to kernel 2.4)
694M: Nils Faerber <nils@kernelconcepts.de>
695S: Maintained
696
697CODA FILE SYSTEM
698P: Jan Harkes
699M: jaharkes@cs.cmu.edu
700M: coda@cs.cmu.edu
701L: codalist@coda.cs.cmu.edu
702W: http://www.coda.cs.cmu.edu/
703S: Maintained
704
705COMPACTPCI HOTPLUG CORE
706P: Scott Murray
707M: scottm@somanetworks.com
708M: scott@spiteful.org
709L: pcihpd-discuss@lists.sourceforge.net
710S: Supported
711
712COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
713P: Scott Murray
714M: scottm@somanetworks.com
715M: scott@spiteful.org
716L: pcihpd-discuss@lists.sourceforge.net
717S: Supported
718
719COMPACTPCI HOTPLUG GENERIC DRIVER
720P: Scott Murray
721M: scottm@somanetworks.com
722M: scott@spiteful.org
723L: pcihpd-discuss@lists.sourceforge.net
724S: Supported
725
726COMPUTONE INTELLIPORT MULTIPORT CARD
727P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700728M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700730S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732COSA/SRP SYNC SERIAL DRIVER
733P: Jan "Yenya" Kasprzak
734M: kas@fi.muni.cz
735W: http://www.fi.muni.cz/~kas/cosa/
736S: Maintained
737
738CPU FREQUENCY DRIVERS
739P: Dave Jones
740M: davej@codemonkey.org.uk
741L: cpufreq@lists.linux.org.uk
742W: http://www.codemonkey.org.uk/projects/cpufreq/
Josh Boyer1adc1232005-11-23 15:44:15 -0800743T: git kernel.org/pub/scm/linux/kernel/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744S: Maintained
745
746CPUID/MSR DRIVER
747P: H. Peter Anvin
748M: hpa@zytor.com
749S: Maintained
750
Paul Jacksoned90fb42005-09-27 21:45:37 -0700751CPUSETS
752P: Paul Jackson
753P: Simon Derr
754M: pj@sgi.com
755M: simon.derr@bull.net
756L: linux-kernel@vger.kernel.org
757W: http://www.bullopensource.org/cpuset/
758S: Supported
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100761W: http://sourceforge.net/projects/cramfs/
762S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764CRIS PORT
765P: Mikael Starvik
766M: starvik@axis.com
767L: dev-etrax@axis.com
768W: http://developer.axis.com
769S: Maintained
770
771CRYPTO API
772P: Herbert Xu
773M: herbert@gondor.apana.org.au
774P: David S. Miller
775M: davem@davemloft.net
776L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800777T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778S: Maintained
779
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100780CS5535 Audio ALSA driver
781P: Jaya Kumar
782M: jayakumar.alsa@gmail.com
783S: Maintained
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785CYBERPRO FB DRIVER
786P: Russell King
787M: rmk@arm.linux.org.uk
788W: http://www.arm.linux.org.uk/
789S: Maintained
790
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700791CYBLAFB FRAMEBUFFER DRIVER
792P: Knut Petersen
793M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800794L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700795S: Maintained
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797CYCLADES 2X SYNC CARD DRIVER
798P: Arnaldo Carvalho de Melo
799M: acme@conectiva.com.br
800W: http://advogato.org/person/acme
801L: cycsyn-devel@bazar.conectiva.com.br
802S: Maintained
803
804CYCLADES ASYNC MUX DRIVER
805M: async@cyclades.com
806W: http://www.cyclades.com/
807S: Supported
808
809CYCLADES PC300 DRIVER
810M: pc300@cyclades.com
811W: http://www.cyclades.com/
812S: Supported
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814DAMA SLAVE for AX.25
815P: Joerg Reuter
816M: jreuter@yaina.de
817W: http://yaina.de/jreuter/
818W: http://www.qsl.net/dl1bke/
819L: linux-hams@vger.kernel.org
820S: Maintained
821
822DC395x SCSI driver
823P: Oliver Neukum
824M: oliver@neukum.name
825P: Ali Akcaagac
826M: aliakc@web.de
827P: Jamie Lenehan
828M: lenehan@twibble.org
829W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700830L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831L: http://lists.twibble.org/mailman/listinfo/dc395x/
832S: Maintained
833
834DC390/AM53C974 SCSI driver
835P: Kurt Garloff
836M: garloff@suse.de
837W: http://www.garloff.de/kurt/linux/dc390/
838P: Guennadi Liakhovetski
839M: g.liakhovetski@gmx.de
840S: Maintained
841
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700842DCCP PROTOCOL
843P: Arnaldo Carvalho de Melo
844M: acme@mandriva.com
845L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800846W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700847S: Maintained
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849DECnet NETWORK LAYER
850P: Patrick Caulfield
851M: patrick@tykepenguin.com
852W: http://linux-decnet.sourceforge.net
853L: linux-decnet-user@lists.sourceforge.net
854S: Maintained
855
856DEFXX FDDI NETWORK DRIVER
857P: Maciej W. Rozycki
858M: macro@linux-mips.org
859S: Maintained
860
861DELL LAPTOP SMM DRIVER
862P: Massimo Dal Zotto
863M: dz@debian.org
864W: http://www.debian.org/~dz/i8k/
865S: Maintained
866
Doug Warzecha90563ec2005-09-06 15:17:15 -0700867DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
868P: Doug Warzecha
869M: Douglas_Warzecha@dell.com
870S: Maintained
871
Pavel Machek5ddb88c2006-09-29 02:01:29 -0700872DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873P: Alasdair Kergon
874L: dm-devel@redhat.com
875W: http://sources.redhat.com/dm
876S: Maintained
877
878DEVICE NUMBER REGISTRY
879P: Torben Mathiasen
880M: device@lanana.org
881W: http://lanana.org/docs/device-list/index.html
882L: linux-kernel@vger.kernel.org
883S: Maintained
884
885DEVICE FILESYSTEM
886S: Obsolete
887
888DIGI INTL. EPCA DRIVER
889P: Digi International, Inc
890M: Eng.Linux@digi.com
891L: Eng.Linux@digi.com
892W: http://www.digi.com
893S: Orphaned
894
895DIGI RIGHTSWITCH NETWORK DRIVER
896P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -0700897L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898W: http://www.digi.com
899S: Orphaned
900
901DIRECTORY NOTIFICATION
902P: Stephen Rothwell
903M: sfr@canb.auug.org.au
904L: linux-kernel@vger.kernel.org
905S: Supported
906
907DISK GEOMETRY AND PARTITION HANDLING
908P: Andries Brouwer
909M: aeb@cwi.nl
910W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
911W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
912W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
913S: Maintained
914
915DISKQUOTA:
916P: Jan Kara
917M: jack@suse.cz
918L: linux-kernel@vger.kernel.org
919S: Maintained
920
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400921DISTRIBUTED LOCK MANAGER
922P: Patrick Caulfield
923M: pcaulfie@redhat.com
924P: David Teigland
925M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -0400926L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400927W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -0400928T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
929T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400930S: Supported
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
933P: Tobias Ringstrom
934M: tori@unhappy.mine.nu
935L: linux-kernel@vger.kernel.org
936S: Maintained
937
Martin Waitzba483d52005-06-17 13:20:59 -0700938DOCBOOK FOR DOCUMENTATION
939P: Martin Waitz
940M: tali@admingilde.org
Randy Dunlap0f40efb2006-07-03 00:24:15 -0700941P: Randy Dunlap
942M: rdunlap@xenotime.net
Martin Waitz061350e2006-01-09 20:53:53 -0800943T: git http://tali.admingilde.org/git/linux-docbook.git
Martin Waitzba483d52005-06-17 13:20:59 -0700944S: Maintained
945
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -0400946DOCKING STATION DRIVER
947P: Kristen Carlson Accardi
948M: kristen.c.accardi@intel.com
949L: linux-acpi@vger.kernel.org
950S: Maintained
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952DOUBLETALK DRIVER
953P: James R. Van Zandt
954M: jrv@vanzandt.mv.com
955L: blinux-list@redhat.com
956S: Maintained
957
958DRIVER CORE, KOBJECTS, AND SYSFS
959P: Greg Kroah-Hartman
960M: gregkh@suse.de
961L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800962T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963S: Supported
964
965DRM DRIVERS
966P: David Airlie
967M: airlied@linux.ie
968L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -0800969T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970S: Maintained
971
972DSCC4 DRIVER
973P: François Romieu
974M: romieu@cogenit.fr
975M: romieu@ensta.fr
976S: Maintained
977
978DVB SUBSYSTEM AND DRIVERS
979P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200980M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +0200982W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200983T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200984S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986EATA-DMA SCSI DRIVER
987P: Michael Neuffer
988L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
989S: Maintained
990
991EATA ISA/EISA/PCI SCSI DRIVER
992P: Dario Ballabio
993M: ballabio_dario@emc.com
994L: linux-scsi@vger.kernel.org
995S: Maintained
996
997EATA-PIO SCSI DRIVER
998P: Michael Neuffer
999M: mike@i-Connect.Net
1000L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1001S: Maintained
1002
1003EBTABLES
1004P: Bart De Schuymer
1005M: bart.de.schuymer@pandora.be
1006L: ebtables-user@lists.sourceforge.net
1007L: ebtables-devel@lists.sourceforge.net
1008W: http://ebtables.sourceforge.net/
1009S: Maintained
1010
Michael Halcrow237fead2006-10-04 02:16:22 -07001011ECRYPT FILE SYSTEM
1012P: Mike Halcrow, Phillip Hellewell
1013M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1014L: ecryptfs-devel@lists.sourceforge.net
1015W: http://ecryptfs.sourceforge.net/
1016S: Supported
1017
Alan Coxda9bb1d2006-01-18 17:44:13 -08001018EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001019P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001020M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001021L: bluesmoke-devel@lists.sourceforge.net
1022W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001023S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001024
1025EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001026P: Mark Gross
1027M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001028L: bluesmoke-devel@lists.sourceforge.net
1029W: bluesmoke.sourceforge.net
1030S: Maintained
1031
1032EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001033P: Doug Thompson
1034M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001035L: bluesmoke-devel@lists.sourceforge.net
1036W: bluesmoke.sourceforge.net
1037S: Maintained
1038
1039EDAC-R82600
1040P: Tim Small
1041M: tim@buttersideup.com
1042L: bluesmoke-devel@lists.sourceforge.net
1043W: bluesmoke.sourceforge.net
1044S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046EEPRO100 NETWORK DRIVER
1047P: Andrey V. Savochkin
1048M: saw@saw.sw.com.sg
1049S: Maintained
1050
Josh Triplett0bee8d22006-07-30 03:03:58 -07001051EFS FILESYSTEM
1052W: http://aeschi.ch.eu.org/efs/
1053S: Orphan
1054
Heiko J Schickfab97222006-09-22 15:22:22 -07001055EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1056P: Hoang-Nam Nguyen
1057M: hnguyen@de.ibm.com
1058P: Christoph Raisch
1059M: raisch@de.ibm.com
1060L: openib-general@openib.org
1061S: Supported
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063EMU10K1 SOUND DRIVER
1064P: James Courtier-Dutton
1065M: James@superbug.demon.co.uk
1066L: emu10k1-devel@lists.sourceforge.net
1067W: http://sourceforge.net/projects/emu10k1/
1068S: Maintained
1069
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001070EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001071P: James Smart
1072M: james.smart@emulex.com
1073L: linux-scsi@vger.kernel.org
1074W: http://sourceforge.net/projects/lpfcxxxx
1075S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077EPSON 1355 FRAMEBUFFER DRIVER
1078P: Christopher Hoover
1079M: ch@murgatroid.com, ch@hpl.hp.com
1080S: Maintained
1081
1082ETHEREXPRESS-16 NETWORK DRIVER
1083P: Philip Blundell
1084M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001085L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086S: Maintained
1087
1088ETHERNET BRIDGE
1089P: Stephen Hemminger
1090M: shemminger@osdl.org
1091L: bridge@osdl.org
1092W: http://bridge.sourceforge.net/
1093S: Maintained
1094
1095ETHERTEAM 16I DRIVER
1096P: Mika Kuoppala
1097M: miku@iki.fi
1098S: Maintained
1099
1100EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001101L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102S: Maintained
1103
1104EXT3 FILE SYSTEM
1105P: Stephen Tweedie, Andrew Morton
1106M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001107L: linux-ext4@vger.kernel.org
1108S: Maintained
1109
1110EXT4 FILE SYSTEM
1111P: Stephen Tweedie, Andrew Morton
1112M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1113L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114S: Maintained
1115
Jean Delvaree53004e2006-01-09 23:26:14 +01001116F71805F HARDWARE MONITORING DRIVER
1117P: Jean Delvare
1118M: khali@linux-fr.org
1119L: lm-sensors@lm-sensors.org
1120S: Maintained
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122FARSYNC SYNCHRONOUS DRIVER
1123P: Kevin Curtis
1124M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125W: http://www.farsite.co.uk/
1126S: Supported
1127
1128FRAMEBUFFER LAYER
1129P: Antonino Daplas
1130M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001131L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132W: http://linux-fbdev.sourceforge.net/
1133S: Maintained
1134
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001135FREESCALE SOC FS_ENET DRIVER
1136P: Pantelis Antoniou
1137M: pantelis.antoniou@gmail.com
1138P: Vitaly Bordug
1139M: vbordug@ru.mvista.com
1140L: linuxppc-embedded@ozlabs.org
1141L: netdev@vger.kernel.org
1142S: Maintained
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144FILE LOCKING (flock() and fcntl()/lockf())
1145P: Matthew Wilcox
1146M: matthew@wil.cx
1147L: linux-fsdevel@vger.kernel.org
1148S: Maintained
1149
1150FILESYSTEMS (VFS and infrastructure)
1151P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001152M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153S: Maintained
1154
1155FIRMWARE LOADER (request_firmware)
1156L: linux-kernel@vger.kernel.org
1157S: Orphan
1158
1159FPU EMULATOR
1160P: Bill Metzenthen
1161M: billm@suburbia.net
1162W: http://suburbia.net/~billm/floating-point/emulator/
1163S: Maintained
1164
1165FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1166P: Mike McLagan
1167M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001168L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169S: Maintained
1170
1171FREEVXFS FILESYSTEM
1172P: Christoph Hellwig
1173M: hch@infradead.org
1174W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1175S: Maintained
1176
1177FUJITSU FR-V PORT
1178P: David Howells
1179M: dhowells@redhat.com
1180S: Maintained
1181
Miklos Szeredi04578f12005-09-09 13:10:22 -07001182FUSE: FILESYSTEM IN USERSPACE
1183P: Miklos Szeredi
1184M: miklos@szeredi.hu
1185L: fuse-devel@lists.sourceforge.net
1186W: http://fuse.sourceforge.net/
1187S: Maintained
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1190P: Rik Faith
1191M: faith@cs.unc.edu
1192L: linux-scsi@vger.kernel.org
1193S: Odd fixes (e.g., new signatures)
1194
1195GDT SCSI DISK ARRAY CONTROLLER DRIVER
1196P: Achim Leubner
1197M: achim_leubner@adaptec.com
1198L: linux-scsi@vger.kernel.org
1199W: http://www.icp-vortex.com/
1200S: Supported
1201
1202GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1203P: Krzysztof Halasa
1204M: khc@pm.waw.pl
1205W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1206S: Maintained
1207
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001208GFS2 FILE SYSTEM
1209P: Steven Whitehouse
1210M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001211L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001212W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001213T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1214T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001215S: Supported
1216
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001217GIGASET ISDN DRIVERS
1218P: Hansjoerg Lipp
1219M: hjlipp@web.de
1220P: Tilman Schmidt
1221M: tilman@imap.cc
1222L: gigaset307x-common@lists.sourceforge.net
1223W: http://gigaset307x.sourceforge.net/
1224S: Maintained
1225
Jean Delvare5b543962005-08-15 19:51:02 +02001226HARDWARE MONITORING
1227P: Jean Delvare
1228M: khali@linux-fr.org
1229L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001230W: http://www.lm-sensors.org/
1231T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001232S: Maintained
1233
Michael Buesch844dd052006-06-26 00:24:59 -07001234HARDWARE RANDOM NUMBER GENERATOR CORE
1235P: Michael Buesch
1236M: mb@bu3sch.de
1237S: Maintained
1238
Robert Love860e1d62005-08-31 23:57:59 -04001239HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1240P: Robert Love
1241M: rlove@rlove.org
1242M: linux-kernel@vger.kernel.org
1243W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1244S: Maintained
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246HARMONY SOUND DRIVER
1247P: Kyle McMartin
1248M: kyle@parisc-linux.org
1249W: http://www.parisc-linux.org/~kyle/harmony/
1250L: parisc-linux@lists.parisc-linux.org
1251S: Maintained
1252
1253HAYES ESP SERIAL DRIVER
1254P: Andrew J. Robinson
1255M: arobinso@nyx.net
1256L: linux-kernel@vger.kernel.org
1257W: http://www.nyx.net/~arobinso
1258S: Maintained
1259
1260HFS FILESYSTEM
1261P: Roman Zippel
1262M: zippel@linux-m68k.org
1263L: linux-kernel@vger.kernel.org
1264S: Maintained
1265
1266HGA FRAMEBUFFER DRIVER
1267P: Ferenc Bakonyi
1268M: fero@drama.obuda.kando.hu
1269L: linux-nvidia@lists.surfsouth.com
1270W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1271S: Maintained
1272
1273HIGH-SPEED SCC DRIVER FOR AX.25
1274P: Klaus Kudielka
1275M: klaus.kudielka@ieee.org
1276L: linux-hams@vger.kernel.org
1277W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1278S: Maintained
1279
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001280HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1281P: HighPoint Linux Team
1282M: linux@highpoint-tech.com
1283W: http://www.highpoint-tech.com
1284S: Supported
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286HIPPI
1287P: Jes Sorensen
1288M: jes@trained-monkey.org
1289L: linux-hippi@sunsite.dk
1290S: Maintained
1291
1292HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1293P: Chirag Kantharia
1294M: chirag.kantharia@hp.com
1295L: iss_storagedev@hp.com
1296S: Maintained
1297
1298HEWLETT-PACKARD SMART2 RAID DRIVER
1299P: Chirag Kantharia
1300M: chirag.kantharia@hp.com
1301L: iss_storagedev@hp.com
1302S: Maintained
1303
1304HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1305P: Mike Miller
1306M: mike.miller@hp.com
1307L: iss_storagedev@hp.com
1308S: Supported
1309
Jouni Malinenff1d2762005-05-12 22:54:16 -04001310HOST AP DRIVER
1311P: Jouni Malinen
1312M: jkmaline@cc.hut.fi
1313L: hostap@shmoo.com
1314W: http://hostap.epitest.fi/
1315S: Maintained
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1318P: Jaroslav Kysela
1319M: perex@suse.cz
1320S: Maintained
1321
Bob Piccob9b03322005-11-07 00:59:19 -08001322HPET: High Precision Event Timers driver (hpet.c)
1323P: Clemens Ladisch
1324M: clemens@ladisch.de
1325S: Maintained
1326
1327HPET: i386
1328P: Venkatesh Pallipadi (Venki)
1329M: venkatesh.pallipadi@intel.com
1330S: Maintained
1331
1332HPET: x86_64
1333P: Andi Kleen and Vojtech Pavlik
1334M: ak@muc.de and vojtech@suse.cz
1335S: Maintained
1336
1337HPET: ACPI hpet.c
1338P: Bob Picco
1339M: bob.picco@hp.com
1340S: Maintained
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342HPFS FILESYSTEM
1343P: Mikulas Patocka
1344M: mikulas@artax.karlin.mff.cuni.cz
1345W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1346S: Maintained
1347
1348HUGETLB FILESYSTEM
1349P: William Irwin
1350M: wli@holomorphy.com
1351S: Maintained
1352
Jean Delvare5b543962005-08-15 19:51:02 +02001353I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354P: Jean Delvare
1355M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001356L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001357T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358S: Maintained
1359
1360I2O
1361P: Markus Lidel
1362M: markus.lidel@shadowconnect.com
1363W: http://i2o.shadowconnect.com/
1364S: Maintained
1365
1366i386 BOOT CODE
1367P: Riley H. Williams
1368M: Riley@Williams.Name
1369L: Linux-Kernel@vger.kernel.org
1370S: Maintained
1371
1372i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1373P: Dave Jones
1374M: davej@codemonkey.org.uk
1375P: H. Peter Anvin
1376M: hpa@zytor.com
1377S: Maintained
1378
1379i810 TCO TIMER WATCHDOG
1380P: Nils Faerber
1381M: nils@kernelconcepts.de
1382W: http://www.kernelconcepts.de/
1383S: Maintained
1384
1385IA64 (Itanium) PLATFORM
1386P: Tony Luck
1387M: tony.luck@intel.com
1388L: linux-ia64@vger.kernel.org
1389W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001390T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391S: Maintained
1392
1393SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001394P: Jes Sorensen
1395M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396L: linux-altix@sgi.com
1397L: linux-ia64@vger.kernel.org
1398W: http://www.sgi.com/altix
1399S: Maintained
1400
1401IBM MCA SCSI SUBSYSTEM DRIVER
1402P: Michael Lang
1403M: langa2@kph.uni-mainz.de
1404W: http://www.uni-mainz.de/~langm000/linux.html
1405S: Maintained
1406
1407IBM Power Linux RAID adapter
1408P: Brian King
1409M: brking@us.ibm.com
1410S: Supported
1411
1412IBM ServeRAID RAID DRIVER
1413P: Jack Hammer
1414P: Dave Jeffery
1415M: ipslinux@adaptec.com
1416W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1417S: Supported
1418
1419IDE DRIVER [GENERAL]
1420P: Bartlomiej Zolnierkiewicz
1421M: B.Zolnierkiewicz@elka.pw.edu.pl
1422L: linux-kernel@vger.kernel.org
1423L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001424T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425S: Maintained
1426
1427IDE/ATAPI CDROM DRIVER
1428P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001429M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430L: linux-kernel@vger.kernel.org
1431W: http://www.kernel.dk
1432S: Maintained
1433
1434IDE/ATAPI FLOPPY DRIVERS
1435P: Paul Bristow
1436M: Paul Bristow <paul@paulbristow.net>
1437W: http://paulbristow.net/linux/idefloppy.html
1438L: linux-kernel@vger.kernel.org
1439S: Maintained
1440
1441IDE/ATAPI TAPE DRIVERS
1442P: Gadi Oxman
1443M: Gadi Oxman <gadio@netvision.net.il>
1444L: linux-kernel@vger.kernel.org
1445S: Maintained
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447IEEE 1394 SUBSYSTEM
1448P: Ben Collins
1449M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001450P: Stefan Richter
1451M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452L: linux1394-devel@lists.sourceforge.net
1453W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001454T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455S: Maintained
1456
Stefan Richter87730d02006-09-16 12:24:00 +02001457IEEE 1394 IPV4 DRIVER (eth1394)
1458P: Stefan Richter
1459M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001461S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463IEEE 1394 PCILYNX DRIVER
1464P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001465M: scjody@modernduck.com
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
Stefan Richter87730d02006-09-16 12:24:00 +02001469S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471IEEE 1394 RAW I/O DRIVER
1472P: Ben Collins
1473M: bcollins@debian.org
1474P: Dan Dennedy
1475M: dan@dennedy.org
1476L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001477S: Maintained
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479IMS TWINTURBO FRAMEBUFFER DRIVER
1480P: Paul Mundt
1481M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001482L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483S: Maintained
1484
1485INFINIBAND SUBSYSTEM
1486P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001487M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488P: Sean Hefty
1489M: mshefty@ichips.intel.com
1490P: Hal Rosenstock
1491M: halr@voltaire.com
1492L: openib-general@openib.org
1493W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001494T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495S: Supported
1496
1497INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001498P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001499M: dmitry.torokhov@gmail.com
1500M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501L: linux-input@atrey.karlin.mff.cuni.cz
1502L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001503T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504S: Maintained
1505
Robert Lovec9f04f52005-07-15 12:21:07 -04001506INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001507P: John McCutchan
1508M: ttb@tentacle.dhs.org
1509P: Robert Love
1510M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001511L: linux-kernel@vger.kernel.org
1512S: Maintained
1513
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001514INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001515P: Sylvain Meyer
1516M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001517L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001518S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001521P: Antonino Daplas
1522M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001523L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001524S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1527P: Ingo Molnar
1528M: mingo@redhat.com
1529S: Maintained
1530
1531INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1532P: Jeff Garzik
1533M: jgarzik@pobox.com
1534W: http://sourceforge.net/projects/gkernel/
1535S: Maintained
1536
1537INTEL IA32 MICROCODE UPDATE SUPPORT
1538P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001539M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540S: Maintained
1541
Michael Buesch844dd052006-06-26 00:24:59 -07001542INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1543P: Deepak Saxena
1544M: dsaxena@plexity.net
1545S: Maintained
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547INTEL PRO/100 ETHERNET SUPPORT
1548P: John Ronciak
1549M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550P: Jesse Brandeburg
1551M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001552P: Jeff Kirsher
1553M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001554P: Auke Kok
1555M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556W: http://sourceforge.net/projects/e1000/
1557S: Supported
1558
1559INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1560P: Jeb Cramer
1561M: cramerj@intel.com
1562P: John Ronciak
1563M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001564P: Jesse Brandeburg
1565M: jesse.brandeburg@intel.com
1566P: Jeff Kirsher
1567M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001568P: Auke Kok
1569M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570W: http://sourceforge.net/projects/e1000/
1571S: Supported
1572
1573INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001574P: Jeff Kirsher
1575M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576P: Ayyappan Veeraiyan
1577M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578P: John Ronciak
1579M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001580P: Jesse Brandeburg
1581M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001582P: Auke Kok
1583M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584W: http://sourceforge.net/projects/e1000/
1585S: Supported
1586
James Ketrenos826d2ab2005-11-07 18:56:59 -06001587INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1588P: Yi Zhu
1589M: yi.zhu@intel.com
1590P: James Ketrenos
1591M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001592L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001593L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1594W: http://ipw2100.sourceforge.net
1595S: Supported
1596
1597INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1598P: Yi Zhu
1599M: yi.zhu@intel.com
1600P: James Ketrenos
1601M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001602L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001603L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1604W: http://ipw2200.sourceforge.net
1605S: Supported
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607IOC3 DRIVER
1608P: Ralf Baechle
1609M: ralf@linux-mips.org
1610L: linux-mips@linux-mips.org
1611S: Maintained
1612
1613IP MASQUERADING:
1614P: Juanjo Ciarlante
1615M: jjciarla@raiz.uncu.edu.ar
1616S: Maintained
1617
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001618IPATH DRIVER:
1619P: Bryan O'Sullivan
1620M: support@pathscale.com
1621L: openib-general@openib.org
1622S: Supported
1623
Corey Minyard4409ebe2006-04-20 02:43:12 -07001624IPMI SUBSYSTEM
1625P: Corey Minyard
1626M: minyard@acm.org
1627L: openipmi-developer@lists.sourceforge.net
1628W: http://openipmi.sourceforge.net/
1629S: Supported
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631IPX NETWORK LAYER
1632P: Arnaldo Carvalho de Melo
1633M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001634L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635S: Maintained
1636
1637IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001638P: Samuel Ortiz
1639M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001640L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001642S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644ISAPNP
1645P: Jaroslav Kysela
1646M: perex@suse.cz
1647S: Maintained
1648
1649ISDN SUBSYSTEM
1650P: Karsten Keil
1651M: kkeil@suse.de
1652P: Kai Germaschewski
1653M: kai.germaschewski@gmx.de
1654L: isdn4linux@listserv.isdn4linux.de
1655W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001656T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657S: Maintained
1658
1659ISDN SUBSYSTEM (Eicon active card driver)
1660P: Armin Schindler
1661M: mac@melware.de
1662L: isdn4linux@listserv.isdn4linux.de
1663W: http://www.melware.de
1664S: Maintained
1665
1666JOURNALLING FLASH FILE SYSTEM (JFFS)
1667P: Axis Communications AB
1668M: jffs-dev@axis.com
1669L: jffs-dev@axis.com
1670W: http://www.developer.axis.com/software/jffs/
1671S: Maintained
1672
1673JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1674P: David Woodhouse
1675M: dwmw2@infradead.org
1676L: jffs-dev@axis.com
1677W: http://sources.redhat.com/jffs2/
1678S: Maintained
1679
1680JFS FILESYSTEM
1681P: Dave Kleikamp
1682M: shaggy@austin.ibm.com
1683L: jfs-discussion@lists.sourceforge.net
1684W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001685T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686S: Supported
1687
Josh Triplettde456d32006-07-30 03:04:00 -07001688JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001689P: Stephen Tweedie, Andrew Morton
1690M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001691L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001692S: Maintained
1693
Rudolf Marek4660cb32006-10-08 22:01:26 +02001694K8TEMP HARDWARE MONITORING DRIVER
1695P: Rudolf Marek
1696M: r.marek@assembler.cz
1697L: lm-sensors@lm-sensors.org
1698S: Maintained
1699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700KCONFIG
1701P: Roman Zippel
1702M: zippel@linux-m68k.org
1703L: kbuild-devel@lists.sourceforge.net
1704S: Maintained
1705
Vivek Goyalea6c2082006-05-20 14:59:55 -07001706KDUMP
1707P: Vivek Goyal
1708M: vgoyal@in.ibm.com
1709P: Haren Myneni
1710M: hbabu@us.ibm.com
1711L: fastboot@lists.osdl.org
1712L: linux-kernel@vger.kernel.org
1713W: http://lse.sourceforge.net/kdump/
1714S: Maintained
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716KERNEL AUTOMOUNTER (AUTOFS)
1717P: H. Peter Anvin
1718M: hpa@zytor.com
1719L: autofs@linux.kernel.org
1720S: Odd Fixes
1721
1722KERNEL AUTOMOUNTER v4 (AUTOFS4)
1723P: Ian Kent
1724M: raven@themaw.net
1725L: autofs@linux.kernel.org
1726S: Maintained
1727
1728KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1729P: Kai Germaschewski
1730M: kai@germaschewski.name
1731P: Sam Ravnborg
1732M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001733T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734S: Maintained
1735
1736KERNEL JANITORS
1737P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001738L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740S: Maintained
1741
1742KERNEL NFSD
1743P: Neil Brown
1744M: neilb@cse.unsw.edu.au
1745L: nfs@lists.sourceforge.net
1746W: http://nfs.sourceforge.net/
1747W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1748S: Maintained
1749
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001750KEXEC
1751P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001752M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001753W: http://www.xmission.com/~ebiederm/files/kexec/
1754L: linux-kernel@vger.kernel.org
1755L: fastboot@osdl.org
1756S: Maintained
1757
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001758KPROBES
1759P: Prasanna S Panchamukhi
1760M: prasanna@in.ibm.com
1761P: Ananth N Mavinakayanahalli
1762M: ananth@in.ibm.com
1763P: Anil S Keshavamurthy
1764M: anil.s.keshavamurthy@intel.com
1765P: David S. Miller
1766M: davem@davemloft.net
1767L: linux-kernel@vger.kernel.org
1768S: Maintained
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001772S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774LASI 53c700 driver for PARISC
1775P: James E.J. Bottomley
1776M: James.Bottomley@HansenPartnership.com
1777L: linux-scsi@vger.kernel.org
1778S: Maintained
1779
Richard Purdie263de9b2006-05-15 09:44:16 -07001780LED SUBSYSTEM
1781P: Richard Purdie
1782M: rpurdie@rpsys.net
1783S: Maintained
1784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785LEGO USB Tower driver
1786P: Juergen Stuber
1787M: starblue@users.sourceforge.net
1788L: legousb-devel@lists.sourceforge.net
1789W: http://legousb.sourceforge.net/
1790S: Maintained
1791
1792LINUX FOR IBM pSERIES (RS/6000)
1793P: Paul Mackerras
1794M: paulus@au.ibm.com
1795W: http://www.ibm.com/linux/ltc/projects/ppc
1796S: Supported
1797
1798LINUX FOR NCR VOYAGER
1799P: James Bottomley
1800M: James.Bottomley@HansenPartnership.com
1801W: http://www.hansenpartnership.com/voyager
1802S: Maintained
1803
1804LINUX FOR POWERPC
1805P: Paul Mackerras
1806M: paulus@samba.org
1807W: http://www.penguinppc.org/
1808L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001809T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810S: Supported
1811
1812LINUX FOR POWER MACINTOSH
1813P: Benjamin Herrenschmidt
1814M: benh@kernel.crashing.org
1815W: http://www.penguinppc.org/
1816L: linuxppc-dev@ozlabs.org
1817S: Maintained
1818
1819LINUX FOR POWERPC EMBEDDED MPC52XX
1820P: Sylvain Munaut
1821M: tnt@246tNt.com
1822W: http://www.246tNt.com/mpc52xx/
1823W: http://www.penguinppc.org/
1824L: linuxppc-dev@ozlabs.org
1825L: linuxppc-embedded@ozlabs.org
1826S: Maintained
1827
1828LINUX FOR POWERPC EMBEDDED PPC4XX
1829P: Matt Porter
1830M: mporter@kernel.crashing.org
1831W: http://www.penguinppc.org/
1832L: linuxppc-embedded@ozlabs.org
1833S: Maintained
1834
Tom Rinie93adf12005-07-26 12:49:53 -07001835LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836P: Tom Rini
1837M: trini@kernel.crashing.org
1838W: http://www.penguinppc.org/
1839L: linuxppc-embedded@ozlabs.org
1840S: Maintained
1841
Tom Rinie93adf12005-07-26 12:49:53 -07001842LINUX FOR POWERPC EMBEDDED PPC8XX
1843P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001844M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001845W: http://www.penguinppc.org/
1846L: linuxppc-embedded@ozlabs.org
1847S: Maintained
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01001850P: Kumar Gala
1851M: galak@kernel.crashing.org
1852W: http://www.penguinppc.org/
1853L: linuxppc-embedded@ozlabs.org
1854S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Olof Johanssonab06ff32006-09-06 14:44:54 -05001856LINUX FOR POWERPC PA SEMI PWRFICIENT
1857P: Olof Johansson
1858M: olof@lixom.net
1859W: http://www.pasemi.com/
1860L: linuxppc-dev@ozlabs.org
1861S: Supported
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863LLC (802.2)
1864P: Arnaldo Carvalho de Melo
1865M: acme@conectiva.com.br
1866S: Maintained
1867
1868LINUX FOR 64BIT POWERPC
1869P: Paul Mackerras
1870M: paulus@samba.org
1871M: paulus@au.ibm.com
1872P: Anton Blanchard
1873M: anton@samba.org
1874M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001875W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001876L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877S: Supported
1878
1879LINUX SECURITY MODULE (LSM) FRAMEWORK
1880P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001881M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001882L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001884T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885S: Supported
1886
1887LM83 HARDWARE MONITOR DRIVER
1888P: Jean Delvare
1889M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001890L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891S: Maintained
1892
1893LM90 HARDWARE MONITOR DRIVER
1894P: Jean Delvare
1895M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001896L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897S: Maintained
1898
1899LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1900P: Richard Russon (FlatCap)
1901M: ldm@flatcap.org
1902L: ldm-devel@lists.sourceforge.net
1903W: http://ldm.sourceforge.net
1904S: Maintained
1905
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001906LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1907P: Eric Moore
1908M: Eric.Moore@lsil.com
1909M: support@lsil.com
1910L: mpt_linux_developer@lsil.com
1911L: linux-scsi@vger.kernel.org
1912W: http://www.lsilogic.com/support
1913S: Supported
1914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1916P: Matthew Wilcox
1917M: matthew@wil.cx
1918L: linux-scsi@vger.kernel.org
1919S: Maintained
1920
1921M68K ARCHITECTURE
1922P: Geert Uytterhoeven
1923M: geert@linux-m68k.org
1924P: Roman Zippel
1925M: zippel@linux-m68k.org
1926L: linux-m68k@lists.linux-m68k.org
1927W: http://www.linux-m68k.org/
1928W: http://linux-m68k-cvs.ubb.ca/
1929S: Maintained
1930
1931M68K ON APPLE MACINTOSH
1932P: Joshua Thompson
1933M: funaho@jurai.org
1934W: http://www.mac.linux-m68k.org/
1935L: linux-mac68k@mac.linux-m68k.org
1936S: Maintained
1937
1938M68K ON HP9000/300
1939P: Philip Blundell
1940M: philb@gnu.org
1941W: http://www.tazenda.demon.co.uk/phil/linux-hp
1942S: Maintained
1943
1944MARVELL YUKON / SYSKONNECT DRIVER
1945P: Mirko Lindner
1946M: mlindner@syskonnect.de
1947P: Ralph Roesler
1948M: rroesler@syskonnect.de
1949W: http://www.syskonnect.com
1950S: Supported
1951
Michael Kerriskfaf16682005-07-31 22:34:47 -07001952MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01001953P: Michael Kerrisk
1954M: mtk-manpages@gmx.net
1955W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1956S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07001957
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001958MARVELL MV643XX ETHERNET DRIVER
1959P: Dale Farnsworth
1960M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001962M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001963L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001964S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966MATROX FRAMEBUFFER DRIVER
1967P: Petr Vandrovec
1968M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001969L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970S: Maintained
1971
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001972MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01001973P: Neela Syam Kolli
1974M: Neela.Kolli@engenio.com
1975S: linux-scsi@vger.kernel.org
1976W: http://megaraid.lsilogic.com
1977S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001978
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001979MEMORY MANAGEMENT
1980L: linux-mm@kvack.org
1981L: linux-kernel@vger.kernel.org
1982W: http://www.linux-mm.org
1983S: Maintained
1984
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001985MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986P: David Woodhouse
1987M: dwmw2@infradead.org
1988W: http://www.linux-mtd.infradead.org/
1989L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001990T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991S: Maintained
1992
1993MICROTEK X6 SCANNER
1994P: Oliver Neukum
1995M: oliver@neukum.name
1996S: Maintained
1997
1998MIPS
1999P: Ralf Baechle
2000M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002001W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002003T: git www.linux-mips.org:/pub/scm/linux.git
2004S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006MISCELLANEOUS MCA-SUPPORT
2007P: James Bottomley
2008M: jejb@steeleye.com
2009L: linux-kernel@vger.kernel.org
2010S: Maintained
2011
2012MODULE SUPPORT
2013P: Rusty Russell
2014M: rusty@rustcorp.com.au
2015L: linux-kernel@vger.kernel.org
2016S: Maintained
2017
2018MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2019P: Stelian Pop
2020M: stelian@popies.net
2021W: http://popies.net/meye/
2022S: Maintained
2023
2024MOUSE AND MISC DEVICES [GENERAL]
2025P: Alessandro Rubini
2026M: rubini@ipvvis.unipv.it
2027L: linux-kernel@vger.kernel.org
2028S: Maintained
2029
Jiri Slabyd7354102006-12-08 02:38:35 -08002030MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2031P: Jiri Slaby
2032M: jirislaby@gmail.com
2033L: linux-kernel@vger.kernel.org
2034S: Maintained
2035
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002036MSI LAPTOP SUPPORT
2037P: Lennart Poettering
2038M: mzxreary@0pointer.de
2039L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2040W: http://0pointer.de/lennart/tchibo.html
2041S: Maintained
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043MTRR AND SIMILAR SUPPORT [i386]
2044P: Richard Gooch
2045M: rgooch@atnf.csiro.au
2046L: linux-kernel@vger.kernel.org
2047W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2048S: Maintained
2049
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002050MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2051P: Pierre Ossman
2052M: drzeus-mmc@drzeus.cx
2053L: linux-kernel@vger.kernel.org
2054S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056MULTISOUND SOUND DRIVER
2057P: Andrew Veliath
2058M: andrewtv@usa.net
2059S: Maintained
2060
Jiri Slabyd7354102006-12-08 02:38:35 -08002061MULTITECH MULTIPORT CARD (ISICOM)
2062P: Jiri Slaby
2063M: jirislaby@gmail.com
2064L: linux-kernel@vger.kernel.org
2065S: Maintained
2066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067NATSEMI ETHERNET DRIVER (DP8381x)
2068P: Tim Hockin
2069M: thockin@hockin.org
2070S: Maintained
2071
2072NCP FILESYSTEM
2073P: Petr Vandrovec
2074M: vandrove@vc.cvut.cz
2075L: linware@sh.cvut.cz
2076S: Maintained
2077
2078NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2079P: James E.J. Bottomley
2080M: James.Bottomley@HansenPartnership.com
2081L: linux-scsi@vger.kernel.org
2082S: Maintained
2083
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002084NETEM NETWORK EMULATOR
2085P: Stephen Hemminger
2086M: shemminger@osdl.org
2087L: netem@osdl.org
2088S: Maintained
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090NETFILTER/IPTABLES/IPCHAINS
2091P: Rusty Russell
2092P: Marc Boucher
2093P: James Morris
2094P: Harald Welte
2095P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002096P: Patrick McHardy
2097M: kaber@trash.net
2098L: netfilter-devel@lists.netfilter.org
2099L: netfilter@lists.netfilter.org
2100L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101W: http://www.netfilter.org/
2102W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103S: Supported
2104
Paul Moore4cc67732006-09-25 15:57:13 -07002105NETLABEL
2106P: Paul Moore
2107M: paul.moore@hp.com
2108W: http://netlabel.sf.net
2109L: netdev@vger.kernel.org
2110S: Supported
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112NETROM NETWORK LAYER
2113P: Ralf Baechle
2114M: ralf@linux-mips.org
2115L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002116W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117S: Maintained
2118
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002119NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120P: Paul Clements
2121M: Paul.Clements@steeleye.com
2122S: Maintained
2123
2124NETWORK DEVICE DRIVERS
2125P: Andrew Morton
2126M: akpm@osdl.org
2127P: Jeff Garzik
2128M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002129L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002130T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131S: Maintained
2132
2133NETWORKING [GENERAL]
2134P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002135M: netdev@vger.kernel.org
2136L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002137W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138S: Maintained
2139
2140NETWORKING [IPv4/IPv6]
2141P: David S. Miller
2142M: davem@davemloft.net
2143P: Alexey Kuznetsov
2144M: kuznet@ms2.inr.ac.ru
2145P: Pekka Savola (ipv6)
2146M: pekkas@netcore.fi
2147P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002148M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149P: Hideaki YOSHIFUJI
2150M: yoshfuji@linux-ipv6.org
2151P: Patrick McHardy
2152M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002153L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002154T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155S: Maintained
2156
John W. Linville29f8f632006-01-18 14:52:48 -08002157NETWORKING [WIRELESS]
2158P: John W. Linville
2159M: linville@tuxdriver.com
2160L: netdev@vger.kernel.org
2161T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2162S: Maintained
2163
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002164NETXEN (1/10) GbE SUPPORT
2165P: Amit S. Kale
2166M: amitkale@netxen.com
2167L: netdev@vger.kernel.org
2168W: http://www.netxen.com
2169S: Supported
2170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171IPVS
2172P: Wensong Zhang
2173M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002174P: Simon Horman
2175M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176P: Julian Anastasov
2177M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002178L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179S: Maintained
2180
2181NFS CLIENT
2182P: Trond Myklebust
2183M: trond.myklebust@fys.uio.no
2184L: linux-kernel@vger.kernel.org
2185S: Maintained
2186
2187NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002188P: Jan-Pascal van Best
2189M: janpascal@vanbest.org
2190P: Andreas Mohr
2191M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002192L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193S: Maintained
2194
2195NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2196P: YOKOTA Hiroshi
2197M: yokota@netlab.is.tsukuba.ac.jp
2198W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2199S: Maintained
2200
2201NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2202P: GOTO Masanori
2203M: gotom@debian.or.jp
2204P: YOKOTA Hiroshi
2205M: yokota@netlab.is.tsukuba.ac.jp
2206W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2207S: Maintained
2208
2209NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2210P: Eberhard Moenkeberg
2211M: emoenke@gwdg.de
2212L: linux-kernel@vger.kernel.org
2213S: Maintained
2214
2215NTFS FILESYSTEM
2216P: Anton Altaparmakov
2217M: aia21@cantab.net
2218L: linux-ntfs-dev@lists.sourceforge.net
2219L: linux-kernel@vger.kernel.org
2220W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002221T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222S: Maintained
2223
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002224NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002225P: Antonino Daplas
2226M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002227L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002228S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002230OPENCORES I2C BUS DRIVER
2231P: Peter Korsgaard
2232M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002233L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002234S: Maintained
2235
Mark Fashehccd979b2005-12-15 14:31:24 -08002236ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2237P: Mark Fasheh
2238M: mark.fasheh@oracle.com
2239P: Kurt Hackel
2240M: kurt.hackel@oracle.com
2241L: ocfs2-devel@oss.oracle.com
2242W: http://oss.oracle.com/projects/ocfs2/
2243S: Supported
2244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245OLYMPIC NETWORK DRIVER
2246P: Peter De Shrijver
2247M: p2@ace.ulyssis.student.kuleuven.ac.be
2248P: Mike Phillips
2249M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002250L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251L: linux-tr@linuxtr.net
2252W: http://www.linuxtr.net
2253S: Maintained
2254
Harald Weltec1986ee2005-11-13 16:06:29 -08002255OMNIKEY CARDMAN 4000 DRIVER
2256P: Harald Welte
2257M: laforge@gnumonks.org
2258S: Maintained
2259
Harald Welte77c44ab2005-11-13 16:06:26 -08002260OMNIKEY CARDMAN 4040 DRIVER
2261P: Harald Welte
2262M: laforge@gnumonks.org
2263S: Maintained
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265ONSTREAM SCSI TAPE DRIVER
2266P: Willem Riede
2267M: osst@riede.org
2268L: osst-users@lists.sourceforge.net
2269L: linux-scsi@vger.kernel.org
2270S: Maintained
2271
2272OPL3-SA2, SA3, and SAx DRIVER
2273P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002274M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275L: linux-sound@vger.kernel.org
2276S: Maintained
2277
2278OPROFILE
2279P: Philippe Elie
2280M: phil.el@wanadoo.fr
2281L: oprofile-list@lists.sf.net
2282S: Maintained
2283
2284ORINOCO DRIVER
2285P: Pavel Roskin
2286M: proski@gnu.org
2287P: David Gibson
2288M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002289L: orinoco-users@lists.sourceforge.net
2290L: orinoco-devel@lists.sourceforge.net
2291W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292S: Maintained
2293
2294PARALLEL PORT SUPPORT
2295P: Phil Blundell
2296M: philb@gnu.org
2297P: Tim Waugh
2298M: tim@cyberelk.net
2299P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300P: Andrea Arcangeli
2301M: andrea@suse.de
2302L: linux-parport@lists.infradead.org
2303W: http://people.redhat.com/twaugh/parport/
2304S: Maintained
2305
2306PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2307P: Tim Waugh
2308M: tim@cyberelk.net
2309L: linux-parport@lists.infradead.org
2310W: http://www.torque.net/linux-pp.html
2311S: Maintained
2312
2313PARISC ARCHITECTURE
2314P: Matthew Wilcox
2315M: matthew@wil.cx
2316P: Grant Grundler
2317M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002318P: Kyle McMartin
2319M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320L: parisc-linux@parisc-linux.org
2321W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002322T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2323T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324S: Maintained
2325
Jim Cromie1662d322006-10-06 00:43:59 -07002326PC87360 HARDWARE MONITORING DRIVER
2327P: Jim Cromie
2328M: jim.cromie@gmail.com
2329L: lm-sensors@lm-sensors.org
2330S: Maintained
2331
2332PC8736x GPIO DRIVER
2333P: Jim Cromie
2334M: jim.cromie@gmail.com
2335S: Maintained
2336
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002337PCI ERROR RECOVERY
2338P: Linas Vepstas
2339M: linas@austin.ibm.com
2340L: linux-kernel@vger.kernel.org
2341L: linux-pci@atrey.karlin.mff.cuni.cz
2342S: Supported
2343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2345P: Thomas Sailer
2346M: sailer@ife.ee.ethz.ch
2347L: linux-sound@vger.kernel.org
2348W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2349S: Maintained
2350
2351PCI SUBSYSTEM
2352P: Greg Kroah-Hartman
2353M: gregkh@suse.de
2354L: linux-kernel@vger.kernel.org
2355L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002356T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357S: Supported
2358
2359PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002360P: Kristen Carlson Accardi
2361M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362S: Supported
2363
2364PCI HOTPLUG COMPAQ DRIVER
2365P: Greg Kroah-Hartman
2366M: greg@kroah.com
2367S: Maintained
2368
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002369PCIE HOTPLUG DRIVER
2370P: Kristen Carlson Accardi
2371M: kristen.c.accardi@intel.com
2372L: pcihpd-discuss@lists.sourceforge.net
2373S: Maintained
2374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002376P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002377L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002379T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002380S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
2382PCNET32 NETWORK DRIVER
2383P: Thomas Bogendörfer
2384M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002385L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386S: Maintained
2387
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002388PER-TASK DELAY ACCOUNTING
2389P: Shailabh Nagar
2390M: nagar@watson.ibm.com
2391L: linux-kernel@vger.kernel.org
2392S: Maintained
2393
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002394PERSONALITY HANDLING
2395P: Christoph Hellwig
2396M: hch@infradead.org
2397L: linux-abi-devel@lists.sourceforge.net
2398S: Maintained
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400PHRAM MTD DRIVER
2401P: Jörn Engel
2402M: joern@wh.fh-wedel.de
2403L: linux-mtd@lists.infradead.org
2404S: Maintained
2405
Peter Osterlund249a6772005-09-27 21:45:30 -07002406PKTCDVD DRIVER
2407P: Peter Osterlund
2408M: petero2@telia.com
2409L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002410S: Maintained
2411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412POSIX CLOCKS and TIMERS
2413P: George Anzinger
2414M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002415L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416S: Supported
2417
Eugene Surovegin24682972005-10-14 03:00:53 -07002418POWERPC 4xx EMAC DRIVER
2419P: Eugene Surovegin
2420M: ebs@ebshome.net
2421W: http://kernel.ebshome.net/emac/
2422L: linuxppc-embedded@ozlabs.org
2423L: netdev@vger.kernel.org
2424S: Maintained
2425
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426PNP SUPPORT
2427P: Adam Belay
2428M: ambx1@neo.rr.com
2429S: Maintained
2430
2431PPP PROTOCOL DRIVERS AND COMPRESSORS
2432P: Paul Mackerras
2433M: paulus@samba.org
2434L: linux-ppp@vger.kernel.org
2435S: Maintained
2436
2437PPP OVER ATM (RFC 2364)
2438P: Mitchell Blank Jr
2439M: mitch@sfgoth.com
2440S: Maintained
2441
2442PPP OVER ETHERNET
2443P: Michal Ostrowski
2444M: mostrows@speakeasy.net
2445S: Maintained
2446
2447PREEMPTIBLE KERNEL
2448P: Robert Love
2449M: rml@tech9.net
2450L: linux-kernel@vger.kernel.org
2451L: kpreempt-tech@lists.sourceforge.net
2452W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2453S: Supported
2454
2455PRISM54 WIRELESS DRIVER
2456P: Prism54 Development Team
2457M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002458L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459W: http://prism54.org
2460S: Maintained
2461
2462PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2463P: Peter Denison
2464M: promise@pnd-pc.demon.co.uk
2465W: http://www.pnd-pc.demon.co.uk/promise/
2466S: Maintained
2467
Geoff Levandf58a9d12006-11-23 00:46:51 +01002468PS3 PLATFORM SUPPORT
2469P: Geoff Levand
2470M: geoffrey.levand@am.sony.com
2471L: linuxppc-dev@ozlabs.org
2472L: cbe-oss-dev@ozlabs.org
2473S: Supported
2474
Michael Krufky83202042006-07-03 00:24:18 -07002475PVRUSB2 VIDEO4LINUX DRIVER
2476P: Mike Isely
2477M: isely@pobox.com
2478L: pvrusb2@isely.net
2479L: video4linux-list@redhat.com
2480W: http://www.isely.net/pvrusb2/
2481S: Maintained
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483PXA2xx SUPPORT
2484P: Nicolas Pitre
2485M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002486L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487S: Maintained
2488
2489QLOGIC QLA2XXX FC-SCSI DRIVER
2490P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002491M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492L: linux-scsi@vger.kernel.org
2493S: Supported
2494
Ron Mercer5a4faa82006-07-25 00:40:21 -07002495QLOGIC QLA3XXX NETWORK DRIVER
2496P: Ron Mercer
2497M: linux-driver@qlogic.com
2498L: netdev@vger.kernel.org
2499S: Supported
2500
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501QNX4 FILESYSTEM
2502P: Anders Larsen
2503M: al@alarsen.net
2504L: linux-kernel@vger.kernel.org
2505W: http://www.alarsen.net/linux/qnx4fs/
2506S: Maintained
2507
2508RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002509P: Benjamin Herrenschmidt
2510M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002511L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512S: Maintained
2513
2514RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002515P: Paul Mackerras
2516M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002517L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518S: Maintained
2519
2520RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2521P: Corey Thomas
2522M: corey@world.std.com
2523L: linux-kernel@vger.kernel.org
2524S: Maintained
2525
Matt Mackall9e95ce22005-04-16 15:25:56 -07002526RANDOM NUMBER DRIVER
2527P: Matt Mackall
2528M: mpm@selenic.com
2529S: Maintained
2530
Matt Porter394b7012005-11-07 01:00:15 -08002531RAPIDIO SUBSYSTEM
2532P: Matt Porter
2533M: mporter@kernel.crashing.org
2534L: linux-kernel@vger.kernel.org
2535S: Maintained
2536
Josh Triplett595182b2006-10-04 02:17:21 -07002537READ-COPY UPDATE (RCU)
2538P: Dipankar Sarma
2539M: dipankar@in.ibm.com
2540W: http://www.rdrop.com/users/paulmck/rclock/
2541L: linux-kernel@vger.kernel.org
2542S: Supported
2543
2544RCUTORTURE MODULE
2545P: Josh Triplett
2546M: josh@freedesktop.org
2547L: linux-kernel@vger.kernel.org
2548S: Maintained
2549
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550REAL TIME CLOCK DRIVER
2551P: Paul Gortmaker
2552M: p_gortmaker@yahoo.com
2553L: linux-kernel@vger.kernel.org
2554S: Maintained
2555
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002556REAL TIME CLOCK (RTC) SUBSYSTEM
2557P: Alessandro Zummo
2558M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002559L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002560S: Maintained
2561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562REISERFS FILE SYSTEM
2563P: Hans Reiser
2564M: reiserfs-dev@namesys.com
2565L: reiserfs-list@namesys.com
2566W: http://www.namesys.com
2567S: Supported
2568
2569ROCKETPORT DRIVER
2570P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571W: http://www.comtrol.com
2572S: Maintained
2573
2574ROSE NETWORK LAYER
2575P: Ralf Baechle
2576M: ralf@linux-mips.org
2577L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002578W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579S: Maintained
2580
2581RISCOM8 DRIVER
2582S: Orphan
2583
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002584S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002585P: Antonino Daplas
2586M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002587L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002588S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002589
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590S390
2591P: Martin Schwidefsky
2592M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002593P: Heiko Carstens
2594M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595M: linux390@de.ibm.com
2596L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002597W: http://www.ibm.com/developerworks/linux/linux390/
2598S: Supported
2599
2600S390 NETWORK DRIVERS
2601P: Frank Pavlic
2602M: fpavlic@de.ibm.com
2603M: linux390@de.ibm.com
2604L: linux-390@vm.marist.edu
2605W: http://www.ibm.com/developerworks/linux/linux390/
2606S: Supported
2607
2608S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002609P: Swen Schillig
2610M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002611M: linux390@de.ibm.com
2612L: linux-390@vm.marist.edu
2613W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614S: Supported
2615
2616SAA7146 VIDEO4LINUX-2 DRIVER
2617P: Michael Hunold
2618M: michael@mihu.de
2619W: http://www.mihu.de/linux/saa7146
2620S: Maintained
2621
2622SBPCD CDROM DRIVER
2623P: Eberhard Moenkeberg
2624M: emoenke@gwdg.de
2625L: linux-kernel@vger.kernel.org
2626S: Maintained
2627
2628SC1200 WDT DRIVER
2629P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002630M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631S: Maintained
2632
2633SCHEDULER
2634P: Ingo Molnar
2635M: mingo@elte.hu
2636P: Robert Love [the preemptible kernel bits]
2637M: rml@tech9.net
2638L: linux-kernel@vger.kernel.org
2639S: Maintained
2640
2641SCSI CDROM DRIVER
2642P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002643M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644L: linux-scsi@vger.kernel.org
2645W: http://www.kernel.dk
2646S: Maintained
2647
2648SCSI SG DRIVER
2649P: Doug Gilbert
2650M: dgilbert@interlog.com
2651L: linux-scsi@vger.kernel.org
2652W: http://www.torque.net/sg
2653S: Maintained
2654
2655SCSI SUBSYSTEM
2656P: James E.J. Bottomley
2657M: James.Bottomley@SteelEye.com
2658L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002659T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660S: Maintained
2661
2662SCSI TAPE DRIVER
2663P: Kai Mäkisara
2664M: Kai.Makisara@kolumbus.fi
2665L: linux-scsi@vger.kernel.org
2666S: Maintained
2667
2668SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002669P: Sridhar Samudrala
2670M: sri@us.ibm.com
2671L: lksctp-developers@lists.sourceforge.net
2672S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
2674SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002675P: Jim Cromie
2676M: jim.cromie@gmail.com
2677S: Odd Fixes
2678
2679SCx200 GPIO DRIVER
2680P: Jim Cromie
2681M: jim.cromie@gmail.com
2682S: Maintained
2683
2684SCx200 HRT CLOCKSOURCE DRIVER
2685P: Jim Cromie
2686M: jim.cromie@gmail.com
2687S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
2689SECURITY CONTACT
2690P: Security Officers
2691M: security@kernel.org
2692S: Supported
2693
2694SELINUX SECURITY MODULE
2695P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002696M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002698M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699L: linux-kernel@vger.kernel.org (kernel issues)
2700L: selinux@tycho.nsa.gov (general discussion)
2701W: http://www.nsa.gov/selinux
2702S: Supported
2703
2704SERIAL ATA (SATA) SUBSYSTEM:
2705P: Jeff Garzik
2706M: jgarzik@pobox.com
2707L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002708T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709S: Supported
2710
2711SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2712P: Pat Gefre
2713M: pfg@sgi.com
2714L: linux-ia64@vger.kernel.org
2715S: Supported
2716
2717SGI VISUAL WORKSTATION 320 AND 540
2718P: Andrey Panin
2719M: pazke@donpac.ru
2720L: linux-visws-devel@lists.sf.net
2721W: http://linux-visws.sf.net
2722S: Maintained for 2.6.
2723
2724SIMTEC EB110ATX (Chalice CATS)
2725P: Ben Dooks
2726P: Vincent Sanders
2727M: support@simtec.co.uk
2728W: http://www.simtec.co.uk/products/EB110ATX/
2729S: Supported
2730
2731SIMTEC EB2410ITX (BAST)
2732P: Ben Dooks
2733P: Vincent Sanders
2734M: support@simtec.co.uk
2735W: http://www.simtec.co.uk/products/EB2410ITX/
2736S: Supported
2737
Francois Romieu92aab3c2005-07-30 13:11:18 +02002738SIS 190 ETHERNET DRIVER
2739P: Francois Romieu
2740M: romieu@fr.zoreil.com
2741L: netdev@vger.kernel.org
2742S: Maintained
2743
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744SIS 5513 IDE CONTROLLER DRIVER
2745P: Lionel Bouton
2746M: Lionel.Bouton@inet6.fr
2747W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2748W: http://gyver.homeip.net/sis5513/index.html
2749S: Maintained
2750
2751SIS 900/7016 FAST ETHERNET DRIVER
2752P: Daniele Venzano
2753M: venza@brownhat.org
2754W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002755L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756S: Maintained
2757
2758SIS FRAMEBUFFER DRIVER
2759P: Thomas Winischhofer
2760M: thomas@winischhofer.net
2761W: http://www.winischhofer.net/linuxsisvga.shtml
2762S: Maintained
2763
2764SIS USB2VGA DRIVER
2765P: Thomas Winischhofer
2766M: thomas@winischhofer.net
2767W: http://www.winischhofer.at/linuxsisusbvga.shtml
2768S: Maintained
2769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770SMC91x ETHERNET DRIVER
2771P: Nicolas Pitre
2772M: nico@cam.org
2773S: Maintained
2774
Daniel Drake8f0f8502006-07-18 22:00:25 +01002775SOFTMAC LAYER (IEEE 802.11)
2776P: Johannes Berg
2777M: johannes@sipsolutions.net
2778P: Joe Jezak
2779M: josejx@gentoo.org
2780P: Daniel Drake
2781M: dsd@gentoo.org
2782W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002783L: netdev@vger.kernel.org
2784S: Maintained
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786SOFTWARE RAID (Multiple Disks) SUPPORT
2787P: Ingo Molnar
2788M: mingo@redhat.com
2789P: Neil Brown
2790M: neilb@cse.unsw.edu.au
2791L: linux-raid@vger.kernel.org
2792S: Maintained
2793
2794SOFTWARE SUSPEND:
2795P: Pavel Machek
2796M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002797L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798S: Maintained
2799
2800SONIC NETWORK DRIVER
2801P: Thomas Bogendoerfer
2802M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002803L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804S: Maintained
2805
2806SONY VAIO CONTROL DEVICE DRIVER
2807P: Stelian Pop
2808M: stelian@popies.net
2809W: http://popies.net/sonypi/
2810S: Maintained
2811
2812SOUND
2813P: Jaroslav Kysela
2814M: perex@suse.cz
2815L: alsa-devel@alsa-project.org
2816S: Maintained
2817
Kumar Gala025c3982006-04-02 16:05:54 -05002818SPI SUBSYSTEM
2819P: David Brownell
2820M: dbrownell@users.sourceforge.net
2821L: spi-devel-general@lists.sourceforge.net
2822S: Maintained
2823
Steven Rostedt855f46a2006-08-05 12:14:50 -07002824STABLE BRANCH:
2825P: Greg Kroah-Hartman
2826M: greg@kroah.com
2827P: Chris Wright
2828M: chrisw@sous-sol.org
2829L: stable@kernel.org
2830S: Maintained
2831
Kylene Hall1c72d462005-05-01 08:59:13 -07002832TPM DEVICE DRIVER
2833P: Kylene Hall
2834M: kjhall@us.ibm.com
2835W: http://tpmdd.sourceforge.net
2836L: tpmdd-devel@lists.sourceforge.net
2837S: Maintained
2838
Mark Gross1a80ba82005-10-30 15:02:55 -08002839Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002840P: Mark Gross
2841M: mark.gross@intel.com
2842S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08002843
Chris Zankel48b415c2005-06-23 22:01:07 -07002844TENSILICA XTENSA PORT (xtensa):
2845P: Chris Zankel
2846M: chris@zankel.net
2847S: Maintained
2848
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849UltraSPARC (sparc64):
2850P: David S. Miller
2851M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002853T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854S: Maintained
2855
2856SHARP LH SUPPORT (LH7952X & LH7A40X)
2857P: Marc Singer
2858M: elf@buici.com
2859W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002860L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861S: Maintained
2862
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002863SHPC HOTPLUG DRIVER
2864P: Kristen Carlson Accardi
2865M: kristen.c.accardi@intel.com
2866L: pcihpd-discuss@lists.sourceforge.net
2867S: Maintained
2868
Pierre Ossmand129bce2006-03-24 03:18:17 -08002869SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2870P: Pierre Ossman
2871M: drzeus-sdhci@drzeus.cx
2872L: sdhci-devel@list.drzeus.cx
2873W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2874S: Maintained
2875
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002876SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2877P: Stephen Hemminger
2878M: shemminger@osdl.org
2879L: netdev@vger.kernel.org
2880S: Maintained
2881
Chris Boot1a87d942006-07-10 04:45:34 -07002882SOEKRIS NET48XX LED SUPPORT
2883P: Chris Boot
2884M: bootc@bootc.net
2885S: Maintained
2886
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887SPARC (sparc32):
2888P: William L. Irwin
2889M: wli@holomorphy.com
2890L: sparclinux@vger.kernel.org
2891S: Maintained
2892
2893SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2894P: Roger Wolff
2895M: R.E.Wolff@BitWizard.nl
2896L: linux-kernel@vger.kernel.org ?
2897S: Supported
2898
Jim Lewis2752e402006-09-29 02:01:19 -07002899SPIDERNET NETWORK DRIVER for CELL
2900P: Jim Lewis
2901M: jim@jklewis.com
2902L: netdev@vger.kernel.org
2903S: Supported
2904
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905SRM (Alpha) environment access
2906P: Jan-Benedict Glaw
2907M: jbglaw@lug-owl.de
2908L: linux-kernel@vger.kernel.org
2909S: Maintained
2910
2911STARFIRE/DURALAN NETWORK DRIVER
2912P: Ion Badulescu
2913M: ionut@cs.columbia.edu
2914S: Maintained
2915
2916STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2917W: http://mosquitonet.Stanford.EDU/strip.html
2918S: Unsupported ?
2919
2920STRADIS MPEG-2 DECODER DRIVER
2921P: Nathan Laredo
2922M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923W: http://www.stradis.com/
2924S: Maintained
2925
2926SUPERH (sh)
2927P: Paul Mundt
2928M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002929L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931S: Maintained
2932
2933SUPERH64 (sh64)
2934P: Paul Mundt
2935M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936L: linuxsh-shmedia-dev@lists.sourceforge.net
2937W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938S: Maintained
2939
2940SUN3/3X
2941P: Sam Creasey
2942M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943W: http://sammy.net/sun3/
2944S: Maintained
2945
2946SVGA HANDLING
2947P: Martin Mares
2948M: mj@ucw.cz
2949L: linux-video@atrey.karlin.mff.cuni.cz
2950S: Maintained
2951
2952SYSV FILESYSTEM
2953P: Christoph Hellwig
2954M: hch@infradead.org
2955S: Maintained
2956
Stephen Hemminger781b4562006-07-10 20:25:29 -07002957TC CLASSIFIER
2958P: Jamal Hadi Salim
2959M: hadi@cyberus.ca
2960L: netdev@vger.kernel.org
2961S: Maintained
2962
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002963TCP LOW PRIORITY MODULE
2964P: Wong Hoi Sing, Edison
2965M: hswong3i@gmail.com
2966P: Hung Hing Lun, Mike
2967M: hlhung3i@gmail.com
2968W: http://tcp-lp-mod.sourceforge.net/
2969S: Maintained
2970
Alex Dubov4020f2d2006-10-04 02:15:37 -07002971TI FLASH MEDIA INTERFACE DRIVER
2972P: Alex Dubov
2973M: oakad@yahoo.com
2974S: Maintained
2975
Michael Buesch844dd052006-06-26 00:24:59 -07002976TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2977P: Deepak Saxena
2978M: dsaxena@plexity.net
2979S: Maintained
2980
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002981TASKSTATS STATISTICS INTERFACE
2982P: Shailabh Nagar
2983M: nagar@watson.ibm.com
2984L: linux-kernel@vger.kernel.org
2985S: Maintained
2986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002988P: Romain Lievin
2989M: roms@lpg.ticalc.org
2990S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
Per Lidene86eaa32006-01-12 16:45:18 +01002992TIPC NETWORK LAYER
2993P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002994M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002995P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002996M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002997P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002998M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002999L: tipc-discussion@lists.sourceforge.net
3000W: http://tipc.sourceforge.net/
3001W: http://tipc.cslab.ericsson.net/
3002T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3003S: Maintained
3004
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005TLAN NETWORK DRIVER
3006P: Samuel Chessman
3007M: chessman@tux.org
3008L: tlan-devel@lists.sourceforge.net
3009W: http://sourceforge.net/projects/tlan/
3010S: Maintained
3011
3012TOKEN-RING NETWORK DRIVER
3013P: Mike Phillips
3014M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003015L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016L: linux-tr@linuxtr.net
3017W: http://www.linuxtr.net
3018S: Maintained
3019
3020TOSHIBA ACPI EXTRAS DRIVER
3021P: John Belmonte
3022M: toshiba_acpi@memebeam.org
3023W: http://memebeam.org/toys/ToshibaAcpiDriver
3024S: Maintained
3025
3026TOSHIBA SMM DRIVER
3027P: Jonathan Buzzard
3028M: jonathan@buzzard.org.uk
3029L: tlinux-users@tce.toshiba-dme.co.jp
3030W: http://www.buzzard.org.uk/toshiba/
3031S: Maintained
3032
3033TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3034P: Muli Ben-Yehuda
3035M: mulix@mulix.org
3036L: linux-kernel@vger.kernel.org
3037S: Maintained
3038
3039TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003040P: Adrian Bunk
3041M: trivial@kernel.org
3042L: linux-kernel@vger.kernel.org
3043W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3044T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3045S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046
3047TMS380 TOKEN-RING NETWORK DRIVER
3048P: Adam Fritzler
3049M: mid@auk.cx
3050L: linux-tr@linuxtr.net
3051W: http://www.auk.cx/tms380tr/
3052S: Maintained
3053
3054TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003055P: Valerie Henson
3056M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057L: tulip-users@lists.sourceforge.net
3058W: http://sourceforge.net/projects/tulip/
3059S: Maintained
3060
3061TUN/TAP driver
3062P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003063M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064L: vtun@office.satix.net
3065W: http://vtun.sourceforge.net/tun
3066S: Maintained
3067
3068U14-34F SCSI DRIVER
3069P: Dario Ballabio
3070M: ballabio_dario@emc.com
3071L: linux-scsi@vger.kernel.org
3072S: Maintained
3073
3074UDF FILESYSTEM
3075P: Ben Fennema
3076M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077W: http://linux-udf.sourceforge.net
3078S: Maintained
3079
3080UNIFORM CDROM DRIVER
3081P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003082M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083L: linux-kernel@vger.kernel.org
3084W: http://www.kernel.dk
3085S: Maintained
3086
3087USB ACM DRIVER
3088P: Oliver Neukum
3089M: oliver@neukum.name
3090L: linux-usb-users@lists.sourceforge.net
3091L: linux-usb-devel@lists.sourceforge.net
3092S: Maintained
3093
3094USB BLOCK DRIVER (UB ub)
3095P: Pete Zaitcev
3096M: zaitcev@redhat.com
3097L: linux-kernel@vger.kernel.org
3098L: linux-usb-devel@lists.sourceforge.net
3099S: Supported
3100
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101USB CDC ETHERNET DRIVER
3102P: Greg Kroah-Hartman
3103M: greg@kroah.com
3104L: linux-usb-users@lists.sourceforge.net
3105L: linux-usb-devel@lists.sourceforge.net
3106S: Maintained
3107W: http://www.kroah.com/linux-usb/
3108
3109USB EHCI DRIVER
3110P: David Brownell
3111M: dbrownell@users.sourceforge.net
3112L: linux-usb-devel@lists.sourceforge.net
3113S: Maintained
3114
Luca Risolia7ce08c92006-01-11 02:06:59 +00003115USB ET61X[12]51 DRIVER
3116P: Luca Risolia
3117M: luca.risolia@studio.unibo.it
3118L: linux-usb-devel@lists.sourceforge.net
3119L: video4linux-list@redhat.com
3120W: http://www.linux-projects.org
3121S: Maintained
3122
David Brownell69ae9e32006-11-14 02:03:31 -08003123USB GADGET/PERIPHERAL SUBSYSTEM
3124P: David Brownell
3125M: dbrownell@users.sourceforge.net
3126L: linux-usb-devel@lists.sourceforge.net
3127W: http://www.linux-usb.org/gadget
3128S: Maintained
3129
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130USB HID/HIDBP DRIVERS
3131P: Vojtech Pavlik
3132M: vojtech@suse.cz
3133L: linux-usb-users@lists.sourceforge.net
3134L: linux-usb-devel@lists.sourceforge.net
3135S: Maintained
3136
3137USB HUB DRIVER
3138P: Johannes Erdfelt
3139M: johannes@erdfelt.com
3140L: linux-usb-users@lists.sourceforge.net
3141L: linux-usb-devel@lists.sourceforge.net
3142S: Maintained
3143
Olav Kongas959eea22005-11-03 17:38:14 +02003144USB ISP116X DRIVER
3145P: Olav Kongas
3146M: ok@artecdesign.ee
3147L: linux-usb-devel@lists.sourceforge.net
3148S: Maintained
3149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150USB KAWASAKI LSI DRIVER
3151P: Oliver Neukum
3152M: oliver@neukum.name
3153L: linux-usb-users@lists.sourceforge.net
3154L: linux-usb-devel@lists.sourceforge.net
3155S: Maintained
3156
3157USB MASS STORAGE DRIVER
3158P: Matthew Dharm
3159M: mdharm-usb@one-eyed-alien.net
3160L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003161L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162S: Maintained
3163W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3164
3165USB OHCI DRIVER
3166P: Roman Weissgaerber
3167M: weissg@vienna.at
3168L: linux-usb-users@lists.sourceforge.net
3169L: linux-usb-devel@lists.sourceforge.net
3170S: Maintained
3171
Matthias Urlichsba460e42005-07-14 00:33:47 -07003172USB OPTION-CARD DRIVER
3173P: Matthias Urlichs
3174M: smurf@smurf.noris.de
3175L: linux-usb-devel@lists.sourceforge.net
3176S: Maintained
3177
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178USB OV511 DRIVER
3179P: Mark McClelland
3180M: mmcclell@bigfoot.com
3181L: linux-usb-users@lists.sourceforge.net
3182L: linux-usb-devel@lists.sourceforge.net
3183W: http://alpha.dyndns.org/ov511/
3184S: Maintained
3185
3186USB PEGASUS DRIVER
3187P: Petko Manolov
3188M: petkan@users.sourceforge.net
3189L: linux-usb-users@lists.sourceforge.net
3190L: linux-usb-devel@lists.sourceforge.net
3191W: http://pegasus2.sourceforge.net/
3192S: Maintained
3193
3194USB PRINTER DRIVER
3195P: Vojtech Pavlik
3196M: vojtech@suse.cz
3197L: linux-usb-users@lists.sourceforge.net
3198L: linux-usb-devel@lists.sourceforge.net
3199S: Maintained
3200
3201USB RTL8150 DRIVER
3202P: Petko Manolov
3203M: petkan@users.sourceforge.net
3204L: linux-usb-users@lists.sourceforge.net
3205L: linux-usb-devel@lists.sourceforge.net
3206W: http://pegasus2.sourceforge.net/
3207S: Maintained
3208
3209USB SE401 DRIVER
3210P: Jeroen Vreeken
3211M: pe1rxq@amsat.org
3212L: linux-usb-users@lists.sourceforge.net
3213L: linux-usb-devel@lists.sourceforge.net
3214W: http://www.chello.nl/~j.vreeken/se401/
3215S: Maintained
3216
3217USB SERIAL CYBERJACK DRIVER
3218P: Matthias Bruestle and Harald Welte
3219M: support@reiner-sct.com
3220W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3221S: Maintained
3222
3223USB SERIAL DIGI ACCELEPORT DRIVER
3224P: Peter Berger and Al Borchers
3225M: pberger@brimson.com
3226M: alborchers@steinerpoint.com
3227L: linux-usb-users@lists.sourceforge.net
3228L: linux-usb-devel@lists.sourceforge.net
3229S: Maintained
3230
3231USB SERIAL DRIVER
3232P: Greg Kroah-Hartman
3233M: gregkh@suse.de
3234L: linux-usb-users@lists.sourceforge.net
3235L: linux-usb-devel@lists.sourceforge.net
3236S: Supported
3237
3238USB SERIAL BELKIN F5U103 DRIVER
3239P: William Greathouse
3240M: wgreathouse@smva.com
3241L: linux-usb-users@lists.sourceforge.net
3242L: linux-usb-devel@lists.sourceforge.net
3243S: Maintained
3244
3245USB SERIAL CYPRESS M8 DRIVER
3246P: Lonnie Mendez
3247M: dignome@gmail.com
3248L: linux-usb-users@lists.sourceforge.net
3249L: linux-usb-devel@lists.sourceforge.net
3250S: Maintained
3251W: http://geocities.com/i0xox0i
3252W: http://firstlight.net/cvs
3253
3254USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3255L: linux-usb-users@lists.sourceforge.net
3256L: linux-usb-devel@lists.sourceforge.net
3257S: Maintained
3258
3259USB AUERSWALD DRIVER
3260P: Wolfgang Muees
3261M: wolfgang@iksw-muees.de
3262L: linux-usb-users@lists.sourceforge.net
3263L: linux-usb-devel@lists.sourceforge.net
3264S: Maintained
3265
3266USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3267P: Gary Brubaker
3268M: xavyer@ix.netcom.com
3269L: linux-usb-users@lists.sourceforge.net
3270L: linux-usb-devel@lists.sourceforge.net
3271S: Maintained
3272
3273USB SERIAL KEYSPAN DRIVER
3274P: Greg Kroah-Hartman
3275M: greg@kroah.com
3276L: linux-usb-users@lists.sourceforge.net
3277L: linux-usb-devel@lists.sourceforge.net
3278W: http://www.kroah.com/linux/
3279S: Maintained
3280
3281USB SERIAL WHITEHEAT DRIVER
3282P: Stuart MacDonald
3283M: stuartm@connecttech.com
3284L: linux-usb-users@lists.sourceforge.net
3285L: linux-usb-devel@lists.sourceforge.net
3286W: http://www.connecttech.com
3287S: Supported
3288
3289USB SN9C10x DRIVER
3290P: Luca Risolia
3291M: luca.risolia@studio.unibo.it
3292L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003293L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294W: http://www.linux-projects.org
3295S: Maintained
3296
3297USB SUBSYSTEM
3298P: Greg Kroah-Hartman
3299M: gregkh@suse.de
3300L: linux-usb-users@lists.sourceforge.net
3301L: linux-usb-devel@lists.sourceforge.net
3302W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003303T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304S: Supported
3305
3306USB UHCI DRIVER
3307P: Alan Stern
3308M: stern@rowland.harvard.edu
3309L: linux-usb-users@lists.sourceforge.net
3310L: linux-usb-devel@lists.sourceforge.net
3311S: Maintained
3312
David Brownell69ae9e32006-11-14 02:03:31 -08003313USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314P: David Brownell
3315M: dbrownell@users.sourceforge.net
3316L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003317W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318S: Maintained
3319
3320USB W996[87]CF DRIVER
3321P: Luca Risolia
3322M: luca.risolia@studio.unibo.it
3323L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003324L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325W: http://www.linux-projects.org
3326S: Maintained
3327
Luca Risolia60f78052006-02-06 16:29:35 +00003328USB ZC0301 DRIVER
3329P: Luca Risolia
3330M: luca.risolia@studio.unibo.it
3331L: linux-usb-devel@lists.sourceforge.net
3332L: video4linux-list@redhat.com
3333W: http://www.linux-projects.org
3334S: Maintained
3335
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336USB ZD1201 DRIVER
3337P: Jeroen Vreeken
3338M: pe1rxq@amsat.org
3339L: linux-usb-users@lists.sourceforge.net
3340L: linux-usb-devel@lists.sourceforge.net
3341W: http://linux-lc100020.sourceforge.net
3342S: Maintained
3343
3344USER-MODE LINUX
3345P: Jeff Dike
3346M: jdike@karaya.com
3347L: user-mode-linux-devel@lists.sourceforge.net
3348L: user-mode-linux-user@lists.sourceforge.net
3349W: http://user-mode-linux.sourceforge.net
3350S: Maintained
3351
3352FAT/VFAT/MSDOS FILESYSTEM:
3353P: OGAWA Hirofumi
3354M: hirofumi@mail.parknet.co.jp
3355L: linux-kernel@vger.kernel.org
3356S: Maintained
3357
3358VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3359P: Jeff Garzik
3360S: Odd fixes
3361
3362VIA RHINE NETWORK DRIVER
3363P: Roger Luethi
3364M: rl@hellgate.ch
3365S: Maintained
3366
Jean Delvare32c0a522005-09-22 21:47:58 +02003367VIAPRO SMBUS DRIVER
3368P: Jean Delvare
3369M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003370L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003371S: Maintained
3372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373UCLINUX (AND M68KNOMMU)
3374P: Greg Ungerer
3375M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003377L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378S: Maintained
3379
3380UCLINUX FOR NEC V850
3381P: Miles Bader
3382M: uclinux-v850@lsi.nec.co.jp
3383W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3384W: http://www.ee.nec.de/uclinux/
3385S: Supported
3386
3387UCLINUX FOR RENESAS H8/300
3388P: Yoshinori Sato
3389M: ysato@users.sourceforge.jp
3390W: http://uclinux-h8.sourceforge.jp/
3391S: Supported
3392
3393USB DIAMOND RIO500 DRIVER
3394P: Cesar Miquel
3395M: miquel@df.uba.ar
3396L: rio500-users@lists.sourceforge.net
3397W: http://rio500.sourceforge.net
3398S: Maintained
3399
3400VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003401P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003402M: mchehab@infradead.org
3403M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003405W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003406T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003407S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Juerg Haefligerab413192006-09-24 20:54:04 +02003409VT1211 HARDWARE MONITOR DRIVER
3410P: Juerg Haefliger
3411M: juergh@gmail.com
3412L: lm-sensors@lm-sensors.org
3413S: Maintained
3414
Roger Lucas1de9e372005-11-26 20:20:05 +01003415VT8231 HARDWARE MONITOR DRIVER
3416P: Roger Lucas
3417M: roger@planbit.co.uk
3418L: lm-sensors@lm-sensors.org
3419S: Maintained
3420
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421W1 DALLAS'S 1-WIRE BUS
3422P: Evgeniy Polyakov
3423M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424S: Maintained
3425
Charles Spirakis13927072006-07-05 18:05:15 +02003426W83791D HARDWARE MONITORING DRIVER
3427P: Charles Spirakis
3428M: bezaur@gmail.com
3429L: lm-sensors@lm-sensors.org
3430S: Maintained
3431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432W83L51xD SD/MMC CARD INTERFACE DRIVER
3433P: Pierre Ossman
3434M: drzeus-wbsd@drzeus.cx
3435L: wbsd-devel@list.drzeus.cx
3436W: http://projects.drzeus.cx/wbsd
3437S: Maintained
3438
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003439WATCHDOG DEVICE DRIVERS
3440P: Wim Van Sebroeck
3441M: wim@iguana.be
3442T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3443S: Maintained
3444
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3446P: Jean Tourrilhes
3447M: jt@hpl.hp.com
3448W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3449S: Maintained
3450
3451WD7000 SCSI DRIVER
3452P: Miroslav Zagorac
3453M: zaga@fly.cc.fer.hr
3454L: linux-scsi@vger.kernel.org
3455S: Maintained
3456
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003457WISTRON LAPTOP BUTTON DRIVER
3458P: Miloslav Trmac
3459M: mitr@volny.cz
3460S: Maintained
3461
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462WL3501 WIRELESS PCMCIA CARD DRIVER
3463P: Arnaldo Carvalho de Melo
3464M: acme@conectiva.com.br
3465W: http://advogato.org/person/acme
3466S: Maintained
3467
3468X.25 NETWORK LAYER
3469P: Henner Eisen
3470M: eis@baty.hanse.de
3471L: linux-x25@vger.kernel.org
3472S: Maintained
3473
3474XFS FILESYSTEM
3475P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003476P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003478L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003480T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481S: Supported
3482
Peter Korsgaard238b8722006-12-06 20:35:17 -08003483XILINX UARTLITE SERIAL DRIVER
3484P: Peter Korsgaard
3485M: jacmet@sunsite.dk
3486L: linux-serial@vger.kernel.org
3487S: Maintained
3488
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489X86 3-LEVEL PAGING (PAE) SUPPORT
3490P: Ingo Molnar
3491M: mingo@redhat.com
3492S: Maintained
3493
3494X86-64 port
3495P: Andi Kleen
3496M: ak@suse.de
3497L: discuss@x86-64.org
3498W: http://www.x86-64.org
3499S: Maintained
3500
3501YAM DRIVER FOR AX.25
3502P: Jean-Paul Roubelat
3503M: jpr@f6fbb.org
3504L: linux-hams@vger.kernel.org
3505S: Maintained
3506
Henkaf64a5e2005-10-12 15:02:56 +02003507YEALINK PHONE DRIVER
3508P: Henk Vergonet
3509M: Henk.Vergonet@gmail.com
3510L: usbb2k-api-dev@nongnu.org
3511S: Maintained
3512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513Z8530 DRIVER FOR AX.25
3514P: Joerg Reuter
3515M: jreuter@yaina.de
3516W: http://yaina.de/jreuter/
3517W: http://www.qsl.net/dl1bke/
3518L: linux-hams@vger.kernel.org
3519S: Maintained
3520
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003521ZD1211RW WIRELESS DRIVER
3522P: Daniel Drake
3523M: dsd@gentoo.org
3524P: Ulrich Kunitz
3525M: kune@deine-taler.de
3526W: http://zd1211.ath.cx/wiki/DriverRewrite
3527L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3528S: Maintained
3529
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530ZF MACHZ WATCHDOG
3531P: Fernando Fuganti
3532M: fuganti@netbank.com.br
3533W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3534S: Maintained
3535
3536ZR36067 VIDEO FOR LINUX DRIVER
3537P: Ronald Bultje
3538M: rbultje@ronald.bitfreak.net
3539L: mjpeg-users@lists.sourceforge.net
3540W: http://mjpeg.sourceforge.net/driver-zoran/
3541S: Maintained
3542
3543ZR36120 VIDEO FOR LINUX DRIVER
3544P: Pauline Middelink
3545M: middelin@polyware.nl
3546W: http://www.polyware.nl/~middelin/En/hobbies.html
3547W: http://www.polyware.nl/~middelin/hobbies.html
3548S: Maintained
3549
3550THE REST
3551P: Linus Torvalds
3552S: Buried alive in reporters