blob: 129511c0c27ef631fefadc33bbc2424057fa5c87 [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
Michael Halcrow237fead2006-10-04 02:16:22 -0700980ECRYPT FILE SYSTEM
981P: Mike Halcrow, Phillip Hellewell
982M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
983L: ecryptfs-devel@lists.sourceforge.net
984W: http://ecryptfs.sourceforge.net/
985S: Supported
986
Alan Coxda9bb1d2006-01-18 17:44:13 -0800987EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -0800988P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -0700989M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -0800990L: bluesmoke-devel@lists.sourceforge.net
991W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -0700992S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -0800993
994EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -0700995P: Mark Gross
996M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -0800997L: bluesmoke-devel@lists.sourceforge.net
998W: bluesmoke.sourceforge.net
999S: Maintained
1000
1001EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001002P: Doug Thompson
1003M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001004L: bluesmoke-devel@lists.sourceforge.net
1005W: bluesmoke.sourceforge.net
1006S: Maintained
1007
1008EDAC-R82600
1009P: Tim Small
1010M: tim@buttersideup.com
1011L: bluesmoke-devel@lists.sourceforge.net
1012W: bluesmoke.sourceforge.net
1013S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015EEPRO100 NETWORK DRIVER
1016P: Andrey V. Savochkin
1017M: saw@saw.sw.com.sg
1018S: Maintained
1019
Josh Triplett0bee8d22006-07-30 03:03:58 -07001020EFS FILESYSTEM
1021W: http://aeschi.ch.eu.org/efs/
1022S: Orphan
1023
Heiko J Schickfab97222006-09-22 15:22:22 -07001024EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1025P: Hoang-Nam Nguyen
1026M: hnguyen@de.ibm.com
1027P: Christoph Raisch
1028M: raisch@de.ibm.com
1029L: openib-general@openib.org
1030S: Supported
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032EMU10K1 SOUND DRIVER
1033P: James Courtier-Dutton
1034M: James@superbug.demon.co.uk
1035L: emu10k1-devel@lists.sourceforge.net
1036W: http://sourceforge.net/projects/emu10k1/
1037S: Maintained
1038
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001039EMULEX LPFC FC SCSI DRIVER
1040P: James Smart
1041M: james.smart@emulex.com
1042L: linux-scsi@vger.kernel.org
1043W: http://sourceforge.net/projects/lpfcxxxx
1044S: Supported
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046EPSON 1355 FRAMEBUFFER DRIVER
1047P: Christopher Hoover
1048M: ch@murgatroid.com, ch@hpl.hp.com
1049S: Maintained
1050
1051ETHEREXPRESS-16 NETWORK DRIVER
1052P: Philip Blundell
1053M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001054L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055S: Maintained
1056
1057ETHERNET BRIDGE
1058P: Stephen Hemminger
1059M: shemminger@osdl.org
1060L: bridge@osdl.org
1061W: http://bridge.sourceforge.net/
1062S: Maintained
1063
1064ETHERTEAM 16I DRIVER
1065P: Mika Kuoppala
1066M: miku@iki.fi
1067S: Maintained
1068
1069EXT2 FILE SYSTEM
1070L: ext2-devel@lists.sourceforge.net
1071S: Maintained
1072
1073EXT3 FILE SYSTEM
1074P: Stephen Tweedie, Andrew Morton
1075M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Theodore Tsoae0718f2006-05-20 15:00:13 -07001076L: ext2-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077S: Maintained
1078
Jean Delvaree53004e2006-01-09 23:26:14 +01001079F71805F HARDWARE MONITORING DRIVER
1080P: Jean Delvare
1081M: khali@linux-fr.org
1082L: lm-sensors@lm-sensors.org
1083S: Maintained
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085FARSYNC SYNCHRONOUS DRIVER
1086P: Kevin Curtis
1087M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088W: http://www.farsite.co.uk/
1089S: Supported
1090
1091FRAMEBUFFER LAYER
1092P: Antonino Daplas
1093M: adaplas@pol.net
1094L: linux-fbdev-devel@lists.sourceforge.net
1095W: http://linux-fbdev.sourceforge.net/
1096S: Maintained
1097
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001098FREESCALE SOC FS_ENET DRIVER
1099P: Pantelis Antoniou
1100M: pantelis.antoniou@gmail.com
1101P: Vitaly Bordug
1102M: vbordug@ru.mvista.com
1103L: linuxppc-embedded@ozlabs.org
1104L: netdev@vger.kernel.org
1105S: Maintained
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107FILE LOCKING (flock() and fcntl()/lockf())
1108P: Matthew Wilcox
1109M: matthew@wil.cx
1110L: linux-fsdevel@vger.kernel.org
1111S: Maintained
1112
1113FILESYSTEMS (VFS and infrastructure)
1114P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001115M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116S: Maintained
1117
1118FIRMWARE LOADER (request_firmware)
1119L: linux-kernel@vger.kernel.org
1120S: Orphan
1121
1122FPU EMULATOR
1123P: Bill Metzenthen
1124M: billm@suburbia.net
1125W: http://suburbia.net/~billm/floating-point/emulator/
1126S: Maintained
1127
1128FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1129P: Mike McLagan
1130M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132S: Maintained
1133
1134FREEVXFS FILESYSTEM
1135P: Christoph Hellwig
1136M: hch@infradead.org
1137W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1138S: Maintained
1139
1140FUJITSU FR-V PORT
1141P: David Howells
1142M: dhowells@redhat.com
1143S: Maintained
1144
1145FTAPE/QIC-117
1146L: linux-tape@vger.kernel.org
1147W: http://sourceforge.net/projects/ftape
1148S: Orphan
1149
Miklos Szeredi04578f12005-09-09 13:10:22 -07001150FUSE: FILESYSTEM IN USERSPACE
1151P: Miklos Szeredi
1152M: miklos@szeredi.hu
1153L: fuse-devel@lists.sourceforge.net
1154W: http://fuse.sourceforge.net/
1155S: Maintained
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1158P: Rik Faith
1159M: faith@cs.unc.edu
1160L: linux-scsi@vger.kernel.org
1161S: Odd fixes (e.g., new signatures)
1162
1163GDT SCSI DISK ARRAY CONTROLLER DRIVER
1164P: Achim Leubner
1165M: achim_leubner@adaptec.com
1166L: linux-scsi@vger.kernel.org
1167W: http://www.icp-vortex.com/
1168S: Supported
1169
1170GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1171P: Krzysztof Halasa
1172M: khc@pm.waw.pl
1173W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1174S: Maintained
1175
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001176GIGASET ISDN DRIVERS
1177P: Hansjoerg Lipp
1178M: hjlipp@web.de
1179P: Tilman Schmidt
1180M: tilman@imap.cc
1181L: gigaset307x-common@lists.sourceforge.net
1182W: http://gigaset307x.sourceforge.net/
1183S: Maintained
1184
Jean Delvare5b543962005-08-15 19:51:02 +02001185HARDWARE MONITORING
1186P: Jean Delvare
1187M: khali@linux-fr.org
1188L: lm-sensors@lm-sensors.org
1189W: http://www.lm-sensors.nu/
1190S: Maintained
1191
Michael Buesch844dd052006-06-26 00:24:59 -07001192HARDWARE RANDOM NUMBER GENERATOR CORE
1193P: Michael Buesch
1194M: mb@bu3sch.de
1195S: Maintained
1196
Robert Love860e1d62005-08-31 23:57:59 -04001197HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1198P: Robert Love
1199M: rlove@rlove.org
1200M: linux-kernel@vger.kernel.org
1201W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1202S: Maintained
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204HARMONY SOUND DRIVER
1205P: Kyle McMartin
1206M: kyle@parisc-linux.org
1207W: http://www.parisc-linux.org/~kyle/harmony/
1208L: parisc-linux@lists.parisc-linux.org
1209S: Maintained
1210
1211HAYES ESP SERIAL DRIVER
1212P: Andrew J. Robinson
1213M: arobinso@nyx.net
1214L: linux-kernel@vger.kernel.org
1215W: http://www.nyx.net/~arobinso
1216S: Maintained
1217
1218HFS FILESYSTEM
1219P: Roman Zippel
1220M: zippel@linux-m68k.org
1221L: linux-kernel@vger.kernel.org
1222S: Maintained
1223
1224HGA FRAMEBUFFER DRIVER
1225P: Ferenc Bakonyi
1226M: fero@drama.obuda.kando.hu
1227L: linux-nvidia@lists.surfsouth.com
1228W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1229S: Maintained
1230
1231HIGH-SPEED SCC DRIVER FOR AX.25
1232P: Klaus Kudielka
1233M: klaus.kudielka@ieee.org
1234L: linux-hams@vger.kernel.org
1235W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1236S: Maintained
1237
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001238HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1239P: HighPoint Linux Team
1240M: linux@highpoint-tech.com
1241W: http://www.highpoint-tech.com
1242S: Supported
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244HIPPI
1245P: Jes Sorensen
1246M: jes@trained-monkey.org
1247L: linux-hippi@sunsite.dk
1248S: Maintained
1249
1250HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1251P: Chirag Kantharia
1252M: chirag.kantharia@hp.com
1253L: iss_storagedev@hp.com
1254S: Maintained
1255
1256HEWLETT-PACKARD SMART2 RAID DRIVER
1257P: Chirag Kantharia
1258M: chirag.kantharia@hp.com
1259L: iss_storagedev@hp.com
1260S: Maintained
1261
1262HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1263P: Mike Miller
1264M: mike.miller@hp.com
1265L: iss_storagedev@hp.com
1266S: Supported
1267
Jouni Malinenff1d2762005-05-12 22:54:16 -04001268HOST AP DRIVER
1269P: Jouni Malinen
1270M: jkmaline@cc.hut.fi
1271L: hostap@shmoo.com
1272W: http://hostap.epitest.fi/
1273S: Maintained
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1276P: Jaroslav Kysela
1277M: perex@suse.cz
1278S: Maintained
1279
Bob Piccob9b03322005-11-07 00:59:19 -08001280HPET: High Precision Event Timers driver (hpet.c)
1281P: Clemens Ladisch
1282M: clemens@ladisch.de
1283S: Maintained
1284
1285HPET: i386
1286P: Venkatesh Pallipadi (Venki)
1287M: venkatesh.pallipadi@intel.com
1288S: Maintained
1289
1290HPET: x86_64
1291P: Andi Kleen and Vojtech Pavlik
1292M: ak@muc.de and vojtech@suse.cz
1293S: Maintained
1294
1295HPET: ACPI hpet.c
1296P: Bob Picco
1297M: bob.picco@hp.com
1298S: Maintained
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300HPFS FILESYSTEM
1301P: Mikulas Patocka
1302M: mikulas@artax.karlin.mff.cuni.cz
1303W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1304S: Maintained
1305
1306HUGETLB FILESYSTEM
1307P: William Irwin
1308M: wli@holomorphy.com
1309S: Maintained
1310
Jean Delvare5b543962005-08-15 19:51:02 +02001311I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312P: Jean Delvare
1313M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001314L: i2c@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315W: http://www.lm-sensors.nu/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001316T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317S: Maintained
1318
1319I2O
1320P: Markus Lidel
1321M: markus.lidel@shadowconnect.com
1322W: http://i2o.shadowconnect.com/
1323S: Maintained
1324
1325i386 BOOT CODE
1326P: Riley H. Williams
1327M: Riley@Williams.Name
1328L: Linux-Kernel@vger.kernel.org
1329S: Maintained
1330
1331i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1332P: Dave Jones
1333M: davej@codemonkey.org.uk
1334P: H. Peter Anvin
1335M: hpa@zytor.com
1336S: Maintained
1337
1338i810 TCO TIMER WATCHDOG
1339P: Nils Faerber
1340M: nils@kernelconcepts.de
1341W: http://www.kernelconcepts.de/
1342S: Maintained
1343
1344IA64 (Itanium) PLATFORM
1345P: Tony Luck
1346M: tony.luck@intel.com
1347L: linux-ia64@vger.kernel.org
1348W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001349T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350S: Maintained
1351
1352SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001353P: Jes Sorensen
1354M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355L: linux-altix@sgi.com
1356L: linux-ia64@vger.kernel.org
1357W: http://www.sgi.com/altix
1358S: Maintained
1359
1360IBM MCA SCSI SUBSYSTEM DRIVER
1361P: Michael Lang
1362M: langa2@kph.uni-mainz.de
1363W: http://www.uni-mainz.de/~langm000/linux.html
1364S: Maintained
1365
1366IBM Power Linux RAID adapter
1367P: Brian King
1368M: brking@us.ibm.com
1369S: Supported
1370
1371IBM ServeRAID RAID DRIVER
1372P: Jack Hammer
1373P: Dave Jeffery
1374M: ipslinux@adaptec.com
1375W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1376S: Supported
1377
1378IDE DRIVER [GENERAL]
1379P: Bartlomiej Zolnierkiewicz
1380M: B.Zolnierkiewicz@elka.pw.edu.pl
1381L: linux-kernel@vger.kernel.org
1382L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001383T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384S: Maintained
1385
1386IDE/ATAPI CDROM DRIVER
1387P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001388M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389L: linux-kernel@vger.kernel.org
1390W: http://www.kernel.dk
1391S: Maintained
1392
1393IDE/ATAPI FLOPPY DRIVERS
1394P: Paul Bristow
1395M: Paul Bristow <paul@paulbristow.net>
1396W: http://paulbristow.net/linux/idefloppy.html
1397L: linux-kernel@vger.kernel.org
1398S: Maintained
1399
1400IDE/ATAPI TAPE DRIVERS
1401P: Gadi Oxman
1402M: Gadi Oxman <gadio@netvision.net.il>
1403L: linux-kernel@vger.kernel.org
1404S: Maintained
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406IEEE 1394 SUBSYSTEM
1407P: Ben Collins
1408M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001409P: Stefan Richter
1410M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411L: linux1394-devel@lists.sourceforge.net
1412W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001413T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414S: Maintained
1415
Stefan Richter87730d02006-09-16 12:24:00 +02001416IEEE 1394 IPV4 DRIVER (eth1394)
1417P: Stefan Richter
1418M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001420S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422IEEE 1394 PCILYNX DRIVER
1423P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001424M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001425P: Stefan Richter
1426M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001428S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430IEEE 1394 RAW I/O DRIVER
1431P: Ben Collins
1432M: bcollins@debian.org
1433P: Dan Dennedy
1434M: dan@dennedy.org
1435L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001436S: Maintained
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438IMS TWINTURBO FRAMEBUFFER DRIVER
1439P: Paul Mundt
1440M: lethal@chaoticdreams.org
1441L: linux-fbdev-devel@lists.sourceforge.net
1442S: Maintained
1443
1444INFINIBAND SUBSYSTEM
1445P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001446M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447P: Sean Hefty
1448M: mshefty@ichips.intel.com
1449P: Hal Rosenstock
1450M: halr@voltaire.com
1451L: openib-general@openib.org
1452W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001453T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454S: Supported
1455
1456INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001457P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001458M: dmitry.torokhov@gmail.com
1459M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460L: linux-input@atrey.karlin.mff.cuni.cz
1461L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001462T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463S: Maintained
1464
Robert Lovec9f04f52005-07-15 12:21:07 -04001465INOTIFY
1466P: John McCutchan and Robert Love
1467M: ttb@tentacle.dhs.org and rml@novell.com
1468L: linux-kernel@vger.kernel.org
1469S: Maintained
1470
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001471INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
1472P: Sylvain Meyer
1473M: sylvain.meyer@worldonline.fr
1474L: linux-fbdev-devel@lists.sourceforge.net
1475S: Maintained
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477INTEL 810/815 FRAMEBUFFER DRIVER
1478P: Antonino Daplas
1479M: adaplas@pol.net
1480L: linux-fbdev-devel@lists.sourceforge.net
1481S: Maintained
1482
1483INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1484P: Ingo Molnar
1485M: mingo@redhat.com
1486S: Maintained
1487
1488INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1489P: Jeff Garzik
1490M: jgarzik@pobox.com
1491W: http://sourceforge.net/projects/gkernel/
1492S: Maintained
1493
1494INTEL IA32 MICROCODE UPDATE SUPPORT
1495P: Tigran Aivazian
1496M: tigran@veritas.com
1497S: Maintained
1498
Michael Buesch844dd052006-06-26 00:24:59 -07001499INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1500P: Deepak Saxena
1501M: dsaxena@plexity.net
1502S: Maintained
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504INTEL PRO/100 ETHERNET SUPPORT
1505P: John Ronciak
1506M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507P: Jesse Brandeburg
1508M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001509P: Jeff Kirsher
1510M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001511P: Auke Kok
1512M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513W: http://sourceforge.net/projects/e1000/
1514S: Supported
1515
1516INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1517P: Jeb Cramer
1518M: cramerj@intel.com
1519P: John Ronciak
1520M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001521P: Jesse Brandeburg
1522M: jesse.brandeburg@intel.com
1523P: Jeff Kirsher
1524M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001525P: Auke Kok
1526M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527W: http://sourceforge.net/projects/e1000/
1528S: Supported
1529
1530INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001531P: Jeff Kirsher
1532M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533P: Ayyappan Veeraiyan
1534M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535P: John Ronciak
1536M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001537P: Jesse Brandeburg
1538M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001539P: Auke Kok
1540M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541W: http://sourceforge.net/projects/e1000/
1542S: Supported
1543
James Ketrenos826d2ab2005-11-07 18:56:59 -06001544INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1545P: Yi Zhu
1546M: yi.zhu@intel.com
1547P: James Ketrenos
1548M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001549L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001550L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1551W: http://ipw2100.sourceforge.net
1552S: Supported
1553
1554INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1555P: Yi Zhu
1556M: yi.zhu@intel.com
1557P: James Ketrenos
1558M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001559L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001560L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1561W: http://ipw2200.sourceforge.net
1562S: Supported
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564IOC3 DRIVER
1565P: Ralf Baechle
1566M: ralf@linux-mips.org
1567L: linux-mips@linux-mips.org
1568S: Maintained
1569
1570IP MASQUERADING:
1571P: Juanjo Ciarlante
1572M: jjciarla@raiz.uncu.edu.ar
1573S: Maintained
1574
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001575IPATH DRIVER:
1576P: Bryan O'Sullivan
1577M: support@pathscale.com
1578L: openib-general@openib.org
1579S: Supported
1580
Corey Minyard4409ebe2006-04-20 02:43:12 -07001581IPMI SUBSYSTEM
1582P: Corey Minyard
1583M: minyard@acm.org
1584L: openipmi-developer@lists.sourceforge.net
1585W: http://openipmi.sourceforge.net/
1586S: Supported
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588IPX NETWORK LAYER
1589P: Arnaldo Carvalho de Melo
1590M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001591L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592S: Maintained
1593
1594IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001595P: Samuel Ortiz
1596M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001597L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001599S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601ISAPNP
1602P: Jaroslav Kysela
1603M: perex@suse.cz
1604S: Maintained
1605
1606ISDN SUBSYSTEM
1607P: Karsten Keil
1608M: kkeil@suse.de
1609P: Kai Germaschewski
1610M: kai.germaschewski@gmx.de
1611L: isdn4linux@listserv.isdn4linux.de
1612W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001613T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614S: Maintained
1615
1616ISDN SUBSYSTEM (Eicon active card driver)
1617P: Armin Schindler
1618M: mac@melware.de
1619L: isdn4linux@listserv.isdn4linux.de
1620W: http://www.melware.de
1621S: Maintained
1622
1623JOURNALLING FLASH FILE SYSTEM (JFFS)
1624P: Axis Communications AB
1625M: jffs-dev@axis.com
1626L: jffs-dev@axis.com
1627W: http://www.developer.axis.com/software/jffs/
1628S: Maintained
1629
1630JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1631P: David Woodhouse
1632M: dwmw2@infradead.org
1633L: jffs-dev@axis.com
1634W: http://sources.redhat.com/jffs2/
1635S: Maintained
1636
1637JFS FILESYSTEM
1638P: Dave Kleikamp
1639M: shaggy@austin.ibm.com
1640L: jfs-discussion@lists.sourceforge.net
1641W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001642T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643S: Supported
1644
Josh Triplettde456d32006-07-30 03:04:00 -07001645JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001646P: Stephen Tweedie, Andrew Morton
1647M: sct@redhat.com, akpm@osdl.org
1648L: ext2-devel@lists.sourceforge.net
1649S: Maintained
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651KCONFIG
1652P: Roman Zippel
1653M: zippel@linux-m68k.org
1654L: kbuild-devel@lists.sourceforge.net
1655S: Maintained
1656
Vivek Goyalea6c2082006-05-20 14:59:55 -07001657KDUMP
1658P: Vivek Goyal
1659M: vgoyal@in.ibm.com
1660P: Haren Myneni
1661M: hbabu@us.ibm.com
1662L: fastboot@lists.osdl.org
1663L: linux-kernel@vger.kernel.org
1664W: http://lse.sourceforge.net/kdump/
1665S: Maintained
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667KERNEL AUTOMOUNTER (AUTOFS)
1668P: H. Peter Anvin
1669M: hpa@zytor.com
1670L: autofs@linux.kernel.org
1671S: Odd Fixes
1672
1673KERNEL AUTOMOUNTER v4 (AUTOFS4)
1674P: Ian Kent
1675M: raven@themaw.net
1676L: autofs@linux.kernel.org
1677S: Maintained
1678
1679KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1680P: Kai Germaschewski
1681M: kai@germaschewski.name
1682P: Sam Ravnborg
1683M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001684T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685S: Maintained
1686
1687KERNEL JANITORS
1688P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001689L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691S: Maintained
1692
1693KERNEL NFSD
1694P: Neil Brown
1695M: neilb@cse.unsw.edu.au
1696L: nfs@lists.sourceforge.net
1697W: http://nfs.sourceforge.net/
1698W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1699S: Maintained
1700
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001701KEXEC
1702P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001703M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001704W: http://www.xmission.com/~ebiederm/files/kexec/
1705L: linux-kernel@vger.kernel.org
1706L: fastboot@osdl.org
1707S: Maintained
1708
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001709KPROBES
1710P: Prasanna S Panchamukhi
1711M: prasanna@in.ibm.com
1712P: Ananth N Mavinakayanahalli
1713M: ananth@in.ibm.com
1714P: Anil S Keshavamurthy
1715M: anil.s.keshavamurthy@intel.com
1716P: David S. Miller
1717M: davem@davemloft.net
1718L: linux-kernel@vger.kernel.org
1719S: Maintained
1720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001723S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725LASI 53c700 driver for PARISC
1726P: James E.J. Bottomley
1727M: James.Bottomley@HansenPartnership.com
1728L: linux-scsi@vger.kernel.org
1729S: Maintained
1730
Richard Purdie263de9b2006-05-15 09:44:16 -07001731LED SUBSYSTEM
1732P: Richard Purdie
1733M: rpurdie@rpsys.net
1734S: Maintained
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736LEGO USB Tower driver
1737P: Juergen Stuber
1738M: starblue@users.sourceforge.net
1739L: legousb-devel@lists.sourceforge.net
1740W: http://legousb.sourceforge.net/
1741S: Maintained
1742
1743LINUX FOR IBM pSERIES (RS/6000)
1744P: Paul Mackerras
1745M: paulus@au.ibm.com
1746W: http://www.ibm.com/linux/ltc/projects/ppc
1747S: Supported
1748
1749LINUX FOR NCR VOYAGER
1750P: James Bottomley
1751M: James.Bottomley@HansenPartnership.com
1752W: http://www.hansenpartnership.com/voyager
1753S: Maintained
1754
1755LINUX FOR POWERPC
1756P: Paul Mackerras
1757M: paulus@samba.org
1758W: http://www.penguinppc.org/
1759L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001760T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761S: Supported
1762
1763LINUX FOR POWER MACINTOSH
1764P: Benjamin Herrenschmidt
1765M: benh@kernel.crashing.org
1766W: http://www.penguinppc.org/
1767L: linuxppc-dev@ozlabs.org
1768S: Maintained
1769
1770LINUX FOR POWERPC EMBEDDED MPC52XX
1771P: Sylvain Munaut
1772M: tnt@246tNt.com
1773W: http://www.246tNt.com/mpc52xx/
1774W: http://www.penguinppc.org/
1775L: linuxppc-dev@ozlabs.org
1776L: linuxppc-embedded@ozlabs.org
1777S: Maintained
1778
1779LINUX FOR POWERPC EMBEDDED PPC4XX
1780P: Matt Porter
1781M: mporter@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 BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787P: Tom Rini
1788M: trini@kernel.crashing.org
1789W: http://www.penguinppc.org/
1790L: linuxppc-embedded@ozlabs.org
1791S: Maintained
1792
Tom Rinie93adf12005-07-26 12:49:53 -07001793LINUX FOR POWERPC EMBEDDED PPC8XX
1794P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001795M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001796W: http://www.penguinppc.org/
1797L: linuxppc-embedded@ozlabs.org
1798S: Maintained
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
1801P: Kumar Gala
Kumar Gala4c8d3d92005-11-13 16:06:30 -08001802M: galak@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803W: http://www.penguinppc.org/
1804L: linuxppc-embedded@ozlabs.org
1805S: Maintained
1806
Olof Johanssonab06ff32006-09-06 14:44:54 -05001807LINUX FOR POWERPC PA SEMI PWRFICIENT
1808P: Olof Johansson
1809M: olof@lixom.net
1810W: http://www.pasemi.com/
1811L: linuxppc-dev@ozlabs.org
1812S: Supported
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814LLC (802.2)
1815P: Arnaldo Carvalho de Melo
1816M: acme@conectiva.com.br
1817S: Maintained
1818
1819LINUX FOR 64BIT POWERPC
1820P: Paul Mackerras
1821M: paulus@samba.org
1822M: paulus@au.ibm.com
1823P: Anton Blanchard
1824M: anton@samba.org
1825M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001826W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001827L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828S: Supported
1829
1830LINUX SECURITY MODULE (LSM) FRAMEWORK
1831P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001832M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001833L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001835T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836S: Supported
1837
1838LM83 HARDWARE MONITOR DRIVER
1839P: Jean Delvare
1840M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001841L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842S: Maintained
1843
1844LM90 HARDWARE MONITOR DRIVER
1845P: Jean Delvare
1846M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001847L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848S: Maintained
1849
1850LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1851P: Richard Russon (FlatCap)
1852M: ldm@flatcap.org
1853L: ldm-devel@lists.sourceforge.net
1854W: http://ldm.sourceforge.net
1855S: Maintained
1856
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001857LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1858P: Eric Moore
1859M: Eric.Moore@lsil.com
1860M: support@lsil.com
1861L: mpt_linux_developer@lsil.com
1862L: linux-scsi@vger.kernel.org
1863W: http://www.lsilogic.com/support
1864S: Supported
1865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1867P: Matthew Wilcox
1868M: matthew@wil.cx
1869L: linux-scsi@vger.kernel.org
1870S: Maintained
1871
1872M68K ARCHITECTURE
1873P: Geert Uytterhoeven
1874M: geert@linux-m68k.org
1875P: Roman Zippel
1876M: zippel@linux-m68k.org
1877L: linux-m68k@lists.linux-m68k.org
1878W: http://www.linux-m68k.org/
1879W: http://linux-m68k-cvs.ubb.ca/
1880S: Maintained
1881
1882M68K ON APPLE MACINTOSH
1883P: Joshua Thompson
1884M: funaho@jurai.org
1885W: http://www.mac.linux-m68k.org/
1886L: linux-mac68k@mac.linux-m68k.org
1887S: Maintained
1888
1889M68K ON HP9000/300
1890P: Philip Blundell
1891M: philb@gnu.org
1892W: http://www.tazenda.demon.co.uk/phil/linux-hp
1893S: Maintained
1894
1895MARVELL YUKON / SYSKONNECT DRIVER
1896P: Mirko Lindner
1897M: mlindner@syskonnect.de
1898P: Ralph Roesler
1899M: rroesler@syskonnect.de
1900W: http://www.syskonnect.com
1901S: Supported
1902
1903MAESTRO PCI SOUND DRIVERS
1904P: Zach Brown
1905M: zab@zabbo.net
1906S: Odd Fixes
1907
Michael Kerriskfaf16682005-07-31 22:34:47 -07001908MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
1909P: Michael Kerrisk
1910M: mtk-manpages@gmx.net
1911W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1912S: Maintained
1913
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001914MARVELL MV643XX ETHERNET DRIVER
1915P: Dale Farnsworth
1916M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001918M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001919L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001920S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922MATROX FRAMEBUFFER DRIVER
1923P: Petr Vandrovec
1924M: vandrove@vc.cvut.cz
1925L: linux-fbdev-devel@lists.sourceforge.net
1926S: Maintained
1927
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001928MEGARAID SCSI DRIVERS
1929P: Neela Syam Kolli
1930M: Neela.Kolli@engenio.com
1931S: linux-scsi@vger.kernel.org
1932W: http://megaraid.lsilogic.com
1933S: Maintained
1934
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001935MEMORY MANAGEMENT
1936L: linux-mm@kvack.org
1937L: linux-kernel@vger.kernel.org
1938W: http://www.linux-mm.org
1939S: Maintained
1940
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001941MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942P: David Woodhouse
1943M: dwmw2@infradead.org
1944W: http://www.linux-mtd.infradead.org/
1945L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001946T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947S: Maintained
1948
1949MICROTEK X6 SCANNER
1950P: Oliver Neukum
1951M: oliver@neukum.name
1952S: Maintained
1953
1954MIPS
1955P: Ralf Baechle
1956M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01001957W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00001959T: git www.linux-mips.org:/pub/scm/linux.git
1960S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962MISCELLANEOUS MCA-SUPPORT
1963P: James Bottomley
1964M: jejb@steeleye.com
1965L: linux-kernel@vger.kernel.org
1966S: Maintained
1967
1968MODULE SUPPORT
1969P: Rusty Russell
1970M: rusty@rustcorp.com.au
1971L: linux-kernel@vger.kernel.org
1972S: Maintained
1973
1974MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
1975P: Stelian Pop
1976M: stelian@popies.net
1977W: http://popies.net/meye/
1978S: Maintained
1979
1980MOUSE AND MISC DEVICES [GENERAL]
1981P: Alessandro Rubini
1982M: rubini@ipvvis.unipv.it
1983L: linux-kernel@vger.kernel.org
1984S: Maintained
1985
1986MTRR AND SIMILAR SUPPORT [i386]
1987P: Richard Gooch
1988M: rgooch@atnf.csiro.au
1989L: linux-kernel@vger.kernel.org
1990W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
1991S: Maintained
1992
Russell King12223da2006-06-15 13:28:52 +01001993MULTIMEDIA CARD (MMC) SUBSYSTEM
Russell King353cefd2006-10-03 17:36:11 +01001994S: Orphan
Russell Kingbaca2da2006-06-04 17:36:31 +01001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996MULTISOUND SOUND DRIVER
1997P: Andrew Veliath
1998M: andrewtv@usa.net
1999S: Maintained
2000
2001NATSEMI ETHERNET DRIVER (DP8381x)
2002P: Tim Hockin
2003M: thockin@hockin.org
2004S: Maintained
2005
2006NCP FILESYSTEM
2007P: Petr Vandrovec
2008M: vandrove@vc.cvut.cz
2009L: linware@sh.cvut.cz
2010S: Maintained
2011
2012NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2013P: James E.J. Bottomley
2014M: James.Bottomley@HansenPartnership.com
2015L: linux-scsi@vger.kernel.org
2016S: Maintained
2017
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002018NETEM NETWORK EMULATOR
2019P: Stephen Hemminger
2020M: shemminger@osdl.org
2021L: netem@osdl.org
2022S: Maintained
2023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024NETFILTER/IPTABLES/IPCHAINS
2025P: Rusty Russell
2026P: Marc Boucher
2027P: James Morris
2028P: Harald Welte
2029P: Jozsef Kadlecsik
2030M: coreteam@netfilter.org
2031W: http://www.netfilter.org/
2032W: http://www.iptables.org/
2033L: netfilter@lists.netfilter.org
2034L: netfilter-devel@lists.netfilter.org
2035S: Supported
2036
Paul Moore4cc67732006-09-25 15:57:13 -07002037NETLABEL
2038P: Paul Moore
2039M: paul.moore@hp.com
2040W: http://netlabel.sf.net
2041L: netdev@vger.kernel.org
2042S: Supported
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044NETROM NETWORK LAYER
2045P: Ralf Baechle
2046M: ralf@linux-mips.org
2047L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002048W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049S: Maintained
2050
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002051NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052P: Paul Clements
2053M: Paul.Clements@steeleye.com
2054S: Maintained
2055
2056NETWORK DEVICE DRIVERS
2057P: Andrew Morton
2058M: akpm@osdl.org
2059P: Jeff Garzik
2060M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002061L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002062T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063S: Maintained
2064
2065NETWORKING [GENERAL]
2066P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002067M: netdev@vger.kernel.org
2068L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002069W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070S: Maintained
2071
2072NETWORKING [IPv4/IPv6]
2073P: David S. Miller
2074M: davem@davemloft.net
2075P: Alexey Kuznetsov
2076M: kuznet@ms2.inr.ac.ru
2077P: Pekka Savola (ipv6)
2078M: pekkas@netcore.fi
2079P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002080M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081P: Hideaki YOSHIFUJI
2082M: yoshfuji@linux-ipv6.org
2083P: Patrick McHardy
2084M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002085L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002086T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087S: Maintained
2088
John W. Linville29f8f632006-01-18 14:52:48 -08002089NETWORKING [WIRELESS]
2090P: John W. Linville
2091M: linville@tuxdriver.com
2092L: netdev@vger.kernel.org
2093T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2094S: Maintained
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096IPVS
2097P: Wensong Zhang
2098M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002099P: Simon Horman
2100M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101P: Julian Anastasov
2102M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002103L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104S: Maintained
2105
2106NFS CLIENT
2107P: Trond Myklebust
2108M: trond.myklebust@fys.uio.no
2109L: linux-kernel@vger.kernel.org
2110S: Maintained
2111
2112NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002113P: Jan-Pascal van Best
2114M: janpascal@vanbest.org
2115P: Andreas Mohr
2116M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002117L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118S: Maintained
2119
2120NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2121P: YOKOTA Hiroshi
2122M: yokota@netlab.is.tsukuba.ac.jp
2123W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2124S: Maintained
2125
2126NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2127P: GOTO Masanori
2128M: gotom@debian.or.jp
2129P: YOKOTA Hiroshi
2130M: yokota@netlab.is.tsukuba.ac.jp
2131W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2132S: Maintained
2133
2134NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2135P: Eberhard Moenkeberg
2136M: emoenke@gwdg.de
2137L: linux-kernel@vger.kernel.org
2138S: Maintained
2139
2140NTFS FILESYSTEM
2141P: Anton Altaparmakov
2142M: aia21@cantab.net
2143L: linux-ntfs-dev@lists.sourceforge.net
2144L: linux-kernel@vger.kernel.org
2145W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002146T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147S: Maintained
2148
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002149NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
2150P: Antonino Daplas
2151M: adaplas@pol.net
2152L: linux-fbdev-devel@lists.sourceforge.net
2153S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002155OPENCORES I2C BUS DRIVER
2156P: Peter Korsgaard
2157M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002158L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002159S: Maintained
2160
Mark Fashehccd979b2005-12-15 14:31:24 -08002161ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2162P: Mark Fasheh
2163M: mark.fasheh@oracle.com
2164P: Kurt Hackel
2165M: kurt.hackel@oracle.com
2166L: ocfs2-devel@oss.oracle.com
2167W: http://oss.oracle.com/projects/ocfs2/
2168S: Supported
2169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170OLYMPIC NETWORK DRIVER
2171P: Peter De Shrijver
2172M: p2@ace.ulyssis.student.kuleuven.ac.be
2173P: Mike Phillips
2174M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002175L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176L: linux-tr@linuxtr.net
2177W: http://www.linuxtr.net
2178S: Maintained
2179
Harald Weltec1986ee2005-11-13 16:06:29 -08002180OMNIKEY CARDMAN 4000 DRIVER
2181P: Harald Welte
2182M: laforge@gnumonks.org
2183S: Maintained
2184
Harald Welte77c44ab2005-11-13 16:06:26 -08002185OMNIKEY CARDMAN 4040 DRIVER
2186P: Harald Welte
2187M: laforge@gnumonks.org
2188S: Maintained
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190ONSTREAM SCSI TAPE DRIVER
2191P: Willem Riede
2192M: osst@riede.org
2193L: osst-users@lists.sourceforge.net
2194L: linux-scsi@vger.kernel.org
2195S: Maintained
2196
2197OPL3-SA2, SA3, and SAx DRIVER
2198P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002199M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200L: linux-sound@vger.kernel.org
2201S: Maintained
2202
2203OPROFILE
2204P: Philippe Elie
2205M: phil.el@wanadoo.fr
2206L: oprofile-list@lists.sf.net
2207S: Maintained
2208
2209ORINOCO DRIVER
2210P: Pavel Roskin
2211M: proski@gnu.org
2212P: David Gibson
2213M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002214L: orinoco-users@lists.sourceforge.net
2215L: orinoco-devel@lists.sourceforge.net
2216W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217S: Maintained
2218
2219PARALLEL PORT SUPPORT
2220P: Phil Blundell
2221M: philb@gnu.org
2222P: Tim Waugh
2223M: tim@cyberelk.net
2224P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225P: Andrea Arcangeli
2226M: andrea@suse.de
2227L: linux-parport@lists.infradead.org
2228W: http://people.redhat.com/twaugh/parport/
2229S: Maintained
2230
2231PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2232P: Tim Waugh
2233M: tim@cyberelk.net
2234L: linux-parport@lists.infradead.org
2235W: http://www.torque.net/linux-pp.html
2236S: Maintained
2237
2238PARISC ARCHITECTURE
2239P: Matthew Wilcox
2240M: matthew@wil.cx
2241P: Grant Grundler
2242M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002243P: Kyle McMartin
2244M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245L: parisc-linux@parisc-linux.org
2246W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002247T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2248T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249S: Maintained
2250
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002251PCI ERROR RECOVERY
2252P: Linas Vepstas
2253M: linas@austin.ibm.com
2254L: linux-kernel@vger.kernel.org
2255L: linux-pci@atrey.karlin.mff.cuni.cz
2256S: Supported
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2259P: Thomas Sailer
2260M: sailer@ife.ee.ethz.ch
2261L: linux-sound@vger.kernel.org
2262W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2263S: Maintained
2264
2265PCI SUBSYSTEM
2266P: Greg Kroah-Hartman
2267M: gregkh@suse.de
2268L: linux-kernel@vger.kernel.org
2269L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002270T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271S: Supported
2272
2273PCI HOTPLUG CORE
2274P: Greg Kroah-Hartman
2275M: gregkh@suse.de
2276S: Supported
2277
2278PCI HOTPLUG COMPAQ DRIVER
2279P: Greg Kroah-Hartman
2280M: greg@kroah.com
2281S: Maintained
2282
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002283PCIE HOTPLUG DRIVER
2284P: Kristen Carlson Accardi
2285M: kristen.c.accardi@intel.com
2286L: pcihpd-discuss@lists.sourceforge.net
2287S: Maintained
2288
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002290P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002291L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002293T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002294S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296PCNET32 NETWORK DRIVER
2297P: Thomas Bogendörfer
2298M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002299L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300S: Maintained
2301
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002302PER-TASK DELAY ACCOUNTING
2303P: Shailabh Nagar
2304M: nagar@watson.ibm.com
2305L: linux-kernel@vger.kernel.org
2306S: Maintained
2307
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002308PERSONALITY HANDLING
2309P: Christoph Hellwig
2310M: hch@infradead.org
2311L: linux-abi-devel@lists.sourceforge.net
2312S: Maintained
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314PHRAM MTD DRIVER
2315P: Jörn Engel
2316M: joern@wh.fh-wedel.de
2317L: linux-mtd@lists.infradead.org
2318S: Maintained
2319
Peter Osterlund249a6772005-09-27 21:45:30 -07002320PKTCDVD DRIVER
2321P: Peter Osterlund
2322M: petero2@telia.com
2323L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002324S: Maintained
2325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326POSIX CLOCKS and TIMERS
2327P: George Anzinger
2328M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002329L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330S: Supported
2331
Eugene Surovegin24682972005-10-14 03:00:53 -07002332POWERPC 4xx EMAC DRIVER
2333P: Eugene Surovegin
2334M: ebs@ebshome.net
2335W: http://kernel.ebshome.net/emac/
2336L: linuxppc-embedded@ozlabs.org
2337L: netdev@vger.kernel.org
2338S: Maintained
2339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340PNP SUPPORT
2341P: Adam Belay
2342M: ambx1@neo.rr.com
2343S: Maintained
2344
2345PPP PROTOCOL DRIVERS AND COMPRESSORS
2346P: Paul Mackerras
2347M: paulus@samba.org
2348L: linux-ppp@vger.kernel.org
2349S: Maintained
2350
2351PPP OVER ATM (RFC 2364)
2352P: Mitchell Blank Jr
2353M: mitch@sfgoth.com
2354S: Maintained
2355
2356PPP OVER ETHERNET
2357P: Michal Ostrowski
2358M: mostrows@speakeasy.net
2359S: Maintained
2360
2361PREEMPTIBLE KERNEL
2362P: Robert Love
2363M: rml@tech9.net
2364L: linux-kernel@vger.kernel.org
2365L: kpreempt-tech@lists.sourceforge.net
2366W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2367S: Supported
2368
2369PRISM54 WIRELESS DRIVER
2370P: Prism54 Development Team
2371M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002372L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373W: http://prism54.org
2374S: Maintained
2375
2376PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2377P: Peter Denison
2378M: promise@pnd-pc.demon.co.uk
2379W: http://www.pnd-pc.demon.co.uk/promise/
2380S: Maintained
2381
Michael Krufky83202042006-07-03 00:24:18 -07002382PVRUSB2 VIDEO4LINUX DRIVER
2383P: Mike Isely
2384M: isely@pobox.com
2385L: pvrusb2@isely.net
2386L: video4linux-list@redhat.com
2387W: http://www.isely.net/pvrusb2/
2388S: Maintained
2389
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390PXA2xx SUPPORT
2391P: Nicolas Pitre
2392M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002393L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394S: Maintained
2395
2396QLOGIC QLA2XXX FC-SCSI DRIVER
2397P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002398M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399L: linux-scsi@vger.kernel.org
2400S: Supported
2401
Ron Mercer5a4faa872006-07-25 00:40:21 -07002402QLOGIC QLA3XXX NETWORK DRIVER
2403P: Ron Mercer
2404M: linux-driver@qlogic.com
2405L: netdev@vger.kernel.org
2406S: Supported
2407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408QNX4 FILESYSTEM
2409P: Anders Larsen
2410M: al@alarsen.net
2411L: linux-kernel@vger.kernel.org
2412W: http://www.alarsen.net/linux/qnx4fs/
2413S: Maintained
2414
2415RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002416P: Benjamin Herrenschmidt
2417M: benh@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418L: linux-fbdev-devel@lists.sourceforge.net
2419S: Maintained
2420
2421RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002422P: Paul Mackerras
2423M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424L: linux-fbdev-devel@lists.sourceforge.net
2425S: Maintained
2426
2427RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2428P: Corey Thomas
2429M: corey@world.std.com
2430L: linux-kernel@vger.kernel.org
2431S: Maintained
2432
Matt Mackall9e95ce22005-04-16 15:25:56 -07002433RANDOM NUMBER DRIVER
2434P: Matt Mackall
2435M: mpm@selenic.com
2436S: Maintained
2437
Matt Porter394b7012005-11-07 01:00:15 -08002438RAPIDIO SUBSYSTEM
2439P: Matt Porter
2440M: mporter@kernel.crashing.org
2441L: linux-kernel@vger.kernel.org
2442S: Maintained
2443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444REAL TIME CLOCK DRIVER
2445P: Paul Gortmaker
2446M: p_gortmaker@yahoo.com
2447L: linux-kernel@vger.kernel.org
2448S: Maintained
2449
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002450REAL TIME CLOCK (RTC) SUBSYSTEM
2451P: Alessandro Zummo
2452M: a.zummo@towertech.it
2453L: linux-kernel@vger.kernel.org
2454S: Maintained
2455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456REISERFS FILE SYSTEM
2457P: Hans Reiser
2458M: reiserfs-dev@namesys.com
2459L: reiserfs-list@namesys.com
2460W: http://www.namesys.com
2461S: Supported
2462
2463ROCKETPORT DRIVER
2464P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465W: http://www.comtrol.com
2466S: Maintained
2467
2468ROSE NETWORK LAYER
2469P: Ralf Baechle
2470M: ralf@linux-mips.org
2471L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002472W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473S: Maintained
2474
2475RISCOM8 DRIVER
2476S: Orphan
2477
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002478S3 SAVAGE FRAMEBUFFER DRIVER
2479P: Antonino Daplas
2480M: adaplas@pol.net
2481L: linux-fbdev-devel@lists.sourceforge.net
2482S: Maintained
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484S390
2485P: Martin Schwidefsky
2486M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002487P: Heiko Carstens
2488M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489M: linux390@de.ibm.com
2490L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002491W: http://www.ibm.com/developerworks/linux/linux390/
2492S: Supported
2493
2494S390 NETWORK DRIVERS
2495P: Frank Pavlic
2496M: fpavlic@de.ibm.com
2497M: linux390@de.ibm.com
2498L: linux-390@vm.marist.edu
2499W: http://www.ibm.com/developerworks/linux/linux390/
2500S: Supported
2501
2502S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002503P: Swen Schillig
2504M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002505M: linux390@de.ibm.com
2506L: linux-390@vm.marist.edu
2507W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508S: Supported
2509
2510SAA7146 VIDEO4LINUX-2 DRIVER
2511P: Michael Hunold
2512M: michael@mihu.de
2513W: http://www.mihu.de/linux/saa7146
2514S: Maintained
2515
2516SBPCD CDROM DRIVER
2517P: Eberhard Moenkeberg
2518M: emoenke@gwdg.de
2519L: linux-kernel@vger.kernel.org
2520S: Maintained
2521
2522SC1200 WDT DRIVER
2523P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002524M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525S: Maintained
2526
2527SCHEDULER
2528P: Ingo Molnar
2529M: mingo@elte.hu
2530P: Robert Love [the preemptible kernel bits]
2531M: rml@tech9.net
2532L: linux-kernel@vger.kernel.org
2533S: Maintained
2534
2535SCSI CDROM DRIVER
2536P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002537M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538L: linux-scsi@vger.kernel.org
2539W: http://www.kernel.dk
2540S: Maintained
2541
2542SCSI SG DRIVER
2543P: Doug Gilbert
2544M: dgilbert@interlog.com
2545L: linux-scsi@vger.kernel.org
2546W: http://www.torque.net/sg
2547S: Maintained
2548
2549SCSI SUBSYSTEM
2550P: James E.J. Bottomley
2551M: James.Bottomley@SteelEye.com
2552L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002553T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554S: Maintained
2555
2556SCSI TAPE DRIVER
2557P: Kai Mäkisara
2558M: Kai.Makisara@kolumbus.fi
2559L: linux-scsi@vger.kernel.org
2560S: Maintained
2561
2562SCTP PROTOCOL
2563P: Sridhar Samudrala
2564M: sri@us.ibm.com
2565L: lksctp-developers@lists.sourceforge.net
2566S: Supported
2567
2568SCx200 CPU SUPPORT
2569P: Christer Weinigel
2570M: christer@weinigel.se
2571W: http://www.weinigel.se
2572S: Supported
2573
2574SECURITY CONTACT
2575P: Security Officers
2576M: security@kernel.org
2577S: Supported
2578
2579SELINUX SECURITY MODULE
2580P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002581M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002583M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584L: linux-kernel@vger.kernel.org (kernel issues)
2585L: selinux@tycho.nsa.gov (general discussion)
2586W: http://www.nsa.gov/selinux
2587S: Supported
2588
2589SERIAL ATA (SATA) SUBSYSTEM:
2590P: Jeff Garzik
2591M: jgarzik@pobox.com
2592L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002593T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594S: Supported
2595
2596SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2597P: Pat Gefre
2598M: pfg@sgi.com
2599L: linux-ia64@vger.kernel.org
2600S: Supported
2601
2602SGI VISUAL WORKSTATION 320 AND 540
2603P: Andrey Panin
2604M: pazke@donpac.ru
2605L: linux-visws-devel@lists.sf.net
2606W: http://linux-visws.sf.net
2607S: Maintained for 2.6.
2608
2609SIMTEC EB110ATX (Chalice CATS)
2610P: Ben Dooks
2611P: Vincent Sanders
2612M: support@simtec.co.uk
2613W: http://www.simtec.co.uk/products/EB110ATX/
2614S: Supported
2615
2616SIMTEC EB2410ITX (BAST)
2617P: Ben Dooks
2618P: Vincent Sanders
2619M: support@simtec.co.uk
2620W: http://www.simtec.co.uk/products/EB2410ITX/
2621S: Supported
2622
Francois Romieu92aab3c2005-07-30 13:11:18 +02002623SIS 190 ETHERNET DRIVER
2624P: Francois Romieu
2625M: romieu@fr.zoreil.com
2626L: netdev@vger.kernel.org
2627S: Maintained
2628
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629SIS 5513 IDE CONTROLLER DRIVER
2630P: Lionel Bouton
2631M: Lionel.Bouton@inet6.fr
2632W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2633W: http://gyver.homeip.net/sis5513/index.html
2634S: Maintained
2635
2636SIS 900/7016 FAST ETHERNET DRIVER
2637P: Daniele Venzano
2638M: venza@brownhat.org
2639W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002640L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641S: Maintained
2642
2643SIS FRAMEBUFFER DRIVER
2644P: Thomas Winischhofer
2645M: thomas@winischhofer.net
2646W: http://www.winischhofer.net/linuxsisvga.shtml
2647S: Maintained
2648
2649SIS USB2VGA DRIVER
2650P: Thomas Winischhofer
2651M: thomas@winischhofer.net
2652W: http://www.winischhofer.at/linuxsisusbvga.shtml
2653S: Maintained
2654
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655SMC91x ETHERNET DRIVER
2656P: Nicolas Pitre
2657M: nico@cam.org
2658S: Maintained
2659
Daniel Drake8f0f8502006-07-18 22:00:25 +01002660SOFTMAC LAYER (IEEE 802.11)
2661P: Johannes Berg
2662M: johannes@sipsolutions.net
2663P: Joe Jezak
2664M: josejx@gentoo.org
2665P: Daniel Drake
2666M: dsd@gentoo.org
2667W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002668L: netdev@vger.kernel.org
2669S: Maintained
2670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671SOFTWARE RAID (Multiple Disks) SUPPORT
2672P: Ingo Molnar
2673M: mingo@redhat.com
2674P: Neil Brown
2675M: neilb@cse.unsw.edu.au
2676L: linux-raid@vger.kernel.org
2677S: Maintained
2678
2679SOFTWARE SUSPEND:
2680P: Pavel Machek
2681M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002682L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683S: Maintained
2684
2685SONIC NETWORK DRIVER
2686P: Thomas Bogendoerfer
2687M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002688L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689S: Maintained
2690
2691SONY VAIO CONTROL DEVICE DRIVER
2692P: Stelian Pop
2693M: stelian@popies.net
2694W: http://popies.net/sonypi/
2695S: Maintained
2696
2697SOUND
2698P: Jaroslav Kysela
2699M: perex@suse.cz
2700L: alsa-devel@alsa-project.org
2701S: Maintained
2702
Kumar Gala025c3982006-04-02 16:05:54 -05002703SPI SUBSYSTEM
2704P: David Brownell
2705M: dbrownell@users.sourceforge.net
2706L: spi-devel-general@lists.sourceforge.net
2707S: Maintained
2708
Steven Rostedt855f46a2006-08-05 12:14:50 -07002709STABLE BRANCH:
2710P: Greg Kroah-Hartman
2711M: greg@kroah.com
2712P: Chris Wright
2713M: chrisw@sous-sol.org
2714L: stable@kernel.org
2715S: Maintained
2716
Kylene Hall1c72d462005-05-01 08:59:13 -07002717TPM DEVICE DRIVER
2718P: Kylene Hall
2719M: kjhall@us.ibm.com
2720W: http://tpmdd.sourceforge.net
2721L: tpmdd-devel@lists.sourceforge.net
2722S: Maintained
2723
Mark Gross1a80ba82005-10-30 15:02:55 -08002724Telecom Clock Driver for MCPL0010
2725P: Mark Gross
2726M: mark.gross@intel.com
2727S: Supported
2728
Chris Zankel48b415c2005-06-23 22:01:07 -07002729TENSILICA XTENSA PORT (xtensa):
2730P: Chris Zankel
2731M: chris@zankel.net
2732S: Maintained
2733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734UltraSPARC (sparc64):
2735P: David S. Miller
2736M: davem@davemloft.net
2737P: Eddie C. Dost
Eddie C. Dost90cdba62005-07-06 15:37:58 -07002738M: ecd@brainaid.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739P: Jakub Jelinek
2740M: jj@sunsite.ms.mff.cuni.cz
2741P: Anton Blanchard
2742M: anton@samba.org
2743L: sparclinux@vger.kernel.org
2744L: ultralinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002745T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746S: Maintained
2747
2748SHARP LH SUPPORT (LH7952X & LH7A40X)
2749P: Marc Singer
2750M: elf@buici.com
2751W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002752L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753S: Maintained
2754
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002755SHPC HOTPLUG DRIVER
2756P: Kristen Carlson Accardi
2757M: kristen.c.accardi@intel.com
2758L: pcihpd-discuss@lists.sourceforge.net
2759S: Maintained
2760
Pierre Ossmand129bce2006-03-24 03:18:17 -08002761SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2762P: Pierre Ossman
2763M: drzeus-sdhci@drzeus.cx
2764L: sdhci-devel@list.drzeus.cx
2765W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2766S: Maintained
2767
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002768SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2769P: Stephen Hemminger
2770M: shemminger@osdl.org
2771L: netdev@vger.kernel.org
2772S: Maintained
2773
Chris Boot1a87d942006-07-10 04:45:34 -07002774SOEKRIS NET48XX LED SUPPORT
2775P: Chris Boot
2776M: bootc@bootc.net
2777S: Maintained
2778
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779SPARC (sparc32):
2780P: William L. Irwin
2781M: wli@holomorphy.com
2782L: sparclinux@vger.kernel.org
2783S: Maintained
2784
2785SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2786P: Roger Wolff
2787M: R.E.Wolff@BitWizard.nl
2788L: linux-kernel@vger.kernel.org ?
2789S: Supported
2790
Jim Lewis2752e402006-09-29 02:01:19 -07002791SPIDERNET NETWORK DRIVER for CELL
2792P: Jim Lewis
2793M: jim@jklewis.com
2794L: netdev@vger.kernel.org
2795S: Supported
2796
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797SRM (Alpha) environment access
2798P: Jan-Benedict Glaw
2799M: jbglaw@lug-owl.de
2800L: linux-kernel@vger.kernel.org
2801S: Maintained
2802
2803STARFIRE/DURALAN NETWORK DRIVER
2804P: Ion Badulescu
2805M: ionut@cs.columbia.edu
2806S: Maintained
2807
2808STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2809W: http://mosquitonet.Stanford.EDU/strip.html
2810S: Unsupported ?
2811
2812STRADIS MPEG-2 DECODER DRIVER
2813P: Nathan Laredo
2814M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815W: http://www.stradis.com/
2816S: Maintained
2817
2818SUPERH (sh)
2819P: Paul Mundt
2820M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002821L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823S: Maintained
2824
2825SUPERH64 (sh64)
2826P: Paul Mundt
2827M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828L: linuxsh-shmedia-dev@lists.sourceforge.net
2829W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830S: Maintained
2831
2832SUN3/3X
2833P: Sam Creasey
2834M: sammy@sammy.net
2835L: sun3-list@redhat.com
2836W: http://sammy.net/sun3/
2837S: Maintained
2838
2839SVGA HANDLING
2840P: Martin Mares
2841M: mj@ucw.cz
2842L: linux-video@atrey.karlin.mff.cuni.cz
2843S: Maintained
2844
2845SYSV FILESYSTEM
2846P: Christoph Hellwig
2847M: hch@infradead.org
2848S: Maintained
2849
Stephen Hemminger781b456a2006-07-10 20:25:29 -07002850TC CLASSIFIER
2851P: Jamal Hadi Salim
2852M: hadi@cyberus.ca
2853L: netdev@vger.kernel.org
2854S: Maintained
2855
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002856TCP LOW PRIORITY MODULE
2857P: Wong Hoi Sing, Edison
2858M: hswong3i@gmail.com
2859P: Hung Hing Lun, Mike
2860M: hlhung3i@gmail.com
2861W: http://tcp-lp-mod.sourceforge.net/
2862S: Maintained
2863
Alex Dubov4020f2d2006-10-04 02:15:37 -07002864TI FLASH MEDIA INTERFACE DRIVER
2865P: Alex Dubov
2866M: oakad@yahoo.com
2867S: Maintained
2868
Michael Buesch844dd052006-06-26 00:24:59 -07002869TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2870P: Deepak Saxena
2871M: dsaxena@plexity.net
2872S: Maintained
2873
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002874TASKSTATS STATISTICS INTERFACE
2875P: Shailabh Nagar
2876M: nagar@watson.ibm.com
2877L: linux-kernel@vger.kernel.org
2878S: Maintained
2879
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880TI PARALLEL LINK CABLE DRIVER
2881P: Romain Lievin
2882M: roms@lpg.ticalc.org
2883S: Maintained
2884
Per Lidene86eaa32006-01-12 16:45:18 +01002885TIPC NETWORK LAYER
2886P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002887M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002888P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002889M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002890P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002891M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002892L: tipc-discussion@lists.sourceforge.net
2893W: http://tipc.sourceforge.net/
2894W: http://tipc.cslab.ericsson.net/
2895T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
2896S: Maintained
2897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898TLAN NETWORK DRIVER
2899P: Samuel Chessman
2900M: chessman@tux.org
2901L: tlan-devel@lists.sourceforge.net
2902W: http://sourceforge.net/projects/tlan/
2903S: Maintained
2904
2905TOKEN-RING NETWORK DRIVER
2906P: Mike Phillips
2907M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002908L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909L: linux-tr@linuxtr.net
2910W: http://www.linuxtr.net
2911S: Maintained
2912
2913TOSHIBA ACPI EXTRAS DRIVER
2914P: John Belmonte
2915M: toshiba_acpi@memebeam.org
2916W: http://memebeam.org/toys/ToshibaAcpiDriver
2917S: Maintained
2918
2919TOSHIBA SMM DRIVER
2920P: Jonathan Buzzard
2921M: jonathan@buzzard.org.uk
2922L: tlinux-users@tce.toshiba-dme.co.jp
2923W: http://www.buzzard.org.uk/toshiba/
2924S: Maintained
2925
2926TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
2927P: Muli Ben-Yehuda
2928M: mulix@mulix.org
2929L: linux-kernel@vger.kernel.org
2930S: Maintained
2931
2932TRIVIAL PATCHES
Adrian Bunk6dfca872005-11-06 21:31:01 +01002933P: Adrian Bunk
2934M: trivial@kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935L: linux-kernel@vger.kernel.org
Adrian Bunk6dfca872005-11-06 21:31:01 +01002936W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
Josh Boyer1adc1232005-11-23 15:44:15 -08002937T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938S: Maintained
2939
2940TMS380 TOKEN-RING NETWORK DRIVER
2941P: Adam Fritzler
2942M: mid@auk.cx
2943L: linux-tr@linuxtr.net
2944W: http://www.auk.cx/tms380tr/
2945S: Maintained
2946
2947TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07002948P: Valerie Henson
2949M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950L: tulip-users@lists.sourceforge.net
2951W: http://sourceforge.net/projects/tulip/
2952S: Maintained
2953
2954TUN/TAP driver
2955P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08002956M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957L: vtun@office.satix.net
2958W: http://vtun.sourceforge.net/tun
2959S: Maintained
2960
2961U14-34F SCSI DRIVER
2962P: Dario Ballabio
2963M: ballabio_dario@emc.com
2964L: linux-scsi@vger.kernel.org
2965S: Maintained
2966
2967UDF FILESYSTEM
2968P: Ben Fennema
2969M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970W: http://linux-udf.sourceforge.net
2971S: Maintained
2972
2973UNIFORM CDROM DRIVER
2974P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002975M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976L: linux-kernel@vger.kernel.org
2977W: http://www.kernel.dk
2978S: Maintained
2979
2980USB ACM DRIVER
2981P: Oliver Neukum
2982M: oliver@neukum.name
2983L: linux-usb-users@lists.sourceforge.net
2984L: linux-usb-devel@lists.sourceforge.net
2985S: Maintained
2986
2987USB BLOCK DRIVER (UB ub)
2988P: Pete Zaitcev
2989M: zaitcev@redhat.com
2990L: linux-kernel@vger.kernel.org
2991L: linux-usb-devel@lists.sourceforge.net
2992S: Supported
2993
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994USB CDC ETHERNET DRIVER
2995P: Greg Kroah-Hartman
2996M: greg@kroah.com
2997L: linux-usb-users@lists.sourceforge.net
2998L: linux-usb-devel@lists.sourceforge.net
2999S: Maintained
3000W: http://www.kroah.com/linux-usb/
3001
3002USB EHCI DRIVER
3003P: David Brownell
3004M: dbrownell@users.sourceforge.net
3005L: linux-usb-devel@lists.sourceforge.net
3006S: Maintained
3007
Luca Risolia7ce08c92006-01-11 02:06:59 +00003008USB ET61X[12]51 DRIVER
3009P: Luca Risolia
3010M: luca.risolia@studio.unibo.it
3011L: linux-usb-devel@lists.sourceforge.net
3012L: video4linux-list@redhat.com
3013W: http://www.linux-projects.org
3014S: Maintained
3015
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016USB HID/HIDBP DRIVERS
3017P: Vojtech Pavlik
3018M: vojtech@suse.cz
3019L: linux-usb-users@lists.sourceforge.net
3020L: linux-usb-devel@lists.sourceforge.net
3021S: Maintained
3022
3023USB HUB DRIVER
3024P: Johannes Erdfelt
3025M: johannes@erdfelt.com
3026L: linux-usb-users@lists.sourceforge.net
3027L: linux-usb-devel@lists.sourceforge.net
3028S: Maintained
3029
Olav Kongas959eea22005-11-03 17:38:14 +02003030USB ISP116X DRIVER
3031P: Olav Kongas
3032M: ok@artecdesign.ee
3033L: linux-usb-devel@lists.sourceforge.net
3034S: Maintained
3035
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036USB KAWASAKI LSI DRIVER
3037P: Oliver Neukum
3038M: oliver@neukum.name
3039L: linux-usb-users@lists.sourceforge.net
3040L: linux-usb-devel@lists.sourceforge.net
3041S: Maintained
3042
3043USB MASS STORAGE DRIVER
3044P: Matthew Dharm
3045M: mdharm-usb@one-eyed-alien.net
3046L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003047L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048S: Maintained
3049W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3050
3051USB OHCI DRIVER
3052P: Roman Weissgaerber
3053M: weissg@vienna.at
3054L: linux-usb-users@lists.sourceforge.net
3055L: linux-usb-devel@lists.sourceforge.net
3056S: Maintained
3057
Matthias Urlichsba460e42005-07-14 00:33:47 -07003058USB OPTION-CARD DRIVER
3059P: Matthias Urlichs
3060M: smurf@smurf.noris.de
3061L: linux-usb-devel@lists.sourceforge.net
3062S: Maintained
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064USB OV511 DRIVER
3065P: Mark McClelland
3066M: mmcclell@bigfoot.com
3067L: linux-usb-users@lists.sourceforge.net
3068L: linux-usb-devel@lists.sourceforge.net
3069W: http://alpha.dyndns.org/ov511/
3070S: Maintained
3071
3072USB PEGASUS DRIVER
3073P: Petko Manolov
3074M: petkan@users.sourceforge.net
3075L: linux-usb-users@lists.sourceforge.net
3076L: linux-usb-devel@lists.sourceforge.net
3077W: http://pegasus2.sourceforge.net/
3078S: Maintained
3079
3080USB PRINTER DRIVER
3081P: Vojtech Pavlik
3082M: vojtech@suse.cz
3083L: linux-usb-users@lists.sourceforge.net
3084L: linux-usb-devel@lists.sourceforge.net
3085S: Maintained
3086
3087USB RTL8150 DRIVER
3088P: Petko Manolov
3089M: petkan@users.sourceforge.net
3090L: linux-usb-users@lists.sourceforge.net
3091L: linux-usb-devel@lists.sourceforge.net
3092W: http://pegasus2.sourceforge.net/
3093S: Maintained
3094
3095USB SE401 DRIVER
3096P: Jeroen Vreeken
3097M: pe1rxq@amsat.org
3098L: linux-usb-users@lists.sourceforge.net
3099L: linux-usb-devel@lists.sourceforge.net
3100W: http://www.chello.nl/~j.vreeken/se401/
3101S: Maintained
3102
3103USB SERIAL CYBERJACK DRIVER
3104P: Matthias Bruestle and Harald Welte
3105M: support@reiner-sct.com
3106W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3107S: Maintained
3108
3109USB SERIAL DIGI ACCELEPORT DRIVER
3110P: Peter Berger and Al Borchers
3111M: pberger@brimson.com
3112M: alborchers@steinerpoint.com
3113L: linux-usb-users@lists.sourceforge.net
3114L: linux-usb-devel@lists.sourceforge.net
3115S: Maintained
3116
3117USB SERIAL DRIVER
3118P: Greg Kroah-Hartman
3119M: gregkh@suse.de
3120L: linux-usb-users@lists.sourceforge.net
3121L: linux-usb-devel@lists.sourceforge.net
3122S: Supported
3123
3124USB SERIAL BELKIN F5U103 DRIVER
3125P: William Greathouse
3126M: wgreathouse@smva.com
3127L: linux-usb-users@lists.sourceforge.net
3128L: linux-usb-devel@lists.sourceforge.net
3129S: Maintained
3130
3131USB SERIAL CYPRESS M8 DRIVER
3132P: Lonnie Mendez
3133M: dignome@gmail.com
3134L: linux-usb-users@lists.sourceforge.net
3135L: linux-usb-devel@lists.sourceforge.net
3136S: Maintained
3137W: http://geocities.com/i0xox0i
3138W: http://firstlight.net/cvs
3139
3140USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3141L: linux-usb-users@lists.sourceforge.net
3142L: linux-usb-devel@lists.sourceforge.net
3143S: Maintained
3144
3145USB AUERSWALD DRIVER
3146P: Wolfgang Muees
3147M: wolfgang@iksw-muees.de
3148L: linux-usb-users@lists.sourceforge.net
3149L: linux-usb-devel@lists.sourceforge.net
3150S: Maintained
3151
3152USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3153P: Gary Brubaker
3154M: xavyer@ix.netcom.com
3155L: linux-usb-users@lists.sourceforge.net
3156L: linux-usb-devel@lists.sourceforge.net
3157S: Maintained
3158
3159USB SERIAL KEYSPAN DRIVER
3160P: Greg Kroah-Hartman
3161M: greg@kroah.com
3162L: linux-usb-users@lists.sourceforge.net
3163L: linux-usb-devel@lists.sourceforge.net
3164W: http://www.kroah.com/linux/
3165S: Maintained
3166
3167USB SERIAL WHITEHEAT DRIVER
3168P: Stuart MacDonald
3169M: stuartm@connecttech.com
3170L: linux-usb-users@lists.sourceforge.net
3171L: linux-usb-devel@lists.sourceforge.net
3172W: http://www.connecttech.com
3173S: Supported
3174
3175USB SN9C10x DRIVER
3176P: Luca Risolia
3177M: luca.risolia@studio.unibo.it
3178L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003179L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180W: http://www.linux-projects.org
3181S: Maintained
3182
3183USB SUBSYSTEM
3184P: Greg Kroah-Hartman
3185M: gregkh@suse.de
3186L: linux-usb-users@lists.sourceforge.net
3187L: linux-usb-devel@lists.sourceforge.net
3188W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003189T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190S: Supported
3191
3192USB UHCI DRIVER
3193P: Alan Stern
3194M: stern@rowland.harvard.edu
3195L: linux-usb-users@lists.sourceforge.net
3196L: linux-usb-devel@lists.sourceforge.net
3197S: Maintained
3198
3199USB "USBNET" DRIVER
3200P: David Brownell
3201M: dbrownell@users.sourceforge.net
3202L: linux-usb-devel@lists.sourceforge.net
3203S: Maintained
3204
3205USB W996[87]CF DRIVER
3206P: Luca Risolia
3207M: luca.risolia@studio.unibo.it
3208L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003209L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210W: http://www.linux-projects.org
3211S: Maintained
3212
Luca Risolia60f78052006-02-06 16:29:35 +00003213USB ZC0301 DRIVER
3214P: Luca Risolia
3215M: luca.risolia@studio.unibo.it
3216L: linux-usb-devel@lists.sourceforge.net
3217L: video4linux-list@redhat.com
3218W: http://www.linux-projects.org
3219S: Maintained
3220
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221USB ZD1201 DRIVER
3222P: Jeroen Vreeken
3223M: pe1rxq@amsat.org
3224L: linux-usb-users@lists.sourceforge.net
3225L: linux-usb-devel@lists.sourceforge.net
3226W: http://linux-lc100020.sourceforge.net
3227S: Maintained
3228
3229USER-MODE LINUX
3230P: Jeff Dike
3231M: jdike@karaya.com
3232L: user-mode-linux-devel@lists.sourceforge.net
3233L: user-mode-linux-user@lists.sourceforge.net
3234W: http://user-mode-linux.sourceforge.net
3235S: Maintained
3236
3237FAT/VFAT/MSDOS FILESYSTEM:
3238P: OGAWA Hirofumi
3239M: hirofumi@mail.parknet.co.jp
3240L: linux-kernel@vger.kernel.org
3241S: Maintained
3242
3243VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3244P: Jeff Garzik
3245S: Odd fixes
3246
3247VIA RHINE NETWORK DRIVER
3248P: Roger Luethi
3249M: rl@hellgate.ch
3250S: Maintained
3251
Jean Delvare32c0a522005-09-22 21:47:58 +02003252VIAPRO SMBUS DRIVER
3253P: Jean Delvare
3254M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003255L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003256S: Maintained
3257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258UCLINUX (AND M68KNOMMU)
3259P: Greg Ungerer
3260M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003262L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263S: Maintained
3264
3265UCLINUX FOR NEC V850
3266P: Miles Bader
3267M: uclinux-v850@lsi.nec.co.jp
3268W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3269W: http://www.ee.nec.de/uclinux/
3270S: Supported
3271
3272UCLINUX FOR RENESAS H8/300
3273P: Yoshinori Sato
3274M: ysato@users.sourceforge.jp
3275W: http://uclinux-h8.sourceforge.jp/
3276S: Supported
3277
3278USB DIAMOND RIO500 DRIVER
3279P: Cesar Miquel
3280M: miquel@df.uba.ar
3281L: rio500-users@lists.sourceforge.net
3282W: http://rio500.sourceforge.net
3283S: Maintained
3284
3285VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003286P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003287M: mchehab@infradead.org
3288M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003290W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003291T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003292S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293
Juerg Haefligerab413192006-09-24 20:54:04 +02003294VT1211 HARDWARE MONITOR DRIVER
3295P: Juerg Haefliger
3296M: juergh@gmail.com
3297L: lm-sensors@lm-sensors.org
3298S: Maintained
3299
Roger Lucas1de9e372005-11-26 20:20:05 +01003300VT8231 HARDWARE MONITOR DRIVER
3301P: Roger Lucas
3302M: roger@planbit.co.uk
3303L: lm-sensors@lm-sensors.org
3304S: Maintained
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306W1 DALLAS'S 1-WIRE BUS
3307P: Evgeniy Polyakov
3308M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309S: Maintained
3310
Charles Spirakis13927072006-07-05 18:05:15 +02003311W83791D HARDWARE MONITORING DRIVER
3312P: Charles Spirakis
3313M: bezaur@gmail.com
3314L: lm-sensors@lm-sensors.org
3315S: Maintained
3316
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317W83L51xD SD/MMC CARD INTERFACE DRIVER
3318P: Pierre Ossman
3319M: drzeus-wbsd@drzeus.cx
3320L: wbsd-devel@list.drzeus.cx
3321W: http://projects.drzeus.cx/wbsd
3322S: Maintained
3323
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003324WATCHDOG DEVICE DRIVERS
3325P: Wim Van Sebroeck
3326M: wim@iguana.be
3327T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3328S: Maintained
3329
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3331P: Jean Tourrilhes
3332M: jt@hpl.hp.com
3333W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3334S: Maintained
3335
3336WD7000 SCSI DRIVER
3337P: Miroslav Zagorac
3338M: zaga@fly.cc.fer.hr
3339L: linux-scsi@vger.kernel.org
3340S: Maintained
3341
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003342WISTRON LAPTOP BUTTON DRIVER
3343P: Miloslav Trmac
3344M: mitr@volny.cz
3345S: Maintained
3346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347WL3501 WIRELESS PCMCIA CARD DRIVER
3348P: Arnaldo Carvalho de Melo
3349M: acme@conectiva.com.br
3350W: http://advogato.org/person/acme
3351S: Maintained
3352
3353X.25 NETWORK LAYER
3354P: Henner Eisen
3355M: eis@baty.hanse.de
3356L: linux-x25@vger.kernel.org
3357S: Maintained
3358
3359XFS FILESYSTEM
3360P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003361P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003363L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003365T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366S: Supported
3367
3368X86 3-LEVEL PAGING (PAE) SUPPORT
3369P: Ingo Molnar
3370M: mingo@redhat.com
3371S: Maintained
3372
3373X86-64 port
3374P: Andi Kleen
3375M: ak@suse.de
3376L: discuss@x86-64.org
3377W: http://www.x86-64.org
3378S: Maintained
3379
3380YAM DRIVER FOR AX.25
3381P: Jean-Paul Roubelat
3382M: jpr@f6fbb.org
3383L: linux-hams@vger.kernel.org
3384S: Maintained
3385
Henkaf64a5e2005-10-12 15:02:56 +02003386YEALINK PHONE DRIVER
3387P: Henk Vergonet
3388M: Henk.Vergonet@gmail.com
3389L: usbb2k-api-dev@nongnu.org
3390S: Maintained
3391
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392YMFPCI YAMAHA PCI SOUND (Use ALSA instead)
3393P: Pete Zaitcev
3394M: zaitcev@yahoo.com
3395L: linux-kernel@vger.kernel.org
3396S: Obsolete
3397
3398Z8530 DRIVER FOR AX.25
3399P: Joerg Reuter
3400M: jreuter@yaina.de
3401W: http://yaina.de/jreuter/
3402W: http://www.qsl.net/dl1bke/
3403L: linux-hams@vger.kernel.org
3404S: Maintained
3405
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003406ZD1211RW WIRELESS DRIVER
3407P: Daniel Drake
3408M: dsd@gentoo.org
3409P: Ulrich Kunitz
3410M: kune@deine-taler.de
3411W: http://zd1211.ath.cx/wiki/DriverRewrite
3412L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3413S: Maintained
3414
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415ZF MACHZ WATCHDOG
3416P: Fernando Fuganti
3417M: fuganti@netbank.com.br
3418W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3419S: Maintained
3420
3421ZR36067 VIDEO FOR LINUX DRIVER
3422P: Ronald Bultje
3423M: rbultje@ronald.bitfreak.net
3424L: mjpeg-users@lists.sourceforge.net
3425W: http://mjpeg.sourceforge.net/driver-zoran/
3426S: Maintained
3427
3428ZR36120 VIDEO FOR LINUX DRIVER
3429P: Pauline Middelink
3430M: middelin@polyware.nl
3431W: http://www.polyware.nl/~middelin/En/hobbies.html
3432W: http://www.polyware.nl/~middelin/hobbies.html
3433S: Maintained
3434
3435THE REST
3436P: Linus Torvalds
3437S: Buried alive in reporters