blob: 8c35b3c503aa842e0258a949f2ef8633e541db01 [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
Michael Kerriskfaf16682005-07-31 22:34:47 -07001903MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
1904P: Michael Kerrisk
1905M: mtk-manpages@gmx.net
1906W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1907S: Maintained
1908
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001909MARVELL MV643XX ETHERNET DRIVER
1910P: Dale Farnsworth
1911M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001913M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001914L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001915S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917MATROX FRAMEBUFFER DRIVER
1918P: Petr Vandrovec
1919M: vandrove@vc.cvut.cz
1920L: linux-fbdev-devel@lists.sourceforge.net
1921S: Maintained
1922
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001923MEGARAID SCSI DRIVERS
1924P: Neela Syam Kolli
1925M: Neela.Kolli@engenio.com
1926S: linux-scsi@vger.kernel.org
1927W: http://megaraid.lsilogic.com
1928S: Maintained
1929
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001930MEMORY MANAGEMENT
1931L: linux-mm@kvack.org
1932L: linux-kernel@vger.kernel.org
1933W: http://www.linux-mm.org
1934S: Maintained
1935
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001936MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937P: David Woodhouse
1938M: dwmw2@infradead.org
1939W: http://www.linux-mtd.infradead.org/
1940L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001941T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942S: Maintained
1943
1944MICROTEK X6 SCANNER
1945P: Oliver Neukum
1946M: oliver@neukum.name
1947S: Maintained
1948
1949MIPS
1950P: Ralf Baechle
1951M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01001952W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00001954T: git www.linux-mips.org:/pub/scm/linux.git
1955S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957MISCELLANEOUS MCA-SUPPORT
1958P: James Bottomley
1959M: jejb@steeleye.com
1960L: linux-kernel@vger.kernel.org
1961S: Maintained
1962
1963MODULE SUPPORT
1964P: Rusty Russell
1965M: rusty@rustcorp.com.au
1966L: linux-kernel@vger.kernel.org
1967S: Maintained
1968
1969MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
1970P: Stelian Pop
1971M: stelian@popies.net
1972W: http://popies.net/meye/
1973S: Maintained
1974
1975MOUSE AND MISC DEVICES [GENERAL]
1976P: Alessandro Rubini
1977M: rubini@ipvvis.unipv.it
1978L: linux-kernel@vger.kernel.org
1979S: Maintained
1980
1981MTRR AND SIMILAR SUPPORT [i386]
1982P: Richard Gooch
1983M: rgooch@atnf.csiro.au
1984L: linux-kernel@vger.kernel.org
1985W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
1986S: Maintained
1987
Russell King12223da2006-06-15 13:28:52 +01001988MULTIMEDIA CARD (MMC) SUBSYSTEM
Russell King353cefd2006-10-03 17:36:11 +01001989S: Orphan
Russell Kingbaca2da2006-06-04 17:36:31 +01001990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991MULTISOUND SOUND DRIVER
1992P: Andrew Veliath
1993M: andrewtv@usa.net
1994S: Maintained
1995
1996NATSEMI ETHERNET DRIVER (DP8381x)
1997P: Tim Hockin
1998M: thockin@hockin.org
1999S: Maintained
2000
2001NCP FILESYSTEM
2002P: Petr Vandrovec
2003M: vandrove@vc.cvut.cz
2004L: linware@sh.cvut.cz
2005S: Maintained
2006
2007NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2008P: James E.J. Bottomley
2009M: James.Bottomley@HansenPartnership.com
2010L: linux-scsi@vger.kernel.org
2011S: Maintained
2012
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002013NETEM NETWORK EMULATOR
2014P: Stephen Hemminger
2015M: shemminger@osdl.org
2016L: netem@osdl.org
2017S: Maintained
2018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019NETFILTER/IPTABLES/IPCHAINS
2020P: Rusty Russell
2021P: Marc Boucher
2022P: James Morris
2023P: Harald Welte
2024P: Jozsef Kadlecsik
2025M: coreteam@netfilter.org
2026W: http://www.netfilter.org/
2027W: http://www.iptables.org/
2028L: netfilter@lists.netfilter.org
2029L: netfilter-devel@lists.netfilter.org
2030S: Supported
2031
Paul Moore4cc67732006-09-25 15:57:13 -07002032NETLABEL
2033P: Paul Moore
2034M: paul.moore@hp.com
2035W: http://netlabel.sf.net
2036L: netdev@vger.kernel.org
2037S: Supported
2038
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039NETROM NETWORK LAYER
2040P: Ralf Baechle
2041M: ralf@linux-mips.org
2042L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002043W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044S: Maintained
2045
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002046NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047P: Paul Clements
2048M: Paul.Clements@steeleye.com
2049S: Maintained
2050
2051NETWORK DEVICE DRIVERS
2052P: Andrew Morton
2053M: akpm@osdl.org
2054P: Jeff Garzik
2055M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002056L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002057T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058S: Maintained
2059
2060NETWORKING [GENERAL]
2061P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002062M: netdev@vger.kernel.org
2063L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002064W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065S: Maintained
2066
2067NETWORKING [IPv4/IPv6]
2068P: David S. Miller
2069M: davem@davemloft.net
2070P: Alexey Kuznetsov
2071M: kuznet@ms2.inr.ac.ru
2072P: Pekka Savola (ipv6)
2073M: pekkas@netcore.fi
2074P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002075M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076P: Hideaki YOSHIFUJI
2077M: yoshfuji@linux-ipv6.org
2078P: Patrick McHardy
2079M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002080L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002081T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082S: Maintained
2083
John W. Linville29f8f632006-01-18 14:52:48 -08002084NETWORKING [WIRELESS]
2085P: John W. Linville
2086M: linville@tuxdriver.com
2087L: netdev@vger.kernel.org
2088T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2089S: Maintained
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091IPVS
2092P: Wensong Zhang
2093M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002094P: Simon Horman
2095M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096P: Julian Anastasov
2097M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002098L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099S: Maintained
2100
2101NFS CLIENT
2102P: Trond Myklebust
2103M: trond.myklebust@fys.uio.no
2104L: linux-kernel@vger.kernel.org
2105S: Maintained
2106
2107NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002108P: Jan-Pascal van Best
2109M: janpascal@vanbest.org
2110P: Andreas Mohr
2111M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002112L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113S: Maintained
2114
2115NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2116P: YOKOTA Hiroshi
2117M: yokota@netlab.is.tsukuba.ac.jp
2118W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2119S: Maintained
2120
2121NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2122P: GOTO Masanori
2123M: gotom@debian.or.jp
2124P: YOKOTA Hiroshi
2125M: yokota@netlab.is.tsukuba.ac.jp
2126W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2127S: Maintained
2128
2129NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2130P: Eberhard Moenkeberg
2131M: emoenke@gwdg.de
2132L: linux-kernel@vger.kernel.org
2133S: Maintained
2134
2135NTFS FILESYSTEM
2136P: Anton Altaparmakov
2137M: aia21@cantab.net
2138L: linux-ntfs-dev@lists.sourceforge.net
2139L: linux-kernel@vger.kernel.org
2140W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002141T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142S: Maintained
2143
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002144NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
2145P: Antonino Daplas
2146M: adaplas@pol.net
2147L: linux-fbdev-devel@lists.sourceforge.net
2148S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002150OPENCORES I2C BUS DRIVER
2151P: Peter Korsgaard
2152M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002153L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002154S: Maintained
2155
Mark Fashehccd979b2005-12-15 14:31:24 -08002156ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2157P: Mark Fasheh
2158M: mark.fasheh@oracle.com
2159P: Kurt Hackel
2160M: kurt.hackel@oracle.com
2161L: ocfs2-devel@oss.oracle.com
2162W: http://oss.oracle.com/projects/ocfs2/
2163S: Supported
2164
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165OLYMPIC NETWORK DRIVER
2166P: Peter De Shrijver
2167M: p2@ace.ulyssis.student.kuleuven.ac.be
2168P: Mike Phillips
2169M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002170L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171L: linux-tr@linuxtr.net
2172W: http://www.linuxtr.net
2173S: Maintained
2174
Harald Weltec1986ee2005-11-13 16:06:29 -08002175OMNIKEY CARDMAN 4000 DRIVER
2176P: Harald Welte
2177M: laforge@gnumonks.org
2178S: Maintained
2179
Harald Welte77c44ab2005-11-13 16:06:26 -08002180OMNIKEY CARDMAN 4040 DRIVER
2181P: Harald Welte
2182M: laforge@gnumonks.org
2183S: Maintained
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185ONSTREAM SCSI TAPE DRIVER
2186P: Willem Riede
2187M: osst@riede.org
2188L: osst-users@lists.sourceforge.net
2189L: linux-scsi@vger.kernel.org
2190S: Maintained
2191
2192OPL3-SA2, SA3, and SAx DRIVER
2193P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002194M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195L: linux-sound@vger.kernel.org
2196S: Maintained
2197
2198OPROFILE
2199P: Philippe Elie
2200M: phil.el@wanadoo.fr
2201L: oprofile-list@lists.sf.net
2202S: Maintained
2203
2204ORINOCO DRIVER
2205P: Pavel Roskin
2206M: proski@gnu.org
2207P: David Gibson
2208M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002209L: orinoco-users@lists.sourceforge.net
2210L: orinoco-devel@lists.sourceforge.net
2211W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212S: Maintained
2213
2214PARALLEL PORT SUPPORT
2215P: Phil Blundell
2216M: philb@gnu.org
2217P: Tim Waugh
2218M: tim@cyberelk.net
2219P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220P: Andrea Arcangeli
2221M: andrea@suse.de
2222L: linux-parport@lists.infradead.org
2223W: http://people.redhat.com/twaugh/parport/
2224S: Maintained
2225
2226PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2227P: Tim Waugh
2228M: tim@cyberelk.net
2229L: linux-parport@lists.infradead.org
2230W: http://www.torque.net/linux-pp.html
2231S: Maintained
2232
2233PARISC ARCHITECTURE
2234P: Matthew Wilcox
2235M: matthew@wil.cx
2236P: Grant Grundler
2237M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002238P: Kyle McMartin
2239M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240L: parisc-linux@parisc-linux.org
2241W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002242T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2243T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244S: Maintained
2245
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002246PCI ERROR RECOVERY
2247P: Linas Vepstas
2248M: linas@austin.ibm.com
2249L: linux-kernel@vger.kernel.org
2250L: linux-pci@atrey.karlin.mff.cuni.cz
2251S: Supported
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2254P: Thomas Sailer
2255M: sailer@ife.ee.ethz.ch
2256L: linux-sound@vger.kernel.org
2257W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2258S: Maintained
2259
2260PCI SUBSYSTEM
2261P: Greg Kroah-Hartman
2262M: gregkh@suse.de
2263L: linux-kernel@vger.kernel.org
2264L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002265T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266S: Supported
2267
2268PCI HOTPLUG CORE
2269P: Greg Kroah-Hartman
2270M: gregkh@suse.de
2271S: Supported
2272
2273PCI HOTPLUG COMPAQ DRIVER
2274P: Greg Kroah-Hartman
2275M: greg@kroah.com
2276S: Maintained
2277
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002278PCIE HOTPLUG DRIVER
2279P: Kristen Carlson Accardi
2280M: kristen.c.accardi@intel.com
2281L: pcihpd-discuss@lists.sourceforge.net
2282S: Maintained
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002285P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002286L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002288T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002289S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
2291PCNET32 NETWORK DRIVER
2292P: Thomas Bogendörfer
2293M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002294L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295S: Maintained
2296
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002297PER-TASK DELAY ACCOUNTING
2298P: Shailabh Nagar
2299M: nagar@watson.ibm.com
2300L: linux-kernel@vger.kernel.org
2301S: Maintained
2302
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002303PERSONALITY HANDLING
2304P: Christoph Hellwig
2305M: hch@infradead.org
2306L: linux-abi-devel@lists.sourceforge.net
2307S: Maintained
2308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309PHRAM MTD DRIVER
2310P: Jörn Engel
2311M: joern@wh.fh-wedel.de
2312L: linux-mtd@lists.infradead.org
2313S: Maintained
2314
Peter Osterlund249a6772005-09-27 21:45:30 -07002315PKTCDVD DRIVER
2316P: Peter Osterlund
2317M: petero2@telia.com
2318L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002319S: Maintained
2320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321POSIX CLOCKS and TIMERS
2322P: George Anzinger
2323M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002324L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325S: Supported
2326
Eugene Surovegin24682972005-10-14 03:00:53 -07002327POWERPC 4xx EMAC DRIVER
2328P: Eugene Surovegin
2329M: ebs@ebshome.net
2330W: http://kernel.ebshome.net/emac/
2331L: linuxppc-embedded@ozlabs.org
2332L: netdev@vger.kernel.org
2333S: Maintained
2334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335PNP SUPPORT
2336P: Adam Belay
2337M: ambx1@neo.rr.com
2338S: Maintained
2339
2340PPP PROTOCOL DRIVERS AND COMPRESSORS
2341P: Paul Mackerras
2342M: paulus@samba.org
2343L: linux-ppp@vger.kernel.org
2344S: Maintained
2345
2346PPP OVER ATM (RFC 2364)
2347P: Mitchell Blank Jr
2348M: mitch@sfgoth.com
2349S: Maintained
2350
2351PPP OVER ETHERNET
2352P: Michal Ostrowski
2353M: mostrows@speakeasy.net
2354S: Maintained
2355
2356PREEMPTIBLE KERNEL
2357P: Robert Love
2358M: rml@tech9.net
2359L: linux-kernel@vger.kernel.org
2360L: kpreempt-tech@lists.sourceforge.net
2361W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2362S: Supported
2363
2364PRISM54 WIRELESS DRIVER
2365P: Prism54 Development Team
2366M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002367L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368W: http://prism54.org
2369S: Maintained
2370
2371PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2372P: Peter Denison
2373M: promise@pnd-pc.demon.co.uk
2374W: http://www.pnd-pc.demon.co.uk/promise/
2375S: Maintained
2376
Michael Krufky83202042006-07-03 00:24:18 -07002377PVRUSB2 VIDEO4LINUX DRIVER
2378P: Mike Isely
2379M: isely@pobox.com
2380L: pvrusb2@isely.net
2381L: video4linux-list@redhat.com
2382W: http://www.isely.net/pvrusb2/
2383S: Maintained
2384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385PXA2xx SUPPORT
2386P: Nicolas Pitre
2387M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002388L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389S: Maintained
2390
2391QLOGIC QLA2XXX FC-SCSI DRIVER
2392P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002393M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394L: linux-scsi@vger.kernel.org
2395S: Supported
2396
Ron Mercer5a4faa872006-07-25 00:40:21 -07002397QLOGIC QLA3XXX NETWORK DRIVER
2398P: Ron Mercer
2399M: linux-driver@qlogic.com
2400L: netdev@vger.kernel.org
2401S: Supported
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403QNX4 FILESYSTEM
2404P: Anders Larsen
2405M: al@alarsen.net
2406L: linux-kernel@vger.kernel.org
2407W: http://www.alarsen.net/linux/qnx4fs/
2408S: Maintained
2409
2410RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002411P: Benjamin Herrenschmidt
2412M: benh@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413L: linux-fbdev-devel@lists.sourceforge.net
2414S: Maintained
2415
2416RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002417P: Paul Mackerras
2418M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419L: linux-fbdev-devel@lists.sourceforge.net
2420S: Maintained
2421
2422RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2423P: Corey Thomas
2424M: corey@world.std.com
2425L: linux-kernel@vger.kernel.org
2426S: Maintained
2427
Matt Mackall9e95ce22005-04-16 15:25:56 -07002428RANDOM NUMBER DRIVER
2429P: Matt Mackall
2430M: mpm@selenic.com
2431S: Maintained
2432
Matt Porter394b7012005-11-07 01:00:15 -08002433RAPIDIO SUBSYSTEM
2434P: Matt Porter
2435M: mporter@kernel.crashing.org
2436L: linux-kernel@vger.kernel.org
2437S: Maintained
2438
Josh Triplett595182b2006-10-04 02:17:21 -07002439READ-COPY UPDATE (RCU)
2440P: Dipankar Sarma
2441M: dipankar@in.ibm.com
2442W: http://www.rdrop.com/users/paulmck/rclock/
2443L: linux-kernel@vger.kernel.org
2444S: Supported
2445
2446RCUTORTURE MODULE
2447P: Josh Triplett
2448M: josh@freedesktop.org
2449L: linux-kernel@vger.kernel.org
2450S: Maintained
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452REAL TIME CLOCK DRIVER
2453P: Paul Gortmaker
2454M: p_gortmaker@yahoo.com
2455L: linux-kernel@vger.kernel.org
2456S: Maintained
2457
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002458REAL TIME CLOCK (RTC) SUBSYSTEM
2459P: Alessandro Zummo
2460M: a.zummo@towertech.it
2461L: linux-kernel@vger.kernel.org
2462S: Maintained
2463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464REISERFS FILE SYSTEM
2465P: Hans Reiser
2466M: reiserfs-dev@namesys.com
2467L: reiserfs-list@namesys.com
2468W: http://www.namesys.com
2469S: Supported
2470
2471ROCKETPORT DRIVER
2472P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473W: http://www.comtrol.com
2474S: Maintained
2475
2476ROSE NETWORK LAYER
2477P: Ralf Baechle
2478M: ralf@linux-mips.org
2479L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002480W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481S: Maintained
2482
2483RISCOM8 DRIVER
2484S: Orphan
2485
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002486S3 SAVAGE FRAMEBUFFER DRIVER
2487P: Antonino Daplas
2488M: adaplas@pol.net
2489L: linux-fbdev-devel@lists.sourceforge.net
2490S: Maintained
2491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492S390
2493P: Martin Schwidefsky
2494M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002495P: Heiko Carstens
2496M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497M: linux390@de.ibm.com
2498L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002499W: http://www.ibm.com/developerworks/linux/linux390/
2500S: Supported
2501
2502S390 NETWORK DRIVERS
2503P: Frank Pavlic
2504M: fpavlic@de.ibm.com
2505M: linux390@de.ibm.com
2506L: linux-390@vm.marist.edu
2507W: http://www.ibm.com/developerworks/linux/linux390/
2508S: Supported
2509
2510S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002511P: Swen Schillig
2512M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002513M: linux390@de.ibm.com
2514L: linux-390@vm.marist.edu
2515W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516S: Supported
2517
2518SAA7146 VIDEO4LINUX-2 DRIVER
2519P: Michael Hunold
2520M: michael@mihu.de
2521W: http://www.mihu.de/linux/saa7146
2522S: Maintained
2523
2524SBPCD CDROM DRIVER
2525P: Eberhard Moenkeberg
2526M: emoenke@gwdg.de
2527L: linux-kernel@vger.kernel.org
2528S: Maintained
2529
2530SC1200 WDT DRIVER
2531P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002532M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533S: Maintained
2534
2535SCHEDULER
2536P: Ingo Molnar
2537M: mingo@elte.hu
2538P: Robert Love [the preemptible kernel bits]
2539M: rml@tech9.net
2540L: linux-kernel@vger.kernel.org
2541S: Maintained
2542
2543SCSI CDROM DRIVER
2544P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002545M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546L: linux-scsi@vger.kernel.org
2547W: http://www.kernel.dk
2548S: Maintained
2549
2550SCSI SG DRIVER
2551P: Doug Gilbert
2552M: dgilbert@interlog.com
2553L: linux-scsi@vger.kernel.org
2554W: http://www.torque.net/sg
2555S: Maintained
2556
2557SCSI SUBSYSTEM
2558P: James E.J. Bottomley
2559M: James.Bottomley@SteelEye.com
2560L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002561T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562S: Maintained
2563
2564SCSI TAPE DRIVER
2565P: Kai Mäkisara
2566M: Kai.Makisara@kolumbus.fi
2567L: linux-scsi@vger.kernel.org
2568S: Maintained
2569
2570SCTP PROTOCOL
2571P: Sridhar Samudrala
2572M: sri@us.ibm.com
2573L: lksctp-developers@lists.sourceforge.net
2574S: Supported
2575
2576SCx200 CPU SUPPORT
2577P: Christer Weinigel
2578M: christer@weinigel.se
2579W: http://www.weinigel.se
2580S: Supported
2581
2582SECURITY CONTACT
2583P: Security Officers
2584M: security@kernel.org
2585S: Supported
2586
2587SELINUX SECURITY MODULE
2588P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002589M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002591M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592L: linux-kernel@vger.kernel.org (kernel issues)
2593L: selinux@tycho.nsa.gov (general discussion)
2594W: http://www.nsa.gov/selinux
2595S: Supported
2596
2597SERIAL ATA (SATA) SUBSYSTEM:
2598P: Jeff Garzik
2599M: jgarzik@pobox.com
2600L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002601T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602S: Supported
2603
2604SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2605P: Pat Gefre
2606M: pfg@sgi.com
2607L: linux-ia64@vger.kernel.org
2608S: Supported
2609
2610SGI VISUAL WORKSTATION 320 AND 540
2611P: Andrey Panin
2612M: pazke@donpac.ru
2613L: linux-visws-devel@lists.sf.net
2614W: http://linux-visws.sf.net
2615S: Maintained for 2.6.
2616
2617SIMTEC EB110ATX (Chalice CATS)
2618P: Ben Dooks
2619P: Vincent Sanders
2620M: support@simtec.co.uk
2621W: http://www.simtec.co.uk/products/EB110ATX/
2622S: Supported
2623
2624SIMTEC EB2410ITX (BAST)
2625P: Ben Dooks
2626P: Vincent Sanders
2627M: support@simtec.co.uk
2628W: http://www.simtec.co.uk/products/EB2410ITX/
2629S: Supported
2630
Francois Romieu92aab3c2005-07-30 13:11:18 +02002631SIS 190 ETHERNET DRIVER
2632P: Francois Romieu
2633M: romieu@fr.zoreil.com
2634L: netdev@vger.kernel.org
2635S: Maintained
2636
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637SIS 5513 IDE CONTROLLER DRIVER
2638P: Lionel Bouton
2639M: Lionel.Bouton@inet6.fr
2640W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2641W: http://gyver.homeip.net/sis5513/index.html
2642S: Maintained
2643
2644SIS 900/7016 FAST ETHERNET DRIVER
2645P: Daniele Venzano
2646M: venza@brownhat.org
2647W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002648L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649S: Maintained
2650
2651SIS FRAMEBUFFER DRIVER
2652P: Thomas Winischhofer
2653M: thomas@winischhofer.net
2654W: http://www.winischhofer.net/linuxsisvga.shtml
2655S: Maintained
2656
2657SIS USB2VGA DRIVER
2658P: Thomas Winischhofer
2659M: thomas@winischhofer.net
2660W: http://www.winischhofer.at/linuxsisusbvga.shtml
2661S: Maintained
2662
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663SMC91x ETHERNET DRIVER
2664P: Nicolas Pitre
2665M: nico@cam.org
2666S: Maintained
2667
Daniel Drake8f0f8502006-07-18 22:00:25 +01002668SOFTMAC LAYER (IEEE 802.11)
2669P: Johannes Berg
2670M: johannes@sipsolutions.net
2671P: Joe Jezak
2672M: josejx@gentoo.org
2673P: Daniel Drake
2674M: dsd@gentoo.org
2675W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002676L: netdev@vger.kernel.org
2677S: Maintained
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679SOFTWARE RAID (Multiple Disks) SUPPORT
2680P: Ingo Molnar
2681M: mingo@redhat.com
2682P: Neil Brown
2683M: neilb@cse.unsw.edu.au
2684L: linux-raid@vger.kernel.org
2685S: Maintained
2686
2687SOFTWARE SUSPEND:
2688P: Pavel Machek
2689M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002690L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691S: Maintained
2692
2693SONIC NETWORK DRIVER
2694P: Thomas Bogendoerfer
2695M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002696L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697S: Maintained
2698
2699SONY VAIO CONTROL DEVICE DRIVER
2700P: Stelian Pop
2701M: stelian@popies.net
2702W: http://popies.net/sonypi/
2703S: Maintained
2704
2705SOUND
2706P: Jaroslav Kysela
2707M: perex@suse.cz
2708L: alsa-devel@alsa-project.org
2709S: Maintained
2710
Kumar Gala025c3982006-04-02 16:05:54 -05002711SPI SUBSYSTEM
2712P: David Brownell
2713M: dbrownell@users.sourceforge.net
2714L: spi-devel-general@lists.sourceforge.net
2715S: Maintained
2716
Steven Rostedt855f46a2006-08-05 12:14:50 -07002717STABLE BRANCH:
2718P: Greg Kroah-Hartman
2719M: greg@kroah.com
2720P: Chris Wright
2721M: chrisw@sous-sol.org
2722L: stable@kernel.org
2723S: Maintained
2724
Kylene Hall1c72d462005-05-01 08:59:13 -07002725TPM DEVICE DRIVER
2726P: Kylene Hall
2727M: kjhall@us.ibm.com
2728W: http://tpmdd.sourceforge.net
2729L: tpmdd-devel@lists.sourceforge.net
2730S: Maintained
2731
Mark Gross1a80ba82005-10-30 15:02:55 -08002732Telecom Clock Driver for MCPL0010
2733P: Mark Gross
2734M: mark.gross@intel.com
2735S: Supported
2736
Chris Zankel48b415c2005-06-23 22:01:07 -07002737TENSILICA XTENSA PORT (xtensa):
2738P: Chris Zankel
2739M: chris@zankel.net
2740S: Maintained
2741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742UltraSPARC (sparc64):
2743P: David S. Miller
2744M: davem@davemloft.net
2745P: Eddie C. Dost
Eddie C. Dost90cdba62005-07-06 15:37:58 -07002746M: ecd@brainaid.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747P: Jakub Jelinek
2748M: jj@sunsite.ms.mff.cuni.cz
2749P: Anton Blanchard
2750M: anton@samba.org
2751L: sparclinux@vger.kernel.org
2752L: ultralinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002753T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754S: Maintained
2755
2756SHARP LH SUPPORT (LH7952X & LH7A40X)
2757P: Marc Singer
2758M: elf@buici.com
2759W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002760L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761S: Maintained
2762
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002763SHPC HOTPLUG DRIVER
2764P: Kristen Carlson Accardi
2765M: kristen.c.accardi@intel.com
2766L: pcihpd-discuss@lists.sourceforge.net
2767S: Maintained
2768
Pierre Ossmand129bce2006-03-24 03:18:17 -08002769SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2770P: Pierre Ossman
2771M: drzeus-sdhci@drzeus.cx
2772L: sdhci-devel@list.drzeus.cx
2773W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2774S: Maintained
2775
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002776SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2777P: Stephen Hemminger
2778M: shemminger@osdl.org
2779L: netdev@vger.kernel.org
2780S: Maintained
2781
Chris Boot1a87d942006-07-10 04:45:34 -07002782SOEKRIS NET48XX LED SUPPORT
2783P: Chris Boot
2784M: bootc@bootc.net
2785S: Maintained
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787SPARC (sparc32):
2788P: William L. Irwin
2789M: wli@holomorphy.com
2790L: sparclinux@vger.kernel.org
2791S: Maintained
2792
2793SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2794P: Roger Wolff
2795M: R.E.Wolff@BitWizard.nl
2796L: linux-kernel@vger.kernel.org ?
2797S: Supported
2798
Jim Lewis2752e4012006-09-29 02:01:19 -07002799SPIDERNET NETWORK DRIVER for CELL
2800P: Jim Lewis
2801M: jim@jklewis.com
2802L: netdev@vger.kernel.org
2803S: Supported
2804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805SRM (Alpha) environment access
2806P: Jan-Benedict Glaw
2807M: jbglaw@lug-owl.de
2808L: linux-kernel@vger.kernel.org
2809S: Maintained
2810
2811STARFIRE/DURALAN NETWORK DRIVER
2812P: Ion Badulescu
2813M: ionut@cs.columbia.edu
2814S: Maintained
2815
2816STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2817W: http://mosquitonet.Stanford.EDU/strip.html
2818S: Unsupported ?
2819
2820STRADIS MPEG-2 DECODER DRIVER
2821P: Nathan Laredo
2822M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823W: http://www.stradis.com/
2824S: Maintained
2825
2826SUPERH (sh)
2827P: Paul Mundt
2828M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002829L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831S: Maintained
2832
2833SUPERH64 (sh64)
2834P: Paul Mundt
2835M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836L: linuxsh-shmedia-dev@lists.sourceforge.net
2837W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838S: Maintained
2839
2840SUN3/3X
2841P: Sam Creasey
2842M: sammy@sammy.net
2843L: sun3-list@redhat.com
2844W: http://sammy.net/sun3/
2845S: Maintained
2846
2847SVGA HANDLING
2848P: Martin Mares
2849M: mj@ucw.cz
2850L: linux-video@atrey.karlin.mff.cuni.cz
2851S: Maintained
2852
2853SYSV FILESYSTEM
2854P: Christoph Hellwig
2855M: hch@infradead.org
2856S: Maintained
2857
Stephen Hemminger781b456a2006-07-10 20:25:29 -07002858TC CLASSIFIER
2859P: Jamal Hadi Salim
2860M: hadi@cyberus.ca
2861L: netdev@vger.kernel.org
2862S: Maintained
2863
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002864TCP LOW PRIORITY MODULE
2865P: Wong Hoi Sing, Edison
2866M: hswong3i@gmail.com
2867P: Hung Hing Lun, Mike
2868M: hlhung3i@gmail.com
2869W: http://tcp-lp-mod.sourceforge.net/
2870S: Maintained
2871
Alex Dubov4020f2d2006-10-04 02:15:37 -07002872TI FLASH MEDIA INTERFACE DRIVER
2873P: Alex Dubov
2874M: oakad@yahoo.com
2875S: Maintained
2876
Michael Buesch844dd052006-06-26 00:24:59 -07002877TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2878P: Deepak Saxena
2879M: dsaxena@plexity.net
2880S: Maintained
2881
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002882TASKSTATS STATISTICS INTERFACE
2883P: Shailabh Nagar
2884M: nagar@watson.ibm.com
2885L: linux-kernel@vger.kernel.org
2886S: Maintained
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888TI PARALLEL LINK CABLE DRIVER
2889P: Romain Lievin
2890M: roms@lpg.ticalc.org
2891S: Maintained
2892
Per Lidene86eaa32006-01-12 16:45:18 +01002893TIPC NETWORK LAYER
2894P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002895M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002896P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002897M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002898P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002899M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002900L: tipc-discussion@lists.sourceforge.net
2901W: http://tipc.sourceforge.net/
2902W: http://tipc.cslab.ericsson.net/
2903T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
2904S: Maintained
2905
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906TLAN NETWORK DRIVER
2907P: Samuel Chessman
2908M: chessman@tux.org
2909L: tlan-devel@lists.sourceforge.net
2910W: http://sourceforge.net/projects/tlan/
2911S: Maintained
2912
2913TOKEN-RING NETWORK DRIVER
2914P: Mike Phillips
2915M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002916L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917L: linux-tr@linuxtr.net
2918W: http://www.linuxtr.net
2919S: Maintained
2920
2921TOSHIBA ACPI EXTRAS DRIVER
2922P: John Belmonte
2923M: toshiba_acpi@memebeam.org
2924W: http://memebeam.org/toys/ToshibaAcpiDriver
2925S: Maintained
2926
2927TOSHIBA SMM DRIVER
2928P: Jonathan Buzzard
2929M: jonathan@buzzard.org.uk
2930L: tlinux-users@tce.toshiba-dme.co.jp
2931W: http://www.buzzard.org.uk/toshiba/
2932S: Maintained
2933
2934TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
2935P: Muli Ben-Yehuda
2936M: mulix@mulix.org
2937L: linux-kernel@vger.kernel.org
2938S: Maintained
2939
2940TRIVIAL PATCHES
Adrian Bunk6dfca872005-11-06 21:31:01 +01002941P: Adrian Bunk
2942M: trivial@kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943L: linux-kernel@vger.kernel.org
Adrian Bunk6dfca872005-11-06 21:31:01 +01002944W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
Josh Boyer1adc1232005-11-23 15:44:15 -08002945T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946S: Maintained
2947
2948TMS380 TOKEN-RING NETWORK DRIVER
2949P: Adam Fritzler
2950M: mid@auk.cx
2951L: linux-tr@linuxtr.net
2952W: http://www.auk.cx/tms380tr/
2953S: Maintained
2954
2955TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07002956P: Valerie Henson
2957M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958L: tulip-users@lists.sourceforge.net
2959W: http://sourceforge.net/projects/tulip/
2960S: Maintained
2961
2962TUN/TAP driver
2963P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08002964M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965L: vtun@office.satix.net
2966W: http://vtun.sourceforge.net/tun
2967S: Maintained
2968
2969U14-34F SCSI DRIVER
2970P: Dario Ballabio
2971M: ballabio_dario@emc.com
2972L: linux-scsi@vger.kernel.org
2973S: Maintained
2974
2975UDF FILESYSTEM
2976P: Ben Fennema
2977M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978W: http://linux-udf.sourceforge.net
2979S: Maintained
2980
2981UNIFORM CDROM DRIVER
2982P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002983M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984L: linux-kernel@vger.kernel.org
2985W: http://www.kernel.dk
2986S: Maintained
2987
2988USB ACM DRIVER
2989P: Oliver Neukum
2990M: oliver@neukum.name
2991L: linux-usb-users@lists.sourceforge.net
2992L: linux-usb-devel@lists.sourceforge.net
2993S: Maintained
2994
2995USB BLOCK DRIVER (UB ub)
2996P: Pete Zaitcev
2997M: zaitcev@redhat.com
2998L: linux-kernel@vger.kernel.org
2999L: linux-usb-devel@lists.sourceforge.net
3000S: Supported
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002USB CDC ETHERNET DRIVER
3003P: Greg Kroah-Hartman
3004M: greg@kroah.com
3005L: linux-usb-users@lists.sourceforge.net
3006L: linux-usb-devel@lists.sourceforge.net
3007S: Maintained
3008W: http://www.kroah.com/linux-usb/
3009
3010USB EHCI DRIVER
3011P: David Brownell
3012M: dbrownell@users.sourceforge.net
3013L: linux-usb-devel@lists.sourceforge.net
3014S: Maintained
3015
Luca Risolia7ce08c92006-01-11 02:06:59 +00003016USB ET61X[12]51 DRIVER
3017P: Luca Risolia
3018M: luca.risolia@studio.unibo.it
3019L: linux-usb-devel@lists.sourceforge.net
3020L: video4linux-list@redhat.com
3021W: http://www.linux-projects.org
3022S: Maintained
3023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024USB HID/HIDBP DRIVERS
3025P: Vojtech Pavlik
3026M: vojtech@suse.cz
3027L: linux-usb-users@lists.sourceforge.net
3028L: linux-usb-devel@lists.sourceforge.net
3029S: Maintained
3030
3031USB HUB DRIVER
3032P: Johannes Erdfelt
3033M: johannes@erdfelt.com
3034L: linux-usb-users@lists.sourceforge.net
3035L: linux-usb-devel@lists.sourceforge.net
3036S: Maintained
3037
Olav Kongas959eea22005-11-03 17:38:14 +02003038USB ISP116X DRIVER
3039P: Olav Kongas
3040M: ok@artecdesign.ee
3041L: linux-usb-devel@lists.sourceforge.net
3042S: Maintained
3043
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044USB KAWASAKI LSI DRIVER
3045P: Oliver Neukum
3046M: oliver@neukum.name
3047L: linux-usb-users@lists.sourceforge.net
3048L: linux-usb-devel@lists.sourceforge.net
3049S: Maintained
3050
3051USB MASS STORAGE DRIVER
3052P: Matthew Dharm
3053M: mdharm-usb@one-eyed-alien.net
3054L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003055L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056S: Maintained
3057W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3058
3059USB OHCI DRIVER
3060P: Roman Weissgaerber
3061M: weissg@vienna.at
3062L: linux-usb-users@lists.sourceforge.net
3063L: linux-usb-devel@lists.sourceforge.net
3064S: Maintained
3065
Matthias Urlichsba460e42005-07-14 00:33:47 -07003066USB OPTION-CARD DRIVER
3067P: Matthias Urlichs
3068M: smurf@smurf.noris.de
3069L: linux-usb-devel@lists.sourceforge.net
3070S: Maintained
3071
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072USB OV511 DRIVER
3073P: Mark McClelland
3074M: mmcclell@bigfoot.com
3075L: linux-usb-users@lists.sourceforge.net
3076L: linux-usb-devel@lists.sourceforge.net
3077W: http://alpha.dyndns.org/ov511/
3078S: Maintained
3079
3080USB PEGASUS DRIVER
3081P: Petko Manolov
3082M: petkan@users.sourceforge.net
3083L: linux-usb-users@lists.sourceforge.net
3084L: linux-usb-devel@lists.sourceforge.net
3085W: http://pegasus2.sourceforge.net/
3086S: Maintained
3087
3088USB PRINTER DRIVER
3089P: Vojtech Pavlik
3090M: vojtech@suse.cz
3091L: linux-usb-users@lists.sourceforge.net
3092L: linux-usb-devel@lists.sourceforge.net
3093S: Maintained
3094
3095USB RTL8150 DRIVER
3096P: Petko Manolov
3097M: petkan@users.sourceforge.net
3098L: linux-usb-users@lists.sourceforge.net
3099L: linux-usb-devel@lists.sourceforge.net
3100W: http://pegasus2.sourceforge.net/
3101S: Maintained
3102
3103USB SE401 DRIVER
3104P: Jeroen Vreeken
3105M: pe1rxq@amsat.org
3106L: linux-usb-users@lists.sourceforge.net
3107L: linux-usb-devel@lists.sourceforge.net
3108W: http://www.chello.nl/~j.vreeken/se401/
3109S: Maintained
3110
3111USB SERIAL CYBERJACK DRIVER
3112P: Matthias Bruestle and Harald Welte
3113M: support@reiner-sct.com
3114W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3115S: Maintained
3116
3117USB SERIAL DIGI ACCELEPORT DRIVER
3118P: Peter Berger and Al Borchers
3119M: pberger@brimson.com
3120M: alborchers@steinerpoint.com
3121L: linux-usb-users@lists.sourceforge.net
3122L: linux-usb-devel@lists.sourceforge.net
3123S: Maintained
3124
3125USB SERIAL DRIVER
3126P: Greg Kroah-Hartman
3127M: gregkh@suse.de
3128L: linux-usb-users@lists.sourceforge.net
3129L: linux-usb-devel@lists.sourceforge.net
3130S: Supported
3131
3132USB SERIAL BELKIN F5U103 DRIVER
3133P: William Greathouse
3134M: wgreathouse@smva.com
3135L: linux-usb-users@lists.sourceforge.net
3136L: linux-usb-devel@lists.sourceforge.net
3137S: Maintained
3138
3139USB SERIAL CYPRESS M8 DRIVER
3140P: Lonnie Mendez
3141M: dignome@gmail.com
3142L: linux-usb-users@lists.sourceforge.net
3143L: linux-usb-devel@lists.sourceforge.net
3144S: Maintained
3145W: http://geocities.com/i0xox0i
3146W: http://firstlight.net/cvs
3147
3148USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3149L: linux-usb-users@lists.sourceforge.net
3150L: linux-usb-devel@lists.sourceforge.net
3151S: Maintained
3152
3153USB AUERSWALD DRIVER
3154P: Wolfgang Muees
3155M: wolfgang@iksw-muees.de
3156L: linux-usb-users@lists.sourceforge.net
3157L: linux-usb-devel@lists.sourceforge.net
3158S: Maintained
3159
3160USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3161P: Gary Brubaker
3162M: xavyer@ix.netcom.com
3163L: linux-usb-users@lists.sourceforge.net
3164L: linux-usb-devel@lists.sourceforge.net
3165S: Maintained
3166
3167USB SERIAL KEYSPAN DRIVER
3168P: Greg Kroah-Hartman
3169M: greg@kroah.com
3170L: linux-usb-users@lists.sourceforge.net
3171L: linux-usb-devel@lists.sourceforge.net
3172W: http://www.kroah.com/linux/
3173S: Maintained
3174
3175USB SERIAL WHITEHEAT DRIVER
3176P: Stuart MacDonald
3177M: stuartm@connecttech.com
3178L: linux-usb-users@lists.sourceforge.net
3179L: linux-usb-devel@lists.sourceforge.net
3180W: http://www.connecttech.com
3181S: Supported
3182
3183USB SN9C10x DRIVER
3184P: Luca Risolia
3185M: luca.risolia@studio.unibo.it
3186L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003187L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188W: http://www.linux-projects.org
3189S: Maintained
3190
3191USB SUBSYSTEM
3192P: Greg Kroah-Hartman
3193M: gregkh@suse.de
3194L: linux-usb-users@lists.sourceforge.net
3195L: linux-usb-devel@lists.sourceforge.net
3196W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003197T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198S: Supported
3199
3200USB UHCI DRIVER
3201P: Alan Stern
3202M: stern@rowland.harvard.edu
3203L: linux-usb-users@lists.sourceforge.net
3204L: linux-usb-devel@lists.sourceforge.net
3205S: Maintained
3206
3207USB "USBNET" DRIVER
3208P: David Brownell
3209M: dbrownell@users.sourceforge.net
3210L: linux-usb-devel@lists.sourceforge.net
3211S: Maintained
3212
3213USB W996[87]CF DRIVER
3214P: Luca Risolia
3215M: luca.risolia@studio.unibo.it
3216L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003217L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218W: http://www.linux-projects.org
3219S: Maintained
3220
Luca Risolia60f78052006-02-06 16:29:35 +00003221USB ZC0301 DRIVER
3222P: Luca Risolia
3223M: luca.risolia@studio.unibo.it
3224L: linux-usb-devel@lists.sourceforge.net
3225L: video4linux-list@redhat.com
3226W: http://www.linux-projects.org
3227S: Maintained
3228
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229USB ZD1201 DRIVER
3230P: Jeroen Vreeken
3231M: pe1rxq@amsat.org
3232L: linux-usb-users@lists.sourceforge.net
3233L: linux-usb-devel@lists.sourceforge.net
3234W: http://linux-lc100020.sourceforge.net
3235S: Maintained
3236
3237USER-MODE LINUX
3238P: Jeff Dike
3239M: jdike@karaya.com
3240L: user-mode-linux-devel@lists.sourceforge.net
3241L: user-mode-linux-user@lists.sourceforge.net
3242W: http://user-mode-linux.sourceforge.net
3243S: Maintained
3244
3245FAT/VFAT/MSDOS FILESYSTEM:
3246P: OGAWA Hirofumi
3247M: hirofumi@mail.parknet.co.jp
3248L: linux-kernel@vger.kernel.org
3249S: Maintained
3250
3251VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3252P: Jeff Garzik
3253S: Odd fixes
3254
3255VIA RHINE NETWORK DRIVER
3256P: Roger Luethi
3257M: rl@hellgate.ch
3258S: Maintained
3259
Jean Delvare32c0a522005-09-22 21:47:58 +02003260VIAPRO SMBUS DRIVER
3261P: Jean Delvare
3262M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003263L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003264S: Maintained
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266UCLINUX (AND M68KNOMMU)
3267P: Greg Ungerer
3268M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003270L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271S: Maintained
3272
3273UCLINUX FOR NEC V850
3274P: Miles Bader
3275M: uclinux-v850@lsi.nec.co.jp
3276W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3277W: http://www.ee.nec.de/uclinux/
3278S: Supported
3279
3280UCLINUX FOR RENESAS H8/300
3281P: Yoshinori Sato
3282M: ysato@users.sourceforge.jp
3283W: http://uclinux-h8.sourceforge.jp/
3284S: Supported
3285
3286USB DIAMOND RIO500 DRIVER
3287P: Cesar Miquel
3288M: miquel@df.uba.ar
3289L: rio500-users@lists.sourceforge.net
3290W: http://rio500.sourceforge.net
3291S: Maintained
3292
3293VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003294P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003295M: mchehab@infradead.org
3296M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003298W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003299T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003300S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
Juerg Haefligerab413192006-09-24 20:54:04 +02003302VT1211 HARDWARE MONITOR DRIVER
3303P: Juerg Haefliger
3304M: juergh@gmail.com
3305L: lm-sensors@lm-sensors.org
3306S: Maintained
3307
Roger Lucas1de9e372005-11-26 20:20:05 +01003308VT8231 HARDWARE MONITOR DRIVER
3309P: Roger Lucas
3310M: roger@planbit.co.uk
3311L: lm-sensors@lm-sensors.org
3312S: Maintained
3313
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314W1 DALLAS'S 1-WIRE BUS
3315P: Evgeniy Polyakov
3316M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317S: Maintained
3318
Charles Spirakis13927072006-07-05 18:05:15 +02003319W83791D HARDWARE MONITORING DRIVER
3320P: Charles Spirakis
3321M: bezaur@gmail.com
3322L: lm-sensors@lm-sensors.org
3323S: Maintained
3324
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325W83L51xD SD/MMC CARD INTERFACE DRIVER
3326P: Pierre Ossman
3327M: drzeus-wbsd@drzeus.cx
3328L: wbsd-devel@list.drzeus.cx
3329W: http://projects.drzeus.cx/wbsd
3330S: Maintained
3331
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003332WATCHDOG DEVICE DRIVERS
3333P: Wim Van Sebroeck
3334M: wim@iguana.be
3335T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3336S: Maintained
3337
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3339P: Jean Tourrilhes
3340M: jt@hpl.hp.com
3341W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3342S: Maintained
3343
3344WD7000 SCSI DRIVER
3345P: Miroslav Zagorac
3346M: zaga@fly.cc.fer.hr
3347L: linux-scsi@vger.kernel.org
3348S: Maintained
3349
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003350WISTRON LAPTOP BUTTON DRIVER
3351P: Miloslav Trmac
3352M: mitr@volny.cz
3353S: Maintained
3354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355WL3501 WIRELESS PCMCIA CARD DRIVER
3356P: Arnaldo Carvalho de Melo
3357M: acme@conectiva.com.br
3358W: http://advogato.org/person/acme
3359S: Maintained
3360
3361X.25 NETWORK LAYER
3362P: Henner Eisen
3363M: eis@baty.hanse.de
3364L: linux-x25@vger.kernel.org
3365S: Maintained
3366
3367XFS FILESYSTEM
3368P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003369P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003371L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003373T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374S: Supported
3375
3376X86 3-LEVEL PAGING (PAE) SUPPORT
3377P: Ingo Molnar
3378M: mingo@redhat.com
3379S: Maintained
3380
3381X86-64 port
3382P: Andi Kleen
3383M: ak@suse.de
3384L: discuss@x86-64.org
3385W: http://www.x86-64.org
3386S: Maintained
3387
3388YAM DRIVER FOR AX.25
3389P: Jean-Paul Roubelat
3390M: jpr@f6fbb.org
3391L: linux-hams@vger.kernel.org
3392S: Maintained
3393
Henkaf64a5e2005-10-12 15:02:56 +02003394YEALINK PHONE DRIVER
3395P: Henk Vergonet
3396M: Henk.Vergonet@gmail.com
3397L: usbb2k-api-dev@nongnu.org
3398S: Maintained
3399
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400Z8530 DRIVER FOR AX.25
3401P: Joerg Reuter
3402M: jreuter@yaina.de
3403W: http://yaina.de/jreuter/
3404W: http://www.qsl.net/dl1bke/
3405L: linux-hams@vger.kernel.org
3406S: Maintained
3407
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003408ZD1211RW WIRELESS DRIVER
3409P: Daniel Drake
3410M: dsd@gentoo.org
3411P: Ulrich Kunitz
3412M: kune@deine-taler.de
3413W: http://zd1211.ath.cx/wiki/DriverRewrite
3414L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3415S: Maintained
3416
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417ZF MACHZ WATCHDOG
3418P: Fernando Fuganti
3419M: fuganti@netbank.com.br
3420W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3421S: Maintained
3422
3423ZR36067 VIDEO FOR LINUX DRIVER
3424P: Ronald Bultje
3425M: rbultje@ronald.bitfreak.net
3426L: mjpeg-users@lists.sourceforge.net
3427W: http://mjpeg.sourceforge.net/driver-zoran/
3428S: Maintained
3429
3430ZR36120 VIDEO FOR LINUX DRIVER
3431P: Pauline Middelink
3432M: middelin@polyware.nl
3433W: http://www.polyware.nl/~middelin/En/hobbies.html
3434W: http://www.polyware.nl/~middelin/hobbies.html
3435S: Maintained
3436
3437THE REST
3438P: Linus Torvalds
3439S: Buried alive in reporters