blob: b2024938adcf7cf8ad43d6e26fe7a6343acf5161 [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 Becker62ca3d262006-01-27 11:04:12 -0800680M: joel.becker@oracle.com
681L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800682S: Supported
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684CIRRUS LOGIC GENERIC FBDEV DRIVER
685P: Jeff Garzik
686M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800687L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688S: Odd Fixes
689
690CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
691P: Cirrus Logic Corporation (kernel 2.2 driver)
692M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
693P: Nils Faerber (port to kernel 2.4)
694M: Nils Faerber <nils@kernelconcepts.de>
695S: Maintained
696
697CODA FILE SYSTEM
698P: Jan Harkes
699M: jaharkes@cs.cmu.edu
700M: coda@cs.cmu.edu
701L: codalist@coda.cs.cmu.edu
702W: http://www.coda.cs.cmu.edu/
703S: Maintained
704
705COMPACTPCI HOTPLUG CORE
706P: Scott Murray
707M: scottm@somanetworks.com
708M: scott@spiteful.org
709L: pcihpd-discuss@lists.sourceforge.net
710S: Supported
711
712COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
713P: Scott Murray
714M: scottm@somanetworks.com
715M: scott@spiteful.org
716L: pcihpd-discuss@lists.sourceforge.net
717S: Supported
718
719COMPACTPCI HOTPLUG GENERIC DRIVER
720P: Scott Murray
721M: scottm@somanetworks.com
722M: scott@spiteful.org
723L: pcihpd-discuss@lists.sourceforge.net
724S: Supported
725
726COMPUTONE INTELLIPORT MULTIPORT CARD
727P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700728M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700730S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732COSA/SRP SYNC SERIAL DRIVER
733P: Jan "Yenya" Kasprzak
734M: kas@fi.muni.cz
735W: http://www.fi.muni.cz/~kas/cosa/
736S: Maintained
737
738CPU FREQUENCY DRIVERS
739P: Dave Jones
740M: davej@codemonkey.org.uk
741L: cpufreq@lists.linux.org.uk
742W: http://www.codemonkey.org.uk/projects/cpufreq/
Josh Boyer1adc1232005-11-23 15:44:15 -0800743T: git kernel.org/pub/scm/linux/kernel/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744S: Maintained
745
746CPUID/MSR DRIVER
747P: H. Peter Anvin
748M: hpa@zytor.com
749S: Maintained
750
Paul Jacksoned90fb42005-09-27 21:45:37 -0700751CPUSETS
752P: Paul Jackson
753P: Simon Derr
754M: pj@sgi.com
755M: simon.derr@bull.net
756L: linux-kernel@vger.kernel.org
757W: http://www.bullopensource.org/cpuset/
758S: Supported
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100761W: http://sourceforge.net/projects/cramfs/
762S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764CRIS PORT
765P: Mikael Starvik
766M: starvik@axis.com
767L: dev-etrax@axis.com
768W: http://developer.axis.com
769S: Maintained
770
771CRYPTO API
772P: Herbert Xu
773M: herbert@gondor.apana.org.au
774P: David S. Miller
775M: davem@davemloft.net
776L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800777T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778S: Maintained
779
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100780CS5535 Audio ALSA driver
781P: Jaya Kumar
782M: jayakumar.alsa@gmail.com
783S: Maintained
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785CYBERPRO FB DRIVER
786P: Russell King
787M: rmk@arm.linux.org.uk
788W: http://www.arm.linux.org.uk/
789S: Maintained
790
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700791CYBLAFB FRAMEBUFFER DRIVER
792P: Knut Petersen
793M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800794L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700795S: Maintained
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797CYCLADES 2X SYNC CARD DRIVER
798P: Arnaldo Carvalho de Melo
799M: acme@conectiva.com.br
800W: http://advogato.org/person/acme
801L: cycsyn-devel@bazar.conectiva.com.br
802S: Maintained
803
804CYCLADES ASYNC MUX DRIVER
805M: async@cyclades.com
806W: http://www.cyclades.com/
807S: Supported
808
809CYCLADES PC300 DRIVER
810M: pc300@cyclades.com
811W: http://www.cyclades.com/
812S: Supported
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814DAMA SLAVE for AX.25
815P: Joerg Reuter
816M: jreuter@yaina.de
817W: http://yaina.de/jreuter/
818W: http://www.qsl.net/dl1bke/
819L: linux-hams@vger.kernel.org
820S: Maintained
821
822DC395x SCSI driver
823P: Oliver Neukum
824M: oliver@neukum.name
825P: Ali Akcaagac
826M: aliakc@web.de
827P: Jamie Lenehan
828M: lenehan@twibble.org
829W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700830L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831L: http://lists.twibble.org/mailman/listinfo/dc395x/
832S: Maintained
833
834DC390/AM53C974 SCSI driver
835P: Kurt Garloff
836M: garloff@suse.de
837W: http://www.garloff.de/kurt/linux/dc390/
838P: Guennadi Liakhovetski
839M: g.liakhovetski@gmx.de
840S: Maintained
841
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700842DCCP PROTOCOL
843P: Arnaldo Carvalho de Melo
844M: acme@mandriva.com
845L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800846W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700847S: Maintained
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849DECnet NETWORK LAYER
850P: Patrick Caulfield
851M: patrick@tykepenguin.com
852W: http://linux-decnet.sourceforge.net
853L: linux-decnet-user@lists.sourceforge.net
854S: Maintained
855
856DEFXX FDDI NETWORK DRIVER
857P: Maciej W. Rozycki
858M: macro@linux-mips.org
859S: Maintained
860
861DELL LAPTOP SMM DRIVER
862P: Massimo Dal Zotto
863M: dz@debian.org
864W: http://www.debian.org/~dz/i8k/
865S: Maintained
866
Doug Warzecha90563ec2005-09-06 15:17:15 -0700867DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
868P: Doug Warzecha
869M: Douglas_Warzecha@dell.com
870S: Maintained
871
Pavel Machek5ddb88c2006-09-29 02:01:29 -0700872DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873P: Alasdair Kergon
874L: dm-devel@redhat.com
875W: http://sources.redhat.com/dm
876S: Maintained
877
878DEVICE NUMBER REGISTRY
879P: Torben Mathiasen
880M: device@lanana.org
881W: http://lanana.org/docs/device-list/index.html
882L: linux-kernel@vger.kernel.org
883S: Maintained
884
885DEVICE FILESYSTEM
886S: Obsolete
887
888DIGI INTL. EPCA DRIVER
889P: Digi International, Inc
890M: Eng.Linux@digi.com
891L: Eng.Linux@digi.com
892W: http://www.digi.com
893S: Orphaned
894
895DIGI RIGHTSWITCH NETWORK DRIVER
896P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -0700897L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898W: http://www.digi.com
899S: Orphaned
900
901DIRECTORY NOTIFICATION
902P: Stephen Rothwell
903M: sfr@canb.auug.org.au
904L: linux-kernel@vger.kernel.org
905S: Supported
906
907DISK GEOMETRY AND PARTITION HANDLING
908P: Andries Brouwer
909M: aeb@cwi.nl
910W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
911W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
912W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
913S: Maintained
914
915DISKQUOTA:
916P: Jan Kara
917M: jack@suse.cz
918L: linux-kernel@vger.kernel.org
919S: Maintained
920
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400921DISTRIBUTED LOCK MANAGER
922P: Patrick Caulfield
923M: pcaulfie@redhat.com
924P: David Teigland
925M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -0400926L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400927W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -0400928T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
929T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400930S: Supported
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
933P: Tobias Ringstrom
934M: tori@unhappy.mine.nu
935L: linux-kernel@vger.kernel.org
936S: Maintained
937
Martin Waitzba483d52005-06-17 13:20:59 -0700938DOCBOOK FOR DOCUMENTATION
939P: Martin Waitz
940M: tali@admingilde.org
Randy Dunlap0f40efb2006-07-03 00:24:15 -0700941P: Randy Dunlap
942M: rdunlap@xenotime.net
Martin Waitz061350e2006-01-09 20:53:53 -0800943T: git http://tali.admingilde.org/git/linux-docbook.git
Martin Waitzba483d52005-06-17 13:20:59 -0700944S: Maintained
945
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -0400946DOCKING STATION DRIVER
947P: Kristen Carlson Accardi
948M: kristen.c.accardi@intel.com
949L: linux-acpi@vger.kernel.org
950S: Maintained
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952DOUBLETALK DRIVER
953P: James R. Van Zandt
954M: jrv@vanzandt.mv.com
955L: blinux-list@redhat.com
956S: Maintained
957
958DRIVER CORE, KOBJECTS, AND SYSFS
959P: Greg Kroah-Hartman
960M: gregkh@suse.de
961L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800962T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963S: Supported
964
965DRM DRIVERS
966P: David Airlie
967M: airlied@linux.ie
968L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -0800969T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970S: Maintained
971
972DSCC4 DRIVER
973P: François Romieu
974M: romieu@cogenit.fr
975M: romieu@ensta.fr
976S: Maintained
977
978DVB SUBSYSTEM AND DRIVERS
979P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200980M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +0200982W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200983T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200984S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986EATA-DMA SCSI DRIVER
987P: Michael Neuffer
988L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
989S: Maintained
990
991EATA ISA/EISA/PCI SCSI DRIVER
992P: Dario Ballabio
993M: ballabio_dario@emc.com
994L: linux-scsi@vger.kernel.org
995S: Maintained
996
997EATA-PIO SCSI DRIVER
998P: Michael Neuffer
999M: mike@i-Connect.Net
1000L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1001S: Maintained
1002
1003EBTABLES
1004P: Bart De Schuymer
1005M: bart.de.schuymer@pandora.be
1006L: ebtables-user@lists.sourceforge.net
1007L: ebtables-devel@lists.sourceforge.net
1008W: http://ebtables.sourceforge.net/
1009S: Maintained
1010
Michael Halcrow237fead2006-10-04 02:16:22 -07001011ECRYPT FILE SYSTEM
1012P: Mike Halcrow, Phillip Hellewell
1013M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1014L: ecryptfs-devel@lists.sourceforge.net
1015W: http://ecryptfs.sourceforge.net/
1016S: Supported
1017
Alan Coxda9bb1d2006-01-18 17:44:13 -08001018EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001019P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001020M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001021L: bluesmoke-devel@lists.sourceforge.net
1022W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001023S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001024
1025EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001026P: Mark Gross
1027M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001028L: bluesmoke-devel@lists.sourceforge.net
1029W: bluesmoke.sourceforge.net
1030S: Maintained
1031
1032EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001033P: Doug Thompson
1034M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001035L: bluesmoke-devel@lists.sourceforge.net
1036W: bluesmoke.sourceforge.net
1037S: Maintained
1038
1039EDAC-R82600
1040P: Tim Small
1041M: tim@buttersideup.com
1042L: bluesmoke-devel@lists.sourceforge.net
1043W: bluesmoke.sourceforge.net
1044S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046EEPRO100 NETWORK DRIVER
1047P: Andrey V. Savochkin
1048M: saw@saw.sw.com.sg
1049S: Maintained
1050
Josh Triplett0bee8d22006-07-30 03:03:58 -07001051EFS FILESYSTEM
1052W: http://aeschi.ch.eu.org/efs/
1053S: Orphan
1054
Heiko J Schickfab97222006-09-22 15:22:22 -07001055EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1056P: Hoang-Nam Nguyen
1057M: hnguyen@de.ibm.com
1058P: Christoph Raisch
1059M: raisch@de.ibm.com
1060L: openib-general@openib.org
1061S: Supported
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063EMU10K1 SOUND DRIVER
1064P: James Courtier-Dutton
1065M: James@superbug.demon.co.uk
1066L: emu10k1-devel@lists.sourceforge.net
1067W: http://sourceforge.net/projects/emu10k1/
1068S: Maintained
1069
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001070EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001071P: James Smart
1072M: james.smart@emulex.com
1073L: linux-scsi@vger.kernel.org
1074W: http://sourceforge.net/projects/lpfcxxxx
1075S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077EPSON 1355 FRAMEBUFFER DRIVER
1078P: Christopher Hoover
1079M: ch@murgatroid.com, ch@hpl.hp.com
1080S: Maintained
1081
1082ETHEREXPRESS-16 NETWORK DRIVER
1083P: Philip Blundell
1084M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001085L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086S: Maintained
1087
1088ETHERNET BRIDGE
1089P: Stephen Hemminger
1090M: shemminger@osdl.org
1091L: bridge@osdl.org
1092W: http://bridge.sourceforge.net/
1093S: Maintained
1094
1095ETHERTEAM 16I DRIVER
1096P: Mika Kuoppala
1097M: miku@iki.fi
1098S: Maintained
1099
1100EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001101L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102S: Maintained
1103
1104EXT3 FILE SYSTEM
1105P: Stephen Tweedie, Andrew Morton
1106M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001107L: linux-ext4@vger.kernel.org
1108S: Maintained
1109
1110EXT4 FILE SYSTEM
1111P: Stephen Tweedie, Andrew Morton
1112M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1113L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114S: Maintained
1115
Jean Delvaree53004e2006-01-09 23:26:14 +01001116F71805F HARDWARE MONITORING DRIVER
1117P: Jean Delvare
1118M: khali@linux-fr.org
1119L: lm-sensors@lm-sensors.org
1120S: Maintained
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122FARSYNC SYNCHRONOUS DRIVER
1123P: Kevin Curtis
1124M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125W: http://www.farsite.co.uk/
1126S: Supported
1127
1128FRAMEBUFFER LAYER
1129P: Antonino Daplas
1130M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001131L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132W: http://linux-fbdev.sourceforge.net/
1133S: Maintained
1134
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001135FREESCALE SOC FS_ENET DRIVER
1136P: Pantelis Antoniou
1137M: pantelis.antoniou@gmail.com
1138P: Vitaly Bordug
1139M: vbordug@ru.mvista.com
1140L: linuxppc-embedded@ozlabs.org
1141L: netdev@vger.kernel.org
1142S: Maintained
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144FILE LOCKING (flock() and fcntl()/lockf())
1145P: Matthew Wilcox
1146M: matthew@wil.cx
1147L: linux-fsdevel@vger.kernel.org
1148S: Maintained
1149
1150FILESYSTEMS (VFS and infrastructure)
1151P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001152M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153S: Maintained
1154
1155FIRMWARE LOADER (request_firmware)
1156L: linux-kernel@vger.kernel.org
1157S: Orphan
1158
1159FPU EMULATOR
1160P: Bill Metzenthen
1161M: billm@suburbia.net
1162W: http://suburbia.net/~billm/floating-point/emulator/
1163S: Maintained
1164
1165FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1166P: Mike McLagan
1167M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001168L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169S: Maintained
1170
1171FREEVXFS FILESYSTEM
1172P: Christoph Hellwig
1173M: hch@infradead.org
1174W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1175S: Maintained
1176
1177FUJITSU FR-V PORT
1178P: David Howells
1179M: dhowells@redhat.com
1180S: Maintained
1181
Miklos Szeredi04578f12005-09-09 13:10:22 -07001182FUSE: FILESYSTEM IN USERSPACE
1183P: Miklos Szeredi
1184M: miklos@szeredi.hu
1185L: fuse-devel@lists.sourceforge.net
1186W: http://fuse.sourceforge.net/
1187S: Maintained
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1190P: Rik Faith
1191M: faith@cs.unc.edu
1192L: linux-scsi@vger.kernel.org
1193S: Odd fixes (e.g., new signatures)
1194
1195GDT SCSI DISK ARRAY CONTROLLER DRIVER
1196P: Achim Leubner
1197M: achim_leubner@adaptec.com
1198L: linux-scsi@vger.kernel.org
1199W: http://www.icp-vortex.com/
1200S: Supported
1201
1202GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1203P: Krzysztof Halasa
1204M: khc@pm.waw.pl
1205W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1206S: Maintained
1207
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001208GFS2 FILE SYSTEM
1209P: Steven Whitehouse
1210M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001211L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001212W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001213T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1214T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001215S: Supported
1216
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001217GIGASET ISDN DRIVERS
1218P: Hansjoerg Lipp
1219M: hjlipp@web.de
1220P: Tilman Schmidt
1221M: tilman@imap.cc
1222L: gigaset307x-common@lists.sourceforge.net
1223W: http://gigaset307x.sourceforge.net/
1224S: Maintained
1225
Jean Delvare5b543962005-08-15 19:51:02 +02001226HARDWARE MONITORING
1227P: Jean Delvare
1228M: khali@linux-fr.org
1229L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001230W: http://www.lm-sensors.org/
1231T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001232S: Maintained
1233
Michael Buesch844dd052006-06-26 00:24:59 -07001234HARDWARE RANDOM NUMBER GENERATOR CORE
1235P: Michael Buesch
1236M: mb@bu3sch.de
1237S: Maintained
1238
Robert Love860e1d62005-08-31 23:57:59 -04001239HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1240P: Robert Love
1241M: rlove@rlove.org
1242M: linux-kernel@vger.kernel.org
1243W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1244S: Maintained
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246HARMONY SOUND DRIVER
1247P: Kyle McMartin
1248M: kyle@parisc-linux.org
1249W: http://www.parisc-linux.org/~kyle/harmony/
1250L: parisc-linux@lists.parisc-linux.org
1251S: Maintained
1252
1253HAYES ESP SERIAL DRIVER
1254P: Andrew J. Robinson
1255M: arobinso@nyx.net
1256L: linux-kernel@vger.kernel.org
1257W: http://www.nyx.net/~arobinso
1258S: Maintained
1259
1260HFS FILESYSTEM
1261P: Roman Zippel
1262M: zippel@linux-m68k.org
1263L: linux-kernel@vger.kernel.org
1264S: Maintained
1265
1266HGA FRAMEBUFFER DRIVER
1267P: Ferenc Bakonyi
1268M: fero@drama.obuda.kando.hu
1269L: linux-nvidia@lists.surfsouth.com
1270W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1271S: Maintained
1272
1273HIGH-SPEED SCC DRIVER FOR AX.25
1274P: Klaus Kudielka
1275M: klaus.kudielka@ieee.org
1276L: linux-hams@vger.kernel.org
1277W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1278S: Maintained
1279
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001280HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1281P: HighPoint Linux Team
1282M: linux@highpoint-tech.com
1283W: http://www.highpoint-tech.com
1284S: Supported
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286HIPPI
1287P: Jes Sorensen
1288M: jes@trained-monkey.org
1289L: linux-hippi@sunsite.dk
1290S: Maintained
1291
1292HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1293P: Chirag Kantharia
1294M: chirag.kantharia@hp.com
1295L: iss_storagedev@hp.com
1296S: Maintained
1297
1298HEWLETT-PACKARD SMART2 RAID DRIVER
1299P: Chirag Kantharia
1300M: chirag.kantharia@hp.com
1301L: iss_storagedev@hp.com
1302S: Maintained
1303
1304HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1305P: Mike Miller
1306M: mike.miller@hp.com
1307L: iss_storagedev@hp.com
1308S: Supported
1309
Jouni Malinenff1d2762005-05-12 22:54:16 -04001310HOST AP DRIVER
1311P: Jouni Malinen
1312M: jkmaline@cc.hut.fi
1313L: hostap@shmoo.com
1314W: http://hostap.epitest.fi/
1315S: Maintained
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1318P: Jaroslav Kysela
1319M: perex@suse.cz
1320S: Maintained
1321
Bob Piccob9b03322005-11-07 00:59:19 -08001322HPET: High Precision Event Timers driver (hpet.c)
1323P: Clemens Ladisch
1324M: clemens@ladisch.de
1325S: Maintained
1326
1327HPET: i386
1328P: Venkatesh Pallipadi (Venki)
1329M: venkatesh.pallipadi@intel.com
1330S: Maintained
1331
1332HPET: x86_64
1333P: Andi Kleen and Vojtech Pavlik
1334M: ak@muc.de and vojtech@suse.cz
1335S: Maintained
1336
1337HPET: ACPI hpet.c
1338P: Bob Picco
1339M: bob.picco@hp.com
1340S: Maintained
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342HPFS FILESYSTEM
1343P: Mikulas Patocka
1344M: mikulas@artax.karlin.mff.cuni.cz
1345W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1346S: Maintained
1347
1348HUGETLB FILESYSTEM
1349P: William Irwin
1350M: wli@holomorphy.com
1351S: Maintained
1352
Jean Delvare5b543962005-08-15 19:51:02 +02001353I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354P: Jean Delvare
1355M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001356L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001357T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358S: Maintained
1359
1360I2O
1361P: Markus Lidel
1362M: markus.lidel@shadowconnect.com
1363W: http://i2o.shadowconnect.com/
1364S: Maintained
1365
1366i386 BOOT CODE
1367P: Riley H. Williams
1368M: Riley@Williams.Name
1369L: Linux-Kernel@vger.kernel.org
1370S: Maintained
1371
1372i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1373P: Dave Jones
1374M: davej@codemonkey.org.uk
1375P: H. Peter Anvin
1376M: hpa@zytor.com
1377S: Maintained
1378
1379i810 TCO TIMER WATCHDOG
1380P: Nils Faerber
1381M: nils@kernelconcepts.de
1382W: http://www.kernelconcepts.de/
1383S: Maintained
1384
1385IA64 (Itanium) PLATFORM
1386P: Tony Luck
1387M: tony.luck@intel.com
1388L: linux-ia64@vger.kernel.org
1389W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001390T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391S: Maintained
1392
1393SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001394P: Jes Sorensen
1395M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396L: linux-altix@sgi.com
1397L: linux-ia64@vger.kernel.org
1398W: http://www.sgi.com/altix
1399S: Maintained
1400
1401IBM MCA SCSI SUBSYSTEM DRIVER
1402P: Michael Lang
1403M: langa2@kph.uni-mainz.de
1404W: http://www.uni-mainz.de/~langm000/linux.html
1405S: Maintained
1406
1407IBM Power Linux RAID adapter
1408P: Brian King
1409M: brking@us.ibm.com
1410S: Supported
1411
1412IBM ServeRAID RAID DRIVER
1413P: Jack Hammer
1414P: Dave Jeffery
1415M: ipslinux@adaptec.com
1416W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1417S: Supported
1418
1419IDE DRIVER [GENERAL]
1420P: Bartlomiej Zolnierkiewicz
1421M: B.Zolnierkiewicz@elka.pw.edu.pl
1422L: linux-kernel@vger.kernel.org
1423L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001424T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425S: Maintained
1426
1427IDE/ATAPI CDROM DRIVER
1428P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001429M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430L: linux-kernel@vger.kernel.org
1431W: http://www.kernel.dk
1432S: Maintained
1433
1434IDE/ATAPI FLOPPY DRIVERS
1435P: Paul Bristow
1436M: Paul Bristow <paul@paulbristow.net>
1437W: http://paulbristow.net/linux/idefloppy.html
1438L: linux-kernel@vger.kernel.org
1439S: Maintained
1440
1441IDE/ATAPI TAPE DRIVERS
1442P: Gadi Oxman
1443M: Gadi Oxman <gadio@netvision.net.il>
1444L: linux-kernel@vger.kernel.org
1445S: Maintained
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447IEEE 1394 SUBSYSTEM
1448P: Ben Collins
1449M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001450P: Stefan Richter
1451M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452L: linux1394-devel@lists.sourceforge.net
1453W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001454T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455S: Maintained
1456
Stefan Richter87730d02006-09-16 12:24:00 +02001457IEEE 1394 IPV4 DRIVER (eth1394)
1458P: Stefan Richter
1459M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001461S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463IEEE 1394 PCILYNX DRIVER
1464P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001465M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001466P: Stefan Richter
1467M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001469S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471IEEE 1394 RAW I/O DRIVER
1472P: Ben Collins
1473M: bcollins@debian.org
1474P: Dan Dennedy
1475M: dan@dennedy.org
1476L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001477S: Maintained
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479IMS TWINTURBO FRAMEBUFFER DRIVER
1480P: Paul Mundt
1481M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001482L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483S: Maintained
1484
1485INFINIBAND SUBSYSTEM
1486P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001487M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488P: Sean Hefty
1489M: mshefty@ichips.intel.com
1490P: Hal Rosenstock
1491M: halr@voltaire.com
1492L: openib-general@openib.org
1493W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001494T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495S: Supported
1496
1497INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001498P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001499M: dmitry.torokhov@gmail.com
1500M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501L: linux-input@atrey.karlin.mff.cuni.cz
1502L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001503T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504S: Maintained
1505
Robert Lovec9f04f52005-07-15 12:21:07 -04001506INOTIFY
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
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001515L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001516S: 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
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001521L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001522S: 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
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001967L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968S: 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
Jiri Slabyd7354102006-12-08 02:38:35 -08002028MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2029P: Jiri Slaby
2030M: jirislaby@gmail.com
2031L: linux-kernel@vger.kernel.org
2032S: Maintained
2033
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002034MSI LAPTOP SUPPORT
2035P: Lennart Poettering
2036M: mzxreary@0pointer.de
2037L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2038W: http://0pointer.de/lennart/tchibo.html
2039S: Maintained
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041MTRR AND SIMILAR SUPPORT [i386]
2042P: Richard Gooch
2043M: rgooch@atnf.csiro.au
2044L: linux-kernel@vger.kernel.org
2045W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2046S: Maintained
2047
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002048MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2049P: Pierre Ossman
2050M: drzeus-mmc@drzeus.cx
2051L: linux-kernel@vger.kernel.org
2052S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054MULTISOUND SOUND DRIVER
2055P: Andrew Veliath
2056M: andrewtv@usa.net
2057S: Maintained
2058
Jiri Slabyd7354102006-12-08 02:38:35 -08002059MULTITECH MULTIPORT CARD (ISICOM)
2060P: Jiri Slaby
2061M: jirislaby@gmail.com
2062L: linux-kernel@vger.kernel.org
2063S: Maintained
2064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065NATSEMI ETHERNET DRIVER (DP8381x)
2066P: Tim Hockin
2067M: thockin@hockin.org
2068S: Maintained
2069
2070NCP FILESYSTEM
2071P: Petr Vandrovec
2072M: vandrove@vc.cvut.cz
2073L: linware@sh.cvut.cz
2074S: Maintained
2075
2076NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2077P: James E.J. Bottomley
2078M: James.Bottomley@HansenPartnership.com
2079L: linux-scsi@vger.kernel.org
2080S: Maintained
2081
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002082NETEM NETWORK EMULATOR
2083P: Stephen Hemminger
2084M: shemminger@osdl.org
2085L: netem@osdl.org
2086S: Maintained
2087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088NETFILTER/IPTABLES/IPCHAINS
2089P: Rusty Russell
2090P: Marc Boucher
2091P: James Morris
2092P: Harald Welte
2093P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002094P: Patrick McHardy
2095M: kaber@trash.net
2096L: netfilter-devel@lists.netfilter.org
2097L: netfilter@lists.netfilter.org
2098L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099W: http://www.netfilter.org/
2100W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101S: Supported
2102
Paul Moore4cc67732006-09-25 15:57:13 -07002103NETLABEL
2104P: Paul Moore
2105M: paul.moore@hp.com
2106W: http://netlabel.sf.net
2107L: netdev@vger.kernel.org
2108S: Supported
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110NETROM NETWORK LAYER
2111P: Ralf Baechle
2112M: ralf@linux-mips.org
2113L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002114W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115S: Maintained
2116
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002117NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118P: Paul Clements
2119M: Paul.Clements@steeleye.com
2120S: Maintained
2121
2122NETWORK DEVICE DRIVERS
2123P: Andrew Morton
2124M: akpm@osdl.org
2125P: Jeff Garzik
2126M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002127L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002128T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129S: Maintained
2130
2131NETWORKING [GENERAL]
2132P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002133M: netdev@vger.kernel.org
2134L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002135W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136S: Maintained
2137
2138NETWORKING [IPv4/IPv6]
2139P: David S. Miller
2140M: davem@davemloft.net
2141P: Alexey Kuznetsov
2142M: kuznet@ms2.inr.ac.ru
2143P: Pekka Savola (ipv6)
2144M: pekkas@netcore.fi
2145P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002146M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147P: Hideaki YOSHIFUJI
2148M: yoshfuji@linux-ipv6.org
2149P: Patrick McHardy
2150M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002151L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002152T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153S: Maintained
2154
John W. Linville29f8f632006-01-18 14:52:48 -08002155NETWORKING [WIRELESS]
2156P: John W. Linville
2157M: linville@tuxdriver.com
2158L: netdev@vger.kernel.org
2159T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2160S: Maintained
2161
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002162NETXEN (1/10) GbE SUPPORT
2163P: Amit S. Kale
2164M: amitkale@netxen.com
2165L: netdev@vger.kernel.org
2166W: http://www.netxen.com
2167S: Supported
2168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169IPVS
2170P: Wensong Zhang
2171M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002172P: Simon Horman
2173M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174P: Julian Anastasov
2175M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002176L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177S: Maintained
2178
2179NFS CLIENT
2180P: Trond Myklebust
2181M: trond.myklebust@fys.uio.no
2182L: linux-kernel@vger.kernel.org
2183S: Maintained
2184
2185NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002186P: Jan-Pascal van Best
2187M: janpascal@vanbest.org
2188P: Andreas Mohr
2189M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002190L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191S: Maintained
2192
2193NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2194P: YOKOTA Hiroshi
2195M: yokota@netlab.is.tsukuba.ac.jp
2196W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2197S: Maintained
2198
2199NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2200P: GOTO Masanori
2201M: gotom@debian.or.jp
2202P: YOKOTA Hiroshi
2203M: yokota@netlab.is.tsukuba.ac.jp
2204W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2205S: Maintained
2206
2207NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2208P: Eberhard Moenkeberg
2209M: emoenke@gwdg.de
2210L: linux-kernel@vger.kernel.org
2211S: Maintained
2212
2213NTFS FILESYSTEM
2214P: Anton Altaparmakov
2215M: aia21@cantab.net
2216L: linux-ntfs-dev@lists.sourceforge.net
2217L: linux-kernel@vger.kernel.org
2218W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002219T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220S: Maintained
2221
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002222NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002223P: Antonino Daplas
2224M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002225L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002226S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002228OPENCORES I2C BUS DRIVER
2229P: Peter Korsgaard
2230M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002231L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002232S: Maintained
2233
Mark Fashehccd979b2005-12-15 14:31:24 -08002234ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2235P: Mark Fasheh
2236M: mark.fasheh@oracle.com
2237P: Kurt Hackel
2238M: kurt.hackel@oracle.com
2239L: ocfs2-devel@oss.oracle.com
2240W: http://oss.oracle.com/projects/ocfs2/
2241S: Supported
2242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243OLYMPIC NETWORK DRIVER
2244P: Peter De Shrijver
2245M: p2@ace.ulyssis.student.kuleuven.ac.be
2246P: Mike Phillips
2247M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002248L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249L: linux-tr@linuxtr.net
2250W: http://www.linuxtr.net
2251S: Maintained
2252
Harald Weltec1986ee2005-11-13 16:06:29 -08002253OMNIKEY CARDMAN 4000 DRIVER
2254P: Harald Welte
2255M: laforge@gnumonks.org
2256S: Maintained
2257
Harald Welte77c44ab2005-11-13 16:06:26 -08002258OMNIKEY CARDMAN 4040 DRIVER
2259P: Harald Welte
2260M: laforge@gnumonks.org
2261S: Maintained
2262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263ONSTREAM SCSI TAPE DRIVER
2264P: Willem Riede
2265M: osst@riede.org
2266L: osst-users@lists.sourceforge.net
2267L: linux-scsi@vger.kernel.org
2268S: Maintained
2269
2270OPL3-SA2, SA3, and SAx DRIVER
2271P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002272M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273L: linux-sound@vger.kernel.org
2274S: Maintained
2275
2276OPROFILE
2277P: Philippe Elie
2278M: phil.el@wanadoo.fr
2279L: oprofile-list@lists.sf.net
2280S: Maintained
2281
2282ORINOCO DRIVER
2283P: Pavel Roskin
2284M: proski@gnu.org
2285P: David Gibson
2286M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002287L: orinoco-users@lists.sourceforge.net
2288L: orinoco-devel@lists.sourceforge.net
2289W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290S: Maintained
2291
2292PARALLEL PORT SUPPORT
2293P: Phil Blundell
2294M: philb@gnu.org
2295P: Tim Waugh
2296M: tim@cyberelk.net
2297P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298P: Andrea Arcangeli
2299M: andrea@suse.de
2300L: linux-parport@lists.infradead.org
2301W: http://people.redhat.com/twaugh/parport/
2302S: Maintained
2303
2304PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2305P: Tim Waugh
2306M: tim@cyberelk.net
2307L: linux-parport@lists.infradead.org
2308W: http://www.torque.net/linux-pp.html
2309S: Maintained
2310
2311PARISC ARCHITECTURE
2312P: Matthew Wilcox
2313M: matthew@wil.cx
2314P: Grant Grundler
2315M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002316P: Kyle McMartin
2317M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318L: parisc-linux@parisc-linux.org
2319W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002320T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2321T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322S: Maintained
2323
Jim Cromie1662d322006-10-06 00:43:59 -07002324PC87360 HARDWARE MONITORING DRIVER
2325P: Jim Cromie
2326M: jim.cromie@gmail.com
2327L: lm-sensors@lm-sensors.org
2328S: Maintained
2329
2330PC8736x GPIO DRIVER
2331P: Jim Cromie
2332M: jim.cromie@gmail.com
2333S: Maintained
2334
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002335PCI ERROR RECOVERY
2336P: Linas Vepstas
2337M: linas@austin.ibm.com
2338L: linux-kernel@vger.kernel.org
2339L: linux-pci@atrey.karlin.mff.cuni.cz
2340S: Supported
2341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2343P: Thomas Sailer
2344M: sailer@ife.ee.ethz.ch
2345L: linux-sound@vger.kernel.org
2346W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2347S: Maintained
2348
2349PCI SUBSYSTEM
2350P: Greg Kroah-Hartman
2351M: gregkh@suse.de
2352L: linux-kernel@vger.kernel.org
2353L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002354T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355S: Supported
2356
2357PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002358P: Kristen Carlson Accardi
2359M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360S: Supported
2361
2362PCI HOTPLUG COMPAQ DRIVER
2363P: Greg Kroah-Hartman
2364M: greg@kroah.com
2365S: Maintained
2366
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002367PCIE HOTPLUG DRIVER
2368P: Kristen Carlson Accardi
2369M: kristen.c.accardi@intel.com
2370L: pcihpd-discuss@lists.sourceforge.net
2371S: Maintained
2372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002374P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002375L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002377T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002378S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380PCNET32 NETWORK DRIVER
2381P: Thomas Bogendörfer
2382M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002383L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384S: Maintained
2385
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002386PER-TASK DELAY ACCOUNTING
2387P: Shailabh Nagar
2388M: nagar@watson.ibm.com
2389L: linux-kernel@vger.kernel.org
2390S: Maintained
2391
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002392PERSONALITY HANDLING
2393P: Christoph Hellwig
2394M: hch@infradead.org
2395L: linux-abi-devel@lists.sourceforge.net
2396S: Maintained
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398PHRAM MTD DRIVER
2399P: Jörn Engel
2400M: joern@wh.fh-wedel.de
2401L: linux-mtd@lists.infradead.org
2402S: Maintained
2403
Peter Osterlund249a6772005-09-27 21:45:30 -07002404PKTCDVD DRIVER
2405P: Peter Osterlund
2406M: petero2@telia.com
2407L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002408S: Maintained
2409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410POSIX CLOCKS and TIMERS
2411P: George Anzinger
2412M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002413L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414S: Supported
2415
Eugene Surovegin24682972005-10-14 03:00:53 -07002416POWERPC 4xx EMAC DRIVER
2417P: Eugene Surovegin
2418M: ebs@ebshome.net
2419W: http://kernel.ebshome.net/emac/
2420L: linuxppc-embedded@ozlabs.org
2421L: netdev@vger.kernel.org
2422S: Maintained
2423
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424PNP SUPPORT
2425P: Adam Belay
2426M: ambx1@neo.rr.com
2427S: Maintained
2428
2429PPP PROTOCOL DRIVERS AND COMPRESSORS
2430P: Paul Mackerras
2431M: paulus@samba.org
2432L: linux-ppp@vger.kernel.org
2433S: Maintained
2434
2435PPP OVER ATM (RFC 2364)
2436P: Mitchell Blank Jr
2437M: mitch@sfgoth.com
2438S: Maintained
2439
2440PPP OVER ETHERNET
2441P: Michal Ostrowski
2442M: mostrows@speakeasy.net
2443S: Maintained
2444
2445PREEMPTIBLE KERNEL
2446P: Robert Love
2447M: rml@tech9.net
2448L: linux-kernel@vger.kernel.org
2449L: kpreempt-tech@lists.sourceforge.net
2450W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2451S: Supported
2452
2453PRISM54 WIRELESS DRIVER
2454P: Prism54 Development Team
2455M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002456L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457W: http://prism54.org
2458S: Maintained
2459
2460PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2461P: Peter Denison
2462M: promise@pnd-pc.demon.co.uk
2463W: http://www.pnd-pc.demon.co.uk/promise/
2464S: Maintained
2465
Geoff Levandf58a9d12006-11-23 00:46:51 +01002466PS3 PLATFORM SUPPORT
2467P: Geoff Levand
2468M: geoffrey.levand@am.sony.com
2469L: linuxppc-dev@ozlabs.org
2470L: cbe-oss-dev@ozlabs.org
2471S: Supported
2472
Michael Krufky83202042006-07-03 00:24:18 -07002473PVRUSB2 VIDEO4LINUX DRIVER
2474P: Mike Isely
2475M: isely@pobox.com
2476L: pvrusb2@isely.net
2477L: video4linux-list@redhat.com
2478W: http://www.isely.net/pvrusb2/
2479S: Maintained
2480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481PXA2xx SUPPORT
2482P: Nicolas Pitre
2483M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002484L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485S: Maintained
2486
2487QLOGIC QLA2XXX FC-SCSI DRIVER
2488P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002489M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490L: linux-scsi@vger.kernel.org
2491S: Supported
2492
Ron Mercer5a4faa872006-07-25 00:40:21 -07002493QLOGIC QLA3XXX NETWORK DRIVER
2494P: Ron Mercer
2495M: linux-driver@qlogic.com
2496L: netdev@vger.kernel.org
2497S: Supported
2498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499QNX4 FILESYSTEM
2500P: Anders Larsen
2501M: al@alarsen.net
2502L: linux-kernel@vger.kernel.org
2503W: http://www.alarsen.net/linux/qnx4fs/
2504S: Maintained
2505
2506RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002507P: Benjamin Herrenschmidt
2508M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002509L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510S: Maintained
2511
2512RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002513P: Paul Mackerras
2514M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002515L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516S: Maintained
2517
2518RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2519P: Corey Thomas
2520M: corey@world.std.com
2521L: linux-kernel@vger.kernel.org
2522S: Maintained
2523
Matt Mackall9e95ce22005-04-16 15:25:56 -07002524RANDOM NUMBER DRIVER
2525P: Matt Mackall
2526M: mpm@selenic.com
2527S: Maintained
2528
Matt Porter394b7012005-11-07 01:00:15 -08002529RAPIDIO SUBSYSTEM
2530P: Matt Porter
2531M: mporter@kernel.crashing.org
2532L: linux-kernel@vger.kernel.org
2533S: Maintained
2534
Josh Triplett595182b2006-10-04 02:17:21 -07002535READ-COPY UPDATE (RCU)
2536P: Dipankar Sarma
2537M: dipankar@in.ibm.com
2538W: http://www.rdrop.com/users/paulmck/rclock/
2539L: linux-kernel@vger.kernel.org
2540S: Supported
2541
2542RCUTORTURE MODULE
2543P: Josh Triplett
2544M: josh@freedesktop.org
2545L: linux-kernel@vger.kernel.org
2546S: Maintained
2547
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548REAL TIME CLOCK DRIVER
2549P: Paul Gortmaker
2550M: p_gortmaker@yahoo.com
2551L: linux-kernel@vger.kernel.org
2552S: Maintained
2553
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002554REAL TIME CLOCK (RTC) SUBSYSTEM
2555P: Alessandro Zummo
2556M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002557L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002558S: Maintained
2559
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560REISERFS FILE SYSTEM
2561P: Hans Reiser
2562M: reiserfs-dev@namesys.com
2563L: reiserfs-list@namesys.com
2564W: http://www.namesys.com
2565S: Supported
2566
2567ROCKETPORT DRIVER
2568P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569W: http://www.comtrol.com
2570S: Maintained
2571
2572ROSE NETWORK LAYER
2573P: Ralf Baechle
2574M: ralf@linux-mips.org
2575L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002576W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577S: Maintained
2578
2579RISCOM8 DRIVER
2580S: Orphan
2581
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002582S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002583P: Antonino Daplas
2584M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002585L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002586S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588S390
2589P: Martin Schwidefsky
2590M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002591P: Heiko Carstens
2592M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593M: linux390@de.ibm.com
2594L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002595W: http://www.ibm.com/developerworks/linux/linux390/
2596S: Supported
2597
2598S390 NETWORK DRIVERS
2599P: Frank Pavlic
2600M: fpavlic@de.ibm.com
2601M: linux390@de.ibm.com
2602L: linux-390@vm.marist.edu
2603W: http://www.ibm.com/developerworks/linux/linux390/
2604S: Supported
2605
2606S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002607P: Swen Schillig
2608M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002609M: linux390@de.ibm.com
2610L: linux-390@vm.marist.edu
2611W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612S: Supported
2613
2614SAA7146 VIDEO4LINUX-2 DRIVER
2615P: Michael Hunold
2616M: michael@mihu.de
2617W: http://www.mihu.de/linux/saa7146
2618S: Maintained
2619
2620SBPCD CDROM DRIVER
2621P: Eberhard Moenkeberg
2622M: emoenke@gwdg.de
2623L: linux-kernel@vger.kernel.org
2624S: Maintained
2625
2626SC1200 WDT DRIVER
2627P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002628M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629S: Maintained
2630
2631SCHEDULER
2632P: Ingo Molnar
2633M: mingo@elte.hu
2634P: Robert Love [the preemptible kernel bits]
2635M: rml@tech9.net
2636L: linux-kernel@vger.kernel.org
2637S: Maintained
2638
2639SCSI CDROM DRIVER
2640P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002641M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642L: linux-scsi@vger.kernel.org
2643W: http://www.kernel.dk
2644S: Maintained
2645
2646SCSI SG DRIVER
2647P: Doug Gilbert
2648M: dgilbert@interlog.com
2649L: linux-scsi@vger.kernel.org
2650W: http://www.torque.net/sg
2651S: Maintained
2652
2653SCSI SUBSYSTEM
2654P: James E.J. Bottomley
2655M: James.Bottomley@SteelEye.com
2656L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002657T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658S: Maintained
2659
2660SCSI TAPE DRIVER
2661P: Kai Mäkisara
2662M: Kai.Makisara@kolumbus.fi
2663L: linux-scsi@vger.kernel.org
2664S: Maintained
2665
2666SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002667P: Sridhar Samudrala
2668M: sri@us.ibm.com
2669L: lksctp-developers@lists.sourceforge.net
2670S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002673P: Jim Cromie
2674M: jim.cromie@gmail.com
2675S: Odd Fixes
2676
2677SCx200 GPIO DRIVER
2678P: Jim Cromie
2679M: jim.cromie@gmail.com
2680S: Maintained
2681
2682SCx200 HRT CLOCKSOURCE DRIVER
2683P: Jim Cromie
2684M: jim.cromie@gmail.com
2685S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
2687SECURITY CONTACT
2688P: Security Officers
2689M: security@kernel.org
2690S: Supported
2691
2692SELINUX SECURITY MODULE
2693P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002694M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002696M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697L: linux-kernel@vger.kernel.org (kernel issues)
2698L: selinux@tycho.nsa.gov (general discussion)
2699W: http://www.nsa.gov/selinux
2700S: Supported
2701
2702SERIAL ATA (SATA) SUBSYSTEM:
2703P: Jeff Garzik
2704M: jgarzik@pobox.com
2705L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002706T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707S: Supported
2708
2709SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2710P: Pat Gefre
2711M: pfg@sgi.com
2712L: linux-ia64@vger.kernel.org
2713S: Supported
2714
2715SGI VISUAL WORKSTATION 320 AND 540
2716P: Andrey Panin
2717M: pazke@donpac.ru
2718L: linux-visws-devel@lists.sf.net
2719W: http://linux-visws.sf.net
2720S: Maintained for 2.6.
2721
2722SIMTEC EB110ATX (Chalice CATS)
2723P: Ben Dooks
2724P: Vincent Sanders
2725M: support@simtec.co.uk
2726W: http://www.simtec.co.uk/products/EB110ATX/
2727S: Supported
2728
2729SIMTEC EB2410ITX (BAST)
2730P: Ben Dooks
2731P: Vincent Sanders
2732M: support@simtec.co.uk
2733W: http://www.simtec.co.uk/products/EB2410ITX/
2734S: Supported
2735
Francois Romieu92aab3c2005-07-30 13:11:18 +02002736SIS 190 ETHERNET DRIVER
2737P: Francois Romieu
2738M: romieu@fr.zoreil.com
2739L: netdev@vger.kernel.org
2740S: Maintained
2741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742SIS 5513 IDE CONTROLLER DRIVER
2743P: Lionel Bouton
2744M: Lionel.Bouton@inet6.fr
2745W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2746W: http://gyver.homeip.net/sis5513/index.html
2747S: Maintained
2748
2749SIS 900/7016 FAST ETHERNET DRIVER
2750P: Daniele Venzano
2751M: venza@brownhat.org
2752W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002753L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754S: Maintained
2755
2756SIS FRAMEBUFFER DRIVER
2757P: Thomas Winischhofer
2758M: thomas@winischhofer.net
2759W: http://www.winischhofer.net/linuxsisvga.shtml
2760S: Maintained
2761
2762SIS USB2VGA DRIVER
2763P: Thomas Winischhofer
2764M: thomas@winischhofer.net
2765W: http://www.winischhofer.at/linuxsisusbvga.shtml
2766S: Maintained
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768SMC91x ETHERNET DRIVER
2769P: Nicolas Pitre
2770M: nico@cam.org
2771S: Maintained
2772
Daniel Drake8f0f8502006-07-18 22:00:25 +01002773SOFTMAC LAYER (IEEE 802.11)
2774P: Johannes Berg
2775M: johannes@sipsolutions.net
2776P: Joe Jezak
2777M: josejx@gentoo.org
2778P: Daniel Drake
2779M: dsd@gentoo.org
2780W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002781L: netdev@vger.kernel.org
2782S: Maintained
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784SOFTWARE RAID (Multiple Disks) SUPPORT
2785P: Ingo Molnar
2786M: mingo@redhat.com
2787P: Neil Brown
2788M: neilb@cse.unsw.edu.au
2789L: linux-raid@vger.kernel.org
2790S: Maintained
2791
2792SOFTWARE SUSPEND:
2793P: Pavel Machek
2794M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002795L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796S: Maintained
2797
2798SONIC NETWORK DRIVER
2799P: Thomas Bogendoerfer
2800M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002801L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802S: Maintained
2803
2804SONY VAIO CONTROL DEVICE DRIVER
2805P: Stelian Pop
2806M: stelian@popies.net
2807W: http://popies.net/sonypi/
2808S: Maintained
2809
2810SOUND
2811P: Jaroslav Kysela
2812M: perex@suse.cz
2813L: alsa-devel@alsa-project.org
2814S: Maintained
2815
Kumar Gala025c3982006-04-02 16:05:54 -05002816SPI SUBSYSTEM
2817P: David Brownell
2818M: dbrownell@users.sourceforge.net
2819L: spi-devel-general@lists.sourceforge.net
2820S: Maintained
2821
Steven Rostedt855f46a2006-08-05 12:14:50 -07002822STABLE BRANCH:
2823P: Greg Kroah-Hartman
2824M: greg@kroah.com
2825P: Chris Wright
2826M: chrisw@sous-sol.org
2827L: stable@kernel.org
2828S: Maintained
2829
Kylene Hall1c72d462005-05-01 08:59:13 -07002830TPM DEVICE DRIVER
2831P: Kylene Hall
2832M: kjhall@us.ibm.com
2833W: http://tpmdd.sourceforge.net
2834L: tpmdd-devel@lists.sourceforge.net
2835S: Maintained
2836
Mark Gross1a80ba82005-10-30 15:02:55 -08002837Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002838P: Mark Gross
2839M: mark.gross@intel.com
2840S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08002841
Chris Zankel48b415c2005-06-23 22:01:07 -07002842TENSILICA XTENSA PORT (xtensa):
2843P: Chris Zankel
2844M: chris@zankel.net
2845S: Maintained
2846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847UltraSPARC (sparc64):
2848P: David S. Miller
2849M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002851T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852S: Maintained
2853
2854SHARP LH SUPPORT (LH7952X & LH7A40X)
2855P: Marc Singer
2856M: elf@buici.com
2857W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002858L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859S: Maintained
2860
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002861SHPC HOTPLUG DRIVER
2862P: Kristen Carlson Accardi
2863M: kristen.c.accardi@intel.com
2864L: pcihpd-discuss@lists.sourceforge.net
2865S: Maintained
2866
Pierre Ossmand129bce2006-03-24 03:18:17 -08002867SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2868P: Pierre Ossman
2869M: drzeus-sdhci@drzeus.cx
2870L: sdhci-devel@list.drzeus.cx
2871W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2872S: Maintained
2873
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002874SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2875P: Stephen Hemminger
2876M: shemminger@osdl.org
2877L: netdev@vger.kernel.org
2878S: Maintained
2879
Chris Boot1a87d942006-07-10 04:45:34 -07002880SOEKRIS NET48XX LED SUPPORT
2881P: Chris Boot
2882M: bootc@bootc.net
2883S: Maintained
2884
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885SPARC (sparc32):
2886P: William L. Irwin
2887M: wli@holomorphy.com
2888L: sparclinux@vger.kernel.org
2889S: Maintained
2890
2891SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2892P: Roger Wolff
2893M: R.E.Wolff@BitWizard.nl
2894L: linux-kernel@vger.kernel.org ?
2895S: Supported
2896
Jim Lewis2752e402006-09-29 02:01:19 -07002897SPIDERNET NETWORK DRIVER for CELL
2898P: Jim Lewis
2899M: jim@jklewis.com
2900L: netdev@vger.kernel.org
2901S: Supported
2902
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903SRM (Alpha) environment access
2904P: Jan-Benedict Glaw
2905M: jbglaw@lug-owl.de
2906L: linux-kernel@vger.kernel.org
2907S: Maintained
2908
2909STARFIRE/DURALAN NETWORK DRIVER
2910P: Ion Badulescu
2911M: ionut@cs.columbia.edu
2912S: Maintained
2913
2914STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2915W: http://mosquitonet.Stanford.EDU/strip.html
2916S: Unsupported ?
2917
2918STRADIS MPEG-2 DECODER DRIVER
2919P: Nathan Laredo
2920M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921W: http://www.stradis.com/
2922S: Maintained
2923
2924SUPERH (sh)
2925P: Paul Mundt
2926M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002927L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929S: Maintained
2930
2931SUPERH64 (sh64)
2932P: Paul Mundt
2933M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934L: linuxsh-shmedia-dev@lists.sourceforge.net
2935W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936S: Maintained
2937
2938SUN3/3X
2939P: Sam Creasey
2940M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941W: http://sammy.net/sun3/
2942S: Maintained
2943
2944SVGA HANDLING
2945P: Martin Mares
2946M: mj@ucw.cz
2947L: linux-video@atrey.karlin.mff.cuni.cz
2948S: Maintained
2949
2950SYSV FILESYSTEM
2951P: Christoph Hellwig
2952M: hch@infradead.org
2953S: Maintained
2954
Stephen Hemminger781b456a2006-07-10 20:25:29 -07002955TC CLASSIFIER
2956P: Jamal Hadi Salim
2957M: hadi@cyberus.ca
2958L: netdev@vger.kernel.org
2959S: Maintained
2960
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002961TCP LOW PRIORITY MODULE
2962P: Wong Hoi Sing, Edison
2963M: hswong3i@gmail.com
2964P: Hung Hing Lun, Mike
2965M: hlhung3i@gmail.com
2966W: http://tcp-lp-mod.sourceforge.net/
2967S: Maintained
2968
Alex Dubov4020f2d2006-10-04 02:15:37 -07002969TI FLASH MEDIA INTERFACE DRIVER
2970P: Alex Dubov
2971M: oakad@yahoo.com
2972S: Maintained
2973
Michael Buesch844dd052006-06-26 00:24:59 -07002974TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2975P: Deepak Saxena
2976M: dsaxena@plexity.net
2977S: Maintained
2978
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002979TASKSTATS STATISTICS INTERFACE
2980P: Shailabh Nagar
2981M: nagar@watson.ibm.com
2982L: linux-kernel@vger.kernel.org
2983S: Maintained
2984
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002986P: Romain Lievin
2987M: roms@lpg.ticalc.org
2988S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Per Lidene86eaa32006-01-12 16:45:18 +01002990TIPC NETWORK LAYER
2991P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002992M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002993P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002994M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002995P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002996M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002997L: tipc-discussion@lists.sourceforge.net
2998W: http://tipc.sourceforge.net/
2999W: http://tipc.cslab.ericsson.net/
3000T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3001S: Maintained
3002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003TLAN NETWORK DRIVER
3004P: Samuel Chessman
3005M: chessman@tux.org
3006L: tlan-devel@lists.sourceforge.net
3007W: http://sourceforge.net/projects/tlan/
3008S: Maintained
3009
3010TOKEN-RING NETWORK DRIVER
3011P: Mike Phillips
3012M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003013L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014L: linux-tr@linuxtr.net
3015W: http://www.linuxtr.net
3016S: Maintained
3017
3018TOSHIBA ACPI EXTRAS DRIVER
3019P: John Belmonte
3020M: toshiba_acpi@memebeam.org
3021W: http://memebeam.org/toys/ToshibaAcpiDriver
3022S: Maintained
3023
3024TOSHIBA SMM DRIVER
3025P: Jonathan Buzzard
3026M: jonathan@buzzard.org.uk
3027L: tlinux-users@tce.toshiba-dme.co.jp
3028W: http://www.buzzard.org.uk/toshiba/
3029S: Maintained
3030
3031TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3032P: Muli Ben-Yehuda
3033M: mulix@mulix.org
3034L: linux-kernel@vger.kernel.org
3035S: Maintained
3036
3037TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003038P: Adrian Bunk
3039M: trivial@kernel.org
3040L: linux-kernel@vger.kernel.org
3041W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3042T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3043S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
3045TMS380 TOKEN-RING NETWORK DRIVER
3046P: Adam Fritzler
3047M: mid@auk.cx
3048L: linux-tr@linuxtr.net
3049W: http://www.auk.cx/tms380tr/
3050S: Maintained
3051
3052TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003053P: Valerie Henson
3054M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055L: tulip-users@lists.sourceforge.net
3056W: http://sourceforge.net/projects/tulip/
3057S: Maintained
3058
3059TUN/TAP driver
3060P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003061M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062L: vtun@office.satix.net
3063W: http://vtun.sourceforge.net/tun
3064S: Maintained
3065
3066U14-34F SCSI DRIVER
3067P: Dario Ballabio
3068M: ballabio_dario@emc.com
3069L: linux-scsi@vger.kernel.org
3070S: Maintained
3071
3072UDF FILESYSTEM
3073P: Ben Fennema
3074M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075W: http://linux-udf.sourceforge.net
3076S: Maintained
3077
3078UNIFORM CDROM DRIVER
3079P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003080M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081L: linux-kernel@vger.kernel.org
3082W: http://www.kernel.dk
3083S: Maintained
3084
3085USB ACM DRIVER
3086P: Oliver Neukum
3087M: oliver@neukum.name
3088L: linux-usb-users@lists.sourceforge.net
3089L: linux-usb-devel@lists.sourceforge.net
3090S: Maintained
3091
3092USB BLOCK DRIVER (UB ub)
3093P: Pete Zaitcev
3094M: zaitcev@redhat.com
3095L: linux-kernel@vger.kernel.org
3096L: linux-usb-devel@lists.sourceforge.net
3097S: Supported
3098
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099USB CDC ETHERNET DRIVER
3100P: Greg Kroah-Hartman
3101M: greg@kroah.com
3102L: linux-usb-users@lists.sourceforge.net
3103L: linux-usb-devel@lists.sourceforge.net
3104S: Maintained
3105W: http://www.kroah.com/linux-usb/
3106
3107USB EHCI DRIVER
3108P: David Brownell
3109M: dbrownell@users.sourceforge.net
3110L: linux-usb-devel@lists.sourceforge.net
3111S: Maintained
3112
Luca Risolia7ce08c92006-01-11 02:06:59 +00003113USB ET61X[12]51 DRIVER
3114P: Luca Risolia
3115M: luca.risolia@studio.unibo.it
3116L: linux-usb-devel@lists.sourceforge.net
3117L: video4linux-list@redhat.com
3118W: http://www.linux-projects.org
3119S: Maintained
3120
David Brownell69ae9e32006-11-14 02:03:31 -08003121USB GADGET/PERIPHERAL SUBSYSTEM
3122P: David Brownell
3123M: dbrownell@users.sourceforge.net
3124L: linux-usb-devel@lists.sourceforge.net
3125W: http://www.linux-usb.org/gadget
3126S: Maintained
3127
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128USB HID/HIDBP DRIVERS
3129P: Vojtech Pavlik
3130M: vojtech@suse.cz
3131L: linux-usb-users@lists.sourceforge.net
3132L: linux-usb-devel@lists.sourceforge.net
3133S: Maintained
3134
3135USB HUB DRIVER
3136P: Johannes Erdfelt
3137M: johannes@erdfelt.com
3138L: linux-usb-users@lists.sourceforge.net
3139L: linux-usb-devel@lists.sourceforge.net
3140S: Maintained
3141
Olav Kongas959eea22005-11-03 17:38:14 +02003142USB ISP116X DRIVER
3143P: Olav Kongas
3144M: ok@artecdesign.ee
3145L: linux-usb-devel@lists.sourceforge.net
3146S: Maintained
3147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148USB KAWASAKI LSI DRIVER
3149P: Oliver Neukum
3150M: oliver@neukum.name
3151L: linux-usb-users@lists.sourceforge.net
3152L: linux-usb-devel@lists.sourceforge.net
3153S: Maintained
3154
3155USB MASS STORAGE DRIVER
3156P: Matthew Dharm
3157M: mdharm-usb@one-eyed-alien.net
3158L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003159L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160S: Maintained
3161W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3162
3163USB OHCI DRIVER
3164P: Roman Weissgaerber
3165M: weissg@vienna.at
3166L: linux-usb-users@lists.sourceforge.net
3167L: linux-usb-devel@lists.sourceforge.net
3168S: Maintained
3169
Matthias Urlichsba460e42005-07-14 00:33:47 -07003170USB OPTION-CARD DRIVER
3171P: Matthias Urlichs
3172M: smurf@smurf.noris.de
3173L: linux-usb-devel@lists.sourceforge.net
3174S: Maintained
3175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176USB OV511 DRIVER
3177P: Mark McClelland
3178M: mmcclell@bigfoot.com
3179L: linux-usb-users@lists.sourceforge.net
3180L: linux-usb-devel@lists.sourceforge.net
3181W: http://alpha.dyndns.org/ov511/
3182S: Maintained
3183
3184USB PEGASUS DRIVER
3185P: Petko Manolov
3186M: petkan@users.sourceforge.net
3187L: linux-usb-users@lists.sourceforge.net
3188L: linux-usb-devel@lists.sourceforge.net
3189W: http://pegasus2.sourceforge.net/
3190S: Maintained
3191
3192USB PRINTER DRIVER
3193P: Vojtech Pavlik
3194M: vojtech@suse.cz
3195L: linux-usb-users@lists.sourceforge.net
3196L: linux-usb-devel@lists.sourceforge.net
3197S: Maintained
3198
3199USB RTL8150 DRIVER
3200P: Petko Manolov
3201M: petkan@users.sourceforge.net
3202L: linux-usb-users@lists.sourceforge.net
3203L: linux-usb-devel@lists.sourceforge.net
3204W: http://pegasus2.sourceforge.net/
3205S: Maintained
3206
3207USB SE401 DRIVER
3208P: Jeroen Vreeken
3209M: pe1rxq@amsat.org
3210L: linux-usb-users@lists.sourceforge.net
3211L: linux-usb-devel@lists.sourceforge.net
3212W: http://www.chello.nl/~j.vreeken/se401/
3213S: Maintained
3214
3215USB SERIAL CYBERJACK DRIVER
3216P: Matthias Bruestle and Harald Welte
3217M: support@reiner-sct.com
3218W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3219S: Maintained
3220
3221USB SERIAL DIGI ACCELEPORT DRIVER
3222P: Peter Berger and Al Borchers
3223M: pberger@brimson.com
3224M: alborchers@steinerpoint.com
3225L: linux-usb-users@lists.sourceforge.net
3226L: linux-usb-devel@lists.sourceforge.net
3227S: Maintained
3228
3229USB SERIAL DRIVER
3230P: Greg Kroah-Hartman
3231M: gregkh@suse.de
3232L: linux-usb-users@lists.sourceforge.net
3233L: linux-usb-devel@lists.sourceforge.net
3234S: Supported
3235
3236USB SERIAL BELKIN F5U103 DRIVER
3237P: William Greathouse
3238M: wgreathouse@smva.com
3239L: linux-usb-users@lists.sourceforge.net
3240L: linux-usb-devel@lists.sourceforge.net
3241S: Maintained
3242
3243USB SERIAL CYPRESS M8 DRIVER
3244P: Lonnie Mendez
3245M: dignome@gmail.com
3246L: linux-usb-users@lists.sourceforge.net
3247L: linux-usb-devel@lists.sourceforge.net
3248S: Maintained
3249W: http://geocities.com/i0xox0i
3250W: http://firstlight.net/cvs
3251
3252USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3253L: linux-usb-users@lists.sourceforge.net
3254L: linux-usb-devel@lists.sourceforge.net
3255S: Maintained
3256
3257USB AUERSWALD DRIVER
3258P: Wolfgang Muees
3259M: wolfgang@iksw-muees.de
3260L: linux-usb-users@lists.sourceforge.net
3261L: linux-usb-devel@lists.sourceforge.net
3262S: Maintained
3263
3264USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3265P: Gary Brubaker
3266M: xavyer@ix.netcom.com
3267L: linux-usb-users@lists.sourceforge.net
3268L: linux-usb-devel@lists.sourceforge.net
3269S: Maintained
3270
3271USB SERIAL KEYSPAN DRIVER
3272P: Greg Kroah-Hartman
3273M: greg@kroah.com
3274L: linux-usb-users@lists.sourceforge.net
3275L: linux-usb-devel@lists.sourceforge.net
3276W: http://www.kroah.com/linux/
3277S: Maintained
3278
3279USB SERIAL WHITEHEAT DRIVER
3280P: Stuart MacDonald
3281M: stuartm@connecttech.com
3282L: linux-usb-users@lists.sourceforge.net
3283L: linux-usb-devel@lists.sourceforge.net
3284W: http://www.connecttech.com
3285S: Supported
3286
3287USB SN9C10x DRIVER
3288P: Luca Risolia
3289M: luca.risolia@studio.unibo.it
3290L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003291L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292W: http://www.linux-projects.org
3293S: Maintained
3294
3295USB SUBSYSTEM
3296P: Greg Kroah-Hartman
3297M: gregkh@suse.de
3298L: linux-usb-users@lists.sourceforge.net
3299L: linux-usb-devel@lists.sourceforge.net
3300W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003301T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302S: Supported
3303
3304USB UHCI DRIVER
3305P: Alan Stern
3306M: stern@rowland.harvard.edu
3307L: linux-usb-users@lists.sourceforge.net
3308L: linux-usb-devel@lists.sourceforge.net
3309S: Maintained
3310
David Brownell69ae9e32006-11-14 02:03:31 -08003311USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312P: David Brownell
3313M: dbrownell@users.sourceforge.net
3314L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003315W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316S: Maintained
3317
3318USB W996[87]CF DRIVER
3319P: Luca Risolia
3320M: luca.risolia@studio.unibo.it
3321L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003322L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323W: http://www.linux-projects.org
3324S: Maintained
3325
Luca Risolia60f78052006-02-06 16:29:35 +00003326USB ZC0301 DRIVER
3327P: Luca Risolia
3328M: luca.risolia@studio.unibo.it
3329L: linux-usb-devel@lists.sourceforge.net
3330L: video4linux-list@redhat.com
3331W: http://www.linux-projects.org
3332S: Maintained
3333
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334USB ZD1201 DRIVER
3335P: Jeroen Vreeken
3336M: pe1rxq@amsat.org
3337L: linux-usb-users@lists.sourceforge.net
3338L: linux-usb-devel@lists.sourceforge.net
3339W: http://linux-lc100020.sourceforge.net
3340S: Maintained
3341
3342USER-MODE LINUX
3343P: Jeff Dike
3344M: jdike@karaya.com
3345L: user-mode-linux-devel@lists.sourceforge.net
3346L: user-mode-linux-user@lists.sourceforge.net
3347W: http://user-mode-linux.sourceforge.net
3348S: Maintained
3349
3350FAT/VFAT/MSDOS FILESYSTEM:
3351P: OGAWA Hirofumi
3352M: hirofumi@mail.parknet.co.jp
3353L: linux-kernel@vger.kernel.org
3354S: Maintained
3355
3356VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3357P: Jeff Garzik
3358S: Odd fixes
3359
3360VIA RHINE NETWORK DRIVER
3361P: Roger Luethi
3362M: rl@hellgate.ch
3363S: Maintained
3364
Jean Delvare32c0a522005-09-22 21:47:58 +02003365VIAPRO SMBUS DRIVER
3366P: Jean Delvare
3367M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003368L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003369S: Maintained
3370
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371UCLINUX (AND M68KNOMMU)
3372P: Greg Ungerer
3373M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003375L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376S: Maintained
3377
3378UCLINUX FOR NEC V850
3379P: Miles Bader
3380M: uclinux-v850@lsi.nec.co.jp
3381W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3382W: http://www.ee.nec.de/uclinux/
3383S: Supported
3384
3385UCLINUX FOR RENESAS H8/300
3386P: Yoshinori Sato
3387M: ysato@users.sourceforge.jp
3388W: http://uclinux-h8.sourceforge.jp/
3389S: Supported
3390
3391USB DIAMOND RIO500 DRIVER
3392P: Cesar Miquel
3393M: miquel@df.uba.ar
3394L: rio500-users@lists.sourceforge.net
3395W: http://rio500.sourceforge.net
3396S: Maintained
3397
3398VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003399P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003400M: mchehab@infradead.org
3401M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003403W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003404T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003405S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Juerg Haefligerab413192006-09-24 20:54:04 +02003407VT1211 HARDWARE MONITOR DRIVER
3408P: Juerg Haefliger
3409M: juergh@gmail.com
3410L: lm-sensors@lm-sensors.org
3411S: Maintained
3412
Roger Lucas1de9e372005-11-26 20:20:05 +01003413VT8231 HARDWARE MONITOR DRIVER
3414P: Roger Lucas
3415M: roger@planbit.co.uk
3416L: lm-sensors@lm-sensors.org
3417S: Maintained
3418
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419W1 DALLAS'S 1-WIRE BUS
3420P: Evgeniy Polyakov
3421M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422S: Maintained
3423
Charles Spirakis13927072006-07-05 18:05:15 +02003424W83791D HARDWARE MONITORING DRIVER
3425P: Charles Spirakis
3426M: bezaur@gmail.com
3427L: lm-sensors@lm-sensors.org
3428S: Maintained
3429
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430W83L51xD SD/MMC CARD INTERFACE DRIVER
3431P: Pierre Ossman
3432M: drzeus-wbsd@drzeus.cx
3433L: wbsd-devel@list.drzeus.cx
3434W: http://projects.drzeus.cx/wbsd
3435S: Maintained
3436
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003437WATCHDOG DEVICE DRIVERS
3438P: Wim Van Sebroeck
3439M: wim@iguana.be
3440T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3441S: Maintained
3442
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3444P: Jean Tourrilhes
3445M: jt@hpl.hp.com
3446W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3447S: Maintained
3448
3449WD7000 SCSI DRIVER
3450P: Miroslav Zagorac
3451M: zaga@fly.cc.fer.hr
3452L: linux-scsi@vger.kernel.org
3453S: Maintained
3454
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003455WISTRON LAPTOP BUTTON DRIVER
3456P: Miloslav Trmac
3457M: mitr@volny.cz
3458S: Maintained
3459
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460WL3501 WIRELESS PCMCIA CARD DRIVER
3461P: Arnaldo Carvalho de Melo
3462M: acme@conectiva.com.br
3463W: http://advogato.org/person/acme
3464S: Maintained
3465
3466X.25 NETWORK LAYER
3467P: Henner Eisen
3468M: eis@baty.hanse.de
3469L: linux-x25@vger.kernel.org
3470S: Maintained
3471
3472XFS FILESYSTEM
3473P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003474P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003476L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003478T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479S: Supported
3480
Peter Korsgaard238b8722006-12-06 20:35:17 -08003481XILINX UARTLITE SERIAL DRIVER
3482P: Peter Korsgaard
3483M: jacmet@sunsite.dk
3484L: linux-serial@vger.kernel.org
3485S: Maintained
3486
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487X86 3-LEVEL PAGING (PAE) SUPPORT
3488P: Ingo Molnar
3489M: mingo@redhat.com
3490S: Maintained
3491
3492X86-64 port
3493P: Andi Kleen
3494M: ak@suse.de
3495L: discuss@x86-64.org
3496W: http://www.x86-64.org
3497S: Maintained
3498
3499YAM DRIVER FOR AX.25
3500P: Jean-Paul Roubelat
3501M: jpr@f6fbb.org
3502L: linux-hams@vger.kernel.org
3503S: Maintained
3504
Henkaf64a5e2005-10-12 15:02:56 +02003505YEALINK PHONE DRIVER
3506P: Henk Vergonet
3507M: Henk.Vergonet@gmail.com
3508L: usbb2k-api-dev@nongnu.org
3509S: Maintained
3510
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511Z8530 DRIVER FOR AX.25
3512P: Joerg Reuter
3513M: jreuter@yaina.de
3514W: http://yaina.de/jreuter/
3515W: http://www.qsl.net/dl1bke/
3516L: linux-hams@vger.kernel.org
3517S: Maintained
3518
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003519ZD1211RW WIRELESS DRIVER
3520P: Daniel Drake
3521M: dsd@gentoo.org
3522P: Ulrich Kunitz
3523M: kune@deine-taler.de
3524W: http://zd1211.ath.cx/wiki/DriverRewrite
3525L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3526S: Maintained
3527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528ZF MACHZ WATCHDOG
3529P: Fernando Fuganti
3530M: fuganti@netbank.com.br
3531W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3532S: Maintained
3533
3534ZR36067 VIDEO FOR LINUX DRIVER
3535P: Ronald Bultje
3536M: rbultje@ronald.bitfreak.net
3537L: mjpeg-users@lists.sourceforge.net
3538W: http://mjpeg.sourceforge.net/driver-zoran/
3539S: Maintained
3540
3541ZR36120 VIDEO FOR LINUX DRIVER
3542P: Pauline Middelink
3543M: middelin@polyware.nl
3544W: http://www.polyware.nl/~middelin/En/hobbies.html
3545W: http://www.polyware.nl/~middelin/hobbies.html
3546S: Maintained
3547
3548THE REST
3549P: Linus Torvalds
3550S: Buried alive in reporters