blob: 1c6223d3ce70b465561e41616e9aa2179c52972e [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
158P: 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
168
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
293P: Jordan Crouse
294M: info-linux@geode.amd.com
295L: 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
Dirk Opfer8459c152005-11-06 14:27:52 +0000356ARM/TOSA MACHINE SUPPORT
357P: Dirk Opfer
358M: dirk@opfer-online.de
359S: Maintained
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361ARM/PLEB SUPPORT
362P: Peter Chubb
363M: pleb@gelato.unsw.edu.au
364W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
365S: Maintained
366
367ARM/PT DIGITAL BOARD PORT
368P: Stefan Eletzhofer
369M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700370L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371W: http://www.arm.linux.org.uk/
372S: Maintained
373
374ARM/SHARK MACHINE SUPPORT
375P: Alexander Schulz
376M: alex@shark-linux.de
377W: http://www.shark-linux.de/shark.html
378S: Maintained
379
380ARM/STRONGARM110 PORT
381P: Russell King
382M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700383L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384W: http://www.arm.linux.org.uk/
385S: Maintained
386
387ARM/S3C2410 ARM ARCHITECTURE
388P: Ben Dooks
389M: ben-s3c2410@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700390L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391W: http://www.fluff.org/ben/linux/
392S: Maintained
393
394ARM/S3C2440 ARM ARCHITECTURE
395P: Ben Dooks
396M: ben-s3c2440@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700397L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398W: http://www.fluff.org/ben/linux/
399S: Maintained
400
401ARPD SUPPORT
402P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700403L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404S: Maintained
405
406ASUS ACPI EXTRAS DRIVER
407P: Karol Kozimor
408M: sziwan@users.sourceforge.net
409P: Julien Lerouge
410M: julien.lerouge@free.fr
411L: acpi4asus-user@lists.sourceforge.net
412W: http://sourceforge.net/projects/acpi4asus
413W: http://julien.lerouge.free.fr
414S: Maintained
415
416ATA OVER ETHERNET DRIVER
417P: Ed L. Cashin
418M: ecashin@coraid.com
419W: http://www.coraid.com/support/linux
420S: Supported
421
422ATM
423P: Chas Williams
424M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700425L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426W: http://linux-atm.sourceforge.net
427S: Maintained
428
429ATMEL WIRELESS DRIVER
430P: Simon Kelley
431M: simon@thekelleys.org.uk
432W: http://www.thekelleys.org.uk/atmel
433W: http://atmelwlandriver.sourceforge.net/
434S: Maintained
435
Chris Wrighta92b7b82005-07-07 18:12:23 -0700436AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100437P: David Woodhouse
438M: dwmw2@infradead.org
439L: linux-audit@redhat.com
440W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800441T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700442S: Maintained
443
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700444AVR32 ARCHITECTURE
445P: Atmel AVR32 Support Team
446M: avr32@atmel.com
447P: Haavard Skinnemoen
448M: hskinnemoen@atmel.com
449W: http://www.atmel.com/products/AVR32/
450W: http://avr32linux.org/
451W: http://avrfreaks.net/
452S: Supported
453
454AVR32/AT32AP MACHINE SUPPORT
455P: Atmel AVR32 Support Team
456M: avr32@atmel.com
457P: Haavard Skinnemoen
458M: hskinnemoen@atmel.com
459S: Supported
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461AX.25 NETWORK LAYER
462P: Ralf Baechle
463M: ralf@linux-mips.org
464L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200465W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466S: Maintained
467
468BAYCOM/HDLCDRV DRIVERS FOR AX.25
469P: Thomas Sailer
470M: t.sailer@alumni.ethz.ch
471L: linux-hams@vger.kernel.org
472W: http://www.baycom.org/~tom/ham/ham.html
473S: Maintained
474
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200475BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
476P: Larry Finger
477M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200478P: Stefano Brivio
479M: st3@riseup.net
480W: http://bcm43xx.berlios.de/
481S: Maintained
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483BEFS FILE SYSTEM
484P: Sergey S. Kostyliov
485M: rathamahata@php4.ru
486L: linux-kernel@vger.kernel.org
487S: Maintained
488
489BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
490P: Kenji Hollis
491W: http://ftp.bitgate.com/pcwd/
492S: Maintained
493
494BFS FILE SYSTEM
495P: Tigran A. Aivazian
496M: tigran@veritas.com
497L: linux-kernel@vger.kernel.org
498S: Maintained
499
500BLOCK LAYER
501P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200502M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800504T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505S: Maintained
506
507BLUETOOTH SUBSYSTEM
508P: Marcel Holtmann
509M: marcel@holtmann.org
510P: Maxim Krasnyansky
511M: maxk@qualcomm.com
512L: bluez-devel@lists.sf.net
513W: http://bluez.sf.net
514W: http://www.bluez.org
515W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800516T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517S: Maintained
518
519BLUETOOTH RFCOMM LAYER
520P: Marcel Holtmann
521M: marcel@holtmann.org
522P: Maxim Krasnyansky
523M: maxk@qualcomm.com
524S: Maintained
525
526BLUETOOTH BNEP LAYER
527P: Marcel Holtmann
528M: marcel@holtmann.org
529P: Maxim Krasnyansky
530M: maxk@qualcomm.com
531S: Maintained
532
533BLUETOOTH CMTP LAYER
534P: Marcel Holtmann
535M: marcel@holtmann.org
536S: Maintained
537
538BLUETOOTH HIDP LAYER
539P: Marcel Holtmann
540M: marcel@holtmann.org
541S: Maintained
542
543BLUETOOTH HCI UART DRIVER
544P: Marcel Holtmann
545M: marcel@holtmann.org
546P: Maxim Krasnyansky
547M: maxk@qualcomm.com
548S: Maintained
549
550BLUETOOTH HCI USB DRIVER
551P: Marcel Holtmann
552M: marcel@holtmann.org
553P: Maxim Krasnyansky
554M: maxk@qualcomm.com
555S: Maintained
556
557BLUETOOTH HCI BCM203X DRIVER
558P: Marcel Holtmann
559M: marcel@holtmann.org
560S: Maintained
561
562BLUETOOTH HCI BPA10X DRIVER
563P: Marcel Holtmann
564M: marcel@holtmann.org
565S: Maintained
566
567BLUETOOTH HCI BFUSB DRIVER
568P: Marcel Holtmann
569M: marcel@holtmann.org
570S: Maintained
571
572BLUETOOTH HCI DTL1 DRIVER
573P: Marcel Holtmann
574M: marcel@holtmann.org
575S: Maintained
576
577BLUETOOTH HCI BLUECARD DRIVER
578P: Marcel Holtmann
579M: marcel@holtmann.org
580S: Maintained
581
582BLUETOOTH HCI BT3C DRIVER
583P: Marcel Holtmann
584M: marcel@holtmann.org
585S: Maintained
586
587BLUETOOTH HCI BTUART DRIVER
588P: Marcel Holtmann
589M: marcel@holtmann.org
590S: Maintained
591
592BLUETOOTH HCI VHCI DRIVER
593P: Maxim Krasnyansky
594M: maxk@qualcomm.com
595S: Maintained
596
597BONDING DRIVER
598P: Chad Tindel
599M: ctindel@users.sourceforge.net
600P: Jay Vosburgh
601M: fubar@us.ibm.com
602L: bonding-devel@lists.sourceforge.net
603W: http://sourceforge.net/projects/bonding/
604S: Supported
605
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000606BROADBAND PROCESSOR ARCHITECTURE
607P: Arnd Bergmann
608M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100609L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400610W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000611S: Supported
612
Gary Zambrano39105892006-06-22 17:26:20 -0700613BROADCOM B44 10/100 ETHERNET DRIVER
614P: Gary Zambrano
615M: zambrano@broadcom.com
616L: netdev@vger.kernel.org
617S: Supported
618
Michael Chan948c51e2006-06-04 02:51:39 -0700619BROADCOM BNX2 GIGABIT ETHERNET DRIVER
620P: Michael Chan
621M: mchan@broadcom.com
622L: netdev@vger.kernel.org
623S: Supported
624
625BROADCOM TG3 GIGABIT ETHERNET DRIVER
626P: Michael Chan
627M: mchan@broadcom.com
628L: netdev@vger.kernel.org
629S: Supported
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700632P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200633M: mchehab@infradead.org
634M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700636W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200637T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700638S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200640CALGARY x86-64 IOMMU
641P: Muli Ben-Yehuda
642M: muli@il.ibm.com
643P: Jon D. Mason
644M: jdmason@us.ibm.com
645L: linux-kernel@vger.kernel.org
646L: discuss@x86-64.org
647S: Maintained
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649COMMON INTERNET FILE SYSTEM (CIFS)
650P: Steve French
651M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100652L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653L: samba-technical@lists.samba.org
654W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800655T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656S: Supported
657
Joel Becker7063fbf2005-12-15 14:29:43 -0800658CONFIGFS
659P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800660M: joel.becker@oracle.com
661L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800662S: Supported
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664CIRRUS LOGIC GENERIC FBDEV DRIVER
665P: Jeff Garzik
666M: jgarzik@pobox.com
667L: linux-fbdev-devel@lists.sourceforge.net
668S: Odd Fixes
669
670CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
671P: Cirrus Logic Corporation (kernel 2.2 driver)
672M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
673P: Nils Faerber (port to kernel 2.4)
674M: Nils Faerber <nils@kernelconcepts.de>
675S: Maintained
676
677CODA FILE SYSTEM
678P: Jan Harkes
679M: jaharkes@cs.cmu.edu
680M: coda@cs.cmu.edu
681L: codalist@coda.cs.cmu.edu
682W: http://www.coda.cs.cmu.edu/
683S: Maintained
684
685COMPACTPCI HOTPLUG CORE
686P: Scott Murray
687M: scottm@somanetworks.com
688M: scott@spiteful.org
689L: pcihpd-discuss@lists.sourceforge.net
690S: Supported
691
692COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
693P: Scott Murray
694M: scottm@somanetworks.com
695M: scott@spiteful.org
696L: pcihpd-discuss@lists.sourceforge.net
697S: Supported
698
699COMPACTPCI HOTPLUG GENERIC DRIVER
700P: Scott Murray
701M: scottm@somanetworks.com
702M: scott@spiteful.org
703L: pcihpd-discuss@lists.sourceforge.net
704S: Supported
705
706COMPUTONE INTELLIPORT MULTIPORT CARD
707P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700708M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700710S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712COSA/SRP SYNC SERIAL DRIVER
713P: Jan "Yenya" Kasprzak
714M: kas@fi.muni.cz
715W: http://www.fi.muni.cz/~kas/cosa/
716S: Maintained
717
718CPU FREQUENCY DRIVERS
719P: Dave Jones
720M: davej@codemonkey.org.uk
721L: cpufreq@lists.linux.org.uk
722W: http://www.codemonkey.org.uk/projects/cpufreq/
Josh Boyer1adc1232005-11-23 15:44:15 -0800723T: git kernel.org/pub/scm/linux/kernel/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724S: Maintained
725
726CPUID/MSR DRIVER
727P: H. Peter Anvin
728M: hpa@zytor.com
729S: Maintained
730
Paul Jacksoned90fb42005-09-27 21:45:37 -0700731CPUSETS
732P: Paul Jackson
733P: Simon Derr
734M: pj@sgi.com
735M: simon.derr@bull.net
736L: linux-kernel@vger.kernel.org
737W: http://www.bullopensource.org/cpuset/
738S: Supported
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740CRAMFS FILESYSTEM
741W: http://sourceforge.net/projects/cramfs/
742S: Orphan
743
744CRIS PORT
745P: Mikael Starvik
746M: starvik@axis.com
747L: dev-etrax@axis.com
748W: http://developer.axis.com
749S: Maintained
750
751CRYPTO API
752P: Herbert Xu
753M: herbert@gondor.apana.org.au
754P: David S. Miller
755M: davem@davemloft.net
756L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800757T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758S: Maintained
759
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100760CS5535 Audio ALSA driver
761P: Jaya Kumar
762M: jayakumar.alsa@gmail.com
763S: Maintained
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765CYBERPRO FB DRIVER
766P: Russell King
767M: rmk@arm.linux.org.uk
768W: http://www.arm.linux.org.uk/
769S: Maintained
770
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700771CYBLAFB FRAMEBUFFER DRIVER
772P: Knut Petersen
773M: Knut_Petersen@t-online.de
774L: linux-fbdev-devel@lists.sourceforge.net
775S: Maintained
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777CYCLADES 2X SYNC CARD DRIVER
778P: Arnaldo Carvalho de Melo
779M: acme@conectiva.com.br
780W: http://advogato.org/person/acme
781L: cycsyn-devel@bazar.conectiva.com.br
782S: Maintained
783
784CYCLADES ASYNC MUX DRIVER
785M: async@cyclades.com
786W: http://www.cyclades.com/
787S: Supported
788
789CYCLADES PC300 DRIVER
790M: pc300@cyclades.com
791W: http://www.cyclades.com/
792S: Supported
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794DAMA SLAVE for AX.25
795P: Joerg Reuter
796M: jreuter@yaina.de
797W: http://yaina.de/jreuter/
798W: http://www.qsl.net/dl1bke/
799L: linux-hams@vger.kernel.org
800S: Maintained
801
802DC395x SCSI driver
803P: Oliver Neukum
804M: oliver@neukum.name
805P: Ali Akcaagac
806M: aliakc@web.de
807P: Jamie Lenehan
808M: lenehan@twibble.org
809W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700810L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811L: http://lists.twibble.org/mailman/listinfo/dc395x/
812S: Maintained
813
814DC390/AM53C974 SCSI driver
815P: Kurt Garloff
816M: garloff@suse.de
817W: http://www.garloff.de/kurt/linux/dc390/
818P: Guennadi Liakhovetski
819M: g.liakhovetski@gmx.de
820S: Maintained
821
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700822DCCP PROTOCOL
823P: Arnaldo Carvalho de Melo
824M: acme@mandriva.com
825L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800826W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700827S: Maintained
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829DECnet NETWORK LAYER
830P: Patrick Caulfield
831M: patrick@tykepenguin.com
832W: http://linux-decnet.sourceforge.net
833L: linux-decnet-user@lists.sourceforge.net
834S: Maintained
835
836DEFXX FDDI NETWORK DRIVER
837P: Maciej W. Rozycki
838M: macro@linux-mips.org
839S: Maintained
840
841DELL LAPTOP SMM DRIVER
842P: Massimo Dal Zotto
843M: dz@debian.org
844W: http://www.debian.org/~dz/i8k/
845S: Maintained
846
Doug Warzecha90563ec2005-09-06 15:17:15 -0700847DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
848P: Doug Warzecha
849M: Douglas_Warzecha@dell.com
850S: Maintained
851
Pavel Machek5ddb88c2006-09-29 02:01:29 -0700852DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853P: Alasdair Kergon
854L: dm-devel@redhat.com
855W: http://sources.redhat.com/dm
856S: Maintained
857
858DEVICE NUMBER REGISTRY
859P: Torben Mathiasen
860M: device@lanana.org
861W: http://lanana.org/docs/device-list/index.html
862L: linux-kernel@vger.kernel.org
863S: Maintained
864
865DEVICE FILESYSTEM
866S: Obsolete
867
868DIGI INTL. EPCA DRIVER
869P: Digi International, Inc
870M: Eng.Linux@digi.com
871L: Eng.Linux@digi.com
872W: http://www.digi.com
873S: Orphaned
874
875DIGI RIGHTSWITCH NETWORK DRIVER
876P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -0700877L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878W: http://www.digi.com
879S: Orphaned
880
881DIRECTORY NOTIFICATION
882P: Stephen Rothwell
883M: sfr@canb.auug.org.au
884L: linux-kernel@vger.kernel.org
885S: Supported
886
887DISK GEOMETRY AND PARTITION HANDLING
888P: Andries Brouwer
889M: aeb@cwi.nl
890W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
891W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
892W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
893S: Maintained
894
895DISKQUOTA:
896P: Jan Kara
897M: jack@suse.cz
898L: linux-kernel@vger.kernel.org
899S: Maintained
900
901DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
902P: Tobias Ringstrom
903M: tori@unhappy.mine.nu
904L: linux-kernel@vger.kernel.org
905S: Maintained
906
Martin Waitzba483d52005-06-17 13:20:59 -0700907DOCBOOK FOR DOCUMENTATION
908P: Martin Waitz
909M: tali@admingilde.org
Randy Dunlap0f40efb2006-07-03 00:24:15 -0700910P: Randy Dunlap
911M: rdunlap@xenotime.net
Martin Waitz061350e2006-01-09 20:53:53 -0800912T: git http://tali.admingilde.org/git/linux-docbook.git
Martin Waitzba483d52005-06-17 13:20:59 -0700913S: Maintained
914
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -0400915DOCKING STATION DRIVER
916P: Kristen Carlson Accardi
917M: kristen.c.accardi@intel.com
918L: linux-acpi@vger.kernel.org
919S: Maintained
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921DOUBLETALK DRIVER
922P: James R. Van Zandt
923M: jrv@vanzandt.mv.com
924L: blinux-list@redhat.com
925S: Maintained
926
927DRIVER CORE, KOBJECTS, AND SYSFS
928P: Greg Kroah-Hartman
929M: gregkh@suse.de
930L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800931T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932S: Supported
933
934DRM DRIVERS
935P: David Airlie
936M: airlied@linux.ie
937L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -0800938T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939S: Maintained
940
941DSCC4 DRIVER
942P: François Romieu
943M: romieu@cogenit.fr
944M: romieu@ensta.fr
945S: Maintained
946
947DVB SUBSYSTEM AND DRIVERS
948P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200949M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +0200951W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200952T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200953S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955EATA-DMA SCSI DRIVER
956P: Michael Neuffer
957L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
958S: Maintained
959
960EATA ISA/EISA/PCI SCSI DRIVER
961P: Dario Ballabio
962M: ballabio_dario@emc.com
963L: linux-scsi@vger.kernel.org
964S: Maintained
965
966EATA-PIO SCSI DRIVER
967P: Michael Neuffer
968M: mike@i-Connect.Net
969L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
970S: Maintained
971
972EBTABLES
973P: Bart De Schuymer
974M: bart.de.schuymer@pandora.be
975L: ebtables-user@lists.sourceforge.net
976L: ebtables-devel@lists.sourceforge.net
977W: http://ebtables.sourceforge.net/
978S: Maintained
979
Alan Coxda9bb1d2006-01-18 17:44:13 -0800980EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -0800981P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -0700982M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -0800983L: bluesmoke-devel@lists.sourceforge.net
984W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -0700985S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -0800986
987EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -0700988P: Mark Gross
989M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -0800990L: bluesmoke-devel@lists.sourceforge.net
991W: bluesmoke.sourceforge.net
992S: Maintained
993
994EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -0700995P: Doug Thompson
996M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -0800997L: bluesmoke-devel@lists.sourceforge.net
998W: bluesmoke.sourceforge.net
999S: Maintained
1000
1001EDAC-R82600
1002P: Tim Small
1003M: tim@buttersideup.com
1004L: bluesmoke-devel@lists.sourceforge.net
1005W: bluesmoke.sourceforge.net
1006S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008EEPRO100 NETWORK DRIVER
1009P: Andrey V. Savochkin
1010M: saw@saw.sw.com.sg
1011S: Maintained
1012
Josh Triplett0bee8d22006-07-30 03:03:58 -07001013EFS FILESYSTEM
1014W: http://aeschi.ch.eu.org/efs/
1015S: Orphan
1016
Heiko J Schickfab97222006-09-22 15:22:22 -07001017EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1018P: Hoang-Nam Nguyen
1019M: hnguyen@de.ibm.com
1020P: Christoph Raisch
1021M: raisch@de.ibm.com
1022L: openib-general@openib.org
1023S: Supported
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025EMU10K1 SOUND DRIVER
1026P: James Courtier-Dutton
1027M: James@superbug.demon.co.uk
1028L: emu10k1-devel@lists.sourceforge.net
1029W: http://sourceforge.net/projects/emu10k1/
1030S: Maintained
1031
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001032EMULEX LPFC FC SCSI DRIVER
1033P: James Smart
1034M: james.smart@emulex.com
1035L: linux-scsi@vger.kernel.org
1036W: http://sourceforge.net/projects/lpfcxxxx
1037S: Supported
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039EPSON 1355 FRAMEBUFFER DRIVER
1040P: Christopher Hoover
1041M: ch@murgatroid.com, ch@hpl.hp.com
1042S: Maintained
1043
1044ETHEREXPRESS-16 NETWORK DRIVER
1045P: Philip Blundell
1046M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001047L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048S: Maintained
1049
1050ETHERNET BRIDGE
1051P: Stephen Hemminger
1052M: shemminger@osdl.org
1053L: bridge@osdl.org
1054W: http://bridge.sourceforge.net/
1055S: Maintained
1056
1057ETHERTEAM 16I DRIVER
1058P: Mika Kuoppala
1059M: miku@iki.fi
1060S: Maintained
1061
1062EXT2 FILE SYSTEM
1063L: ext2-devel@lists.sourceforge.net
1064S: Maintained
1065
1066EXT3 FILE SYSTEM
1067P: Stephen Tweedie, Andrew Morton
1068M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Theodore Tsoae0718f2006-05-20 15:00:13 -07001069L: ext2-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070S: Maintained
1071
Jean Delvaree53004e2006-01-09 23:26:14 +01001072F71805F HARDWARE MONITORING DRIVER
1073P: Jean Delvare
1074M: khali@linux-fr.org
1075L: lm-sensors@lm-sensors.org
1076S: Maintained
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078FARSYNC SYNCHRONOUS DRIVER
1079P: Kevin Curtis
1080M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081W: http://www.farsite.co.uk/
1082S: Supported
1083
1084FRAMEBUFFER LAYER
1085P: Antonino Daplas
1086M: adaplas@pol.net
1087L: linux-fbdev-devel@lists.sourceforge.net
1088W: http://linux-fbdev.sourceforge.net/
1089S: Maintained
1090
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001091FREESCALE SOC FS_ENET DRIVER
1092P: Pantelis Antoniou
1093M: pantelis.antoniou@gmail.com
1094P: Vitaly Bordug
1095M: vbordug@ru.mvista.com
1096L: linuxppc-embedded@ozlabs.org
1097L: netdev@vger.kernel.org
1098S: Maintained
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100FILE LOCKING (flock() and fcntl()/lockf())
1101P: Matthew Wilcox
1102M: matthew@wil.cx
1103L: linux-fsdevel@vger.kernel.org
1104S: Maintained
1105
1106FILESYSTEMS (VFS and infrastructure)
1107P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001108M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109S: Maintained
1110
1111FIRMWARE LOADER (request_firmware)
1112L: linux-kernel@vger.kernel.org
1113S: Orphan
1114
1115FPU EMULATOR
1116P: Bill Metzenthen
1117M: billm@suburbia.net
1118W: http://suburbia.net/~billm/floating-point/emulator/
1119S: Maintained
1120
1121FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1122P: Mike McLagan
1123M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001124L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125S: Maintained
1126
1127FREEVXFS FILESYSTEM
1128P: Christoph Hellwig
1129M: hch@infradead.org
1130W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1131S: Maintained
1132
1133FUJITSU FR-V PORT
1134P: David Howells
1135M: dhowells@redhat.com
1136S: Maintained
1137
1138FTAPE/QIC-117
1139L: linux-tape@vger.kernel.org
1140W: http://sourceforge.net/projects/ftape
1141S: Orphan
1142
Miklos Szeredi04578f12005-09-09 13:10:22 -07001143FUSE: FILESYSTEM IN USERSPACE
1144P: Miklos Szeredi
1145M: miklos@szeredi.hu
1146L: fuse-devel@lists.sourceforge.net
1147W: http://fuse.sourceforge.net/
1148S: Maintained
1149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1151P: Rik Faith
1152M: faith@cs.unc.edu
1153L: linux-scsi@vger.kernel.org
1154S: Odd fixes (e.g., new signatures)
1155
1156GDT SCSI DISK ARRAY CONTROLLER DRIVER
1157P: Achim Leubner
1158M: achim_leubner@adaptec.com
1159L: linux-scsi@vger.kernel.org
1160W: http://www.icp-vortex.com/
1161S: Supported
1162
1163GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1164P: Krzysztof Halasa
1165M: khc@pm.waw.pl
1166W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1167S: Maintained
1168
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001169GIGASET ISDN DRIVERS
1170P: Hansjoerg Lipp
1171M: hjlipp@web.de
1172P: Tilman Schmidt
1173M: tilman@imap.cc
1174L: gigaset307x-common@lists.sourceforge.net
1175W: http://gigaset307x.sourceforge.net/
1176S: Maintained
1177
Jean Delvare5b543962005-08-15 19:51:02 +02001178HARDWARE MONITORING
1179P: Jean Delvare
1180M: khali@linux-fr.org
1181L: lm-sensors@lm-sensors.org
1182W: http://www.lm-sensors.nu/
1183S: Maintained
1184
Michael Buesch844dd052006-06-26 00:24:59 -07001185HARDWARE RANDOM NUMBER GENERATOR CORE
1186P: Michael Buesch
1187M: mb@bu3sch.de
1188S: Maintained
1189
Robert Love860e1d62005-08-31 23:57:59 -04001190HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1191P: Robert Love
1192M: rlove@rlove.org
1193M: linux-kernel@vger.kernel.org
1194W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1195S: Maintained
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197HARMONY SOUND DRIVER
1198P: Kyle McMartin
1199M: kyle@parisc-linux.org
1200W: http://www.parisc-linux.org/~kyle/harmony/
1201L: parisc-linux@lists.parisc-linux.org
1202S: Maintained
1203
1204HAYES ESP SERIAL DRIVER
1205P: Andrew J. Robinson
1206M: arobinso@nyx.net
1207L: linux-kernel@vger.kernel.org
1208W: http://www.nyx.net/~arobinso
1209S: Maintained
1210
1211HFS FILESYSTEM
1212P: Roman Zippel
1213M: zippel@linux-m68k.org
1214L: linux-kernel@vger.kernel.org
1215S: Maintained
1216
1217HGA FRAMEBUFFER DRIVER
1218P: Ferenc Bakonyi
1219M: fero@drama.obuda.kando.hu
1220L: linux-nvidia@lists.surfsouth.com
1221W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1222S: Maintained
1223
1224HIGH-SPEED SCC DRIVER FOR AX.25
1225P: Klaus Kudielka
1226M: klaus.kudielka@ieee.org
1227L: linux-hams@vger.kernel.org
1228W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1229S: Maintained
1230
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001231HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1232P: HighPoint Linux Team
1233M: linux@highpoint-tech.com
1234W: http://www.highpoint-tech.com
1235S: Supported
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237HIPPI
1238P: Jes Sorensen
1239M: jes@trained-monkey.org
1240L: linux-hippi@sunsite.dk
1241S: Maintained
1242
1243HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1244P: Chirag Kantharia
1245M: chirag.kantharia@hp.com
1246L: iss_storagedev@hp.com
1247S: Maintained
1248
1249HEWLETT-PACKARD SMART2 RAID DRIVER
1250P: Chirag Kantharia
1251M: chirag.kantharia@hp.com
1252L: iss_storagedev@hp.com
1253S: Maintained
1254
1255HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1256P: Mike Miller
1257M: mike.miller@hp.com
1258L: iss_storagedev@hp.com
1259S: Supported
1260
Jouni Malinenff1d2762005-05-12 22:54:16 -04001261HOST AP DRIVER
1262P: Jouni Malinen
1263M: jkmaline@cc.hut.fi
1264L: hostap@shmoo.com
1265W: http://hostap.epitest.fi/
1266S: Maintained
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1269P: Jaroslav Kysela
1270M: perex@suse.cz
1271S: Maintained
1272
Bob Piccob9b03322005-11-07 00:59:19 -08001273HPET: High Precision Event Timers driver (hpet.c)
1274P: Clemens Ladisch
1275M: clemens@ladisch.de
1276S: Maintained
1277
1278HPET: i386
1279P: Venkatesh Pallipadi (Venki)
1280M: venkatesh.pallipadi@intel.com
1281S: Maintained
1282
1283HPET: x86_64
1284P: Andi Kleen and Vojtech Pavlik
1285M: ak@muc.de and vojtech@suse.cz
1286S: Maintained
1287
1288HPET: ACPI hpet.c
1289P: Bob Picco
1290M: bob.picco@hp.com
1291S: Maintained
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293HPFS FILESYSTEM
1294P: Mikulas Patocka
1295M: mikulas@artax.karlin.mff.cuni.cz
1296W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1297S: Maintained
1298
1299HUGETLB FILESYSTEM
1300P: William Irwin
1301M: wli@holomorphy.com
1302S: Maintained
1303
Jean Delvare5b543962005-08-15 19:51:02 +02001304I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305P: Jean Delvare
1306M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001307L: i2c@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308W: http://www.lm-sensors.nu/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001309T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310S: Maintained
1311
1312I2O
1313P: Markus Lidel
1314M: markus.lidel@shadowconnect.com
1315W: http://i2o.shadowconnect.com/
1316S: Maintained
1317
1318i386 BOOT CODE
1319P: Riley H. Williams
1320M: Riley@Williams.Name
1321L: Linux-Kernel@vger.kernel.org
1322S: Maintained
1323
1324i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1325P: Dave Jones
1326M: davej@codemonkey.org.uk
1327P: H. Peter Anvin
1328M: hpa@zytor.com
1329S: Maintained
1330
1331i810 TCO TIMER WATCHDOG
1332P: Nils Faerber
1333M: nils@kernelconcepts.de
1334W: http://www.kernelconcepts.de/
1335S: Maintained
1336
1337IA64 (Itanium) PLATFORM
1338P: Tony Luck
1339M: tony.luck@intel.com
1340L: linux-ia64@vger.kernel.org
1341W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001342T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343S: Maintained
1344
1345SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001346P: Jes Sorensen
1347M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348L: linux-altix@sgi.com
1349L: linux-ia64@vger.kernel.org
1350W: http://www.sgi.com/altix
1351S: Maintained
1352
1353IBM MCA SCSI SUBSYSTEM DRIVER
1354P: Michael Lang
1355M: langa2@kph.uni-mainz.de
1356W: http://www.uni-mainz.de/~langm000/linux.html
1357S: Maintained
1358
1359IBM Power Linux RAID adapter
1360P: Brian King
1361M: brking@us.ibm.com
1362S: Supported
1363
1364IBM ServeRAID RAID DRIVER
1365P: Jack Hammer
1366P: Dave Jeffery
1367M: ipslinux@adaptec.com
1368W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1369S: Supported
1370
1371IDE DRIVER [GENERAL]
1372P: Bartlomiej Zolnierkiewicz
1373M: B.Zolnierkiewicz@elka.pw.edu.pl
1374L: linux-kernel@vger.kernel.org
1375L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001376T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377S: Maintained
1378
1379IDE/ATAPI CDROM DRIVER
1380P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001381M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382L: linux-kernel@vger.kernel.org
1383W: http://www.kernel.dk
1384S: Maintained
1385
1386IDE/ATAPI FLOPPY DRIVERS
1387P: Paul Bristow
1388M: Paul Bristow <paul@paulbristow.net>
1389W: http://paulbristow.net/linux/idefloppy.html
1390L: linux-kernel@vger.kernel.org
1391S: Maintained
1392
1393IDE/ATAPI TAPE DRIVERS
1394P: Gadi Oxman
1395M: Gadi Oxman <gadio@netvision.net.il>
1396L: linux-kernel@vger.kernel.org
1397S: Maintained
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399IEEE 1394 SUBSYSTEM
1400P: Ben Collins
1401M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001402P: Stefan Richter
1403M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404L: linux1394-devel@lists.sourceforge.net
1405W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001406T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407S: Maintained
1408
Stefan Richter87730d02006-09-16 12:24:00 +02001409IEEE 1394 IPV4 DRIVER (eth1394)
1410P: Stefan Richter
1411M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001413S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415IEEE 1394 PCILYNX DRIVER
1416P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001417M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001418P: Stefan Richter
1419M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001421S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423IEEE 1394 RAW I/O DRIVER
1424P: Ben Collins
1425M: bcollins@debian.org
1426P: Dan Dennedy
1427M: dan@dennedy.org
1428L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001429S: Maintained
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431IMS TWINTURBO FRAMEBUFFER DRIVER
1432P: Paul Mundt
1433M: lethal@chaoticdreams.org
1434L: linux-fbdev-devel@lists.sourceforge.net
1435S: Maintained
1436
1437INFINIBAND SUBSYSTEM
1438P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001439M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440P: Sean Hefty
1441M: mshefty@ichips.intel.com
1442P: Hal Rosenstock
1443M: halr@voltaire.com
1444L: openib-general@openib.org
1445W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001446T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447S: Supported
1448
1449INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001450P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001451M: dmitry.torokhov@gmail.com
1452M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453L: linux-input@atrey.karlin.mff.cuni.cz
1454L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001455T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456S: Maintained
1457
Robert Lovec9f04f52005-07-15 12:21:07 -04001458INOTIFY
1459P: John McCutchan and Robert Love
1460M: ttb@tentacle.dhs.org and rml@novell.com
1461L: linux-kernel@vger.kernel.org
1462S: Maintained
1463
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001464INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
1465P: Sylvain Meyer
1466M: sylvain.meyer@worldonline.fr
1467L: linux-fbdev-devel@lists.sourceforge.net
1468S: Maintained
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470INTEL 810/815 FRAMEBUFFER DRIVER
1471P: Antonino Daplas
1472M: adaplas@pol.net
1473L: linux-fbdev-devel@lists.sourceforge.net
1474S: Maintained
1475
1476INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1477P: Ingo Molnar
1478M: mingo@redhat.com
1479S: Maintained
1480
1481INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1482P: Jeff Garzik
1483M: jgarzik@pobox.com
1484W: http://sourceforge.net/projects/gkernel/
1485S: Maintained
1486
1487INTEL IA32 MICROCODE UPDATE SUPPORT
1488P: Tigran Aivazian
1489M: tigran@veritas.com
1490S: Maintained
1491
Michael Buesch844dd052006-06-26 00:24:59 -07001492INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1493P: Deepak Saxena
1494M: dsaxena@plexity.net
1495S: Maintained
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497INTEL PRO/100 ETHERNET SUPPORT
1498P: John Ronciak
1499M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500P: Jesse Brandeburg
1501M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001502P: Jeff Kirsher
1503M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001504P: Auke Kok
1505M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506W: http://sourceforge.net/projects/e1000/
1507S: Supported
1508
1509INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1510P: Jeb Cramer
1511M: cramerj@intel.com
1512P: John Ronciak
1513M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001514P: Jesse Brandeburg
1515M: jesse.brandeburg@intel.com
1516P: Jeff Kirsher
1517M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001518P: Auke Kok
1519M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520W: http://sourceforge.net/projects/e1000/
1521S: Supported
1522
1523INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001524P: Jeff Kirsher
1525M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526P: Ayyappan Veeraiyan
1527M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528P: John Ronciak
1529M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001530P: Jesse Brandeburg
1531M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001532P: Auke Kok
1533M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534W: http://sourceforge.net/projects/e1000/
1535S: Supported
1536
James Ketrenos826d2ab2005-11-07 18:56:59 -06001537INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1538P: Yi Zhu
1539M: yi.zhu@intel.com
1540P: James Ketrenos
1541M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001542L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001543L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1544W: http://ipw2100.sourceforge.net
1545S: Supported
1546
1547INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1548P: Yi Zhu
1549M: yi.zhu@intel.com
1550P: James Ketrenos
1551M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001552L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001553L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1554W: http://ipw2200.sourceforge.net
1555S: Supported
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557IOC3 DRIVER
1558P: Ralf Baechle
1559M: ralf@linux-mips.org
1560L: linux-mips@linux-mips.org
1561S: Maintained
1562
1563IP MASQUERADING:
1564P: Juanjo Ciarlante
1565M: jjciarla@raiz.uncu.edu.ar
1566S: Maintained
1567
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001568IPATH DRIVER:
1569P: Bryan O'Sullivan
1570M: support@pathscale.com
1571L: openib-general@openib.org
1572S: Supported
1573
Corey Minyard4409ebe2006-04-20 02:43:12 -07001574IPMI SUBSYSTEM
1575P: Corey Minyard
1576M: minyard@acm.org
1577L: openipmi-developer@lists.sourceforge.net
1578W: http://openipmi.sourceforge.net/
1579S: Supported
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581IPX NETWORK LAYER
1582P: Arnaldo Carvalho de Melo
1583M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001584L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585S: Maintained
1586
1587IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001588P: Samuel Ortiz
1589M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001590L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001592S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594ISAPNP
1595P: Jaroslav Kysela
1596M: perex@suse.cz
1597S: Maintained
1598
1599ISDN SUBSYSTEM
1600P: Karsten Keil
1601M: kkeil@suse.de
1602P: Kai Germaschewski
1603M: kai.germaschewski@gmx.de
1604L: isdn4linux@listserv.isdn4linux.de
1605W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001606T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607S: Maintained
1608
1609ISDN SUBSYSTEM (Eicon active card driver)
1610P: Armin Schindler
1611M: mac@melware.de
1612L: isdn4linux@listserv.isdn4linux.de
1613W: http://www.melware.de
1614S: Maintained
1615
1616JOURNALLING FLASH FILE SYSTEM (JFFS)
1617P: Axis Communications AB
1618M: jffs-dev@axis.com
1619L: jffs-dev@axis.com
1620W: http://www.developer.axis.com/software/jffs/
1621S: Maintained
1622
1623JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1624P: David Woodhouse
1625M: dwmw2@infradead.org
1626L: jffs-dev@axis.com
1627W: http://sources.redhat.com/jffs2/
1628S: Maintained
1629
1630JFS FILESYSTEM
1631P: Dave Kleikamp
1632M: shaggy@austin.ibm.com
1633L: jfs-discussion@lists.sourceforge.net
1634W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001635T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636S: Supported
1637
Josh Triplettde456d32006-07-30 03:04:00 -07001638JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001639P: Stephen Tweedie, Andrew Morton
1640M: sct@redhat.com, akpm@osdl.org
1641L: ext2-devel@lists.sourceforge.net
1642S: Maintained
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644KCONFIG
1645P: Roman Zippel
1646M: zippel@linux-m68k.org
1647L: kbuild-devel@lists.sourceforge.net
1648S: Maintained
1649
Vivek Goyalea6c2082006-05-20 14:59:55 -07001650KDUMP
1651P: Vivek Goyal
1652M: vgoyal@in.ibm.com
1653P: Haren Myneni
1654M: hbabu@us.ibm.com
1655L: fastboot@lists.osdl.org
1656L: linux-kernel@vger.kernel.org
1657W: http://lse.sourceforge.net/kdump/
1658S: Maintained
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660KERNEL AUTOMOUNTER (AUTOFS)
1661P: H. Peter Anvin
1662M: hpa@zytor.com
1663L: autofs@linux.kernel.org
1664S: Odd Fixes
1665
1666KERNEL AUTOMOUNTER v4 (AUTOFS4)
1667P: Ian Kent
1668M: raven@themaw.net
1669L: autofs@linux.kernel.org
1670S: Maintained
1671
1672KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1673P: Kai Germaschewski
1674M: kai@germaschewski.name
1675P: Sam Ravnborg
1676M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001677T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678S: Maintained
1679
1680KERNEL JANITORS
1681P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001682L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684S: Maintained
1685
1686KERNEL NFSD
1687P: Neil Brown
1688M: neilb@cse.unsw.edu.au
1689L: nfs@lists.sourceforge.net
1690W: http://nfs.sourceforge.net/
1691W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1692S: Maintained
1693
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001694KEXEC
1695P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001696M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001697W: http://www.xmission.com/~ebiederm/files/kexec/
1698L: linux-kernel@vger.kernel.org
1699L: fastboot@osdl.org
1700S: Maintained
1701
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001702KPROBES
1703P: Prasanna S Panchamukhi
1704M: prasanna@in.ibm.com
1705P: Ananth N Mavinakayanahalli
1706M: ananth@in.ibm.com
1707P: Anil S Keshavamurthy
1708M: anil.s.keshavamurthy@intel.com
1709P: David S. Miller
1710M: davem@davemloft.net
1711L: linux-kernel@vger.kernel.org
1712S: Maintained
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001716S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718LASI 53c700 driver for PARISC
1719P: James E.J. Bottomley
1720M: James.Bottomley@HansenPartnership.com
1721L: linux-scsi@vger.kernel.org
1722S: Maintained
1723
Richard Purdie263de9b2006-05-15 09:44:16 -07001724LED SUBSYSTEM
1725P: Richard Purdie
1726M: rpurdie@rpsys.net
1727S: Maintained
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729LEGO USB Tower driver
1730P: Juergen Stuber
1731M: starblue@users.sourceforge.net
1732L: legousb-devel@lists.sourceforge.net
1733W: http://legousb.sourceforge.net/
1734S: Maintained
1735
1736LINUX FOR IBM pSERIES (RS/6000)
1737P: Paul Mackerras
1738M: paulus@au.ibm.com
1739W: http://www.ibm.com/linux/ltc/projects/ppc
1740S: Supported
1741
1742LINUX FOR NCR VOYAGER
1743P: James Bottomley
1744M: James.Bottomley@HansenPartnership.com
1745W: http://www.hansenpartnership.com/voyager
1746S: Maintained
1747
1748LINUX FOR POWERPC
1749P: Paul Mackerras
1750M: paulus@samba.org
1751W: http://www.penguinppc.org/
1752L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001753T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754S: Supported
1755
1756LINUX FOR POWER MACINTOSH
1757P: Benjamin Herrenschmidt
1758M: benh@kernel.crashing.org
1759W: http://www.penguinppc.org/
1760L: linuxppc-dev@ozlabs.org
1761S: Maintained
1762
1763LINUX FOR POWERPC EMBEDDED MPC52XX
1764P: Sylvain Munaut
1765M: tnt@246tNt.com
1766W: http://www.246tNt.com/mpc52xx/
1767W: http://www.penguinppc.org/
1768L: linuxppc-dev@ozlabs.org
1769L: linuxppc-embedded@ozlabs.org
1770S: Maintained
1771
1772LINUX FOR POWERPC EMBEDDED PPC4XX
1773P: Matt Porter
1774M: mporter@kernel.crashing.org
1775W: http://www.penguinppc.org/
1776L: linuxppc-embedded@ozlabs.org
1777S: Maintained
1778
Tom Rinie93adf12005-07-26 12:49:53 -07001779LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780P: Tom Rini
1781M: trini@kernel.crashing.org
1782W: http://www.penguinppc.org/
1783L: linuxppc-embedded@ozlabs.org
1784S: Maintained
1785
Tom Rinie93adf12005-07-26 12:49:53 -07001786LINUX FOR POWERPC EMBEDDED PPC8XX
1787P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001788M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001789W: http://www.penguinppc.org/
1790L: linuxppc-embedded@ozlabs.org
1791S: Maintained
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
1794P: Kumar Gala
Kumar Gala4c8d3d92005-11-13 16:06:30 -08001795M: galak@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796W: http://www.penguinppc.org/
1797L: linuxppc-embedded@ozlabs.org
1798S: Maintained
1799
Olof Johanssonab06ff32006-09-06 14:44:54 -05001800LINUX FOR POWERPC PA SEMI PWRFICIENT
1801P: Olof Johansson
1802M: olof@lixom.net
1803W: http://www.pasemi.com/
1804L: linuxppc-dev@ozlabs.org
1805S: Supported
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807LLC (802.2)
1808P: Arnaldo Carvalho de Melo
1809M: acme@conectiva.com.br
1810S: Maintained
1811
1812LINUX FOR 64BIT POWERPC
1813P: Paul Mackerras
1814M: paulus@samba.org
1815M: paulus@au.ibm.com
1816P: Anton Blanchard
1817M: anton@samba.org
1818M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001819W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001820L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821S: Supported
1822
1823LINUX SECURITY MODULE (LSM) FRAMEWORK
1824P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001825M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001826L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001828T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829S: Supported
1830
1831LM83 HARDWARE MONITOR DRIVER
1832P: Jean Delvare
1833M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001834L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835S: Maintained
1836
1837LM90 HARDWARE MONITOR DRIVER
1838P: Jean Delvare
1839M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001840L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841S: Maintained
1842
1843LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1844P: Richard Russon (FlatCap)
1845M: ldm@flatcap.org
1846L: ldm-devel@lists.sourceforge.net
1847W: http://ldm.sourceforge.net
1848S: Maintained
1849
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001850LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1851P: Eric Moore
1852M: Eric.Moore@lsil.com
1853M: support@lsil.com
1854L: mpt_linux_developer@lsil.com
1855L: linux-scsi@vger.kernel.org
1856W: http://www.lsilogic.com/support
1857S: Supported
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1860P: Matthew Wilcox
1861M: matthew@wil.cx
1862L: linux-scsi@vger.kernel.org
1863S: Maintained
1864
1865M68K ARCHITECTURE
1866P: Geert Uytterhoeven
1867M: geert@linux-m68k.org
1868P: Roman Zippel
1869M: zippel@linux-m68k.org
1870L: linux-m68k@lists.linux-m68k.org
1871W: http://www.linux-m68k.org/
1872W: http://linux-m68k-cvs.ubb.ca/
1873S: Maintained
1874
1875M68K ON APPLE MACINTOSH
1876P: Joshua Thompson
1877M: funaho@jurai.org
1878W: http://www.mac.linux-m68k.org/
1879L: linux-mac68k@mac.linux-m68k.org
1880S: Maintained
1881
1882M68K ON HP9000/300
1883P: Philip Blundell
1884M: philb@gnu.org
1885W: http://www.tazenda.demon.co.uk/phil/linux-hp
1886S: Maintained
1887
1888MARVELL YUKON / SYSKONNECT DRIVER
1889P: Mirko Lindner
1890M: mlindner@syskonnect.de
1891P: Ralph Roesler
1892M: rroesler@syskonnect.de
1893W: http://www.syskonnect.com
1894S: Supported
1895
1896MAESTRO PCI SOUND DRIVERS
1897P: Zach Brown
1898M: zab@zabbo.net
1899S: Odd Fixes
1900
Michael Kerriskfaf16682005-07-31 22:34:47 -07001901MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
1902P: Michael Kerrisk
1903M: mtk-manpages@gmx.net
1904W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1905S: Maintained
1906
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001907MARVELL MV643XX ETHERNET DRIVER
1908P: Dale Farnsworth
1909M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001911M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001912L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001913S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915MATROX FRAMEBUFFER DRIVER
1916P: Petr Vandrovec
1917M: vandrove@vc.cvut.cz
1918L: linux-fbdev-devel@lists.sourceforge.net
1919S: Maintained
1920
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001921MEGARAID SCSI DRIVERS
1922P: Neela Syam Kolli
1923M: Neela.Kolli@engenio.com
1924S: linux-scsi@vger.kernel.org
1925W: http://megaraid.lsilogic.com
1926S: Maintained
1927
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001928MEMORY MANAGEMENT
1929L: linux-mm@kvack.org
1930L: linux-kernel@vger.kernel.org
1931W: http://www.linux-mm.org
1932S: Maintained
1933
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001934MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935P: David Woodhouse
1936M: dwmw2@infradead.org
1937W: http://www.linux-mtd.infradead.org/
1938L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001939T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940S: Maintained
1941
1942MICROTEK X6 SCANNER
1943P: Oliver Neukum
1944M: oliver@neukum.name
1945S: Maintained
1946
1947MIPS
1948P: Ralf Baechle
1949M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01001950W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00001952T: git www.linux-mips.org:/pub/scm/linux.git
1953S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955MISCELLANEOUS MCA-SUPPORT
1956P: James Bottomley
1957M: jejb@steeleye.com
1958L: linux-kernel@vger.kernel.org
1959S: Maintained
1960
1961MODULE SUPPORT
1962P: Rusty Russell
1963M: rusty@rustcorp.com.au
1964L: linux-kernel@vger.kernel.org
1965S: Maintained
1966
1967MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
1968P: Stelian Pop
1969M: stelian@popies.net
1970W: http://popies.net/meye/
1971S: Maintained
1972
1973MOUSE AND MISC DEVICES [GENERAL]
1974P: Alessandro Rubini
1975M: rubini@ipvvis.unipv.it
1976L: linux-kernel@vger.kernel.org
1977S: Maintained
1978
1979MTRR AND SIMILAR SUPPORT [i386]
1980P: Richard Gooch
1981M: rgooch@atnf.csiro.au
1982L: linux-kernel@vger.kernel.org
1983W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
1984S: Maintained
1985
Russell King12223da2006-06-15 13:28:52 +01001986MULTIMEDIA CARD (MMC) SUBSYSTEM
Russell King353cefd2006-10-03 17:36:11 +01001987S: Orphan
Russell Kingbaca2da2006-06-04 17:36:31 +01001988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989MULTISOUND SOUND DRIVER
1990P: Andrew Veliath
1991M: andrewtv@usa.net
1992S: Maintained
1993
1994NATSEMI ETHERNET DRIVER (DP8381x)
1995P: Tim Hockin
1996M: thockin@hockin.org
1997S: Maintained
1998
1999NCP FILESYSTEM
2000P: Petr Vandrovec
2001M: vandrove@vc.cvut.cz
2002L: linware@sh.cvut.cz
2003S: Maintained
2004
2005NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2006P: James E.J. Bottomley
2007M: James.Bottomley@HansenPartnership.com
2008L: linux-scsi@vger.kernel.org
2009S: Maintained
2010
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002011NETEM NETWORK EMULATOR
2012P: Stephen Hemminger
2013M: shemminger@osdl.org
2014L: netem@osdl.org
2015S: Maintained
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017NETFILTER/IPTABLES/IPCHAINS
2018P: Rusty Russell
2019P: Marc Boucher
2020P: James Morris
2021P: Harald Welte
2022P: Jozsef Kadlecsik
2023M: coreteam@netfilter.org
2024W: http://www.netfilter.org/
2025W: http://www.iptables.org/
2026L: netfilter@lists.netfilter.org
2027L: netfilter-devel@lists.netfilter.org
2028S: Supported
2029
Paul Moore4cc67732006-09-25 15:57:13 -07002030NETLABEL
2031P: Paul Moore
2032M: paul.moore@hp.com
2033W: http://netlabel.sf.net
2034L: netdev@vger.kernel.org
2035S: Supported
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037NETROM NETWORK LAYER
2038P: Ralf Baechle
2039M: ralf@linux-mips.org
2040L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002041W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042S: Maintained
2043
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002044NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045P: Paul Clements
2046M: Paul.Clements@steeleye.com
2047S: Maintained
2048
2049NETWORK DEVICE DRIVERS
2050P: Andrew Morton
2051M: akpm@osdl.org
2052P: Jeff Garzik
2053M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002054L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002055T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056S: Maintained
2057
2058NETWORKING [GENERAL]
2059P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002060M: netdev@vger.kernel.org
2061L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002062W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063S: Maintained
2064
2065NETWORKING [IPv4/IPv6]
2066P: David S. Miller
2067M: davem@davemloft.net
2068P: Alexey Kuznetsov
2069M: kuznet@ms2.inr.ac.ru
2070P: Pekka Savola (ipv6)
2071M: pekkas@netcore.fi
2072P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002073M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074P: Hideaki YOSHIFUJI
2075M: yoshfuji@linux-ipv6.org
2076P: Patrick McHardy
2077M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002078L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002079T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080S: Maintained
2081
John W. Linville29f8f632006-01-18 14:52:48 -08002082NETWORKING [WIRELESS]
2083P: John W. Linville
2084M: linville@tuxdriver.com
2085L: netdev@vger.kernel.org
2086T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2087S: Maintained
2088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089IPVS
2090P: Wensong Zhang
2091M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002092P: Simon Horman
2093M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094P: Julian Anastasov
2095M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002096L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097S: Maintained
2098
2099NFS CLIENT
2100P: Trond Myklebust
2101M: trond.myklebust@fys.uio.no
2102L: linux-kernel@vger.kernel.org
2103S: Maintained
2104
2105NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002106P: Jan-Pascal van Best
2107M: janpascal@vanbest.org
2108P: Andreas Mohr
2109M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002110L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111S: Maintained
2112
2113NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2114P: YOKOTA Hiroshi
2115M: yokota@netlab.is.tsukuba.ac.jp
2116W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2117S: Maintained
2118
2119NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2120P: GOTO Masanori
2121M: gotom@debian.or.jp
2122P: YOKOTA Hiroshi
2123M: yokota@netlab.is.tsukuba.ac.jp
2124W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2125S: Maintained
2126
2127NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2128P: Eberhard Moenkeberg
2129M: emoenke@gwdg.de
2130L: linux-kernel@vger.kernel.org
2131S: Maintained
2132
2133NTFS FILESYSTEM
2134P: Anton Altaparmakov
2135M: aia21@cantab.net
2136L: linux-ntfs-dev@lists.sourceforge.net
2137L: linux-kernel@vger.kernel.org
2138W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002139T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140S: Maintained
2141
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002142NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
2143P: Antonino Daplas
2144M: adaplas@pol.net
2145L: linux-fbdev-devel@lists.sourceforge.net
2146S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002148OPENCORES I2C BUS DRIVER
2149P: Peter Korsgaard
2150M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002151L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002152S: Maintained
2153
Mark Fashehccd979b2005-12-15 14:31:24 -08002154ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2155P: Mark Fasheh
2156M: mark.fasheh@oracle.com
2157P: Kurt Hackel
2158M: kurt.hackel@oracle.com
2159L: ocfs2-devel@oss.oracle.com
2160W: http://oss.oracle.com/projects/ocfs2/
2161S: Supported
2162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163OLYMPIC NETWORK DRIVER
2164P: Peter De Shrijver
2165M: p2@ace.ulyssis.student.kuleuven.ac.be
2166P: Mike Phillips
2167M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002168L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169L: linux-tr@linuxtr.net
2170W: http://www.linuxtr.net
2171S: Maintained
2172
Harald Weltec1986ee2005-11-13 16:06:29 -08002173OMNIKEY CARDMAN 4000 DRIVER
2174P: Harald Welte
2175M: laforge@gnumonks.org
2176S: Maintained
2177
Harald Welte77c44ab2005-11-13 16:06:26 -08002178OMNIKEY CARDMAN 4040 DRIVER
2179P: Harald Welte
2180M: laforge@gnumonks.org
2181S: Maintained
2182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183ONSTREAM SCSI TAPE DRIVER
2184P: Willem Riede
2185M: osst@riede.org
2186L: osst-users@lists.sourceforge.net
2187L: linux-scsi@vger.kernel.org
2188S: Maintained
2189
2190OPL3-SA2, SA3, and SAx DRIVER
2191P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002192M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193L: linux-sound@vger.kernel.org
2194S: Maintained
2195
2196OPROFILE
2197P: Philippe Elie
2198M: phil.el@wanadoo.fr
2199L: oprofile-list@lists.sf.net
2200S: Maintained
2201
2202ORINOCO DRIVER
2203P: Pavel Roskin
2204M: proski@gnu.org
2205P: David Gibson
2206M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002207L: orinoco-users@lists.sourceforge.net
2208L: orinoco-devel@lists.sourceforge.net
2209W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210S: Maintained
2211
2212PARALLEL PORT SUPPORT
2213P: Phil Blundell
2214M: philb@gnu.org
2215P: Tim Waugh
2216M: tim@cyberelk.net
2217P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218P: Andrea Arcangeli
2219M: andrea@suse.de
2220L: linux-parport@lists.infradead.org
2221W: http://people.redhat.com/twaugh/parport/
2222S: Maintained
2223
2224PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2225P: Tim Waugh
2226M: tim@cyberelk.net
2227L: linux-parport@lists.infradead.org
2228W: http://www.torque.net/linux-pp.html
2229S: Maintained
2230
2231PARISC ARCHITECTURE
2232P: Matthew Wilcox
2233M: matthew@wil.cx
2234P: Grant Grundler
2235M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002236P: Kyle McMartin
2237M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238L: parisc-linux@parisc-linux.org
2239W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002240T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2241T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242S: Maintained
2243
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002244PCI ERROR RECOVERY
2245P: Linas Vepstas
2246M: linas@austin.ibm.com
2247L: linux-kernel@vger.kernel.org
2248L: linux-pci@atrey.karlin.mff.cuni.cz
2249S: Supported
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2252P: Thomas Sailer
2253M: sailer@ife.ee.ethz.ch
2254L: linux-sound@vger.kernel.org
2255W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2256S: Maintained
2257
2258PCI SUBSYSTEM
2259P: Greg Kroah-Hartman
2260M: gregkh@suse.de
2261L: linux-kernel@vger.kernel.org
2262L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002263T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264S: Supported
2265
2266PCI HOTPLUG CORE
2267P: Greg Kroah-Hartman
2268M: gregkh@suse.de
2269S: Supported
2270
2271PCI HOTPLUG COMPAQ DRIVER
2272P: Greg Kroah-Hartman
2273M: greg@kroah.com
2274S: Maintained
2275
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002276PCIE HOTPLUG DRIVER
2277P: Kristen Carlson Accardi
2278M: kristen.c.accardi@intel.com
2279L: pcihpd-discuss@lists.sourceforge.net
2280S: Maintained
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002283P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002284L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002286T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002287S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289PCNET32 NETWORK DRIVER
2290P: Thomas Bogendörfer
2291M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002292L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293S: Maintained
2294
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002295PER-TASK DELAY ACCOUNTING
2296P: Shailabh Nagar
2297M: nagar@watson.ibm.com
2298L: linux-kernel@vger.kernel.org
2299S: Maintained
2300
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002301PERSONALITY HANDLING
2302P: Christoph Hellwig
2303M: hch@infradead.org
2304L: linux-abi-devel@lists.sourceforge.net
2305S: Maintained
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307PHRAM MTD DRIVER
2308P: Jörn Engel
2309M: joern@wh.fh-wedel.de
2310L: linux-mtd@lists.infradead.org
2311S: Maintained
2312
Peter Osterlund249a6772005-09-27 21:45:30 -07002313PKTCDVD DRIVER
2314P: Peter Osterlund
2315M: petero2@telia.com
2316L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002317S: Maintained
2318
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319POSIX CLOCKS and TIMERS
2320P: George Anzinger
2321M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002322L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323S: Supported
2324
Eugene Surovegin24682972005-10-14 03:00:53 -07002325POWERPC 4xx EMAC DRIVER
2326P: Eugene Surovegin
2327M: ebs@ebshome.net
2328W: http://kernel.ebshome.net/emac/
2329L: linuxppc-embedded@ozlabs.org
2330L: netdev@vger.kernel.org
2331S: Maintained
2332
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333PNP SUPPORT
2334P: Adam Belay
2335M: ambx1@neo.rr.com
2336S: Maintained
2337
2338PPP PROTOCOL DRIVERS AND COMPRESSORS
2339P: Paul Mackerras
2340M: paulus@samba.org
2341L: linux-ppp@vger.kernel.org
2342S: Maintained
2343
2344PPP OVER ATM (RFC 2364)
2345P: Mitchell Blank Jr
2346M: mitch@sfgoth.com
2347S: Maintained
2348
2349PPP OVER ETHERNET
2350P: Michal Ostrowski
2351M: mostrows@speakeasy.net
2352S: Maintained
2353
2354PREEMPTIBLE KERNEL
2355P: Robert Love
2356M: rml@tech9.net
2357L: linux-kernel@vger.kernel.org
2358L: kpreempt-tech@lists.sourceforge.net
2359W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2360S: Supported
2361
2362PRISM54 WIRELESS DRIVER
2363P: Prism54 Development Team
2364M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002365L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366W: http://prism54.org
2367S: Maintained
2368
2369PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2370P: Peter Denison
2371M: promise@pnd-pc.demon.co.uk
2372W: http://www.pnd-pc.demon.co.uk/promise/
2373S: Maintained
2374
Michael Krufky83202042006-07-03 00:24:18 -07002375PVRUSB2 VIDEO4LINUX DRIVER
2376P: Mike Isely
2377M: isely@pobox.com
2378L: pvrusb2@isely.net
2379L: video4linux-list@redhat.com
2380W: http://www.isely.net/pvrusb2/
2381S: Maintained
2382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383PXA2xx SUPPORT
2384P: Nicolas Pitre
2385M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002386L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387S: Maintained
2388
2389QLOGIC QLA2XXX FC-SCSI DRIVER
2390P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002391M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392L: linux-scsi@vger.kernel.org
2393S: Supported
2394
Ron Mercer5a4faa872006-07-25 00:40:21 -07002395QLOGIC QLA3XXX NETWORK DRIVER
2396P: Ron Mercer
2397M: linux-driver@qlogic.com
2398L: netdev@vger.kernel.org
2399S: Supported
2400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401QNX4 FILESYSTEM
2402P: Anders Larsen
2403M: al@alarsen.net
2404L: linux-kernel@vger.kernel.org
2405W: http://www.alarsen.net/linux/qnx4fs/
2406S: Maintained
2407
2408RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002409P: Benjamin Herrenschmidt
2410M: benh@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411L: linux-fbdev-devel@lists.sourceforge.net
2412S: Maintained
2413
2414RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002415P: Paul Mackerras
2416M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417L: linux-fbdev-devel@lists.sourceforge.net
2418S: Maintained
2419
2420RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2421P: Corey Thomas
2422M: corey@world.std.com
2423L: linux-kernel@vger.kernel.org
2424S: Maintained
2425
Matt Mackall9e95ce22005-04-16 15:25:56 -07002426RANDOM NUMBER DRIVER
2427P: Matt Mackall
2428M: mpm@selenic.com
2429S: Maintained
2430
Matt Porter394b7012005-11-07 01:00:15 -08002431RAPIDIO SUBSYSTEM
2432P: Matt Porter
2433M: mporter@kernel.crashing.org
2434L: linux-kernel@vger.kernel.org
2435S: Maintained
2436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437REAL TIME CLOCK DRIVER
2438P: Paul Gortmaker
2439M: p_gortmaker@yahoo.com
2440L: linux-kernel@vger.kernel.org
2441S: Maintained
2442
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002443REAL TIME CLOCK (RTC) SUBSYSTEM
2444P: Alessandro Zummo
2445M: a.zummo@towertech.it
2446L: linux-kernel@vger.kernel.org
2447S: Maintained
2448
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449REISERFS FILE SYSTEM
2450P: Hans Reiser
2451M: reiserfs-dev@namesys.com
2452L: reiserfs-list@namesys.com
2453W: http://www.namesys.com
2454S: Supported
2455
2456ROCKETPORT DRIVER
2457P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458W: http://www.comtrol.com
2459S: Maintained
2460
2461ROSE NETWORK LAYER
2462P: Ralf Baechle
2463M: ralf@linux-mips.org
2464L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002465W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466S: Maintained
2467
2468RISCOM8 DRIVER
2469S: Orphan
2470
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002471S3 SAVAGE FRAMEBUFFER DRIVER
2472P: Antonino Daplas
2473M: adaplas@pol.net
2474L: linux-fbdev-devel@lists.sourceforge.net
2475S: Maintained
2476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477S390
2478P: Martin Schwidefsky
2479M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002480P: Heiko Carstens
2481M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482M: linux390@de.ibm.com
2483L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002484W: http://www.ibm.com/developerworks/linux/linux390/
2485S: Supported
2486
2487S390 NETWORK DRIVERS
2488P: Frank Pavlic
2489M: fpavlic@de.ibm.com
2490M: linux390@de.ibm.com
2491L: linux-390@vm.marist.edu
2492W: http://www.ibm.com/developerworks/linux/linux390/
2493S: Supported
2494
2495S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002496P: Swen Schillig
2497M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002498M: linux390@de.ibm.com
2499L: linux-390@vm.marist.edu
2500W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501S: Supported
2502
2503SAA7146 VIDEO4LINUX-2 DRIVER
2504P: Michael Hunold
2505M: michael@mihu.de
2506W: http://www.mihu.de/linux/saa7146
2507S: Maintained
2508
2509SBPCD CDROM DRIVER
2510P: Eberhard Moenkeberg
2511M: emoenke@gwdg.de
2512L: linux-kernel@vger.kernel.org
2513S: Maintained
2514
2515SC1200 WDT DRIVER
2516P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002517M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518S: Maintained
2519
2520SCHEDULER
2521P: Ingo Molnar
2522M: mingo@elte.hu
2523P: Robert Love [the preemptible kernel bits]
2524M: rml@tech9.net
2525L: linux-kernel@vger.kernel.org
2526S: Maintained
2527
2528SCSI CDROM DRIVER
2529P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002530M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531L: linux-scsi@vger.kernel.org
2532W: http://www.kernel.dk
2533S: Maintained
2534
2535SCSI SG DRIVER
2536P: Doug Gilbert
2537M: dgilbert@interlog.com
2538L: linux-scsi@vger.kernel.org
2539W: http://www.torque.net/sg
2540S: Maintained
2541
2542SCSI SUBSYSTEM
2543P: James E.J. Bottomley
2544M: James.Bottomley@SteelEye.com
2545L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002546T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547S: Maintained
2548
2549SCSI TAPE DRIVER
2550P: Kai Mäkisara
2551M: Kai.Makisara@kolumbus.fi
2552L: linux-scsi@vger.kernel.org
2553S: Maintained
2554
2555SCTP PROTOCOL
2556P: Sridhar Samudrala
2557M: sri@us.ibm.com
2558L: lksctp-developers@lists.sourceforge.net
2559S: Supported
2560
2561SCx200 CPU SUPPORT
2562P: Christer Weinigel
2563M: christer@weinigel.se
2564W: http://www.weinigel.se
2565S: Supported
2566
2567SECURITY CONTACT
2568P: Security Officers
2569M: security@kernel.org
2570S: Supported
2571
2572SELINUX SECURITY MODULE
2573P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002574M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002576M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577L: linux-kernel@vger.kernel.org (kernel issues)
2578L: selinux@tycho.nsa.gov (general discussion)
2579W: http://www.nsa.gov/selinux
2580S: Supported
2581
2582SERIAL ATA (SATA) SUBSYSTEM:
2583P: Jeff Garzik
2584M: jgarzik@pobox.com
2585L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002586T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587S: Supported
2588
2589SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2590P: Pat Gefre
2591M: pfg@sgi.com
2592L: linux-ia64@vger.kernel.org
2593S: Supported
2594
2595SGI VISUAL WORKSTATION 320 AND 540
2596P: Andrey Panin
2597M: pazke@donpac.ru
2598L: linux-visws-devel@lists.sf.net
2599W: http://linux-visws.sf.net
2600S: Maintained for 2.6.
2601
2602SIMTEC EB110ATX (Chalice CATS)
2603P: Ben Dooks
2604P: Vincent Sanders
2605M: support@simtec.co.uk
2606W: http://www.simtec.co.uk/products/EB110ATX/
2607S: Supported
2608
2609SIMTEC EB2410ITX (BAST)
2610P: Ben Dooks
2611P: Vincent Sanders
2612M: support@simtec.co.uk
2613W: http://www.simtec.co.uk/products/EB2410ITX/
2614S: Supported
2615
Francois Romieu92aab3c2005-07-30 13:11:18 +02002616SIS 190 ETHERNET DRIVER
2617P: Francois Romieu
2618M: romieu@fr.zoreil.com
2619L: netdev@vger.kernel.org
2620S: Maintained
2621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622SIS 5513 IDE CONTROLLER DRIVER
2623P: Lionel Bouton
2624M: Lionel.Bouton@inet6.fr
2625W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2626W: http://gyver.homeip.net/sis5513/index.html
2627S: Maintained
2628
2629SIS 900/7016 FAST ETHERNET DRIVER
2630P: Daniele Venzano
2631M: venza@brownhat.org
2632W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002633L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634S: Maintained
2635
2636SIS FRAMEBUFFER DRIVER
2637P: Thomas Winischhofer
2638M: thomas@winischhofer.net
2639W: http://www.winischhofer.net/linuxsisvga.shtml
2640S: Maintained
2641
2642SIS USB2VGA DRIVER
2643P: Thomas Winischhofer
2644M: thomas@winischhofer.net
2645W: http://www.winischhofer.at/linuxsisusbvga.shtml
2646S: Maintained
2647
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648SMC91x ETHERNET DRIVER
2649P: Nicolas Pitre
2650M: nico@cam.org
2651S: Maintained
2652
Daniel Drake8f0f8502006-07-18 22:00:25 +01002653SOFTMAC LAYER (IEEE 802.11)
2654P: Johannes Berg
2655M: johannes@sipsolutions.net
2656P: Joe Jezak
2657M: josejx@gentoo.org
2658P: Daniel Drake
2659M: dsd@gentoo.org
2660W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002661L: netdev@vger.kernel.org
2662S: Maintained
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664SOFTWARE RAID (Multiple Disks) SUPPORT
2665P: Ingo Molnar
2666M: mingo@redhat.com
2667P: Neil Brown
2668M: neilb@cse.unsw.edu.au
2669L: linux-raid@vger.kernel.org
2670S: Maintained
2671
2672SOFTWARE SUSPEND:
2673P: Pavel Machek
2674M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002675L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676S: Maintained
2677
2678SONIC NETWORK DRIVER
2679P: Thomas Bogendoerfer
2680M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002681L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682S: Maintained
2683
2684SONY VAIO CONTROL DEVICE DRIVER
2685P: Stelian Pop
2686M: stelian@popies.net
2687W: http://popies.net/sonypi/
2688S: Maintained
2689
2690SOUND
2691P: Jaroslav Kysela
2692M: perex@suse.cz
2693L: alsa-devel@alsa-project.org
2694S: Maintained
2695
Kumar Gala025c3982006-04-02 16:05:54 -05002696SPI SUBSYSTEM
2697P: David Brownell
2698M: dbrownell@users.sourceforge.net
2699L: spi-devel-general@lists.sourceforge.net
2700S: Maintained
2701
Steven Rostedt855f46a2006-08-05 12:14:50 -07002702STABLE BRANCH:
2703P: Greg Kroah-Hartman
2704M: greg@kroah.com
2705P: Chris Wright
2706M: chrisw@sous-sol.org
2707L: stable@kernel.org
2708S: Maintained
2709
Kylene Hall1c72d462005-05-01 08:59:13 -07002710TPM DEVICE DRIVER
2711P: Kylene Hall
2712M: kjhall@us.ibm.com
2713W: http://tpmdd.sourceforge.net
2714L: tpmdd-devel@lists.sourceforge.net
2715S: Maintained
2716
Mark Gross1a80ba82005-10-30 15:02:55 -08002717Telecom Clock Driver for MCPL0010
2718P: Mark Gross
2719M: mark.gross@intel.com
2720S: Supported
2721
Chris Zankel48b415c2005-06-23 22:01:07 -07002722TENSILICA XTENSA PORT (xtensa):
2723P: Chris Zankel
2724M: chris@zankel.net
2725S: Maintained
2726
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727UltraSPARC (sparc64):
2728P: David S. Miller
2729M: davem@davemloft.net
2730P: Eddie C. Dost
Eddie C. Dost90cdba62005-07-06 15:37:58 -07002731M: ecd@brainaid.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732P: Jakub Jelinek
2733M: jj@sunsite.ms.mff.cuni.cz
2734P: Anton Blanchard
2735M: anton@samba.org
2736L: sparclinux@vger.kernel.org
2737L: ultralinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002738T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739S: Maintained
2740
2741SHARP LH SUPPORT (LH7952X & LH7A40X)
2742P: Marc Singer
2743M: elf@buici.com
2744W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002745L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746S: Maintained
2747
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002748SHPC HOTPLUG DRIVER
2749P: Kristen Carlson Accardi
2750M: kristen.c.accardi@intel.com
2751L: pcihpd-discuss@lists.sourceforge.net
2752S: Maintained
2753
Pierre Ossmand129bce2006-03-24 03:18:17 -08002754SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2755P: Pierre Ossman
2756M: drzeus-sdhci@drzeus.cx
2757L: sdhci-devel@list.drzeus.cx
2758W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2759S: Maintained
2760
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002761SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2762P: Stephen Hemminger
2763M: shemminger@osdl.org
2764L: netdev@vger.kernel.org
2765S: Maintained
2766
Chris Boot1a87d942006-07-10 04:45:34 -07002767SOEKRIS NET48XX LED SUPPORT
2768P: Chris Boot
2769M: bootc@bootc.net
2770S: Maintained
2771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772SPARC (sparc32):
2773P: William L. Irwin
2774M: wli@holomorphy.com
2775L: sparclinux@vger.kernel.org
2776S: Maintained
2777
2778SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2779P: Roger Wolff
2780M: R.E.Wolff@BitWizard.nl
2781L: linux-kernel@vger.kernel.org ?
2782S: Supported
2783
Jim Lewis2752e402006-09-29 02:01:19 -07002784SPIDERNET NETWORK DRIVER for CELL
2785P: Jim Lewis
2786M: jim@jklewis.com
2787L: netdev@vger.kernel.org
2788S: Supported
2789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790SRM (Alpha) environment access
2791P: Jan-Benedict Glaw
2792M: jbglaw@lug-owl.de
2793L: linux-kernel@vger.kernel.org
2794S: Maintained
2795
2796STARFIRE/DURALAN NETWORK DRIVER
2797P: Ion Badulescu
2798M: ionut@cs.columbia.edu
2799S: Maintained
2800
2801STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2802W: http://mosquitonet.Stanford.EDU/strip.html
2803S: Unsupported ?
2804
2805STRADIS MPEG-2 DECODER DRIVER
2806P: Nathan Laredo
2807M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808W: http://www.stradis.com/
2809S: Maintained
2810
2811SUPERH (sh)
2812P: Paul Mundt
2813M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002814L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816S: Maintained
2817
2818SUPERH64 (sh64)
2819P: Paul Mundt
2820M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821L: linuxsh-shmedia-dev@lists.sourceforge.net
2822W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823S: Maintained
2824
2825SUN3/3X
2826P: Sam Creasey
2827M: sammy@sammy.net
2828L: sun3-list@redhat.com
2829W: http://sammy.net/sun3/
2830S: Maintained
2831
2832SVGA HANDLING
2833P: Martin Mares
2834M: mj@ucw.cz
2835L: linux-video@atrey.karlin.mff.cuni.cz
2836S: Maintained
2837
2838SYSV FILESYSTEM
2839P: Christoph Hellwig
2840M: hch@infradead.org
2841S: Maintained
2842
Stephen Hemminger781b456a2006-07-10 20:25:29 -07002843TC CLASSIFIER
2844P: Jamal Hadi Salim
2845M: hadi@cyberus.ca
2846L: netdev@vger.kernel.org
2847S: Maintained
2848
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002849TCP LOW PRIORITY MODULE
2850P: Wong Hoi Sing, Edison
2851M: hswong3i@gmail.com
2852P: Hung Hing Lun, Mike
2853M: hlhung3i@gmail.com
2854W: http://tcp-lp-mod.sourceforge.net/
2855S: Maintained
2856
Michael Buesch844dd052006-06-26 00:24:59 -07002857TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2858P: Deepak Saxena
2859M: dsaxena@plexity.net
2860S: Maintained
2861
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002862TASKSTATS STATISTICS INTERFACE
2863P: Shailabh Nagar
2864M: nagar@watson.ibm.com
2865L: linux-kernel@vger.kernel.org
2866S: Maintained
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868TI PARALLEL LINK CABLE DRIVER
2869P: Romain Lievin
2870M: roms@lpg.ticalc.org
2871S: Maintained
2872
Per Lidene86eaa32006-01-12 16:45:18 +01002873TIPC NETWORK LAYER
2874P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002875M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002876P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002877M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002878P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002879M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002880L: tipc-discussion@lists.sourceforge.net
2881W: http://tipc.sourceforge.net/
2882W: http://tipc.cslab.ericsson.net/
2883T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
2884S: Maintained
2885
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886TLAN NETWORK DRIVER
2887P: Samuel Chessman
2888M: chessman@tux.org
2889L: tlan-devel@lists.sourceforge.net
2890W: http://sourceforge.net/projects/tlan/
2891S: Maintained
2892
2893TOKEN-RING NETWORK DRIVER
2894P: Mike Phillips
2895M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002896L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897L: linux-tr@linuxtr.net
2898W: http://www.linuxtr.net
2899S: Maintained
2900
2901TOSHIBA ACPI EXTRAS DRIVER
2902P: John Belmonte
2903M: toshiba_acpi@memebeam.org
2904W: http://memebeam.org/toys/ToshibaAcpiDriver
2905S: Maintained
2906
2907TOSHIBA SMM DRIVER
2908P: Jonathan Buzzard
2909M: jonathan@buzzard.org.uk
2910L: tlinux-users@tce.toshiba-dme.co.jp
2911W: http://www.buzzard.org.uk/toshiba/
2912S: Maintained
2913
2914TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
2915P: Muli Ben-Yehuda
2916M: mulix@mulix.org
2917L: linux-kernel@vger.kernel.org
2918S: Maintained
2919
2920TRIVIAL PATCHES
Adrian Bunk6dfca872005-11-06 21:31:01 +01002921P: Adrian Bunk
2922M: trivial@kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923L: linux-kernel@vger.kernel.org
Adrian Bunk6dfca872005-11-06 21:31:01 +01002924W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
Josh Boyer1adc1232005-11-23 15:44:15 -08002925T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926S: Maintained
2927
2928TMS380 TOKEN-RING NETWORK DRIVER
2929P: Adam Fritzler
2930M: mid@auk.cx
2931L: linux-tr@linuxtr.net
2932W: http://www.auk.cx/tms380tr/
2933S: Maintained
2934
2935TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07002936P: Valerie Henson
2937M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938L: tulip-users@lists.sourceforge.net
2939W: http://sourceforge.net/projects/tulip/
2940S: Maintained
2941
2942TUN/TAP driver
2943P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08002944M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945L: vtun@office.satix.net
2946W: http://vtun.sourceforge.net/tun
2947S: Maintained
2948
2949U14-34F SCSI DRIVER
2950P: Dario Ballabio
2951M: ballabio_dario@emc.com
2952L: linux-scsi@vger.kernel.org
2953S: Maintained
2954
2955UDF FILESYSTEM
2956P: Ben Fennema
2957M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958W: http://linux-udf.sourceforge.net
2959S: Maintained
2960
2961UNIFORM CDROM DRIVER
2962P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002963M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964L: linux-kernel@vger.kernel.org
2965W: http://www.kernel.dk
2966S: Maintained
2967
2968USB ACM DRIVER
2969P: Oliver Neukum
2970M: oliver@neukum.name
2971L: linux-usb-users@lists.sourceforge.net
2972L: linux-usb-devel@lists.sourceforge.net
2973S: Maintained
2974
2975USB BLOCK DRIVER (UB ub)
2976P: Pete Zaitcev
2977M: zaitcev@redhat.com
2978L: linux-kernel@vger.kernel.org
2979L: linux-usb-devel@lists.sourceforge.net
2980S: Supported
2981
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982USB CDC ETHERNET DRIVER
2983P: Greg Kroah-Hartman
2984M: greg@kroah.com
2985L: linux-usb-users@lists.sourceforge.net
2986L: linux-usb-devel@lists.sourceforge.net
2987S: Maintained
2988W: http://www.kroah.com/linux-usb/
2989
2990USB EHCI DRIVER
2991P: David Brownell
2992M: dbrownell@users.sourceforge.net
2993L: linux-usb-devel@lists.sourceforge.net
2994S: Maintained
2995
Luca Risolia7ce08c92006-01-11 02:06:59 +00002996USB ET61X[12]51 DRIVER
2997P: Luca Risolia
2998M: luca.risolia@studio.unibo.it
2999L: linux-usb-devel@lists.sourceforge.net
3000L: video4linux-list@redhat.com
3001W: http://www.linux-projects.org
3002S: Maintained
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004USB HID/HIDBP DRIVERS
3005P: Vojtech Pavlik
3006M: vojtech@suse.cz
3007L: linux-usb-users@lists.sourceforge.net
3008L: linux-usb-devel@lists.sourceforge.net
3009S: Maintained
3010
3011USB HUB DRIVER
3012P: Johannes Erdfelt
3013M: johannes@erdfelt.com
3014L: linux-usb-users@lists.sourceforge.net
3015L: linux-usb-devel@lists.sourceforge.net
3016S: Maintained
3017
Olav Kongas959eea22005-11-03 17:38:14 +02003018USB ISP116X DRIVER
3019P: Olav Kongas
3020M: ok@artecdesign.ee
3021L: linux-usb-devel@lists.sourceforge.net
3022S: Maintained
3023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024USB KAWASAKI LSI DRIVER
3025P: Oliver Neukum
3026M: oliver@neukum.name
3027L: linux-usb-users@lists.sourceforge.net
3028L: linux-usb-devel@lists.sourceforge.net
3029S: Maintained
3030
3031USB MASS STORAGE DRIVER
3032P: Matthew Dharm
3033M: mdharm-usb@one-eyed-alien.net
3034L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003035L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036S: Maintained
3037W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3038
3039USB OHCI DRIVER
3040P: Roman Weissgaerber
3041M: weissg@vienna.at
3042L: linux-usb-users@lists.sourceforge.net
3043L: linux-usb-devel@lists.sourceforge.net
3044S: Maintained
3045
Matthias Urlichsba460e42005-07-14 00:33:47 -07003046USB OPTION-CARD DRIVER
3047P: Matthias Urlichs
3048M: smurf@smurf.noris.de
3049L: linux-usb-devel@lists.sourceforge.net
3050S: Maintained
3051
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052USB OV511 DRIVER
3053P: Mark McClelland
3054M: mmcclell@bigfoot.com
3055L: linux-usb-users@lists.sourceforge.net
3056L: linux-usb-devel@lists.sourceforge.net
3057W: http://alpha.dyndns.org/ov511/
3058S: Maintained
3059
3060USB PEGASUS DRIVER
3061P: Petko Manolov
3062M: petkan@users.sourceforge.net
3063L: linux-usb-users@lists.sourceforge.net
3064L: linux-usb-devel@lists.sourceforge.net
3065W: http://pegasus2.sourceforge.net/
3066S: Maintained
3067
3068USB PRINTER DRIVER
3069P: Vojtech Pavlik
3070M: vojtech@suse.cz
3071L: linux-usb-users@lists.sourceforge.net
3072L: linux-usb-devel@lists.sourceforge.net
3073S: Maintained
3074
3075USB RTL8150 DRIVER
3076P: Petko Manolov
3077M: petkan@users.sourceforge.net
3078L: linux-usb-users@lists.sourceforge.net
3079L: linux-usb-devel@lists.sourceforge.net
3080W: http://pegasus2.sourceforge.net/
3081S: Maintained
3082
3083USB SE401 DRIVER
3084P: Jeroen Vreeken
3085M: pe1rxq@amsat.org
3086L: linux-usb-users@lists.sourceforge.net
3087L: linux-usb-devel@lists.sourceforge.net
3088W: http://www.chello.nl/~j.vreeken/se401/
3089S: Maintained
3090
3091USB SERIAL CYBERJACK DRIVER
3092P: Matthias Bruestle and Harald Welte
3093M: support@reiner-sct.com
3094W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3095S: Maintained
3096
3097USB SERIAL DIGI ACCELEPORT DRIVER
3098P: Peter Berger and Al Borchers
3099M: pberger@brimson.com
3100M: alborchers@steinerpoint.com
3101L: linux-usb-users@lists.sourceforge.net
3102L: linux-usb-devel@lists.sourceforge.net
3103S: Maintained
3104
3105USB SERIAL DRIVER
3106P: Greg Kroah-Hartman
3107M: gregkh@suse.de
3108L: linux-usb-users@lists.sourceforge.net
3109L: linux-usb-devel@lists.sourceforge.net
3110S: Supported
3111
3112USB SERIAL BELKIN F5U103 DRIVER
3113P: William Greathouse
3114M: wgreathouse@smva.com
3115L: linux-usb-users@lists.sourceforge.net
3116L: linux-usb-devel@lists.sourceforge.net
3117S: Maintained
3118
3119USB SERIAL CYPRESS M8 DRIVER
3120P: Lonnie Mendez
3121M: dignome@gmail.com
3122L: linux-usb-users@lists.sourceforge.net
3123L: linux-usb-devel@lists.sourceforge.net
3124S: Maintained
3125W: http://geocities.com/i0xox0i
3126W: http://firstlight.net/cvs
3127
3128USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3129L: linux-usb-users@lists.sourceforge.net
3130L: linux-usb-devel@lists.sourceforge.net
3131S: Maintained
3132
3133USB AUERSWALD DRIVER
3134P: Wolfgang Muees
3135M: wolfgang@iksw-muees.de
3136L: linux-usb-users@lists.sourceforge.net
3137L: linux-usb-devel@lists.sourceforge.net
3138S: Maintained
3139
3140USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3141P: Gary Brubaker
3142M: xavyer@ix.netcom.com
3143L: linux-usb-users@lists.sourceforge.net
3144L: linux-usb-devel@lists.sourceforge.net
3145S: Maintained
3146
3147USB SERIAL KEYSPAN DRIVER
3148P: Greg Kroah-Hartman
3149M: greg@kroah.com
3150L: linux-usb-users@lists.sourceforge.net
3151L: linux-usb-devel@lists.sourceforge.net
3152W: http://www.kroah.com/linux/
3153S: Maintained
3154
3155USB SERIAL WHITEHEAT DRIVER
3156P: Stuart MacDonald
3157M: stuartm@connecttech.com
3158L: linux-usb-users@lists.sourceforge.net
3159L: linux-usb-devel@lists.sourceforge.net
3160W: http://www.connecttech.com
3161S: Supported
3162
3163USB SN9C10x DRIVER
3164P: Luca Risolia
3165M: luca.risolia@studio.unibo.it
3166L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003167L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168W: http://www.linux-projects.org
3169S: Maintained
3170
3171USB SUBSYSTEM
3172P: Greg Kroah-Hartman
3173M: gregkh@suse.de
3174L: linux-usb-users@lists.sourceforge.net
3175L: linux-usb-devel@lists.sourceforge.net
3176W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003177T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178S: Supported
3179
3180USB UHCI DRIVER
3181P: Alan Stern
3182M: stern@rowland.harvard.edu
3183L: linux-usb-users@lists.sourceforge.net
3184L: linux-usb-devel@lists.sourceforge.net
3185S: Maintained
3186
3187USB "USBNET" DRIVER
3188P: David Brownell
3189M: dbrownell@users.sourceforge.net
3190L: linux-usb-devel@lists.sourceforge.net
3191S: Maintained
3192
3193USB W996[87]CF DRIVER
3194P: Luca Risolia
3195M: luca.risolia@studio.unibo.it
3196L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003197L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198W: http://www.linux-projects.org
3199S: Maintained
3200
Luca Risolia60f78052006-02-06 16:29:35 +00003201USB ZC0301 DRIVER
3202P: Luca Risolia
3203M: luca.risolia@studio.unibo.it
3204L: linux-usb-devel@lists.sourceforge.net
3205L: video4linux-list@redhat.com
3206W: http://www.linux-projects.org
3207S: Maintained
3208
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209USB ZD1201 DRIVER
3210P: Jeroen Vreeken
3211M: pe1rxq@amsat.org
3212L: linux-usb-users@lists.sourceforge.net
3213L: linux-usb-devel@lists.sourceforge.net
3214W: http://linux-lc100020.sourceforge.net
3215S: Maintained
3216
3217USER-MODE LINUX
3218P: Jeff Dike
3219M: jdike@karaya.com
3220L: user-mode-linux-devel@lists.sourceforge.net
3221L: user-mode-linux-user@lists.sourceforge.net
3222W: http://user-mode-linux.sourceforge.net
3223S: Maintained
3224
3225FAT/VFAT/MSDOS FILESYSTEM:
3226P: OGAWA Hirofumi
3227M: hirofumi@mail.parknet.co.jp
3228L: linux-kernel@vger.kernel.org
3229S: Maintained
3230
3231VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3232P: Jeff Garzik
3233S: Odd fixes
3234
3235VIA RHINE NETWORK DRIVER
3236P: Roger Luethi
3237M: rl@hellgate.ch
3238S: Maintained
3239
Jean Delvare32c0a522005-09-22 21:47:58 +02003240VIAPRO SMBUS DRIVER
3241P: Jean Delvare
3242M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003243L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003244S: Maintained
3245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246UCLINUX (AND M68KNOMMU)
3247P: Greg Ungerer
3248M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003250L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251S: Maintained
3252
3253UCLINUX FOR NEC V850
3254P: Miles Bader
3255M: uclinux-v850@lsi.nec.co.jp
3256W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3257W: http://www.ee.nec.de/uclinux/
3258S: Supported
3259
3260UCLINUX FOR RENESAS H8/300
3261P: Yoshinori Sato
3262M: ysato@users.sourceforge.jp
3263W: http://uclinux-h8.sourceforge.jp/
3264S: Supported
3265
3266USB DIAMOND RIO500 DRIVER
3267P: Cesar Miquel
3268M: miquel@df.uba.ar
3269L: rio500-users@lists.sourceforge.net
3270W: http://rio500.sourceforge.net
3271S: Maintained
3272
3273VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003274P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003275M: mchehab@infradead.org
3276M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003278W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003279T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003280S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Juerg Haefligerab413192006-09-24 20:54:04 +02003282VT1211 HARDWARE MONITOR DRIVER
3283P: Juerg Haefliger
3284M: juergh@gmail.com
3285L: lm-sensors@lm-sensors.org
3286S: Maintained
3287
Roger Lucas1de9e372005-11-26 20:20:05 +01003288VT8231 HARDWARE MONITOR DRIVER
3289P: Roger Lucas
3290M: roger@planbit.co.uk
3291L: lm-sensors@lm-sensors.org
3292S: Maintained
3293
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294W1 DALLAS'S 1-WIRE BUS
3295P: Evgeniy Polyakov
3296M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297S: Maintained
3298
Charles Spirakis13927072006-07-05 18:05:15 +02003299W83791D HARDWARE MONITORING DRIVER
3300P: Charles Spirakis
3301M: bezaur@gmail.com
3302L: lm-sensors@lm-sensors.org
3303S: Maintained
3304
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305W83L51xD SD/MMC CARD INTERFACE DRIVER
3306P: Pierre Ossman
3307M: drzeus-wbsd@drzeus.cx
3308L: wbsd-devel@list.drzeus.cx
3309W: http://projects.drzeus.cx/wbsd
3310S: Maintained
3311
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003312WATCHDOG DEVICE DRIVERS
3313P: Wim Van Sebroeck
3314M: wim@iguana.be
3315T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3316S: Maintained
3317
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3319P: Jean Tourrilhes
3320M: jt@hpl.hp.com
3321W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3322S: Maintained
3323
3324WD7000 SCSI DRIVER
3325P: Miroslav Zagorac
3326M: zaga@fly.cc.fer.hr
3327L: linux-scsi@vger.kernel.org
3328S: Maintained
3329
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003330WISTRON LAPTOP BUTTON DRIVER
3331P: Miloslav Trmac
3332M: mitr@volny.cz
3333S: Maintained
3334
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335WL3501 WIRELESS PCMCIA CARD DRIVER
3336P: Arnaldo Carvalho de Melo
3337M: acme@conectiva.com.br
3338W: http://advogato.org/person/acme
3339S: Maintained
3340
3341X.25 NETWORK LAYER
3342P: Henner Eisen
3343M: eis@baty.hanse.de
3344L: linux-x25@vger.kernel.org
3345S: Maintained
3346
3347XFS FILESYSTEM
3348P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003349P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003351L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003353T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354S: Supported
3355
3356X86 3-LEVEL PAGING (PAE) SUPPORT
3357P: Ingo Molnar
3358M: mingo@redhat.com
3359S: Maintained
3360
3361X86-64 port
3362P: Andi Kleen
3363M: ak@suse.de
3364L: discuss@x86-64.org
3365W: http://www.x86-64.org
3366S: Maintained
3367
3368YAM DRIVER FOR AX.25
3369P: Jean-Paul Roubelat
3370M: jpr@f6fbb.org
3371L: linux-hams@vger.kernel.org
3372S: Maintained
3373
Henkaf64a5e2005-10-12 15:02:56 +02003374YEALINK PHONE DRIVER
3375P: Henk Vergonet
3376M: Henk.Vergonet@gmail.com
3377L: usbb2k-api-dev@nongnu.org
3378S: Maintained
3379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380YMFPCI YAMAHA PCI SOUND (Use ALSA instead)
3381P: Pete Zaitcev
3382M: zaitcev@yahoo.com
3383L: linux-kernel@vger.kernel.org
3384S: Obsolete
3385
3386Z8530 DRIVER FOR AX.25
3387P: Joerg Reuter
3388M: jreuter@yaina.de
3389W: http://yaina.de/jreuter/
3390W: http://www.qsl.net/dl1bke/
3391L: linux-hams@vger.kernel.org
3392S: Maintained
3393
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003394ZD1211RW WIRELESS DRIVER
3395P: Daniel Drake
3396M: dsd@gentoo.org
3397P: Ulrich Kunitz
3398M: kune@deine-taler.de
3399W: http://zd1211.ath.cx/wiki/DriverRewrite
3400L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3401S: Maintained
3402
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403ZF MACHZ WATCHDOG
3404P: Fernando Fuganti
3405M: fuganti@netbank.com.br
3406W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3407S: Maintained
3408
3409ZR36067 VIDEO FOR LINUX DRIVER
3410P: Ronald Bultje
3411M: rbultje@ronald.bitfreak.net
3412L: mjpeg-users@lists.sourceforge.net
3413W: http://mjpeg.sourceforge.net/driver-zoran/
3414S: Maintained
3415
3416ZR36120 VIDEO FOR LINUX DRIVER
3417P: Pauline Middelink
3418M: middelin@polyware.nl
3419W: http://www.polyware.nl/~middelin/En/hobbies.html
3420W: http://www.polyware.nl/~middelin/hobbies.html
3421S: Maintained
3422
3423THE REST
3424P: Linus Torvalds
3425S: Buried alive in reporters