blob: bd4d5dfa65f01fdfaf048914daf3faf396bc5e12 [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
Jon Masond8d2bed2006-10-05 18:47:21 +0200644M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200645L: 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 Becker62ca3d22006-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
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400901DISTRIBUTED LOCK MANAGER
902P: Patrick Caulfield
903M: pcaulfie@redhat.com
904P: David Teigland
905M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -0400906L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400907W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -0400908T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
909T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400910S: Supported
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
913P: Tobias Ringstrom
914M: tori@unhappy.mine.nu
915L: linux-kernel@vger.kernel.org
916S: Maintained
917
Martin Waitzba483d52005-06-17 13:20:59 -0700918DOCBOOK FOR DOCUMENTATION
919P: Martin Waitz
920M: tali@admingilde.org
Randy Dunlap0f40efb2006-07-03 00:24:15 -0700921P: Randy Dunlap
922M: rdunlap@xenotime.net
Martin Waitz061350e2006-01-09 20:53:53 -0800923T: git http://tali.admingilde.org/git/linux-docbook.git
Martin Waitzba483d52005-06-17 13:20:59 -0700924S: Maintained
925
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -0400926DOCKING STATION DRIVER
927P: Kristen Carlson Accardi
928M: kristen.c.accardi@intel.com
929L: linux-acpi@vger.kernel.org
930S: Maintained
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932DOUBLETALK DRIVER
933P: James R. Van Zandt
934M: jrv@vanzandt.mv.com
935L: blinux-list@redhat.com
936S: Maintained
937
938DRIVER CORE, KOBJECTS, AND SYSFS
939P: Greg Kroah-Hartman
940M: gregkh@suse.de
941L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800942T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943S: Supported
944
945DRM DRIVERS
946P: David Airlie
947M: airlied@linux.ie
948L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -0800949T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950S: Maintained
951
952DSCC4 DRIVER
953P: François Romieu
954M: romieu@cogenit.fr
955M: romieu@ensta.fr
956S: Maintained
957
958DVB SUBSYSTEM AND DRIVERS
959P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200960M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +0200962W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200963T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200964S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966EATA-DMA SCSI DRIVER
967P: Michael Neuffer
968L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
969S: Maintained
970
971EATA ISA/EISA/PCI SCSI DRIVER
972P: Dario Ballabio
973M: ballabio_dario@emc.com
974L: linux-scsi@vger.kernel.org
975S: Maintained
976
977EATA-PIO SCSI DRIVER
978P: Michael Neuffer
979M: mike@i-Connect.Net
980L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
981S: Maintained
982
983EBTABLES
984P: Bart De Schuymer
985M: bart.de.schuymer@pandora.be
986L: ebtables-user@lists.sourceforge.net
987L: ebtables-devel@lists.sourceforge.net
988W: http://ebtables.sourceforge.net/
989S: Maintained
990
Michael Halcrow237fead2006-10-04 02:16:22 -0700991ECRYPT FILE SYSTEM
992P: Mike Halcrow, Phillip Hellewell
993M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
994L: ecryptfs-devel@lists.sourceforge.net
995W: http://ecryptfs.sourceforge.net/
996S: Supported
997
Alan Coxda9bb1d2006-01-18 17:44:13 -0800998EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -0800999P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001000M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001001L: bluesmoke-devel@lists.sourceforge.net
1002W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001003S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001004
1005EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001006P: Mark Gross
1007M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001008L: bluesmoke-devel@lists.sourceforge.net
1009W: bluesmoke.sourceforge.net
1010S: Maintained
1011
1012EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001013P: Doug Thompson
1014M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001015L: bluesmoke-devel@lists.sourceforge.net
1016W: bluesmoke.sourceforge.net
1017S: Maintained
1018
1019EDAC-R82600
1020P: Tim Small
1021M: tim@buttersideup.com
1022L: bluesmoke-devel@lists.sourceforge.net
1023W: bluesmoke.sourceforge.net
1024S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026EEPRO100 NETWORK DRIVER
1027P: Andrey V. Savochkin
1028M: saw@saw.sw.com.sg
1029S: Maintained
1030
Josh Triplett0bee8d22006-07-30 03:03:58 -07001031EFS FILESYSTEM
1032W: http://aeschi.ch.eu.org/efs/
1033S: Orphan
1034
Heiko J Schickfab97222006-09-22 15:22:22 -07001035EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1036P: Hoang-Nam Nguyen
1037M: hnguyen@de.ibm.com
1038P: Christoph Raisch
1039M: raisch@de.ibm.com
1040L: openib-general@openib.org
1041S: Supported
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043EMU10K1 SOUND DRIVER
1044P: James Courtier-Dutton
1045M: James@superbug.demon.co.uk
1046L: emu10k1-devel@lists.sourceforge.net
1047W: http://sourceforge.net/projects/emu10k1/
1048S: Maintained
1049
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001050EMULEX LPFC FC SCSI DRIVER
1051P: James Smart
1052M: james.smart@emulex.com
1053L: linux-scsi@vger.kernel.org
1054W: http://sourceforge.net/projects/lpfcxxxx
1055S: Supported
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057EPSON 1355 FRAMEBUFFER DRIVER
1058P: Christopher Hoover
1059M: ch@murgatroid.com, ch@hpl.hp.com
1060S: Maintained
1061
1062ETHEREXPRESS-16 NETWORK DRIVER
1063P: Philip Blundell
1064M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001065L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066S: Maintained
1067
1068ETHERNET BRIDGE
1069P: Stephen Hemminger
1070M: shemminger@osdl.org
1071L: bridge@osdl.org
1072W: http://bridge.sourceforge.net/
1073S: Maintained
1074
1075ETHERTEAM 16I DRIVER
1076P: Mika Kuoppala
1077M: miku@iki.fi
1078S: Maintained
1079
1080EXT2 FILE SYSTEM
1081L: ext2-devel@lists.sourceforge.net
1082S: Maintained
1083
1084EXT3 FILE SYSTEM
1085P: Stephen Tweedie, Andrew Morton
1086M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Theodore Tsoae0718f2006-05-20 15:00:13 -07001087L: ext2-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088S: Maintained
1089
Jean Delvaree53004e2006-01-09 23:26:14 +01001090F71805F HARDWARE MONITORING DRIVER
1091P: Jean Delvare
1092M: khali@linux-fr.org
1093L: lm-sensors@lm-sensors.org
1094S: Maintained
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096FARSYNC SYNCHRONOUS DRIVER
1097P: Kevin Curtis
1098M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099W: http://www.farsite.co.uk/
1100S: Supported
1101
1102FRAMEBUFFER LAYER
1103P: Antonino Daplas
1104M: adaplas@pol.net
1105L: linux-fbdev-devel@lists.sourceforge.net
1106W: http://linux-fbdev.sourceforge.net/
1107S: Maintained
1108
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001109FREESCALE SOC FS_ENET DRIVER
1110P: Pantelis Antoniou
1111M: pantelis.antoniou@gmail.com
1112P: Vitaly Bordug
1113M: vbordug@ru.mvista.com
1114L: linuxppc-embedded@ozlabs.org
1115L: netdev@vger.kernel.org
1116S: Maintained
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118FILE LOCKING (flock() and fcntl()/lockf())
1119P: Matthew Wilcox
1120M: matthew@wil.cx
1121L: linux-fsdevel@vger.kernel.org
1122S: Maintained
1123
1124FILESYSTEMS (VFS and infrastructure)
1125P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001126M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127S: Maintained
1128
1129FIRMWARE LOADER (request_firmware)
1130L: linux-kernel@vger.kernel.org
1131S: Orphan
1132
1133FPU EMULATOR
1134P: Bill Metzenthen
1135M: billm@suburbia.net
1136W: http://suburbia.net/~billm/floating-point/emulator/
1137S: Maintained
1138
1139FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1140P: Mike McLagan
1141M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001142L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143S: Maintained
1144
1145FREEVXFS FILESYSTEM
1146P: Christoph Hellwig
1147M: hch@infradead.org
1148W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1149S: Maintained
1150
1151FUJITSU FR-V PORT
1152P: David Howells
1153M: dhowells@redhat.com
1154S: Maintained
1155
1156FTAPE/QIC-117
1157L: linux-tape@vger.kernel.org
1158W: http://sourceforge.net/projects/ftape
1159S: Orphan
1160
Miklos Szeredi04578f12005-09-09 13:10:22 -07001161FUSE: FILESYSTEM IN USERSPACE
1162P: Miklos Szeredi
1163M: miklos@szeredi.hu
1164L: fuse-devel@lists.sourceforge.net
1165W: http://fuse.sourceforge.net/
1166S: Maintained
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1169P: Rik Faith
1170M: faith@cs.unc.edu
1171L: linux-scsi@vger.kernel.org
1172S: Odd fixes (e.g., new signatures)
1173
1174GDT SCSI DISK ARRAY CONTROLLER DRIVER
1175P: Achim Leubner
1176M: achim_leubner@adaptec.com
1177L: linux-scsi@vger.kernel.org
1178W: http://www.icp-vortex.com/
1179S: Supported
1180
1181GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1182P: Krzysztof Halasa
1183M: khc@pm.waw.pl
1184W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1185S: Maintained
1186
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001187GFS2 FILE SYSTEM
1188P: Steven Whitehouse
1189M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001190L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001191W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001192T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1193T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001194S: Supported
1195
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001196GIGASET ISDN DRIVERS
1197P: Hansjoerg Lipp
1198M: hjlipp@web.de
1199P: Tilman Schmidt
1200M: tilman@imap.cc
1201L: gigaset307x-common@lists.sourceforge.net
1202W: http://gigaset307x.sourceforge.net/
1203S: Maintained
1204
Jean Delvare5b543962005-08-15 19:51:02 +02001205HARDWARE MONITORING
1206P: Jean Delvare
1207M: khali@linux-fr.org
1208L: lm-sensors@lm-sensors.org
1209W: http://www.lm-sensors.nu/
1210S: Maintained
1211
Michael Buesch844dd052006-06-26 00:24:59 -07001212HARDWARE RANDOM NUMBER GENERATOR CORE
1213P: Michael Buesch
1214M: mb@bu3sch.de
1215S: Maintained
1216
Robert Love860e1d62005-08-31 23:57:59 -04001217HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1218P: Robert Love
1219M: rlove@rlove.org
1220M: linux-kernel@vger.kernel.org
1221W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1222S: Maintained
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224HARMONY SOUND DRIVER
1225P: Kyle McMartin
1226M: kyle@parisc-linux.org
1227W: http://www.parisc-linux.org/~kyle/harmony/
1228L: parisc-linux@lists.parisc-linux.org
1229S: Maintained
1230
1231HAYES ESP SERIAL DRIVER
1232P: Andrew J. Robinson
1233M: arobinso@nyx.net
1234L: linux-kernel@vger.kernel.org
1235W: http://www.nyx.net/~arobinso
1236S: Maintained
1237
1238HFS FILESYSTEM
1239P: Roman Zippel
1240M: zippel@linux-m68k.org
1241L: linux-kernel@vger.kernel.org
1242S: Maintained
1243
1244HGA FRAMEBUFFER DRIVER
1245P: Ferenc Bakonyi
1246M: fero@drama.obuda.kando.hu
1247L: linux-nvidia@lists.surfsouth.com
1248W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1249S: Maintained
1250
1251HIGH-SPEED SCC DRIVER FOR AX.25
1252P: Klaus Kudielka
1253M: klaus.kudielka@ieee.org
1254L: linux-hams@vger.kernel.org
1255W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1256S: Maintained
1257
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001258HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1259P: HighPoint Linux Team
1260M: linux@highpoint-tech.com
1261W: http://www.highpoint-tech.com
1262S: Supported
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264HIPPI
1265P: Jes Sorensen
1266M: jes@trained-monkey.org
1267L: linux-hippi@sunsite.dk
1268S: Maintained
1269
1270HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1271P: Chirag Kantharia
1272M: chirag.kantharia@hp.com
1273L: iss_storagedev@hp.com
1274S: Maintained
1275
1276HEWLETT-PACKARD SMART2 RAID DRIVER
1277P: Chirag Kantharia
1278M: chirag.kantharia@hp.com
1279L: iss_storagedev@hp.com
1280S: Maintained
1281
1282HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1283P: Mike Miller
1284M: mike.miller@hp.com
1285L: iss_storagedev@hp.com
1286S: Supported
1287
Jouni Malinenff1d2762005-05-12 22:54:16 -04001288HOST AP DRIVER
1289P: Jouni Malinen
1290M: jkmaline@cc.hut.fi
1291L: hostap@shmoo.com
1292W: http://hostap.epitest.fi/
1293S: Maintained
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1296P: Jaroslav Kysela
1297M: perex@suse.cz
1298S: Maintained
1299
Bob Piccob9b03322005-11-07 00:59:19 -08001300HPET: High Precision Event Timers driver (hpet.c)
1301P: Clemens Ladisch
1302M: clemens@ladisch.de
1303S: Maintained
1304
1305HPET: i386
1306P: Venkatesh Pallipadi (Venki)
1307M: venkatesh.pallipadi@intel.com
1308S: Maintained
1309
1310HPET: x86_64
1311P: Andi Kleen and Vojtech Pavlik
1312M: ak@muc.de and vojtech@suse.cz
1313S: Maintained
1314
1315HPET: ACPI hpet.c
1316P: Bob Picco
1317M: bob.picco@hp.com
1318S: Maintained
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320HPFS FILESYSTEM
1321P: Mikulas Patocka
1322M: mikulas@artax.karlin.mff.cuni.cz
1323W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1324S: Maintained
1325
1326HUGETLB FILESYSTEM
1327P: William Irwin
1328M: wli@holomorphy.com
1329S: Maintained
1330
Jean Delvare5b543962005-08-15 19:51:02 +02001331I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332P: Jean Delvare
1333M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001334L: i2c@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335W: http://www.lm-sensors.nu/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001336T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337S: Maintained
1338
1339I2O
1340P: Markus Lidel
1341M: markus.lidel@shadowconnect.com
1342W: http://i2o.shadowconnect.com/
1343S: Maintained
1344
1345i386 BOOT CODE
1346P: Riley H. Williams
1347M: Riley@Williams.Name
1348L: Linux-Kernel@vger.kernel.org
1349S: Maintained
1350
1351i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1352P: Dave Jones
1353M: davej@codemonkey.org.uk
1354P: H. Peter Anvin
1355M: hpa@zytor.com
1356S: Maintained
1357
1358i810 TCO TIMER WATCHDOG
1359P: Nils Faerber
1360M: nils@kernelconcepts.de
1361W: http://www.kernelconcepts.de/
1362S: Maintained
1363
1364IA64 (Itanium) PLATFORM
1365P: Tony Luck
1366M: tony.luck@intel.com
1367L: linux-ia64@vger.kernel.org
1368W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001369T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370S: Maintained
1371
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001372IBM ACPI EXTRAS DRIVER
1373P: Henrique de Moraes Holschuh
1374M: ibm-acpi@hmh.eng.br
1375L: ibm-acpi-devel@lists.sourceforge.net
1376W: http://ibm-acpi.sourceforge.net
1377W: http://thinkwiki.org/wiki/Ibm-acpi
1378T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1379S: Maintained
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001382P: Jes Sorensen
1383M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384L: linux-altix@sgi.com
1385L: linux-ia64@vger.kernel.org
1386W: http://www.sgi.com/altix
1387S: Maintained
1388
1389IBM MCA SCSI SUBSYSTEM DRIVER
1390P: Michael Lang
1391M: langa2@kph.uni-mainz.de
1392W: http://www.uni-mainz.de/~langm000/linux.html
1393S: Maintained
1394
1395IBM Power Linux RAID adapter
1396P: Brian King
1397M: brking@us.ibm.com
1398S: Supported
1399
1400IBM ServeRAID RAID DRIVER
1401P: Jack Hammer
1402P: Dave Jeffery
1403M: ipslinux@adaptec.com
1404W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1405S: Supported
1406
1407IDE DRIVER [GENERAL]
1408P: Bartlomiej Zolnierkiewicz
1409M: B.Zolnierkiewicz@elka.pw.edu.pl
1410L: linux-kernel@vger.kernel.org
1411L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001412T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413S: Maintained
1414
1415IDE/ATAPI CDROM DRIVER
1416P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001417M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418L: linux-kernel@vger.kernel.org
1419W: http://www.kernel.dk
1420S: Maintained
1421
1422IDE/ATAPI FLOPPY DRIVERS
1423P: Paul Bristow
1424M: Paul Bristow <paul@paulbristow.net>
1425W: http://paulbristow.net/linux/idefloppy.html
1426L: linux-kernel@vger.kernel.org
1427S: Maintained
1428
1429IDE/ATAPI TAPE DRIVERS
1430P: Gadi Oxman
1431M: Gadi Oxman <gadio@netvision.net.il>
1432L: linux-kernel@vger.kernel.org
1433S: Maintained
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435IEEE 1394 SUBSYSTEM
1436P: Ben Collins
1437M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001438P: Stefan Richter
1439M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440L: linux1394-devel@lists.sourceforge.net
1441W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001442T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443S: Maintained
1444
Stefan Richter87730d02006-09-16 12:24:00 +02001445IEEE 1394 IPV4 DRIVER (eth1394)
1446P: Stefan Richter
1447M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001449S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451IEEE 1394 PCILYNX DRIVER
1452P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001453M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001454P: Stefan Richter
1455M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001457S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459IEEE 1394 RAW I/O DRIVER
1460P: Ben Collins
1461M: bcollins@debian.org
1462P: Dan Dennedy
1463M: dan@dennedy.org
1464L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001465S: Maintained
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467IMS TWINTURBO FRAMEBUFFER DRIVER
1468P: Paul Mundt
1469M: lethal@chaoticdreams.org
1470L: linux-fbdev-devel@lists.sourceforge.net
1471S: Maintained
1472
1473INFINIBAND SUBSYSTEM
1474P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001475M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476P: Sean Hefty
1477M: mshefty@ichips.intel.com
1478P: Hal Rosenstock
1479M: halr@voltaire.com
1480L: openib-general@openib.org
1481W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001482T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483S: Supported
1484
1485INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001486P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001487M: dmitry.torokhov@gmail.com
1488M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489L: linux-input@atrey.karlin.mff.cuni.cz
1490L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001491T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492S: Maintained
1493
Robert Lovec9f04f52005-07-15 12:21:07 -04001494INOTIFY
1495P: John McCutchan and Robert Love
1496M: ttb@tentacle.dhs.org and rml@novell.com
1497L: linux-kernel@vger.kernel.org
1498S: Maintained
1499
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001500INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
1501P: Sylvain Meyer
1502M: sylvain.meyer@worldonline.fr
1503L: linux-fbdev-devel@lists.sourceforge.net
1504S: Maintained
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506INTEL 810/815 FRAMEBUFFER DRIVER
1507P: Antonino Daplas
1508M: adaplas@pol.net
1509L: linux-fbdev-devel@lists.sourceforge.net
1510S: Maintained
1511
1512INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1513P: Ingo Molnar
1514M: mingo@redhat.com
1515S: Maintained
1516
1517INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1518P: Jeff Garzik
1519M: jgarzik@pobox.com
1520W: http://sourceforge.net/projects/gkernel/
1521S: Maintained
1522
1523INTEL IA32 MICROCODE UPDATE SUPPORT
1524P: Tigran Aivazian
1525M: tigran@veritas.com
1526S: Maintained
1527
Michael Buesch844dd052006-06-26 00:24:59 -07001528INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1529P: Deepak Saxena
1530M: dsaxena@plexity.net
1531S: Maintained
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533INTEL PRO/100 ETHERNET SUPPORT
1534P: John Ronciak
1535M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536P: Jesse Brandeburg
1537M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001538P: Jeff Kirsher
1539M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001540P: Auke Kok
1541M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542W: http://sourceforge.net/projects/e1000/
1543S: Supported
1544
1545INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1546P: Jeb Cramer
1547M: cramerj@intel.com
1548P: John Ronciak
1549M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001550P: Jesse Brandeburg
1551M: jesse.brandeburg@intel.com
1552P: Jeff Kirsher
1553M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001554P: Auke Kok
1555M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556W: http://sourceforge.net/projects/e1000/
1557S: Supported
1558
1559INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001560P: Jeff Kirsher
1561M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562P: Ayyappan Veeraiyan
1563M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564P: John Ronciak
1565M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001566P: Jesse Brandeburg
1567M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001568P: Auke Kok
1569M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570W: http://sourceforge.net/projects/e1000/
1571S: Supported
1572
James Ketrenos826d2ab2005-11-07 18:56:59 -06001573INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1574P: Yi Zhu
1575M: yi.zhu@intel.com
1576P: James Ketrenos
1577M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001578L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001579L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1580W: http://ipw2100.sourceforge.net
1581S: Supported
1582
1583INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1584P: Yi Zhu
1585M: yi.zhu@intel.com
1586P: James Ketrenos
1587M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001588L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001589L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1590W: http://ipw2200.sourceforge.net
1591S: Supported
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593IOC3 DRIVER
1594P: Ralf Baechle
1595M: ralf@linux-mips.org
1596L: linux-mips@linux-mips.org
1597S: Maintained
1598
1599IP MASQUERADING:
1600P: Juanjo Ciarlante
1601M: jjciarla@raiz.uncu.edu.ar
1602S: Maintained
1603
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001604IPATH DRIVER:
1605P: Bryan O'Sullivan
1606M: support@pathscale.com
1607L: openib-general@openib.org
1608S: Supported
1609
Corey Minyard4409ebe2006-04-20 02:43:12 -07001610IPMI SUBSYSTEM
1611P: Corey Minyard
1612M: minyard@acm.org
1613L: openipmi-developer@lists.sourceforge.net
1614W: http://openipmi.sourceforge.net/
1615S: Supported
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617IPX NETWORK LAYER
1618P: Arnaldo Carvalho de Melo
1619M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001620L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621S: Maintained
1622
1623IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001624P: Samuel Ortiz
1625M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001626L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001628S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630ISAPNP
1631P: Jaroslav Kysela
1632M: perex@suse.cz
1633S: Maintained
1634
1635ISDN SUBSYSTEM
1636P: Karsten Keil
1637M: kkeil@suse.de
1638P: Kai Germaschewski
1639M: kai.germaschewski@gmx.de
1640L: isdn4linux@listserv.isdn4linux.de
1641W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001642T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643S: Maintained
1644
1645ISDN SUBSYSTEM (Eicon active card driver)
1646P: Armin Schindler
1647M: mac@melware.de
1648L: isdn4linux@listserv.isdn4linux.de
1649W: http://www.melware.de
1650S: Maintained
1651
1652JOURNALLING FLASH FILE SYSTEM (JFFS)
1653P: Axis Communications AB
1654M: jffs-dev@axis.com
1655L: jffs-dev@axis.com
1656W: http://www.developer.axis.com/software/jffs/
1657S: Maintained
1658
1659JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1660P: David Woodhouse
1661M: dwmw2@infradead.org
1662L: jffs-dev@axis.com
1663W: http://sources.redhat.com/jffs2/
1664S: Maintained
1665
1666JFS FILESYSTEM
1667P: Dave Kleikamp
1668M: shaggy@austin.ibm.com
1669L: jfs-discussion@lists.sourceforge.net
1670W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001671T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672S: Supported
1673
Josh Triplettde456d32006-07-30 03:04:00 -07001674JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001675P: Stephen Tweedie, Andrew Morton
1676M: sct@redhat.com, akpm@osdl.org
1677L: ext2-devel@lists.sourceforge.net
1678S: Maintained
1679
Rudolf Marek4660cb32006-10-08 22:01:26 +02001680K8TEMP HARDWARE MONITORING DRIVER
1681P: Rudolf Marek
1682M: r.marek@assembler.cz
1683L: lm-sensors@lm-sensors.org
1684S: Maintained
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686KCONFIG
1687P: Roman Zippel
1688M: zippel@linux-m68k.org
1689L: kbuild-devel@lists.sourceforge.net
1690S: Maintained
1691
Vivek Goyalea6c2082006-05-20 14:59:55 -07001692KDUMP
1693P: Vivek Goyal
1694M: vgoyal@in.ibm.com
1695P: Haren Myneni
1696M: hbabu@us.ibm.com
1697L: fastboot@lists.osdl.org
1698L: linux-kernel@vger.kernel.org
1699W: http://lse.sourceforge.net/kdump/
1700S: Maintained
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702KERNEL AUTOMOUNTER (AUTOFS)
1703P: H. Peter Anvin
1704M: hpa@zytor.com
1705L: autofs@linux.kernel.org
1706S: Odd Fixes
1707
1708KERNEL AUTOMOUNTER v4 (AUTOFS4)
1709P: Ian Kent
1710M: raven@themaw.net
1711L: autofs@linux.kernel.org
1712S: Maintained
1713
1714KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1715P: Kai Germaschewski
1716M: kai@germaschewski.name
1717P: Sam Ravnborg
1718M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001719T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720S: Maintained
1721
1722KERNEL JANITORS
1723P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001724L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726S: Maintained
1727
1728KERNEL NFSD
1729P: Neil Brown
1730M: neilb@cse.unsw.edu.au
1731L: nfs@lists.sourceforge.net
1732W: http://nfs.sourceforge.net/
1733W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1734S: Maintained
1735
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001736KEXEC
1737P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001738M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001739W: http://www.xmission.com/~ebiederm/files/kexec/
1740L: linux-kernel@vger.kernel.org
1741L: fastboot@osdl.org
1742S: Maintained
1743
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001744KPROBES
1745P: Prasanna S Panchamukhi
1746M: prasanna@in.ibm.com
1747P: Ananth N Mavinakayanahalli
1748M: ananth@in.ibm.com
1749P: Anil S Keshavamurthy
1750M: anil.s.keshavamurthy@intel.com
1751P: David S. Miller
1752M: davem@davemloft.net
1753L: linux-kernel@vger.kernel.org
1754S: Maintained
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001758S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760LASI 53c700 driver for PARISC
1761P: James E.J. Bottomley
1762M: James.Bottomley@HansenPartnership.com
1763L: linux-scsi@vger.kernel.org
1764S: Maintained
1765
Richard Purdie263de9b2006-05-15 09:44:16 -07001766LED SUBSYSTEM
1767P: Richard Purdie
1768M: rpurdie@rpsys.net
1769S: Maintained
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771LEGO USB Tower driver
1772P: Juergen Stuber
1773M: starblue@users.sourceforge.net
1774L: legousb-devel@lists.sourceforge.net
1775W: http://legousb.sourceforge.net/
1776S: Maintained
1777
1778LINUX FOR IBM pSERIES (RS/6000)
1779P: Paul Mackerras
1780M: paulus@au.ibm.com
1781W: http://www.ibm.com/linux/ltc/projects/ppc
1782S: Supported
1783
1784LINUX FOR NCR VOYAGER
1785P: James Bottomley
1786M: James.Bottomley@HansenPartnership.com
1787W: http://www.hansenpartnership.com/voyager
1788S: Maintained
1789
1790LINUX FOR POWERPC
1791P: Paul Mackerras
1792M: paulus@samba.org
1793W: http://www.penguinppc.org/
1794L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001795T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796S: Supported
1797
1798LINUX FOR POWER MACINTOSH
1799P: Benjamin Herrenschmidt
1800M: benh@kernel.crashing.org
1801W: http://www.penguinppc.org/
1802L: linuxppc-dev@ozlabs.org
1803S: Maintained
1804
1805LINUX FOR POWERPC EMBEDDED MPC52XX
1806P: Sylvain Munaut
1807M: tnt@246tNt.com
1808W: http://www.246tNt.com/mpc52xx/
1809W: http://www.penguinppc.org/
1810L: linuxppc-dev@ozlabs.org
1811L: linuxppc-embedded@ozlabs.org
1812S: Maintained
1813
1814LINUX FOR POWERPC EMBEDDED PPC4XX
1815P: Matt Porter
1816M: mporter@kernel.crashing.org
1817W: http://www.penguinppc.org/
1818L: linuxppc-embedded@ozlabs.org
1819S: Maintained
1820
Tom Rinie93adf12005-07-26 12:49:53 -07001821LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822P: Tom Rini
1823M: trini@kernel.crashing.org
1824W: http://www.penguinppc.org/
1825L: linuxppc-embedded@ozlabs.org
1826S: Maintained
1827
Tom Rinie93adf12005-07-26 12:49:53 -07001828LINUX FOR POWERPC EMBEDDED PPC8XX
1829P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001830M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001831W: http://www.penguinppc.org/
1832L: linuxppc-embedded@ozlabs.org
1833S: Maintained
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
1836P: Kumar Gala
Kumar Gala4c8d3d92005-11-13 16:06:30 -08001837M: galak@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838W: http://www.penguinppc.org/
1839L: linuxppc-embedded@ozlabs.org
1840S: Maintained
1841
Olof Johanssonab06ff32006-09-06 14:44:54 -05001842LINUX FOR POWERPC PA SEMI PWRFICIENT
1843P: Olof Johansson
1844M: olof@lixom.net
1845W: http://www.pasemi.com/
1846L: linuxppc-dev@ozlabs.org
1847S: Supported
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849LLC (802.2)
1850P: Arnaldo Carvalho de Melo
1851M: acme@conectiva.com.br
1852S: Maintained
1853
1854LINUX FOR 64BIT POWERPC
1855P: Paul Mackerras
1856M: paulus@samba.org
1857M: paulus@au.ibm.com
1858P: Anton Blanchard
1859M: anton@samba.org
1860M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001861W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001862L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863S: Supported
1864
1865LINUX SECURITY MODULE (LSM) FRAMEWORK
1866P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001867M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001868L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001870T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871S: Supported
1872
1873LM83 HARDWARE MONITOR DRIVER
1874P: Jean Delvare
1875M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001876L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877S: Maintained
1878
1879LM90 HARDWARE MONITOR DRIVER
1880P: Jean Delvare
1881M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001882L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883S: Maintained
1884
1885LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1886P: Richard Russon (FlatCap)
1887M: ldm@flatcap.org
1888L: ldm-devel@lists.sourceforge.net
1889W: http://ldm.sourceforge.net
1890S: Maintained
1891
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001892LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1893P: Eric Moore
1894M: Eric.Moore@lsil.com
1895M: support@lsil.com
1896L: mpt_linux_developer@lsil.com
1897L: linux-scsi@vger.kernel.org
1898W: http://www.lsilogic.com/support
1899S: Supported
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1902P: Matthew Wilcox
1903M: matthew@wil.cx
1904L: linux-scsi@vger.kernel.org
1905S: Maintained
1906
1907M68K ARCHITECTURE
1908P: Geert Uytterhoeven
1909M: geert@linux-m68k.org
1910P: Roman Zippel
1911M: zippel@linux-m68k.org
1912L: linux-m68k@lists.linux-m68k.org
1913W: http://www.linux-m68k.org/
1914W: http://linux-m68k-cvs.ubb.ca/
1915S: Maintained
1916
1917M68K ON APPLE MACINTOSH
1918P: Joshua Thompson
1919M: funaho@jurai.org
1920W: http://www.mac.linux-m68k.org/
1921L: linux-mac68k@mac.linux-m68k.org
1922S: Maintained
1923
1924M68K ON HP9000/300
1925P: Philip Blundell
1926M: philb@gnu.org
1927W: http://www.tazenda.demon.co.uk/phil/linux-hp
1928S: Maintained
1929
1930MARVELL YUKON / SYSKONNECT DRIVER
1931P: Mirko Lindner
1932M: mlindner@syskonnect.de
1933P: Ralph Roesler
1934M: rroesler@syskonnect.de
1935W: http://www.syskonnect.com
1936S: Supported
1937
Michael Kerriskfaf16682005-07-31 22:34:47 -07001938MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
1939P: Michael Kerrisk
1940M: mtk-manpages@gmx.net
1941W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1942S: Maintained
1943
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001944MARVELL MV643XX ETHERNET DRIVER
1945P: Dale Farnsworth
1946M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001948M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001949L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001950S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952MATROX FRAMEBUFFER DRIVER
1953P: Petr Vandrovec
1954M: vandrove@vc.cvut.cz
1955L: linux-fbdev-devel@lists.sourceforge.net
1956S: Maintained
1957
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001958MEGARAID SCSI DRIVERS
1959P: Neela Syam Kolli
1960M: Neela.Kolli@engenio.com
1961S: linux-scsi@vger.kernel.org
1962W: http://megaraid.lsilogic.com
1963S: Maintained
1964
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001965MEMORY MANAGEMENT
1966L: linux-mm@kvack.org
1967L: linux-kernel@vger.kernel.org
1968W: http://www.linux-mm.org
1969S: Maintained
1970
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001971MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972P: David Woodhouse
1973M: dwmw2@infradead.org
1974W: http://www.linux-mtd.infradead.org/
1975L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001976T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977S: Maintained
1978
1979MICROTEK X6 SCANNER
1980P: Oliver Neukum
1981M: oliver@neukum.name
1982S: Maintained
1983
1984MIPS
1985P: Ralf Baechle
1986M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01001987W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00001989T: git www.linux-mips.org:/pub/scm/linux.git
1990S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992MISCELLANEOUS MCA-SUPPORT
1993P: James Bottomley
1994M: jejb@steeleye.com
1995L: linux-kernel@vger.kernel.org
1996S: Maintained
1997
1998MODULE SUPPORT
1999P: Rusty Russell
2000M: rusty@rustcorp.com.au
2001L: linux-kernel@vger.kernel.org
2002S: Maintained
2003
2004MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2005P: Stelian Pop
2006M: stelian@popies.net
2007W: http://popies.net/meye/
2008S: Maintained
2009
2010MOUSE AND MISC DEVICES [GENERAL]
2011P: Alessandro Rubini
2012M: rubini@ipvvis.unipv.it
2013L: linux-kernel@vger.kernel.org
2014S: Maintained
2015
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002016MSI LAPTOP SUPPORT
2017P: Lennart Poettering
2018M: mzxreary@0pointer.de
2019L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2020W: http://0pointer.de/lennart/tchibo.html
2021S: Maintained
2022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023MTRR AND SIMILAR SUPPORT [i386]
2024P: Richard Gooch
2025M: rgooch@atnf.csiro.au
2026L: linux-kernel@vger.kernel.org
2027W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2028S: Maintained
2029
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002030MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2031P: Pierre Ossman
2032M: drzeus-mmc@drzeus.cx
2033L: linux-kernel@vger.kernel.org
2034S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036MULTISOUND SOUND DRIVER
2037P: Andrew Veliath
2038M: andrewtv@usa.net
2039S: Maintained
2040
2041NATSEMI ETHERNET DRIVER (DP8381x)
2042P: Tim Hockin
2043M: thockin@hockin.org
2044S: Maintained
2045
2046NCP FILESYSTEM
2047P: Petr Vandrovec
2048M: vandrove@vc.cvut.cz
2049L: linware@sh.cvut.cz
2050S: Maintained
2051
2052NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2053P: James E.J. Bottomley
2054M: James.Bottomley@HansenPartnership.com
2055L: linux-scsi@vger.kernel.org
2056S: Maintained
2057
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002058NETEM NETWORK EMULATOR
2059P: Stephen Hemminger
2060M: shemminger@osdl.org
2061L: netem@osdl.org
2062S: Maintained
2063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064NETFILTER/IPTABLES/IPCHAINS
2065P: Rusty Russell
2066P: Marc Boucher
2067P: James Morris
2068P: Harald Welte
2069P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002070P: Patrick McHardy
2071M: kaber@trash.net
2072L: netfilter-devel@lists.netfilter.org
2073L: netfilter@lists.netfilter.org
2074L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075W: http://www.netfilter.org/
2076W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077S: Supported
2078
Paul Moore4cc67732006-09-25 15:57:13 -07002079NETLABEL
2080P: Paul Moore
2081M: paul.moore@hp.com
2082W: http://netlabel.sf.net
2083L: netdev@vger.kernel.org
2084S: Supported
2085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086NETROM NETWORK LAYER
2087P: Ralf Baechle
2088M: ralf@linux-mips.org
2089L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002090W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091S: Maintained
2092
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002093NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094P: Paul Clements
2095M: Paul.Clements@steeleye.com
2096S: Maintained
2097
2098NETWORK DEVICE DRIVERS
2099P: Andrew Morton
2100M: akpm@osdl.org
2101P: Jeff Garzik
2102M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002103L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002104T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105S: Maintained
2106
2107NETWORKING [GENERAL]
2108P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002109M: netdev@vger.kernel.org
2110L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002111W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112S: Maintained
2113
2114NETWORKING [IPv4/IPv6]
2115P: David S. Miller
2116M: davem@davemloft.net
2117P: Alexey Kuznetsov
2118M: kuznet@ms2.inr.ac.ru
2119P: Pekka Savola (ipv6)
2120M: pekkas@netcore.fi
2121P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002122M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123P: Hideaki YOSHIFUJI
2124M: yoshfuji@linux-ipv6.org
2125P: Patrick McHardy
2126M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002127L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002128T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129S: Maintained
2130
John W. Linville29f8f632006-01-18 14:52:48 -08002131NETWORKING [WIRELESS]
2132P: John W. Linville
2133M: linville@tuxdriver.com
2134L: netdev@vger.kernel.org
2135T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2136S: Maintained
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138IPVS
2139P: Wensong Zhang
2140M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002141P: Simon Horman
2142M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143P: Julian Anastasov
2144M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002145L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146S: Maintained
2147
2148NFS CLIENT
2149P: Trond Myklebust
2150M: trond.myklebust@fys.uio.no
2151L: linux-kernel@vger.kernel.org
2152S: Maintained
2153
2154NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002155P: Jan-Pascal van Best
2156M: janpascal@vanbest.org
2157P: Andreas Mohr
2158M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002159L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160S: Maintained
2161
2162NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2163P: YOKOTA Hiroshi
2164M: yokota@netlab.is.tsukuba.ac.jp
2165W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2166S: Maintained
2167
2168NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2169P: GOTO Masanori
2170M: gotom@debian.or.jp
2171P: YOKOTA Hiroshi
2172M: yokota@netlab.is.tsukuba.ac.jp
2173W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2174S: Maintained
2175
2176NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2177P: Eberhard Moenkeberg
2178M: emoenke@gwdg.de
2179L: linux-kernel@vger.kernel.org
2180S: Maintained
2181
2182NTFS FILESYSTEM
2183P: Anton Altaparmakov
2184M: aia21@cantab.net
2185L: linux-ntfs-dev@lists.sourceforge.net
2186L: linux-kernel@vger.kernel.org
2187W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002188T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189S: Maintained
2190
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002191NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
2192P: Antonino Daplas
2193M: adaplas@pol.net
2194L: linux-fbdev-devel@lists.sourceforge.net
2195S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002197OPENCORES I2C BUS DRIVER
2198P: Peter Korsgaard
2199M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002200L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002201S: Maintained
2202
Mark Fashehccd979b2005-12-15 14:31:24 -08002203ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2204P: Mark Fasheh
2205M: mark.fasheh@oracle.com
2206P: Kurt Hackel
2207M: kurt.hackel@oracle.com
2208L: ocfs2-devel@oss.oracle.com
2209W: http://oss.oracle.com/projects/ocfs2/
2210S: Supported
2211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212OLYMPIC NETWORK DRIVER
2213P: Peter De Shrijver
2214M: p2@ace.ulyssis.student.kuleuven.ac.be
2215P: Mike Phillips
2216M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002217L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218L: linux-tr@linuxtr.net
2219W: http://www.linuxtr.net
2220S: Maintained
2221
Harald Weltec1986ee2005-11-13 16:06:29 -08002222OMNIKEY CARDMAN 4000 DRIVER
2223P: Harald Welte
2224M: laforge@gnumonks.org
2225S: Maintained
2226
Harald Welte77c44ab2005-11-13 16:06:26 -08002227OMNIKEY CARDMAN 4040 DRIVER
2228P: Harald Welte
2229M: laforge@gnumonks.org
2230S: Maintained
2231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232ONSTREAM SCSI TAPE DRIVER
2233P: Willem Riede
2234M: osst@riede.org
2235L: osst-users@lists.sourceforge.net
2236L: linux-scsi@vger.kernel.org
2237S: Maintained
2238
2239OPL3-SA2, SA3, and SAx DRIVER
2240P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002241M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242L: linux-sound@vger.kernel.org
2243S: Maintained
2244
2245OPROFILE
2246P: Philippe Elie
2247M: phil.el@wanadoo.fr
2248L: oprofile-list@lists.sf.net
2249S: Maintained
2250
2251ORINOCO DRIVER
2252P: Pavel Roskin
2253M: proski@gnu.org
2254P: David Gibson
2255M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002256L: orinoco-users@lists.sourceforge.net
2257L: orinoco-devel@lists.sourceforge.net
2258W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259S: Maintained
2260
2261PARALLEL PORT SUPPORT
2262P: Phil Blundell
2263M: philb@gnu.org
2264P: Tim Waugh
2265M: tim@cyberelk.net
2266P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267P: Andrea Arcangeli
2268M: andrea@suse.de
2269L: linux-parport@lists.infradead.org
2270W: http://people.redhat.com/twaugh/parport/
2271S: Maintained
2272
2273PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2274P: Tim Waugh
2275M: tim@cyberelk.net
2276L: linux-parport@lists.infradead.org
2277W: http://www.torque.net/linux-pp.html
2278S: Maintained
2279
2280PARISC ARCHITECTURE
2281P: Matthew Wilcox
2282M: matthew@wil.cx
2283P: Grant Grundler
2284M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002285P: Kyle McMartin
2286M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287L: parisc-linux@parisc-linux.org
2288W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002289T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2290T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291S: Maintained
2292
Jim Cromie1662d322006-10-06 00:43:59 -07002293PC87360 HARDWARE MONITORING DRIVER
2294P: Jim Cromie
2295M: jim.cromie@gmail.com
2296L: lm-sensors@lm-sensors.org
2297S: Maintained
2298
2299PC8736x GPIO DRIVER
2300P: Jim Cromie
2301M: jim.cromie@gmail.com
2302S: Maintained
2303
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002304PCI ERROR RECOVERY
2305P: Linas Vepstas
2306M: linas@austin.ibm.com
2307L: linux-kernel@vger.kernel.org
2308L: linux-pci@atrey.karlin.mff.cuni.cz
2309S: Supported
2310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2312P: Thomas Sailer
2313M: sailer@ife.ee.ethz.ch
2314L: linux-sound@vger.kernel.org
2315W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2316S: Maintained
2317
2318PCI SUBSYSTEM
2319P: Greg Kroah-Hartman
2320M: gregkh@suse.de
2321L: linux-kernel@vger.kernel.org
2322L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002323T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324S: Supported
2325
2326PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002327P: Kristen Carlson Accardi
2328M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329S: Supported
2330
2331PCI HOTPLUG COMPAQ DRIVER
2332P: Greg Kroah-Hartman
2333M: greg@kroah.com
2334S: Maintained
2335
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002336PCIE HOTPLUG DRIVER
2337P: Kristen Carlson Accardi
2338M: kristen.c.accardi@intel.com
2339L: pcihpd-discuss@lists.sourceforge.net
2340S: Maintained
2341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002343P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002344L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002346T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002347S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
2349PCNET32 NETWORK DRIVER
2350P: Thomas Bogendörfer
2351M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002352L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353S: Maintained
2354
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002355PER-TASK DELAY ACCOUNTING
2356P: Shailabh Nagar
2357M: nagar@watson.ibm.com
2358L: linux-kernel@vger.kernel.org
2359S: Maintained
2360
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002361PERSONALITY HANDLING
2362P: Christoph Hellwig
2363M: hch@infradead.org
2364L: linux-abi-devel@lists.sourceforge.net
2365S: Maintained
2366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367PHRAM MTD DRIVER
2368P: Jörn Engel
2369M: joern@wh.fh-wedel.de
2370L: linux-mtd@lists.infradead.org
2371S: Maintained
2372
Peter Osterlund249a6772005-09-27 21:45:30 -07002373PKTCDVD DRIVER
2374P: Peter Osterlund
2375M: petero2@telia.com
2376L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002377S: Maintained
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379POSIX CLOCKS and TIMERS
2380P: George Anzinger
2381M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002382L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383S: Supported
2384
Eugene Surovegin24682972005-10-14 03:00:53 -07002385POWERPC 4xx EMAC DRIVER
2386P: Eugene Surovegin
2387M: ebs@ebshome.net
2388W: http://kernel.ebshome.net/emac/
2389L: linuxppc-embedded@ozlabs.org
2390L: netdev@vger.kernel.org
2391S: Maintained
2392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393PNP SUPPORT
2394P: Adam Belay
2395M: ambx1@neo.rr.com
2396S: Maintained
2397
2398PPP PROTOCOL DRIVERS AND COMPRESSORS
2399P: Paul Mackerras
2400M: paulus@samba.org
2401L: linux-ppp@vger.kernel.org
2402S: Maintained
2403
2404PPP OVER ATM (RFC 2364)
2405P: Mitchell Blank Jr
2406M: mitch@sfgoth.com
2407S: Maintained
2408
2409PPP OVER ETHERNET
2410P: Michal Ostrowski
2411M: mostrows@speakeasy.net
2412S: Maintained
2413
2414PREEMPTIBLE KERNEL
2415P: Robert Love
2416M: rml@tech9.net
2417L: linux-kernel@vger.kernel.org
2418L: kpreempt-tech@lists.sourceforge.net
2419W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2420S: Supported
2421
2422PRISM54 WIRELESS DRIVER
2423P: Prism54 Development Team
2424M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002425L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426W: http://prism54.org
2427S: Maintained
2428
2429PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2430P: Peter Denison
2431M: promise@pnd-pc.demon.co.uk
2432W: http://www.pnd-pc.demon.co.uk/promise/
2433S: Maintained
2434
Michael Krufky83202042006-07-03 00:24:18 -07002435PVRUSB2 VIDEO4LINUX DRIVER
2436P: Mike Isely
2437M: isely@pobox.com
2438L: pvrusb2@isely.net
2439L: video4linux-list@redhat.com
2440W: http://www.isely.net/pvrusb2/
2441S: Maintained
2442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443PXA2xx SUPPORT
2444P: Nicolas Pitre
2445M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002446L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447S: Maintained
2448
2449QLOGIC QLA2XXX FC-SCSI DRIVER
2450P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002451M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452L: linux-scsi@vger.kernel.org
2453S: Supported
2454
Ron Mercer5a4faa82006-07-25 00:40:21 -07002455QLOGIC QLA3XXX NETWORK DRIVER
2456P: Ron Mercer
2457M: linux-driver@qlogic.com
2458L: netdev@vger.kernel.org
2459S: Supported
2460
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461QNX4 FILESYSTEM
2462P: Anders Larsen
2463M: al@alarsen.net
2464L: linux-kernel@vger.kernel.org
2465W: http://www.alarsen.net/linux/qnx4fs/
2466S: Maintained
2467
2468RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002469P: Benjamin Herrenschmidt
2470M: benh@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471L: linux-fbdev-devel@lists.sourceforge.net
2472S: Maintained
2473
2474RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002475P: Paul Mackerras
2476M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477L: linux-fbdev-devel@lists.sourceforge.net
2478S: Maintained
2479
2480RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2481P: Corey Thomas
2482M: corey@world.std.com
2483L: linux-kernel@vger.kernel.org
2484S: Maintained
2485
Matt Mackall9e95ce22005-04-16 15:25:56 -07002486RANDOM NUMBER DRIVER
2487P: Matt Mackall
2488M: mpm@selenic.com
2489S: Maintained
2490
Matt Porter394b7012005-11-07 01:00:15 -08002491RAPIDIO SUBSYSTEM
2492P: Matt Porter
2493M: mporter@kernel.crashing.org
2494L: linux-kernel@vger.kernel.org
2495S: Maintained
2496
Josh Triplett595182b2006-10-04 02:17:21 -07002497READ-COPY UPDATE (RCU)
2498P: Dipankar Sarma
2499M: dipankar@in.ibm.com
2500W: http://www.rdrop.com/users/paulmck/rclock/
2501L: linux-kernel@vger.kernel.org
2502S: Supported
2503
2504RCUTORTURE MODULE
2505P: Josh Triplett
2506M: josh@freedesktop.org
2507L: linux-kernel@vger.kernel.org
2508S: Maintained
2509
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510REAL TIME CLOCK DRIVER
2511P: Paul Gortmaker
2512M: p_gortmaker@yahoo.com
2513L: linux-kernel@vger.kernel.org
2514S: Maintained
2515
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002516REAL TIME CLOCK (RTC) SUBSYSTEM
2517P: Alessandro Zummo
2518M: a.zummo@towertech.it
2519L: linux-kernel@vger.kernel.org
2520S: Maintained
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522REISERFS FILE SYSTEM
2523P: Hans Reiser
2524M: reiserfs-dev@namesys.com
2525L: reiserfs-list@namesys.com
2526W: http://www.namesys.com
2527S: Supported
2528
2529ROCKETPORT DRIVER
2530P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531W: http://www.comtrol.com
2532S: Maintained
2533
2534ROSE NETWORK LAYER
2535P: Ralf Baechle
2536M: ralf@linux-mips.org
2537L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002538W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539S: Maintained
2540
2541RISCOM8 DRIVER
2542S: Orphan
2543
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002544S3 SAVAGE FRAMEBUFFER DRIVER
2545P: Antonino Daplas
2546M: adaplas@pol.net
2547L: linux-fbdev-devel@lists.sourceforge.net
2548S: Maintained
2549
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550S390
2551P: Martin Schwidefsky
2552M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002553P: Heiko Carstens
2554M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555M: linux390@de.ibm.com
2556L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002557W: http://www.ibm.com/developerworks/linux/linux390/
2558S: Supported
2559
2560S390 NETWORK DRIVERS
2561P: Frank Pavlic
2562M: fpavlic@de.ibm.com
2563M: linux390@de.ibm.com
2564L: linux-390@vm.marist.edu
2565W: http://www.ibm.com/developerworks/linux/linux390/
2566S: Supported
2567
2568S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002569P: Swen Schillig
2570M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002571M: linux390@de.ibm.com
2572L: linux-390@vm.marist.edu
2573W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574S: Supported
2575
2576SAA7146 VIDEO4LINUX-2 DRIVER
2577P: Michael Hunold
2578M: michael@mihu.de
2579W: http://www.mihu.de/linux/saa7146
2580S: Maintained
2581
2582SBPCD CDROM DRIVER
2583P: Eberhard Moenkeberg
2584M: emoenke@gwdg.de
2585L: linux-kernel@vger.kernel.org
2586S: Maintained
2587
2588SC1200 WDT DRIVER
2589P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002590M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591S: Maintained
2592
2593SCHEDULER
2594P: Ingo Molnar
2595M: mingo@elte.hu
2596P: Robert Love [the preemptible kernel bits]
2597M: rml@tech9.net
2598L: linux-kernel@vger.kernel.org
2599S: Maintained
2600
2601SCSI CDROM DRIVER
2602P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002603M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604L: linux-scsi@vger.kernel.org
2605W: http://www.kernel.dk
2606S: Maintained
2607
2608SCSI SG DRIVER
2609P: Doug Gilbert
2610M: dgilbert@interlog.com
2611L: linux-scsi@vger.kernel.org
2612W: http://www.torque.net/sg
2613S: Maintained
2614
2615SCSI SUBSYSTEM
2616P: James E.J. Bottomley
2617M: James.Bottomley@SteelEye.com
2618L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002619T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620S: Maintained
2621
2622SCSI TAPE DRIVER
2623P: Kai Mäkisara
2624M: Kai.Makisara@kolumbus.fi
2625L: linux-scsi@vger.kernel.org
2626S: Maintained
2627
2628SCTP PROTOCOL
2629P: Sridhar Samudrala
2630M: sri@us.ibm.com
2631L: lksctp-developers@lists.sourceforge.net
2632S: Supported
2633
2634SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002635P: Jim Cromie
2636M: jim.cromie@gmail.com
2637S: Odd Fixes
2638
2639SCx200 GPIO DRIVER
2640P: Jim Cromie
2641M: jim.cromie@gmail.com
2642S: Maintained
2643
2644SCx200 HRT CLOCKSOURCE DRIVER
2645P: Jim Cromie
2646M: jim.cromie@gmail.com
2647S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649SECURITY CONTACT
2650P: Security Officers
2651M: security@kernel.org
2652S: Supported
2653
2654SELINUX SECURITY MODULE
2655P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002656M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002658M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659L: linux-kernel@vger.kernel.org (kernel issues)
2660L: selinux@tycho.nsa.gov (general discussion)
2661W: http://www.nsa.gov/selinux
2662S: Supported
2663
2664SERIAL ATA (SATA) SUBSYSTEM:
2665P: Jeff Garzik
2666M: jgarzik@pobox.com
2667L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002668T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669S: Supported
2670
2671SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2672P: Pat Gefre
2673M: pfg@sgi.com
2674L: linux-ia64@vger.kernel.org
2675S: Supported
2676
2677SGI VISUAL WORKSTATION 320 AND 540
2678P: Andrey Panin
2679M: pazke@donpac.ru
2680L: linux-visws-devel@lists.sf.net
2681W: http://linux-visws.sf.net
2682S: Maintained for 2.6.
2683
2684SIMTEC EB110ATX (Chalice CATS)
2685P: Ben Dooks
2686P: Vincent Sanders
2687M: support@simtec.co.uk
2688W: http://www.simtec.co.uk/products/EB110ATX/
2689S: Supported
2690
2691SIMTEC EB2410ITX (BAST)
2692P: Ben Dooks
2693P: Vincent Sanders
2694M: support@simtec.co.uk
2695W: http://www.simtec.co.uk/products/EB2410ITX/
2696S: Supported
2697
Francois Romieu92aab3c2005-07-30 13:11:18 +02002698SIS 190 ETHERNET DRIVER
2699P: Francois Romieu
2700M: romieu@fr.zoreil.com
2701L: netdev@vger.kernel.org
2702S: Maintained
2703
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704SIS 5513 IDE CONTROLLER DRIVER
2705P: Lionel Bouton
2706M: Lionel.Bouton@inet6.fr
2707W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2708W: http://gyver.homeip.net/sis5513/index.html
2709S: Maintained
2710
2711SIS 900/7016 FAST ETHERNET DRIVER
2712P: Daniele Venzano
2713M: venza@brownhat.org
2714W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002715L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716S: Maintained
2717
2718SIS FRAMEBUFFER DRIVER
2719P: Thomas Winischhofer
2720M: thomas@winischhofer.net
2721W: http://www.winischhofer.net/linuxsisvga.shtml
2722S: Maintained
2723
2724SIS USB2VGA DRIVER
2725P: Thomas Winischhofer
2726M: thomas@winischhofer.net
2727W: http://www.winischhofer.at/linuxsisusbvga.shtml
2728S: Maintained
2729
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730SMC91x ETHERNET DRIVER
2731P: Nicolas Pitre
2732M: nico@cam.org
2733S: Maintained
2734
Daniel Drake8f0f8502006-07-18 22:00:25 +01002735SOFTMAC LAYER (IEEE 802.11)
2736P: Johannes Berg
2737M: johannes@sipsolutions.net
2738P: Joe Jezak
2739M: josejx@gentoo.org
2740P: Daniel Drake
2741M: dsd@gentoo.org
2742W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002743L: netdev@vger.kernel.org
2744S: Maintained
2745
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746SOFTWARE RAID (Multiple Disks) SUPPORT
2747P: Ingo Molnar
2748M: mingo@redhat.com
2749P: Neil Brown
2750M: neilb@cse.unsw.edu.au
2751L: linux-raid@vger.kernel.org
2752S: Maintained
2753
2754SOFTWARE SUSPEND:
2755P: Pavel Machek
2756M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002757L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758S: Maintained
2759
2760SONIC NETWORK DRIVER
2761P: Thomas Bogendoerfer
2762M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002763L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764S: Maintained
2765
2766SONY VAIO CONTROL DEVICE DRIVER
2767P: Stelian Pop
2768M: stelian@popies.net
2769W: http://popies.net/sonypi/
2770S: Maintained
2771
2772SOUND
2773P: Jaroslav Kysela
2774M: perex@suse.cz
2775L: alsa-devel@alsa-project.org
2776S: Maintained
2777
Kumar Gala025c3982006-04-02 16:05:54 -05002778SPI SUBSYSTEM
2779P: David Brownell
2780M: dbrownell@users.sourceforge.net
2781L: spi-devel-general@lists.sourceforge.net
2782S: Maintained
2783
Steven Rostedt855f46a2006-08-05 12:14:50 -07002784STABLE BRANCH:
2785P: Greg Kroah-Hartman
2786M: greg@kroah.com
2787P: Chris Wright
2788M: chrisw@sous-sol.org
2789L: stable@kernel.org
2790S: Maintained
2791
Kylene Hall1c72d462005-05-01 08:59:13 -07002792TPM DEVICE DRIVER
2793P: Kylene Hall
2794M: kjhall@us.ibm.com
2795W: http://tpmdd.sourceforge.net
2796L: tpmdd-devel@lists.sourceforge.net
2797S: Maintained
2798
Mark Gross1a80ba82005-10-30 15:02:55 -08002799Telecom Clock Driver for MCPL0010
2800P: Mark Gross
2801M: mark.gross@intel.com
2802S: Supported
2803
Chris Zankel48b415c2005-06-23 22:01:07 -07002804TENSILICA XTENSA PORT (xtensa):
2805P: Chris Zankel
2806M: chris@zankel.net
2807S: Maintained
2808
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809UltraSPARC (sparc64):
2810P: David S. Miller
2811M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002813T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814S: Maintained
2815
2816SHARP LH SUPPORT (LH7952X & LH7A40X)
2817P: Marc Singer
2818M: elf@buici.com
2819W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002820L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821S: Maintained
2822
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002823SHPC HOTPLUG DRIVER
2824P: Kristen Carlson Accardi
2825M: kristen.c.accardi@intel.com
2826L: pcihpd-discuss@lists.sourceforge.net
2827S: Maintained
2828
Pierre Ossmand129bce2006-03-24 03:18:17 -08002829SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2830P: Pierre Ossman
2831M: drzeus-sdhci@drzeus.cx
2832L: sdhci-devel@list.drzeus.cx
2833W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2834S: Maintained
2835
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002836SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2837P: Stephen Hemminger
2838M: shemminger@osdl.org
2839L: netdev@vger.kernel.org
2840S: Maintained
2841
Chris Boot1a87d942006-07-10 04:45:34 -07002842SOEKRIS NET48XX LED SUPPORT
2843P: Chris Boot
2844M: bootc@bootc.net
2845S: Maintained
2846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847SPARC (sparc32):
2848P: William L. Irwin
2849M: wli@holomorphy.com
2850L: sparclinux@vger.kernel.org
2851S: Maintained
2852
2853SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2854P: Roger Wolff
2855M: R.E.Wolff@BitWizard.nl
2856L: linux-kernel@vger.kernel.org ?
2857S: Supported
2858
Jim Lewis2752e402006-09-29 02:01:19 -07002859SPIDERNET NETWORK DRIVER for CELL
2860P: Jim Lewis
2861M: jim@jklewis.com
2862L: netdev@vger.kernel.org
2863S: Supported
2864
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865SRM (Alpha) environment access
2866P: Jan-Benedict Glaw
2867M: jbglaw@lug-owl.de
2868L: linux-kernel@vger.kernel.org
2869S: Maintained
2870
2871STARFIRE/DURALAN NETWORK DRIVER
2872P: Ion Badulescu
2873M: ionut@cs.columbia.edu
2874S: Maintained
2875
2876STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2877W: http://mosquitonet.Stanford.EDU/strip.html
2878S: Unsupported ?
2879
2880STRADIS MPEG-2 DECODER DRIVER
2881P: Nathan Laredo
2882M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883W: http://www.stradis.com/
2884S: Maintained
2885
2886SUPERH (sh)
2887P: Paul Mundt
2888M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002889L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891S: Maintained
2892
2893SUPERH64 (sh64)
2894P: Paul Mundt
2895M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896L: linuxsh-shmedia-dev@lists.sourceforge.net
2897W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898S: Maintained
2899
2900SUN3/3X
2901P: Sam Creasey
2902M: sammy@sammy.net
2903L: sun3-list@redhat.com
2904W: http://sammy.net/sun3/
2905S: Maintained
2906
2907SVGA HANDLING
2908P: Martin Mares
2909M: mj@ucw.cz
2910L: linux-video@atrey.karlin.mff.cuni.cz
2911S: Maintained
2912
2913SYSV FILESYSTEM
2914P: Christoph Hellwig
2915M: hch@infradead.org
2916S: Maintained
2917
Stephen Hemminger781b4562006-07-10 20:25:29 -07002918TC CLASSIFIER
2919P: Jamal Hadi Salim
2920M: hadi@cyberus.ca
2921L: netdev@vger.kernel.org
2922S: Maintained
2923
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002924TCP LOW PRIORITY MODULE
2925P: Wong Hoi Sing, Edison
2926M: hswong3i@gmail.com
2927P: Hung Hing Lun, Mike
2928M: hlhung3i@gmail.com
2929W: http://tcp-lp-mod.sourceforge.net/
2930S: Maintained
2931
Alex Dubov4020f2d2006-10-04 02:15:37 -07002932TI FLASH MEDIA INTERFACE DRIVER
2933P: Alex Dubov
2934M: oakad@yahoo.com
2935S: Maintained
2936
Michael Buesch844dd052006-06-26 00:24:59 -07002937TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2938P: Deepak Saxena
2939M: dsaxena@plexity.net
2940S: Maintained
2941
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002942TASKSTATS STATISTICS INTERFACE
2943P: Shailabh Nagar
2944M: nagar@watson.ibm.com
2945L: linux-kernel@vger.kernel.org
2946S: Maintained
2947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948TI PARALLEL LINK CABLE DRIVER
2949P: Romain Lievin
2950M: roms@lpg.ticalc.org
2951S: Maintained
2952
Per Lidene86eaa32006-01-12 16:45:18 +01002953TIPC NETWORK LAYER
2954P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002955M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002956P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002957M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002958P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002959M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002960L: tipc-discussion@lists.sourceforge.net
2961W: http://tipc.sourceforge.net/
2962W: http://tipc.cslab.ericsson.net/
2963T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
2964S: Maintained
2965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966TLAN NETWORK DRIVER
2967P: Samuel Chessman
2968M: chessman@tux.org
2969L: tlan-devel@lists.sourceforge.net
2970W: http://sourceforge.net/projects/tlan/
2971S: Maintained
2972
2973TOKEN-RING NETWORK DRIVER
2974P: Mike Phillips
2975M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002976L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977L: linux-tr@linuxtr.net
2978W: http://www.linuxtr.net
2979S: Maintained
2980
2981TOSHIBA ACPI EXTRAS DRIVER
2982P: John Belmonte
2983M: toshiba_acpi@memebeam.org
2984W: http://memebeam.org/toys/ToshibaAcpiDriver
2985S: Maintained
2986
2987TOSHIBA SMM DRIVER
2988P: Jonathan Buzzard
2989M: jonathan@buzzard.org.uk
2990L: tlinux-users@tce.toshiba-dme.co.jp
2991W: http://www.buzzard.org.uk/toshiba/
2992S: Maintained
2993
2994TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
2995P: Muli Ben-Yehuda
2996M: mulix@mulix.org
2997L: linux-kernel@vger.kernel.org
2998S: Maintained
2999
3000TRIVIAL PATCHES
Adrian Bunk6dfca872005-11-06 21:31:01 +01003001P: Adrian Bunk
3002M: trivial@kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003L: linux-kernel@vger.kernel.org
Adrian Bunk6dfca872005-11-06 21:31:01 +01003004W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
Josh Boyer1adc1232005-11-23 15:44:15 -08003005T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006S: Maintained
3007
3008TMS380 TOKEN-RING NETWORK DRIVER
3009P: Adam Fritzler
3010M: mid@auk.cx
3011L: linux-tr@linuxtr.net
3012W: http://www.auk.cx/tms380tr/
3013S: Maintained
3014
3015TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003016P: Valerie Henson
3017M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018L: tulip-users@lists.sourceforge.net
3019W: http://sourceforge.net/projects/tulip/
3020S: Maintained
3021
3022TUN/TAP driver
3023P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003024M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025L: vtun@office.satix.net
3026W: http://vtun.sourceforge.net/tun
3027S: Maintained
3028
3029U14-34F SCSI DRIVER
3030P: Dario Ballabio
3031M: ballabio_dario@emc.com
3032L: linux-scsi@vger.kernel.org
3033S: Maintained
3034
3035UDF FILESYSTEM
3036P: Ben Fennema
3037M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038W: http://linux-udf.sourceforge.net
3039S: Maintained
3040
3041UNIFORM CDROM DRIVER
3042P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003043M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044L: linux-kernel@vger.kernel.org
3045W: http://www.kernel.dk
3046S: Maintained
3047
3048USB ACM DRIVER
3049P: Oliver Neukum
3050M: oliver@neukum.name
3051L: linux-usb-users@lists.sourceforge.net
3052L: linux-usb-devel@lists.sourceforge.net
3053S: Maintained
3054
3055USB BLOCK DRIVER (UB ub)
3056P: Pete Zaitcev
3057M: zaitcev@redhat.com
3058L: linux-kernel@vger.kernel.org
3059L: linux-usb-devel@lists.sourceforge.net
3060S: Supported
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062USB CDC ETHERNET DRIVER
3063P: Greg Kroah-Hartman
3064M: greg@kroah.com
3065L: linux-usb-users@lists.sourceforge.net
3066L: linux-usb-devel@lists.sourceforge.net
3067S: Maintained
3068W: http://www.kroah.com/linux-usb/
3069
3070USB EHCI DRIVER
3071P: David Brownell
3072M: dbrownell@users.sourceforge.net
3073L: linux-usb-devel@lists.sourceforge.net
3074S: Maintained
3075
Luca Risolia7ce08c92006-01-11 02:06:59 +00003076USB ET61X[12]51 DRIVER
3077P: Luca Risolia
3078M: luca.risolia@studio.unibo.it
3079L: linux-usb-devel@lists.sourceforge.net
3080L: video4linux-list@redhat.com
3081W: http://www.linux-projects.org
3082S: Maintained
3083
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084USB HID/HIDBP DRIVERS
3085P: Vojtech Pavlik
3086M: vojtech@suse.cz
3087L: linux-usb-users@lists.sourceforge.net
3088L: linux-usb-devel@lists.sourceforge.net
3089S: Maintained
3090
3091USB HUB DRIVER
3092P: Johannes Erdfelt
3093M: johannes@erdfelt.com
3094L: linux-usb-users@lists.sourceforge.net
3095L: linux-usb-devel@lists.sourceforge.net
3096S: Maintained
3097
Olav Kongas959eea22005-11-03 17:38:14 +02003098USB ISP116X DRIVER
3099P: Olav Kongas
3100M: ok@artecdesign.ee
3101L: linux-usb-devel@lists.sourceforge.net
3102S: Maintained
3103
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104USB KAWASAKI LSI DRIVER
3105P: Oliver Neukum
3106M: oliver@neukum.name
3107L: linux-usb-users@lists.sourceforge.net
3108L: linux-usb-devel@lists.sourceforge.net
3109S: Maintained
3110
3111USB MASS STORAGE DRIVER
3112P: Matthew Dharm
3113M: mdharm-usb@one-eyed-alien.net
3114L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003115L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116S: Maintained
3117W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3118
3119USB OHCI DRIVER
3120P: Roman Weissgaerber
3121M: weissg@vienna.at
3122L: linux-usb-users@lists.sourceforge.net
3123L: linux-usb-devel@lists.sourceforge.net
3124S: Maintained
3125
Matthias Urlichsba460e42005-07-14 00:33:47 -07003126USB OPTION-CARD DRIVER
3127P: Matthias Urlichs
3128M: smurf@smurf.noris.de
3129L: linux-usb-devel@lists.sourceforge.net
3130S: Maintained
3131
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132USB OV511 DRIVER
3133P: Mark McClelland
3134M: mmcclell@bigfoot.com
3135L: linux-usb-users@lists.sourceforge.net
3136L: linux-usb-devel@lists.sourceforge.net
3137W: http://alpha.dyndns.org/ov511/
3138S: Maintained
3139
3140USB PEGASUS DRIVER
3141P: Petko Manolov
3142M: petkan@users.sourceforge.net
3143L: linux-usb-users@lists.sourceforge.net
3144L: linux-usb-devel@lists.sourceforge.net
3145W: http://pegasus2.sourceforge.net/
3146S: Maintained
3147
3148USB PRINTER DRIVER
3149P: Vojtech Pavlik
3150M: vojtech@suse.cz
3151L: linux-usb-users@lists.sourceforge.net
3152L: linux-usb-devel@lists.sourceforge.net
3153S: Maintained
3154
3155USB RTL8150 DRIVER
3156P: Petko Manolov
3157M: petkan@users.sourceforge.net
3158L: linux-usb-users@lists.sourceforge.net
3159L: linux-usb-devel@lists.sourceforge.net
3160W: http://pegasus2.sourceforge.net/
3161S: Maintained
3162
3163USB SE401 DRIVER
3164P: Jeroen Vreeken
3165M: pe1rxq@amsat.org
3166L: linux-usb-users@lists.sourceforge.net
3167L: linux-usb-devel@lists.sourceforge.net
3168W: http://www.chello.nl/~j.vreeken/se401/
3169S: Maintained
3170
3171USB SERIAL CYBERJACK DRIVER
3172P: Matthias Bruestle and Harald Welte
3173M: support@reiner-sct.com
3174W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3175S: Maintained
3176
3177USB SERIAL DIGI ACCELEPORT DRIVER
3178P: Peter Berger and Al Borchers
3179M: pberger@brimson.com
3180M: alborchers@steinerpoint.com
3181L: linux-usb-users@lists.sourceforge.net
3182L: linux-usb-devel@lists.sourceforge.net
3183S: Maintained
3184
3185USB SERIAL DRIVER
3186P: Greg Kroah-Hartman
3187M: gregkh@suse.de
3188L: linux-usb-users@lists.sourceforge.net
3189L: linux-usb-devel@lists.sourceforge.net
3190S: Supported
3191
3192USB SERIAL BELKIN F5U103 DRIVER
3193P: William Greathouse
3194M: wgreathouse@smva.com
3195L: linux-usb-users@lists.sourceforge.net
3196L: linux-usb-devel@lists.sourceforge.net
3197S: Maintained
3198
3199USB SERIAL CYPRESS M8 DRIVER
3200P: Lonnie Mendez
3201M: dignome@gmail.com
3202L: linux-usb-users@lists.sourceforge.net
3203L: linux-usb-devel@lists.sourceforge.net
3204S: Maintained
3205W: http://geocities.com/i0xox0i
3206W: http://firstlight.net/cvs
3207
3208USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3209L: linux-usb-users@lists.sourceforge.net
3210L: linux-usb-devel@lists.sourceforge.net
3211S: Maintained
3212
3213USB AUERSWALD DRIVER
3214P: Wolfgang Muees
3215M: wolfgang@iksw-muees.de
3216L: linux-usb-users@lists.sourceforge.net
3217L: linux-usb-devel@lists.sourceforge.net
3218S: Maintained
3219
3220USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3221P: Gary Brubaker
3222M: xavyer@ix.netcom.com
3223L: linux-usb-users@lists.sourceforge.net
3224L: linux-usb-devel@lists.sourceforge.net
3225S: Maintained
3226
3227USB SERIAL KEYSPAN DRIVER
3228P: Greg Kroah-Hartman
3229M: greg@kroah.com
3230L: linux-usb-users@lists.sourceforge.net
3231L: linux-usb-devel@lists.sourceforge.net
3232W: http://www.kroah.com/linux/
3233S: Maintained
3234
3235USB SERIAL WHITEHEAT DRIVER
3236P: Stuart MacDonald
3237M: stuartm@connecttech.com
3238L: linux-usb-users@lists.sourceforge.net
3239L: linux-usb-devel@lists.sourceforge.net
3240W: http://www.connecttech.com
3241S: Supported
3242
3243USB SN9C10x DRIVER
3244P: Luca Risolia
3245M: luca.risolia@studio.unibo.it
3246L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003247L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248W: http://www.linux-projects.org
3249S: Maintained
3250
3251USB SUBSYSTEM
3252P: Greg Kroah-Hartman
3253M: gregkh@suse.de
3254L: linux-usb-users@lists.sourceforge.net
3255L: linux-usb-devel@lists.sourceforge.net
3256W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003257T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258S: Supported
3259
3260USB UHCI DRIVER
3261P: Alan Stern
3262M: stern@rowland.harvard.edu
3263L: linux-usb-users@lists.sourceforge.net
3264L: linux-usb-devel@lists.sourceforge.net
3265S: Maintained
3266
3267USB "USBNET" DRIVER
3268P: David Brownell
3269M: dbrownell@users.sourceforge.net
3270L: linux-usb-devel@lists.sourceforge.net
3271S: Maintained
3272
3273USB W996[87]CF DRIVER
3274P: Luca Risolia
3275M: luca.risolia@studio.unibo.it
3276L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003277L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278W: http://www.linux-projects.org
3279S: Maintained
3280
Luca Risolia60f78052006-02-06 16:29:35 +00003281USB ZC0301 DRIVER
3282P: Luca Risolia
3283M: luca.risolia@studio.unibo.it
3284L: linux-usb-devel@lists.sourceforge.net
3285L: video4linux-list@redhat.com
3286W: http://www.linux-projects.org
3287S: Maintained
3288
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289USB ZD1201 DRIVER
3290P: Jeroen Vreeken
3291M: pe1rxq@amsat.org
3292L: linux-usb-users@lists.sourceforge.net
3293L: linux-usb-devel@lists.sourceforge.net
3294W: http://linux-lc100020.sourceforge.net
3295S: Maintained
3296
3297USER-MODE LINUX
3298P: Jeff Dike
3299M: jdike@karaya.com
3300L: user-mode-linux-devel@lists.sourceforge.net
3301L: user-mode-linux-user@lists.sourceforge.net
3302W: http://user-mode-linux.sourceforge.net
3303S: Maintained
3304
3305FAT/VFAT/MSDOS FILESYSTEM:
3306P: OGAWA Hirofumi
3307M: hirofumi@mail.parknet.co.jp
3308L: linux-kernel@vger.kernel.org
3309S: Maintained
3310
3311VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3312P: Jeff Garzik
3313S: Odd fixes
3314
3315VIA RHINE NETWORK DRIVER
3316P: Roger Luethi
3317M: rl@hellgate.ch
3318S: Maintained
3319
Jean Delvare32c0a522005-09-22 21:47:58 +02003320VIAPRO SMBUS DRIVER
3321P: Jean Delvare
3322M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003323L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003324S: Maintained
3325
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326UCLINUX (AND M68KNOMMU)
3327P: Greg Ungerer
3328M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003330L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331S: Maintained
3332
3333UCLINUX FOR NEC V850
3334P: Miles Bader
3335M: uclinux-v850@lsi.nec.co.jp
3336W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3337W: http://www.ee.nec.de/uclinux/
3338S: Supported
3339
3340UCLINUX FOR RENESAS H8/300
3341P: Yoshinori Sato
3342M: ysato@users.sourceforge.jp
3343W: http://uclinux-h8.sourceforge.jp/
3344S: Supported
3345
3346USB DIAMOND RIO500 DRIVER
3347P: Cesar Miquel
3348M: miquel@df.uba.ar
3349L: rio500-users@lists.sourceforge.net
3350W: http://rio500.sourceforge.net
3351S: Maintained
3352
3353VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003354P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003355M: mchehab@infradead.org
3356M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003358W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003359T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003360S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361
Juerg Haefligerab413192006-09-24 20:54:04 +02003362VT1211 HARDWARE MONITOR DRIVER
3363P: Juerg Haefliger
3364M: juergh@gmail.com
3365L: lm-sensors@lm-sensors.org
3366S: Maintained
3367
Roger Lucas1de9e372005-11-26 20:20:05 +01003368VT8231 HARDWARE MONITOR DRIVER
3369P: Roger Lucas
3370M: roger@planbit.co.uk
3371L: lm-sensors@lm-sensors.org
3372S: Maintained
3373
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374W1 DALLAS'S 1-WIRE BUS
3375P: Evgeniy Polyakov
3376M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377S: Maintained
3378
Charles Spirakis13927072006-07-05 18:05:15 +02003379W83791D HARDWARE MONITORING DRIVER
3380P: Charles Spirakis
3381M: bezaur@gmail.com
3382L: lm-sensors@lm-sensors.org
3383S: Maintained
3384
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385W83L51xD SD/MMC CARD INTERFACE DRIVER
3386P: Pierre Ossman
3387M: drzeus-wbsd@drzeus.cx
3388L: wbsd-devel@list.drzeus.cx
3389W: http://projects.drzeus.cx/wbsd
3390S: Maintained
3391
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003392WATCHDOG DEVICE DRIVERS
3393P: Wim Van Sebroeck
3394M: wim@iguana.be
3395T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3396S: Maintained
3397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3399P: Jean Tourrilhes
3400M: jt@hpl.hp.com
3401W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3402S: Maintained
3403
3404WD7000 SCSI DRIVER
3405P: Miroslav Zagorac
3406M: zaga@fly.cc.fer.hr
3407L: linux-scsi@vger.kernel.org
3408S: Maintained
3409
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003410WISTRON LAPTOP BUTTON DRIVER
3411P: Miloslav Trmac
3412M: mitr@volny.cz
3413S: Maintained
3414
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415WL3501 WIRELESS PCMCIA CARD DRIVER
3416P: Arnaldo Carvalho de Melo
3417M: acme@conectiva.com.br
3418W: http://advogato.org/person/acme
3419S: Maintained
3420
3421X.25 NETWORK LAYER
3422P: Henner Eisen
3423M: eis@baty.hanse.de
3424L: linux-x25@vger.kernel.org
3425S: Maintained
3426
3427XFS FILESYSTEM
3428P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003429P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003431L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003433T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434S: Supported
3435
3436X86 3-LEVEL PAGING (PAE) SUPPORT
3437P: Ingo Molnar
3438M: mingo@redhat.com
3439S: Maintained
3440
3441X86-64 port
3442P: Andi Kleen
3443M: ak@suse.de
3444L: discuss@x86-64.org
3445W: http://www.x86-64.org
3446S: Maintained
3447
3448YAM DRIVER FOR AX.25
3449P: Jean-Paul Roubelat
3450M: jpr@f6fbb.org
3451L: linux-hams@vger.kernel.org
3452S: Maintained
3453
Henkaf64a5e2005-10-12 15:02:56 +02003454YEALINK PHONE DRIVER
3455P: Henk Vergonet
3456M: Henk.Vergonet@gmail.com
3457L: usbb2k-api-dev@nongnu.org
3458S: Maintained
3459
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460Z8530 DRIVER FOR AX.25
3461P: Joerg Reuter
3462M: jreuter@yaina.de
3463W: http://yaina.de/jreuter/
3464W: http://www.qsl.net/dl1bke/
3465L: linux-hams@vger.kernel.org
3466S: Maintained
3467
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003468ZD1211RW WIRELESS DRIVER
3469P: Daniel Drake
3470M: dsd@gentoo.org
3471P: Ulrich Kunitz
3472M: kune@deine-taler.de
3473W: http://zd1211.ath.cx/wiki/DriverRewrite
3474L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3475S: Maintained
3476
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477ZF MACHZ WATCHDOG
3478P: Fernando Fuganti
3479M: fuganti@netbank.com.br
3480W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3481S: Maintained
3482
3483ZR36067 VIDEO FOR LINUX DRIVER
3484P: Ronald Bultje
3485M: rbultje@ronald.bitfreak.net
3486L: mjpeg-users@lists.sourceforge.net
3487W: http://mjpeg.sourceforge.net/driver-zoran/
3488S: Maintained
3489
3490ZR36120 VIDEO FOR LINUX DRIVER
3491P: Pauline Middelink
3492M: middelin@polyware.nl
3493W: http://www.polyware.nl/~middelin/En/hobbies.html
3494W: http://www.polyware.nl/~middelin/hobbies.html
3495S: Maintained
3496
3497THE REST
3498P: Linus Torvalds
3499S: Buried alive in reporters