blob: 89ef018cc4bcbddc40bfba2951ade0940ee5b1f4 [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
687L: linux-fbdev-devel@lists.sourceforge.net
688S: 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
794L: linux-fbdev-devel@lists.sourceforge.net
795S: 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
1131L: linux-fbdev-devel@lists.sourceforge.net
1132W: 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
1482L: linux-fbdev-devel@lists.sourceforge.net
1483S: 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
1507P: John McCutchan and Robert Love
1508M: ttb@tentacle.dhs.org and rml@novell.com
1509L: linux-kernel@vger.kernel.org
1510S: Maintained
1511
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001512INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001513P: Sylvain Meyer
1514M: sylvain.meyer@worldonline.fr
1515L: linux-fbdev-devel@lists.sourceforge.net
1516S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001519P: Antonino Daplas
1520M: adaplas@pol.net
1521L: linux-fbdev-devel@lists.sourceforge.net
1522S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1525P: Ingo Molnar
1526M: mingo@redhat.com
1527S: Maintained
1528
1529INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1530P: Jeff Garzik
1531M: jgarzik@pobox.com
1532W: http://sourceforge.net/projects/gkernel/
1533S: Maintained
1534
1535INTEL IA32 MICROCODE UPDATE SUPPORT
1536P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001537M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538S: Maintained
1539
Michael Buesch844dd052006-06-26 00:24:59 -07001540INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1541P: Deepak Saxena
1542M: dsaxena@plexity.net
1543S: Maintained
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545INTEL PRO/100 ETHERNET SUPPORT
1546P: John Ronciak
1547M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548P: Jesse Brandeburg
1549M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001550P: Jeff Kirsher
1551M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001552P: Auke Kok
1553M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554W: http://sourceforge.net/projects/e1000/
1555S: Supported
1556
1557INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1558P: Jeb Cramer
1559M: cramerj@intel.com
1560P: John Ronciak
1561M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001562P: Jesse Brandeburg
1563M: jesse.brandeburg@intel.com
1564P: Jeff Kirsher
1565M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001566P: Auke Kok
1567M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568W: http://sourceforge.net/projects/e1000/
1569S: Supported
1570
1571INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001572P: Jeff Kirsher
1573M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574P: Ayyappan Veeraiyan
1575M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576P: John Ronciak
1577M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001578P: Jesse Brandeburg
1579M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001580P: Auke Kok
1581M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582W: http://sourceforge.net/projects/e1000/
1583S: Supported
1584
James Ketrenos826d2ab2005-11-07 18:56:59 -06001585INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1586P: Yi Zhu
1587M: yi.zhu@intel.com
1588P: James Ketrenos
1589M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001590L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001591L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1592W: http://ipw2100.sourceforge.net
1593S: Supported
1594
1595INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1596P: Yi Zhu
1597M: yi.zhu@intel.com
1598P: James Ketrenos
1599M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001600L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001601L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1602W: http://ipw2200.sourceforge.net
1603S: Supported
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605IOC3 DRIVER
1606P: Ralf Baechle
1607M: ralf@linux-mips.org
1608L: linux-mips@linux-mips.org
1609S: Maintained
1610
1611IP MASQUERADING:
1612P: Juanjo Ciarlante
1613M: jjciarla@raiz.uncu.edu.ar
1614S: Maintained
1615
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001616IPATH DRIVER:
1617P: Bryan O'Sullivan
1618M: support@pathscale.com
1619L: openib-general@openib.org
1620S: Supported
1621
Corey Minyard4409ebe2006-04-20 02:43:12 -07001622IPMI SUBSYSTEM
1623P: Corey Minyard
1624M: minyard@acm.org
1625L: openipmi-developer@lists.sourceforge.net
1626W: http://openipmi.sourceforge.net/
1627S: Supported
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629IPX NETWORK LAYER
1630P: Arnaldo Carvalho de Melo
1631M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001632L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633S: Maintained
1634
1635IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001636P: Samuel Ortiz
1637M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001638L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001640S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642ISAPNP
1643P: Jaroslav Kysela
1644M: perex@suse.cz
1645S: Maintained
1646
1647ISDN SUBSYSTEM
1648P: Karsten Keil
1649M: kkeil@suse.de
1650P: Kai Germaschewski
1651M: kai.germaschewski@gmx.de
1652L: isdn4linux@listserv.isdn4linux.de
1653W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001654T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655S: Maintained
1656
1657ISDN SUBSYSTEM (Eicon active card driver)
1658P: Armin Schindler
1659M: mac@melware.de
1660L: isdn4linux@listserv.isdn4linux.de
1661W: http://www.melware.de
1662S: Maintained
1663
1664JOURNALLING FLASH FILE SYSTEM (JFFS)
1665P: Axis Communications AB
1666M: jffs-dev@axis.com
1667L: jffs-dev@axis.com
1668W: http://www.developer.axis.com/software/jffs/
1669S: Maintained
1670
1671JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1672P: David Woodhouse
1673M: dwmw2@infradead.org
1674L: jffs-dev@axis.com
1675W: http://sources.redhat.com/jffs2/
1676S: Maintained
1677
1678JFS FILESYSTEM
1679P: Dave Kleikamp
1680M: shaggy@austin.ibm.com
1681L: jfs-discussion@lists.sourceforge.net
1682W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001683T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684S: Supported
1685
Josh Triplettde456d32006-07-30 03:04:00 -07001686JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001687P: Stephen Tweedie, Andrew Morton
1688M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001689L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001690S: Maintained
1691
Rudolf Marek4660cb32006-10-08 22:01:26 +02001692K8TEMP HARDWARE MONITORING DRIVER
1693P: Rudolf Marek
1694M: r.marek@assembler.cz
1695L: lm-sensors@lm-sensors.org
1696S: Maintained
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698KCONFIG
1699P: Roman Zippel
1700M: zippel@linux-m68k.org
1701L: kbuild-devel@lists.sourceforge.net
1702S: Maintained
1703
Vivek Goyalea6c2082006-05-20 14:59:55 -07001704KDUMP
1705P: Vivek Goyal
1706M: vgoyal@in.ibm.com
1707P: Haren Myneni
1708M: hbabu@us.ibm.com
1709L: fastboot@lists.osdl.org
1710L: linux-kernel@vger.kernel.org
1711W: http://lse.sourceforge.net/kdump/
1712S: Maintained
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714KERNEL AUTOMOUNTER (AUTOFS)
1715P: H. Peter Anvin
1716M: hpa@zytor.com
1717L: autofs@linux.kernel.org
1718S: Odd Fixes
1719
1720KERNEL AUTOMOUNTER v4 (AUTOFS4)
1721P: Ian Kent
1722M: raven@themaw.net
1723L: autofs@linux.kernel.org
1724S: Maintained
1725
1726KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1727P: Kai Germaschewski
1728M: kai@germaschewski.name
1729P: Sam Ravnborg
1730M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001731T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732S: Maintained
1733
1734KERNEL JANITORS
1735P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001736L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738S: Maintained
1739
1740KERNEL NFSD
1741P: Neil Brown
1742M: neilb@cse.unsw.edu.au
1743L: nfs@lists.sourceforge.net
1744W: http://nfs.sourceforge.net/
1745W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1746S: Maintained
1747
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001748KEXEC
1749P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001750M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001751W: http://www.xmission.com/~ebiederm/files/kexec/
1752L: linux-kernel@vger.kernel.org
1753L: fastboot@osdl.org
1754S: Maintained
1755
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001756KPROBES
1757P: Prasanna S Panchamukhi
1758M: prasanna@in.ibm.com
1759P: Ananth N Mavinakayanahalli
1760M: ananth@in.ibm.com
1761P: Anil S Keshavamurthy
1762M: anil.s.keshavamurthy@intel.com
1763P: David S. Miller
1764M: davem@davemloft.net
1765L: linux-kernel@vger.kernel.org
1766S: Maintained
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001770S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772LASI 53c700 driver for PARISC
1773P: James E.J. Bottomley
1774M: James.Bottomley@HansenPartnership.com
1775L: linux-scsi@vger.kernel.org
1776S: Maintained
1777
Richard Purdie263de9b2006-05-15 09:44:16 -07001778LED SUBSYSTEM
1779P: Richard Purdie
1780M: rpurdie@rpsys.net
1781S: Maintained
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783LEGO USB Tower driver
1784P: Juergen Stuber
1785M: starblue@users.sourceforge.net
1786L: legousb-devel@lists.sourceforge.net
1787W: http://legousb.sourceforge.net/
1788S: Maintained
1789
1790LINUX FOR IBM pSERIES (RS/6000)
1791P: Paul Mackerras
1792M: paulus@au.ibm.com
1793W: http://www.ibm.com/linux/ltc/projects/ppc
1794S: Supported
1795
1796LINUX FOR NCR VOYAGER
1797P: James Bottomley
1798M: James.Bottomley@HansenPartnership.com
1799W: http://www.hansenpartnership.com/voyager
1800S: Maintained
1801
1802LINUX FOR POWERPC
1803P: Paul Mackerras
1804M: paulus@samba.org
1805W: http://www.penguinppc.org/
1806L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001807T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808S: Supported
1809
1810LINUX FOR POWER MACINTOSH
1811P: Benjamin Herrenschmidt
1812M: benh@kernel.crashing.org
1813W: http://www.penguinppc.org/
1814L: linuxppc-dev@ozlabs.org
1815S: Maintained
1816
1817LINUX FOR POWERPC EMBEDDED MPC52XX
1818P: Sylvain Munaut
1819M: tnt@246tNt.com
1820W: http://www.246tNt.com/mpc52xx/
1821W: http://www.penguinppc.org/
1822L: linuxppc-dev@ozlabs.org
1823L: linuxppc-embedded@ozlabs.org
1824S: Maintained
1825
1826LINUX FOR POWERPC EMBEDDED PPC4XX
1827P: Matt Porter
1828M: mporter@kernel.crashing.org
1829W: http://www.penguinppc.org/
1830L: linuxppc-embedded@ozlabs.org
1831S: Maintained
1832
Tom Rinie93adf12005-07-26 12:49:53 -07001833LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834P: Tom Rini
1835M: trini@kernel.crashing.org
1836W: http://www.penguinppc.org/
1837L: linuxppc-embedded@ozlabs.org
1838S: Maintained
1839
Tom Rinie93adf12005-07-26 12:49:53 -07001840LINUX FOR POWERPC EMBEDDED PPC8XX
1841P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001842M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001843W: http://www.penguinppc.org/
1844L: linuxppc-embedded@ozlabs.org
1845S: Maintained
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01001848P: Kumar Gala
1849M: galak@kernel.crashing.org
1850W: http://www.penguinppc.org/
1851L: linuxppc-embedded@ozlabs.org
1852S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Olof Johanssonab06ff32006-09-06 14:44:54 -05001854LINUX FOR POWERPC PA SEMI PWRFICIENT
1855P: Olof Johansson
1856M: olof@lixom.net
1857W: http://www.pasemi.com/
1858L: linuxppc-dev@ozlabs.org
1859S: Supported
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861LLC (802.2)
1862P: Arnaldo Carvalho de Melo
1863M: acme@conectiva.com.br
1864S: Maintained
1865
1866LINUX FOR 64BIT POWERPC
1867P: Paul Mackerras
1868M: paulus@samba.org
1869M: paulus@au.ibm.com
1870P: Anton Blanchard
1871M: anton@samba.org
1872M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001873W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001874L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875S: Supported
1876
1877LINUX SECURITY MODULE (LSM) FRAMEWORK
1878P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001879M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001880L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001882T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883S: Supported
1884
1885LM83 HARDWARE MONITOR DRIVER
1886P: Jean Delvare
1887M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001888L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889S: Maintained
1890
1891LM90 HARDWARE MONITOR DRIVER
1892P: Jean Delvare
1893M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001894L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895S: Maintained
1896
1897LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1898P: Richard Russon (FlatCap)
1899M: ldm@flatcap.org
1900L: ldm-devel@lists.sourceforge.net
1901W: http://ldm.sourceforge.net
1902S: Maintained
1903
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001904LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1905P: Eric Moore
1906M: Eric.Moore@lsil.com
1907M: support@lsil.com
1908L: mpt_linux_developer@lsil.com
1909L: linux-scsi@vger.kernel.org
1910W: http://www.lsilogic.com/support
1911S: Supported
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1914P: Matthew Wilcox
1915M: matthew@wil.cx
1916L: linux-scsi@vger.kernel.org
1917S: Maintained
1918
1919M68K ARCHITECTURE
1920P: Geert Uytterhoeven
1921M: geert@linux-m68k.org
1922P: Roman Zippel
1923M: zippel@linux-m68k.org
1924L: linux-m68k@lists.linux-m68k.org
1925W: http://www.linux-m68k.org/
1926W: http://linux-m68k-cvs.ubb.ca/
1927S: Maintained
1928
1929M68K ON APPLE MACINTOSH
1930P: Joshua Thompson
1931M: funaho@jurai.org
1932W: http://www.mac.linux-m68k.org/
1933L: linux-mac68k@mac.linux-m68k.org
1934S: Maintained
1935
1936M68K ON HP9000/300
1937P: Philip Blundell
1938M: philb@gnu.org
1939W: http://www.tazenda.demon.co.uk/phil/linux-hp
1940S: Maintained
1941
1942MARVELL YUKON / SYSKONNECT DRIVER
1943P: Mirko Lindner
1944M: mlindner@syskonnect.de
1945P: Ralph Roesler
1946M: rroesler@syskonnect.de
1947W: http://www.syskonnect.com
1948S: Supported
1949
Michael Kerriskfaf16682005-07-31 22:34:47 -07001950MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01001951P: Michael Kerrisk
1952M: mtk-manpages@gmx.net
1953W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1954S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07001955
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001956MARVELL MV643XX ETHERNET DRIVER
1957P: Dale Farnsworth
1958M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001960M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001961L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001962S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964MATROX FRAMEBUFFER DRIVER
1965P: Petr Vandrovec
1966M: vandrove@vc.cvut.cz
1967L: linux-fbdev-devel@lists.sourceforge.net
1968S: Maintained
1969
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001970MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01001971P: Neela Syam Kolli
1972M: Neela.Kolli@engenio.com
1973S: linux-scsi@vger.kernel.org
1974W: http://megaraid.lsilogic.com
1975S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001976
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001977MEMORY MANAGEMENT
1978L: linux-mm@kvack.org
1979L: linux-kernel@vger.kernel.org
1980W: http://www.linux-mm.org
1981S: Maintained
1982
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001983MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984P: David Woodhouse
1985M: dwmw2@infradead.org
1986W: http://www.linux-mtd.infradead.org/
1987L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001988T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989S: Maintained
1990
1991MICROTEK X6 SCANNER
1992P: Oliver Neukum
1993M: oliver@neukum.name
1994S: Maintained
1995
1996MIPS
1997P: Ralf Baechle
1998M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01001999W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002001T: git www.linux-mips.org:/pub/scm/linux.git
2002S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004MISCELLANEOUS MCA-SUPPORT
2005P: James Bottomley
2006M: jejb@steeleye.com
2007L: linux-kernel@vger.kernel.org
2008S: Maintained
2009
2010MODULE SUPPORT
2011P: Rusty Russell
2012M: rusty@rustcorp.com.au
2013L: linux-kernel@vger.kernel.org
2014S: Maintained
2015
2016MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2017P: Stelian Pop
2018M: stelian@popies.net
2019W: http://popies.net/meye/
2020S: Maintained
2021
2022MOUSE AND MISC DEVICES [GENERAL]
2023P: Alessandro Rubini
2024M: rubini@ipvvis.unipv.it
2025L: linux-kernel@vger.kernel.org
2026S: Maintained
2027
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002028MSI LAPTOP SUPPORT
2029P: Lennart Poettering
2030M: mzxreary@0pointer.de
2031L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2032W: http://0pointer.de/lennart/tchibo.html
2033S: Maintained
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035MTRR AND SIMILAR SUPPORT [i386]
2036P: Richard Gooch
2037M: rgooch@atnf.csiro.au
2038L: linux-kernel@vger.kernel.org
2039W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2040S: Maintained
2041
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002042MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2043P: Pierre Ossman
2044M: drzeus-mmc@drzeus.cx
2045L: linux-kernel@vger.kernel.org
2046S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048MULTISOUND SOUND DRIVER
2049P: Andrew Veliath
2050M: andrewtv@usa.net
2051S: Maintained
2052
2053NATSEMI ETHERNET DRIVER (DP8381x)
2054P: Tim Hockin
2055M: thockin@hockin.org
2056S: Maintained
2057
2058NCP FILESYSTEM
2059P: Petr Vandrovec
2060M: vandrove@vc.cvut.cz
2061L: linware@sh.cvut.cz
2062S: Maintained
2063
2064NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2065P: James E.J. Bottomley
2066M: James.Bottomley@HansenPartnership.com
2067L: linux-scsi@vger.kernel.org
2068S: Maintained
2069
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002070NETEM NETWORK EMULATOR
2071P: Stephen Hemminger
2072M: shemminger@osdl.org
2073L: netem@osdl.org
2074S: Maintained
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076NETFILTER/IPTABLES/IPCHAINS
2077P: Rusty Russell
2078P: Marc Boucher
2079P: James Morris
2080P: Harald Welte
2081P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002082P: Patrick McHardy
2083M: kaber@trash.net
2084L: netfilter-devel@lists.netfilter.org
2085L: netfilter@lists.netfilter.org
2086L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087W: http://www.netfilter.org/
2088W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089S: Supported
2090
Paul Moore4cc67732006-09-25 15:57:13 -07002091NETLABEL
2092P: Paul Moore
2093M: paul.moore@hp.com
2094W: http://netlabel.sf.net
2095L: netdev@vger.kernel.org
2096S: Supported
2097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098NETROM NETWORK LAYER
2099P: Ralf Baechle
2100M: ralf@linux-mips.org
2101L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002102W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103S: Maintained
2104
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002105NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106P: Paul Clements
2107M: Paul.Clements@steeleye.com
2108S: Maintained
2109
2110NETWORK DEVICE DRIVERS
2111P: Andrew Morton
2112M: akpm@osdl.org
2113P: Jeff Garzik
2114M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002115L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002116T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117S: Maintained
2118
2119NETWORKING [GENERAL]
2120P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002121M: netdev@vger.kernel.org
2122L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002123W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124S: Maintained
2125
2126NETWORKING [IPv4/IPv6]
2127P: David S. Miller
2128M: davem@davemloft.net
2129P: Alexey Kuznetsov
2130M: kuznet@ms2.inr.ac.ru
2131P: Pekka Savola (ipv6)
2132M: pekkas@netcore.fi
2133P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002134M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135P: Hideaki YOSHIFUJI
2136M: yoshfuji@linux-ipv6.org
2137P: Patrick McHardy
2138M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002139L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002140T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141S: Maintained
2142
John W. Linville29f8f632006-01-18 14:52:48 -08002143NETWORKING [WIRELESS]
2144P: John W. Linville
2145M: linville@tuxdriver.com
2146L: netdev@vger.kernel.org
2147T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2148S: Maintained
2149
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002150NETXEN (1/10) GbE SUPPORT
2151P: Amit S. Kale
2152M: amitkale@netxen.com
2153L: netdev@vger.kernel.org
2154W: http://www.netxen.com
2155S: Supported
2156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157IPVS
2158P: Wensong Zhang
2159M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002160P: Simon Horman
2161M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162P: Julian Anastasov
2163M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002164L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165S: Maintained
2166
2167NFS CLIENT
2168P: Trond Myklebust
2169M: trond.myklebust@fys.uio.no
2170L: linux-kernel@vger.kernel.org
2171S: Maintained
2172
2173NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002174P: Jan-Pascal van Best
2175M: janpascal@vanbest.org
2176P: Andreas Mohr
2177M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002178L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179S: Maintained
2180
2181NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2182P: YOKOTA Hiroshi
2183M: yokota@netlab.is.tsukuba.ac.jp
2184W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2185S: Maintained
2186
2187NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2188P: GOTO Masanori
2189M: gotom@debian.or.jp
2190P: YOKOTA Hiroshi
2191M: yokota@netlab.is.tsukuba.ac.jp
2192W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2193S: Maintained
2194
2195NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2196P: Eberhard Moenkeberg
2197M: emoenke@gwdg.de
2198L: linux-kernel@vger.kernel.org
2199S: Maintained
2200
2201NTFS FILESYSTEM
2202P: Anton Altaparmakov
2203M: aia21@cantab.net
2204L: linux-ntfs-dev@lists.sourceforge.net
2205L: linux-kernel@vger.kernel.org
2206W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002207T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208S: Maintained
2209
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002210NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002211P: Antonino Daplas
2212M: adaplas@pol.net
2213L: linux-fbdev-devel@lists.sourceforge.net
2214S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002216OPENCORES I2C BUS DRIVER
2217P: Peter Korsgaard
2218M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002219L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002220S: Maintained
2221
Mark Fashehccd979b2005-12-15 14:31:24 -08002222ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2223P: Mark Fasheh
2224M: mark.fasheh@oracle.com
2225P: Kurt Hackel
2226M: kurt.hackel@oracle.com
2227L: ocfs2-devel@oss.oracle.com
2228W: http://oss.oracle.com/projects/ocfs2/
2229S: Supported
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231OLYMPIC NETWORK DRIVER
2232P: Peter De Shrijver
2233M: p2@ace.ulyssis.student.kuleuven.ac.be
2234P: Mike Phillips
2235M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002236L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237L: linux-tr@linuxtr.net
2238W: http://www.linuxtr.net
2239S: Maintained
2240
Harald Weltec1986ee2005-11-13 16:06:29 -08002241OMNIKEY CARDMAN 4000 DRIVER
2242P: Harald Welte
2243M: laforge@gnumonks.org
2244S: Maintained
2245
Harald Welte77c44ab2005-11-13 16:06:26 -08002246OMNIKEY CARDMAN 4040 DRIVER
2247P: Harald Welte
2248M: laforge@gnumonks.org
2249S: Maintained
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251ONSTREAM SCSI TAPE DRIVER
2252P: Willem Riede
2253M: osst@riede.org
2254L: osst-users@lists.sourceforge.net
2255L: linux-scsi@vger.kernel.org
2256S: Maintained
2257
2258OPL3-SA2, SA3, and SAx DRIVER
2259P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002260M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261L: linux-sound@vger.kernel.org
2262S: Maintained
2263
2264OPROFILE
2265P: Philippe Elie
2266M: phil.el@wanadoo.fr
2267L: oprofile-list@lists.sf.net
2268S: Maintained
2269
2270ORINOCO DRIVER
2271P: Pavel Roskin
2272M: proski@gnu.org
2273P: David Gibson
2274M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002275L: orinoco-users@lists.sourceforge.net
2276L: orinoco-devel@lists.sourceforge.net
2277W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278S: Maintained
2279
2280PARALLEL PORT SUPPORT
2281P: Phil Blundell
2282M: philb@gnu.org
2283P: Tim Waugh
2284M: tim@cyberelk.net
2285P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286P: Andrea Arcangeli
2287M: andrea@suse.de
2288L: linux-parport@lists.infradead.org
2289W: http://people.redhat.com/twaugh/parport/
2290S: Maintained
2291
2292PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2293P: Tim Waugh
2294M: tim@cyberelk.net
2295L: linux-parport@lists.infradead.org
2296W: http://www.torque.net/linux-pp.html
2297S: Maintained
2298
2299PARISC ARCHITECTURE
2300P: Matthew Wilcox
2301M: matthew@wil.cx
2302P: Grant Grundler
2303M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002304P: Kyle McMartin
2305M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306L: parisc-linux@parisc-linux.org
2307W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002308T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2309T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310S: Maintained
2311
Jim Cromie1662d322006-10-06 00:43:59 -07002312PC87360 HARDWARE MONITORING DRIVER
2313P: Jim Cromie
2314M: jim.cromie@gmail.com
2315L: lm-sensors@lm-sensors.org
2316S: Maintained
2317
2318PC8736x GPIO DRIVER
2319P: Jim Cromie
2320M: jim.cromie@gmail.com
2321S: Maintained
2322
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002323PCI ERROR RECOVERY
2324P: Linas Vepstas
2325M: linas@austin.ibm.com
2326L: linux-kernel@vger.kernel.org
2327L: linux-pci@atrey.karlin.mff.cuni.cz
2328S: Supported
2329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2331P: Thomas Sailer
2332M: sailer@ife.ee.ethz.ch
2333L: linux-sound@vger.kernel.org
2334W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2335S: Maintained
2336
2337PCI SUBSYSTEM
2338P: Greg Kroah-Hartman
2339M: gregkh@suse.de
2340L: linux-kernel@vger.kernel.org
2341L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002342T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343S: Supported
2344
2345PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002346P: Kristen Carlson Accardi
2347M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348S: Supported
2349
2350PCI HOTPLUG COMPAQ DRIVER
2351P: Greg Kroah-Hartman
2352M: greg@kroah.com
2353S: Maintained
2354
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002355PCIE HOTPLUG DRIVER
2356P: Kristen Carlson Accardi
2357M: kristen.c.accardi@intel.com
2358L: pcihpd-discuss@lists.sourceforge.net
2359S: Maintained
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002362P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002363L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002365T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002366S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368PCNET32 NETWORK DRIVER
2369P: Thomas Bogendörfer
2370M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002371L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372S: Maintained
2373
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002374PER-TASK DELAY ACCOUNTING
2375P: Shailabh Nagar
2376M: nagar@watson.ibm.com
2377L: linux-kernel@vger.kernel.org
2378S: Maintained
2379
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002380PERSONALITY HANDLING
2381P: Christoph Hellwig
2382M: hch@infradead.org
2383L: linux-abi-devel@lists.sourceforge.net
2384S: Maintained
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386PHRAM MTD DRIVER
2387P: Jörn Engel
2388M: joern@wh.fh-wedel.de
2389L: linux-mtd@lists.infradead.org
2390S: Maintained
2391
Peter Osterlund249a6772005-09-27 21:45:30 -07002392PKTCDVD DRIVER
2393P: Peter Osterlund
2394M: petero2@telia.com
2395L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002396S: Maintained
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398POSIX CLOCKS and TIMERS
2399P: George Anzinger
2400M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002401L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402S: Supported
2403
Eugene Surovegin24682972005-10-14 03:00:53 -07002404POWERPC 4xx EMAC DRIVER
2405P: Eugene Surovegin
2406M: ebs@ebshome.net
2407W: http://kernel.ebshome.net/emac/
2408L: linuxppc-embedded@ozlabs.org
2409L: netdev@vger.kernel.org
2410S: Maintained
2411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412PNP SUPPORT
2413P: Adam Belay
2414M: ambx1@neo.rr.com
2415S: Maintained
2416
2417PPP PROTOCOL DRIVERS AND COMPRESSORS
2418P: Paul Mackerras
2419M: paulus@samba.org
2420L: linux-ppp@vger.kernel.org
2421S: Maintained
2422
2423PPP OVER ATM (RFC 2364)
2424P: Mitchell Blank Jr
2425M: mitch@sfgoth.com
2426S: Maintained
2427
2428PPP OVER ETHERNET
2429P: Michal Ostrowski
2430M: mostrows@speakeasy.net
2431S: Maintained
2432
2433PREEMPTIBLE KERNEL
2434P: Robert Love
2435M: rml@tech9.net
2436L: linux-kernel@vger.kernel.org
2437L: kpreempt-tech@lists.sourceforge.net
2438W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2439S: Supported
2440
2441PRISM54 WIRELESS DRIVER
2442P: Prism54 Development Team
2443M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002444L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445W: http://prism54.org
2446S: Maintained
2447
2448PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2449P: Peter Denison
2450M: promise@pnd-pc.demon.co.uk
2451W: http://www.pnd-pc.demon.co.uk/promise/
2452S: Maintained
2453
Geoff Levandf58a9d12006-11-23 00:46:51 +01002454PS3 PLATFORM SUPPORT
2455P: Geoff Levand
2456M: geoffrey.levand@am.sony.com
2457L: linuxppc-dev@ozlabs.org
2458L: cbe-oss-dev@ozlabs.org
2459S: Supported
2460
Michael Krufky83202042006-07-03 00:24:18 -07002461PVRUSB2 VIDEO4LINUX DRIVER
2462P: Mike Isely
2463M: isely@pobox.com
2464L: pvrusb2@isely.net
2465L: video4linux-list@redhat.com
2466W: http://www.isely.net/pvrusb2/
2467S: Maintained
2468
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469PXA2xx SUPPORT
2470P: Nicolas Pitre
2471M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002472L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473S: Maintained
2474
2475QLOGIC QLA2XXX FC-SCSI DRIVER
2476P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002477M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478L: linux-scsi@vger.kernel.org
2479S: Supported
2480
Ron Mercer5a4faa82006-07-25 00:40:21 -07002481QLOGIC QLA3XXX NETWORK DRIVER
2482P: Ron Mercer
2483M: linux-driver@qlogic.com
2484L: netdev@vger.kernel.org
2485S: Supported
2486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487QNX4 FILESYSTEM
2488P: Anders Larsen
2489M: al@alarsen.net
2490L: linux-kernel@vger.kernel.org
2491W: http://www.alarsen.net/linux/qnx4fs/
2492S: Maintained
2493
2494RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002495P: Benjamin Herrenschmidt
2496M: benh@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497L: linux-fbdev-devel@lists.sourceforge.net
2498S: Maintained
2499
2500RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002501P: Paul Mackerras
2502M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503L: linux-fbdev-devel@lists.sourceforge.net
2504S: Maintained
2505
2506RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2507P: Corey Thomas
2508M: corey@world.std.com
2509L: linux-kernel@vger.kernel.org
2510S: Maintained
2511
Matt Mackall9e95ce22005-04-16 15:25:56 -07002512RANDOM NUMBER DRIVER
2513P: Matt Mackall
2514M: mpm@selenic.com
2515S: Maintained
2516
Matt Porter394b7012005-11-07 01:00:15 -08002517RAPIDIO SUBSYSTEM
2518P: Matt Porter
2519M: mporter@kernel.crashing.org
2520L: linux-kernel@vger.kernel.org
2521S: Maintained
2522
Josh Triplett595182b2006-10-04 02:17:21 -07002523READ-COPY UPDATE (RCU)
2524P: Dipankar Sarma
2525M: dipankar@in.ibm.com
2526W: http://www.rdrop.com/users/paulmck/rclock/
2527L: linux-kernel@vger.kernel.org
2528S: Supported
2529
2530RCUTORTURE MODULE
2531P: Josh Triplett
2532M: josh@freedesktop.org
2533L: linux-kernel@vger.kernel.org
2534S: Maintained
2535
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536REAL TIME CLOCK DRIVER
2537P: Paul Gortmaker
2538M: p_gortmaker@yahoo.com
2539L: linux-kernel@vger.kernel.org
2540S: Maintained
2541
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002542REAL TIME CLOCK (RTC) SUBSYSTEM
2543P: Alessandro Zummo
2544M: a.zummo@towertech.it
2545L: linux-kernel@vger.kernel.org
2546S: Maintained
2547
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548REISERFS FILE SYSTEM
2549P: Hans Reiser
2550M: reiserfs-dev@namesys.com
2551L: reiserfs-list@namesys.com
2552W: http://www.namesys.com
2553S: Supported
2554
2555ROCKETPORT DRIVER
2556P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557W: http://www.comtrol.com
2558S: Maintained
2559
2560ROSE NETWORK LAYER
2561P: Ralf Baechle
2562M: ralf@linux-mips.org
2563L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002564W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565S: Maintained
2566
2567RISCOM8 DRIVER
2568S: Orphan
2569
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002570S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002571P: Antonino Daplas
2572M: adaplas@pol.net
2573L: linux-fbdev-devel@lists.sourceforge.net
2574S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576S390
2577P: Martin Schwidefsky
2578M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002579P: Heiko Carstens
2580M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581M: linux390@de.ibm.com
2582L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002583W: http://www.ibm.com/developerworks/linux/linux390/
2584S: Supported
2585
2586S390 NETWORK DRIVERS
2587P: Frank Pavlic
2588M: fpavlic@de.ibm.com
2589M: linux390@de.ibm.com
2590L: linux-390@vm.marist.edu
2591W: http://www.ibm.com/developerworks/linux/linux390/
2592S: Supported
2593
2594S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002595P: Swen Schillig
2596M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002597M: linux390@de.ibm.com
2598L: linux-390@vm.marist.edu
2599W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600S: Supported
2601
2602SAA7146 VIDEO4LINUX-2 DRIVER
2603P: Michael Hunold
2604M: michael@mihu.de
2605W: http://www.mihu.de/linux/saa7146
2606S: Maintained
2607
2608SBPCD CDROM DRIVER
2609P: Eberhard Moenkeberg
2610M: emoenke@gwdg.de
2611L: linux-kernel@vger.kernel.org
2612S: Maintained
2613
2614SC1200 WDT DRIVER
2615P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002616M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617S: Maintained
2618
2619SCHEDULER
2620P: Ingo Molnar
2621M: mingo@elte.hu
2622P: Robert Love [the preemptible kernel bits]
2623M: rml@tech9.net
2624L: linux-kernel@vger.kernel.org
2625S: Maintained
2626
2627SCSI CDROM DRIVER
2628P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002629M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630L: linux-scsi@vger.kernel.org
2631W: http://www.kernel.dk
2632S: Maintained
2633
2634SCSI SG DRIVER
2635P: Doug Gilbert
2636M: dgilbert@interlog.com
2637L: linux-scsi@vger.kernel.org
2638W: http://www.torque.net/sg
2639S: Maintained
2640
2641SCSI SUBSYSTEM
2642P: James E.J. Bottomley
2643M: James.Bottomley@SteelEye.com
2644L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002645T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646S: Maintained
2647
2648SCSI TAPE DRIVER
2649P: Kai Mäkisara
2650M: Kai.Makisara@kolumbus.fi
2651L: linux-scsi@vger.kernel.org
2652S: Maintained
2653
2654SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002655P: Sridhar Samudrala
2656M: sri@us.ibm.com
2657L: lksctp-developers@lists.sourceforge.net
2658S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002661P: Jim Cromie
2662M: jim.cromie@gmail.com
2663S: Odd Fixes
2664
2665SCx200 GPIO DRIVER
2666P: Jim Cromie
2667M: jim.cromie@gmail.com
2668S: Maintained
2669
2670SCx200 HRT CLOCKSOURCE DRIVER
2671P: Jim Cromie
2672M: jim.cromie@gmail.com
2673S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
2675SECURITY CONTACT
2676P: Security Officers
2677M: security@kernel.org
2678S: Supported
2679
2680SELINUX SECURITY MODULE
2681P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002682M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002684M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685L: linux-kernel@vger.kernel.org (kernel issues)
2686L: selinux@tycho.nsa.gov (general discussion)
2687W: http://www.nsa.gov/selinux
2688S: Supported
2689
2690SERIAL ATA (SATA) SUBSYSTEM:
2691P: Jeff Garzik
2692M: jgarzik@pobox.com
2693L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002694T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695S: Supported
2696
2697SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2698P: Pat Gefre
2699M: pfg@sgi.com
2700L: linux-ia64@vger.kernel.org
2701S: Supported
2702
2703SGI VISUAL WORKSTATION 320 AND 540
2704P: Andrey Panin
2705M: pazke@donpac.ru
2706L: linux-visws-devel@lists.sf.net
2707W: http://linux-visws.sf.net
2708S: Maintained for 2.6.
2709
2710SIMTEC EB110ATX (Chalice CATS)
2711P: Ben Dooks
2712P: Vincent Sanders
2713M: support@simtec.co.uk
2714W: http://www.simtec.co.uk/products/EB110ATX/
2715S: Supported
2716
2717SIMTEC EB2410ITX (BAST)
2718P: Ben Dooks
2719P: Vincent Sanders
2720M: support@simtec.co.uk
2721W: http://www.simtec.co.uk/products/EB2410ITX/
2722S: Supported
2723
Francois Romieu92aab3c2005-07-30 13:11:18 +02002724SIS 190 ETHERNET DRIVER
2725P: Francois Romieu
2726M: romieu@fr.zoreil.com
2727L: netdev@vger.kernel.org
2728S: Maintained
2729
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730SIS 5513 IDE CONTROLLER DRIVER
2731P: Lionel Bouton
2732M: Lionel.Bouton@inet6.fr
2733W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2734W: http://gyver.homeip.net/sis5513/index.html
2735S: Maintained
2736
2737SIS 900/7016 FAST ETHERNET DRIVER
2738P: Daniele Venzano
2739M: venza@brownhat.org
2740W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002741L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742S: Maintained
2743
2744SIS FRAMEBUFFER DRIVER
2745P: Thomas Winischhofer
2746M: thomas@winischhofer.net
2747W: http://www.winischhofer.net/linuxsisvga.shtml
2748S: Maintained
2749
2750SIS USB2VGA DRIVER
2751P: Thomas Winischhofer
2752M: thomas@winischhofer.net
2753W: http://www.winischhofer.at/linuxsisusbvga.shtml
2754S: Maintained
2755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756SMC91x ETHERNET DRIVER
2757P: Nicolas Pitre
2758M: nico@cam.org
2759S: Maintained
2760
Daniel Drake8f0f8502006-07-18 22:00:25 +01002761SOFTMAC LAYER (IEEE 802.11)
2762P: Johannes Berg
2763M: johannes@sipsolutions.net
2764P: Joe Jezak
2765M: josejx@gentoo.org
2766P: Daniel Drake
2767M: dsd@gentoo.org
2768W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002769L: netdev@vger.kernel.org
2770S: Maintained
2771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772SOFTWARE RAID (Multiple Disks) SUPPORT
2773P: Ingo Molnar
2774M: mingo@redhat.com
2775P: Neil Brown
2776M: neilb@cse.unsw.edu.au
2777L: linux-raid@vger.kernel.org
2778S: Maintained
2779
2780SOFTWARE SUSPEND:
2781P: Pavel Machek
2782M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002783L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784S: Maintained
2785
2786SONIC NETWORK DRIVER
2787P: Thomas Bogendoerfer
2788M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002789L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790S: Maintained
2791
2792SONY VAIO CONTROL DEVICE DRIVER
2793P: Stelian Pop
2794M: stelian@popies.net
2795W: http://popies.net/sonypi/
2796S: Maintained
2797
2798SOUND
2799P: Jaroslav Kysela
2800M: perex@suse.cz
2801L: alsa-devel@alsa-project.org
2802S: Maintained
2803
Kumar Gala025c3982006-04-02 16:05:54 -05002804SPI SUBSYSTEM
2805P: David Brownell
2806M: dbrownell@users.sourceforge.net
2807L: spi-devel-general@lists.sourceforge.net
2808S: Maintained
2809
Steven Rostedt855f46a2006-08-05 12:14:50 -07002810STABLE BRANCH:
2811P: Greg Kroah-Hartman
2812M: greg@kroah.com
2813P: Chris Wright
2814M: chrisw@sous-sol.org
2815L: stable@kernel.org
2816S: Maintained
2817
Kylene Hall1c72d462005-05-01 08:59:13 -07002818TPM DEVICE DRIVER
2819P: Kylene Hall
2820M: kjhall@us.ibm.com
2821W: http://tpmdd.sourceforge.net
2822L: tpmdd-devel@lists.sourceforge.net
2823S: Maintained
2824
Mark Gross1a80ba82005-10-30 15:02:55 -08002825Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002826P: Mark Gross
2827M: mark.gross@intel.com
2828S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08002829
Chris Zankel48b415c2005-06-23 22:01:07 -07002830TENSILICA XTENSA PORT (xtensa):
2831P: Chris Zankel
2832M: chris@zankel.net
2833S: Maintained
2834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835UltraSPARC (sparc64):
2836P: David S. Miller
2837M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002839T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840S: Maintained
2841
2842SHARP LH SUPPORT (LH7952X & LH7A40X)
2843P: Marc Singer
2844M: elf@buici.com
2845W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002846L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847S: Maintained
2848
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002849SHPC HOTPLUG DRIVER
2850P: Kristen Carlson Accardi
2851M: kristen.c.accardi@intel.com
2852L: pcihpd-discuss@lists.sourceforge.net
2853S: Maintained
2854
Pierre Ossmand129bce2006-03-24 03:18:17 -08002855SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2856P: Pierre Ossman
2857M: drzeus-sdhci@drzeus.cx
2858L: sdhci-devel@list.drzeus.cx
2859W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2860S: Maintained
2861
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002862SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2863P: Stephen Hemminger
2864M: shemminger@osdl.org
2865L: netdev@vger.kernel.org
2866S: Maintained
2867
Chris Boot1a87d942006-07-10 04:45:34 -07002868SOEKRIS NET48XX LED SUPPORT
2869P: Chris Boot
2870M: bootc@bootc.net
2871S: Maintained
2872
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873SPARC (sparc32):
2874P: William L. Irwin
2875M: wli@holomorphy.com
2876L: sparclinux@vger.kernel.org
2877S: Maintained
2878
2879SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2880P: Roger Wolff
2881M: R.E.Wolff@BitWizard.nl
2882L: linux-kernel@vger.kernel.org ?
2883S: Supported
2884
Jim Lewis2752e402006-09-29 02:01:19 -07002885SPIDERNET NETWORK DRIVER for CELL
2886P: Jim Lewis
2887M: jim@jklewis.com
2888L: netdev@vger.kernel.org
2889S: Supported
2890
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891SRM (Alpha) environment access
2892P: Jan-Benedict Glaw
2893M: jbglaw@lug-owl.de
2894L: linux-kernel@vger.kernel.org
2895S: Maintained
2896
2897STARFIRE/DURALAN NETWORK DRIVER
2898P: Ion Badulescu
2899M: ionut@cs.columbia.edu
2900S: Maintained
2901
2902STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2903W: http://mosquitonet.Stanford.EDU/strip.html
2904S: Unsupported ?
2905
2906STRADIS MPEG-2 DECODER DRIVER
2907P: Nathan Laredo
2908M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909W: http://www.stradis.com/
2910S: Maintained
2911
2912SUPERH (sh)
2913P: Paul Mundt
2914M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002915L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917S: Maintained
2918
2919SUPERH64 (sh64)
2920P: Paul Mundt
2921M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922L: linuxsh-shmedia-dev@lists.sourceforge.net
2923W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924S: Maintained
2925
2926SUN3/3X
2927P: Sam Creasey
2928M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929W: http://sammy.net/sun3/
2930S: Maintained
2931
2932SVGA HANDLING
2933P: Martin Mares
2934M: mj@ucw.cz
2935L: linux-video@atrey.karlin.mff.cuni.cz
2936S: Maintained
2937
2938SYSV FILESYSTEM
2939P: Christoph Hellwig
2940M: hch@infradead.org
2941S: Maintained
2942
Stephen Hemminger781b4562006-07-10 20:25:29 -07002943TC CLASSIFIER
2944P: Jamal Hadi Salim
2945M: hadi@cyberus.ca
2946L: netdev@vger.kernel.org
2947S: Maintained
2948
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002949TCP LOW PRIORITY MODULE
2950P: Wong Hoi Sing, Edison
2951M: hswong3i@gmail.com
2952P: Hung Hing Lun, Mike
2953M: hlhung3i@gmail.com
2954W: http://tcp-lp-mod.sourceforge.net/
2955S: Maintained
2956
Alex Dubov4020f2d2006-10-04 02:15:37 -07002957TI FLASH MEDIA INTERFACE DRIVER
2958P: Alex Dubov
2959M: oakad@yahoo.com
2960S: Maintained
2961
Michael Buesch844dd052006-06-26 00:24:59 -07002962TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2963P: Deepak Saxena
2964M: dsaxena@plexity.net
2965S: Maintained
2966
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002967TASKSTATS STATISTICS INTERFACE
2968P: Shailabh Nagar
2969M: nagar@watson.ibm.com
2970L: linux-kernel@vger.kernel.org
2971S: Maintained
2972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002974P: Romain Lievin
2975M: roms@lpg.ticalc.org
2976S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
Per Lidene86eaa32006-01-12 16:45:18 +01002978TIPC NETWORK LAYER
2979P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002980M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002981P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002982M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002983P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002984M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002985L: tipc-discussion@lists.sourceforge.net
2986W: http://tipc.sourceforge.net/
2987W: http://tipc.cslab.ericsson.net/
2988T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
2989S: Maintained
2990
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991TLAN NETWORK DRIVER
2992P: Samuel Chessman
2993M: chessman@tux.org
2994L: tlan-devel@lists.sourceforge.net
2995W: http://sourceforge.net/projects/tlan/
2996S: Maintained
2997
2998TOKEN-RING NETWORK DRIVER
2999P: Mike Phillips
3000M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003001L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002L: linux-tr@linuxtr.net
3003W: http://www.linuxtr.net
3004S: Maintained
3005
3006TOSHIBA ACPI EXTRAS DRIVER
3007P: John Belmonte
3008M: toshiba_acpi@memebeam.org
3009W: http://memebeam.org/toys/ToshibaAcpiDriver
3010S: Maintained
3011
3012TOSHIBA SMM DRIVER
3013P: Jonathan Buzzard
3014M: jonathan@buzzard.org.uk
3015L: tlinux-users@tce.toshiba-dme.co.jp
3016W: http://www.buzzard.org.uk/toshiba/
3017S: Maintained
3018
3019TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3020P: Muli Ben-Yehuda
3021M: mulix@mulix.org
3022L: linux-kernel@vger.kernel.org
3023S: Maintained
3024
3025TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003026P: Adrian Bunk
3027M: trivial@kernel.org
3028L: linux-kernel@vger.kernel.org
3029W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3030T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3031S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
3033TMS380 TOKEN-RING NETWORK DRIVER
3034P: Adam Fritzler
3035M: mid@auk.cx
3036L: linux-tr@linuxtr.net
3037W: http://www.auk.cx/tms380tr/
3038S: Maintained
3039
3040TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003041P: Valerie Henson
3042M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043L: tulip-users@lists.sourceforge.net
3044W: http://sourceforge.net/projects/tulip/
3045S: Maintained
3046
3047TUN/TAP driver
3048P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003049M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050L: vtun@office.satix.net
3051W: http://vtun.sourceforge.net/tun
3052S: Maintained
3053
3054U14-34F SCSI DRIVER
3055P: Dario Ballabio
3056M: ballabio_dario@emc.com
3057L: linux-scsi@vger.kernel.org
3058S: Maintained
3059
3060UDF FILESYSTEM
3061P: Ben Fennema
3062M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063W: http://linux-udf.sourceforge.net
3064S: Maintained
3065
3066UNIFORM CDROM DRIVER
3067P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003068M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069L: linux-kernel@vger.kernel.org
3070W: http://www.kernel.dk
3071S: Maintained
3072
3073USB ACM DRIVER
3074P: Oliver Neukum
3075M: oliver@neukum.name
3076L: linux-usb-users@lists.sourceforge.net
3077L: linux-usb-devel@lists.sourceforge.net
3078S: Maintained
3079
3080USB BLOCK DRIVER (UB ub)
3081P: Pete Zaitcev
3082M: zaitcev@redhat.com
3083L: linux-kernel@vger.kernel.org
3084L: linux-usb-devel@lists.sourceforge.net
3085S: Supported
3086
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087USB CDC ETHERNET DRIVER
3088P: Greg Kroah-Hartman
3089M: greg@kroah.com
3090L: linux-usb-users@lists.sourceforge.net
3091L: linux-usb-devel@lists.sourceforge.net
3092S: Maintained
3093W: http://www.kroah.com/linux-usb/
3094
3095USB EHCI DRIVER
3096P: David Brownell
3097M: dbrownell@users.sourceforge.net
3098L: linux-usb-devel@lists.sourceforge.net
3099S: Maintained
3100
Luca Risolia7ce08c92006-01-11 02:06:59 +00003101USB ET61X[12]51 DRIVER
3102P: Luca Risolia
3103M: luca.risolia@studio.unibo.it
3104L: linux-usb-devel@lists.sourceforge.net
3105L: video4linux-list@redhat.com
3106W: http://www.linux-projects.org
3107S: Maintained
3108
David Brownell69ae9e32006-11-14 02:03:31 -08003109USB GADGET/PERIPHERAL SUBSYSTEM
3110P: David Brownell
3111M: dbrownell@users.sourceforge.net
3112L: linux-usb-devel@lists.sourceforge.net
3113W: http://www.linux-usb.org/gadget
3114S: Maintained
3115
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116USB HID/HIDBP DRIVERS
3117P: Vojtech Pavlik
3118M: vojtech@suse.cz
3119L: linux-usb-users@lists.sourceforge.net
3120L: linux-usb-devel@lists.sourceforge.net
3121S: Maintained
3122
3123USB HUB DRIVER
3124P: Johannes Erdfelt
3125M: johannes@erdfelt.com
3126L: linux-usb-users@lists.sourceforge.net
3127L: linux-usb-devel@lists.sourceforge.net
3128S: Maintained
3129
Olav Kongas959eea22005-11-03 17:38:14 +02003130USB ISP116X DRIVER
3131P: Olav Kongas
3132M: ok@artecdesign.ee
3133L: linux-usb-devel@lists.sourceforge.net
3134S: Maintained
3135
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136USB KAWASAKI LSI DRIVER
3137P: Oliver Neukum
3138M: oliver@neukum.name
3139L: linux-usb-users@lists.sourceforge.net
3140L: linux-usb-devel@lists.sourceforge.net
3141S: Maintained
3142
3143USB MASS STORAGE DRIVER
3144P: Matthew Dharm
3145M: mdharm-usb@one-eyed-alien.net
3146L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003147L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148S: Maintained
3149W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3150
3151USB OHCI DRIVER
3152P: Roman Weissgaerber
3153M: weissg@vienna.at
3154L: linux-usb-users@lists.sourceforge.net
3155L: linux-usb-devel@lists.sourceforge.net
3156S: Maintained
3157
Matthias Urlichsba460e42005-07-14 00:33:47 -07003158USB OPTION-CARD DRIVER
3159P: Matthias Urlichs
3160M: smurf@smurf.noris.de
3161L: linux-usb-devel@lists.sourceforge.net
3162S: Maintained
3163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164USB OV511 DRIVER
3165P: Mark McClelland
3166M: mmcclell@bigfoot.com
3167L: linux-usb-users@lists.sourceforge.net
3168L: linux-usb-devel@lists.sourceforge.net
3169W: http://alpha.dyndns.org/ov511/
3170S: Maintained
3171
3172USB PEGASUS DRIVER
3173P: Petko Manolov
3174M: petkan@users.sourceforge.net
3175L: linux-usb-users@lists.sourceforge.net
3176L: linux-usb-devel@lists.sourceforge.net
3177W: http://pegasus2.sourceforge.net/
3178S: Maintained
3179
3180USB PRINTER DRIVER
3181P: Vojtech Pavlik
3182M: vojtech@suse.cz
3183L: linux-usb-users@lists.sourceforge.net
3184L: linux-usb-devel@lists.sourceforge.net
3185S: Maintained
3186
3187USB RTL8150 DRIVER
3188P: Petko Manolov
3189M: petkan@users.sourceforge.net
3190L: linux-usb-users@lists.sourceforge.net
3191L: linux-usb-devel@lists.sourceforge.net
3192W: http://pegasus2.sourceforge.net/
3193S: Maintained
3194
3195USB SE401 DRIVER
3196P: Jeroen Vreeken
3197M: pe1rxq@amsat.org
3198L: linux-usb-users@lists.sourceforge.net
3199L: linux-usb-devel@lists.sourceforge.net
3200W: http://www.chello.nl/~j.vreeken/se401/
3201S: Maintained
3202
3203USB SERIAL CYBERJACK DRIVER
3204P: Matthias Bruestle and Harald Welte
3205M: support@reiner-sct.com
3206W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3207S: Maintained
3208
3209USB SERIAL DIGI ACCELEPORT DRIVER
3210P: Peter Berger and Al Borchers
3211M: pberger@brimson.com
3212M: alborchers@steinerpoint.com
3213L: linux-usb-users@lists.sourceforge.net
3214L: linux-usb-devel@lists.sourceforge.net
3215S: Maintained
3216
3217USB SERIAL DRIVER
3218P: Greg Kroah-Hartman
3219M: gregkh@suse.de
3220L: linux-usb-users@lists.sourceforge.net
3221L: linux-usb-devel@lists.sourceforge.net
3222S: Supported
3223
3224USB SERIAL BELKIN F5U103 DRIVER
3225P: William Greathouse
3226M: wgreathouse@smva.com
3227L: linux-usb-users@lists.sourceforge.net
3228L: linux-usb-devel@lists.sourceforge.net
3229S: Maintained
3230
3231USB SERIAL CYPRESS M8 DRIVER
3232P: Lonnie Mendez
3233M: dignome@gmail.com
3234L: linux-usb-users@lists.sourceforge.net
3235L: linux-usb-devel@lists.sourceforge.net
3236S: Maintained
3237W: http://geocities.com/i0xox0i
3238W: http://firstlight.net/cvs
3239
3240USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3241L: linux-usb-users@lists.sourceforge.net
3242L: linux-usb-devel@lists.sourceforge.net
3243S: Maintained
3244
3245USB AUERSWALD DRIVER
3246P: Wolfgang Muees
3247M: wolfgang@iksw-muees.de
3248L: linux-usb-users@lists.sourceforge.net
3249L: linux-usb-devel@lists.sourceforge.net
3250S: Maintained
3251
3252USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3253P: Gary Brubaker
3254M: xavyer@ix.netcom.com
3255L: linux-usb-users@lists.sourceforge.net
3256L: linux-usb-devel@lists.sourceforge.net
3257S: Maintained
3258
3259USB SERIAL KEYSPAN DRIVER
3260P: Greg Kroah-Hartman
3261M: greg@kroah.com
3262L: linux-usb-users@lists.sourceforge.net
3263L: linux-usb-devel@lists.sourceforge.net
3264W: http://www.kroah.com/linux/
3265S: Maintained
3266
3267USB SERIAL WHITEHEAT DRIVER
3268P: Stuart MacDonald
3269M: stuartm@connecttech.com
3270L: linux-usb-users@lists.sourceforge.net
3271L: linux-usb-devel@lists.sourceforge.net
3272W: http://www.connecttech.com
3273S: Supported
3274
3275USB SN9C10x DRIVER
3276P: Luca Risolia
3277M: luca.risolia@studio.unibo.it
3278L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003279L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280W: http://www.linux-projects.org
3281S: Maintained
3282
3283USB SUBSYSTEM
3284P: Greg Kroah-Hartman
3285M: gregkh@suse.de
3286L: linux-usb-users@lists.sourceforge.net
3287L: linux-usb-devel@lists.sourceforge.net
3288W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003289T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290S: Supported
3291
3292USB UHCI DRIVER
3293P: Alan Stern
3294M: stern@rowland.harvard.edu
3295L: linux-usb-users@lists.sourceforge.net
3296L: linux-usb-devel@lists.sourceforge.net
3297S: Maintained
3298
David Brownell69ae9e32006-11-14 02:03:31 -08003299USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300P: David Brownell
3301M: dbrownell@users.sourceforge.net
3302L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003303W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304S: Maintained
3305
3306USB W996[87]CF DRIVER
3307P: Luca Risolia
3308M: luca.risolia@studio.unibo.it
3309L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003310L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311W: http://www.linux-projects.org
3312S: Maintained
3313
Luca Risolia60f78052006-02-06 16:29:35 +00003314USB ZC0301 DRIVER
3315P: Luca Risolia
3316M: luca.risolia@studio.unibo.it
3317L: linux-usb-devel@lists.sourceforge.net
3318L: video4linux-list@redhat.com
3319W: http://www.linux-projects.org
3320S: Maintained
3321
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322USB ZD1201 DRIVER
3323P: Jeroen Vreeken
3324M: pe1rxq@amsat.org
3325L: linux-usb-users@lists.sourceforge.net
3326L: linux-usb-devel@lists.sourceforge.net
3327W: http://linux-lc100020.sourceforge.net
3328S: Maintained
3329
3330USER-MODE LINUX
3331P: Jeff Dike
3332M: jdike@karaya.com
3333L: user-mode-linux-devel@lists.sourceforge.net
3334L: user-mode-linux-user@lists.sourceforge.net
3335W: http://user-mode-linux.sourceforge.net
3336S: Maintained
3337
3338FAT/VFAT/MSDOS FILESYSTEM:
3339P: OGAWA Hirofumi
3340M: hirofumi@mail.parknet.co.jp
3341L: linux-kernel@vger.kernel.org
3342S: Maintained
3343
3344VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3345P: Jeff Garzik
3346S: Odd fixes
3347
3348VIA RHINE NETWORK DRIVER
3349P: Roger Luethi
3350M: rl@hellgate.ch
3351S: Maintained
3352
Jean Delvare32c0a522005-09-22 21:47:58 +02003353VIAPRO SMBUS DRIVER
3354P: Jean Delvare
3355M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003356L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003357S: Maintained
3358
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359UCLINUX (AND M68KNOMMU)
3360P: Greg Ungerer
3361M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003363L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364S: Maintained
3365
3366UCLINUX FOR NEC V850
3367P: Miles Bader
3368M: uclinux-v850@lsi.nec.co.jp
3369W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3370W: http://www.ee.nec.de/uclinux/
3371S: Supported
3372
3373UCLINUX FOR RENESAS H8/300
3374P: Yoshinori Sato
3375M: ysato@users.sourceforge.jp
3376W: http://uclinux-h8.sourceforge.jp/
3377S: Supported
3378
3379USB DIAMOND RIO500 DRIVER
3380P: Cesar Miquel
3381M: miquel@df.uba.ar
3382L: rio500-users@lists.sourceforge.net
3383W: http://rio500.sourceforge.net
3384S: Maintained
3385
3386VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003387P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003388M: mchehab@infradead.org
3389M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003391W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003392T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003393S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
Juerg Haefligerab413192006-09-24 20:54:04 +02003395VT1211 HARDWARE MONITOR DRIVER
3396P: Juerg Haefliger
3397M: juergh@gmail.com
3398L: lm-sensors@lm-sensors.org
3399S: Maintained
3400
Roger Lucas1de9e372005-11-26 20:20:05 +01003401VT8231 HARDWARE MONITOR DRIVER
3402P: Roger Lucas
3403M: roger@planbit.co.uk
3404L: lm-sensors@lm-sensors.org
3405S: Maintained
3406
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407W1 DALLAS'S 1-WIRE BUS
3408P: Evgeniy Polyakov
3409M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410S: Maintained
3411
Charles Spirakis13927072006-07-05 18:05:15 +02003412W83791D HARDWARE MONITORING DRIVER
3413P: Charles Spirakis
3414M: bezaur@gmail.com
3415L: lm-sensors@lm-sensors.org
3416S: Maintained
3417
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418W83L51xD SD/MMC CARD INTERFACE DRIVER
3419P: Pierre Ossman
3420M: drzeus-wbsd@drzeus.cx
3421L: wbsd-devel@list.drzeus.cx
3422W: http://projects.drzeus.cx/wbsd
3423S: Maintained
3424
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003425WATCHDOG DEVICE DRIVERS
3426P: Wim Van Sebroeck
3427M: wim@iguana.be
3428T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3429S: Maintained
3430
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3432P: Jean Tourrilhes
3433M: jt@hpl.hp.com
3434W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3435S: Maintained
3436
3437WD7000 SCSI DRIVER
3438P: Miroslav Zagorac
3439M: zaga@fly.cc.fer.hr
3440L: linux-scsi@vger.kernel.org
3441S: Maintained
3442
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003443WISTRON LAPTOP BUTTON DRIVER
3444P: Miloslav Trmac
3445M: mitr@volny.cz
3446S: Maintained
3447
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448WL3501 WIRELESS PCMCIA CARD DRIVER
3449P: Arnaldo Carvalho de Melo
3450M: acme@conectiva.com.br
3451W: http://advogato.org/person/acme
3452S: Maintained
3453
3454X.25 NETWORK LAYER
3455P: Henner Eisen
3456M: eis@baty.hanse.de
3457L: linux-x25@vger.kernel.org
3458S: Maintained
3459
3460XFS FILESYSTEM
3461P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003462P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003464L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003466T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467S: Supported
3468
Peter Korsgaard238b8722006-12-06 20:35:17 -08003469XILINX UARTLITE SERIAL DRIVER
3470P: Peter Korsgaard
3471M: jacmet@sunsite.dk
3472L: linux-serial@vger.kernel.org
3473S: Maintained
3474
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475X86 3-LEVEL PAGING (PAE) SUPPORT
3476P: Ingo Molnar
3477M: mingo@redhat.com
3478S: Maintained
3479
3480X86-64 port
3481P: Andi Kleen
3482M: ak@suse.de
3483L: discuss@x86-64.org
3484W: http://www.x86-64.org
3485S: Maintained
3486
3487YAM DRIVER FOR AX.25
3488P: Jean-Paul Roubelat
3489M: jpr@f6fbb.org
3490L: linux-hams@vger.kernel.org
3491S: Maintained
3492
Henkaf64a5e2005-10-12 15:02:56 +02003493YEALINK PHONE DRIVER
3494P: Henk Vergonet
3495M: Henk.Vergonet@gmail.com
3496L: usbb2k-api-dev@nongnu.org
3497S: Maintained
3498
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499Z8530 DRIVER FOR AX.25
3500P: Joerg Reuter
3501M: jreuter@yaina.de
3502W: http://yaina.de/jreuter/
3503W: http://www.qsl.net/dl1bke/
3504L: linux-hams@vger.kernel.org
3505S: Maintained
3506
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003507ZD1211RW WIRELESS DRIVER
3508P: Daniel Drake
3509M: dsd@gentoo.org
3510P: Ulrich Kunitz
3511M: kune@deine-taler.de
3512W: http://zd1211.ath.cx/wiki/DriverRewrite
3513L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3514S: Maintained
3515
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516ZF MACHZ WATCHDOG
3517P: Fernando Fuganti
3518M: fuganti@netbank.com.br
3519W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3520S: Maintained
3521
3522ZR36067 VIDEO FOR LINUX DRIVER
3523P: Ronald Bultje
3524M: rbultje@ronald.bitfreak.net
3525L: mjpeg-users@lists.sourceforge.net
3526W: http://mjpeg.sourceforge.net/driver-zoran/
3527S: Maintained
3528
3529ZR36120 VIDEO FOR LINUX DRIVER
3530P: Pauline Middelink
3531M: middelin@polyware.nl
3532W: http://www.polyware.nl/~middelin/En/hobbies.html
3533W: http://www.polyware.nl/~middelin/hobbies.html
3534S: Maintained
3535
3536THE REST
3537P: Linus Torvalds
3538S: Buried alive in reporters