blob: 45df5d4e2ab34a4009823d1b565d56494c3977df [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
351ARM/CORGI MACHINE SUPPORT
352P: Richard Purdie
353M: rpurdie@rpsys.net
354S: Maintained
355
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100356ARM/HP JORNADA 7XX MACHINE SUPPORT
357P: Kristoffer Ericson
358M: kristoffer_e1@hotmail.com
359W: www.jlime.com
360S: Maintained
361
Dirk Opfer8459c152005-11-06 14:27:52 +0000362ARM/TOSA MACHINE SUPPORT
363P: Dirk Opfer
364M: dirk@opfer-online.de
365S: Maintained
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367ARM/PLEB SUPPORT
368P: Peter Chubb
369M: pleb@gelato.unsw.edu.au
370W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
371S: Maintained
372
373ARM/PT DIGITAL BOARD PORT
374P: Stefan Eletzhofer
375M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700376L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377W: http://www.arm.linux.org.uk/
378S: Maintained
379
380ARM/SHARK MACHINE SUPPORT
381P: Alexander Schulz
382M: alex@shark-linux.de
383W: http://www.shark-linux.de/shark.html
384S: Maintained
385
386ARM/STRONGARM110 PORT
387P: Russell King
388M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700389L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390W: http://www.arm.linux.org.uk/
391S: Maintained
392
393ARM/S3C2410 ARM ARCHITECTURE
394P: Ben Dooks
395M: ben-s3c2410@fluff.org
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.fluff.org/ben/linux/
398S: Maintained
399
400ARM/S3C2440 ARM ARCHITECTURE
401P: Ben Dooks
402M: ben-s3c2440@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
407ARPD SUPPORT
408P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700409L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410S: Maintained
411
412ASUS ACPI EXTRAS DRIVER
413P: Karol Kozimor
414M: sziwan@users.sourceforge.net
415P: Julien Lerouge
416M: julien.lerouge@free.fr
417L: acpi4asus-user@lists.sourceforge.net
418W: http://sourceforge.net/projects/acpi4asus
419W: http://julien.lerouge.free.fr
420S: Maintained
421
422ATA OVER ETHERNET DRIVER
423P: Ed L. Cashin
424M: ecashin@coraid.com
425W: http://www.coraid.com/support/linux
426S: Supported
427
428ATM
429P: Chas Williams
430M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700431L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432W: http://linux-atm.sourceforge.net
433S: Maintained
434
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100435ATMEL MACB ETHERNET DRIVER
436P: Atmel AVR32 Support Team
437M: avr32@atmel.com
438P: Haavard Skinnemoen
439M: hskinnemoen@atmel.com
440S: Supported
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442ATMEL WIRELESS DRIVER
443P: Simon Kelley
444M: simon@thekelleys.org.uk
445W: http://www.thekelleys.org.uk/atmel
446W: http://atmelwlandriver.sourceforge.net/
447S: Maintained
448
Chris Wrighta92b7b82005-07-07 18:12:23 -0700449AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100450P: David Woodhouse
451M: dwmw2@infradead.org
452L: linux-audit@redhat.com
453W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800454T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700455S: Maintained
456
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700457AVR32 ARCHITECTURE
458P: Atmel AVR32 Support Team
459M: avr32@atmel.com
460P: Haavard Skinnemoen
461M: hskinnemoen@atmel.com
462W: http://www.atmel.com/products/AVR32/
463W: http://avr32linux.org/
464W: http://avrfreaks.net/
465S: Supported
466
467AVR32/AT32AP MACHINE SUPPORT
468P: Atmel AVR32 Support Team
469M: avr32@atmel.com
470P: Haavard Skinnemoen
471M: hskinnemoen@atmel.com
472S: Supported
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474AX.25 NETWORK LAYER
475P: Ralf Baechle
476M: ralf@linux-mips.org
477L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200478W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479S: Maintained
480
481BAYCOM/HDLCDRV DRIVERS FOR AX.25
482P: Thomas Sailer
483M: t.sailer@alumni.ethz.ch
484L: linux-hams@vger.kernel.org
485W: http://www.baycom.org/~tom/ham/ham.html
486S: Maintained
487
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200488BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
489P: Larry Finger
490M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200491P: Stefano Brivio
492M: st3@riseup.net
493W: http://bcm43xx.berlios.de/
494S: Maintained
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496BEFS FILE SYSTEM
497P: Sergey S. Kostyliov
498M: rathamahata@php4.ru
499L: linux-kernel@vger.kernel.org
500S: Maintained
501
502BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
503P: Kenji Hollis
504W: http://ftp.bitgate.com/pcwd/
505S: Maintained
506
507BFS FILE SYSTEM
508P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800509M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510L: linux-kernel@vger.kernel.org
511S: Maintained
512
513BLOCK LAYER
514P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200515M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800517T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518S: Maintained
519
520BLUETOOTH SUBSYSTEM
521P: Marcel Holtmann
522M: marcel@holtmann.org
523P: Maxim Krasnyansky
524M: maxk@qualcomm.com
525L: bluez-devel@lists.sf.net
526W: http://bluez.sf.net
527W: http://www.bluez.org
528W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800529T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530S: Maintained
531
532BLUETOOTH RFCOMM LAYER
533P: Marcel Holtmann
534M: marcel@holtmann.org
535P: Maxim Krasnyansky
536M: maxk@qualcomm.com
537S: Maintained
538
539BLUETOOTH BNEP LAYER
540P: Marcel Holtmann
541M: marcel@holtmann.org
542P: Maxim Krasnyansky
543M: maxk@qualcomm.com
544S: Maintained
545
546BLUETOOTH CMTP LAYER
547P: Marcel Holtmann
548M: marcel@holtmann.org
549S: Maintained
550
551BLUETOOTH HIDP LAYER
552P: Marcel Holtmann
553M: marcel@holtmann.org
554S: Maintained
555
556BLUETOOTH HCI UART DRIVER
557P: Marcel Holtmann
558M: marcel@holtmann.org
559P: Maxim Krasnyansky
560M: maxk@qualcomm.com
561S: Maintained
562
563BLUETOOTH HCI USB DRIVER
564P: Marcel Holtmann
565M: marcel@holtmann.org
566P: Maxim Krasnyansky
567M: maxk@qualcomm.com
568S: Maintained
569
570BLUETOOTH HCI BCM203X DRIVER
571P: Marcel Holtmann
572M: marcel@holtmann.org
573S: Maintained
574
575BLUETOOTH HCI BPA10X DRIVER
576P: Marcel Holtmann
577M: marcel@holtmann.org
578S: Maintained
579
580BLUETOOTH HCI BFUSB DRIVER
581P: Marcel Holtmann
582M: marcel@holtmann.org
583S: Maintained
584
585BLUETOOTH HCI DTL1 DRIVER
586P: Marcel Holtmann
587M: marcel@holtmann.org
588S: Maintained
589
590BLUETOOTH HCI BLUECARD DRIVER
591P: Marcel Holtmann
592M: marcel@holtmann.org
593S: Maintained
594
595BLUETOOTH HCI BT3C DRIVER
596P: Marcel Holtmann
597M: marcel@holtmann.org
598S: Maintained
599
600BLUETOOTH HCI BTUART DRIVER
601P: Marcel Holtmann
602M: marcel@holtmann.org
603S: Maintained
604
605BLUETOOTH HCI VHCI DRIVER
606P: Maxim Krasnyansky
607M: maxk@qualcomm.com
608S: Maintained
609
610BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100611P: Chad Tindel
612M: ctindel@users.sourceforge.net
613P: Jay Vosburgh
614M: fubar@us.ibm.com
615L: bonding-devel@lists.sourceforge.net
616W: http://sourceforge.net/projects/bonding/
617S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000619BROADBAND PROCESSOR ARCHITECTURE
620P: Arnd Bergmann
621M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100622L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400623W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000624S: Supported
625
Gary Zambrano39105892006-06-22 17:26:20 -0700626BROADCOM B44 10/100 ETHERNET DRIVER
627P: Gary Zambrano
628M: zambrano@broadcom.com
629L: netdev@vger.kernel.org
630S: Supported
631
Michael Chan948c51e2006-06-04 02:51:39 -0700632BROADCOM BNX2 GIGABIT ETHERNET DRIVER
633P: Michael Chan
634M: mchan@broadcom.com
635L: netdev@vger.kernel.org
636S: Supported
637
638BROADCOM TG3 GIGABIT ETHERNET DRIVER
639P: Michael Chan
640M: mchan@broadcom.com
641L: netdev@vger.kernel.org
642S: Supported
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700645P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200646M: mchehab@infradead.org
647M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700649W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200650T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700651S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200653CALGARY x86-64 IOMMU
654P: Muli Ben-Yehuda
655M: muli@il.ibm.com
656P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200657M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200658L: linux-kernel@vger.kernel.org
659L: discuss@x86-64.org
660S: Maintained
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662COMMON INTERNET FILE SYSTEM (CIFS)
663P: Steve French
664M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100665L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666L: samba-technical@lists.samba.org
667W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800668T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669S: Supported
670
Joel Becker7063fbf2005-12-15 14:29:43 -0800671CONFIGFS
672P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800673M: joel.becker@oracle.com
674L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800675S: Supported
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677CIRRUS LOGIC GENERIC FBDEV DRIVER
678P: Jeff Garzik
679M: jgarzik@pobox.com
680L: linux-fbdev-devel@lists.sourceforge.net
681S: Odd Fixes
682
683CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
684P: Cirrus Logic Corporation (kernel 2.2 driver)
685M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
686P: Nils Faerber (port to kernel 2.4)
687M: Nils Faerber <nils@kernelconcepts.de>
688S: Maintained
689
690CODA FILE SYSTEM
691P: Jan Harkes
692M: jaharkes@cs.cmu.edu
693M: coda@cs.cmu.edu
694L: codalist@coda.cs.cmu.edu
695W: http://www.coda.cs.cmu.edu/
696S: Maintained
697
698COMPACTPCI HOTPLUG CORE
699P: Scott Murray
700M: scottm@somanetworks.com
701M: scott@spiteful.org
702L: pcihpd-discuss@lists.sourceforge.net
703S: Supported
704
705COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
706P: Scott Murray
707M: scottm@somanetworks.com
708M: scott@spiteful.org
709L: pcihpd-discuss@lists.sourceforge.net
710S: Supported
711
712COMPACTPCI HOTPLUG GENERIC DRIVER
713P: Scott Murray
714M: scottm@somanetworks.com
715M: scott@spiteful.org
716L: pcihpd-discuss@lists.sourceforge.net
717S: Supported
718
719COMPUTONE INTELLIPORT MULTIPORT CARD
720P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700721M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700723S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725COSA/SRP SYNC SERIAL DRIVER
726P: Jan "Yenya" Kasprzak
727M: kas@fi.muni.cz
728W: http://www.fi.muni.cz/~kas/cosa/
729S: Maintained
730
731CPU FREQUENCY DRIVERS
732P: Dave Jones
733M: davej@codemonkey.org.uk
734L: cpufreq@lists.linux.org.uk
735W: http://www.codemonkey.org.uk/projects/cpufreq/
Josh Boyer1adc1232005-11-23 15:44:15 -0800736T: git kernel.org/pub/scm/linux/kernel/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737S: Maintained
738
739CPUID/MSR DRIVER
740P: H. Peter Anvin
741M: hpa@zytor.com
742S: Maintained
743
Paul Jacksoned90fb42005-09-27 21:45:37 -0700744CPUSETS
745P: Paul Jackson
746P: Simon Derr
747M: pj@sgi.com
748M: simon.derr@bull.net
749L: linux-kernel@vger.kernel.org
750W: http://www.bullopensource.org/cpuset/
751S: Supported
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100754W: http://sourceforge.net/projects/cramfs/
755S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757CRIS PORT
758P: Mikael Starvik
759M: starvik@axis.com
760L: dev-etrax@axis.com
761W: http://developer.axis.com
762S: Maintained
763
764CRYPTO API
765P: Herbert Xu
766M: herbert@gondor.apana.org.au
767P: David S. Miller
768M: davem@davemloft.net
769L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800770T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771S: Maintained
772
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100773CS5535 Audio ALSA driver
774P: Jaya Kumar
775M: jayakumar.alsa@gmail.com
776S: Maintained
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778CYBERPRO FB DRIVER
779P: Russell King
780M: rmk@arm.linux.org.uk
781W: http://www.arm.linux.org.uk/
782S: Maintained
783
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700784CYBLAFB FRAMEBUFFER DRIVER
785P: Knut Petersen
786M: Knut_Petersen@t-online.de
787L: linux-fbdev-devel@lists.sourceforge.net
788S: Maintained
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790CYCLADES 2X SYNC CARD DRIVER
791P: Arnaldo Carvalho de Melo
792M: acme@conectiva.com.br
793W: http://advogato.org/person/acme
794L: cycsyn-devel@bazar.conectiva.com.br
795S: Maintained
796
797CYCLADES ASYNC MUX DRIVER
798M: async@cyclades.com
799W: http://www.cyclades.com/
800S: Supported
801
802CYCLADES PC300 DRIVER
803M: pc300@cyclades.com
804W: http://www.cyclades.com/
805S: Supported
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807DAMA SLAVE for AX.25
808P: Joerg Reuter
809M: jreuter@yaina.de
810W: http://yaina.de/jreuter/
811W: http://www.qsl.net/dl1bke/
812L: linux-hams@vger.kernel.org
813S: Maintained
814
815DC395x SCSI driver
816P: Oliver Neukum
817M: oliver@neukum.name
818P: Ali Akcaagac
819M: aliakc@web.de
820P: Jamie Lenehan
821M: lenehan@twibble.org
822W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700823L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824L: http://lists.twibble.org/mailman/listinfo/dc395x/
825S: Maintained
826
827DC390/AM53C974 SCSI driver
828P: Kurt Garloff
829M: garloff@suse.de
830W: http://www.garloff.de/kurt/linux/dc390/
831P: Guennadi Liakhovetski
832M: g.liakhovetski@gmx.de
833S: Maintained
834
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700835DCCP PROTOCOL
836P: Arnaldo Carvalho de Melo
837M: acme@mandriva.com
838L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800839W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700840S: Maintained
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842DECnet NETWORK LAYER
843P: Patrick Caulfield
844M: patrick@tykepenguin.com
845W: http://linux-decnet.sourceforge.net
846L: linux-decnet-user@lists.sourceforge.net
847S: Maintained
848
849DEFXX FDDI NETWORK DRIVER
850P: Maciej W. Rozycki
851M: macro@linux-mips.org
852S: Maintained
853
854DELL LAPTOP SMM DRIVER
855P: Massimo Dal Zotto
856M: dz@debian.org
857W: http://www.debian.org/~dz/i8k/
858S: Maintained
859
Doug Warzecha90563ec2005-09-06 15:17:15 -0700860DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
861P: Doug Warzecha
862M: Douglas_Warzecha@dell.com
863S: Maintained
864
Pavel Machek5ddb88c2006-09-29 02:01:29 -0700865DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866P: Alasdair Kergon
867L: dm-devel@redhat.com
868W: http://sources.redhat.com/dm
869S: Maintained
870
871DEVICE NUMBER REGISTRY
872P: Torben Mathiasen
873M: device@lanana.org
874W: http://lanana.org/docs/device-list/index.html
875L: linux-kernel@vger.kernel.org
876S: Maintained
877
878DEVICE FILESYSTEM
879S: Obsolete
880
881DIGI INTL. EPCA DRIVER
882P: Digi International, Inc
883M: Eng.Linux@digi.com
884L: Eng.Linux@digi.com
885W: http://www.digi.com
886S: Orphaned
887
888DIGI RIGHTSWITCH NETWORK DRIVER
889P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -0700890L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891W: http://www.digi.com
892S: Orphaned
893
894DIRECTORY NOTIFICATION
895P: Stephen Rothwell
896M: sfr@canb.auug.org.au
897L: linux-kernel@vger.kernel.org
898S: Supported
899
900DISK GEOMETRY AND PARTITION HANDLING
901P: Andries Brouwer
902M: aeb@cwi.nl
903W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
904W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
905W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
906S: Maintained
907
908DISKQUOTA:
909P: Jan Kara
910M: jack@suse.cz
911L: linux-kernel@vger.kernel.org
912S: Maintained
913
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400914DISTRIBUTED LOCK MANAGER
915P: Patrick Caulfield
916M: pcaulfie@redhat.com
917P: David Teigland
918M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -0400919L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400920W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -0400921T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
922T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400923S: Supported
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
926P: Tobias Ringstrom
927M: tori@unhappy.mine.nu
928L: linux-kernel@vger.kernel.org
929S: Maintained
930
Martin Waitzba483d52005-06-17 13:20:59 -0700931DOCBOOK FOR DOCUMENTATION
932P: Martin Waitz
933M: tali@admingilde.org
Randy Dunlap0f40efb2006-07-03 00:24:15 -0700934P: Randy Dunlap
935M: rdunlap@xenotime.net
Martin Waitz061350e2006-01-09 20:53:53 -0800936T: git http://tali.admingilde.org/git/linux-docbook.git
Martin Waitzba483d52005-06-17 13:20:59 -0700937S: Maintained
938
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -0400939DOCKING STATION DRIVER
940P: Kristen Carlson Accardi
941M: kristen.c.accardi@intel.com
942L: linux-acpi@vger.kernel.org
943S: Maintained
944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945DOUBLETALK DRIVER
946P: James R. Van Zandt
947M: jrv@vanzandt.mv.com
948L: blinux-list@redhat.com
949S: Maintained
950
951DRIVER CORE, KOBJECTS, AND SYSFS
952P: Greg Kroah-Hartman
953M: gregkh@suse.de
954L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800955T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956S: Supported
957
958DRM DRIVERS
959P: David Airlie
960M: airlied@linux.ie
961L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -0800962T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963S: Maintained
964
965DSCC4 DRIVER
966P: François Romieu
967M: romieu@cogenit.fr
968M: romieu@ensta.fr
969S: Maintained
970
971DVB SUBSYSTEM AND DRIVERS
972P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200973M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +0200975W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200976T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200977S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979EATA-DMA SCSI DRIVER
980P: Michael Neuffer
981L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
982S: Maintained
983
984EATA ISA/EISA/PCI SCSI DRIVER
985P: Dario Ballabio
986M: ballabio_dario@emc.com
987L: linux-scsi@vger.kernel.org
988S: Maintained
989
990EATA-PIO SCSI DRIVER
991P: Michael Neuffer
992M: mike@i-Connect.Net
993L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
994S: Maintained
995
996EBTABLES
997P: Bart De Schuymer
998M: bart.de.schuymer@pandora.be
999L: ebtables-user@lists.sourceforge.net
1000L: ebtables-devel@lists.sourceforge.net
1001W: http://ebtables.sourceforge.net/
1002S: Maintained
1003
Michael Halcrow237fead2006-10-04 02:16:22 -07001004ECRYPT FILE SYSTEM
1005P: Mike Halcrow, Phillip Hellewell
1006M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1007L: ecryptfs-devel@lists.sourceforge.net
1008W: http://ecryptfs.sourceforge.net/
1009S: Supported
1010
Alan Coxda9bb1d2006-01-18 17:44:13 -08001011EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001012P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001013M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001014L: bluesmoke-devel@lists.sourceforge.net
1015W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001016S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001017
1018EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001019P: Mark Gross
1020M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001021L: bluesmoke-devel@lists.sourceforge.net
1022W: bluesmoke.sourceforge.net
1023S: Maintained
1024
1025EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001026P: Doug Thompson
1027M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001028L: bluesmoke-devel@lists.sourceforge.net
1029W: bluesmoke.sourceforge.net
1030S: Maintained
1031
1032EDAC-R82600
1033P: Tim Small
1034M: tim@buttersideup.com
1035L: bluesmoke-devel@lists.sourceforge.net
1036W: bluesmoke.sourceforge.net
1037S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039EEPRO100 NETWORK DRIVER
1040P: Andrey V. Savochkin
1041M: saw@saw.sw.com.sg
1042S: Maintained
1043
Josh Triplett0bee8d22006-07-30 03:03:58 -07001044EFS FILESYSTEM
1045W: http://aeschi.ch.eu.org/efs/
1046S: Orphan
1047
Heiko J Schickfab97222006-09-22 15:22:22 -07001048EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1049P: Hoang-Nam Nguyen
1050M: hnguyen@de.ibm.com
1051P: Christoph Raisch
1052M: raisch@de.ibm.com
1053L: openib-general@openib.org
1054S: Supported
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056EMU10K1 SOUND DRIVER
1057P: James Courtier-Dutton
1058M: James@superbug.demon.co.uk
1059L: emu10k1-devel@lists.sourceforge.net
1060W: http://sourceforge.net/projects/emu10k1/
1061S: Maintained
1062
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001063EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001064P: James Smart
1065M: james.smart@emulex.com
1066L: linux-scsi@vger.kernel.org
1067W: http://sourceforge.net/projects/lpfcxxxx
1068S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070EPSON 1355 FRAMEBUFFER DRIVER
1071P: Christopher Hoover
1072M: ch@murgatroid.com, ch@hpl.hp.com
1073S: Maintained
1074
1075ETHEREXPRESS-16 NETWORK DRIVER
1076P: Philip Blundell
1077M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001078L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079S: Maintained
1080
1081ETHERNET BRIDGE
1082P: Stephen Hemminger
1083M: shemminger@osdl.org
1084L: bridge@osdl.org
1085W: http://bridge.sourceforge.net/
1086S: Maintained
1087
1088ETHERTEAM 16I DRIVER
1089P: Mika Kuoppala
1090M: miku@iki.fi
1091S: Maintained
1092
1093EXT2 FILE SYSTEM
1094L: ext2-devel@lists.sourceforge.net
1095S: Maintained
1096
1097EXT3 FILE SYSTEM
1098P: Stephen Tweedie, Andrew Morton
1099M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Theodore Tsoae0718f2006-05-20 15:00:13 -07001100L: ext2-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101S: Maintained
1102
Jean Delvaree53004e2006-01-09 23:26:14 +01001103F71805F HARDWARE MONITORING DRIVER
1104P: Jean Delvare
1105M: khali@linux-fr.org
1106L: lm-sensors@lm-sensors.org
1107S: Maintained
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109FARSYNC SYNCHRONOUS DRIVER
1110P: Kevin Curtis
1111M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112W: http://www.farsite.co.uk/
1113S: Supported
1114
1115FRAMEBUFFER LAYER
1116P: Antonino Daplas
1117M: adaplas@pol.net
1118L: linux-fbdev-devel@lists.sourceforge.net
1119W: http://linux-fbdev.sourceforge.net/
1120S: Maintained
1121
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001122FREESCALE SOC FS_ENET DRIVER
1123P: Pantelis Antoniou
1124M: pantelis.antoniou@gmail.com
1125P: Vitaly Bordug
1126M: vbordug@ru.mvista.com
1127L: linuxppc-embedded@ozlabs.org
1128L: netdev@vger.kernel.org
1129S: Maintained
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131FILE LOCKING (flock() and fcntl()/lockf())
1132P: Matthew Wilcox
1133M: matthew@wil.cx
1134L: linux-fsdevel@vger.kernel.org
1135S: Maintained
1136
1137FILESYSTEMS (VFS and infrastructure)
1138P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001139M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140S: Maintained
1141
1142FIRMWARE LOADER (request_firmware)
1143L: linux-kernel@vger.kernel.org
1144S: Orphan
1145
1146FPU EMULATOR
1147P: Bill Metzenthen
1148M: billm@suburbia.net
1149W: http://suburbia.net/~billm/floating-point/emulator/
1150S: Maintained
1151
1152FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1153P: Mike McLagan
1154M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001155L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156S: Maintained
1157
1158FREEVXFS FILESYSTEM
1159P: Christoph Hellwig
1160M: hch@infradead.org
1161W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1162S: Maintained
1163
1164FUJITSU FR-V PORT
1165P: David Howells
1166M: dhowells@redhat.com
1167S: Maintained
1168
1169FTAPE/QIC-117
1170L: linux-tape@vger.kernel.org
1171W: http://sourceforge.net/projects/ftape
1172S: Orphan
1173
Miklos Szeredi04578f12005-09-09 13:10:22 -07001174FUSE: FILESYSTEM IN USERSPACE
1175P: Miklos Szeredi
1176M: miklos@szeredi.hu
1177L: fuse-devel@lists.sourceforge.net
1178W: http://fuse.sourceforge.net/
1179S: Maintained
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1182P: Rik Faith
1183M: faith@cs.unc.edu
1184L: linux-scsi@vger.kernel.org
1185S: Odd fixes (e.g., new signatures)
1186
1187GDT SCSI DISK ARRAY CONTROLLER DRIVER
1188P: Achim Leubner
1189M: achim_leubner@adaptec.com
1190L: linux-scsi@vger.kernel.org
1191W: http://www.icp-vortex.com/
1192S: Supported
1193
1194GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1195P: Krzysztof Halasa
1196M: khc@pm.waw.pl
1197W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1198S: Maintained
1199
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001200GFS2 FILE SYSTEM
1201P: Steven Whitehouse
1202M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001203L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001204W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001205T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1206T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001207S: Supported
1208
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001209GIGASET ISDN DRIVERS
1210P: Hansjoerg Lipp
1211M: hjlipp@web.de
1212P: Tilman Schmidt
1213M: tilman@imap.cc
1214L: gigaset307x-common@lists.sourceforge.net
1215W: http://gigaset307x.sourceforge.net/
1216S: Maintained
1217
Jean Delvare5b543962005-08-15 19:51:02 +02001218HARDWARE MONITORING
1219P: Jean Delvare
1220M: khali@linux-fr.org
1221L: lm-sensors@lm-sensors.org
1222W: http://www.lm-sensors.nu/
1223S: Maintained
1224
Michael Buesch844dd052006-06-26 00:24:59 -07001225HARDWARE RANDOM NUMBER GENERATOR CORE
1226P: Michael Buesch
1227M: mb@bu3sch.de
1228S: Maintained
1229
Robert Love860e1d62005-08-31 23:57:59 -04001230HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1231P: Robert Love
1232M: rlove@rlove.org
1233M: linux-kernel@vger.kernel.org
1234W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1235S: Maintained
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237HARMONY SOUND DRIVER
1238P: Kyle McMartin
1239M: kyle@parisc-linux.org
1240W: http://www.parisc-linux.org/~kyle/harmony/
1241L: parisc-linux@lists.parisc-linux.org
1242S: Maintained
1243
1244HAYES ESP SERIAL DRIVER
1245P: Andrew J. Robinson
1246M: arobinso@nyx.net
1247L: linux-kernel@vger.kernel.org
1248W: http://www.nyx.net/~arobinso
1249S: Maintained
1250
1251HFS FILESYSTEM
1252P: Roman Zippel
1253M: zippel@linux-m68k.org
1254L: linux-kernel@vger.kernel.org
1255S: Maintained
1256
1257HGA FRAMEBUFFER DRIVER
1258P: Ferenc Bakonyi
1259M: fero@drama.obuda.kando.hu
1260L: linux-nvidia@lists.surfsouth.com
1261W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1262S: Maintained
1263
1264HIGH-SPEED SCC DRIVER FOR AX.25
1265P: Klaus Kudielka
1266M: klaus.kudielka@ieee.org
1267L: linux-hams@vger.kernel.org
1268W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1269S: Maintained
1270
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001271HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1272P: HighPoint Linux Team
1273M: linux@highpoint-tech.com
1274W: http://www.highpoint-tech.com
1275S: Supported
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277HIPPI
1278P: Jes Sorensen
1279M: jes@trained-monkey.org
1280L: linux-hippi@sunsite.dk
1281S: Maintained
1282
1283HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1284P: Chirag Kantharia
1285M: chirag.kantharia@hp.com
1286L: iss_storagedev@hp.com
1287S: Maintained
1288
1289HEWLETT-PACKARD SMART2 RAID DRIVER
1290P: Chirag Kantharia
1291M: chirag.kantharia@hp.com
1292L: iss_storagedev@hp.com
1293S: Maintained
1294
1295HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1296P: Mike Miller
1297M: mike.miller@hp.com
1298L: iss_storagedev@hp.com
1299S: Supported
1300
Jouni Malinenff1d2762005-05-12 22:54:16 -04001301HOST AP DRIVER
1302P: Jouni Malinen
1303M: jkmaline@cc.hut.fi
1304L: hostap@shmoo.com
1305W: http://hostap.epitest.fi/
1306S: Maintained
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1309P: Jaroslav Kysela
1310M: perex@suse.cz
1311S: Maintained
1312
Bob Piccob9b03322005-11-07 00:59:19 -08001313HPET: High Precision Event Timers driver (hpet.c)
1314P: Clemens Ladisch
1315M: clemens@ladisch.de
1316S: Maintained
1317
1318HPET: i386
1319P: Venkatesh Pallipadi (Venki)
1320M: venkatesh.pallipadi@intel.com
1321S: Maintained
1322
1323HPET: x86_64
1324P: Andi Kleen and Vojtech Pavlik
1325M: ak@muc.de and vojtech@suse.cz
1326S: Maintained
1327
1328HPET: ACPI hpet.c
1329P: Bob Picco
1330M: bob.picco@hp.com
1331S: Maintained
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333HPFS FILESYSTEM
1334P: Mikulas Patocka
1335M: mikulas@artax.karlin.mff.cuni.cz
1336W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1337S: Maintained
1338
1339HUGETLB FILESYSTEM
1340P: William Irwin
1341M: wli@holomorphy.com
1342S: Maintained
1343
Jean Delvare5b543962005-08-15 19:51:02 +02001344I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345P: Jean Delvare
1346M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001347L: i2c@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348W: http://www.lm-sensors.nu/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001349T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350S: Maintained
1351
1352I2O
1353P: Markus Lidel
1354M: markus.lidel@shadowconnect.com
1355W: http://i2o.shadowconnect.com/
1356S: Maintained
1357
1358i386 BOOT CODE
1359P: Riley H. Williams
1360M: Riley@Williams.Name
1361L: Linux-Kernel@vger.kernel.org
1362S: Maintained
1363
1364i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1365P: Dave Jones
1366M: davej@codemonkey.org.uk
1367P: H. Peter Anvin
1368M: hpa@zytor.com
1369S: Maintained
1370
1371i810 TCO TIMER WATCHDOG
1372P: Nils Faerber
1373M: nils@kernelconcepts.de
1374W: http://www.kernelconcepts.de/
1375S: Maintained
1376
1377IA64 (Itanium) PLATFORM
1378P: Tony Luck
1379M: tony.luck@intel.com
1380L: linux-ia64@vger.kernel.org
1381W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001382T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383S: Maintained
1384
1385SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001386P: Jes Sorensen
1387M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388L: linux-altix@sgi.com
1389L: linux-ia64@vger.kernel.org
1390W: http://www.sgi.com/altix
1391S: Maintained
1392
1393IBM MCA SCSI SUBSYSTEM DRIVER
1394P: Michael Lang
1395M: langa2@kph.uni-mainz.de
1396W: http://www.uni-mainz.de/~langm000/linux.html
1397S: Maintained
1398
1399IBM Power Linux RAID adapter
1400P: Brian King
1401M: brking@us.ibm.com
1402S: Supported
1403
1404IBM ServeRAID RAID DRIVER
1405P: Jack Hammer
1406P: Dave Jeffery
1407M: ipslinux@adaptec.com
1408W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1409S: Supported
1410
1411IDE DRIVER [GENERAL]
1412P: Bartlomiej Zolnierkiewicz
1413M: B.Zolnierkiewicz@elka.pw.edu.pl
1414L: linux-kernel@vger.kernel.org
1415L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001416T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417S: Maintained
1418
1419IDE/ATAPI CDROM DRIVER
1420P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001421M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422L: linux-kernel@vger.kernel.org
1423W: http://www.kernel.dk
1424S: Maintained
1425
1426IDE/ATAPI FLOPPY DRIVERS
1427P: Paul Bristow
1428M: Paul Bristow <paul@paulbristow.net>
1429W: http://paulbristow.net/linux/idefloppy.html
1430L: linux-kernel@vger.kernel.org
1431S: Maintained
1432
1433IDE/ATAPI TAPE DRIVERS
1434P: Gadi Oxman
1435M: Gadi Oxman <gadio@netvision.net.il>
1436L: linux-kernel@vger.kernel.org
1437S: Maintained
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439IEEE 1394 SUBSYSTEM
1440P: Ben Collins
1441M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001442P: Stefan Richter
1443M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444L: linux1394-devel@lists.sourceforge.net
1445W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001446T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447S: Maintained
1448
Stefan Richter87730d02006-09-16 12:24:00 +02001449IEEE 1394 IPV4 DRIVER (eth1394)
1450P: Stefan Richter
1451M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001453S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455IEEE 1394 PCILYNX DRIVER
1456P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001457M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001458P: 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 RAW I/O DRIVER
1464P: Ben Collins
1465M: bcollins@debian.org
1466P: Dan Dennedy
1467M: dan@dennedy.org
1468L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001469S: Maintained
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471IMS TWINTURBO FRAMEBUFFER DRIVER
1472P: Paul Mundt
1473M: lethal@chaoticdreams.org
1474L: linux-fbdev-devel@lists.sourceforge.net
1475S: Maintained
1476
1477INFINIBAND SUBSYSTEM
1478P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001479M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480P: Sean Hefty
1481M: mshefty@ichips.intel.com
1482P: Hal Rosenstock
1483M: halr@voltaire.com
1484L: openib-general@openib.org
1485W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001486T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487S: Supported
1488
1489INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001490P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001491M: dmitry.torokhov@gmail.com
1492M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493L: linux-input@atrey.karlin.mff.cuni.cz
1494L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001495T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496S: Maintained
1497
Robert Lovec9f04f52005-07-15 12:21:07 -04001498INOTIFY
1499P: John McCutchan and Robert Love
1500M: ttb@tentacle.dhs.org and rml@novell.com
1501L: linux-kernel@vger.kernel.org
1502S: Maintained
1503
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001504INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001505P: Sylvain Meyer
1506M: sylvain.meyer@worldonline.fr
1507L: linux-fbdev-devel@lists.sourceforge.net
1508S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001511P: Antonino Daplas
1512M: adaplas@pol.net
1513L: linux-fbdev-devel@lists.sourceforge.net
1514S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1517P: Ingo Molnar
1518M: mingo@redhat.com
1519S: Maintained
1520
1521INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1522P: Jeff Garzik
1523M: jgarzik@pobox.com
1524W: http://sourceforge.net/projects/gkernel/
1525S: Maintained
1526
1527INTEL IA32 MICROCODE UPDATE SUPPORT
1528P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001529M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530S: Maintained
1531
Michael Buesch844dd052006-06-26 00:24:59 -07001532INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1533P: Deepak Saxena
1534M: dsaxena@plexity.net
1535S: Maintained
1536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537INTEL PRO/100 ETHERNET SUPPORT
1538P: John Ronciak
1539M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540P: Jesse Brandeburg
1541M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001542P: Jeff Kirsher
1543M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001544P: Auke Kok
1545M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546W: http://sourceforge.net/projects/e1000/
1547S: Supported
1548
1549INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1550P: Jeb Cramer
1551M: cramerj@intel.com
1552P: John Ronciak
1553M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001554P: Jesse Brandeburg
1555M: jesse.brandeburg@intel.com
1556P: Jeff Kirsher
1557M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001558P: Auke Kok
1559M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560W: http://sourceforge.net/projects/e1000/
1561S: Supported
1562
1563INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001564P: Jeff Kirsher
1565M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566P: Ayyappan Veeraiyan
1567M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568P: John Ronciak
1569M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001570P: Jesse Brandeburg
1571M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001572P: Auke Kok
1573M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574W: http://sourceforge.net/projects/e1000/
1575S: Supported
1576
James Ketrenos826d2ab2005-11-07 18:56:59 -06001577INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1578P: Yi Zhu
1579M: yi.zhu@intel.com
1580P: James Ketrenos
1581M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001582L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001583L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1584W: http://ipw2100.sourceforge.net
1585S: Supported
1586
1587INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1588P: Yi Zhu
1589M: yi.zhu@intel.com
1590P: James Ketrenos
1591M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001592L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001593L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1594W: http://ipw2200.sourceforge.net
1595S: Supported
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597IOC3 DRIVER
1598P: Ralf Baechle
1599M: ralf@linux-mips.org
1600L: linux-mips@linux-mips.org
1601S: Maintained
1602
1603IP MASQUERADING:
1604P: Juanjo Ciarlante
1605M: jjciarla@raiz.uncu.edu.ar
1606S: Maintained
1607
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001608IPATH DRIVER:
1609P: Bryan O'Sullivan
1610M: support@pathscale.com
1611L: openib-general@openib.org
1612S: Supported
1613
Corey Minyard4409ebe2006-04-20 02:43:12 -07001614IPMI SUBSYSTEM
1615P: Corey Minyard
1616M: minyard@acm.org
1617L: openipmi-developer@lists.sourceforge.net
1618W: http://openipmi.sourceforge.net/
1619S: Supported
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621IPX NETWORK LAYER
1622P: Arnaldo Carvalho de Melo
1623M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001624L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625S: Maintained
1626
1627IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001628P: Samuel Ortiz
1629M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001630L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001632S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634ISAPNP
1635P: Jaroslav Kysela
1636M: perex@suse.cz
1637S: Maintained
1638
1639ISDN SUBSYSTEM
1640P: Karsten Keil
1641M: kkeil@suse.de
1642P: Kai Germaschewski
1643M: kai.germaschewski@gmx.de
1644L: isdn4linux@listserv.isdn4linux.de
1645W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001646T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647S: Maintained
1648
1649ISDN SUBSYSTEM (Eicon active card driver)
1650P: Armin Schindler
1651M: mac@melware.de
1652L: isdn4linux@listserv.isdn4linux.de
1653W: http://www.melware.de
1654S: Maintained
1655
1656JOURNALLING FLASH FILE SYSTEM (JFFS)
1657P: Axis Communications AB
1658M: jffs-dev@axis.com
1659L: jffs-dev@axis.com
1660W: http://www.developer.axis.com/software/jffs/
1661S: Maintained
1662
1663JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1664P: David Woodhouse
1665M: dwmw2@infradead.org
1666L: jffs-dev@axis.com
1667W: http://sources.redhat.com/jffs2/
1668S: Maintained
1669
1670JFS FILESYSTEM
1671P: Dave Kleikamp
1672M: shaggy@austin.ibm.com
1673L: jfs-discussion@lists.sourceforge.net
1674W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001675T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676S: Supported
1677
Josh Triplettde456d32006-07-30 03:04:00 -07001678JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001679P: Stephen Tweedie, Andrew Morton
1680M: sct@redhat.com, akpm@osdl.org
1681L: ext2-devel@lists.sourceforge.net
1682S: Maintained
1683
Rudolf Marek4660cb32006-10-08 22:01:26 +02001684K8TEMP HARDWARE MONITORING DRIVER
1685P: Rudolf Marek
1686M: r.marek@assembler.cz
1687L: lm-sensors@lm-sensors.org
1688S: Maintained
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690KCONFIG
1691P: Roman Zippel
1692M: zippel@linux-m68k.org
1693L: kbuild-devel@lists.sourceforge.net
1694S: Maintained
1695
Vivek Goyalea6c2082006-05-20 14:59:55 -07001696KDUMP
1697P: Vivek Goyal
1698M: vgoyal@in.ibm.com
1699P: Haren Myneni
1700M: hbabu@us.ibm.com
1701L: fastboot@lists.osdl.org
1702L: linux-kernel@vger.kernel.org
1703W: http://lse.sourceforge.net/kdump/
1704S: Maintained
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706KERNEL AUTOMOUNTER (AUTOFS)
1707P: H. Peter Anvin
1708M: hpa@zytor.com
1709L: autofs@linux.kernel.org
1710S: Odd Fixes
1711
1712KERNEL AUTOMOUNTER v4 (AUTOFS4)
1713P: Ian Kent
1714M: raven@themaw.net
1715L: autofs@linux.kernel.org
1716S: Maintained
1717
1718KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1719P: Kai Germaschewski
1720M: kai@germaschewski.name
1721P: Sam Ravnborg
1722M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001723T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724S: Maintained
1725
1726KERNEL JANITORS
1727P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001728L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730S: Maintained
1731
1732KERNEL NFSD
1733P: Neil Brown
1734M: neilb@cse.unsw.edu.au
1735L: nfs@lists.sourceforge.net
1736W: http://nfs.sourceforge.net/
1737W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1738S: Maintained
1739
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001740KEXEC
1741P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001742M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001743W: http://www.xmission.com/~ebiederm/files/kexec/
1744L: linux-kernel@vger.kernel.org
1745L: fastboot@osdl.org
1746S: Maintained
1747
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001748KPROBES
1749P: Prasanna S Panchamukhi
1750M: prasanna@in.ibm.com
1751P: Ananth N Mavinakayanahalli
1752M: ananth@in.ibm.com
1753P: Anil S Keshavamurthy
1754M: anil.s.keshavamurthy@intel.com
1755P: David S. Miller
1756M: davem@davemloft.net
1757L: linux-kernel@vger.kernel.org
1758S: Maintained
1759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001762S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
1764LASI 53c700 driver for PARISC
1765P: James E.J. Bottomley
1766M: James.Bottomley@HansenPartnership.com
1767L: linux-scsi@vger.kernel.org
1768S: Maintained
1769
Richard Purdie263de9b2006-05-15 09:44:16 -07001770LED SUBSYSTEM
1771P: Richard Purdie
1772M: rpurdie@rpsys.net
1773S: Maintained
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775LEGO USB Tower driver
1776P: Juergen Stuber
1777M: starblue@users.sourceforge.net
1778L: legousb-devel@lists.sourceforge.net
1779W: http://legousb.sourceforge.net/
1780S: Maintained
1781
1782LINUX FOR IBM pSERIES (RS/6000)
1783P: Paul Mackerras
1784M: paulus@au.ibm.com
1785W: http://www.ibm.com/linux/ltc/projects/ppc
1786S: Supported
1787
1788LINUX FOR NCR VOYAGER
1789P: James Bottomley
1790M: James.Bottomley@HansenPartnership.com
1791W: http://www.hansenpartnership.com/voyager
1792S: Maintained
1793
1794LINUX FOR POWERPC
1795P: Paul Mackerras
1796M: paulus@samba.org
1797W: http://www.penguinppc.org/
1798L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001799T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800S: Supported
1801
1802LINUX FOR POWER MACINTOSH
1803P: Benjamin Herrenschmidt
1804M: benh@kernel.crashing.org
1805W: http://www.penguinppc.org/
1806L: linuxppc-dev@ozlabs.org
1807S: Maintained
1808
1809LINUX FOR POWERPC EMBEDDED MPC52XX
1810P: Sylvain Munaut
1811M: tnt@246tNt.com
1812W: http://www.246tNt.com/mpc52xx/
1813W: http://www.penguinppc.org/
1814L: linuxppc-dev@ozlabs.org
1815L: linuxppc-embedded@ozlabs.org
1816S: Maintained
1817
1818LINUX FOR POWERPC EMBEDDED PPC4XX
1819P: Matt Porter
1820M: mporter@kernel.crashing.org
1821W: http://www.penguinppc.org/
1822L: linuxppc-embedded@ozlabs.org
1823S: Maintained
1824
Tom Rinie93adf12005-07-26 12:49:53 -07001825LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826P: Tom Rini
1827M: trini@kernel.crashing.org
1828W: http://www.penguinppc.org/
1829L: linuxppc-embedded@ozlabs.org
1830S: Maintained
1831
Tom Rinie93adf12005-07-26 12:49:53 -07001832LINUX FOR POWERPC EMBEDDED PPC8XX
1833P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001834M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001835W: http://www.penguinppc.org/
1836L: linuxppc-embedded@ozlabs.org
1837S: Maintained
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01001840P: Kumar Gala
1841M: galak@kernel.crashing.org
1842W: http://www.penguinppc.org/
1843L: linuxppc-embedded@ozlabs.org
1844S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Olof Johanssonab06ff32006-09-06 14:44:54 -05001846LINUX FOR POWERPC PA SEMI PWRFICIENT
1847P: Olof Johansson
1848M: olof@lixom.net
1849W: http://www.pasemi.com/
1850L: linuxppc-dev@ozlabs.org
1851S: Supported
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853LLC (802.2)
1854P: Arnaldo Carvalho de Melo
1855M: acme@conectiva.com.br
1856S: Maintained
1857
1858LINUX FOR 64BIT POWERPC
1859P: Paul Mackerras
1860M: paulus@samba.org
1861M: paulus@au.ibm.com
1862P: Anton Blanchard
1863M: anton@samba.org
1864M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001865W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001866L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867S: Supported
1868
1869LINUX SECURITY MODULE (LSM) FRAMEWORK
1870P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001871M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001872L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001874T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875S: Supported
1876
1877LM83 HARDWARE MONITOR DRIVER
1878P: Jean Delvare
1879M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001880L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881S: Maintained
1882
1883LM90 HARDWARE MONITOR DRIVER
1884P: Jean Delvare
1885M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001886L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887S: Maintained
1888
1889LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1890P: Richard Russon (FlatCap)
1891M: ldm@flatcap.org
1892L: ldm-devel@lists.sourceforge.net
1893W: http://ldm.sourceforge.net
1894S: Maintained
1895
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001896LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1897P: Eric Moore
1898M: Eric.Moore@lsil.com
1899M: support@lsil.com
1900L: mpt_linux_developer@lsil.com
1901L: linux-scsi@vger.kernel.org
1902W: http://www.lsilogic.com/support
1903S: Supported
1904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1906P: Matthew Wilcox
1907M: matthew@wil.cx
1908L: linux-scsi@vger.kernel.org
1909S: Maintained
1910
1911M68K ARCHITECTURE
1912P: Geert Uytterhoeven
1913M: geert@linux-m68k.org
1914P: Roman Zippel
1915M: zippel@linux-m68k.org
1916L: linux-m68k@lists.linux-m68k.org
1917W: http://www.linux-m68k.org/
1918W: http://linux-m68k-cvs.ubb.ca/
1919S: Maintained
1920
1921M68K ON APPLE MACINTOSH
1922P: Joshua Thompson
1923M: funaho@jurai.org
1924W: http://www.mac.linux-m68k.org/
1925L: linux-mac68k@mac.linux-m68k.org
1926S: Maintained
1927
1928M68K ON HP9000/300
1929P: Philip Blundell
1930M: philb@gnu.org
1931W: http://www.tazenda.demon.co.uk/phil/linux-hp
1932S: Maintained
1933
1934MARVELL YUKON / SYSKONNECT DRIVER
1935P: Mirko Lindner
1936M: mlindner@syskonnect.de
1937P: Ralph Roesler
1938M: rroesler@syskonnect.de
1939W: http://www.syskonnect.com
1940S: Supported
1941
Michael Kerriskfaf16682005-07-31 22:34:47 -07001942MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01001943P: Michael Kerrisk
1944M: mtk-manpages@gmx.net
1945W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1946S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07001947
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001948MARVELL MV643XX ETHERNET DRIVER
1949P: Dale Farnsworth
1950M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001952M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001953L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001954S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956MATROX FRAMEBUFFER DRIVER
1957P: Petr Vandrovec
1958M: vandrove@vc.cvut.cz
1959L: linux-fbdev-devel@lists.sourceforge.net
1960S: Maintained
1961
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001962MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01001963P: Neela Syam Kolli
1964M: Neela.Kolli@engenio.com
1965S: linux-scsi@vger.kernel.org
1966W: http://megaraid.lsilogic.com
1967S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001968
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001969MEMORY MANAGEMENT
1970L: linux-mm@kvack.org
1971L: linux-kernel@vger.kernel.org
1972W: http://www.linux-mm.org
1973S: Maintained
1974
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001975MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976P: David Woodhouse
1977M: dwmw2@infradead.org
1978W: http://www.linux-mtd.infradead.org/
1979L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001980T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981S: Maintained
1982
1983MICROTEK X6 SCANNER
1984P: Oliver Neukum
1985M: oliver@neukum.name
1986S: Maintained
1987
1988MIPS
1989P: Ralf Baechle
1990M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01001991W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00001993T: git www.linux-mips.org:/pub/scm/linux.git
1994S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996MISCELLANEOUS MCA-SUPPORT
1997P: James Bottomley
1998M: jejb@steeleye.com
1999L: linux-kernel@vger.kernel.org
2000S: Maintained
2001
2002MODULE SUPPORT
2003P: Rusty Russell
2004M: rusty@rustcorp.com.au
2005L: linux-kernel@vger.kernel.org
2006S: Maintained
2007
2008MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2009P: Stelian Pop
2010M: stelian@popies.net
2011W: http://popies.net/meye/
2012S: Maintained
2013
2014MOUSE AND MISC DEVICES [GENERAL]
2015P: Alessandro Rubini
2016M: rubini@ipvvis.unipv.it
2017L: linux-kernel@vger.kernel.org
2018S: Maintained
2019
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002020MSI LAPTOP SUPPORT
2021P: Lennart Poettering
2022M: mzxreary@0pointer.de
2023L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2024W: http://0pointer.de/lennart/tchibo.html
2025S: Maintained
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027MTRR AND SIMILAR SUPPORT [i386]
2028P: Richard Gooch
2029M: rgooch@atnf.csiro.au
2030L: linux-kernel@vger.kernel.org
2031W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2032S: Maintained
2033
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002034MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2035P: Pierre Ossman
2036M: drzeus-mmc@drzeus.cx
2037L: linux-kernel@vger.kernel.org
2038S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040MULTISOUND SOUND DRIVER
2041P: Andrew Veliath
2042M: andrewtv@usa.net
2043S: Maintained
2044
2045NATSEMI ETHERNET DRIVER (DP8381x)
2046P: Tim Hockin
2047M: thockin@hockin.org
2048S: Maintained
2049
2050NCP FILESYSTEM
2051P: Petr Vandrovec
2052M: vandrove@vc.cvut.cz
2053L: linware@sh.cvut.cz
2054S: Maintained
2055
2056NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2057P: James E.J. Bottomley
2058M: James.Bottomley@HansenPartnership.com
2059L: linux-scsi@vger.kernel.org
2060S: Maintained
2061
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002062NETEM NETWORK EMULATOR
2063P: Stephen Hemminger
2064M: shemminger@osdl.org
2065L: netem@osdl.org
2066S: Maintained
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068NETFILTER/IPTABLES/IPCHAINS
2069P: Rusty Russell
2070P: Marc Boucher
2071P: James Morris
2072P: Harald Welte
2073P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002074P: Patrick McHardy
2075M: kaber@trash.net
2076L: netfilter-devel@lists.netfilter.org
2077L: netfilter@lists.netfilter.org
2078L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079W: http://www.netfilter.org/
2080W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081S: Supported
2082
Paul Moore4cc67732006-09-25 15:57:13 -07002083NETLABEL
2084P: Paul Moore
2085M: paul.moore@hp.com
2086W: http://netlabel.sf.net
2087L: netdev@vger.kernel.org
2088S: Supported
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090NETROM NETWORK LAYER
2091P: Ralf Baechle
2092M: ralf@linux-mips.org
2093L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002094W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095S: Maintained
2096
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002097NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098P: Paul Clements
2099M: Paul.Clements@steeleye.com
2100S: Maintained
2101
2102NETWORK DEVICE DRIVERS
2103P: Andrew Morton
2104M: akpm@osdl.org
2105P: Jeff Garzik
2106M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002107L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002108T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109S: Maintained
2110
2111NETWORKING [GENERAL]
2112P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002113M: netdev@vger.kernel.org
2114L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002115W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116S: Maintained
2117
2118NETWORKING [IPv4/IPv6]
2119P: David S. Miller
2120M: davem@davemloft.net
2121P: Alexey Kuznetsov
2122M: kuznet@ms2.inr.ac.ru
2123P: Pekka Savola (ipv6)
2124M: pekkas@netcore.fi
2125P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002126M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127P: Hideaki YOSHIFUJI
2128M: yoshfuji@linux-ipv6.org
2129P: Patrick McHardy
2130M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002131L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002132T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133S: Maintained
2134
John W. Linville29f8f632006-01-18 14:52:48 -08002135NETWORKING [WIRELESS]
2136P: John W. Linville
2137M: linville@tuxdriver.com
2138L: netdev@vger.kernel.org
2139T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2140S: Maintained
2141
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002142NETXEN (1/10) GbE SUPPORT
2143P: Amit S. Kale
2144M: amitkale@netxen.com
2145L: netdev@vger.kernel.org
2146W: http://www.netxen.com
2147S: Supported
2148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149IPVS
2150P: Wensong Zhang
2151M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002152P: Simon Horman
2153M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154P: Julian Anastasov
2155M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002156L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157S: Maintained
2158
2159NFS CLIENT
2160P: Trond Myklebust
2161M: trond.myklebust@fys.uio.no
2162L: linux-kernel@vger.kernel.org
2163S: Maintained
2164
2165NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002166P: Jan-Pascal van Best
2167M: janpascal@vanbest.org
2168P: Andreas Mohr
2169M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002170L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171S: Maintained
2172
2173NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2174P: YOKOTA Hiroshi
2175M: yokota@netlab.is.tsukuba.ac.jp
2176W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2177S: Maintained
2178
2179NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2180P: GOTO Masanori
2181M: gotom@debian.or.jp
2182P: YOKOTA Hiroshi
2183M: yokota@netlab.is.tsukuba.ac.jp
2184W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2185S: Maintained
2186
2187NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2188P: Eberhard Moenkeberg
2189M: emoenke@gwdg.de
2190L: linux-kernel@vger.kernel.org
2191S: Maintained
2192
2193NTFS FILESYSTEM
2194P: Anton Altaparmakov
2195M: aia21@cantab.net
2196L: linux-ntfs-dev@lists.sourceforge.net
2197L: linux-kernel@vger.kernel.org
2198W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002199T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200S: Maintained
2201
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002202NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002203P: Antonino Daplas
2204M: adaplas@pol.net
2205L: linux-fbdev-devel@lists.sourceforge.net
2206S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002208OPENCORES I2C BUS DRIVER
2209P: Peter Korsgaard
2210M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002211L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002212S: Maintained
2213
Mark Fashehccd979b2005-12-15 14:31:24 -08002214ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2215P: Mark Fasheh
2216M: mark.fasheh@oracle.com
2217P: Kurt Hackel
2218M: kurt.hackel@oracle.com
2219L: ocfs2-devel@oss.oracle.com
2220W: http://oss.oracle.com/projects/ocfs2/
2221S: Supported
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223OLYMPIC NETWORK DRIVER
2224P: Peter De Shrijver
2225M: p2@ace.ulyssis.student.kuleuven.ac.be
2226P: Mike Phillips
2227M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002228L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229L: linux-tr@linuxtr.net
2230W: http://www.linuxtr.net
2231S: Maintained
2232
Harald Weltec1986ee2005-11-13 16:06:29 -08002233OMNIKEY CARDMAN 4000 DRIVER
2234P: Harald Welte
2235M: laforge@gnumonks.org
2236S: Maintained
2237
Harald Welte77c44ab2005-11-13 16:06:26 -08002238OMNIKEY CARDMAN 4040 DRIVER
2239P: Harald Welte
2240M: laforge@gnumonks.org
2241S: Maintained
2242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243ONSTREAM SCSI TAPE DRIVER
2244P: Willem Riede
2245M: osst@riede.org
2246L: osst-users@lists.sourceforge.net
2247L: linux-scsi@vger.kernel.org
2248S: Maintained
2249
2250OPL3-SA2, SA3, and SAx DRIVER
2251P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002252M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253L: linux-sound@vger.kernel.org
2254S: Maintained
2255
2256OPROFILE
2257P: Philippe Elie
2258M: phil.el@wanadoo.fr
2259L: oprofile-list@lists.sf.net
2260S: Maintained
2261
2262ORINOCO DRIVER
2263P: Pavel Roskin
2264M: proski@gnu.org
2265P: David Gibson
2266M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002267L: orinoco-users@lists.sourceforge.net
2268L: orinoco-devel@lists.sourceforge.net
2269W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270S: Maintained
2271
2272PARALLEL PORT SUPPORT
2273P: Phil Blundell
2274M: philb@gnu.org
2275P: Tim Waugh
2276M: tim@cyberelk.net
2277P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278P: Andrea Arcangeli
2279M: andrea@suse.de
2280L: linux-parport@lists.infradead.org
2281W: http://people.redhat.com/twaugh/parport/
2282S: Maintained
2283
2284PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2285P: Tim Waugh
2286M: tim@cyberelk.net
2287L: linux-parport@lists.infradead.org
2288W: http://www.torque.net/linux-pp.html
2289S: Maintained
2290
2291PARISC ARCHITECTURE
2292P: Matthew Wilcox
2293M: matthew@wil.cx
2294P: Grant Grundler
2295M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002296P: Kyle McMartin
2297M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298L: parisc-linux@parisc-linux.org
2299W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002300T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2301T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302S: Maintained
2303
Jim Cromie1662d322006-10-06 00:43:59 -07002304PC87360 HARDWARE MONITORING DRIVER
2305P: Jim Cromie
2306M: jim.cromie@gmail.com
2307L: lm-sensors@lm-sensors.org
2308S: Maintained
2309
2310PC8736x GPIO DRIVER
2311P: Jim Cromie
2312M: jim.cromie@gmail.com
2313S: Maintained
2314
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002315PCI ERROR RECOVERY
2316P: Linas Vepstas
2317M: linas@austin.ibm.com
2318L: linux-kernel@vger.kernel.org
2319L: linux-pci@atrey.karlin.mff.cuni.cz
2320S: Supported
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2323P: Thomas Sailer
2324M: sailer@ife.ee.ethz.ch
2325L: linux-sound@vger.kernel.org
2326W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2327S: Maintained
2328
2329PCI SUBSYSTEM
2330P: Greg Kroah-Hartman
2331M: gregkh@suse.de
2332L: linux-kernel@vger.kernel.org
2333L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002334T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335S: Supported
2336
2337PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002338P: Kristen Carlson Accardi
2339M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340S: Supported
2341
2342PCI HOTPLUG COMPAQ DRIVER
2343P: Greg Kroah-Hartman
2344M: greg@kroah.com
2345S: Maintained
2346
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002347PCIE HOTPLUG DRIVER
2348P: Kristen Carlson Accardi
2349M: kristen.c.accardi@intel.com
2350L: pcihpd-discuss@lists.sourceforge.net
2351S: Maintained
2352
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002354P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002355L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002357T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002358S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360PCNET32 NETWORK DRIVER
2361P: Thomas Bogendörfer
2362M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002363L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364S: Maintained
2365
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002366PER-TASK DELAY ACCOUNTING
2367P: Shailabh Nagar
2368M: nagar@watson.ibm.com
2369L: linux-kernel@vger.kernel.org
2370S: Maintained
2371
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002372PERSONALITY HANDLING
2373P: Christoph Hellwig
2374M: hch@infradead.org
2375L: linux-abi-devel@lists.sourceforge.net
2376S: Maintained
2377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378PHRAM MTD DRIVER
2379P: Jörn Engel
2380M: joern@wh.fh-wedel.de
2381L: linux-mtd@lists.infradead.org
2382S: Maintained
2383
Peter Osterlund249a6772005-09-27 21:45:30 -07002384PKTCDVD DRIVER
2385P: Peter Osterlund
2386M: petero2@telia.com
2387L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002388S: Maintained
2389
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390POSIX CLOCKS and TIMERS
2391P: George Anzinger
2392M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002393L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394S: Supported
2395
Eugene Surovegin24682972005-10-14 03:00:53 -07002396POWERPC 4xx EMAC DRIVER
2397P: Eugene Surovegin
2398M: ebs@ebshome.net
2399W: http://kernel.ebshome.net/emac/
2400L: linuxppc-embedded@ozlabs.org
2401L: netdev@vger.kernel.org
2402S: Maintained
2403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404PNP SUPPORT
2405P: Adam Belay
2406M: ambx1@neo.rr.com
2407S: Maintained
2408
2409PPP PROTOCOL DRIVERS AND COMPRESSORS
2410P: Paul Mackerras
2411M: paulus@samba.org
2412L: linux-ppp@vger.kernel.org
2413S: Maintained
2414
2415PPP OVER ATM (RFC 2364)
2416P: Mitchell Blank Jr
2417M: mitch@sfgoth.com
2418S: Maintained
2419
2420PPP OVER ETHERNET
2421P: Michal Ostrowski
2422M: mostrows@speakeasy.net
2423S: Maintained
2424
2425PREEMPTIBLE KERNEL
2426P: Robert Love
2427M: rml@tech9.net
2428L: linux-kernel@vger.kernel.org
2429L: kpreempt-tech@lists.sourceforge.net
2430W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2431S: Supported
2432
2433PRISM54 WIRELESS DRIVER
2434P: Prism54 Development Team
2435M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002436L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437W: http://prism54.org
2438S: Maintained
2439
2440PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2441P: Peter Denison
2442M: promise@pnd-pc.demon.co.uk
2443W: http://www.pnd-pc.demon.co.uk/promise/
2444S: Maintained
2445
Michael Krufky83202042006-07-03 00:24:18 -07002446PVRUSB2 VIDEO4LINUX DRIVER
2447P: Mike Isely
2448M: isely@pobox.com
2449L: pvrusb2@isely.net
2450L: video4linux-list@redhat.com
2451W: http://www.isely.net/pvrusb2/
2452S: Maintained
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454PXA2xx SUPPORT
2455P: Nicolas Pitre
2456M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002457L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458S: Maintained
2459
2460QLOGIC QLA2XXX FC-SCSI DRIVER
2461P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002462M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463L: linux-scsi@vger.kernel.org
2464S: Supported
2465
Ron Mercer5a4faa872006-07-25 00:40:21 -07002466QLOGIC QLA3XXX NETWORK DRIVER
2467P: Ron Mercer
2468M: linux-driver@qlogic.com
2469L: netdev@vger.kernel.org
2470S: Supported
2471
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472QNX4 FILESYSTEM
2473P: Anders Larsen
2474M: al@alarsen.net
2475L: linux-kernel@vger.kernel.org
2476W: http://www.alarsen.net/linux/qnx4fs/
2477S: Maintained
2478
2479RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002480P: Benjamin Herrenschmidt
2481M: benh@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482L: linux-fbdev-devel@lists.sourceforge.net
2483S: Maintained
2484
2485RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002486P: Paul Mackerras
2487M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488L: linux-fbdev-devel@lists.sourceforge.net
2489S: Maintained
2490
2491RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2492P: Corey Thomas
2493M: corey@world.std.com
2494L: linux-kernel@vger.kernel.org
2495S: Maintained
2496
Matt Mackall9e95ce22005-04-16 15:25:56 -07002497RANDOM NUMBER DRIVER
2498P: Matt Mackall
2499M: mpm@selenic.com
2500S: Maintained
2501
Matt Porter394b7012005-11-07 01:00:15 -08002502RAPIDIO SUBSYSTEM
2503P: Matt Porter
2504M: mporter@kernel.crashing.org
2505L: linux-kernel@vger.kernel.org
2506S: Maintained
2507
Josh Triplett595182b2006-10-04 02:17:21 -07002508READ-COPY UPDATE (RCU)
2509P: Dipankar Sarma
2510M: dipankar@in.ibm.com
2511W: http://www.rdrop.com/users/paulmck/rclock/
2512L: linux-kernel@vger.kernel.org
2513S: Supported
2514
2515RCUTORTURE MODULE
2516P: Josh Triplett
2517M: josh@freedesktop.org
2518L: linux-kernel@vger.kernel.org
2519S: Maintained
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521REAL TIME CLOCK DRIVER
2522P: Paul Gortmaker
2523M: p_gortmaker@yahoo.com
2524L: linux-kernel@vger.kernel.org
2525S: Maintained
2526
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002527REAL TIME CLOCK (RTC) SUBSYSTEM
2528P: Alessandro Zummo
2529M: a.zummo@towertech.it
2530L: linux-kernel@vger.kernel.org
2531S: Maintained
2532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533REISERFS FILE SYSTEM
2534P: Hans Reiser
2535M: reiserfs-dev@namesys.com
2536L: reiserfs-list@namesys.com
2537W: http://www.namesys.com
2538S: Supported
2539
2540ROCKETPORT DRIVER
2541P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542W: http://www.comtrol.com
2543S: Maintained
2544
2545ROSE NETWORK LAYER
2546P: Ralf Baechle
2547M: ralf@linux-mips.org
2548L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002549W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550S: Maintained
2551
2552RISCOM8 DRIVER
2553S: Orphan
2554
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002555S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002556P: Antonino Daplas
2557M: adaplas@pol.net
2558L: linux-fbdev-devel@lists.sourceforge.net
2559S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002560
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561S390
2562P: Martin Schwidefsky
2563M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002564P: Heiko Carstens
2565M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566M: linux390@de.ibm.com
2567L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002568W: http://www.ibm.com/developerworks/linux/linux390/
2569S: Supported
2570
2571S390 NETWORK DRIVERS
2572P: Frank Pavlic
2573M: fpavlic@de.ibm.com
2574M: linux390@de.ibm.com
2575L: linux-390@vm.marist.edu
2576W: http://www.ibm.com/developerworks/linux/linux390/
2577S: Supported
2578
2579S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002580P: Swen Schillig
2581M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002582M: linux390@de.ibm.com
2583L: linux-390@vm.marist.edu
2584W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585S: Supported
2586
2587SAA7146 VIDEO4LINUX-2 DRIVER
2588P: Michael Hunold
2589M: michael@mihu.de
2590W: http://www.mihu.de/linux/saa7146
2591S: Maintained
2592
2593SBPCD CDROM DRIVER
2594P: Eberhard Moenkeberg
2595M: emoenke@gwdg.de
2596L: linux-kernel@vger.kernel.org
2597S: Maintained
2598
2599SC1200 WDT DRIVER
2600P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002601M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602S: Maintained
2603
2604SCHEDULER
2605P: Ingo Molnar
2606M: mingo@elte.hu
2607P: Robert Love [the preemptible kernel bits]
2608M: rml@tech9.net
2609L: linux-kernel@vger.kernel.org
2610S: Maintained
2611
2612SCSI CDROM DRIVER
2613P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002614M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615L: linux-scsi@vger.kernel.org
2616W: http://www.kernel.dk
2617S: Maintained
2618
2619SCSI SG DRIVER
2620P: Doug Gilbert
2621M: dgilbert@interlog.com
2622L: linux-scsi@vger.kernel.org
2623W: http://www.torque.net/sg
2624S: Maintained
2625
2626SCSI SUBSYSTEM
2627P: James E.J. Bottomley
2628M: James.Bottomley@SteelEye.com
2629L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002630T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631S: Maintained
2632
2633SCSI TAPE DRIVER
2634P: Kai Mäkisara
2635M: Kai.Makisara@kolumbus.fi
2636L: linux-scsi@vger.kernel.org
2637S: Maintained
2638
2639SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002640P: Sridhar Samudrala
2641M: sri@us.ibm.com
2642L: lksctp-developers@lists.sourceforge.net
2643S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
2645SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002646P: Jim Cromie
2647M: jim.cromie@gmail.com
2648S: Odd Fixes
2649
2650SCx200 GPIO DRIVER
2651P: Jim Cromie
2652M: jim.cromie@gmail.com
2653S: Maintained
2654
2655SCx200 HRT CLOCKSOURCE DRIVER
2656P: Jim Cromie
2657M: jim.cromie@gmail.com
2658S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660SECURITY CONTACT
2661P: Security Officers
2662M: security@kernel.org
2663S: Supported
2664
2665SELINUX SECURITY MODULE
2666P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002667M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002669M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670L: linux-kernel@vger.kernel.org (kernel issues)
2671L: selinux@tycho.nsa.gov (general discussion)
2672W: http://www.nsa.gov/selinux
2673S: Supported
2674
2675SERIAL ATA (SATA) SUBSYSTEM:
2676P: Jeff Garzik
2677M: jgarzik@pobox.com
2678L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002679T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680S: Supported
2681
2682SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2683P: Pat Gefre
2684M: pfg@sgi.com
2685L: linux-ia64@vger.kernel.org
2686S: Supported
2687
2688SGI VISUAL WORKSTATION 320 AND 540
2689P: Andrey Panin
2690M: pazke@donpac.ru
2691L: linux-visws-devel@lists.sf.net
2692W: http://linux-visws.sf.net
2693S: Maintained for 2.6.
2694
2695SIMTEC EB110ATX (Chalice CATS)
2696P: Ben Dooks
2697P: Vincent Sanders
2698M: support@simtec.co.uk
2699W: http://www.simtec.co.uk/products/EB110ATX/
2700S: Supported
2701
2702SIMTEC EB2410ITX (BAST)
2703P: Ben Dooks
2704P: Vincent Sanders
2705M: support@simtec.co.uk
2706W: http://www.simtec.co.uk/products/EB2410ITX/
2707S: Supported
2708
Francois Romieu92aab3c2005-07-30 13:11:18 +02002709SIS 190 ETHERNET DRIVER
2710P: Francois Romieu
2711M: romieu@fr.zoreil.com
2712L: netdev@vger.kernel.org
2713S: Maintained
2714
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715SIS 5513 IDE CONTROLLER DRIVER
2716P: Lionel Bouton
2717M: Lionel.Bouton@inet6.fr
2718W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2719W: http://gyver.homeip.net/sis5513/index.html
2720S: Maintained
2721
2722SIS 900/7016 FAST ETHERNET DRIVER
2723P: Daniele Venzano
2724M: venza@brownhat.org
2725W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002726L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727S: Maintained
2728
2729SIS FRAMEBUFFER DRIVER
2730P: Thomas Winischhofer
2731M: thomas@winischhofer.net
2732W: http://www.winischhofer.net/linuxsisvga.shtml
2733S: Maintained
2734
2735SIS USB2VGA DRIVER
2736P: Thomas Winischhofer
2737M: thomas@winischhofer.net
2738W: http://www.winischhofer.at/linuxsisusbvga.shtml
2739S: Maintained
2740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741SMC91x ETHERNET DRIVER
2742P: Nicolas Pitre
2743M: nico@cam.org
2744S: Maintained
2745
Daniel Drake8f0f8502006-07-18 22:00:25 +01002746SOFTMAC LAYER (IEEE 802.11)
2747P: Johannes Berg
2748M: johannes@sipsolutions.net
2749P: Joe Jezak
2750M: josejx@gentoo.org
2751P: Daniel Drake
2752M: dsd@gentoo.org
2753W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002754L: netdev@vger.kernel.org
2755S: Maintained
2756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757SOFTWARE RAID (Multiple Disks) SUPPORT
2758P: Ingo Molnar
2759M: mingo@redhat.com
2760P: Neil Brown
2761M: neilb@cse.unsw.edu.au
2762L: linux-raid@vger.kernel.org
2763S: Maintained
2764
2765SOFTWARE SUSPEND:
2766P: Pavel Machek
2767M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002768L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769S: Maintained
2770
2771SONIC NETWORK DRIVER
2772P: Thomas Bogendoerfer
2773M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002774L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775S: Maintained
2776
2777SONY VAIO CONTROL DEVICE DRIVER
2778P: Stelian Pop
2779M: stelian@popies.net
2780W: http://popies.net/sonypi/
2781S: Maintained
2782
2783SOUND
2784P: Jaroslav Kysela
2785M: perex@suse.cz
2786L: alsa-devel@alsa-project.org
2787S: Maintained
2788
Kumar Gala025c3982006-04-02 16:05:54 -05002789SPI SUBSYSTEM
2790P: David Brownell
2791M: dbrownell@users.sourceforge.net
2792L: spi-devel-general@lists.sourceforge.net
2793S: Maintained
2794
Steven Rostedt855f46a2006-08-05 12:14:50 -07002795STABLE BRANCH:
2796P: Greg Kroah-Hartman
2797M: greg@kroah.com
2798P: Chris Wright
2799M: chrisw@sous-sol.org
2800L: stable@kernel.org
2801S: Maintained
2802
Kylene Hall1c72d462005-05-01 08:59:13 -07002803TPM DEVICE DRIVER
2804P: Kylene Hall
2805M: kjhall@us.ibm.com
2806W: http://tpmdd.sourceforge.net
2807L: tpmdd-devel@lists.sourceforge.net
2808S: Maintained
2809
Mark Gross1a80ba82005-10-30 15:02:55 -08002810Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002811P: Mark Gross
2812M: mark.gross@intel.com
2813S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08002814
Chris Zankel48b415c2005-06-23 22:01:07 -07002815TENSILICA XTENSA PORT (xtensa):
2816P: Chris Zankel
2817M: chris@zankel.net
2818S: Maintained
2819
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820UltraSPARC (sparc64):
2821P: David S. Miller
2822M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002824T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825S: Maintained
2826
2827SHARP LH SUPPORT (LH7952X & LH7A40X)
2828P: Marc Singer
2829M: elf@buici.com
2830W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002831L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832S: Maintained
2833
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002834SHPC HOTPLUG DRIVER
2835P: Kristen Carlson Accardi
2836M: kristen.c.accardi@intel.com
2837L: pcihpd-discuss@lists.sourceforge.net
2838S: Maintained
2839
Pierre Ossmand129bce2006-03-24 03:18:17 -08002840SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2841P: Pierre Ossman
2842M: drzeus-sdhci@drzeus.cx
2843L: sdhci-devel@list.drzeus.cx
2844W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2845S: Maintained
2846
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002847SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2848P: Stephen Hemminger
2849M: shemminger@osdl.org
2850L: netdev@vger.kernel.org
2851S: Maintained
2852
Chris Boot1a87d942006-07-10 04:45:34 -07002853SOEKRIS NET48XX LED SUPPORT
2854P: Chris Boot
2855M: bootc@bootc.net
2856S: Maintained
2857
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858SPARC (sparc32):
2859P: William L. Irwin
2860M: wli@holomorphy.com
2861L: sparclinux@vger.kernel.org
2862S: Maintained
2863
2864SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2865P: Roger Wolff
2866M: R.E.Wolff@BitWizard.nl
2867L: linux-kernel@vger.kernel.org ?
2868S: Supported
2869
Jim Lewis2752e402006-09-29 02:01:19 -07002870SPIDERNET NETWORK DRIVER for CELL
2871P: Jim Lewis
2872M: jim@jklewis.com
2873L: netdev@vger.kernel.org
2874S: Supported
2875
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876SRM (Alpha) environment access
2877P: Jan-Benedict Glaw
2878M: jbglaw@lug-owl.de
2879L: linux-kernel@vger.kernel.org
2880S: Maintained
2881
2882STARFIRE/DURALAN NETWORK DRIVER
2883P: Ion Badulescu
2884M: ionut@cs.columbia.edu
2885S: Maintained
2886
2887STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2888W: http://mosquitonet.Stanford.EDU/strip.html
2889S: Unsupported ?
2890
2891STRADIS MPEG-2 DECODER DRIVER
2892P: Nathan Laredo
2893M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894W: http://www.stradis.com/
2895S: Maintained
2896
2897SUPERH (sh)
2898P: Paul Mundt
2899M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002900L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902S: Maintained
2903
2904SUPERH64 (sh64)
2905P: Paul Mundt
2906M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907L: linuxsh-shmedia-dev@lists.sourceforge.net
2908W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909S: Maintained
2910
2911SUN3/3X
2912P: Sam Creasey
2913M: sammy@sammy.net
2914L: sun3-list@redhat.com
2915W: http://sammy.net/sun3/
2916S: Maintained
2917
2918SVGA HANDLING
2919P: Martin Mares
2920M: mj@ucw.cz
2921L: linux-video@atrey.karlin.mff.cuni.cz
2922S: Maintained
2923
2924SYSV FILESYSTEM
2925P: Christoph Hellwig
2926M: hch@infradead.org
2927S: Maintained
2928
Stephen Hemminger781b456a2006-07-10 20:25:29 -07002929TC CLASSIFIER
2930P: Jamal Hadi Salim
2931M: hadi@cyberus.ca
2932L: netdev@vger.kernel.org
2933S: Maintained
2934
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002935TCP LOW PRIORITY MODULE
2936P: Wong Hoi Sing, Edison
2937M: hswong3i@gmail.com
2938P: Hung Hing Lun, Mike
2939M: hlhung3i@gmail.com
2940W: http://tcp-lp-mod.sourceforge.net/
2941S: Maintained
2942
Alex Dubov4020f2d2006-10-04 02:15:37 -07002943TI FLASH MEDIA INTERFACE DRIVER
2944P: Alex Dubov
2945M: oakad@yahoo.com
2946S: Maintained
2947
Michael Buesch844dd052006-06-26 00:24:59 -07002948TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2949P: Deepak Saxena
2950M: dsaxena@plexity.net
2951S: Maintained
2952
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002953TASKSTATS STATISTICS INTERFACE
2954P: Shailabh Nagar
2955M: nagar@watson.ibm.com
2956L: linux-kernel@vger.kernel.org
2957S: Maintained
2958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002960P: Romain Lievin
2961M: roms@lpg.ticalc.org
2962S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
Per Lidene86eaa32006-01-12 16:45:18 +01002964TIPC NETWORK LAYER
2965P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002966M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002967P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002968M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002969P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002970M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002971L: tipc-discussion@lists.sourceforge.net
2972W: http://tipc.sourceforge.net/
2973W: http://tipc.cslab.ericsson.net/
2974T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
2975S: Maintained
2976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977TLAN NETWORK DRIVER
2978P: Samuel Chessman
2979M: chessman@tux.org
2980L: tlan-devel@lists.sourceforge.net
2981W: http://sourceforge.net/projects/tlan/
2982S: Maintained
2983
2984TOKEN-RING NETWORK DRIVER
2985P: Mike Phillips
2986M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002987L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988L: linux-tr@linuxtr.net
2989W: http://www.linuxtr.net
2990S: Maintained
2991
2992TOSHIBA ACPI EXTRAS DRIVER
2993P: John Belmonte
2994M: toshiba_acpi@memebeam.org
2995W: http://memebeam.org/toys/ToshibaAcpiDriver
2996S: Maintained
2997
2998TOSHIBA SMM DRIVER
2999P: Jonathan Buzzard
3000M: jonathan@buzzard.org.uk
3001L: tlinux-users@tce.toshiba-dme.co.jp
3002W: http://www.buzzard.org.uk/toshiba/
3003S: Maintained
3004
3005TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3006P: Muli Ben-Yehuda
3007M: mulix@mulix.org
3008L: linux-kernel@vger.kernel.org
3009S: Maintained
3010
3011TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003012P: Adrian Bunk
3013M: trivial@kernel.org
3014L: linux-kernel@vger.kernel.org
3015W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3016T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3017S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
3019TMS380 TOKEN-RING NETWORK DRIVER
3020P: Adam Fritzler
3021M: mid@auk.cx
3022L: linux-tr@linuxtr.net
3023W: http://www.auk.cx/tms380tr/
3024S: Maintained
3025
3026TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003027P: Valerie Henson
3028M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029L: tulip-users@lists.sourceforge.net
3030W: http://sourceforge.net/projects/tulip/
3031S: Maintained
3032
3033TUN/TAP driver
3034P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003035M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036L: vtun@office.satix.net
3037W: http://vtun.sourceforge.net/tun
3038S: Maintained
3039
3040U14-34F SCSI DRIVER
3041P: Dario Ballabio
3042M: ballabio_dario@emc.com
3043L: linux-scsi@vger.kernel.org
3044S: Maintained
3045
3046UDF FILESYSTEM
3047P: Ben Fennema
3048M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049W: http://linux-udf.sourceforge.net
3050S: Maintained
3051
3052UNIFORM CDROM DRIVER
3053P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003054M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055L: linux-kernel@vger.kernel.org
3056W: http://www.kernel.dk
3057S: Maintained
3058
3059USB ACM DRIVER
3060P: Oliver Neukum
3061M: oliver@neukum.name
3062L: linux-usb-users@lists.sourceforge.net
3063L: linux-usb-devel@lists.sourceforge.net
3064S: Maintained
3065
3066USB BLOCK DRIVER (UB ub)
3067P: Pete Zaitcev
3068M: zaitcev@redhat.com
3069L: linux-kernel@vger.kernel.org
3070L: linux-usb-devel@lists.sourceforge.net
3071S: Supported
3072
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073USB CDC ETHERNET DRIVER
3074P: Greg Kroah-Hartman
3075M: greg@kroah.com
3076L: linux-usb-users@lists.sourceforge.net
3077L: linux-usb-devel@lists.sourceforge.net
3078S: Maintained
3079W: http://www.kroah.com/linux-usb/
3080
3081USB EHCI DRIVER
3082P: David Brownell
3083M: dbrownell@users.sourceforge.net
3084L: linux-usb-devel@lists.sourceforge.net
3085S: Maintained
3086
Luca Risolia7ce08c92006-01-11 02:06:59 +00003087USB ET61X[12]51 DRIVER
3088P: Luca Risolia
3089M: luca.risolia@studio.unibo.it
3090L: linux-usb-devel@lists.sourceforge.net
3091L: video4linux-list@redhat.com
3092W: http://www.linux-projects.org
3093S: Maintained
3094
David Brownell69ae9e32006-11-14 02:03:31 -08003095USB GADGET/PERIPHERAL SUBSYSTEM
3096P: David Brownell
3097M: dbrownell@users.sourceforge.net
3098L: linux-usb-devel@lists.sourceforge.net
3099W: http://www.linux-usb.org/gadget
3100S: Maintained
3101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102USB HID/HIDBP DRIVERS
3103P: Vojtech Pavlik
3104M: vojtech@suse.cz
3105L: linux-usb-users@lists.sourceforge.net
3106L: linux-usb-devel@lists.sourceforge.net
3107S: Maintained
3108
3109USB HUB DRIVER
3110P: Johannes Erdfelt
3111M: johannes@erdfelt.com
3112L: linux-usb-users@lists.sourceforge.net
3113L: linux-usb-devel@lists.sourceforge.net
3114S: Maintained
3115
Olav Kongas959eea22005-11-03 17:38:14 +02003116USB ISP116X DRIVER
3117P: Olav Kongas
3118M: ok@artecdesign.ee
3119L: linux-usb-devel@lists.sourceforge.net
3120S: Maintained
3121
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122USB KAWASAKI LSI DRIVER
3123P: Oliver Neukum
3124M: oliver@neukum.name
3125L: linux-usb-users@lists.sourceforge.net
3126L: linux-usb-devel@lists.sourceforge.net
3127S: Maintained
3128
3129USB MASS STORAGE DRIVER
3130P: Matthew Dharm
3131M: mdharm-usb@one-eyed-alien.net
3132L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003133L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134S: Maintained
3135W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3136
3137USB OHCI DRIVER
3138P: Roman Weissgaerber
3139M: weissg@vienna.at
3140L: linux-usb-users@lists.sourceforge.net
3141L: linux-usb-devel@lists.sourceforge.net
3142S: Maintained
3143
Matthias Urlichsba460e42005-07-14 00:33:47 -07003144USB OPTION-CARD DRIVER
3145P: Matthias Urlichs
3146M: smurf@smurf.noris.de
3147L: linux-usb-devel@lists.sourceforge.net
3148S: Maintained
3149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150USB OV511 DRIVER
3151P: Mark McClelland
3152M: mmcclell@bigfoot.com
3153L: linux-usb-users@lists.sourceforge.net
3154L: linux-usb-devel@lists.sourceforge.net
3155W: http://alpha.dyndns.org/ov511/
3156S: Maintained
3157
3158USB PEGASUS DRIVER
3159P: Petko Manolov
3160M: petkan@users.sourceforge.net
3161L: linux-usb-users@lists.sourceforge.net
3162L: linux-usb-devel@lists.sourceforge.net
3163W: http://pegasus2.sourceforge.net/
3164S: Maintained
3165
3166USB PRINTER DRIVER
3167P: Vojtech Pavlik
3168M: vojtech@suse.cz
3169L: linux-usb-users@lists.sourceforge.net
3170L: linux-usb-devel@lists.sourceforge.net
3171S: Maintained
3172
3173USB RTL8150 DRIVER
3174P: Petko Manolov
3175M: petkan@users.sourceforge.net
3176L: linux-usb-users@lists.sourceforge.net
3177L: linux-usb-devel@lists.sourceforge.net
3178W: http://pegasus2.sourceforge.net/
3179S: Maintained
3180
3181USB SE401 DRIVER
3182P: Jeroen Vreeken
3183M: pe1rxq@amsat.org
3184L: linux-usb-users@lists.sourceforge.net
3185L: linux-usb-devel@lists.sourceforge.net
3186W: http://www.chello.nl/~j.vreeken/se401/
3187S: Maintained
3188
3189USB SERIAL CYBERJACK DRIVER
3190P: Matthias Bruestle and Harald Welte
3191M: support@reiner-sct.com
3192W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3193S: Maintained
3194
3195USB SERIAL DIGI ACCELEPORT DRIVER
3196P: Peter Berger and Al Borchers
3197M: pberger@brimson.com
3198M: alborchers@steinerpoint.com
3199L: linux-usb-users@lists.sourceforge.net
3200L: linux-usb-devel@lists.sourceforge.net
3201S: Maintained
3202
3203USB SERIAL DRIVER
3204P: Greg Kroah-Hartman
3205M: gregkh@suse.de
3206L: linux-usb-users@lists.sourceforge.net
3207L: linux-usb-devel@lists.sourceforge.net
3208S: Supported
3209
3210USB SERIAL BELKIN F5U103 DRIVER
3211P: William Greathouse
3212M: wgreathouse@smva.com
3213L: linux-usb-users@lists.sourceforge.net
3214L: linux-usb-devel@lists.sourceforge.net
3215S: Maintained
3216
3217USB SERIAL CYPRESS M8 DRIVER
3218P: Lonnie Mendez
3219M: dignome@gmail.com
3220L: linux-usb-users@lists.sourceforge.net
3221L: linux-usb-devel@lists.sourceforge.net
3222S: Maintained
3223W: http://geocities.com/i0xox0i
3224W: http://firstlight.net/cvs
3225
3226USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3227L: linux-usb-users@lists.sourceforge.net
3228L: linux-usb-devel@lists.sourceforge.net
3229S: Maintained
3230
3231USB AUERSWALD DRIVER
3232P: Wolfgang Muees
3233M: wolfgang@iksw-muees.de
3234L: linux-usb-users@lists.sourceforge.net
3235L: linux-usb-devel@lists.sourceforge.net
3236S: Maintained
3237
3238USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3239P: Gary Brubaker
3240M: xavyer@ix.netcom.com
3241L: linux-usb-users@lists.sourceforge.net
3242L: linux-usb-devel@lists.sourceforge.net
3243S: Maintained
3244
3245USB SERIAL KEYSPAN DRIVER
3246P: Greg Kroah-Hartman
3247M: greg@kroah.com
3248L: linux-usb-users@lists.sourceforge.net
3249L: linux-usb-devel@lists.sourceforge.net
3250W: http://www.kroah.com/linux/
3251S: Maintained
3252
3253USB SERIAL WHITEHEAT DRIVER
3254P: Stuart MacDonald
3255M: stuartm@connecttech.com
3256L: linux-usb-users@lists.sourceforge.net
3257L: linux-usb-devel@lists.sourceforge.net
3258W: http://www.connecttech.com
3259S: Supported
3260
3261USB SN9C10x DRIVER
3262P: Luca Risolia
3263M: luca.risolia@studio.unibo.it
3264L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003265L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266W: http://www.linux-projects.org
3267S: Maintained
3268
3269USB SUBSYSTEM
3270P: Greg Kroah-Hartman
3271M: gregkh@suse.de
3272L: linux-usb-users@lists.sourceforge.net
3273L: linux-usb-devel@lists.sourceforge.net
3274W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003275T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276S: Supported
3277
3278USB UHCI DRIVER
3279P: Alan Stern
3280M: stern@rowland.harvard.edu
3281L: linux-usb-users@lists.sourceforge.net
3282L: linux-usb-devel@lists.sourceforge.net
3283S: Maintained
3284
David Brownell69ae9e32006-11-14 02:03:31 -08003285USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286P: David Brownell
3287M: dbrownell@users.sourceforge.net
3288L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003289W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290S: Maintained
3291
3292USB W996[87]CF DRIVER
3293P: Luca Risolia
3294M: luca.risolia@studio.unibo.it
3295L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003296L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297W: http://www.linux-projects.org
3298S: Maintained
3299
Luca Risolia60f78052006-02-06 16:29:35 +00003300USB ZC0301 DRIVER
3301P: Luca Risolia
3302M: luca.risolia@studio.unibo.it
3303L: linux-usb-devel@lists.sourceforge.net
3304L: video4linux-list@redhat.com
3305W: http://www.linux-projects.org
3306S: Maintained
3307
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308USB ZD1201 DRIVER
3309P: Jeroen Vreeken
3310M: pe1rxq@amsat.org
3311L: linux-usb-users@lists.sourceforge.net
3312L: linux-usb-devel@lists.sourceforge.net
3313W: http://linux-lc100020.sourceforge.net
3314S: Maintained
3315
3316USER-MODE LINUX
3317P: Jeff Dike
3318M: jdike@karaya.com
3319L: user-mode-linux-devel@lists.sourceforge.net
3320L: user-mode-linux-user@lists.sourceforge.net
3321W: http://user-mode-linux.sourceforge.net
3322S: Maintained
3323
3324FAT/VFAT/MSDOS FILESYSTEM:
3325P: OGAWA Hirofumi
3326M: hirofumi@mail.parknet.co.jp
3327L: linux-kernel@vger.kernel.org
3328S: Maintained
3329
3330VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3331P: Jeff Garzik
3332S: Odd fixes
3333
3334VIA RHINE NETWORK DRIVER
3335P: Roger Luethi
3336M: rl@hellgate.ch
3337S: Maintained
3338
Jean Delvare32c0a522005-09-22 21:47:58 +02003339VIAPRO SMBUS DRIVER
3340P: Jean Delvare
3341M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003342L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003343S: Maintained
3344
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345UCLINUX (AND M68KNOMMU)
3346P: Greg Ungerer
3347M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003349L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350S: Maintained
3351
3352UCLINUX FOR NEC V850
3353P: Miles Bader
3354M: uclinux-v850@lsi.nec.co.jp
3355W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3356W: http://www.ee.nec.de/uclinux/
3357S: Supported
3358
3359UCLINUX FOR RENESAS H8/300
3360P: Yoshinori Sato
3361M: ysato@users.sourceforge.jp
3362W: http://uclinux-h8.sourceforge.jp/
3363S: Supported
3364
3365USB DIAMOND RIO500 DRIVER
3366P: Cesar Miquel
3367M: miquel@df.uba.ar
3368L: rio500-users@lists.sourceforge.net
3369W: http://rio500.sourceforge.net
3370S: Maintained
3371
3372VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003373P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003374M: mchehab@infradead.org
3375M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003377W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003378T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003379S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
Juerg Haefligerab413192006-09-24 20:54:04 +02003381VT1211 HARDWARE MONITOR DRIVER
3382P: Juerg Haefliger
3383M: juergh@gmail.com
3384L: lm-sensors@lm-sensors.org
3385S: Maintained
3386
Roger Lucas1de9e372005-11-26 20:20:05 +01003387VT8231 HARDWARE MONITOR DRIVER
3388P: Roger Lucas
3389M: roger@planbit.co.uk
3390L: lm-sensors@lm-sensors.org
3391S: Maintained
3392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393W1 DALLAS'S 1-WIRE BUS
3394P: Evgeniy Polyakov
3395M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396S: Maintained
3397
Charles Spirakis13927072006-07-05 18:05:15 +02003398W83791D HARDWARE MONITORING DRIVER
3399P: Charles Spirakis
3400M: bezaur@gmail.com
3401L: lm-sensors@lm-sensors.org
3402S: Maintained
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404W83L51xD SD/MMC CARD INTERFACE DRIVER
3405P: Pierre Ossman
3406M: drzeus-wbsd@drzeus.cx
3407L: wbsd-devel@list.drzeus.cx
3408W: http://projects.drzeus.cx/wbsd
3409S: Maintained
3410
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003411WATCHDOG DEVICE DRIVERS
3412P: Wim Van Sebroeck
3413M: wim@iguana.be
3414T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3415S: Maintained
3416
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3418P: Jean Tourrilhes
3419M: jt@hpl.hp.com
3420W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3421S: Maintained
3422
3423WD7000 SCSI DRIVER
3424P: Miroslav Zagorac
3425M: zaga@fly.cc.fer.hr
3426L: linux-scsi@vger.kernel.org
3427S: Maintained
3428
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003429WISTRON LAPTOP BUTTON DRIVER
3430P: Miloslav Trmac
3431M: mitr@volny.cz
3432S: Maintained
3433
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434WL3501 WIRELESS PCMCIA CARD DRIVER
3435P: Arnaldo Carvalho de Melo
3436M: acme@conectiva.com.br
3437W: http://advogato.org/person/acme
3438S: Maintained
3439
3440X.25 NETWORK LAYER
3441P: Henner Eisen
3442M: eis@baty.hanse.de
3443L: linux-x25@vger.kernel.org
3444S: Maintained
3445
3446XFS FILESYSTEM
3447P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003448P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003450L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003452T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453S: Supported
3454
3455X86 3-LEVEL PAGING (PAE) SUPPORT
3456P: Ingo Molnar
3457M: mingo@redhat.com
3458S: Maintained
3459
3460X86-64 port
3461P: Andi Kleen
3462M: ak@suse.de
3463L: discuss@x86-64.org
3464W: http://www.x86-64.org
3465S: Maintained
3466
3467YAM DRIVER FOR AX.25
3468P: Jean-Paul Roubelat
3469M: jpr@f6fbb.org
3470L: linux-hams@vger.kernel.org
3471S: Maintained
3472
Henkaf64a5e2005-10-12 15:02:56 +02003473YEALINK PHONE DRIVER
3474P: Henk Vergonet
3475M: Henk.Vergonet@gmail.com
3476L: usbb2k-api-dev@nongnu.org
3477S: Maintained
3478
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479Z8530 DRIVER FOR AX.25
3480P: Joerg Reuter
3481M: jreuter@yaina.de
3482W: http://yaina.de/jreuter/
3483W: http://www.qsl.net/dl1bke/
3484L: linux-hams@vger.kernel.org
3485S: Maintained
3486
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003487ZD1211RW WIRELESS DRIVER
3488P: Daniel Drake
3489M: dsd@gentoo.org
3490P: Ulrich Kunitz
3491M: kune@deine-taler.de
3492W: http://zd1211.ath.cx/wiki/DriverRewrite
3493L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3494S: Maintained
3495
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496ZF MACHZ WATCHDOG
3497P: Fernando Fuganti
3498M: fuganti@netbank.com.br
3499W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3500S: Maintained
3501
3502ZR36067 VIDEO FOR LINUX DRIVER
3503P: Ronald Bultje
3504M: rbultje@ronald.bitfreak.net
3505L: mjpeg-users@lists.sourceforge.net
3506W: http://mjpeg.sourceforge.net/driver-zoran/
3507S: Maintained
3508
3509ZR36120 VIDEO FOR LINUX DRIVER
3510P: Pauline Middelink
3511M: middelin@polyware.nl
3512W: http://www.polyware.nl/~middelin/En/hobbies.html
3513W: http://www.polyware.nl/~middelin/hobbies.html
3514S: Maintained
3515
3516THE REST
3517P: Linus Torvalds
3518S: Buried alive in reporters