blob: 84a018ee4556f5371f71434cc3be1d2ab0e91931 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
33 generalized kernel feature ready for next time. See
34 Documentation/CodingStyle for guidance here.
35
36 PLEASE try to include any credit lines you want added with the
37 patch. It avoids people being missed off by mistake and makes
38 it easier to know who wants adding and who doesn't.
39
40 PLEASE document known bugs. If it doesn't work for everything
41 or does something very odd once a month document it.
42
Alan Coxc9ee1332006-05-20 15:00:12 -070043 PLEASE remember that submissions must be made under the terms
44 of the OSDL certificate of contribution
45 (http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html)
46 and should include a Signed-off-by: line.
47
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486. Make sure you have the right to send any changes you make. If you
49 do changes at work you may find your employer owns the patch
50 not you.
51
Alan Coxc9ee1332006-05-20 15:00:12 -0700527. When sending security related changes or reports to a maintainer
53 please Cc: security@kernel.org, especially if the maintainer
54 does not respond.
55
568. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 -----------------------------------
59
60Maintainers List (try to look for most precise areas first)
61
62Note: For the hard of thinking, this list is meant to remain in alphabetical
63order. If you could add yourselves to it in alphabetical order that would be
64so much easier [Ed]
65
66P: Person
67M: Mail patches to
68L: Mailing list that is relevant to this area
69W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080070T: SCM tree type and location. Type is one of: git, hg, quilt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071S: Status, one of the following:
72
73 Supported: Someone is actually paid to look after this.
74 Maintained: Someone actually looks after it.
75 Odd Fixes: It has a maintainer but they don't have time to do
76 much other than throw the odd patch in. See below..
77 Orphan: No current maintainer [but maybe you could take the
78 role as you write your new code].
79 Obsolete: Old code. Something tagged obsolete generally means
80 it has been replaced by a better system and you
81 should be using that.
82
833C359 NETWORK DRIVER
84P: Mike Phillips
85M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -070086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070087L: linux-tr@linuxtr.net
88W: http://www.linuxtr.net
89S: Maintained
90
913C505 NETWORK DRIVER
92P: Philip Blundell
93M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -070094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070095S: Maintained
96
973CR990 NETWORK DRIVER
98P: David Dillow
99M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101S: Maintained
102
1033W-XXXX ATA-RAID CONTROLLER DRIVER
104P: Adam Radford
105M: linuxraid@amcc.com
106L: linux-scsi@vger.kernel.org
107W: http://www.amcc.com
108S: Supported
109
1103W-9XXX SATA-RAID CONTROLLER DRIVER
111P: Adam Radford
112M: linuxraid@amcc.com
113L: linux-scsi@vger.kernel.org
114W: http://www.amcc.com
115S: Supported
116
11753C700 AND 53C700-66 SCSI DRIVER
118P: James E.J. Bottomley
119M: James.Bottomley@HansenPartnership.com
120L: linux-scsi@vger.kernel.org
121S: Maintained
122
1236PACK NETWORK DRIVER FOR AX.25
124P: Andreas Koensgen
125M: ajk@iehk.rwth-aachen.de
126L: linux-hams@vger.kernel.org
127S: Maintained
128
1298139CP 10/100 FAST ETHERNET DRIVER
130P: Jeff Garzik
131M: jgarzik@pobox.com
132S: Maintained
133
1348139TOO 10/100 FAST ETHERNET DRIVER
135P: Jeff Garzik
136M: jgarzik@pobox.com
137W: http://sourceforge.net/projects/gkernel/
138S: Maintained
139
1408169 10/100/1000 GIGABIT ETHERNET DRIVER
141P: Francois Romieu
142M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700143L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Maintained
145
1468250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-serial@vger.kernel.org
148W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100149S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1518390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
152P: Paul Gortmaker
153M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
156
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001579P FILE SYSTEM
158P: Eric Van Hensbergen
159M: ericvh@gmail.com
160P: Ron Minnich
161M: rminnich@lanl.gov
162P: Latchesar Ionkov
163M: lucho@ionkov.net
164L: v9fs-developer@lists.sourceforge.net
165W: http://v9fs.sf.net
166T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
167S: Maintained
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169A2232 SERIAL BOARD DRIVER
170P: Enver Haase
171M: ehaase@inf.fu-berlin.de
172M: A2232@gmx.net
173L: linux-m68k@lists.linux-m68k.org
174S: Maintained
175
176AIO
177P: Benjamin LaHaise
178M: bcrl@kvack.org
179L: linux-aio@kvack.org
180S: Supported
181
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200182ABIT UGURU HARDWARE MONITOR DRIVER
183P: Hans de Goede
184M: j.w.r.degoede@hhs.nl
185L: lm-sensors@lm-sensors.org
186S: Maintained
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188ACENIC DRIVER
189P: Jes Sorensen
190M: jes@trained-monkey.org
191L: linux-acenic@sunsite.dk
192S: Maintained
193
194ACI MIXER DRIVER
195P: Robert Siemer
196M: Robert.Siemer@gmx.de
197L: linux-sound@vger.kernel.org
198W: http://www.stud.uni-karlsruhe.de/~uh1b/
199S: Maintained
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201AACRAID SCSI RAID DRIVER
202P: Adaptec OEM Raid Solutions
203L: linux-scsi@vger.kernel.org
204W: http://linux.dell.com/storage.shtml
205S: Supported
206
207ACPI
208P: Len Brown
209M: len.brown@intel.com
Len Brown6968e502005-12-30 00:32:49 -0500210L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800212T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213S: Maintained
214
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700215ACPI PCI HOTPLUG DRIVER
216P: Kristen Carlson Accardi
217M: kristen.c.accardi@intel.com
218L: pcihpd-discuss@lists.sourceforge.net
219S: Maintained
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221AD1816 SOUND DRIVER
222P: Thorsten Knabe
223M: Thorsten Knabe <linux@thorsten-knabe.de>
224W: http://linux.thorsten-knabe.de
225S: Maintained
226
Kyle McMartin6958ae32005-10-21 23:11:27 -0400227AD1889 SOUND DRIVER
228P: Kyle McMartin
229M: kyle@parisc-linux.org
230P: Thibaut Varene
231M: T-Bone@parisc-linux.org
232W: http://wiki.parisc-linux.org/AD1889
233L: parisc-linux@lists.parisc-linux.org
234S: Maintained
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ADM1025 HARDWARE MONITOR DRIVER
237P: Jean Delvare
238M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200239L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240S: Maintained
241
242ADT746X FAN DRIVER
243P: Colin Leroy
244M: colin@colino.net
245S: Maintained
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247AEDSP16 DRIVER
248P: Riccardo Facchetti
249M: fizban@tin.it
250S: Maintained
251
252AFFS FILE SYSTEM
253P: Roman Zippel
254M: zippel@linux-m68k.org
255S: Maintained
256
257AGPGART DRIVER
258P: Dave Jones
259M: davej@codemonkey.org.uk
260W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800261T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262S: Maintained
263
264AHA152X SCSI DRIVER
265P: Juergen E. Fischer
266M: Juergen Fischer <fischer@norbit.de>
267L: linux-scsi@vger.kernel.org
268S: Maintained
269
270ALCATEL SPEEDTOUCH USB DRIVER
271P: Duncan Sands
272M: duncan.sands@free.fr
273L: linux-usb-users@lists.sourceforge.net
274L: linux-usb-devel@lists.sourceforge.net
275W: http://www.linux-usb.org/SpeedTouch/
276S: Maintained
277
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000278ALI1563 I2C DRIVER
279P: Rudolf Marek
280M: r.marek@sh.cvut.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200281L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000282S: Maintained
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284ALPHA PORT
285P: Richard Henderson
286M: rth@twiddle.net
287S: Odd Fixes for 2.4; Maintained for 2.6.
288P: Ivan Kokshaysky
289M: ink@jurassic.park.msu.ru
290S: Maintained for 2.4; PCI support for 2.6.
291
Jordan Crousef90b8112006-01-06 00:12:14 -0800292AMD GEODE PROCESSOR/CHIPSET SUPPORT
293P: Jordan Crouse
294M: info-linux@geode.amd.com
295L: info-linux@geode.amd.com
296W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
297S: Supported
298
Tom Tuckerf94b5332006-09-22 15:22:48 -0700299AMSO1100 RNIC DRIVER
300P: Tom Tucker
301M: tom@opengridcomputing.com
302P: Steve Wise
303M: swise@opengridcomputing.com
304L: openib-general@openib.org
305S: Maintained
306
Johannes Berg42269062006-07-25 16:15:50 +0200307AOA (Apple Onboard Audio) ALSA DRIVER
308P: Johannes Berg
309M: johannes@sipsolutions.net
310L: linuxppc-dev@ozlabs.org
311L: alsa-devel@alsa-project.org
312S: Maintained
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314APM DRIVER
315P: Stephen Rothwell
316M: sfr@canb.auug.org.au
317L: linux-laptop@vger.kernel.org
318W: http://www.canb.auug.org.au/~sfr/
319S: Supported
320
321APPLETALK NETWORK LAYER
322P: Arnaldo Carvalho de Melo
323M: acme@conectiva.com.br
324S: Maintained
325
Jaya Kumar1154ea72005-06-21 17:17:04 -0700326ARC FRAMEBUFFER DRIVER
327P: Jaya Kumar
328M: jayalk@intworks.biz
329S: Maintained
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331ARM26 ARCHITECTURE
332P: Ian Molton
333M: spyro@f2s.com
334S: Maintained
335
336ARM26/ARCHIMEDES
337P: Ian Molton
338M: spyro@f2s.com
339S: Maintained
340
341ARM26/A5000
342P: John Appleby
343M: john@dnsworld.co.uk
344S: Maintained
345
346ARM MFM AND FLOPPY DRIVERS
347P: Ian Molton
348M: spyro@f2s.com
349S: Maintained
350
351ARM/CORGI MACHINE SUPPORT
352P: Richard Purdie
353M: rpurdie@rpsys.net
354S: Maintained
355
Dirk Opfer8459c152005-11-06 14:27:52 +0000356ARM/TOSA MACHINE SUPPORT
357P: Dirk Opfer
358M: dirk@opfer-online.de
359S: Maintained
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361ARM/PLEB SUPPORT
362P: Peter Chubb
363M: pleb@gelato.unsw.edu.au
364W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
365S: Maintained
366
367ARM/PT DIGITAL BOARD PORT
368P: Stefan Eletzhofer
369M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700370L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371W: http://www.arm.linux.org.uk/
372S: Maintained
373
374ARM/SHARK MACHINE SUPPORT
375P: Alexander Schulz
376M: alex@shark-linux.de
377W: http://www.shark-linux.de/shark.html
378S: Maintained
379
380ARM/STRONGARM110 PORT
381P: Russell King
382M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700383L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384W: http://www.arm.linux.org.uk/
385S: Maintained
386
387ARM/S3C2410 ARM ARCHITECTURE
388P: Ben Dooks
389M: ben-s3c2410@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700390L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391W: http://www.fluff.org/ben/linux/
392S: Maintained
393
394ARM/S3C2440 ARM ARCHITECTURE
395P: Ben Dooks
396M: ben-s3c2440@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700397L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398W: http://www.fluff.org/ben/linux/
399S: Maintained
400
401ARPD SUPPORT
402P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700403L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404S: Maintained
405
406ASUS ACPI EXTRAS DRIVER
407P: Karol Kozimor
408M: sziwan@users.sourceforge.net
409P: Julien Lerouge
410M: julien.lerouge@free.fr
411L: acpi4asus-user@lists.sourceforge.net
412W: http://sourceforge.net/projects/acpi4asus
413W: http://julien.lerouge.free.fr
414S: Maintained
415
416ATA OVER ETHERNET DRIVER
417P: Ed L. Cashin
418M: ecashin@coraid.com
419W: http://www.coraid.com/support/linux
420S: Supported
421
422ATM
423P: Chas Williams
424M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700425L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426W: http://linux-atm.sourceforge.net
427S: Maintained
428
429ATMEL WIRELESS DRIVER
430P: Simon Kelley
431M: simon@thekelleys.org.uk
432W: http://www.thekelleys.org.uk/atmel
433W: http://atmelwlandriver.sourceforge.net/
434S: Maintained
435
Chris Wrighta92b7b82005-07-07 18:12:23 -0700436AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100437P: David Woodhouse
438M: dwmw2@infradead.org
439L: linux-audit@redhat.com
440W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800441T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700442S: Maintained
443
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700444AVR32 ARCHITECTURE
445P: Atmel AVR32 Support Team
446M: avr32@atmel.com
447P: Haavard Skinnemoen
448M: hskinnemoen@atmel.com
449W: http://www.atmel.com/products/AVR32/
450W: http://avr32linux.org/
451W: http://avrfreaks.net/
452S: Supported
453
454AVR32/AT32AP MACHINE SUPPORT
455P: Atmel AVR32 Support Team
456M: avr32@atmel.com
457P: Haavard Skinnemoen
458M: hskinnemoen@atmel.com
459S: Supported
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461AX.25 NETWORK LAYER
462P: Ralf Baechle
463M: ralf@linux-mips.org
464L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200465W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466S: Maintained
467
468BAYCOM/HDLCDRV DRIVERS FOR AX.25
469P: Thomas Sailer
470M: t.sailer@alumni.ethz.ch
471L: linux-hams@vger.kernel.org
472W: http://www.baycom.org/~tom/ham/ham.html
473S: Maintained
474
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200475BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
476P: Larry Finger
477M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200478P: Stefano Brivio
479M: st3@riseup.net
480W: http://bcm43xx.berlios.de/
481S: Maintained
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483BEFS FILE SYSTEM
484P: Sergey S. Kostyliov
485M: rathamahata@php4.ru
486L: linux-kernel@vger.kernel.org
487S: Maintained
488
489BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
490P: Kenji Hollis
491W: http://ftp.bitgate.com/pcwd/
492S: Maintained
493
494BFS FILE SYSTEM
495P: Tigran A. Aivazian
496M: tigran@veritas.com
497L: linux-kernel@vger.kernel.org
498S: Maintained
499
500BLOCK LAYER
501P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200502M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800504T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505S: Maintained
506
507BLUETOOTH SUBSYSTEM
508P: Marcel Holtmann
509M: marcel@holtmann.org
510P: Maxim Krasnyansky
511M: maxk@qualcomm.com
512L: bluez-devel@lists.sf.net
513W: http://bluez.sf.net
514W: http://www.bluez.org
515W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800516T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517S: Maintained
518
519BLUETOOTH RFCOMM LAYER
520P: Marcel Holtmann
521M: marcel@holtmann.org
522P: Maxim Krasnyansky
523M: maxk@qualcomm.com
524S: Maintained
525
526BLUETOOTH BNEP LAYER
527P: Marcel Holtmann
528M: marcel@holtmann.org
529P: Maxim Krasnyansky
530M: maxk@qualcomm.com
531S: Maintained
532
533BLUETOOTH CMTP LAYER
534P: Marcel Holtmann
535M: marcel@holtmann.org
536S: Maintained
537
538BLUETOOTH HIDP LAYER
539P: Marcel Holtmann
540M: marcel@holtmann.org
541S: Maintained
542
543BLUETOOTH HCI UART DRIVER
544P: Marcel Holtmann
545M: marcel@holtmann.org
546P: Maxim Krasnyansky
547M: maxk@qualcomm.com
548S: Maintained
549
550BLUETOOTH HCI USB DRIVER
551P: Marcel Holtmann
552M: marcel@holtmann.org
553P: Maxim Krasnyansky
554M: maxk@qualcomm.com
555S: Maintained
556
557BLUETOOTH HCI BCM203X DRIVER
558P: Marcel Holtmann
559M: marcel@holtmann.org
560S: Maintained
561
562BLUETOOTH HCI BPA10X DRIVER
563P: Marcel Holtmann
564M: marcel@holtmann.org
565S: Maintained
566
567BLUETOOTH HCI BFUSB DRIVER
568P: Marcel Holtmann
569M: marcel@holtmann.org
570S: Maintained
571
572BLUETOOTH HCI DTL1 DRIVER
573P: Marcel Holtmann
574M: marcel@holtmann.org
575S: Maintained
576
577BLUETOOTH HCI BLUECARD DRIVER
578P: Marcel Holtmann
579M: marcel@holtmann.org
580S: Maintained
581
582BLUETOOTH HCI BT3C DRIVER
583P: Marcel Holtmann
584M: marcel@holtmann.org
585S: Maintained
586
587BLUETOOTH HCI BTUART DRIVER
588P: Marcel Holtmann
589M: marcel@holtmann.org
590S: Maintained
591
592BLUETOOTH HCI VHCI DRIVER
593P: Maxim Krasnyansky
594M: maxk@qualcomm.com
595S: Maintained
596
597BONDING DRIVER
598P: Chad Tindel
599M: ctindel@users.sourceforge.net
600P: Jay Vosburgh
601M: fubar@us.ibm.com
602L: bonding-devel@lists.sourceforge.net
603W: http://sourceforge.net/projects/bonding/
604S: Supported
605
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000606BROADBAND PROCESSOR ARCHITECTURE
607P: Arnd Bergmann
608M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100609L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400610W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000611S: Supported
612
Gary Zambrano39105892006-06-22 17:26:20 -0700613BROADCOM B44 10/100 ETHERNET DRIVER
614P: Gary Zambrano
615M: zambrano@broadcom.com
616L: netdev@vger.kernel.org
617S: Supported
618
Michael Chan948c51e2006-06-04 02:51:39 -0700619BROADCOM BNX2 GIGABIT ETHERNET DRIVER
620P: Michael Chan
621M: mchan@broadcom.com
622L: netdev@vger.kernel.org
623S: Supported
624
625BROADCOM TG3 GIGABIT ETHERNET DRIVER
626P: Michael Chan
627M: mchan@broadcom.com
628L: netdev@vger.kernel.org
629S: Supported
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700632P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200633M: mchehab@infradead.org
634M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700636W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200637T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700638S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200640CALGARY x86-64 IOMMU
641P: Muli Ben-Yehuda
642M: muli@il.ibm.com
643P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200644M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200645L: linux-kernel@vger.kernel.org
646L: discuss@x86-64.org
647S: Maintained
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649COMMON INTERNET FILE SYSTEM (CIFS)
650P: Steve French
651M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100652L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653L: samba-technical@lists.samba.org
654W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800655T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656S: Supported
657
Joel Becker7063fbf2005-12-15 14:29:43 -0800658CONFIGFS
659P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800660M: joel.becker@oracle.com
661L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800662S: Supported
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664CIRRUS LOGIC GENERIC FBDEV DRIVER
665P: Jeff Garzik
666M: jgarzik@pobox.com
667L: linux-fbdev-devel@lists.sourceforge.net
668S: Odd Fixes
669
670CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
671P: Cirrus Logic Corporation (kernel 2.2 driver)
672M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
673P: Nils Faerber (port to kernel 2.4)
674M: Nils Faerber <nils@kernelconcepts.de>
675S: Maintained
676
677CODA FILE SYSTEM
678P: Jan Harkes
679M: jaharkes@cs.cmu.edu
680M: coda@cs.cmu.edu
681L: codalist@coda.cs.cmu.edu
682W: http://www.coda.cs.cmu.edu/
683S: Maintained
684
685COMPACTPCI HOTPLUG CORE
686P: Scott Murray
687M: scottm@somanetworks.com
688M: scott@spiteful.org
689L: pcihpd-discuss@lists.sourceforge.net
690S: Supported
691
692COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
693P: Scott Murray
694M: scottm@somanetworks.com
695M: scott@spiteful.org
696L: pcihpd-discuss@lists.sourceforge.net
697S: Supported
698
699COMPACTPCI HOTPLUG GENERIC DRIVER
700P: Scott Murray
701M: scottm@somanetworks.com
702M: scott@spiteful.org
703L: pcihpd-discuss@lists.sourceforge.net
704S: Supported
705
706COMPUTONE INTELLIPORT MULTIPORT CARD
707P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700708M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700710S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712COSA/SRP SYNC SERIAL DRIVER
713P: Jan "Yenya" Kasprzak
714M: kas@fi.muni.cz
715W: http://www.fi.muni.cz/~kas/cosa/
716S: Maintained
717
718CPU FREQUENCY DRIVERS
719P: Dave Jones
720M: davej@codemonkey.org.uk
721L: cpufreq@lists.linux.org.uk
722W: http://www.codemonkey.org.uk/projects/cpufreq/
Josh Boyer1adc1232005-11-23 15:44:15 -0800723T: git kernel.org/pub/scm/linux/kernel/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724S: Maintained
725
726CPUID/MSR DRIVER
727P: H. Peter Anvin
728M: hpa@zytor.com
729S: Maintained
730
Paul Jacksoned90fb42005-09-27 21:45:37 -0700731CPUSETS
732P: Paul Jackson
733P: Simon Derr
734M: pj@sgi.com
735M: simon.derr@bull.net
736L: linux-kernel@vger.kernel.org
737W: http://www.bullopensource.org/cpuset/
738S: Supported
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740CRAMFS FILESYSTEM
741W: http://sourceforge.net/projects/cramfs/
742S: Orphan
743
744CRIS PORT
745P: Mikael Starvik
746M: starvik@axis.com
747L: dev-etrax@axis.com
748W: http://developer.axis.com
749S: Maintained
750
751CRYPTO API
752P: Herbert Xu
753M: herbert@gondor.apana.org.au
754P: David S. Miller
755M: davem@davemloft.net
756L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800757T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758S: Maintained
759
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100760CS5535 Audio ALSA driver
761P: Jaya Kumar
762M: jayakumar.alsa@gmail.com
763S: Maintained
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765CYBERPRO FB DRIVER
766P: Russell King
767M: rmk@arm.linux.org.uk
768W: http://www.arm.linux.org.uk/
769S: Maintained
770
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700771CYBLAFB FRAMEBUFFER DRIVER
772P: Knut Petersen
773M: Knut_Petersen@t-online.de
774L: linux-fbdev-devel@lists.sourceforge.net
775S: Maintained
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777CYCLADES 2X SYNC CARD DRIVER
778P: Arnaldo Carvalho de Melo
779M: acme@conectiva.com.br
780W: http://advogato.org/person/acme
781L: cycsyn-devel@bazar.conectiva.com.br
782S: Maintained
783
784CYCLADES ASYNC MUX DRIVER
785M: async@cyclades.com
786W: http://www.cyclades.com/
787S: Supported
788
789CYCLADES PC300 DRIVER
790M: pc300@cyclades.com
791W: http://www.cyclades.com/
792S: Supported
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794DAMA SLAVE for AX.25
795P: Joerg Reuter
796M: jreuter@yaina.de
797W: http://yaina.de/jreuter/
798W: http://www.qsl.net/dl1bke/
799L: linux-hams@vger.kernel.org
800S: Maintained
801
802DC395x SCSI driver
803P: Oliver Neukum
804M: oliver@neukum.name
805P: Ali Akcaagac
806M: aliakc@web.de
807P: Jamie Lenehan
808M: lenehan@twibble.org
809W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700810L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811L: http://lists.twibble.org/mailman/listinfo/dc395x/
812S: Maintained
813
814DC390/AM53C974 SCSI driver
815P: Kurt Garloff
816M: garloff@suse.de
817W: http://www.garloff.de/kurt/linux/dc390/
818P: Guennadi Liakhovetski
819M: g.liakhovetski@gmx.de
820S: Maintained
821
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700822DCCP PROTOCOL
823P: Arnaldo Carvalho de Melo
824M: acme@mandriva.com
825L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800826W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700827S: Maintained
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829DECnet NETWORK LAYER
830P: Patrick Caulfield
831M: patrick@tykepenguin.com
832W: http://linux-decnet.sourceforge.net
833L: linux-decnet-user@lists.sourceforge.net
834S: Maintained
835
836DEFXX FDDI NETWORK DRIVER
837P: Maciej W. Rozycki
838M: macro@linux-mips.org
839S: Maintained
840
841DELL LAPTOP SMM DRIVER
842P: Massimo Dal Zotto
843M: dz@debian.org
844W: http://www.debian.org/~dz/i8k/
845S: Maintained
846
Doug Warzecha90563ec2005-09-06 15:17:15 -0700847DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
848P: Doug Warzecha
849M: Douglas_Warzecha@dell.com
850S: Maintained
851
Pavel Machek5ddb88c2006-09-29 02:01:29 -0700852DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853P: Alasdair Kergon
854L: dm-devel@redhat.com
855W: http://sources.redhat.com/dm
856S: Maintained
857
858DEVICE NUMBER REGISTRY
859P: Torben Mathiasen
860M: device@lanana.org
861W: http://lanana.org/docs/device-list/index.html
862L: linux-kernel@vger.kernel.org
863S: Maintained
864
865DEVICE FILESYSTEM
866S: Obsolete
867
868DIGI INTL. EPCA DRIVER
869P: Digi International, Inc
870M: Eng.Linux@digi.com
871L: Eng.Linux@digi.com
872W: http://www.digi.com
873S: Orphaned
874
875DIGI RIGHTSWITCH NETWORK DRIVER
876P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -0700877L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878W: http://www.digi.com
879S: Orphaned
880
881DIRECTORY NOTIFICATION
882P: Stephen Rothwell
883M: sfr@canb.auug.org.au
884L: linux-kernel@vger.kernel.org
885S: Supported
886
887DISK GEOMETRY AND PARTITION HANDLING
888P: Andries Brouwer
889M: aeb@cwi.nl
890W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
891W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
892W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
893S: Maintained
894
895DISKQUOTA:
896P: Jan Kara
897M: jack@suse.cz
898L: linux-kernel@vger.kernel.org
899S: Maintained
900
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400901DISTRIBUTED LOCK MANAGER
902P: Patrick Caulfield
903M: pcaulfie@redhat.com
904P: David Teigland
905M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -0400906L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400907W: http://sources.redhat.com/cluster/
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
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002264PCI ERROR RECOVERY
2265P: Linas Vepstas
2266M: linas@austin.ibm.com
2267L: linux-kernel@vger.kernel.org
2268L: linux-pci@atrey.karlin.mff.cuni.cz
2269S: Supported
2270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2272P: Thomas Sailer
2273M: sailer@ife.ee.ethz.ch
2274L: linux-sound@vger.kernel.org
2275W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2276S: Maintained
2277
2278PCI SUBSYSTEM
2279P: Greg Kroah-Hartman
2280M: gregkh@suse.de
2281L: linux-kernel@vger.kernel.org
2282L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002283T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284S: Supported
2285
2286PCI HOTPLUG CORE
2287P: Greg Kroah-Hartman
2288M: gregkh@suse.de
2289S: Supported
2290
2291PCI HOTPLUG COMPAQ DRIVER
2292P: Greg Kroah-Hartman
2293M: greg@kroah.com
2294S: Maintained
2295
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002296PCIE HOTPLUG DRIVER
2297P: Kristen Carlson Accardi
2298M: kristen.c.accardi@intel.com
2299L: pcihpd-discuss@lists.sourceforge.net
2300S: Maintained
2301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002303P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002304L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002306T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002307S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309PCNET32 NETWORK DRIVER
2310P: Thomas Bogendörfer
2311M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002312L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313S: Maintained
2314
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002315PER-TASK DELAY ACCOUNTING
2316P: Shailabh Nagar
2317M: nagar@watson.ibm.com
2318L: linux-kernel@vger.kernel.org
2319S: Maintained
2320
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002321PERSONALITY HANDLING
2322P: Christoph Hellwig
2323M: hch@infradead.org
2324L: linux-abi-devel@lists.sourceforge.net
2325S: Maintained
2326
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327PHRAM MTD DRIVER
2328P: Jörn Engel
2329M: joern@wh.fh-wedel.de
2330L: linux-mtd@lists.infradead.org
2331S: Maintained
2332
Peter Osterlund249a6772005-09-27 21:45:30 -07002333PKTCDVD DRIVER
2334P: Peter Osterlund
2335M: petero2@telia.com
2336L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002337S: Maintained
2338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339POSIX CLOCKS and TIMERS
2340P: George Anzinger
2341M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002342L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343S: Supported
2344
Eugene Surovegin24682972005-10-14 03:00:53 -07002345POWERPC 4xx EMAC DRIVER
2346P: Eugene Surovegin
2347M: ebs@ebshome.net
2348W: http://kernel.ebshome.net/emac/
2349L: linuxppc-embedded@ozlabs.org
2350L: netdev@vger.kernel.org
2351S: Maintained
2352
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353PNP SUPPORT
2354P: Adam Belay
2355M: ambx1@neo.rr.com
2356S: Maintained
2357
2358PPP PROTOCOL DRIVERS AND COMPRESSORS
2359P: Paul Mackerras
2360M: paulus@samba.org
2361L: linux-ppp@vger.kernel.org
2362S: Maintained
2363
2364PPP OVER ATM (RFC 2364)
2365P: Mitchell Blank Jr
2366M: mitch@sfgoth.com
2367S: Maintained
2368
2369PPP OVER ETHERNET
2370P: Michal Ostrowski
2371M: mostrows@speakeasy.net
2372S: Maintained
2373
2374PREEMPTIBLE KERNEL
2375P: Robert Love
2376M: rml@tech9.net
2377L: linux-kernel@vger.kernel.org
2378L: kpreempt-tech@lists.sourceforge.net
2379W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2380S: Supported
2381
2382PRISM54 WIRELESS DRIVER
2383P: Prism54 Development Team
2384M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002385L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386W: http://prism54.org
2387S: Maintained
2388
2389PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2390P: Peter Denison
2391M: promise@pnd-pc.demon.co.uk
2392W: http://www.pnd-pc.demon.co.uk/promise/
2393S: Maintained
2394
Michael Krufky83202042006-07-03 00:24:18 -07002395PVRUSB2 VIDEO4LINUX DRIVER
2396P: Mike Isely
2397M: isely@pobox.com
2398L: pvrusb2@isely.net
2399L: video4linux-list@redhat.com
2400W: http://www.isely.net/pvrusb2/
2401S: Maintained
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403PXA2xx SUPPORT
2404P: Nicolas Pitre
2405M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002406L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407S: Maintained
2408
2409QLOGIC QLA2XXX FC-SCSI DRIVER
2410P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002411M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412L: linux-scsi@vger.kernel.org
2413S: Supported
2414
Ron Mercer5a4faa82006-07-25 00:40:21 -07002415QLOGIC QLA3XXX NETWORK DRIVER
2416P: Ron Mercer
2417M: linux-driver@qlogic.com
2418L: netdev@vger.kernel.org
2419S: Supported
2420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421QNX4 FILESYSTEM
2422P: Anders Larsen
2423M: al@alarsen.net
2424L: linux-kernel@vger.kernel.org
2425W: http://www.alarsen.net/linux/qnx4fs/
2426S: Maintained
2427
2428RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002429P: Benjamin Herrenschmidt
2430M: benh@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431L: linux-fbdev-devel@lists.sourceforge.net
2432S: Maintained
2433
2434RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002435P: Paul Mackerras
2436M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437L: linux-fbdev-devel@lists.sourceforge.net
2438S: Maintained
2439
2440RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2441P: Corey Thomas
2442M: corey@world.std.com
2443L: linux-kernel@vger.kernel.org
2444S: Maintained
2445
Matt Mackall9e95ce22005-04-16 15:25:56 -07002446RANDOM NUMBER DRIVER
2447P: Matt Mackall
2448M: mpm@selenic.com
2449S: Maintained
2450
Matt Porter394b7012005-11-07 01:00:15 -08002451RAPIDIO SUBSYSTEM
2452P: Matt Porter
2453M: mporter@kernel.crashing.org
2454L: linux-kernel@vger.kernel.org
2455S: Maintained
2456
Josh Triplett595182b2006-10-04 02:17:21 -07002457READ-COPY UPDATE (RCU)
2458P: Dipankar Sarma
2459M: dipankar@in.ibm.com
2460W: http://www.rdrop.com/users/paulmck/rclock/
2461L: linux-kernel@vger.kernel.org
2462S: Supported
2463
2464RCUTORTURE MODULE
2465P: Josh Triplett
2466M: josh@freedesktop.org
2467L: linux-kernel@vger.kernel.org
2468S: Maintained
2469
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470REAL TIME CLOCK DRIVER
2471P: Paul Gortmaker
2472M: p_gortmaker@yahoo.com
2473L: linux-kernel@vger.kernel.org
2474S: Maintained
2475
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002476REAL TIME CLOCK (RTC) SUBSYSTEM
2477P: Alessandro Zummo
2478M: a.zummo@towertech.it
2479L: linux-kernel@vger.kernel.org
2480S: Maintained
2481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482REISERFS FILE SYSTEM
2483P: Hans Reiser
2484M: reiserfs-dev@namesys.com
2485L: reiserfs-list@namesys.com
2486W: http://www.namesys.com
2487S: Supported
2488
2489ROCKETPORT DRIVER
2490P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491W: http://www.comtrol.com
2492S: Maintained
2493
2494ROSE NETWORK LAYER
2495P: Ralf Baechle
2496M: ralf@linux-mips.org
2497L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002498W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499S: Maintained
2500
2501RISCOM8 DRIVER
2502S: Orphan
2503
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002504S3 SAVAGE FRAMEBUFFER DRIVER
2505P: Antonino Daplas
2506M: adaplas@pol.net
2507L: linux-fbdev-devel@lists.sourceforge.net
2508S: Maintained
2509
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510S390
2511P: Martin Schwidefsky
2512M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002513P: Heiko Carstens
2514M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515M: linux390@de.ibm.com
2516L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002517W: http://www.ibm.com/developerworks/linux/linux390/
2518S: Supported
2519
2520S390 NETWORK DRIVERS
2521P: Frank Pavlic
2522M: fpavlic@de.ibm.com
2523M: linux390@de.ibm.com
2524L: linux-390@vm.marist.edu
2525W: http://www.ibm.com/developerworks/linux/linux390/
2526S: Supported
2527
2528S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002529P: Swen Schillig
2530M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002531M: linux390@de.ibm.com
2532L: linux-390@vm.marist.edu
2533W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534S: Supported
2535
2536SAA7146 VIDEO4LINUX-2 DRIVER
2537P: Michael Hunold
2538M: michael@mihu.de
2539W: http://www.mihu.de/linux/saa7146
2540S: Maintained
2541
2542SBPCD CDROM DRIVER
2543P: Eberhard Moenkeberg
2544M: emoenke@gwdg.de
2545L: linux-kernel@vger.kernel.org
2546S: Maintained
2547
2548SC1200 WDT DRIVER
2549P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002550M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551S: Maintained
2552
2553SCHEDULER
2554P: Ingo Molnar
2555M: mingo@elte.hu
2556P: Robert Love [the preemptible kernel bits]
2557M: rml@tech9.net
2558L: linux-kernel@vger.kernel.org
2559S: Maintained
2560
2561SCSI CDROM DRIVER
2562P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002563M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564L: linux-scsi@vger.kernel.org
2565W: http://www.kernel.dk
2566S: Maintained
2567
2568SCSI SG DRIVER
2569P: Doug Gilbert
2570M: dgilbert@interlog.com
2571L: linux-scsi@vger.kernel.org
2572W: http://www.torque.net/sg
2573S: Maintained
2574
2575SCSI SUBSYSTEM
2576P: James E.J. Bottomley
2577M: James.Bottomley@SteelEye.com
2578L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002579T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580S: Maintained
2581
2582SCSI TAPE DRIVER
2583P: Kai Mäkisara
2584M: Kai.Makisara@kolumbus.fi
2585L: linux-scsi@vger.kernel.org
2586S: Maintained
2587
2588SCTP PROTOCOL
2589P: Sridhar Samudrala
2590M: sri@us.ibm.com
2591L: lksctp-developers@lists.sourceforge.net
2592S: Supported
2593
2594SCx200 CPU SUPPORT
2595P: Christer Weinigel
2596M: christer@weinigel.se
2597W: http://www.weinigel.se
2598S: Supported
2599
2600SECURITY CONTACT
2601P: Security Officers
2602M: security@kernel.org
2603S: Supported
2604
2605SELINUX SECURITY MODULE
2606P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002607M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002609M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610L: linux-kernel@vger.kernel.org (kernel issues)
2611L: selinux@tycho.nsa.gov (general discussion)
2612W: http://www.nsa.gov/selinux
2613S: Supported
2614
2615SERIAL ATA (SATA) SUBSYSTEM:
2616P: Jeff Garzik
2617M: jgarzik@pobox.com
2618L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002619T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620S: Supported
2621
2622SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2623P: Pat Gefre
2624M: pfg@sgi.com
2625L: linux-ia64@vger.kernel.org
2626S: Supported
2627
2628SGI VISUAL WORKSTATION 320 AND 540
2629P: Andrey Panin
2630M: pazke@donpac.ru
2631L: linux-visws-devel@lists.sf.net
2632W: http://linux-visws.sf.net
2633S: Maintained for 2.6.
2634
2635SIMTEC EB110ATX (Chalice CATS)
2636P: Ben Dooks
2637P: Vincent Sanders
2638M: support@simtec.co.uk
2639W: http://www.simtec.co.uk/products/EB110ATX/
2640S: Supported
2641
2642SIMTEC EB2410ITX (BAST)
2643P: Ben Dooks
2644P: Vincent Sanders
2645M: support@simtec.co.uk
2646W: http://www.simtec.co.uk/products/EB2410ITX/
2647S: Supported
2648
Francois Romieu92aab3c2005-07-30 13:11:18 +02002649SIS 190 ETHERNET DRIVER
2650P: Francois Romieu
2651M: romieu@fr.zoreil.com
2652L: netdev@vger.kernel.org
2653S: Maintained
2654
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655SIS 5513 IDE CONTROLLER DRIVER
2656P: Lionel Bouton
2657M: Lionel.Bouton@inet6.fr
2658W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2659W: http://gyver.homeip.net/sis5513/index.html
2660S: Maintained
2661
2662SIS 900/7016 FAST ETHERNET DRIVER
2663P: Daniele Venzano
2664M: venza@brownhat.org
2665W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002666L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667S: Maintained
2668
2669SIS FRAMEBUFFER DRIVER
2670P: Thomas Winischhofer
2671M: thomas@winischhofer.net
2672W: http://www.winischhofer.net/linuxsisvga.shtml
2673S: Maintained
2674
2675SIS USB2VGA DRIVER
2676P: Thomas Winischhofer
2677M: thomas@winischhofer.net
2678W: http://www.winischhofer.at/linuxsisusbvga.shtml
2679S: Maintained
2680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681SMC91x ETHERNET DRIVER
2682P: Nicolas Pitre
2683M: nico@cam.org
2684S: Maintained
2685
Daniel Drake8f0f8502006-07-18 22:00:25 +01002686SOFTMAC LAYER (IEEE 802.11)
2687P: Johannes Berg
2688M: johannes@sipsolutions.net
2689P: Joe Jezak
2690M: josejx@gentoo.org
2691P: Daniel Drake
2692M: dsd@gentoo.org
2693W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002694L: netdev@vger.kernel.org
2695S: Maintained
2696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697SOFTWARE RAID (Multiple Disks) SUPPORT
2698P: Ingo Molnar
2699M: mingo@redhat.com
2700P: Neil Brown
2701M: neilb@cse.unsw.edu.au
2702L: linux-raid@vger.kernel.org
2703S: Maintained
2704
2705SOFTWARE SUSPEND:
2706P: Pavel Machek
2707M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002708L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709S: Maintained
2710
2711SONIC NETWORK DRIVER
2712P: Thomas Bogendoerfer
2713M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002714L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715S: Maintained
2716
2717SONY VAIO CONTROL DEVICE DRIVER
2718P: Stelian Pop
2719M: stelian@popies.net
2720W: http://popies.net/sonypi/
2721S: Maintained
2722
2723SOUND
2724P: Jaroslav Kysela
2725M: perex@suse.cz
2726L: alsa-devel@alsa-project.org
2727S: Maintained
2728
Kumar Gala025c3982006-04-02 16:05:54 -05002729SPI SUBSYSTEM
2730P: David Brownell
2731M: dbrownell@users.sourceforge.net
2732L: spi-devel-general@lists.sourceforge.net
2733S: Maintained
2734
Steven Rostedt855f46a2006-08-05 12:14:50 -07002735STABLE BRANCH:
2736P: Greg Kroah-Hartman
2737M: greg@kroah.com
2738P: Chris Wright
2739M: chrisw@sous-sol.org
2740L: stable@kernel.org
2741S: Maintained
2742
Kylene Hall1c72d462005-05-01 08:59:13 -07002743TPM DEVICE DRIVER
2744P: Kylene Hall
2745M: kjhall@us.ibm.com
2746W: http://tpmdd.sourceforge.net
2747L: tpmdd-devel@lists.sourceforge.net
2748S: Maintained
2749
Mark Gross1a80ba82005-10-30 15:02:55 -08002750Telecom Clock Driver for MCPL0010
2751P: Mark Gross
2752M: mark.gross@intel.com
2753S: Supported
2754
Chris Zankel48b415c2005-06-23 22:01:07 -07002755TENSILICA XTENSA PORT (xtensa):
2756P: Chris Zankel
2757M: chris@zankel.net
2758S: Maintained
2759
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760UltraSPARC (sparc64):
2761P: David S. Miller
2762M: davem@davemloft.net
2763P: Eddie C. Dost
Eddie C. Dost90cdba62005-07-06 15:37:58 -07002764M: ecd@brainaid.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765P: Jakub Jelinek
2766M: jj@sunsite.ms.mff.cuni.cz
2767P: Anton Blanchard
2768M: anton@samba.org
2769L: sparclinux@vger.kernel.org
2770L: ultralinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002771T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772S: Maintained
2773
2774SHARP LH SUPPORT (LH7952X & LH7A40X)
2775P: Marc Singer
2776M: elf@buici.com
2777W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002778L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779S: Maintained
2780
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002781SHPC HOTPLUG DRIVER
2782P: Kristen Carlson Accardi
2783M: kristen.c.accardi@intel.com
2784L: pcihpd-discuss@lists.sourceforge.net
2785S: Maintained
2786
Pierre Ossmand129bce2006-03-24 03:18:17 -08002787SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2788P: Pierre Ossman
2789M: drzeus-sdhci@drzeus.cx
2790L: sdhci-devel@list.drzeus.cx
2791W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2792S: Maintained
2793
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002794SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2795P: Stephen Hemminger
2796M: shemminger@osdl.org
2797L: netdev@vger.kernel.org
2798S: Maintained
2799
Chris Boot1a87d942006-07-10 04:45:34 -07002800SOEKRIS NET48XX LED SUPPORT
2801P: Chris Boot
2802M: bootc@bootc.net
2803S: Maintained
2804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805SPARC (sparc32):
2806P: William L. Irwin
2807M: wli@holomorphy.com
2808L: sparclinux@vger.kernel.org
2809S: Maintained
2810
2811SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2812P: Roger Wolff
2813M: R.E.Wolff@BitWizard.nl
2814L: linux-kernel@vger.kernel.org ?
2815S: Supported
2816
Jim Lewis2752e402006-09-29 02:01:19 -07002817SPIDERNET NETWORK DRIVER for CELL
2818P: Jim Lewis
2819M: jim@jklewis.com
2820L: netdev@vger.kernel.org
2821S: Supported
2822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823SRM (Alpha) environment access
2824P: Jan-Benedict Glaw
2825M: jbglaw@lug-owl.de
2826L: linux-kernel@vger.kernel.org
2827S: Maintained
2828
2829STARFIRE/DURALAN NETWORK DRIVER
2830P: Ion Badulescu
2831M: ionut@cs.columbia.edu
2832S: Maintained
2833
2834STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2835W: http://mosquitonet.Stanford.EDU/strip.html
2836S: Unsupported ?
2837
2838STRADIS MPEG-2 DECODER DRIVER
2839P: Nathan Laredo
2840M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841W: http://www.stradis.com/
2842S: Maintained
2843
2844SUPERH (sh)
2845P: Paul Mundt
2846M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002847L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849S: Maintained
2850
2851SUPERH64 (sh64)
2852P: Paul Mundt
2853M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854L: linuxsh-shmedia-dev@lists.sourceforge.net
2855W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856S: Maintained
2857
2858SUN3/3X
2859P: Sam Creasey
2860M: sammy@sammy.net
2861L: sun3-list@redhat.com
2862W: http://sammy.net/sun3/
2863S: Maintained
2864
2865SVGA HANDLING
2866P: Martin Mares
2867M: mj@ucw.cz
2868L: linux-video@atrey.karlin.mff.cuni.cz
2869S: Maintained
2870
2871SYSV FILESYSTEM
2872P: Christoph Hellwig
2873M: hch@infradead.org
2874S: Maintained
2875
Stephen Hemminger781b4562006-07-10 20:25:29 -07002876TC CLASSIFIER
2877P: Jamal Hadi Salim
2878M: hadi@cyberus.ca
2879L: netdev@vger.kernel.org
2880S: Maintained
2881
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002882TCP LOW PRIORITY MODULE
2883P: Wong Hoi Sing, Edison
2884M: hswong3i@gmail.com
2885P: Hung Hing Lun, Mike
2886M: hlhung3i@gmail.com
2887W: http://tcp-lp-mod.sourceforge.net/
2888S: Maintained
2889
Alex Dubov4020f2d2006-10-04 02:15:37 -07002890TI FLASH MEDIA INTERFACE DRIVER
2891P: Alex Dubov
2892M: oakad@yahoo.com
2893S: Maintained
2894
Michael Buesch844dd052006-06-26 00:24:59 -07002895TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2896P: Deepak Saxena
2897M: dsaxena@plexity.net
2898S: Maintained
2899
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002900TASKSTATS STATISTICS INTERFACE
2901P: Shailabh Nagar
2902M: nagar@watson.ibm.com
2903L: linux-kernel@vger.kernel.org
2904S: Maintained
2905
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906TI PARALLEL LINK CABLE DRIVER
2907P: Romain Lievin
2908M: roms@lpg.ticalc.org
2909S: Maintained
2910
Per Lidene86eaa32006-01-12 16:45:18 +01002911TIPC NETWORK LAYER
2912P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002913M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002914P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002915M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002916P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002917M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002918L: tipc-discussion@lists.sourceforge.net
2919W: http://tipc.sourceforge.net/
2920W: http://tipc.cslab.ericsson.net/
2921T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
2922S: Maintained
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924TLAN NETWORK DRIVER
2925P: Samuel Chessman
2926M: chessman@tux.org
2927L: tlan-devel@lists.sourceforge.net
2928W: http://sourceforge.net/projects/tlan/
2929S: Maintained
2930
2931TOKEN-RING NETWORK DRIVER
2932P: Mike Phillips
2933M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002934L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935L: linux-tr@linuxtr.net
2936W: http://www.linuxtr.net
2937S: Maintained
2938
2939TOSHIBA ACPI EXTRAS DRIVER
2940P: John Belmonte
2941M: toshiba_acpi@memebeam.org
2942W: http://memebeam.org/toys/ToshibaAcpiDriver
2943S: Maintained
2944
2945TOSHIBA SMM DRIVER
2946P: Jonathan Buzzard
2947M: jonathan@buzzard.org.uk
2948L: tlinux-users@tce.toshiba-dme.co.jp
2949W: http://www.buzzard.org.uk/toshiba/
2950S: Maintained
2951
2952TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
2953P: Muli Ben-Yehuda
2954M: mulix@mulix.org
2955L: linux-kernel@vger.kernel.org
2956S: Maintained
2957
2958TRIVIAL PATCHES
Adrian Bunk6dfca872005-11-06 21:31:01 +01002959P: Adrian Bunk
2960M: trivial@kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961L: linux-kernel@vger.kernel.org
Adrian Bunk6dfca872005-11-06 21:31:01 +01002962W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
Josh Boyer1adc1232005-11-23 15:44:15 -08002963T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964S: Maintained
2965
2966TMS380 TOKEN-RING NETWORK DRIVER
2967P: Adam Fritzler
2968M: mid@auk.cx
2969L: linux-tr@linuxtr.net
2970W: http://www.auk.cx/tms380tr/
2971S: Maintained
2972
2973TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07002974P: Valerie Henson
2975M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976L: tulip-users@lists.sourceforge.net
2977W: http://sourceforge.net/projects/tulip/
2978S: Maintained
2979
2980TUN/TAP driver
2981P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08002982M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983L: vtun@office.satix.net
2984W: http://vtun.sourceforge.net/tun
2985S: Maintained
2986
2987U14-34F SCSI DRIVER
2988P: Dario Ballabio
2989M: ballabio_dario@emc.com
2990L: linux-scsi@vger.kernel.org
2991S: Maintained
2992
2993UDF FILESYSTEM
2994P: Ben Fennema
2995M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996W: http://linux-udf.sourceforge.net
2997S: Maintained
2998
2999UNIFORM CDROM DRIVER
3000P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003001M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002L: linux-kernel@vger.kernel.org
3003W: http://www.kernel.dk
3004S: Maintained
3005
3006USB ACM DRIVER
3007P: Oliver Neukum
3008M: oliver@neukum.name
3009L: linux-usb-users@lists.sourceforge.net
3010L: linux-usb-devel@lists.sourceforge.net
3011S: Maintained
3012
3013USB BLOCK DRIVER (UB ub)
3014P: Pete Zaitcev
3015M: zaitcev@redhat.com
3016L: linux-kernel@vger.kernel.org
3017L: linux-usb-devel@lists.sourceforge.net
3018S: Supported
3019
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020USB CDC ETHERNET DRIVER
3021P: Greg Kroah-Hartman
3022M: greg@kroah.com
3023L: linux-usb-users@lists.sourceforge.net
3024L: linux-usb-devel@lists.sourceforge.net
3025S: Maintained
3026W: http://www.kroah.com/linux-usb/
3027
3028USB EHCI DRIVER
3029P: David Brownell
3030M: dbrownell@users.sourceforge.net
3031L: linux-usb-devel@lists.sourceforge.net
3032S: Maintained
3033
Luca Risolia7ce08c92006-01-11 02:06:59 +00003034USB ET61X[12]51 DRIVER
3035P: Luca Risolia
3036M: luca.risolia@studio.unibo.it
3037L: linux-usb-devel@lists.sourceforge.net
3038L: video4linux-list@redhat.com
3039W: http://www.linux-projects.org
3040S: Maintained
3041
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042USB HID/HIDBP DRIVERS
3043P: Vojtech Pavlik
3044M: vojtech@suse.cz
3045L: linux-usb-users@lists.sourceforge.net
3046L: linux-usb-devel@lists.sourceforge.net
3047S: Maintained
3048
3049USB HUB DRIVER
3050P: Johannes Erdfelt
3051M: johannes@erdfelt.com
3052L: linux-usb-users@lists.sourceforge.net
3053L: linux-usb-devel@lists.sourceforge.net
3054S: Maintained
3055
Olav Kongas959eea22005-11-03 17:38:14 +02003056USB ISP116X DRIVER
3057P: Olav Kongas
3058M: ok@artecdesign.ee
3059L: linux-usb-devel@lists.sourceforge.net
3060S: Maintained
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062USB KAWASAKI LSI DRIVER
3063P: Oliver Neukum
3064M: oliver@neukum.name
3065L: linux-usb-users@lists.sourceforge.net
3066L: linux-usb-devel@lists.sourceforge.net
3067S: Maintained
3068
3069USB MASS STORAGE DRIVER
3070P: Matthew Dharm
3071M: mdharm-usb@one-eyed-alien.net
3072L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003073L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074S: Maintained
3075W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3076
3077USB OHCI DRIVER
3078P: Roman Weissgaerber
3079M: weissg@vienna.at
3080L: linux-usb-users@lists.sourceforge.net
3081L: linux-usb-devel@lists.sourceforge.net
3082S: Maintained
3083
Matthias Urlichsba460e42005-07-14 00:33:47 -07003084USB OPTION-CARD DRIVER
3085P: Matthias Urlichs
3086M: smurf@smurf.noris.de
3087L: linux-usb-devel@lists.sourceforge.net
3088S: Maintained
3089
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090USB OV511 DRIVER
3091P: Mark McClelland
3092M: mmcclell@bigfoot.com
3093L: linux-usb-users@lists.sourceforge.net
3094L: linux-usb-devel@lists.sourceforge.net
3095W: http://alpha.dyndns.org/ov511/
3096S: Maintained
3097
3098USB PEGASUS DRIVER
3099P: Petko Manolov
3100M: petkan@users.sourceforge.net
3101L: linux-usb-users@lists.sourceforge.net
3102L: linux-usb-devel@lists.sourceforge.net
3103W: http://pegasus2.sourceforge.net/
3104S: Maintained
3105
3106USB PRINTER DRIVER
3107P: Vojtech Pavlik
3108M: vojtech@suse.cz
3109L: linux-usb-users@lists.sourceforge.net
3110L: linux-usb-devel@lists.sourceforge.net
3111S: Maintained
3112
3113USB RTL8150 DRIVER
3114P: Petko Manolov
3115M: petkan@users.sourceforge.net
3116L: linux-usb-users@lists.sourceforge.net
3117L: linux-usb-devel@lists.sourceforge.net
3118W: http://pegasus2.sourceforge.net/
3119S: Maintained
3120
3121USB SE401 DRIVER
3122P: Jeroen Vreeken
3123M: pe1rxq@amsat.org
3124L: linux-usb-users@lists.sourceforge.net
3125L: linux-usb-devel@lists.sourceforge.net
3126W: http://www.chello.nl/~j.vreeken/se401/
3127S: Maintained
3128
3129USB SERIAL CYBERJACK DRIVER
3130P: Matthias Bruestle and Harald Welte
3131M: support@reiner-sct.com
3132W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3133S: Maintained
3134
3135USB SERIAL DIGI ACCELEPORT DRIVER
3136P: Peter Berger and Al Borchers
3137M: pberger@brimson.com
3138M: alborchers@steinerpoint.com
3139L: linux-usb-users@lists.sourceforge.net
3140L: linux-usb-devel@lists.sourceforge.net
3141S: Maintained
3142
3143USB SERIAL DRIVER
3144P: Greg Kroah-Hartman
3145M: gregkh@suse.de
3146L: linux-usb-users@lists.sourceforge.net
3147L: linux-usb-devel@lists.sourceforge.net
3148S: Supported
3149
3150USB SERIAL BELKIN F5U103 DRIVER
3151P: William Greathouse
3152M: wgreathouse@smva.com
3153L: linux-usb-users@lists.sourceforge.net
3154L: linux-usb-devel@lists.sourceforge.net
3155S: Maintained
3156
3157USB SERIAL CYPRESS M8 DRIVER
3158P: Lonnie Mendez
3159M: dignome@gmail.com
3160L: linux-usb-users@lists.sourceforge.net
3161L: linux-usb-devel@lists.sourceforge.net
3162S: Maintained
3163W: http://geocities.com/i0xox0i
3164W: http://firstlight.net/cvs
3165
3166USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3167L: linux-usb-users@lists.sourceforge.net
3168L: linux-usb-devel@lists.sourceforge.net
3169S: Maintained
3170
3171USB AUERSWALD DRIVER
3172P: Wolfgang Muees
3173M: wolfgang@iksw-muees.de
3174L: linux-usb-users@lists.sourceforge.net
3175L: linux-usb-devel@lists.sourceforge.net
3176S: Maintained
3177
3178USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3179P: Gary Brubaker
3180M: xavyer@ix.netcom.com
3181L: linux-usb-users@lists.sourceforge.net
3182L: linux-usb-devel@lists.sourceforge.net
3183S: Maintained
3184
3185USB SERIAL KEYSPAN DRIVER
3186P: Greg Kroah-Hartman
3187M: greg@kroah.com
3188L: linux-usb-users@lists.sourceforge.net
3189L: linux-usb-devel@lists.sourceforge.net
3190W: http://www.kroah.com/linux/
3191S: Maintained
3192
3193USB SERIAL WHITEHEAT DRIVER
3194P: Stuart MacDonald
3195M: stuartm@connecttech.com
3196L: linux-usb-users@lists.sourceforge.net
3197L: linux-usb-devel@lists.sourceforge.net
3198W: http://www.connecttech.com
3199S: Supported
3200
3201USB SN9C10x DRIVER
3202P: Luca Risolia
3203M: luca.risolia@studio.unibo.it
3204L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003205L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206W: http://www.linux-projects.org
3207S: Maintained
3208
3209USB SUBSYSTEM
3210P: Greg Kroah-Hartman
3211M: gregkh@suse.de
3212L: linux-usb-users@lists.sourceforge.net
3213L: linux-usb-devel@lists.sourceforge.net
3214W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003215T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216S: Supported
3217
3218USB UHCI DRIVER
3219P: Alan Stern
3220M: stern@rowland.harvard.edu
3221L: linux-usb-users@lists.sourceforge.net
3222L: linux-usb-devel@lists.sourceforge.net
3223S: Maintained
3224
3225USB "USBNET" DRIVER
3226P: David Brownell
3227M: dbrownell@users.sourceforge.net
3228L: linux-usb-devel@lists.sourceforge.net
3229S: Maintained
3230
3231USB W996[87]CF DRIVER
3232P: Luca Risolia
3233M: luca.risolia@studio.unibo.it
3234L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003235L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236W: http://www.linux-projects.org
3237S: Maintained
3238
Luca Risolia60f78052006-02-06 16:29:35 +00003239USB ZC0301 DRIVER
3240P: Luca Risolia
3241M: luca.risolia@studio.unibo.it
3242L: linux-usb-devel@lists.sourceforge.net
3243L: video4linux-list@redhat.com
3244W: http://www.linux-projects.org
3245S: Maintained
3246
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247USB ZD1201 DRIVER
3248P: Jeroen Vreeken
3249M: pe1rxq@amsat.org
3250L: linux-usb-users@lists.sourceforge.net
3251L: linux-usb-devel@lists.sourceforge.net
3252W: http://linux-lc100020.sourceforge.net
3253S: Maintained
3254
3255USER-MODE LINUX
3256P: Jeff Dike
3257M: jdike@karaya.com
3258L: user-mode-linux-devel@lists.sourceforge.net
3259L: user-mode-linux-user@lists.sourceforge.net
3260W: http://user-mode-linux.sourceforge.net
3261S: Maintained
3262
3263FAT/VFAT/MSDOS FILESYSTEM:
3264P: OGAWA Hirofumi
3265M: hirofumi@mail.parknet.co.jp
3266L: linux-kernel@vger.kernel.org
3267S: Maintained
3268
3269VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3270P: Jeff Garzik
3271S: Odd fixes
3272
3273VIA RHINE NETWORK DRIVER
3274P: Roger Luethi
3275M: rl@hellgate.ch
3276S: Maintained
3277
Jean Delvare32c0a522005-09-22 21:47:58 +02003278VIAPRO SMBUS DRIVER
3279P: Jean Delvare
3280M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003281L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003282S: Maintained
3283
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284UCLINUX (AND M68KNOMMU)
3285P: Greg Ungerer
3286M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003288L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289S: Maintained
3290
3291UCLINUX FOR NEC V850
3292P: Miles Bader
3293M: uclinux-v850@lsi.nec.co.jp
3294W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3295W: http://www.ee.nec.de/uclinux/
3296S: Supported
3297
3298UCLINUX FOR RENESAS H8/300
3299P: Yoshinori Sato
3300M: ysato@users.sourceforge.jp
3301W: http://uclinux-h8.sourceforge.jp/
3302S: Supported
3303
3304USB DIAMOND RIO500 DRIVER
3305P: Cesar Miquel
3306M: miquel@df.uba.ar
3307L: rio500-users@lists.sourceforge.net
3308W: http://rio500.sourceforge.net
3309S: Maintained
3310
3311VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003312P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003313M: mchehab@infradead.org
3314M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003316W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003317T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003318S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
Juerg Haefligerab413192006-09-24 20:54:04 +02003320VT1211 HARDWARE MONITOR DRIVER
3321P: Juerg Haefliger
3322M: juergh@gmail.com
3323L: lm-sensors@lm-sensors.org
3324S: Maintained
3325
Roger Lucas1de9e372005-11-26 20:20:05 +01003326VT8231 HARDWARE MONITOR DRIVER
3327P: Roger Lucas
3328M: roger@planbit.co.uk
3329L: lm-sensors@lm-sensors.org
3330S: Maintained
3331
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332W1 DALLAS'S 1-WIRE BUS
3333P: Evgeniy Polyakov
3334M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335S: Maintained
3336
Charles Spirakis13927072006-07-05 18:05:15 +02003337W83791D HARDWARE MONITORING DRIVER
3338P: Charles Spirakis
3339M: bezaur@gmail.com
3340L: lm-sensors@lm-sensors.org
3341S: Maintained
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343W83L51xD SD/MMC CARD INTERFACE DRIVER
3344P: Pierre Ossman
3345M: drzeus-wbsd@drzeus.cx
3346L: wbsd-devel@list.drzeus.cx
3347W: http://projects.drzeus.cx/wbsd
3348S: Maintained
3349
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003350WATCHDOG DEVICE DRIVERS
3351P: Wim Van Sebroeck
3352M: wim@iguana.be
3353T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3354S: Maintained
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3357P: Jean Tourrilhes
3358M: jt@hpl.hp.com
3359W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3360S: Maintained
3361
3362WD7000 SCSI DRIVER
3363P: Miroslav Zagorac
3364M: zaga@fly.cc.fer.hr
3365L: linux-scsi@vger.kernel.org
3366S: Maintained
3367
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003368WISTRON LAPTOP BUTTON DRIVER
3369P: Miloslav Trmac
3370M: mitr@volny.cz
3371S: Maintained
3372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373WL3501 WIRELESS PCMCIA CARD DRIVER
3374P: Arnaldo Carvalho de Melo
3375M: acme@conectiva.com.br
3376W: http://advogato.org/person/acme
3377S: Maintained
3378
3379X.25 NETWORK LAYER
3380P: Henner Eisen
3381M: eis@baty.hanse.de
3382L: linux-x25@vger.kernel.org
3383S: Maintained
3384
3385XFS FILESYSTEM
3386P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003387P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003389L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003391T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392S: Supported
3393
3394X86 3-LEVEL PAGING (PAE) SUPPORT
3395P: Ingo Molnar
3396M: mingo@redhat.com
3397S: Maintained
3398
3399X86-64 port
3400P: Andi Kleen
3401M: ak@suse.de
3402L: discuss@x86-64.org
3403W: http://www.x86-64.org
3404S: Maintained
3405
3406YAM DRIVER FOR AX.25
3407P: Jean-Paul Roubelat
3408M: jpr@f6fbb.org
3409L: linux-hams@vger.kernel.org
3410S: Maintained
3411
Henkaf64a5e2005-10-12 15:02:56 +02003412YEALINK PHONE DRIVER
3413P: Henk Vergonet
3414M: Henk.Vergonet@gmail.com
3415L: usbb2k-api-dev@nongnu.org
3416S: Maintained
3417
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418Z8530 DRIVER FOR AX.25
3419P: Joerg Reuter
3420M: jreuter@yaina.de
3421W: http://yaina.de/jreuter/
3422W: http://www.qsl.net/dl1bke/
3423L: linux-hams@vger.kernel.org
3424S: Maintained
3425
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003426ZD1211RW WIRELESS DRIVER
3427P: Daniel Drake
3428M: dsd@gentoo.org
3429P: Ulrich Kunitz
3430M: kune@deine-taler.de
3431W: http://zd1211.ath.cx/wiki/DriverRewrite
3432L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3433S: Maintained
3434
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435ZF MACHZ WATCHDOG
3436P: Fernando Fuganti
3437M: fuganti@netbank.com.br
3438W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3439S: Maintained
3440
3441ZR36067 VIDEO FOR LINUX DRIVER
3442P: Ronald Bultje
3443M: rbultje@ronald.bitfreak.net
3444L: mjpeg-users@lists.sourceforge.net
3445W: http://mjpeg.sourceforge.net/driver-zoran/
3446S: Maintained
3447
3448ZR36120 VIDEO FOR LINUX DRIVER
3449P: Pauline Middelink
3450M: middelin@polyware.nl
3451W: http://www.polyware.nl/~middelin/En/hobbies.html
3452W: http://www.polyware.nl/~middelin/hobbies.html
3453S: Maintained
3454
3455THE REST
3456P: Linus Torvalds
3457S: Buried alive in reporters