blob: 50fb3ae5f3138a8d579244fbf77d0b85fe110a7f [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 Becker62ca3d262006-01-27 11:04:12 -0800660M: joel.becker@oracle.com
661L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800662S: Supported
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664CIRRUS LOGIC GENERIC FBDEV DRIVER
665P: Jeff Garzik
666M: jgarzik@pobox.com
667L: linux-fbdev-devel@lists.sourceforge.net
668S: Odd Fixes
669
670CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
671P: Cirrus Logic Corporation (kernel 2.2 driver)
672M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
673P: Nils Faerber (port to kernel 2.4)
674M: Nils Faerber <nils@kernelconcepts.de>
675S: Maintained
676
677CODA FILE SYSTEM
678P: Jan Harkes
679M: jaharkes@cs.cmu.edu
680M: coda@cs.cmu.edu
681L: codalist@coda.cs.cmu.edu
682W: http://www.coda.cs.cmu.edu/
683S: Maintained
684
685COMPACTPCI HOTPLUG CORE
686P: Scott Murray
687M: scottm@somanetworks.com
688M: scott@spiteful.org
689L: pcihpd-discuss@lists.sourceforge.net
690S: Supported
691
692COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
693P: Scott Murray
694M: scottm@somanetworks.com
695M: scott@spiteful.org
696L: pcihpd-discuss@lists.sourceforge.net
697S: Supported
698
699COMPACTPCI HOTPLUG GENERIC DRIVER
700P: Scott Murray
701M: scottm@somanetworks.com
702M: scott@spiteful.org
703L: pcihpd-discuss@lists.sourceforge.net
704S: Supported
705
706COMPUTONE INTELLIPORT MULTIPORT CARD
707P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700708M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700710S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712COSA/SRP SYNC SERIAL DRIVER
713P: Jan "Yenya" Kasprzak
714M: kas@fi.muni.cz
715W: http://www.fi.muni.cz/~kas/cosa/
716S: Maintained
717
718CPU FREQUENCY DRIVERS
719P: Dave Jones
720M: davej@codemonkey.org.uk
721L: cpufreq@lists.linux.org.uk
722W: http://www.codemonkey.org.uk/projects/cpufreq/
Josh Boyer1adc1232005-11-23 15:44:15 -0800723T: git kernel.org/pub/scm/linux/kernel/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724S: Maintained
725
726CPUID/MSR DRIVER
727P: H. Peter Anvin
728M: hpa@zytor.com
729S: Maintained
730
Paul Jacksoned90fb42005-09-27 21:45:37 -0700731CPUSETS
732P: Paul Jackson
733P: Simon Derr
734M: pj@sgi.com
735M: simon.derr@bull.net
736L: linux-kernel@vger.kernel.org
737W: http://www.bullopensource.org/cpuset/
738S: Supported
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740CRAMFS FILESYSTEM
741W: http://sourceforge.net/projects/cramfs/
742S: Orphan
743
744CRIS PORT
745P: Mikael Starvik
746M: starvik@axis.com
747L: dev-etrax@axis.com
748W: http://developer.axis.com
749S: Maintained
750
751CRYPTO API
752P: Herbert Xu
753M: herbert@gondor.apana.org.au
754P: David S. Miller
755M: davem@davemloft.net
756L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800757T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758S: Maintained
759
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100760CS5535 Audio ALSA driver
761P: Jaya Kumar
762M: jayakumar.alsa@gmail.com
763S: Maintained
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765CYBERPRO FB DRIVER
766P: Russell King
767M: rmk@arm.linux.org.uk
768W: http://www.arm.linux.org.uk/
769S: Maintained
770
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700771CYBLAFB FRAMEBUFFER DRIVER
772P: Knut Petersen
773M: Knut_Petersen@t-online.de
774L: linux-fbdev-devel@lists.sourceforge.net
775S: Maintained
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777CYCLADES 2X SYNC CARD DRIVER
778P: Arnaldo Carvalho de Melo
779M: acme@conectiva.com.br
780W: http://advogato.org/person/acme
781L: cycsyn-devel@bazar.conectiva.com.br
782S: Maintained
783
784CYCLADES ASYNC MUX DRIVER
785M: async@cyclades.com
786W: http://www.cyclades.com/
787S: Supported
788
789CYCLADES PC300 DRIVER
790M: pc300@cyclades.com
791W: http://www.cyclades.com/
792S: Supported
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794DAMA SLAVE for AX.25
795P: Joerg Reuter
796M: jreuter@yaina.de
797W: http://yaina.de/jreuter/
798W: http://www.qsl.net/dl1bke/
799L: linux-hams@vger.kernel.org
800S: Maintained
801
802DC395x SCSI driver
803P: Oliver Neukum
804M: oliver@neukum.name
805P: Ali Akcaagac
806M: aliakc@web.de
807P: Jamie Lenehan
808M: lenehan@twibble.org
809W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700810L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811L: http://lists.twibble.org/mailman/listinfo/dc395x/
812S: Maintained
813
814DC390/AM53C974 SCSI driver
815P: Kurt Garloff
816M: garloff@suse.de
817W: http://www.garloff.de/kurt/linux/dc390/
818P: Guennadi Liakhovetski
819M: g.liakhovetski@gmx.de
820S: Maintained
821
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700822DCCP PROTOCOL
823P: Arnaldo Carvalho de Melo
824M: acme@mandriva.com
825L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800826W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700827S: Maintained
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829DECnet NETWORK LAYER
830P: Patrick Caulfield
831M: patrick@tykepenguin.com
832W: http://linux-decnet.sourceforge.net
833L: linux-decnet-user@lists.sourceforge.net
834S: Maintained
835
836DEFXX FDDI NETWORK DRIVER
837P: Maciej W. Rozycki
838M: macro@linux-mips.org
839S: Maintained
840
841DELL LAPTOP SMM DRIVER
842P: Massimo Dal Zotto
843M: dz@debian.org
844W: http://www.debian.org/~dz/i8k/
845S: Maintained
846
Doug Warzecha90563ec2005-09-06 15:17:15 -0700847DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
848P: Doug Warzecha
849M: Douglas_Warzecha@dell.com
850S: Maintained
851
Pavel Machek5ddb88c2006-09-29 02:01:29 -0700852DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853P: Alasdair Kergon
854L: dm-devel@redhat.com
855W: http://sources.redhat.com/dm
856S: Maintained
857
858DEVICE NUMBER REGISTRY
859P: Torben Mathiasen
860M: device@lanana.org
861W: http://lanana.org/docs/device-list/index.html
862L: linux-kernel@vger.kernel.org
863S: Maintained
864
865DEVICE FILESYSTEM
866S: Obsolete
867
868DIGI INTL. EPCA DRIVER
869P: Digi International, Inc
870M: Eng.Linux@digi.com
871L: Eng.Linux@digi.com
872W: http://www.digi.com
873S: Orphaned
874
875DIGI RIGHTSWITCH NETWORK DRIVER
876P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -0700877L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878W: http://www.digi.com
879S: Orphaned
880
881DIRECTORY NOTIFICATION
882P: Stephen Rothwell
883M: sfr@canb.auug.org.au
884L: linux-kernel@vger.kernel.org
885S: Supported
886
887DISK GEOMETRY AND PARTITION HANDLING
888P: Andries Brouwer
889M: aeb@cwi.nl
890W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
891W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
892W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
893S: Maintained
894
895DISKQUOTA:
896P: Jan Kara
897M: jack@suse.cz
898L: linux-kernel@vger.kernel.org
899S: Maintained
900
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/
908T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs-2.6.git
909S: Supported
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
912P: Tobias Ringstrom
913M: tori@unhappy.mine.nu
914L: linux-kernel@vger.kernel.org
915S: Maintained
916
Martin Waitzba483d52005-06-17 13:20:59 -0700917DOCBOOK FOR DOCUMENTATION
918P: Martin Waitz
919M: tali@admingilde.org
Randy Dunlap0f40efb2006-07-03 00:24:15 -0700920P: Randy Dunlap
921M: rdunlap@xenotime.net
Martin Waitz061350e2006-01-09 20:53:53 -0800922T: git http://tali.admingilde.org/git/linux-docbook.git
Martin Waitzba483d52005-06-17 13:20:59 -0700923S: Maintained
924
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -0400925DOCKING STATION DRIVER
926P: Kristen Carlson Accardi
927M: kristen.c.accardi@intel.com
928L: linux-acpi@vger.kernel.org
929S: Maintained
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931DOUBLETALK DRIVER
932P: James R. Van Zandt
933M: jrv@vanzandt.mv.com
934L: blinux-list@redhat.com
935S: Maintained
936
937DRIVER CORE, KOBJECTS, AND SYSFS
938P: Greg Kroah-Hartman
939M: gregkh@suse.de
940L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800941T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942S: Supported
943
944DRM DRIVERS
945P: David Airlie
946M: airlied@linux.ie
947L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -0800948T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949S: Maintained
950
951DSCC4 DRIVER
952P: François Romieu
953M: romieu@cogenit.fr
954M: romieu@ensta.fr
955S: Maintained
956
957DVB SUBSYSTEM AND DRIVERS
958P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200959M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +0200961W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200962T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200963S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965EATA-DMA SCSI DRIVER
966P: Michael Neuffer
967L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
968S: Maintained
969
970EATA ISA/EISA/PCI SCSI DRIVER
971P: Dario Ballabio
972M: ballabio_dario@emc.com
973L: linux-scsi@vger.kernel.org
974S: Maintained
975
976EATA-PIO SCSI DRIVER
977P: Michael Neuffer
978M: mike@i-Connect.Net
979L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
980S: Maintained
981
982EBTABLES
983P: Bart De Schuymer
984M: bart.de.schuymer@pandora.be
985L: ebtables-user@lists.sourceforge.net
986L: ebtables-devel@lists.sourceforge.net
987W: http://ebtables.sourceforge.net/
988S: Maintained
989
Michael Halcrow237fead2006-10-04 02:16:22 -0700990ECRYPT FILE SYSTEM
991P: Mike Halcrow, Phillip Hellewell
992M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
993L: ecryptfs-devel@lists.sourceforge.net
994W: http://ecryptfs.sourceforge.net/
995S: Supported
996
Alan Coxda9bb1d2006-01-18 17:44:13 -0800997EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -0800998P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -0700999M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001000L: bluesmoke-devel@lists.sourceforge.net
1001W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001002S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001003
1004EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001005P: Mark Gross
1006M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001007L: bluesmoke-devel@lists.sourceforge.net
1008W: bluesmoke.sourceforge.net
1009S: Maintained
1010
1011EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001012P: Doug Thompson
1013M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001014L: bluesmoke-devel@lists.sourceforge.net
1015W: bluesmoke.sourceforge.net
1016S: Maintained
1017
1018EDAC-R82600
1019P: Tim Small
1020M: tim@buttersideup.com
1021L: bluesmoke-devel@lists.sourceforge.net
1022W: bluesmoke.sourceforge.net
1023S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025EEPRO100 NETWORK DRIVER
1026P: Andrey V. Savochkin
1027M: saw@saw.sw.com.sg
1028S: Maintained
1029
Josh Triplett0bee8d22006-07-30 03:03:58 -07001030EFS FILESYSTEM
1031W: http://aeschi.ch.eu.org/efs/
1032S: Orphan
1033
Heiko J Schickfab97222006-09-22 15:22:22 -07001034EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1035P: Hoang-Nam Nguyen
1036M: hnguyen@de.ibm.com
1037P: Christoph Raisch
1038M: raisch@de.ibm.com
1039L: openib-general@openib.org
1040S: Supported
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042EMU10K1 SOUND DRIVER
1043P: James Courtier-Dutton
1044M: James@superbug.demon.co.uk
1045L: emu10k1-devel@lists.sourceforge.net
1046W: http://sourceforge.net/projects/emu10k1/
1047S: Maintained
1048
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001049EMULEX LPFC FC SCSI DRIVER
1050P: James Smart
1051M: james.smart@emulex.com
1052L: linux-scsi@vger.kernel.org
1053W: http://sourceforge.net/projects/lpfcxxxx
1054S: Supported
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056EPSON 1355 FRAMEBUFFER DRIVER
1057P: Christopher Hoover
1058M: ch@murgatroid.com, ch@hpl.hp.com
1059S: Maintained
1060
1061ETHEREXPRESS-16 NETWORK DRIVER
1062P: Philip Blundell
1063M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001064L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065S: Maintained
1066
1067ETHERNET BRIDGE
1068P: Stephen Hemminger
1069M: shemminger@osdl.org
1070L: bridge@osdl.org
1071W: http://bridge.sourceforge.net/
1072S: Maintained
1073
1074ETHERTEAM 16I DRIVER
1075P: Mika Kuoppala
1076M: miku@iki.fi
1077S: Maintained
1078
1079EXT2 FILE SYSTEM
1080L: ext2-devel@lists.sourceforge.net
1081S: Maintained
1082
1083EXT3 FILE SYSTEM
1084P: Stephen Tweedie, Andrew Morton
1085M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Theodore Tsoae0718f2006-05-20 15:00:13 -07001086L: ext2-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087S: Maintained
1088
Jean Delvaree53004e2006-01-09 23:26:14 +01001089F71805F HARDWARE MONITORING DRIVER
1090P: Jean Delvare
1091M: khali@linux-fr.org
1092L: lm-sensors@lm-sensors.org
1093S: Maintained
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095FARSYNC SYNCHRONOUS DRIVER
1096P: Kevin Curtis
1097M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098W: http://www.farsite.co.uk/
1099S: Supported
1100
1101FRAMEBUFFER LAYER
1102P: Antonino Daplas
1103M: adaplas@pol.net
1104L: linux-fbdev-devel@lists.sourceforge.net
1105W: http://linux-fbdev.sourceforge.net/
1106S: Maintained
1107
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001108FREESCALE SOC FS_ENET DRIVER
1109P: Pantelis Antoniou
1110M: pantelis.antoniou@gmail.com
1111P: Vitaly Bordug
1112M: vbordug@ru.mvista.com
1113L: linuxppc-embedded@ozlabs.org
1114L: netdev@vger.kernel.org
1115S: Maintained
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117FILE LOCKING (flock() and fcntl()/lockf())
1118P: Matthew Wilcox
1119M: matthew@wil.cx
1120L: linux-fsdevel@vger.kernel.org
1121S: Maintained
1122
1123FILESYSTEMS (VFS and infrastructure)
1124P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001125M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126S: Maintained
1127
1128FIRMWARE LOADER (request_firmware)
1129L: linux-kernel@vger.kernel.org
1130S: Orphan
1131
1132FPU EMULATOR
1133P: Bill Metzenthen
1134M: billm@suburbia.net
1135W: http://suburbia.net/~billm/floating-point/emulator/
1136S: Maintained
1137
1138FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1139P: Mike McLagan
1140M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001141L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142S: Maintained
1143
1144FREEVXFS FILESYSTEM
1145P: Christoph Hellwig
1146M: hch@infradead.org
1147W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1148S: Maintained
1149
1150FUJITSU FR-V PORT
1151P: David Howells
1152M: dhowells@redhat.com
1153S: Maintained
1154
1155FTAPE/QIC-117
1156L: linux-tape@vger.kernel.org
1157W: http://sourceforge.net/projects/ftape
1158S: Orphan
1159
Miklos Szeredi04578f12005-09-09 13:10:22 -07001160FUSE: FILESYSTEM IN USERSPACE
1161P: Miklos Szeredi
1162M: miklos@szeredi.hu
1163L: fuse-devel@lists.sourceforge.net
1164W: http://fuse.sourceforge.net/
1165S: Maintained
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1168P: Rik Faith
1169M: faith@cs.unc.edu
1170L: linux-scsi@vger.kernel.org
1171S: Odd fixes (e.g., new signatures)
1172
1173GDT SCSI DISK ARRAY CONTROLLER DRIVER
1174P: Achim Leubner
1175M: achim_leubner@adaptec.com
1176L: linux-scsi@vger.kernel.org
1177W: http://www.icp-vortex.com/
1178S: Supported
1179
1180GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1181P: Krzysztof Halasa
1182M: khc@pm.waw.pl
1183W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1184S: Maintained
1185
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001186GFS2 FILE SYSTEM
1187P: Steven Whitehouse
1188M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001189L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001190W: http://sources.redhat.com/cluster/
1191T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs-2.6.git
1192S: Supported
1193
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001194GIGASET ISDN DRIVERS
1195P: Hansjoerg Lipp
1196M: hjlipp@web.de
1197P: Tilman Schmidt
1198M: tilman@imap.cc
1199L: gigaset307x-common@lists.sourceforge.net
1200W: http://gigaset307x.sourceforge.net/
1201S: Maintained
1202
Jean Delvare5b543962005-08-15 19:51:02 +02001203HARDWARE MONITORING
1204P: Jean Delvare
1205M: khali@linux-fr.org
1206L: lm-sensors@lm-sensors.org
1207W: http://www.lm-sensors.nu/
1208S: Maintained
1209
Michael Buesch844dd052006-06-26 00:24:59 -07001210HARDWARE RANDOM NUMBER GENERATOR CORE
1211P: Michael Buesch
1212M: mb@bu3sch.de
1213S: Maintained
1214
Robert Love860e1d62005-08-31 23:57:59 -04001215HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1216P: Robert Love
1217M: rlove@rlove.org
1218M: linux-kernel@vger.kernel.org
1219W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1220S: Maintained
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222HARMONY SOUND DRIVER
1223P: Kyle McMartin
1224M: kyle@parisc-linux.org
1225W: http://www.parisc-linux.org/~kyle/harmony/
1226L: parisc-linux@lists.parisc-linux.org
1227S: Maintained
1228
1229HAYES ESP SERIAL DRIVER
1230P: Andrew J. Robinson
1231M: arobinso@nyx.net
1232L: linux-kernel@vger.kernel.org
1233W: http://www.nyx.net/~arobinso
1234S: Maintained
1235
1236HFS FILESYSTEM
1237P: Roman Zippel
1238M: zippel@linux-m68k.org
1239L: linux-kernel@vger.kernel.org
1240S: Maintained
1241
1242HGA FRAMEBUFFER DRIVER
1243P: Ferenc Bakonyi
1244M: fero@drama.obuda.kando.hu
1245L: linux-nvidia@lists.surfsouth.com
1246W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1247S: Maintained
1248
1249HIGH-SPEED SCC DRIVER FOR AX.25
1250P: Klaus Kudielka
1251M: klaus.kudielka@ieee.org
1252L: linux-hams@vger.kernel.org
1253W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1254S: Maintained
1255
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001256HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1257P: HighPoint Linux Team
1258M: linux@highpoint-tech.com
1259W: http://www.highpoint-tech.com
1260S: Supported
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262HIPPI
1263P: Jes Sorensen
1264M: jes@trained-monkey.org
1265L: linux-hippi@sunsite.dk
1266S: Maintained
1267
1268HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1269P: Chirag Kantharia
1270M: chirag.kantharia@hp.com
1271L: iss_storagedev@hp.com
1272S: Maintained
1273
1274HEWLETT-PACKARD SMART2 RAID DRIVER
1275P: Chirag Kantharia
1276M: chirag.kantharia@hp.com
1277L: iss_storagedev@hp.com
1278S: Maintained
1279
1280HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1281P: Mike Miller
1282M: mike.miller@hp.com
1283L: iss_storagedev@hp.com
1284S: Supported
1285
Jouni Malinenff1d2762005-05-12 22:54:16 -04001286HOST AP DRIVER
1287P: Jouni Malinen
1288M: jkmaline@cc.hut.fi
1289L: hostap@shmoo.com
1290W: http://hostap.epitest.fi/
1291S: Maintained
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1294P: Jaroslav Kysela
1295M: perex@suse.cz
1296S: Maintained
1297
Bob Piccob9b03322005-11-07 00:59:19 -08001298HPET: High Precision Event Timers driver (hpet.c)
1299P: Clemens Ladisch
1300M: clemens@ladisch.de
1301S: Maintained
1302
1303HPET: i386
1304P: Venkatesh Pallipadi (Venki)
1305M: venkatesh.pallipadi@intel.com
1306S: Maintained
1307
1308HPET: x86_64
1309P: Andi Kleen and Vojtech Pavlik
1310M: ak@muc.de and vojtech@suse.cz
1311S: Maintained
1312
1313HPET: ACPI hpet.c
1314P: Bob Picco
1315M: bob.picco@hp.com
1316S: Maintained
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318HPFS FILESYSTEM
1319P: Mikulas Patocka
1320M: mikulas@artax.karlin.mff.cuni.cz
1321W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1322S: Maintained
1323
1324HUGETLB FILESYSTEM
1325P: William Irwin
1326M: wli@holomorphy.com
1327S: Maintained
1328
Jean Delvare5b543962005-08-15 19:51:02 +02001329I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330P: Jean Delvare
1331M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001332L: i2c@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333W: http://www.lm-sensors.nu/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001334T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335S: Maintained
1336
1337I2O
1338P: Markus Lidel
1339M: markus.lidel@shadowconnect.com
1340W: http://i2o.shadowconnect.com/
1341S: Maintained
1342
1343i386 BOOT CODE
1344P: Riley H. Williams
1345M: Riley@Williams.Name
1346L: Linux-Kernel@vger.kernel.org
1347S: Maintained
1348
1349i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1350P: Dave Jones
1351M: davej@codemonkey.org.uk
1352P: H. Peter Anvin
1353M: hpa@zytor.com
1354S: Maintained
1355
1356i810 TCO TIMER WATCHDOG
1357P: Nils Faerber
1358M: nils@kernelconcepts.de
1359W: http://www.kernelconcepts.de/
1360S: Maintained
1361
1362IA64 (Itanium) PLATFORM
1363P: Tony Luck
1364M: tony.luck@intel.com
1365L: linux-ia64@vger.kernel.org
1366W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001367T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368S: Maintained
1369
1370SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001371P: Jes Sorensen
1372M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373L: linux-altix@sgi.com
1374L: linux-ia64@vger.kernel.org
1375W: http://www.sgi.com/altix
1376S: Maintained
1377
1378IBM MCA SCSI SUBSYSTEM DRIVER
1379P: Michael Lang
1380M: langa2@kph.uni-mainz.de
1381W: http://www.uni-mainz.de/~langm000/linux.html
1382S: Maintained
1383
1384IBM Power Linux RAID adapter
1385P: Brian King
1386M: brking@us.ibm.com
1387S: Supported
1388
1389IBM ServeRAID RAID DRIVER
1390P: Jack Hammer
1391P: Dave Jeffery
1392M: ipslinux@adaptec.com
1393W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1394S: Supported
1395
1396IDE DRIVER [GENERAL]
1397P: Bartlomiej Zolnierkiewicz
1398M: B.Zolnierkiewicz@elka.pw.edu.pl
1399L: linux-kernel@vger.kernel.org
1400L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001401T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402S: Maintained
1403
1404IDE/ATAPI CDROM DRIVER
1405P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001406M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407L: linux-kernel@vger.kernel.org
1408W: http://www.kernel.dk
1409S: Maintained
1410
1411IDE/ATAPI FLOPPY DRIVERS
1412P: Paul Bristow
1413M: Paul Bristow <paul@paulbristow.net>
1414W: http://paulbristow.net/linux/idefloppy.html
1415L: linux-kernel@vger.kernel.org
1416S: Maintained
1417
1418IDE/ATAPI TAPE DRIVERS
1419P: Gadi Oxman
1420M: Gadi Oxman <gadio@netvision.net.il>
1421L: linux-kernel@vger.kernel.org
1422S: Maintained
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424IEEE 1394 SUBSYSTEM
1425P: Ben Collins
1426M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001427P: Stefan Richter
1428M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429L: linux1394-devel@lists.sourceforge.net
1430W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001431T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432S: Maintained
1433
Stefan Richter87730d02006-09-16 12:24:00 +02001434IEEE 1394 IPV4 DRIVER (eth1394)
1435P: Stefan Richter
1436M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001438S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440IEEE 1394 PCILYNX DRIVER
1441P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001442M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001443P: Stefan Richter
1444M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001446S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448IEEE 1394 RAW I/O DRIVER
1449P: Ben Collins
1450M: bcollins@debian.org
1451P: Dan Dennedy
1452M: dan@dennedy.org
1453L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001454S: Maintained
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456IMS TWINTURBO FRAMEBUFFER DRIVER
1457P: Paul Mundt
1458M: lethal@chaoticdreams.org
1459L: linux-fbdev-devel@lists.sourceforge.net
1460S: Maintained
1461
1462INFINIBAND SUBSYSTEM
1463P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001464M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465P: Sean Hefty
1466M: mshefty@ichips.intel.com
1467P: Hal Rosenstock
1468M: halr@voltaire.com
1469L: openib-general@openib.org
1470W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001471T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472S: Supported
1473
1474INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001475P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001476M: dmitry.torokhov@gmail.com
1477M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478L: linux-input@atrey.karlin.mff.cuni.cz
1479L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001480T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481S: Maintained
1482
Robert Lovec9f04f52005-07-15 12:21:07 -04001483INOTIFY
1484P: John McCutchan and Robert Love
1485M: ttb@tentacle.dhs.org and rml@novell.com
1486L: linux-kernel@vger.kernel.org
1487S: Maintained
1488
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001489INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
1490P: Sylvain Meyer
1491M: sylvain.meyer@worldonline.fr
1492L: linux-fbdev-devel@lists.sourceforge.net
1493S: Maintained
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495INTEL 810/815 FRAMEBUFFER DRIVER
1496P: Antonino Daplas
1497M: adaplas@pol.net
1498L: linux-fbdev-devel@lists.sourceforge.net
1499S: Maintained
1500
1501INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1502P: Ingo Molnar
1503M: mingo@redhat.com
1504S: Maintained
1505
1506INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1507P: Jeff Garzik
1508M: jgarzik@pobox.com
1509W: http://sourceforge.net/projects/gkernel/
1510S: Maintained
1511
1512INTEL IA32 MICROCODE UPDATE SUPPORT
1513P: Tigran Aivazian
1514M: tigran@veritas.com
1515S: Maintained
1516
Michael Buesch844dd052006-06-26 00:24:59 -07001517INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1518P: Deepak Saxena
1519M: dsaxena@plexity.net
1520S: Maintained
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522INTEL PRO/100 ETHERNET SUPPORT
1523P: John Ronciak
1524M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525P: Jesse Brandeburg
1526M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001527P: Jeff Kirsher
1528M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001529P: Auke Kok
1530M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531W: http://sourceforge.net/projects/e1000/
1532S: Supported
1533
1534INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1535P: Jeb Cramer
1536M: cramerj@intel.com
1537P: John Ronciak
1538M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001539P: Jesse Brandeburg
1540M: jesse.brandeburg@intel.com
1541P: Jeff Kirsher
1542M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001543P: Auke Kok
1544M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545W: http://sourceforge.net/projects/e1000/
1546S: Supported
1547
1548INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001549P: Jeff Kirsher
1550M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551P: Ayyappan Veeraiyan
1552M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553P: John Ronciak
1554M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001555P: Jesse Brandeburg
1556M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001557P: Auke Kok
1558M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559W: http://sourceforge.net/projects/e1000/
1560S: Supported
1561
James Ketrenos826d2ab2005-11-07 18:56:59 -06001562INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1563P: Yi Zhu
1564M: yi.zhu@intel.com
1565P: James Ketrenos
1566M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001567L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001568L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1569W: http://ipw2100.sourceforge.net
1570S: Supported
1571
1572INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1573P: Yi Zhu
1574M: yi.zhu@intel.com
1575P: James Ketrenos
1576M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001577L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001578L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1579W: http://ipw2200.sourceforge.net
1580S: Supported
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582IOC3 DRIVER
1583P: Ralf Baechle
1584M: ralf@linux-mips.org
1585L: linux-mips@linux-mips.org
1586S: Maintained
1587
1588IP MASQUERADING:
1589P: Juanjo Ciarlante
1590M: jjciarla@raiz.uncu.edu.ar
1591S: Maintained
1592
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001593IPATH DRIVER:
1594P: Bryan O'Sullivan
1595M: support@pathscale.com
1596L: openib-general@openib.org
1597S: Supported
1598
Corey Minyard4409ebe2006-04-20 02:43:12 -07001599IPMI SUBSYSTEM
1600P: Corey Minyard
1601M: minyard@acm.org
1602L: openipmi-developer@lists.sourceforge.net
1603W: http://openipmi.sourceforge.net/
1604S: Supported
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606IPX NETWORK LAYER
1607P: Arnaldo Carvalho de Melo
1608M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001609L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610S: Maintained
1611
1612IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001613P: Samuel Ortiz
1614M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001615L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001617S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619ISAPNP
1620P: Jaroslav Kysela
1621M: perex@suse.cz
1622S: Maintained
1623
1624ISDN SUBSYSTEM
1625P: Karsten Keil
1626M: kkeil@suse.de
1627P: Kai Germaschewski
1628M: kai.germaschewski@gmx.de
1629L: isdn4linux@listserv.isdn4linux.de
1630W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001631T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632S: Maintained
1633
1634ISDN SUBSYSTEM (Eicon active card driver)
1635P: Armin Schindler
1636M: mac@melware.de
1637L: isdn4linux@listserv.isdn4linux.de
1638W: http://www.melware.de
1639S: Maintained
1640
1641JOURNALLING FLASH FILE SYSTEM (JFFS)
1642P: Axis Communications AB
1643M: jffs-dev@axis.com
1644L: jffs-dev@axis.com
1645W: http://www.developer.axis.com/software/jffs/
1646S: Maintained
1647
1648JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1649P: David Woodhouse
1650M: dwmw2@infradead.org
1651L: jffs-dev@axis.com
1652W: http://sources.redhat.com/jffs2/
1653S: Maintained
1654
1655JFS FILESYSTEM
1656P: Dave Kleikamp
1657M: shaggy@austin.ibm.com
1658L: jfs-discussion@lists.sourceforge.net
1659W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001660T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661S: Supported
1662
Josh Triplettde456d32006-07-30 03:04:00 -07001663JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001664P: Stephen Tweedie, Andrew Morton
1665M: sct@redhat.com, akpm@osdl.org
1666L: ext2-devel@lists.sourceforge.net
1667S: Maintained
1668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669KCONFIG
1670P: Roman Zippel
1671M: zippel@linux-m68k.org
1672L: kbuild-devel@lists.sourceforge.net
1673S: Maintained
1674
Vivek Goyalea6c2082006-05-20 14:59:55 -07001675KDUMP
1676P: Vivek Goyal
1677M: vgoyal@in.ibm.com
1678P: Haren Myneni
1679M: hbabu@us.ibm.com
1680L: fastboot@lists.osdl.org
1681L: linux-kernel@vger.kernel.org
1682W: http://lse.sourceforge.net/kdump/
1683S: Maintained
1684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685KERNEL AUTOMOUNTER (AUTOFS)
1686P: H. Peter Anvin
1687M: hpa@zytor.com
1688L: autofs@linux.kernel.org
1689S: Odd Fixes
1690
1691KERNEL AUTOMOUNTER v4 (AUTOFS4)
1692P: Ian Kent
1693M: raven@themaw.net
1694L: autofs@linux.kernel.org
1695S: Maintained
1696
1697KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1698P: Kai Germaschewski
1699M: kai@germaschewski.name
1700P: Sam Ravnborg
1701M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001702T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703S: Maintained
1704
1705KERNEL JANITORS
1706P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001707L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709S: Maintained
1710
1711KERNEL NFSD
1712P: Neil Brown
1713M: neilb@cse.unsw.edu.au
1714L: nfs@lists.sourceforge.net
1715W: http://nfs.sourceforge.net/
1716W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1717S: Maintained
1718
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001719KEXEC
1720P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001721M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001722W: http://www.xmission.com/~ebiederm/files/kexec/
1723L: linux-kernel@vger.kernel.org
1724L: fastboot@osdl.org
1725S: Maintained
1726
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001727KPROBES
1728P: Prasanna S Panchamukhi
1729M: prasanna@in.ibm.com
1730P: Ananth N Mavinakayanahalli
1731M: ananth@in.ibm.com
1732P: Anil S Keshavamurthy
1733M: anil.s.keshavamurthy@intel.com
1734P: David S. Miller
1735M: davem@davemloft.net
1736L: linux-kernel@vger.kernel.org
1737S: Maintained
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001741S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743LASI 53c700 driver for PARISC
1744P: James E.J. Bottomley
1745M: James.Bottomley@HansenPartnership.com
1746L: linux-scsi@vger.kernel.org
1747S: Maintained
1748
Richard Purdie263de9b2006-05-15 09:44:16 -07001749LED SUBSYSTEM
1750P: Richard Purdie
1751M: rpurdie@rpsys.net
1752S: Maintained
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754LEGO USB Tower driver
1755P: Juergen Stuber
1756M: starblue@users.sourceforge.net
1757L: legousb-devel@lists.sourceforge.net
1758W: http://legousb.sourceforge.net/
1759S: Maintained
1760
1761LINUX FOR IBM pSERIES (RS/6000)
1762P: Paul Mackerras
1763M: paulus@au.ibm.com
1764W: http://www.ibm.com/linux/ltc/projects/ppc
1765S: Supported
1766
1767LINUX FOR NCR VOYAGER
1768P: James Bottomley
1769M: James.Bottomley@HansenPartnership.com
1770W: http://www.hansenpartnership.com/voyager
1771S: Maintained
1772
1773LINUX FOR POWERPC
1774P: Paul Mackerras
1775M: paulus@samba.org
1776W: http://www.penguinppc.org/
1777L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001778T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779S: Supported
1780
1781LINUX FOR POWER MACINTOSH
1782P: Benjamin Herrenschmidt
1783M: benh@kernel.crashing.org
1784W: http://www.penguinppc.org/
1785L: linuxppc-dev@ozlabs.org
1786S: Maintained
1787
1788LINUX FOR POWERPC EMBEDDED MPC52XX
1789P: Sylvain Munaut
1790M: tnt@246tNt.com
1791W: http://www.246tNt.com/mpc52xx/
1792W: http://www.penguinppc.org/
1793L: linuxppc-dev@ozlabs.org
1794L: linuxppc-embedded@ozlabs.org
1795S: Maintained
1796
1797LINUX FOR POWERPC EMBEDDED PPC4XX
1798P: Matt Porter
1799M: mporter@kernel.crashing.org
1800W: http://www.penguinppc.org/
1801L: linuxppc-embedded@ozlabs.org
1802S: Maintained
1803
Tom Rinie93adf12005-07-26 12:49:53 -07001804LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805P: Tom Rini
1806M: trini@kernel.crashing.org
1807W: http://www.penguinppc.org/
1808L: linuxppc-embedded@ozlabs.org
1809S: Maintained
1810
Tom Rinie93adf12005-07-26 12:49:53 -07001811LINUX FOR POWERPC EMBEDDED PPC8XX
1812P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001813M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001814W: http://www.penguinppc.org/
1815L: linuxppc-embedded@ozlabs.org
1816S: Maintained
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
1819P: Kumar Gala
Kumar Gala4c8d3d92005-11-13 16:06:30 -08001820M: galak@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821W: http://www.penguinppc.org/
1822L: linuxppc-embedded@ozlabs.org
1823S: Maintained
1824
Olof Johanssonab06ff32006-09-06 14:44:54 -05001825LINUX FOR POWERPC PA SEMI PWRFICIENT
1826P: Olof Johansson
1827M: olof@lixom.net
1828W: http://www.pasemi.com/
1829L: linuxppc-dev@ozlabs.org
1830S: Supported
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832LLC (802.2)
1833P: Arnaldo Carvalho de Melo
1834M: acme@conectiva.com.br
1835S: Maintained
1836
1837LINUX FOR 64BIT POWERPC
1838P: Paul Mackerras
1839M: paulus@samba.org
1840M: paulus@au.ibm.com
1841P: Anton Blanchard
1842M: anton@samba.org
1843M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001844W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001845L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846S: Supported
1847
1848LINUX SECURITY MODULE (LSM) FRAMEWORK
1849P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001850M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001851L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001853T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854S: Supported
1855
1856LM83 HARDWARE MONITOR DRIVER
1857P: Jean Delvare
1858M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001859L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860S: Maintained
1861
1862LM90 HARDWARE MONITOR DRIVER
1863P: Jean Delvare
1864M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001865L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866S: Maintained
1867
1868LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1869P: Richard Russon (FlatCap)
1870M: ldm@flatcap.org
1871L: ldm-devel@lists.sourceforge.net
1872W: http://ldm.sourceforge.net
1873S: Maintained
1874
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001875LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1876P: Eric Moore
1877M: Eric.Moore@lsil.com
1878M: support@lsil.com
1879L: mpt_linux_developer@lsil.com
1880L: linux-scsi@vger.kernel.org
1881W: http://www.lsilogic.com/support
1882S: Supported
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1885P: Matthew Wilcox
1886M: matthew@wil.cx
1887L: linux-scsi@vger.kernel.org
1888S: Maintained
1889
1890M68K ARCHITECTURE
1891P: Geert Uytterhoeven
1892M: geert@linux-m68k.org
1893P: Roman Zippel
1894M: zippel@linux-m68k.org
1895L: linux-m68k@lists.linux-m68k.org
1896W: http://www.linux-m68k.org/
1897W: http://linux-m68k-cvs.ubb.ca/
1898S: Maintained
1899
1900M68K ON APPLE MACINTOSH
1901P: Joshua Thompson
1902M: funaho@jurai.org
1903W: http://www.mac.linux-m68k.org/
1904L: linux-mac68k@mac.linux-m68k.org
1905S: Maintained
1906
1907M68K ON HP9000/300
1908P: Philip Blundell
1909M: philb@gnu.org
1910W: http://www.tazenda.demon.co.uk/phil/linux-hp
1911S: Maintained
1912
1913MARVELL YUKON / SYSKONNECT DRIVER
1914P: Mirko Lindner
1915M: mlindner@syskonnect.de
1916P: Ralph Roesler
1917M: rroesler@syskonnect.de
1918W: http://www.syskonnect.com
1919S: Supported
1920
Michael Kerriskfaf16682005-07-31 22:34:47 -07001921MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
1922P: Michael Kerrisk
1923M: mtk-manpages@gmx.net
1924W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1925S: Maintained
1926
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001927MARVELL MV643XX ETHERNET DRIVER
1928P: Dale Farnsworth
1929M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001931M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001932L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001933S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935MATROX FRAMEBUFFER DRIVER
1936P: Petr Vandrovec
1937M: vandrove@vc.cvut.cz
1938L: linux-fbdev-devel@lists.sourceforge.net
1939S: Maintained
1940
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001941MEGARAID SCSI DRIVERS
1942P: Neela Syam Kolli
1943M: Neela.Kolli@engenio.com
1944S: linux-scsi@vger.kernel.org
1945W: http://megaraid.lsilogic.com
1946S: Maintained
1947
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001948MEMORY MANAGEMENT
1949L: linux-mm@kvack.org
1950L: linux-kernel@vger.kernel.org
1951W: http://www.linux-mm.org
1952S: Maintained
1953
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001954MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955P: David Woodhouse
1956M: dwmw2@infradead.org
1957W: http://www.linux-mtd.infradead.org/
1958L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001959T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960S: Maintained
1961
1962MICROTEK X6 SCANNER
1963P: Oliver Neukum
1964M: oliver@neukum.name
1965S: Maintained
1966
1967MIPS
1968P: Ralf Baechle
1969M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01001970W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00001972T: git www.linux-mips.org:/pub/scm/linux.git
1973S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975MISCELLANEOUS MCA-SUPPORT
1976P: James Bottomley
1977M: jejb@steeleye.com
1978L: linux-kernel@vger.kernel.org
1979S: Maintained
1980
1981MODULE SUPPORT
1982P: Rusty Russell
1983M: rusty@rustcorp.com.au
1984L: linux-kernel@vger.kernel.org
1985S: Maintained
1986
1987MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
1988P: Stelian Pop
1989M: stelian@popies.net
1990W: http://popies.net/meye/
1991S: Maintained
1992
1993MOUSE AND MISC DEVICES [GENERAL]
1994P: Alessandro Rubini
1995M: rubini@ipvvis.unipv.it
1996L: linux-kernel@vger.kernel.org
1997S: Maintained
1998
1999MTRR AND SIMILAR SUPPORT [i386]
2000P: Richard Gooch
2001M: rgooch@atnf.csiro.au
2002L: linux-kernel@vger.kernel.org
2003W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2004S: Maintained
2005
Russell King12223da2006-06-15 13:28:52 +01002006MULTIMEDIA CARD (MMC) SUBSYSTEM
Russell King353cefd2006-10-03 17:36:11 +01002007S: Orphan
Russell Kingbaca2da2006-06-04 17:36:31 +01002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009MULTISOUND SOUND DRIVER
2010P: Andrew Veliath
2011M: andrewtv@usa.net
2012S: Maintained
2013
2014NATSEMI ETHERNET DRIVER (DP8381x)
2015P: Tim Hockin
2016M: thockin@hockin.org
2017S: Maintained
2018
2019NCP FILESYSTEM
2020P: Petr Vandrovec
2021M: vandrove@vc.cvut.cz
2022L: linware@sh.cvut.cz
2023S: Maintained
2024
2025NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2026P: James E.J. Bottomley
2027M: James.Bottomley@HansenPartnership.com
2028L: linux-scsi@vger.kernel.org
2029S: Maintained
2030
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002031NETEM NETWORK EMULATOR
2032P: Stephen Hemminger
2033M: shemminger@osdl.org
2034L: netem@osdl.org
2035S: Maintained
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037NETFILTER/IPTABLES/IPCHAINS
2038P: Rusty Russell
2039P: Marc Boucher
2040P: James Morris
2041P: Harald Welte
2042P: Jozsef Kadlecsik
2043M: coreteam@netfilter.org
2044W: http://www.netfilter.org/
2045W: http://www.iptables.org/
2046L: netfilter@lists.netfilter.org
2047L: netfilter-devel@lists.netfilter.org
2048S: Supported
2049
Paul Moore4cc67732006-09-25 15:57:13 -07002050NETLABEL
2051P: Paul Moore
2052M: paul.moore@hp.com
2053W: http://netlabel.sf.net
2054L: netdev@vger.kernel.org
2055S: Supported
2056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057NETROM NETWORK LAYER
2058P: Ralf Baechle
2059M: ralf@linux-mips.org
2060L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002061W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062S: Maintained
2063
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002064NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065P: Paul Clements
2066M: Paul.Clements@steeleye.com
2067S: Maintained
2068
2069NETWORK DEVICE DRIVERS
2070P: Andrew Morton
2071M: akpm@osdl.org
2072P: Jeff Garzik
2073M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002074L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002075T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076S: Maintained
2077
2078NETWORKING [GENERAL]
2079P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002080M: netdev@vger.kernel.org
2081L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002082W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083S: Maintained
2084
2085NETWORKING [IPv4/IPv6]
2086P: David S. Miller
2087M: davem@davemloft.net
2088P: Alexey Kuznetsov
2089M: kuznet@ms2.inr.ac.ru
2090P: Pekka Savola (ipv6)
2091M: pekkas@netcore.fi
2092P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002093M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094P: Hideaki YOSHIFUJI
2095M: yoshfuji@linux-ipv6.org
2096P: Patrick McHardy
2097M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002098L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002099T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100S: Maintained
2101
John W. Linville29f8f632006-01-18 14:52:48 -08002102NETWORKING [WIRELESS]
2103P: John W. Linville
2104M: linville@tuxdriver.com
2105L: netdev@vger.kernel.org
2106T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2107S: Maintained
2108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109IPVS
2110P: Wensong Zhang
2111M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002112P: Simon Horman
2113M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114P: Julian Anastasov
2115M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002116L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117S: Maintained
2118
2119NFS CLIENT
2120P: Trond Myklebust
2121M: trond.myklebust@fys.uio.no
2122L: linux-kernel@vger.kernel.org
2123S: Maintained
2124
2125NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002126P: Jan-Pascal van Best
2127M: janpascal@vanbest.org
2128P: Andreas Mohr
2129M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002130L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131S: Maintained
2132
2133NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2134P: YOKOTA Hiroshi
2135M: yokota@netlab.is.tsukuba.ac.jp
2136W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2137S: Maintained
2138
2139NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2140P: GOTO Masanori
2141M: gotom@debian.or.jp
2142P: YOKOTA Hiroshi
2143M: yokota@netlab.is.tsukuba.ac.jp
2144W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2145S: Maintained
2146
2147NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2148P: Eberhard Moenkeberg
2149M: emoenke@gwdg.de
2150L: linux-kernel@vger.kernel.org
2151S: Maintained
2152
2153NTFS FILESYSTEM
2154P: Anton Altaparmakov
2155M: aia21@cantab.net
2156L: linux-ntfs-dev@lists.sourceforge.net
2157L: linux-kernel@vger.kernel.org
2158W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002159T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160S: Maintained
2161
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002162NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
2163P: Antonino Daplas
2164M: adaplas@pol.net
2165L: linux-fbdev-devel@lists.sourceforge.net
2166S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002168OPENCORES I2C BUS DRIVER
2169P: Peter Korsgaard
2170M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002171L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002172S: Maintained
2173
Mark Fashehccd979b2005-12-15 14:31:24 -08002174ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2175P: Mark Fasheh
2176M: mark.fasheh@oracle.com
2177P: Kurt Hackel
2178M: kurt.hackel@oracle.com
2179L: ocfs2-devel@oss.oracle.com
2180W: http://oss.oracle.com/projects/ocfs2/
2181S: Supported
2182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183OLYMPIC NETWORK DRIVER
2184P: Peter De Shrijver
2185M: p2@ace.ulyssis.student.kuleuven.ac.be
2186P: Mike Phillips
2187M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002188L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189L: linux-tr@linuxtr.net
2190W: http://www.linuxtr.net
2191S: Maintained
2192
Harald Weltec1986ee2005-11-13 16:06:29 -08002193OMNIKEY CARDMAN 4000 DRIVER
2194P: Harald Welte
2195M: laforge@gnumonks.org
2196S: Maintained
2197
Harald Welte77c44ab2005-11-13 16:06:26 -08002198OMNIKEY CARDMAN 4040 DRIVER
2199P: Harald Welte
2200M: laforge@gnumonks.org
2201S: Maintained
2202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203ONSTREAM SCSI TAPE DRIVER
2204P: Willem Riede
2205M: osst@riede.org
2206L: osst-users@lists.sourceforge.net
2207L: linux-scsi@vger.kernel.org
2208S: Maintained
2209
2210OPL3-SA2, SA3, and SAx DRIVER
2211P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002212M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213L: linux-sound@vger.kernel.org
2214S: Maintained
2215
2216OPROFILE
2217P: Philippe Elie
2218M: phil.el@wanadoo.fr
2219L: oprofile-list@lists.sf.net
2220S: Maintained
2221
2222ORINOCO DRIVER
2223P: Pavel Roskin
2224M: proski@gnu.org
2225P: David Gibson
2226M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002227L: orinoco-users@lists.sourceforge.net
2228L: orinoco-devel@lists.sourceforge.net
2229W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230S: Maintained
2231
2232PARALLEL PORT SUPPORT
2233P: Phil Blundell
2234M: philb@gnu.org
2235P: Tim Waugh
2236M: tim@cyberelk.net
2237P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238P: Andrea Arcangeli
2239M: andrea@suse.de
2240L: linux-parport@lists.infradead.org
2241W: http://people.redhat.com/twaugh/parport/
2242S: Maintained
2243
2244PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2245P: Tim Waugh
2246M: tim@cyberelk.net
2247L: linux-parport@lists.infradead.org
2248W: http://www.torque.net/linux-pp.html
2249S: Maintained
2250
2251PARISC ARCHITECTURE
2252P: Matthew Wilcox
2253M: matthew@wil.cx
2254P: Grant Grundler
2255M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002256P: Kyle McMartin
2257M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258L: parisc-linux@parisc-linux.org
2259W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002260T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2261T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262S: Maintained
2263
Jim Cromie1662d322006-10-06 00:43:59 -07002264PC87360 HARDWARE MONITORING DRIVER
2265P: Jim Cromie
2266M: jim.cromie@gmail.com
2267L: lm-sensors@lm-sensors.org
2268S: Maintained
2269
2270PC8736x GPIO DRIVER
2271P: Jim Cromie
2272M: jim.cromie@gmail.com
2273S: Maintained
2274
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002275PCI ERROR RECOVERY
2276P: Linas Vepstas
2277M: linas@austin.ibm.com
2278L: linux-kernel@vger.kernel.org
2279L: linux-pci@atrey.karlin.mff.cuni.cz
2280S: Supported
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2283P: Thomas Sailer
2284M: sailer@ife.ee.ethz.ch
2285L: linux-sound@vger.kernel.org
2286W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2287S: Maintained
2288
2289PCI SUBSYSTEM
2290P: Greg Kroah-Hartman
2291M: gregkh@suse.de
2292L: linux-kernel@vger.kernel.org
2293L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002294T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295S: Supported
2296
2297PCI HOTPLUG CORE
2298P: Greg Kroah-Hartman
2299M: gregkh@suse.de
2300S: Supported
2301
2302PCI HOTPLUG COMPAQ DRIVER
2303P: Greg Kroah-Hartman
2304M: greg@kroah.com
2305S: Maintained
2306
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002307PCIE HOTPLUG DRIVER
2308P: Kristen Carlson Accardi
2309M: kristen.c.accardi@intel.com
2310L: pcihpd-discuss@lists.sourceforge.net
2311S: Maintained
2312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002314P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002315L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002317T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002318S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
2320PCNET32 NETWORK DRIVER
2321P: Thomas Bogendörfer
2322M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002323L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324S: Maintained
2325
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002326PER-TASK DELAY ACCOUNTING
2327P: Shailabh Nagar
2328M: nagar@watson.ibm.com
2329L: linux-kernel@vger.kernel.org
2330S: Maintained
2331
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002332PERSONALITY HANDLING
2333P: Christoph Hellwig
2334M: hch@infradead.org
2335L: linux-abi-devel@lists.sourceforge.net
2336S: Maintained
2337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338PHRAM MTD DRIVER
2339P: Jörn Engel
2340M: joern@wh.fh-wedel.de
2341L: linux-mtd@lists.infradead.org
2342S: Maintained
2343
Peter Osterlund249a6772005-09-27 21:45:30 -07002344PKTCDVD DRIVER
2345P: Peter Osterlund
2346M: petero2@telia.com
2347L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002348S: Maintained
2349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350POSIX CLOCKS and TIMERS
2351P: George Anzinger
2352M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002353L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354S: Supported
2355
Eugene Surovegin24682972005-10-14 03:00:53 -07002356POWERPC 4xx EMAC DRIVER
2357P: Eugene Surovegin
2358M: ebs@ebshome.net
2359W: http://kernel.ebshome.net/emac/
2360L: linuxppc-embedded@ozlabs.org
2361L: netdev@vger.kernel.org
2362S: Maintained
2363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364PNP SUPPORT
2365P: Adam Belay
2366M: ambx1@neo.rr.com
2367S: Maintained
2368
2369PPP PROTOCOL DRIVERS AND COMPRESSORS
2370P: Paul Mackerras
2371M: paulus@samba.org
2372L: linux-ppp@vger.kernel.org
2373S: Maintained
2374
2375PPP OVER ATM (RFC 2364)
2376P: Mitchell Blank Jr
2377M: mitch@sfgoth.com
2378S: Maintained
2379
2380PPP OVER ETHERNET
2381P: Michal Ostrowski
2382M: mostrows@speakeasy.net
2383S: Maintained
2384
2385PREEMPTIBLE KERNEL
2386P: Robert Love
2387M: rml@tech9.net
2388L: linux-kernel@vger.kernel.org
2389L: kpreempt-tech@lists.sourceforge.net
2390W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2391S: Supported
2392
2393PRISM54 WIRELESS DRIVER
2394P: Prism54 Development Team
2395M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002396L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397W: http://prism54.org
2398S: Maintained
2399
2400PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2401P: Peter Denison
2402M: promise@pnd-pc.demon.co.uk
2403W: http://www.pnd-pc.demon.co.uk/promise/
2404S: Maintained
2405
Michael Krufky83202042006-07-03 00:24:18 -07002406PVRUSB2 VIDEO4LINUX DRIVER
2407P: Mike Isely
2408M: isely@pobox.com
2409L: pvrusb2@isely.net
2410L: video4linux-list@redhat.com
2411W: http://www.isely.net/pvrusb2/
2412S: Maintained
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414PXA2xx SUPPORT
2415P: Nicolas Pitre
2416M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002417L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418S: Maintained
2419
2420QLOGIC QLA2XXX FC-SCSI DRIVER
2421P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002422M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423L: linux-scsi@vger.kernel.org
2424S: Supported
2425
Ron Mercer5a4faa872006-07-25 00:40:21 -07002426QLOGIC QLA3XXX NETWORK DRIVER
2427P: Ron Mercer
2428M: linux-driver@qlogic.com
2429L: netdev@vger.kernel.org
2430S: Supported
2431
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432QNX4 FILESYSTEM
2433P: Anders Larsen
2434M: al@alarsen.net
2435L: linux-kernel@vger.kernel.org
2436W: http://www.alarsen.net/linux/qnx4fs/
2437S: Maintained
2438
2439RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002440P: Benjamin Herrenschmidt
2441M: benh@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442L: linux-fbdev-devel@lists.sourceforge.net
2443S: Maintained
2444
2445RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002446P: Paul Mackerras
2447M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448L: linux-fbdev-devel@lists.sourceforge.net
2449S: Maintained
2450
2451RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2452P: Corey Thomas
2453M: corey@world.std.com
2454L: linux-kernel@vger.kernel.org
2455S: Maintained
2456
Matt Mackall9e95ce22005-04-16 15:25:56 -07002457RANDOM NUMBER DRIVER
2458P: Matt Mackall
2459M: mpm@selenic.com
2460S: Maintained
2461
Matt Porter394b7012005-11-07 01:00:15 -08002462RAPIDIO SUBSYSTEM
2463P: Matt Porter
2464M: mporter@kernel.crashing.org
2465L: linux-kernel@vger.kernel.org
2466S: Maintained
2467
Josh Triplett595182b2006-10-04 02:17:21 -07002468READ-COPY UPDATE (RCU)
2469P: Dipankar Sarma
2470M: dipankar@in.ibm.com
2471W: http://www.rdrop.com/users/paulmck/rclock/
2472L: linux-kernel@vger.kernel.org
2473S: Supported
2474
2475RCUTORTURE MODULE
2476P: Josh Triplett
2477M: josh@freedesktop.org
2478L: linux-kernel@vger.kernel.org
2479S: Maintained
2480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481REAL TIME CLOCK DRIVER
2482P: Paul Gortmaker
2483M: p_gortmaker@yahoo.com
2484L: linux-kernel@vger.kernel.org
2485S: Maintained
2486
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002487REAL TIME CLOCK (RTC) SUBSYSTEM
2488P: Alessandro Zummo
2489M: a.zummo@towertech.it
2490L: linux-kernel@vger.kernel.org
2491S: Maintained
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493REISERFS FILE SYSTEM
2494P: Hans Reiser
2495M: reiserfs-dev@namesys.com
2496L: reiserfs-list@namesys.com
2497W: http://www.namesys.com
2498S: Supported
2499
2500ROCKETPORT DRIVER
2501P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502W: http://www.comtrol.com
2503S: Maintained
2504
2505ROSE NETWORK LAYER
2506P: Ralf Baechle
2507M: ralf@linux-mips.org
2508L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002509W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510S: Maintained
2511
2512RISCOM8 DRIVER
2513S: Orphan
2514
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002515S3 SAVAGE FRAMEBUFFER DRIVER
2516P: Antonino Daplas
2517M: adaplas@pol.net
2518L: linux-fbdev-devel@lists.sourceforge.net
2519S: Maintained
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521S390
2522P: Martin Schwidefsky
2523M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002524P: Heiko Carstens
2525M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526M: linux390@de.ibm.com
2527L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002528W: http://www.ibm.com/developerworks/linux/linux390/
2529S: Supported
2530
2531S390 NETWORK DRIVERS
2532P: Frank Pavlic
2533M: fpavlic@de.ibm.com
2534M: linux390@de.ibm.com
2535L: linux-390@vm.marist.edu
2536W: http://www.ibm.com/developerworks/linux/linux390/
2537S: Supported
2538
2539S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002540P: Swen Schillig
2541M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002542M: linux390@de.ibm.com
2543L: linux-390@vm.marist.edu
2544W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545S: Supported
2546
2547SAA7146 VIDEO4LINUX-2 DRIVER
2548P: Michael Hunold
2549M: michael@mihu.de
2550W: http://www.mihu.de/linux/saa7146
2551S: Maintained
2552
2553SBPCD CDROM DRIVER
2554P: Eberhard Moenkeberg
2555M: emoenke@gwdg.de
2556L: linux-kernel@vger.kernel.org
2557S: Maintained
2558
2559SC1200 WDT DRIVER
2560P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002561M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562S: Maintained
2563
2564SCHEDULER
2565P: Ingo Molnar
2566M: mingo@elte.hu
2567P: Robert Love [the preemptible kernel bits]
2568M: rml@tech9.net
2569L: linux-kernel@vger.kernel.org
2570S: Maintained
2571
2572SCSI CDROM DRIVER
2573P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002574M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575L: linux-scsi@vger.kernel.org
2576W: http://www.kernel.dk
2577S: Maintained
2578
2579SCSI SG DRIVER
2580P: Doug Gilbert
2581M: dgilbert@interlog.com
2582L: linux-scsi@vger.kernel.org
2583W: http://www.torque.net/sg
2584S: Maintained
2585
2586SCSI SUBSYSTEM
2587P: James E.J. Bottomley
2588M: James.Bottomley@SteelEye.com
2589L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002590T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591S: Maintained
2592
2593SCSI TAPE DRIVER
2594P: Kai Mäkisara
2595M: Kai.Makisara@kolumbus.fi
2596L: linux-scsi@vger.kernel.org
2597S: Maintained
2598
2599SCTP PROTOCOL
2600P: Sridhar Samudrala
2601M: sri@us.ibm.com
2602L: lksctp-developers@lists.sourceforge.net
2603S: Supported
2604
2605SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002606P: Jim Cromie
2607M: jim.cromie@gmail.com
2608S: Odd Fixes
2609
2610SCx200 GPIO DRIVER
2611P: Jim Cromie
2612M: jim.cromie@gmail.com
2613S: Maintained
2614
2615SCx200 HRT CLOCKSOURCE DRIVER
2616P: Jim Cromie
2617M: jim.cromie@gmail.com
2618S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
2620SECURITY CONTACT
2621P: Security Officers
2622M: security@kernel.org
2623S: Supported
2624
2625SELINUX SECURITY MODULE
2626P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002627M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002629M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630L: linux-kernel@vger.kernel.org (kernel issues)
2631L: selinux@tycho.nsa.gov (general discussion)
2632W: http://www.nsa.gov/selinux
2633S: Supported
2634
2635SERIAL ATA (SATA) SUBSYSTEM:
2636P: Jeff Garzik
2637M: jgarzik@pobox.com
2638L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002639T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640S: Supported
2641
2642SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2643P: Pat Gefre
2644M: pfg@sgi.com
2645L: linux-ia64@vger.kernel.org
2646S: Supported
2647
2648SGI VISUAL WORKSTATION 320 AND 540
2649P: Andrey Panin
2650M: pazke@donpac.ru
2651L: linux-visws-devel@lists.sf.net
2652W: http://linux-visws.sf.net
2653S: Maintained for 2.6.
2654
2655SIMTEC EB110ATX (Chalice CATS)
2656P: Ben Dooks
2657P: Vincent Sanders
2658M: support@simtec.co.uk
2659W: http://www.simtec.co.uk/products/EB110ATX/
2660S: Supported
2661
2662SIMTEC EB2410ITX (BAST)
2663P: Ben Dooks
2664P: Vincent Sanders
2665M: support@simtec.co.uk
2666W: http://www.simtec.co.uk/products/EB2410ITX/
2667S: Supported
2668
Francois Romieu92aab3c2005-07-30 13:11:18 +02002669SIS 190 ETHERNET DRIVER
2670P: Francois Romieu
2671M: romieu@fr.zoreil.com
2672L: netdev@vger.kernel.org
2673S: Maintained
2674
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675SIS 5513 IDE CONTROLLER DRIVER
2676P: Lionel Bouton
2677M: Lionel.Bouton@inet6.fr
2678W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2679W: http://gyver.homeip.net/sis5513/index.html
2680S: Maintained
2681
2682SIS 900/7016 FAST ETHERNET DRIVER
2683P: Daniele Venzano
2684M: venza@brownhat.org
2685W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002686L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687S: Maintained
2688
2689SIS FRAMEBUFFER DRIVER
2690P: Thomas Winischhofer
2691M: thomas@winischhofer.net
2692W: http://www.winischhofer.net/linuxsisvga.shtml
2693S: Maintained
2694
2695SIS USB2VGA DRIVER
2696P: Thomas Winischhofer
2697M: thomas@winischhofer.net
2698W: http://www.winischhofer.at/linuxsisusbvga.shtml
2699S: Maintained
2700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701SMC91x ETHERNET DRIVER
2702P: Nicolas Pitre
2703M: nico@cam.org
2704S: Maintained
2705
Daniel Drake8f0f8502006-07-18 22:00:25 +01002706SOFTMAC LAYER (IEEE 802.11)
2707P: Johannes Berg
2708M: johannes@sipsolutions.net
2709P: Joe Jezak
2710M: josejx@gentoo.org
2711P: Daniel Drake
2712M: dsd@gentoo.org
2713W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002714L: netdev@vger.kernel.org
2715S: Maintained
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717SOFTWARE RAID (Multiple Disks) SUPPORT
2718P: Ingo Molnar
2719M: mingo@redhat.com
2720P: Neil Brown
2721M: neilb@cse.unsw.edu.au
2722L: linux-raid@vger.kernel.org
2723S: Maintained
2724
2725SOFTWARE SUSPEND:
2726P: Pavel Machek
2727M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002728L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729S: Maintained
2730
2731SONIC NETWORK DRIVER
2732P: Thomas Bogendoerfer
2733M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002734L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735S: Maintained
2736
2737SONY VAIO CONTROL DEVICE DRIVER
2738P: Stelian Pop
2739M: stelian@popies.net
2740W: http://popies.net/sonypi/
2741S: Maintained
2742
2743SOUND
2744P: Jaroslav Kysela
2745M: perex@suse.cz
2746L: alsa-devel@alsa-project.org
2747S: Maintained
2748
Kumar Gala025c3982006-04-02 16:05:54 -05002749SPI SUBSYSTEM
2750P: David Brownell
2751M: dbrownell@users.sourceforge.net
2752L: spi-devel-general@lists.sourceforge.net
2753S: Maintained
2754
Steven Rostedt855f46a2006-08-05 12:14:50 -07002755STABLE BRANCH:
2756P: Greg Kroah-Hartman
2757M: greg@kroah.com
2758P: Chris Wright
2759M: chrisw@sous-sol.org
2760L: stable@kernel.org
2761S: Maintained
2762
Kylene Hall1c72d462005-05-01 08:59:13 -07002763TPM DEVICE DRIVER
2764P: Kylene Hall
2765M: kjhall@us.ibm.com
2766W: http://tpmdd.sourceforge.net
2767L: tpmdd-devel@lists.sourceforge.net
2768S: Maintained
2769
Mark Gross1a80ba82005-10-30 15:02:55 -08002770Telecom Clock Driver for MCPL0010
2771P: Mark Gross
2772M: mark.gross@intel.com
2773S: Supported
2774
Chris Zankel48b415c2005-06-23 22:01:07 -07002775TENSILICA XTENSA PORT (xtensa):
2776P: Chris Zankel
2777M: chris@zankel.net
2778S: Maintained
2779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780UltraSPARC (sparc64):
2781P: David S. Miller
2782M: davem@davemloft.net
2783P: Eddie C. Dost
Eddie C. Dost90cdba62005-07-06 15:37:58 -07002784M: ecd@brainaid.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785P: Jakub Jelinek
2786M: jj@sunsite.ms.mff.cuni.cz
2787P: Anton Blanchard
2788M: anton@samba.org
2789L: sparclinux@vger.kernel.org
2790L: ultralinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002791T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792S: Maintained
2793
2794SHARP LH SUPPORT (LH7952X & LH7A40X)
2795P: Marc Singer
2796M: elf@buici.com
2797W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002798L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799S: Maintained
2800
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002801SHPC HOTPLUG DRIVER
2802P: Kristen Carlson Accardi
2803M: kristen.c.accardi@intel.com
2804L: pcihpd-discuss@lists.sourceforge.net
2805S: Maintained
2806
Pierre Ossmand129bce2006-03-24 03:18:17 -08002807SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2808P: Pierre Ossman
2809M: drzeus-sdhci@drzeus.cx
2810L: sdhci-devel@list.drzeus.cx
2811W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2812S: Maintained
2813
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002814SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2815P: Stephen Hemminger
2816M: shemminger@osdl.org
2817L: netdev@vger.kernel.org
2818S: Maintained
2819
Chris Boot1a87d942006-07-10 04:45:34 -07002820SOEKRIS NET48XX LED SUPPORT
2821P: Chris Boot
2822M: bootc@bootc.net
2823S: Maintained
2824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825SPARC (sparc32):
2826P: William L. Irwin
2827M: wli@holomorphy.com
2828L: sparclinux@vger.kernel.org
2829S: Maintained
2830
2831SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2832P: Roger Wolff
2833M: R.E.Wolff@BitWizard.nl
2834L: linux-kernel@vger.kernel.org ?
2835S: Supported
2836
Jim Lewis2752e402006-09-29 02:01:19 -07002837SPIDERNET NETWORK DRIVER for CELL
2838P: Jim Lewis
2839M: jim@jklewis.com
2840L: netdev@vger.kernel.org
2841S: Supported
2842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843SRM (Alpha) environment access
2844P: Jan-Benedict Glaw
2845M: jbglaw@lug-owl.de
2846L: linux-kernel@vger.kernel.org
2847S: Maintained
2848
2849STARFIRE/DURALAN NETWORK DRIVER
2850P: Ion Badulescu
2851M: ionut@cs.columbia.edu
2852S: Maintained
2853
2854STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2855W: http://mosquitonet.Stanford.EDU/strip.html
2856S: Unsupported ?
2857
2858STRADIS MPEG-2 DECODER DRIVER
2859P: Nathan Laredo
2860M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861W: http://www.stradis.com/
2862S: Maintained
2863
2864SUPERH (sh)
2865P: Paul Mundt
2866M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002867L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869S: Maintained
2870
2871SUPERH64 (sh64)
2872P: Paul Mundt
2873M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874L: linuxsh-shmedia-dev@lists.sourceforge.net
2875W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876S: Maintained
2877
2878SUN3/3X
2879P: Sam Creasey
2880M: sammy@sammy.net
2881L: sun3-list@redhat.com
2882W: http://sammy.net/sun3/
2883S: Maintained
2884
2885SVGA HANDLING
2886P: Martin Mares
2887M: mj@ucw.cz
2888L: linux-video@atrey.karlin.mff.cuni.cz
2889S: Maintained
2890
2891SYSV FILESYSTEM
2892P: Christoph Hellwig
2893M: hch@infradead.org
2894S: Maintained
2895
Stephen Hemminger781b456a2006-07-10 20:25:29 -07002896TC CLASSIFIER
2897P: Jamal Hadi Salim
2898M: hadi@cyberus.ca
2899L: netdev@vger.kernel.org
2900S: Maintained
2901
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002902TCP LOW PRIORITY MODULE
2903P: Wong Hoi Sing, Edison
2904M: hswong3i@gmail.com
2905P: Hung Hing Lun, Mike
2906M: hlhung3i@gmail.com
2907W: http://tcp-lp-mod.sourceforge.net/
2908S: Maintained
2909
Alex Dubov4020f2d2006-10-04 02:15:37 -07002910TI FLASH MEDIA INTERFACE DRIVER
2911P: Alex Dubov
2912M: oakad@yahoo.com
2913S: Maintained
2914
Michael Buesch844dd052006-06-26 00:24:59 -07002915TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2916P: Deepak Saxena
2917M: dsaxena@plexity.net
2918S: Maintained
2919
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002920TASKSTATS STATISTICS INTERFACE
2921P: Shailabh Nagar
2922M: nagar@watson.ibm.com
2923L: linux-kernel@vger.kernel.org
2924S: Maintained
2925
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926TI PARALLEL LINK CABLE DRIVER
2927P: Romain Lievin
2928M: roms@lpg.ticalc.org
2929S: Maintained
2930
Per Lidene86eaa32006-01-12 16:45:18 +01002931TIPC NETWORK LAYER
2932P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002933M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002934P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002935M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002936P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002937M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002938L: tipc-discussion@lists.sourceforge.net
2939W: http://tipc.sourceforge.net/
2940W: http://tipc.cslab.ericsson.net/
2941T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
2942S: Maintained
2943
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944TLAN NETWORK DRIVER
2945P: Samuel Chessman
2946M: chessman@tux.org
2947L: tlan-devel@lists.sourceforge.net
2948W: http://sourceforge.net/projects/tlan/
2949S: Maintained
2950
2951TOKEN-RING NETWORK DRIVER
2952P: Mike Phillips
2953M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002954L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955L: linux-tr@linuxtr.net
2956W: http://www.linuxtr.net
2957S: Maintained
2958
2959TOSHIBA ACPI EXTRAS DRIVER
2960P: John Belmonte
2961M: toshiba_acpi@memebeam.org
2962W: http://memebeam.org/toys/ToshibaAcpiDriver
2963S: Maintained
2964
2965TOSHIBA SMM DRIVER
2966P: Jonathan Buzzard
2967M: jonathan@buzzard.org.uk
2968L: tlinux-users@tce.toshiba-dme.co.jp
2969W: http://www.buzzard.org.uk/toshiba/
2970S: Maintained
2971
2972TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
2973P: Muli Ben-Yehuda
2974M: mulix@mulix.org
2975L: linux-kernel@vger.kernel.org
2976S: Maintained
2977
2978TRIVIAL PATCHES
Adrian Bunk6dfca872005-11-06 21:31:01 +01002979P: Adrian Bunk
2980M: trivial@kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981L: linux-kernel@vger.kernel.org
Adrian Bunk6dfca872005-11-06 21:31:01 +01002982W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
Josh Boyer1adc1232005-11-23 15:44:15 -08002983T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984S: Maintained
2985
2986TMS380 TOKEN-RING NETWORK DRIVER
2987P: Adam Fritzler
2988M: mid@auk.cx
2989L: linux-tr@linuxtr.net
2990W: http://www.auk.cx/tms380tr/
2991S: Maintained
2992
2993TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07002994P: Valerie Henson
2995M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996L: tulip-users@lists.sourceforge.net
2997W: http://sourceforge.net/projects/tulip/
2998S: Maintained
2999
3000TUN/TAP driver
3001P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003002M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003L: vtun@office.satix.net
3004W: http://vtun.sourceforge.net/tun
3005S: Maintained
3006
3007U14-34F SCSI DRIVER
3008P: Dario Ballabio
3009M: ballabio_dario@emc.com
3010L: linux-scsi@vger.kernel.org
3011S: Maintained
3012
3013UDF FILESYSTEM
3014P: Ben Fennema
3015M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016W: http://linux-udf.sourceforge.net
3017S: Maintained
3018
3019UNIFORM CDROM DRIVER
3020P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003021M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022L: linux-kernel@vger.kernel.org
3023W: http://www.kernel.dk
3024S: Maintained
3025
3026USB ACM DRIVER
3027P: Oliver Neukum
3028M: oliver@neukum.name
3029L: linux-usb-users@lists.sourceforge.net
3030L: linux-usb-devel@lists.sourceforge.net
3031S: Maintained
3032
3033USB BLOCK DRIVER (UB ub)
3034P: Pete Zaitcev
3035M: zaitcev@redhat.com
3036L: linux-kernel@vger.kernel.org
3037L: linux-usb-devel@lists.sourceforge.net
3038S: Supported
3039
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040USB CDC ETHERNET DRIVER
3041P: Greg Kroah-Hartman
3042M: greg@kroah.com
3043L: linux-usb-users@lists.sourceforge.net
3044L: linux-usb-devel@lists.sourceforge.net
3045S: Maintained
3046W: http://www.kroah.com/linux-usb/
3047
3048USB EHCI DRIVER
3049P: David Brownell
3050M: dbrownell@users.sourceforge.net
3051L: linux-usb-devel@lists.sourceforge.net
3052S: Maintained
3053
Luca Risolia7ce08c92006-01-11 02:06:59 +00003054USB ET61X[12]51 DRIVER
3055P: Luca Risolia
3056M: luca.risolia@studio.unibo.it
3057L: linux-usb-devel@lists.sourceforge.net
3058L: video4linux-list@redhat.com
3059W: http://www.linux-projects.org
3060S: Maintained
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062USB HID/HIDBP DRIVERS
3063P: Vojtech Pavlik
3064M: vojtech@suse.cz
3065L: linux-usb-users@lists.sourceforge.net
3066L: linux-usb-devel@lists.sourceforge.net
3067S: Maintained
3068
3069USB HUB DRIVER
3070P: Johannes Erdfelt
3071M: johannes@erdfelt.com
3072L: linux-usb-users@lists.sourceforge.net
3073L: linux-usb-devel@lists.sourceforge.net
3074S: Maintained
3075
Olav Kongas959eea22005-11-03 17:38:14 +02003076USB ISP116X DRIVER
3077P: Olav Kongas
3078M: ok@artecdesign.ee
3079L: linux-usb-devel@lists.sourceforge.net
3080S: Maintained
3081
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082USB KAWASAKI LSI DRIVER
3083P: Oliver Neukum
3084M: oliver@neukum.name
3085L: linux-usb-users@lists.sourceforge.net
3086L: linux-usb-devel@lists.sourceforge.net
3087S: Maintained
3088
3089USB MASS STORAGE DRIVER
3090P: Matthew Dharm
3091M: mdharm-usb@one-eyed-alien.net
3092L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003093L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094S: Maintained
3095W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3096
3097USB OHCI DRIVER
3098P: Roman Weissgaerber
3099M: weissg@vienna.at
3100L: linux-usb-users@lists.sourceforge.net
3101L: linux-usb-devel@lists.sourceforge.net
3102S: Maintained
3103
Matthias Urlichsba460e42005-07-14 00:33:47 -07003104USB OPTION-CARD DRIVER
3105P: Matthias Urlichs
3106M: smurf@smurf.noris.de
3107L: linux-usb-devel@lists.sourceforge.net
3108S: Maintained
3109
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110USB OV511 DRIVER
3111P: Mark McClelland
3112M: mmcclell@bigfoot.com
3113L: linux-usb-users@lists.sourceforge.net
3114L: linux-usb-devel@lists.sourceforge.net
3115W: http://alpha.dyndns.org/ov511/
3116S: Maintained
3117
3118USB PEGASUS DRIVER
3119P: Petko Manolov
3120M: petkan@users.sourceforge.net
3121L: linux-usb-users@lists.sourceforge.net
3122L: linux-usb-devel@lists.sourceforge.net
3123W: http://pegasus2.sourceforge.net/
3124S: Maintained
3125
3126USB PRINTER DRIVER
3127P: Vojtech Pavlik
3128M: vojtech@suse.cz
3129L: linux-usb-users@lists.sourceforge.net
3130L: linux-usb-devel@lists.sourceforge.net
3131S: Maintained
3132
3133USB RTL8150 DRIVER
3134P: Petko Manolov
3135M: petkan@users.sourceforge.net
3136L: linux-usb-users@lists.sourceforge.net
3137L: linux-usb-devel@lists.sourceforge.net
3138W: http://pegasus2.sourceforge.net/
3139S: Maintained
3140
3141USB SE401 DRIVER
3142P: Jeroen Vreeken
3143M: pe1rxq@amsat.org
3144L: linux-usb-users@lists.sourceforge.net
3145L: linux-usb-devel@lists.sourceforge.net
3146W: http://www.chello.nl/~j.vreeken/se401/
3147S: Maintained
3148
3149USB SERIAL CYBERJACK DRIVER
3150P: Matthias Bruestle and Harald Welte
3151M: support@reiner-sct.com
3152W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3153S: Maintained
3154
3155USB SERIAL DIGI ACCELEPORT DRIVER
3156P: Peter Berger and Al Borchers
3157M: pberger@brimson.com
3158M: alborchers@steinerpoint.com
3159L: linux-usb-users@lists.sourceforge.net
3160L: linux-usb-devel@lists.sourceforge.net
3161S: Maintained
3162
3163USB SERIAL DRIVER
3164P: Greg Kroah-Hartman
3165M: gregkh@suse.de
3166L: linux-usb-users@lists.sourceforge.net
3167L: linux-usb-devel@lists.sourceforge.net
3168S: Supported
3169
3170USB SERIAL BELKIN F5U103 DRIVER
3171P: William Greathouse
3172M: wgreathouse@smva.com
3173L: linux-usb-users@lists.sourceforge.net
3174L: linux-usb-devel@lists.sourceforge.net
3175S: Maintained
3176
3177USB SERIAL CYPRESS M8 DRIVER
3178P: Lonnie Mendez
3179M: dignome@gmail.com
3180L: linux-usb-users@lists.sourceforge.net
3181L: linux-usb-devel@lists.sourceforge.net
3182S: Maintained
3183W: http://geocities.com/i0xox0i
3184W: http://firstlight.net/cvs
3185
3186USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3187L: linux-usb-users@lists.sourceforge.net
3188L: linux-usb-devel@lists.sourceforge.net
3189S: Maintained
3190
3191USB AUERSWALD DRIVER
3192P: Wolfgang Muees
3193M: wolfgang@iksw-muees.de
3194L: linux-usb-users@lists.sourceforge.net
3195L: linux-usb-devel@lists.sourceforge.net
3196S: Maintained
3197
3198USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3199P: Gary Brubaker
3200M: xavyer@ix.netcom.com
3201L: linux-usb-users@lists.sourceforge.net
3202L: linux-usb-devel@lists.sourceforge.net
3203S: Maintained
3204
3205USB SERIAL KEYSPAN DRIVER
3206P: Greg Kroah-Hartman
3207M: greg@kroah.com
3208L: linux-usb-users@lists.sourceforge.net
3209L: linux-usb-devel@lists.sourceforge.net
3210W: http://www.kroah.com/linux/
3211S: Maintained
3212
3213USB SERIAL WHITEHEAT DRIVER
3214P: Stuart MacDonald
3215M: stuartm@connecttech.com
3216L: linux-usb-users@lists.sourceforge.net
3217L: linux-usb-devel@lists.sourceforge.net
3218W: http://www.connecttech.com
3219S: Supported
3220
3221USB SN9C10x DRIVER
3222P: Luca Risolia
3223M: luca.risolia@studio.unibo.it
3224L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003225L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226W: http://www.linux-projects.org
3227S: Maintained
3228
3229USB SUBSYSTEM
3230P: Greg Kroah-Hartman
3231M: gregkh@suse.de
3232L: linux-usb-users@lists.sourceforge.net
3233L: linux-usb-devel@lists.sourceforge.net
3234W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003235T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236S: Supported
3237
3238USB UHCI DRIVER
3239P: Alan Stern
3240M: stern@rowland.harvard.edu
3241L: linux-usb-users@lists.sourceforge.net
3242L: linux-usb-devel@lists.sourceforge.net
3243S: Maintained
3244
3245USB "USBNET" DRIVER
3246P: David Brownell
3247M: dbrownell@users.sourceforge.net
3248L: linux-usb-devel@lists.sourceforge.net
3249S: Maintained
3250
3251USB W996[87]CF DRIVER
3252P: Luca Risolia
3253M: luca.risolia@studio.unibo.it
3254L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003255L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256W: http://www.linux-projects.org
3257S: Maintained
3258
Luca Risolia60f78052006-02-06 16:29:35 +00003259USB ZC0301 DRIVER
3260P: Luca Risolia
3261M: luca.risolia@studio.unibo.it
3262L: linux-usb-devel@lists.sourceforge.net
3263L: video4linux-list@redhat.com
3264W: http://www.linux-projects.org
3265S: Maintained
3266
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267USB ZD1201 DRIVER
3268P: Jeroen Vreeken
3269M: pe1rxq@amsat.org
3270L: linux-usb-users@lists.sourceforge.net
3271L: linux-usb-devel@lists.sourceforge.net
3272W: http://linux-lc100020.sourceforge.net
3273S: Maintained
3274
3275USER-MODE LINUX
3276P: Jeff Dike
3277M: jdike@karaya.com
3278L: user-mode-linux-devel@lists.sourceforge.net
3279L: user-mode-linux-user@lists.sourceforge.net
3280W: http://user-mode-linux.sourceforge.net
3281S: Maintained
3282
3283FAT/VFAT/MSDOS FILESYSTEM:
3284P: OGAWA Hirofumi
3285M: hirofumi@mail.parknet.co.jp
3286L: linux-kernel@vger.kernel.org
3287S: Maintained
3288
3289VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3290P: Jeff Garzik
3291S: Odd fixes
3292
3293VIA RHINE NETWORK DRIVER
3294P: Roger Luethi
3295M: rl@hellgate.ch
3296S: Maintained
3297
Jean Delvare32c0a522005-09-22 21:47:58 +02003298VIAPRO SMBUS DRIVER
3299P: Jean Delvare
3300M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003301L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003302S: Maintained
3303
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304UCLINUX (AND M68KNOMMU)
3305P: Greg Ungerer
3306M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003308L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309S: Maintained
3310
3311UCLINUX FOR NEC V850
3312P: Miles Bader
3313M: uclinux-v850@lsi.nec.co.jp
3314W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3315W: http://www.ee.nec.de/uclinux/
3316S: Supported
3317
3318UCLINUX FOR RENESAS H8/300
3319P: Yoshinori Sato
3320M: ysato@users.sourceforge.jp
3321W: http://uclinux-h8.sourceforge.jp/
3322S: Supported
3323
3324USB DIAMOND RIO500 DRIVER
3325P: Cesar Miquel
3326M: miquel@df.uba.ar
3327L: rio500-users@lists.sourceforge.net
3328W: http://rio500.sourceforge.net
3329S: Maintained
3330
3331VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003332P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003333M: mchehab@infradead.org
3334M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003336W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003337T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003338S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Juerg Haefligerab413192006-09-24 20:54:04 +02003340VT1211 HARDWARE MONITOR DRIVER
3341P: Juerg Haefliger
3342M: juergh@gmail.com
3343L: lm-sensors@lm-sensors.org
3344S: Maintained
3345
Roger Lucas1de9e372005-11-26 20:20:05 +01003346VT8231 HARDWARE MONITOR DRIVER
3347P: Roger Lucas
3348M: roger@planbit.co.uk
3349L: lm-sensors@lm-sensors.org
3350S: Maintained
3351
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352W1 DALLAS'S 1-WIRE BUS
3353P: Evgeniy Polyakov
3354M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355S: Maintained
3356
Charles Spirakis13927072006-07-05 18:05:15 +02003357W83791D HARDWARE MONITORING DRIVER
3358P: Charles Spirakis
3359M: bezaur@gmail.com
3360L: lm-sensors@lm-sensors.org
3361S: Maintained
3362
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363W83L51xD SD/MMC CARD INTERFACE DRIVER
3364P: Pierre Ossman
3365M: drzeus-wbsd@drzeus.cx
3366L: wbsd-devel@list.drzeus.cx
3367W: http://projects.drzeus.cx/wbsd
3368S: Maintained
3369
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003370WATCHDOG DEVICE DRIVERS
3371P: Wim Van Sebroeck
3372M: wim@iguana.be
3373T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3374S: Maintained
3375
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3377P: Jean Tourrilhes
3378M: jt@hpl.hp.com
3379W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3380S: Maintained
3381
3382WD7000 SCSI DRIVER
3383P: Miroslav Zagorac
3384M: zaga@fly.cc.fer.hr
3385L: linux-scsi@vger.kernel.org
3386S: Maintained
3387
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003388WISTRON LAPTOP BUTTON DRIVER
3389P: Miloslav Trmac
3390M: mitr@volny.cz
3391S: Maintained
3392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393WL3501 WIRELESS PCMCIA CARD DRIVER
3394P: Arnaldo Carvalho de Melo
3395M: acme@conectiva.com.br
3396W: http://advogato.org/person/acme
3397S: Maintained
3398
3399X.25 NETWORK LAYER
3400P: Henner Eisen
3401M: eis@baty.hanse.de
3402L: linux-x25@vger.kernel.org
3403S: Maintained
3404
3405XFS FILESYSTEM
3406P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003407P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003409L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003411T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412S: Supported
3413
3414X86 3-LEVEL PAGING (PAE) SUPPORT
3415P: Ingo Molnar
3416M: mingo@redhat.com
3417S: Maintained
3418
3419X86-64 port
3420P: Andi Kleen
3421M: ak@suse.de
3422L: discuss@x86-64.org
3423W: http://www.x86-64.org
3424S: Maintained
3425
3426YAM DRIVER FOR AX.25
3427P: Jean-Paul Roubelat
3428M: jpr@f6fbb.org
3429L: linux-hams@vger.kernel.org
3430S: Maintained
3431
Henkaf64a5e2005-10-12 15:02:56 +02003432YEALINK PHONE DRIVER
3433P: Henk Vergonet
3434M: Henk.Vergonet@gmail.com
3435L: usbb2k-api-dev@nongnu.org
3436S: Maintained
3437
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438Z8530 DRIVER FOR AX.25
3439P: Joerg Reuter
3440M: jreuter@yaina.de
3441W: http://yaina.de/jreuter/
3442W: http://www.qsl.net/dl1bke/
3443L: linux-hams@vger.kernel.org
3444S: Maintained
3445
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003446ZD1211RW WIRELESS DRIVER
3447P: Daniel Drake
3448M: dsd@gentoo.org
3449P: Ulrich Kunitz
3450M: kune@deine-taler.de
3451W: http://zd1211.ath.cx/wiki/DriverRewrite
3452L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3453S: Maintained
3454
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455ZF MACHZ WATCHDOG
3456P: Fernando Fuganti
3457M: fuganti@netbank.com.br
3458W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3459S: Maintained
3460
3461ZR36067 VIDEO FOR LINUX DRIVER
3462P: Ronald Bultje
3463M: rbultje@ronald.bitfreak.net
3464L: mjpeg-users@lists.sourceforge.net
3465W: http://mjpeg.sourceforge.net/driver-zoran/
3466S: Maintained
3467
3468ZR36120 VIDEO FOR LINUX DRIVER
3469P: Pauline Middelink
3470M: middelin@polyware.nl
3471W: http://www.polyware.nl/~middelin/En/hobbies.html
3472W: http://www.polyware.nl/~middelin/hobbies.html
3473S: Maintained
3474
3475THE REST
3476P: Linus Torvalds
3477S: Buried alive in reporters