blob: 846e77a787105a6f16e8332c0a30e879375e41eb [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
Jim Cromiece00f852006-11-30 04:49:44 +0100158P: 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
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800168
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
Jim Cromiece00f852006-11-30 04:49:44 +0100293P: Jordan Crouse
294M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800295L: 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
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100356ARM/HP JORNADA 7XX MACHINE SUPPORT
357P: Kristoffer Ericson
358M: kristoffer_e1@hotmail.com
359W: www.jlime.com
360S: Maintained
361
Dirk Opfer8459c152005-11-06 14:27:52 +0000362ARM/TOSA MACHINE SUPPORT
363P: Dirk Opfer
364M: dirk@opfer-online.de
365S: Maintained
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367ARM/PLEB SUPPORT
368P: Peter Chubb
369M: pleb@gelato.unsw.edu.au
370W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
371S: Maintained
372
373ARM/PT DIGITAL BOARD PORT
374P: Stefan Eletzhofer
375M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700376L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377W: http://www.arm.linux.org.uk/
378S: Maintained
379
380ARM/SHARK MACHINE SUPPORT
381P: Alexander Schulz
382M: alex@shark-linux.de
383W: http://www.shark-linux.de/shark.html
384S: Maintained
385
386ARM/STRONGARM110 PORT
387P: Russell King
388M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700389L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390W: http://www.arm.linux.org.uk/
391S: Maintained
392
393ARM/S3C2410 ARM ARCHITECTURE
394P: Ben Dooks
395M: ben-s3c2410@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700396L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397W: http://www.fluff.org/ben/linux/
398S: Maintained
399
400ARM/S3C2440 ARM ARCHITECTURE
401P: Ben Dooks
402M: ben-s3c2440@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700403L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404W: http://www.fluff.org/ben/linux/
405S: Maintained
406
407ARPD SUPPORT
408P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700409L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410S: Maintained
411
412ASUS ACPI EXTRAS DRIVER
413P: Karol Kozimor
414M: sziwan@users.sourceforge.net
415P: Julien Lerouge
416M: julien.lerouge@free.fr
417L: acpi4asus-user@lists.sourceforge.net
418W: http://sourceforge.net/projects/acpi4asus
419W: http://julien.lerouge.free.fr
420S: Maintained
421
422ATA OVER ETHERNET DRIVER
423P: Ed L. Cashin
424M: ecashin@coraid.com
425W: http://www.coraid.com/support/linux
426S: Supported
427
428ATM
429P: Chas Williams
430M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700431L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432W: http://linux-atm.sourceforge.net
433S: Maintained
434
435ATMEL WIRELESS DRIVER
436P: Simon Kelley
437M: simon@thekelleys.org.uk
438W: http://www.thekelleys.org.uk/atmel
439W: http://atmelwlandriver.sourceforge.net/
440S: Maintained
441
Chris Wrighta92b7b82005-07-07 18:12:23 -0700442AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100443P: David Woodhouse
444M: dwmw2@infradead.org
445L: linux-audit@redhat.com
446W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800447T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700448S: Maintained
449
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700450AVR32 ARCHITECTURE
451P: Atmel AVR32 Support Team
452M: avr32@atmel.com
453P: Haavard Skinnemoen
454M: hskinnemoen@atmel.com
455W: http://www.atmel.com/products/AVR32/
456W: http://avr32linux.org/
457W: http://avrfreaks.net/
458S: Supported
459
460AVR32/AT32AP MACHINE SUPPORT
461P: Atmel AVR32 Support Team
462M: avr32@atmel.com
463P: Haavard Skinnemoen
464M: hskinnemoen@atmel.com
465S: Supported
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467AX.25 NETWORK LAYER
468P: Ralf Baechle
469M: ralf@linux-mips.org
470L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200471W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472S: Maintained
473
474BAYCOM/HDLCDRV DRIVERS FOR AX.25
475P: Thomas Sailer
476M: t.sailer@alumni.ethz.ch
477L: linux-hams@vger.kernel.org
478W: http://www.baycom.org/~tom/ham/ham.html
479S: Maintained
480
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200481BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
482P: Larry Finger
483M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200484P: Stefano Brivio
485M: st3@riseup.net
486W: http://bcm43xx.berlios.de/
487S: Maintained
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489BEFS FILE SYSTEM
490P: Sergey S. Kostyliov
491M: rathamahata@php4.ru
492L: linux-kernel@vger.kernel.org
493S: Maintained
494
495BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
496P: Kenji Hollis
497W: http://ftp.bitgate.com/pcwd/
498S: Maintained
499
500BFS FILE SYSTEM
501P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800502M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503L: linux-kernel@vger.kernel.org
504S: Maintained
505
506BLOCK LAYER
507P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200508M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800510T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511S: Maintained
512
513BLUETOOTH SUBSYSTEM
514P: Marcel Holtmann
515M: marcel@holtmann.org
516P: Maxim Krasnyansky
517M: maxk@qualcomm.com
518L: bluez-devel@lists.sf.net
519W: http://bluez.sf.net
520W: http://www.bluez.org
521W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800522T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523S: Maintained
524
525BLUETOOTH RFCOMM LAYER
526P: Marcel Holtmann
527M: marcel@holtmann.org
528P: Maxim Krasnyansky
529M: maxk@qualcomm.com
530S: Maintained
531
532BLUETOOTH BNEP LAYER
533P: Marcel Holtmann
534M: marcel@holtmann.org
535P: Maxim Krasnyansky
536M: maxk@qualcomm.com
537S: Maintained
538
539BLUETOOTH CMTP LAYER
540P: Marcel Holtmann
541M: marcel@holtmann.org
542S: Maintained
543
544BLUETOOTH HIDP LAYER
545P: Marcel Holtmann
546M: marcel@holtmann.org
547S: Maintained
548
549BLUETOOTH HCI UART DRIVER
550P: Marcel Holtmann
551M: marcel@holtmann.org
552P: Maxim Krasnyansky
553M: maxk@qualcomm.com
554S: Maintained
555
556BLUETOOTH HCI USB DRIVER
557P: Marcel Holtmann
558M: marcel@holtmann.org
559P: Maxim Krasnyansky
560M: maxk@qualcomm.com
561S: Maintained
562
563BLUETOOTH HCI BCM203X DRIVER
564P: Marcel Holtmann
565M: marcel@holtmann.org
566S: Maintained
567
568BLUETOOTH HCI BPA10X DRIVER
569P: Marcel Holtmann
570M: marcel@holtmann.org
571S: Maintained
572
573BLUETOOTH HCI BFUSB DRIVER
574P: Marcel Holtmann
575M: marcel@holtmann.org
576S: Maintained
577
578BLUETOOTH HCI DTL1 DRIVER
579P: Marcel Holtmann
580M: marcel@holtmann.org
581S: Maintained
582
583BLUETOOTH HCI BLUECARD DRIVER
584P: Marcel Holtmann
585M: marcel@holtmann.org
586S: Maintained
587
588BLUETOOTH HCI BT3C DRIVER
589P: Marcel Holtmann
590M: marcel@holtmann.org
591S: Maintained
592
593BLUETOOTH HCI BTUART DRIVER
594P: Marcel Holtmann
595M: marcel@holtmann.org
596S: Maintained
597
598BLUETOOTH HCI VHCI DRIVER
599P: Maxim Krasnyansky
600M: maxk@qualcomm.com
601S: Maintained
602
603BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100604P: Chad Tindel
605M: ctindel@users.sourceforge.net
606P: Jay Vosburgh
607M: fubar@us.ibm.com
608L: bonding-devel@lists.sourceforge.net
609W: http://sourceforge.net/projects/bonding/
610S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000612BROADBAND PROCESSOR ARCHITECTURE
613P: Arnd Bergmann
614M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100615L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400616W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000617S: Supported
618
Gary Zambrano39105892006-06-22 17:26:20 -0700619BROADCOM B44 10/100 ETHERNET DRIVER
620P: Gary Zambrano
621M: zambrano@broadcom.com
622L: netdev@vger.kernel.org
623S: Supported
624
Michael Chan948c51e2006-06-04 02:51:39 -0700625BROADCOM BNX2 GIGABIT ETHERNET DRIVER
626P: Michael Chan
627M: mchan@broadcom.com
628L: netdev@vger.kernel.org
629S: Supported
630
631BROADCOM TG3 GIGABIT ETHERNET DRIVER
632P: Michael Chan
633M: mchan@broadcom.com
634L: netdev@vger.kernel.org
635S: Supported
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700638P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200639M: mchehab@infradead.org
640M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700642W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200643T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700644S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200646CALGARY x86-64 IOMMU
647P: Muli Ben-Yehuda
648M: muli@il.ibm.com
649P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200650M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200651L: linux-kernel@vger.kernel.org
652L: discuss@x86-64.org
653S: Maintained
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655COMMON INTERNET FILE SYSTEM (CIFS)
656P: Steve French
657M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100658L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659L: samba-technical@lists.samba.org
660W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800661T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662S: Supported
663
Joel Becker7063fbf2005-12-15 14:29:43 -0800664CONFIGFS
665P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800666M: joel.becker@oracle.com
667L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800668S: Supported
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670CIRRUS LOGIC GENERIC FBDEV DRIVER
671P: Jeff Garzik
672M: jgarzik@pobox.com
673L: linux-fbdev-devel@lists.sourceforge.net
674S: Odd Fixes
675
676CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
677P: Cirrus Logic Corporation (kernel 2.2 driver)
678M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
679P: Nils Faerber (port to kernel 2.4)
680M: Nils Faerber <nils@kernelconcepts.de>
681S: Maintained
682
683CODA FILE SYSTEM
684P: Jan Harkes
685M: jaharkes@cs.cmu.edu
686M: coda@cs.cmu.edu
687L: codalist@coda.cs.cmu.edu
688W: http://www.coda.cs.cmu.edu/
689S: Maintained
690
691COMPACTPCI HOTPLUG CORE
692P: Scott Murray
693M: scottm@somanetworks.com
694M: scott@spiteful.org
695L: pcihpd-discuss@lists.sourceforge.net
696S: Supported
697
698COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
699P: Scott Murray
700M: scottm@somanetworks.com
701M: scott@spiteful.org
702L: pcihpd-discuss@lists.sourceforge.net
703S: Supported
704
705COMPACTPCI HOTPLUG GENERIC DRIVER
706P: Scott Murray
707M: scottm@somanetworks.com
708M: scott@spiteful.org
709L: pcihpd-discuss@lists.sourceforge.net
710S: Supported
711
712COMPUTONE INTELLIPORT MULTIPORT CARD
713P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700714M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700716S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718COSA/SRP SYNC SERIAL DRIVER
719P: Jan "Yenya" Kasprzak
720M: kas@fi.muni.cz
721W: http://www.fi.muni.cz/~kas/cosa/
722S: Maintained
723
724CPU FREQUENCY DRIVERS
725P: Dave Jones
726M: davej@codemonkey.org.uk
727L: cpufreq@lists.linux.org.uk
728W: http://www.codemonkey.org.uk/projects/cpufreq/
Josh Boyer1adc1232005-11-23 15:44:15 -0800729T: git kernel.org/pub/scm/linux/kernel/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730S: Maintained
731
732CPUID/MSR DRIVER
733P: H. Peter Anvin
734M: hpa@zytor.com
735S: Maintained
736
Paul Jacksoned90fb42005-09-27 21:45:37 -0700737CPUSETS
738P: Paul Jackson
739P: Simon Derr
740M: pj@sgi.com
741M: simon.derr@bull.net
742L: linux-kernel@vger.kernel.org
743W: http://www.bullopensource.org/cpuset/
744S: Supported
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100747W: http://sourceforge.net/projects/cramfs/
748S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750CRIS PORT
751P: Mikael Starvik
752M: starvik@axis.com
753L: dev-etrax@axis.com
754W: http://developer.axis.com
755S: Maintained
756
757CRYPTO API
758P: Herbert Xu
759M: herbert@gondor.apana.org.au
760P: David S. Miller
761M: davem@davemloft.net
762L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800763T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764S: Maintained
765
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100766CS5535 Audio ALSA driver
767P: Jaya Kumar
768M: jayakumar.alsa@gmail.com
769S: Maintained
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771CYBERPRO FB DRIVER
772P: Russell King
773M: rmk@arm.linux.org.uk
774W: http://www.arm.linux.org.uk/
775S: Maintained
776
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700777CYBLAFB FRAMEBUFFER DRIVER
778P: Knut Petersen
779M: Knut_Petersen@t-online.de
780L: linux-fbdev-devel@lists.sourceforge.net
781S: Maintained
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783CYCLADES 2X SYNC CARD DRIVER
784P: Arnaldo Carvalho de Melo
785M: acme@conectiva.com.br
786W: http://advogato.org/person/acme
787L: cycsyn-devel@bazar.conectiva.com.br
788S: Maintained
789
790CYCLADES ASYNC MUX DRIVER
791M: async@cyclades.com
792W: http://www.cyclades.com/
793S: Supported
794
795CYCLADES PC300 DRIVER
796M: pc300@cyclades.com
797W: http://www.cyclades.com/
798S: Supported
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800DAMA SLAVE for AX.25
801P: Joerg Reuter
802M: jreuter@yaina.de
803W: http://yaina.de/jreuter/
804W: http://www.qsl.net/dl1bke/
805L: linux-hams@vger.kernel.org
806S: Maintained
807
808DC395x SCSI driver
809P: Oliver Neukum
810M: oliver@neukum.name
811P: Ali Akcaagac
812M: aliakc@web.de
813P: Jamie Lenehan
814M: lenehan@twibble.org
815W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700816L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817L: http://lists.twibble.org/mailman/listinfo/dc395x/
818S: Maintained
819
820DC390/AM53C974 SCSI driver
821P: Kurt Garloff
822M: garloff@suse.de
823W: http://www.garloff.de/kurt/linux/dc390/
824P: Guennadi Liakhovetski
825M: g.liakhovetski@gmx.de
826S: Maintained
827
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700828DCCP PROTOCOL
829P: Arnaldo Carvalho de Melo
830M: acme@mandriva.com
831L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800832W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700833S: Maintained
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835DECnet NETWORK LAYER
836P: Patrick Caulfield
837M: patrick@tykepenguin.com
838W: http://linux-decnet.sourceforge.net
839L: linux-decnet-user@lists.sourceforge.net
840S: Maintained
841
842DEFXX FDDI NETWORK DRIVER
843P: Maciej W. Rozycki
844M: macro@linux-mips.org
845S: Maintained
846
847DELL LAPTOP SMM DRIVER
848P: Massimo Dal Zotto
849M: dz@debian.org
850W: http://www.debian.org/~dz/i8k/
851S: Maintained
852
Doug Warzecha90563ec2005-09-06 15:17:15 -0700853DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
854P: Doug Warzecha
855M: Douglas_Warzecha@dell.com
856S: Maintained
857
Pavel Machek5ddb88c2006-09-29 02:01:29 -0700858DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859P: Alasdair Kergon
860L: dm-devel@redhat.com
861W: http://sources.redhat.com/dm
862S: Maintained
863
864DEVICE NUMBER REGISTRY
865P: Torben Mathiasen
866M: device@lanana.org
867W: http://lanana.org/docs/device-list/index.html
868L: linux-kernel@vger.kernel.org
869S: Maintained
870
871DEVICE FILESYSTEM
872S: Obsolete
873
874DIGI INTL. EPCA DRIVER
875P: Digi International, Inc
876M: Eng.Linux@digi.com
877L: Eng.Linux@digi.com
878W: http://www.digi.com
879S: Orphaned
880
881DIGI RIGHTSWITCH NETWORK DRIVER
882P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -0700883L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884W: http://www.digi.com
885S: Orphaned
886
887DIRECTORY NOTIFICATION
888P: Stephen Rothwell
889M: sfr@canb.auug.org.au
890L: linux-kernel@vger.kernel.org
891S: Supported
892
893DISK GEOMETRY AND PARTITION HANDLING
894P: Andries Brouwer
895M: aeb@cwi.nl
896W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
897W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
898W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
899S: Maintained
900
901DISKQUOTA:
902P: Jan Kara
903M: jack@suse.cz
904L: linux-kernel@vger.kernel.org
905S: Maintained
906
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400907DISTRIBUTED LOCK MANAGER
908P: Patrick Caulfield
909M: pcaulfie@redhat.com
910P: David Teigland
911M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -0400912L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400913W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -0400914T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
915T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -0400916S: Supported
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
919P: Tobias Ringstrom
920M: tori@unhappy.mine.nu
921L: linux-kernel@vger.kernel.org
922S: Maintained
923
Martin Waitzba483d52005-06-17 13:20:59 -0700924DOCBOOK FOR DOCUMENTATION
925P: Martin Waitz
926M: tali@admingilde.org
Randy Dunlap0f40efb2006-07-03 00:24:15 -0700927P: Randy Dunlap
928M: rdunlap@xenotime.net
Martin Waitz061350e2006-01-09 20:53:53 -0800929T: git http://tali.admingilde.org/git/linux-docbook.git
Martin Waitzba483d52005-06-17 13:20:59 -0700930S: Maintained
931
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -0400932DOCKING STATION DRIVER
933P: Kristen Carlson Accardi
934M: kristen.c.accardi@intel.com
935L: linux-acpi@vger.kernel.org
936S: Maintained
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938DOUBLETALK DRIVER
939P: James R. Van Zandt
940M: jrv@vanzandt.mv.com
941L: blinux-list@redhat.com
942S: Maintained
943
944DRIVER CORE, KOBJECTS, AND SYSFS
945P: Greg Kroah-Hartman
946M: gregkh@suse.de
947L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800948T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949S: Supported
950
951DRM DRIVERS
952P: David Airlie
953M: airlied@linux.ie
954L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -0800955T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956S: Maintained
957
958DSCC4 DRIVER
959P: François Romieu
960M: romieu@cogenit.fr
961M: romieu@ensta.fr
962S: Maintained
963
964DVB SUBSYSTEM AND DRIVERS
965P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200966M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +0200968W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200969T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200970S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972EATA-DMA SCSI DRIVER
973P: Michael Neuffer
974L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
975S: Maintained
976
977EATA ISA/EISA/PCI SCSI DRIVER
978P: Dario Ballabio
979M: ballabio_dario@emc.com
980L: linux-scsi@vger.kernel.org
981S: Maintained
982
983EATA-PIO SCSI DRIVER
984P: Michael Neuffer
985M: mike@i-Connect.Net
986L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
987S: Maintained
988
989EBTABLES
990P: Bart De Schuymer
991M: bart.de.schuymer@pandora.be
992L: ebtables-user@lists.sourceforge.net
993L: ebtables-devel@lists.sourceforge.net
994W: http://ebtables.sourceforge.net/
995S: Maintained
996
Michael Halcrow237fead2006-10-04 02:16:22 -0700997ECRYPT FILE SYSTEM
998P: Mike Halcrow, Phillip Hellewell
999M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1000L: ecryptfs-devel@lists.sourceforge.net
1001W: http://ecryptfs.sourceforge.net/
1002S: Supported
1003
Alan Coxda9bb1d2006-01-18 17:44:13 -08001004EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001005P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001006M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001007L: bluesmoke-devel@lists.sourceforge.net
1008W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001009S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001010
1011EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001012P: Mark Gross
1013M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001014L: bluesmoke-devel@lists.sourceforge.net
1015W: bluesmoke.sourceforge.net
1016S: Maintained
1017
1018EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001019P: Doug Thompson
1020M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001021L: bluesmoke-devel@lists.sourceforge.net
1022W: bluesmoke.sourceforge.net
1023S: Maintained
1024
1025EDAC-R82600
1026P: Tim Small
1027M: tim@buttersideup.com
1028L: bluesmoke-devel@lists.sourceforge.net
1029W: bluesmoke.sourceforge.net
1030S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032EEPRO100 NETWORK DRIVER
1033P: Andrey V. Savochkin
1034M: saw@saw.sw.com.sg
1035S: Maintained
1036
Josh Triplett0bee8d22006-07-30 03:03:58 -07001037EFS FILESYSTEM
1038W: http://aeschi.ch.eu.org/efs/
1039S: Orphan
1040
Heiko J Schickfab97222006-09-22 15:22:22 -07001041EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1042P: Hoang-Nam Nguyen
1043M: hnguyen@de.ibm.com
1044P: Christoph Raisch
1045M: raisch@de.ibm.com
1046L: openib-general@openib.org
1047S: Supported
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049EMU10K1 SOUND DRIVER
1050P: James Courtier-Dutton
1051M: James@superbug.demon.co.uk
1052L: emu10k1-devel@lists.sourceforge.net
1053W: http://sourceforge.net/projects/emu10k1/
1054S: Maintained
1055
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001056EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001057P: James Smart
1058M: james.smart@emulex.com
1059L: linux-scsi@vger.kernel.org
1060W: http://sourceforge.net/projects/lpfcxxxx
1061S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063EPSON 1355 FRAMEBUFFER DRIVER
1064P: Christopher Hoover
1065M: ch@murgatroid.com, ch@hpl.hp.com
1066S: Maintained
1067
1068ETHEREXPRESS-16 NETWORK DRIVER
1069P: Philip Blundell
1070M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001071L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072S: Maintained
1073
1074ETHERNET BRIDGE
1075P: Stephen Hemminger
1076M: shemminger@osdl.org
1077L: bridge@osdl.org
1078W: http://bridge.sourceforge.net/
1079S: Maintained
1080
1081ETHERTEAM 16I DRIVER
1082P: Mika Kuoppala
1083M: miku@iki.fi
1084S: Maintained
1085
1086EXT2 FILE SYSTEM
1087L: ext2-devel@lists.sourceforge.net
1088S: Maintained
1089
1090EXT3 FILE SYSTEM
1091P: Stephen Tweedie, Andrew Morton
1092M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Theodore Tsoae0718f2006-05-20 15:00:13 -07001093L: ext2-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094S: Maintained
1095
Jean Delvaree53004e2006-01-09 23:26:14 +01001096F71805F HARDWARE MONITORING DRIVER
1097P: Jean Delvare
1098M: khali@linux-fr.org
1099L: lm-sensors@lm-sensors.org
1100S: Maintained
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102FARSYNC SYNCHRONOUS DRIVER
1103P: Kevin Curtis
1104M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105W: http://www.farsite.co.uk/
1106S: Supported
1107
1108FRAMEBUFFER LAYER
1109P: Antonino Daplas
1110M: adaplas@pol.net
1111L: linux-fbdev-devel@lists.sourceforge.net
1112W: http://linux-fbdev.sourceforge.net/
1113S: Maintained
1114
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001115FREESCALE SOC FS_ENET DRIVER
1116P: Pantelis Antoniou
1117M: pantelis.antoniou@gmail.com
1118P: Vitaly Bordug
1119M: vbordug@ru.mvista.com
1120L: linuxppc-embedded@ozlabs.org
1121L: netdev@vger.kernel.org
1122S: Maintained
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124FILE LOCKING (flock() and fcntl()/lockf())
1125P: Matthew Wilcox
1126M: matthew@wil.cx
1127L: linux-fsdevel@vger.kernel.org
1128S: Maintained
1129
1130FILESYSTEMS (VFS and infrastructure)
1131P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001132M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133S: Maintained
1134
1135FIRMWARE LOADER (request_firmware)
1136L: linux-kernel@vger.kernel.org
1137S: Orphan
1138
1139FPU EMULATOR
1140P: Bill Metzenthen
1141M: billm@suburbia.net
1142W: http://suburbia.net/~billm/floating-point/emulator/
1143S: Maintained
1144
1145FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1146P: Mike McLagan
1147M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001148L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149S: Maintained
1150
1151FREEVXFS FILESYSTEM
1152P: Christoph Hellwig
1153M: hch@infradead.org
1154W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1155S: Maintained
1156
1157FUJITSU FR-V PORT
1158P: David Howells
1159M: dhowells@redhat.com
1160S: Maintained
1161
1162FTAPE/QIC-117
1163L: linux-tape@vger.kernel.org
1164W: http://sourceforge.net/projects/ftape
1165S: Orphan
1166
Miklos Szeredi04578f12005-09-09 13:10:22 -07001167FUSE: FILESYSTEM IN USERSPACE
1168P: Miklos Szeredi
1169M: miklos@szeredi.hu
1170L: fuse-devel@lists.sourceforge.net
1171W: http://fuse.sourceforge.net/
1172S: Maintained
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1175P: Rik Faith
1176M: faith@cs.unc.edu
1177L: linux-scsi@vger.kernel.org
1178S: Odd fixes (e.g., new signatures)
1179
1180GDT SCSI DISK ARRAY CONTROLLER DRIVER
1181P: Achim Leubner
1182M: achim_leubner@adaptec.com
1183L: linux-scsi@vger.kernel.org
1184W: http://www.icp-vortex.com/
1185S: Supported
1186
1187GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1188P: Krzysztof Halasa
1189M: khc@pm.waw.pl
1190W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1191S: Maintained
1192
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001193GFS2 FILE SYSTEM
1194P: Steven Whitehouse
1195M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001196L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001197W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001198T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1199T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001200S: Supported
1201
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001202GIGASET ISDN DRIVERS
1203P: Hansjoerg Lipp
1204M: hjlipp@web.de
1205P: Tilman Schmidt
1206M: tilman@imap.cc
1207L: gigaset307x-common@lists.sourceforge.net
1208W: http://gigaset307x.sourceforge.net/
1209S: Maintained
1210
Jean Delvare5b543962005-08-15 19:51:02 +02001211HARDWARE MONITORING
1212P: Jean Delvare
1213M: khali@linux-fr.org
1214L: lm-sensors@lm-sensors.org
1215W: http://www.lm-sensors.nu/
1216S: Maintained
1217
Michael Buesch844dd052006-06-26 00:24:59 -07001218HARDWARE RANDOM NUMBER GENERATOR CORE
1219P: Michael Buesch
1220M: mb@bu3sch.de
1221S: Maintained
1222
Robert Love860e1d62005-08-31 23:57:59 -04001223HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1224P: Robert Love
1225M: rlove@rlove.org
1226M: linux-kernel@vger.kernel.org
1227W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1228S: Maintained
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230HARMONY SOUND DRIVER
1231P: Kyle McMartin
1232M: kyle@parisc-linux.org
1233W: http://www.parisc-linux.org/~kyle/harmony/
1234L: parisc-linux@lists.parisc-linux.org
1235S: Maintained
1236
1237HAYES ESP SERIAL DRIVER
1238P: Andrew J. Robinson
1239M: arobinso@nyx.net
1240L: linux-kernel@vger.kernel.org
1241W: http://www.nyx.net/~arobinso
1242S: Maintained
1243
1244HFS FILESYSTEM
1245P: Roman Zippel
1246M: zippel@linux-m68k.org
1247L: linux-kernel@vger.kernel.org
1248S: Maintained
1249
1250HGA FRAMEBUFFER DRIVER
1251P: Ferenc Bakonyi
1252M: fero@drama.obuda.kando.hu
1253L: linux-nvidia@lists.surfsouth.com
1254W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1255S: Maintained
1256
1257HIGH-SPEED SCC DRIVER FOR AX.25
1258P: Klaus Kudielka
1259M: klaus.kudielka@ieee.org
1260L: linux-hams@vger.kernel.org
1261W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1262S: Maintained
1263
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001264HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1265P: HighPoint Linux Team
1266M: linux@highpoint-tech.com
1267W: http://www.highpoint-tech.com
1268S: Supported
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270HIPPI
1271P: Jes Sorensen
1272M: jes@trained-monkey.org
1273L: linux-hippi@sunsite.dk
1274S: Maintained
1275
1276HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1277P: Chirag Kantharia
1278M: chirag.kantharia@hp.com
1279L: iss_storagedev@hp.com
1280S: Maintained
1281
1282HEWLETT-PACKARD SMART2 RAID DRIVER
1283P: Chirag Kantharia
1284M: chirag.kantharia@hp.com
1285L: iss_storagedev@hp.com
1286S: Maintained
1287
1288HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1289P: Mike Miller
1290M: mike.miller@hp.com
1291L: iss_storagedev@hp.com
1292S: Supported
1293
Jouni Malinenff1d2762005-05-12 22:54:16 -04001294HOST AP DRIVER
1295P: Jouni Malinen
1296M: jkmaline@cc.hut.fi
1297L: hostap@shmoo.com
1298W: http://hostap.epitest.fi/
1299S: Maintained
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1302P: Jaroslav Kysela
1303M: perex@suse.cz
1304S: Maintained
1305
Bob Piccob9b03322005-11-07 00:59:19 -08001306HPET: High Precision Event Timers driver (hpet.c)
1307P: Clemens Ladisch
1308M: clemens@ladisch.de
1309S: Maintained
1310
1311HPET: i386
1312P: Venkatesh Pallipadi (Venki)
1313M: venkatesh.pallipadi@intel.com
1314S: Maintained
1315
1316HPET: x86_64
1317P: Andi Kleen and Vojtech Pavlik
1318M: ak@muc.de and vojtech@suse.cz
1319S: Maintained
1320
1321HPET: ACPI hpet.c
1322P: Bob Picco
1323M: bob.picco@hp.com
1324S: Maintained
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326HPFS FILESYSTEM
1327P: Mikulas Patocka
1328M: mikulas@artax.karlin.mff.cuni.cz
1329W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1330S: Maintained
1331
1332HUGETLB FILESYSTEM
1333P: William Irwin
1334M: wli@holomorphy.com
1335S: Maintained
1336
Jean Delvare5b543962005-08-15 19:51:02 +02001337I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338P: Jean Delvare
1339M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001340L: i2c@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341W: http://www.lm-sensors.nu/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001342T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343S: Maintained
1344
1345I2O
1346P: Markus Lidel
1347M: markus.lidel@shadowconnect.com
1348W: http://i2o.shadowconnect.com/
1349S: Maintained
1350
1351i386 BOOT CODE
1352P: Riley H. Williams
1353M: Riley@Williams.Name
1354L: Linux-Kernel@vger.kernel.org
1355S: Maintained
1356
1357i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1358P: Dave Jones
1359M: davej@codemonkey.org.uk
1360P: H. Peter Anvin
1361M: hpa@zytor.com
1362S: Maintained
1363
1364i810 TCO TIMER WATCHDOG
1365P: Nils Faerber
1366M: nils@kernelconcepts.de
1367W: http://www.kernelconcepts.de/
1368S: Maintained
1369
1370IA64 (Itanium) PLATFORM
1371P: Tony Luck
1372M: tony.luck@intel.com
1373L: linux-ia64@vger.kernel.org
1374W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001375T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376S: Maintained
1377
1378SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001379P: Jes Sorensen
1380M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381L: linux-altix@sgi.com
1382L: linux-ia64@vger.kernel.org
1383W: http://www.sgi.com/altix
1384S: Maintained
1385
1386IBM MCA SCSI SUBSYSTEM DRIVER
1387P: Michael Lang
1388M: langa2@kph.uni-mainz.de
1389W: http://www.uni-mainz.de/~langm000/linux.html
1390S: Maintained
1391
1392IBM Power Linux RAID adapter
1393P: Brian King
1394M: brking@us.ibm.com
1395S: Supported
1396
1397IBM ServeRAID RAID DRIVER
1398P: Jack Hammer
1399P: Dave Jeffery
1400M: ipslinux@adaptec.com
1401W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1402S: Supported
1403
1404IDE DRIVER [GENERAL]
1405P: Bartlomiej Zolnierkiewicz
1406M: B.Zolnierkiewicz@elka.pw.edu.pl
1407L: linux-kernel@vger.kernel.org
1408L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001409T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410S: Maintained
1411
1412IDE/ATAPI CDROM DRIVER
1413P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001414M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415L: linux-kernel@vger.kernel.org
1416W: http://www.kernel.dk
1417S: Maintained
1418
1419IDE/ATAPI FLOPPY DRIVERS
1420P: Paul Bristow
1421M: Paul Bristow <paul@paulbristow.net>
1422W: http://paulbristow.net/linux/idefloppy.html
1423L: linux-kernel@vger.kernel.org
1424S: Maintained
1425
1426IDE/ATAPI TAPE DRIVERS
1427P: Gadi Oxman
1428M: Gadi Oxman <gadio@netvision.net.il>
1429L: linux-kernel@vger.kernel.org
1430S: Maintained
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432IEEE 1394 SUBSYSTEM
1433P: Ben Collins
1434M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001435P: Stefan Richter
1436M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437L: linux1394-devel@lists.sourceforge.net
1438W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001439T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440S: Maintained
1441
Stefan Richter87730d02006-09-16 12:24:00 +02001442IEEE 1394 IPV4 DRIVER (eth1394)
1443P: 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 PCILYNX DRIVER
1449P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001450M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001451P: Stefan Richter
1452M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001454S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456IEEE 1394 RAW I/O DRIVER
1457P: Ben Collins
1458M: bcollins@debian.org
1459P: Dan Dennedy
1460M: dan@dennedy.org
1461L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001462S: Maintained
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464IMS TWINTURBO FRAMEBUFFER DRIVER
1465P: Paul Mundt
1466M: lethal@chaoticdreams.org
1467L: linux-fbdev-devel@lists.sourceforge.net
1468S: Maintained
1469
1470INFINIBAND SUBSYSTEM
1471P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001472M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473P: Sean Hefty
1474M: mshefty@ichips.intel.com
1475P: Hal Rosenstock
1476M: halr@voltaire.com
1477L: openib-general@openib.org
1478W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001479T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480S: Supported
1481
1482INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001483P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001484M: dmitry.torokhov@gmail.com
1485M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486L: linux-input@atrey.karlin.mff.cuni.cz
1487L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001488T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489S: Maintained
1490
Robert Lovec9f04f52005-07-15 12:21:07 -04001491INOTIFY
1492P: John McCutchan and Robert Love
1493M: ttb@tentacle.dhs.org and rml@novell.com
1494L: linux-kernel@vger.kernel.org
1495S: Maintained
1496
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001497INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001498P: Sylvain Meyer
1499M: sylvain.meyer@worldonline.fr
1500L: linux-fbdev-devel@lists.sourceforge.net
1501S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001504P: Antonino Daplas
1505M: adaplas@pol.net
1506L: linux-fbdev-devel@lists.sourceforge.net
1507S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1510P: Ingo Molnar
1511M: mingo@redhat.com
1512S: Maintained
1513
1514INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1515P: Jeff Garzik
1516M: jgarzik@pobox.com
1517W: http://sourceforge.net/projects/gkernel/
1518S: Maintained
1519
1520INTEL IA32 MICROCODE UPDATE SUPPORT
1521P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001522M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523S: Maintained
1524
Michael Buesch844dd052006-06-26 00:24:59 -07001525INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1526P: Deepak Saxena
1527M: dsaxena@plexity.net
1528S: Maintained
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530INTEL PRO/100 ETHERNET SUPPORT
1531P: John Ronciak
1532M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533P: Jesse Brandeburg
1534M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001535P: Jeff Kirsher
1536M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001537P: Auke Kok
1538M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539W: http://sourceforge.net/projects/e1000/
1540S: Supported
1541
1542INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1543P: Jeb Cramer
1544M: cramerj@intel.com
1545P: John Ronciak
1546M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001547P: Jesse Brandeburg
1548M: jesse.brandeburg@intel.com
1549P: Jeff Kirsher
1550M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001551P: Auke Kok
1552M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553W: http://sourceforge.net/projects/e1000/
1554S: Supported
1555
1556INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001557P: Jeff Kirsher
1558M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559P: Ayyappan Veeraiyan
1560M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561P: John Ronciak
1562M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001563P: Jesse Brandeburg
1564M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001565P: Auke Kok
1566M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567W: http://sourceforge.net/projects/e1000/
1568S: Supported
1569
James Ketrenos826d2ab2005-11-07 18:56:59 -06001570INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1571P: Yi Zhu
1572M: yi.zhu@intel.com
1573P: James Ketrenos
1574M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001575L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001576L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1577W: http://ipw2100.sourceforge.net
1578S: Supported
1579
1580INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1581P: Yi Zhu
1582M: yi.zhu@intel.com
1583P: James Ketrenos
1584M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001585L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001586L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1587W: http://ipw2200.sourceforge.net
1588S: Supported
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590IOC3 DRIVER
1591P: Ralf Baechle
1592M: ralf@linux-mips.org
1593L: linux-mips@linux-mips.org
1594S: Maintained
1595
1596IP MASQUERADING:
1597P: Juanjo Ciarlante
1598M: jjciarla@raiz.uncu.edu.ar
1599S: Maintained
1600
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001601IPATH DRIVER:
1602P: Bryan O'Sullivan
1603M: support@pathscale.com
1604L: openib-general@openib.org
1605S: Supported
1606
Corey Minyard4409ebe2006-04-20 02:43:12 -07001607IPMI SUBSYSTEM
1608P: Corey Minyard
1609M: minyard@acm.org
1610L: openipmi-developer@lists.sourceforge.net
1611W: http://openipmi.sourceforge.net/
1612S: Supported
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614IPX NETWORK LAYER
1615P: Arnaldo Carvalho de Melo
1616M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001617L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618S: Maintained
1619
1620IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001621P: Samuel Ortiz
1622M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001623L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001625S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627ISAPNP
1628P: Jaroslav Kysela
1629M: perex@suse.cz
1630S: Maintained
1631
1632ISDN SUBSYSTEM
1633P: Karsten Keil
1634M: kkeil@suse.de
1635P: Kai Germaschewski
1636M: kai.germaschewski@gmx.de
1637L: isdn4linux@listserv.isdn4linux.de
1638W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001639T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640S: Maintained
1641
1642ISDN SUBSYSTEM (Eicon active card driver)
1643P: Armin Schindler
1644M: mac@melware.de
1645L: isdn4linux@listserv.isdn4linux.de
1646W: http://www.melware.de
1647S: Maintained
1648
1649JOURNALLING FLASH FILE SYSTEM (JFFS)
1650P: Axis Communications AB
1651M: jffs-dev@axis.com
1652L: jffs-dev@axis.com
1653W: http://www.developer.axis.com/software/jffs/
1654S: Maintained
1655
1656JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1657P: David Woodhouse
1658M: dwmw2@infradead.org
1659L: jffs-dev@axis.com
1660W: http://sources.redhat.com/jffs2/
1661S: Maintained
1662
1663JFS FILESYSTEM
1664P: Dave Kleikamp
1665M: shaggy@austin.ibm.com
1666L: jfs-discussion@lists.sourceforge.net
1667W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001668T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669S: Supported
1670
Josh Triplettde456d32006-07-30 03:04:00 -07001671JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001672P: Stephen Tweedie, Andrew Morton
1673M: sct@redhat.com, akpm@osdl.org
1674L: ext2-devel@lists.sourceforge.net
1675S: Maintained
1676
Rudolf Marek4660cb32006-10-08 22:01:26 +02001677K8TEMP HARDWARE MONITORING DRIVER
1678P: Rudolf Marek
1679M: r.marek@assembler.cz
1680L: lm-sensors@lm-sensors.org
1681S: Maintained
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683KCONFIG
1684P: Roman Zippel
1685M: zippel@linux-m68k.org
1686L: kbuild-devel@lists.sourceforge.net
1687S: Maintained
1688
Vivek Goyalea6c2082006-05-20 14:59:55 -07001689KDUMP
1690P: Vivek Goyal
1691M: vgoyal@in.ibm.com
1692P: Haren Myneni
1693M: hbabu@us.ibm.com
1694L: fastboot@lists.osdl.org
1695L: linux-kernel@vger.kernel.org
1696W: http://lse.sourceforge.net/kdump/
1697S: Maintained
1698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699KERNEL AUTOMOUNTER (AUTOFS)
1700P: H. Peter Anvin
1701M: hpa@zytor.com
1702L: autofs@linux.kernel.org
1703S: Odd Fixes
1704
1705KERNEL AUTOMOUNTER v4 (AUTOFS4)
1706P: Ian Kent
1707M: raven@themaw.net
1708L: autofs@linux.kernel.org
1709S: Maintained
1710
1711KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1712P: Kai Germaschewski
1713M: kai@germaschewski.name
1714P: Sam Ravnborg
1715M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001716T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717S: Maintained
1718
1719KERNEL JANITORS
1720P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001721L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723S: Maintained
1724
1725KERNEL NFSD
1726P: Neil Brown
1727M: neilb@cse.unsw.edu.au
1728L: nfs@lists.sourceforge.net
1729W: http://nfs.sourceforge.net/
1730W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1731S: Maintained
1732
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001733KEXEC
1734P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001735M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001736W: http://www.xmission.com/~ebiederm/files/kexec/
1737L: linux-kernel@vger.kernel.org
1738L: fastboot@osdl.org
1739S: Maintained
1740
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001741KPROBES
1742P: Prasanna S Panchamukhi
1743M: prasanna@in.ibm.com
1744P: Ananth N Mavinakayanahalli
1745M: ananth@in.ibm.com
1746P: Anil S Keshavamurthy
1747M: anil.s.keshavamurthy@intel.com
1748P: David S. Miller
1749M: davem@davemloft.net
1750L: linux-kernel@vger.kernel.org
1751S: Maintained
1752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001755S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757LASI 53c700 driver for PARISC
1758P: James E.J. Bottomley
1759M: James.Bottomley@HansenPartnership.com
1760L: linux-scsi@vger.kernel.org
1761S: Maintained
1762
Richard Purdie263de9b2006-05-15 09:44:16 -07001763LED SUBSYSTEM
1764P: Richard Purdie
1765M: rpurdie@rpsys.net
1766S: Maintained
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768LEGO USB Tower driver
1769P: Juergen Stuber
1770M: starblue@users.sourceforge.net
1771L: legousb-devel@lists.sourceforge.net
1772W: http://legousb.sourceforge.net/
1773S: Maintained
1774
1775LINUX FOR IBM pSERIES (RS/6000)
1776P: Paul Mackerras
1777M: paulus@au.ibm.com
1778W: http://www.ibm.com/linux/ltc/projects/ppc
1779S: Supported
1780
1781LINUX FOR NCR VOYAGER
1782P: James Bottomley
1783M: James.Bottomley@HansenPartnership.com
1784W: http://www.hansenpartnership.com/voyager
1785S: Maintained
1786
1787LINUX FOR POWERPC
1788P: Paul Mackerras
1789M: paulus@samba.org
1790W: http://www.penguinppc.org/
1791L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001792T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793S: Supported
1794
1795LINUX FOR POWER MACINTOSH
1796P: Benjamin Herrenschmidt
1797M: benh@kernel.crashing.org
1798W: http://www.penguinppc.org/
1799L: linuxppc-dev@ozlabs.org
1800S: Maintained
1801
1802LINUX FOR POWERPC EMBEDDED MPC52XX
1803P: Sylvain Munaut
1804M: tnt@246tNt.com
1805W: http://www.246tNt.com/mpc52xx/
1806W: http://www.penguinppc.org/
1807L: linuxppc-dev@ozlabs.org
1808L: linuxppc-embedded@ozlabs.org
1809S: Maintained
1810
1811LINUX FOR POWERPC EMBEDDED PPC4XX
1812P: Matt Porter
1813M: mporter@kernel.crashing.org
1814W: http://www.penguinppc.org/
1815L: linuxppc-embedded@ozlabs.org
1816S: Maintained
1817
Tom Rinie93adf12005-07-26 12:49:53 -07001818LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819P: Tom Rini
1820M: trini@kernel.crashing.org
1821W: http://www.penguinppc.org/
1822L: linuxppc-embedded@ozlabs.org
1823S: Maintained
1824
Tom Rinie93adf12005-07-26 12:49:53 -07001825LINUX FOR POWERPC EMBEDDED PPC8XX
1826P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07001827M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07001828W: http://www.penguinppc.org/
1829L: linuxppc-embedded@ozlabs.org
1830S: Maintained
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01001833P: Kumar Gala
1834M: galak@kernel.crashing.org
1835W: http://www.penguinppc.org/
1836L: linuxppc-embedded@ozlabs.org
1837S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Olof Johanssonab06ff32006-09-06 14:44:54 -05001839LINUX FOR POWERPC PA SEMI PWRFICIENT
1840P: Olof Johansson
1841M: olof@lixom.net
1842W: http://www.pasemi.com/
1843L: linuxppc-dev@ozlabs.org
1844S: Supported
1845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846LLC (802.2)
1847P: Arnaldo Carvalho de Melo
1848M: acme@conectiva.com.br
1849S: Maintained
1850
1851LINUX FOR 64BIT POWERPC
1852P: Paul Mackerras
1853M: paulus@samba.org
1854M: paulus@au.ibm.com
1855P: Anton Blanchard
1856M: anton@samba.org
1857M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04001858W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11001859L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860S: Supported
1861
1862LINUX SECURITY MODULE (LSM) FRAMEWORK
1863P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08001864M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08001865L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001867T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868S: Supported
1869
1870LM83 HARDWARE MONITOR DRIVER
1871P: Jean Delvare
1872M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001873L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874S: Maintained
1875
1876LM90 HARDWARE MONITOR DRIVER
1877P: Jean Delvare
1878M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02001879L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880S: Maintained
1881
1882LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
1883P: Richard Russon (FlatCap)
1884M: ldm@flatcap.org
1885L: ldm-devel@lists.sourceforge.net
1886W: http://ldm.sourceforge.net
1887S: Maintained
1888
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07001889LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
1890P: Eric Moore
1891M: Eric.Moore@lsil.com
1892M: support@lsil.com
1893L: mpt_linux_developer@lsil.com
1894L: linux-scsi@vger.kernel.org
1895W: http://www.lsilogic.com/support
1896S: Supported
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
1899P: Matthew Wilcox
1900M: matthew@wil.cx
1901L: linux-scsi@vger.kernel.org
1902S: Maintained
1903
1904M68K ARCHITECTURE
1905P: Geert Uytterhoeven
1906M: geert@linux-m68k.org
1907P: Roman Zippel
1908M: zippel@linux-m68k.org
1909L: linux-m68k@lists.linux-m68k.org
1910W: http://www.linux-m68k.org/
1911W: http://linux-m68k-cvs.ubb.ca/
1912S: Maintained
1913
1914M68K ON APPLE MACINTOSH
1915P: Joshua Thompson
1916M: funaho@jurai.org
1917W: http://www.mac.linux-m68k.org/
1918L: linux-mac68k@mac.linux-m68k.org
1919S: Maintained
1920
1921M68K ON HP9000/300
1922P: Philip Blundell
1923M: philb@gnu.org
1924W: http://www.tazenda.demon.co.uk/phil/linux-hp
1925S: Maintained
1926
1927MARVELL YUKON / SYSKONNECT DRIVER
1928P: Mirko Lindner
1929M: mlindner@syskonnect.de
1930P: Ralph Roesler
1931M: rroesler@syskonnect.de
1932W: http://www.syskonnect.com
1933S: Supported
1934
Michael Kerriskfaf16682005-07-31 22:34:47 -07001935MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01001936P: Michael Kerrisk
1937M: mtk-manpages@gmx.net
1938W: ftp://ftp.kernel.org/pub/linux/docs/manpages
1939S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07001940
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001941MARVELL MV643XX ETHERNET DRIVER
1942P: Dale Farnsworth
1943M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001945M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07001946L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07001947S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949MATROX FRAMEBUFFER DRIVER
1950P: Petr Vandrovec
1951M: vandrove@vc.cvut.cz
1952L: linux-fbdev-devel@lists.sourceforge.net
1953S: Maintained
1954
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001955MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01001956P: Neela Syam Kolli
1957M: Neela.Kolli@engenio.com
1958S: linux-scsi@vger.kernel.org
1959W: http://megaraid.lsilogic.com
1960S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07001961
Steven Rostedt70ea91f2006-07-30 03:03:53 -07001962MEMORY MANAGEMENT
1963L: linux-mm@kvack.org
1964L: linux-kernel@vger.kernel.org
1965W: http://www.linux-mm.org
1966S: Maintained
1967
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001968MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969P: David Woodhouse
1970M: dwmw2@infradead.org
1971W: http://www.linux-mtd.infradead.org/
1972L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04001973T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974S: Maintained
1975
1976MICROTEK X6 SCANNER
1977P: Oliver Neukum
1978M: oliver@neukum.name
1979S: Maintained
1980
1981MIPS
1982P: Ralf Baechle
1983M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01001984W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00001986T: git www.linux-mips.org:/pub/scm/linux.git
1987S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989MISCELLANEOUS MCA-SUPPORT
1990P: James Bottomley
1991M: jejb@steeleye.com
1992L: linux-kernel@vger.kernel.org
1993S: Maintained
1994
1995MODULE SUPPORT
1996P: Rusty Russell
1997M: rusty@rustcorp.com.au
1998L: linux-kernel@vger.kernel.org
1999S: Maintained
2000
2001MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2002P: Stelian Pop
2003M: stelian@popies.net
2004W: http://popies.net/meye/
2005S: Maintained
2006
2007MOUSE AND MISC DEVICES [GENERAL]
2008P: Alessandro Rubini
2009M: rubini@ipvvis.unipv.it
2010L: linux-kernel@vger.kernel.org
2011S: Maintained
2012
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002013MSI LAPTOP SUPPORT
2014P: Lennart Poettering
2015M: mzxreary@0pointer.de
2016L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2017W: http://0pointer.de/lennart/tchibo.html
2018S: Maintained
2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020MTRR AND SIMILAR SUPPORT [i386]
2021P: Richard Gooch
2022M: rgooch@atnf.csiro.au
2023L: linux-kernel@vger.kernel.org
2024W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2025S: Maintained
2026
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002027MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2028P: Pierre Ossman
2029M: drzeus-mmc@drzeus.cx
2030L: linux-kernel@vger.kernel.org
2031S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033MULTISOUND SOUND DRIVER
2034P: Andrew Veliath
2035M: andrewtv@usa.net
2036S: Maintained
2037
2038NATSEMI ETHERNET DRIVER (DP8381x)
2039P: Tim Hockin
2040M: thockin@hockin.org
2041S: Maintained
2042
2043NCP FILESYSTEM
2044P: Petr Vandrovec
2045M: vandrove@vc.cvut.cz
2046L: linware@sh.cvut.cz
2047S: Maintained
2048
2049NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2050P: James E.J. Bottomley
2051M: James.Bottomley@HansenPartnership.com
2052L: linux-scsi@vger.kernel.org
2053S: Maintained
2054
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002055NETEM NETWORK EMULATOR
2056P: Stephen Hemminger
2057M: shemminger@osdl.org
2058L: netem@osdl.org
2059S: Maintained
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061NETFILTER/IPTABLES/IPCHAINS
2062P: Rusty Russell
2063P: Marc Boucher
2064P: James Morris
2065P: Harald Welte
2066P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002067P: Patrick McHardy
2068M: kaber@trash.net
2069L: netfilter-devel@lists.netfilter.org
2070L: netfilter@lists.netfilter.org
2071L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072W: http://www.netfilter.org/
2073W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074S: Supported
2075
Paul Moore4cc67732006-09-25 15:57:13 -07002076NETLABEL
2077P: Paul Moore
2078M: paul.moore@hp.com
2079W: http://netlabel.sf.net
2080L: netdev@vger.kernel.org
2081S: Supported
2082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083NETROM NETWORK LAYER
2084P: Ralf Baechle
2085M: ralf@linux-mips.org
2086L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002087W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088S: Maintained
2089
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002090NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091P: Paul Clements
2092M: Paul.Clements@steeleye.com
2093S: Maintained
2094
2095NETWORK DEVICE DRIVERS
2096P: Andrew Morton
2097M: akpm@osdl.org
2098P: Jeff Garzik
2099M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002100L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002101T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102S: Maintained
2103
2104NETWORKING [GENERAL]
2105P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002106M: netdev@vger.kernel.org
2107L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002108W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109S: Maintained
2110
2111NETWORKING [IPv4/IPv6]
2112P: David S. Miller
2113M: davem@davemloft.net
2114P: Alexey Kuznetsov
2115M: kuznet@ms2.inr.ac.ru
2116P: Pekka Savola (ipv6)
2117M: pekkas@netcore.fi
2118P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002119M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120P: Hideaki YOSHIFUJI
2121M: yoshfuji@linux-ipv6.org
2122P: Patrick McHardy
2123M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002124L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002125T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126S: Maintained
2127
John W. Linville29f8f632006-01-18 14:52:48 -08002128NETWORKING [WIRELESS]
2129P: John W. Linville
2130M: linville@tuxdriver.com
2131L: netdev@vger.kernel.org
2132T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2133S: Maintained
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135IPVS
2136P: Wensong Zhang
2137M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002138P: Simon Horman
2139M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140P: Julian Anastasov
2141M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002142L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143S: Maintained
2144
2145NFS CLIENT
2146P: Trond Myklebust
2147M: trond.myklebust@fys.uio.no
2148L: linux-kernel@vger.kernel.org
2149S: Maintained
2150
2151NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002152P: Jan-Pascal van Best
2153M: janpascal@vanbest.org
2154P: Andreas Mohr
2155M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002156L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157S: Maintained
2158
2159NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2160P: YOKOTA Hiroshi
2161M: yokota@netlab.is.tsukuba.ac.jp
2162W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2163S: Maintained
2164
2165NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2166P: GOTO Masanori
2167M: gotom@debian.or.jp
2168P: YOKOTA Hiroshi
2169M: yokota@netlab.is.tsukuba.ac.jp
2170W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2171S: Maintained
2172
2173NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2174P: Eberhard Moenkeberg
2175M: emoenke@gwdg.de
2176L: linux-kernel@vger.kernel.org
2177S: Maintained
2178
2179NTFS FILESYSTEM
2180P: Anton Altaparmakov
2181M: aia21@cantab.net
2182L: linux-ntfs-dev@lists.sourceforge.net
2183L: linux-kernel@vger.kernel.org
2184W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002185T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186S: Maintained
2187
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002188NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002189P: Antonino Daplas
2190M: adaplas@pol.net
2191L: linux-fbdev-devel@lists.sourceforge.net
2192S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002194OPENCORES I2C BUS DRIVER
2195P: Peter Korsgaard
2196M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002197L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002198S: Maintained
2199
Mark Fashehccd979b2005-12-15 14:31:24 -08002200ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2201P: Mark Fasheh
2202M: mark.fasheh@oracle.com
2203P: Kurt Hackel
2204M: kurt.hackel@oracle.com
2205L: ocfs2-devel@oss.oracle.com
2206W: http://oss.oracle.com/projects/ocfs2/
2207S: Supported
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209OLYMPIC NETWORK DRIVER
2210P: Peter De Shrijver
2211M: p2@ace.ulyssis.student.kuleuven.ac.be
2212P: Mike Phillips
2213M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002214L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215L: linux-tr@linuxtr.net
2216W: http://www.linuxtr.net
2217S: Maintained
2218
Harald Weltec1986ee2005-11-13 16:06:29 -08002219OMNIKEY CARDMAN 4000 DRIVER
2220P: Harald Welte
2221M: laforge@gnumonks.org
2222S: Maintained
2223
Harald Welte77c44ab2005-11-13 16:06:26 -08002224OMNIKEY CARDMAN 4040 DRIVER
2225P: Harald Welte
2226M: laforge@gnumonks.org
2227S: Maintained
2228
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229ONSTREAM SCSI TAPE DRIVER
2230P: Willem Riede
2231M: osst@riede.org
2232L: osst-users@lists.sourceforge.net
2233L: linux-scsi@vger.kernel.org
2234S: Maintained
2235
2236OPL3-SA2, SA3, and SAx DRIVER
2237P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002238M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239L: linux-sound@vger.kernel.org
2240S: Maintained
2241
2242OPROFILE
2243P: Philippe Elie
2244M: phil.el@wanadoo.fr
2245L: oprofile-list@lists.sf.net
2246S: Maintained
2247
2248ORINOCO DRIVER
2249P: Pavel Roskin
2250M: proski@gnu.org
2251P: David Gibson
2252M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002253L: orinoco-users@lists.sourceforge.net
2254L: orinoco-devel@lists.sourceforge.net
2255W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256S: Maintained
2257
2258PARALLEL PORT SUPPORT
2259P: Phil Blundell
2260M: philb@gnu.org
2261P: Tim Waugh
2262M: tim@cyberelk.net
2263P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264P: Andrea Arcangeli
2265M: andrea@suse.de
2266L: linux-parport@lists.infradead.org
2267W: http://people.redhat.com/twaugh/parport/
2268S: Maintained
2269
2270PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2271P: Tim Waugh
2272M: tim@cyberelk.net
2273L: linux-parport@lists.infradead.org
2274W: http://www.torque.net/linux-pp.html
2275S: Maintained
2276
2277PARISC ARCHITECTURE
2278P: Matthew Wilcox
2279M: matthew@wil.cx
2280P: Grant Grundler
2281M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002282P: Kyle McMartin
2283M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284L: parisc-linux@parisc-linux.org
2285W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002286T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2287T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288S: Maintained
2289
Jim Cromie1662d322006-10-06 00:43:59 -07002290PC87360 HARDWARE MONITORING DRIVER
2291P: Jim Cromie
2292M: jim.cromie@gmail.com
2293L: lm-sensors@lm-sensors.org
2294S: Maintained
2295
2296PC8736x GPIO DRIVER
2297P: Jim Cromie
2298M: jim.cromie@gmail.com
2299S: Maintained
2300
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002301PCI ERROR RECOVERY
2302P: Linas Vepstas
2303M: linas@austin.ibm.com
2304L: linux-kernel@vger.kernel.org
2305L: linux-pci@atrey.karlin.mff.cuni.cz
2306S: Supported
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2309P: Thomas Sailer
2310M: sailer@ife.ee.ethz.ch
2311L: linux-sound@vger.kernel.org
2312W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2313S: Maintained
2314
2315PCI SUBSYSTEM
2316P: Greg Kroah-Hartman
2317M: gregkh@suse.de
2318L: linux-kernel@vger.kernel.org
2319L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002320T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321S: Supported
2322
2323PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002324P: Kristen Carlson Accardi
2325M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326S: Supported
2327
2328PCI HOTPLUG COMPAQ DRIVER
2329P: Greg Kroah-Hartman
2330M: greg@kroah.com
2331S: Maintained
2332
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002333PCIE HOTPLUG DRIVER
2334P: Kristen Carlson Accardi
2335M: kristen.c.accardi@intel.com
2336L: pcihpd-discuss@lists.sourceforge.net
2337S: Maintained
2338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002340P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002341L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002343T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002344S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346PCNET32 NETWORK DRIVER
2347P: Thomas Bogendörfer
2348M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002349L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350S: Maintained
2351
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002352PER-TASK DELAY ACCOUNTING
2353P: Shailabh Nagar
2354M: nagar@watson.ibm.com
2355L: linux-kernel@vger.kernel.org
2356S: Maintained
2357
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002358PERSONALITY HANDLING
2359P: Christoph Hellwig
2360M: hch@infradead.org
2361L: linux-abi-devel@lists.sourceforge.net
2362S: Maintained
2363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364PHRAM MTD DRIVER
2365P: Jörn Engel
2366M: joern@wh.fh-wedel.de
2367L: linux-mtd@lists.infradead.org
2368S: Maintained
2369
Peter Osterlund249a6772005-09-27 21:45:30 -07002370PKTCDVD DRIVER
2371P: Peter Osterlund
2372M: petero2@telia.com
2373L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002374S: Maintained
2375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376POSIX CLOCKS and TIMERS
2377P: George Anzinger
2378M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002379L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380S: Supported
2381
Eugene Surovegin24682972005-10-14 03:00:53 -07002382POWERPC 4xx EMAC DRIVER
2383P: Eugene Surovegin
2384M: ebs@ebshome.net
2385W: http://kernel.ebshome.net/emac/
2386L: linuxppc-embedded@ozlabs.org
2387L: netdev@vger.kernel.org
2388S: Maintained
2389
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390PNP SUPPORT
2391P: Adam Belay
2392M: ambx1@neo.rr.com
2393S: Maintained
2394
2395PPP PROTOCOL DRIVERS AND COMPRESSORS
2396P: Paul Mackerras
2397M: paulus@samba.org
2398L: linux-ppp@vger.kernel.org
2399S: Maintained
2400
2401PPP OVER ATM (RFC 2364)
2402P: Mitchell Blank Jr
2403M: mitch@sfgoth.com
2404S: Maintained
2405
2406PPP OVER ETHERNET
2407P: Michal Ostrowski
2408M: mostrows@speakeasy.net
2409S: Maintained
2410
2411PREEMPTIBLE KERNEL
2412P: Robert Love
2413M: rml@tech9.net
2414L: linux-kernel@vger.kernel.org
2415L: kpreempt-tech@lists.sourceforge.net
2416W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2417S: Supported
2418
2419PRISM54 WIRELESS DRIVER
2420P: Prism54 Development Team
2421M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002422L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423W: http://prism54.org
2424S: Maintained
2425
2426PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2427P: Peter Denison
2428M: promise@pnd-pc.demon.co.uk
2429W: http://www.pnd-pc.demon.co.uk/promise/
2430S: Maintained
2431
Michael Krufky83202042006-07-03 00:24:18 -07002432PVRUSB2 VIDEO4LINUX DRIVER
2433P: Mike Isely
2434M: isely@pobox.com
2435L: pvrusb2@isely.net
2436L: video4linux-list@redhat.com
2437W: http://www.isely.net/pvrusb2/
2438S: Maintained
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440PXA2xx SUPPORT
2441P: Nicolas Pitre
2442M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002443L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444S: Maintained
2445
2446QLOGIC QLA2XXX FC-SCSI DRIVER
2447P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002448M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449L: linux-scsi@vger.kernel.org
2450S: Supported
2451
Ron Mercer5a4faa82006-07-25 00:40:21 -07002452QLOGIC QLA3XXX NETWORK DRIVER
2453P: Ron Mercer
2454M: linux-driver@qlogic.com
2455L: netdev@vger.kernel.org
2456S: Supported
2457
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458QNX4 FILESYSTEM
2459P: Anders Larsen
2460M: al@alarsen.net
2461L: linux-kernel@vger.kernel.org
2462W: http://www.alarsen.net/linux/qnx4fs/
2463S: Maintained
2464
2465RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002466P: Benjamin Herrenschmidt
2467M: benh@kernel.crashing.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468L: linux-fbdev-devel@lists.sourceforge.net
2469S: Maintained
2470
2471RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002472P: Paul Mackerras
2473M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474L: linux-fbdev-devel@lists.sourceforge.net
2475S: Maintained
2476
2477RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2478P: Corey Thomas
2479M: corey@world.std.com
2480L: linux-kernel@vger.kernel.org
2481S: Maintained
2482
Matt Mackall9e95ce22005-04-16 15:25:56 -07002483RANDOM NUMBER DRIVER
2484P: Matt Mackall
2485M: mpm@selenic.com
2486S: Maintained
2487
Matt Porter394b7012005-11-07 01:00:15 -08002488RAPIDIO SUBSYSTEM
2489P: Matt Porter
2490M: mporter@kernel.crashing.org
2491L: linux-kernel@vger.kernel.org
2492S: Maintained
2493
Josh Triplett595182b2006-10-04 02:17:21 -07002494READ-COPY UPDATE (RCU)
2495P: Dipankar Sarma
2496M: dipankar@in.ibm.com
2497W: http://www.rdrop.com/users/paulmck/rclock/
2498L: linux-kernel@vger.kernel.org
2499S: Supported
2500
2501RCUTORTURE MODULE
2502P: Josh Triplett
2503M: josh@freedesktop.org
2504L: linux-kernel@vger.kernel.org
2505S: Maintained
2506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507REAL TIME CLOCK DRIVER
2508P: Paul Gortmaker
2509M: p_gortmaker@yahoo.com
2510L: linux-kernel@vger.kernel.org
2511S: Maintained
2512
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002513REAL TIME CLOCK (RTC) SUBSYSTEM
2514P: Alessandro Zummo
2515M: a.zummo@towertech.it
2516L: linux-kernel@vger.kernel.org
2517S: Maintained
2518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519REISERFS FILE SYSTEM
2520P: Hans Reiser
2521M: reiserfs-dev@namesys.com
2522L: reiserfs-list@namesys.com
2523W: http://www.namesys.com
2524S: Supported
2525
2526ROCKETPORT DRIVER
2527P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528W: http://www.comtrol.com
2529S: Maintained
2530
2531ROSE NETWORK LAYER
2532P: Ralf Baechle
2533M: ralf@linux-mips.org
2534L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002535W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536S: Maintained
2537
2538RISCOM8 DRIVER
2539S: Orphan
2540
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002541S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002542P: Antonino Daplas
2543M: adaplas@pol.net
2544L: linux-fbdev-devel@lists.sourceforge.net
2545S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002546
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547S390
2548P: Martin Schwidefsky
2549M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002550P: Heiko Carstens
2551M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552M: linux390@de.ibm.com
2553L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002554W: http://www.ibm.com/developerworks/linux/linux390/
2555S: Supported
2556
2557S390 NETWORK DRIVERS
2558P: Frank Pavlic
2559M: fpavlic@de.ibm.com
2560M: linux390@de.ibm.com
2561L: linux-390@vm.marist.edu
2562W: http://www.ibm.com/developerworks/linux/linux390/
2563S: Supported
2564
2565S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002566P: Swen Schillig
2567M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002568M: linux390@de.ibm.com
2569L: linux-390@vm.marist.edu
2570W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571S: Supported
2572
2573SAA7146 VIDEO4LINUX-2 DRIVER
2574P: Michael Hunold
2575M: michael@mihu.de
2576W: http://www.mihu.de/linux/saa7146
2577S: Maintained
2578
2579SBPCD CDROM DRIVER
2580P: Eberhard Moenkeberg
2581M: emoenke@gwdg.de
2582L: linux-kernel@vger.kernel.org
2583S: Maintained
2584
2585SC1200 WDT DRIVER
2586P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002587M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588S: Maintained
2589
2590SCHEDULER
2591P: Ingo Molnar
2592M: mingo@elte.hu
2593P: Robert Love [the preemptible kernel bits]
2594M: rml@tech9.net
2595L: linux-kernel@vger.kernel.org
2596S: Maintained
2597
2598SCSI CDROM DRIVER
2599P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002600M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601L: linux-scsi@vger.kernel.org
2602W: http://www.kernel.dk
2603S: Maintained
2604
2605SCSI SG DRIVER
2606P: Doug Gilbert
2607M: dgilbert@interlog.com
2608L: linux-scsi@vger.kernel.org
2609W: http://www.torque.net/sg
2610S: Maintained
2611
2612SCSI SUBSYSTEM
2613P: James E.J. Bottomley
2614M: James.Bottomley@SteelEye.com
2615L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002616T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617S: Maintained
2618
2619SCSI TAPE DRIVER
2620P: Kai Mäkisara
2621M: Kai.Makisara@kolumbus.fi
2622L: linux-scsi@vger.kernel.org
2623S: Maintained
2624
2625SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002626P: Sridhar Samudrala
2627M: sri@us.ibm.com
2628L: lksctp-developers@lists.sourceforge.net
2629S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
2631SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002632P: Jim Cromie
2633M: jim.cromie@gmail.com
2634S: Odd Fixes
2635
2636SCx200 GPIO DRIVER
2637P: Jim Cromie
2638M: jim.cromie@gmail.com
2639S: Maintained
2640
2641SCx200 HRT CLOCKSOURCE DRIVER
2642P: Jim Cromie
2643M: jim.cromie@gmail.com
2644S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
2646SECURITY CONTACT
2647P: Security Officers
2648M: security@kernel.org
2649S: Supported
2650
2651SELINUX SECURITY MODULE
2652P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002653M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002655M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656L: linux-kernel@vger.kernel.org (kernel issues)
2657L: selinux@tycho.nsa.gov (general discussion)
2658W: http://www.nsa.gov/selinux
2659S: Supported
2660
2661SERIAL ATA (SATA) SUBSYSTEM:
2662P: Jeff Garzik
2663M: jgarzik@pobox.com
2664L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002665T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666S: Supported
2667
2668SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2669P: Pat Gefre
2670M: pfg@sgi.com
2671L: linux-ia64@vger.kernel.org
2672S: Supported
2673
2674SGI VISUAL WORKSTATION 320 AND 540
2675P: Andrey Panin
2676M: pazke@donpac.ru
2677L: linux-visws-devel@lists.sf.net
2678W: http://linux-visws.sf.net
2679S: Maintained for 2.6.
2680
2681SIMTEC EB110ATX (Chalice CATS)
2682P: Ben Dooks
2683P: Vincent Sanders
2684M: support@simtec.co.uk
2685W: http://www.simtec.co.uk/products/EB110ATX/
2686S: Supported
2687
2688SIMTEC EB2410ITX (BAST)
2689P: Ben Dooks
2690P: Vincent Sanders
2691M: support@simtec.co.uk
2692W: http://www.simtec.co.uk/products/EB2410ITX/
2693S: Supported
2694
Francois Romieu92aab3c2005-07-30 13:11:18 +02002695SIS 190 ETHERNET DRIVER
2696P: Francois Romieu
2697M: romieu@fr.zoreil.com
2698L: netdev@vger.kernel.org
2699S: Maintained
2700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701SIS 5513 IDE CONTROLLER DRIVER
2702P: Lionel Bouton
2703M: Lionel.Bouton@inet6.fr
2704W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2705W: http://gyver.homeip.net/sis5513/index.html
2706S: Maintained
2707
2708SIS 900/7016 FAST ETHERNET DRIVER
2709P: Daniele Venzano
2710M: venza@brownhat.org
2711W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002712L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713S: Maintained
2714
2715SIS FRAMEBUFFER DRIVER
2716P: Thomas Winischhofer
2717M: thomas@winischhofer.net
2718W: http://www.winischhofer.net/linuxsisvga.shtml
2719S: Maintained
2720
2721SIS USB2VGA DRIVER
2722P: Thomas Winischhofer
2723M: thomas@winischhofer.net
2724W: http://www.winischhofer.at/linuxsisusbvga.shtml
2725S: Maintained
2726
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727SMC91x ETHERNET DRIVER
2728P: Nicolas Pitre
2729M: nico@cam.org
2730S: Maintained
2731
Daniel Drake8f0f8502006-07-18 22:00:25 +01002732SOFTMAC LAYER (IEEE 802.11)
2733P: Johannes Berg
2734M: johannes@sipsolutions.net
2735P: Joe Jezak
2736M: josejx@gentoo.org
2737P: Daniel Drake
2738M: dsd@gentoo.org
2739W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002740L: netdev@vger.kernel.org
2741S: Maintained
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743SOFTWARE RAID (Multiple Disks) SUPPORT
2744P: Ingo Molnar
2745M: mingo@redhat.com
2746P: Neil Brown
2747M: neilb@cse.unsw.edu.au
2748L: linux-raid@vger.kernel.org
2749S: Maintained
2750
2751SOFTWARE SUSPEND:
2752P: Pavel Machek
2753M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002754L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755S: Maintained
2756
2757SONIC NETWORK DRIVER
2758P: Thomas Bogendoerfer
2759M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002760L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761S: Maintained
2762
2763SONY VAIO CONTROL DEVICE DRIVER
2764P: Stelian Pop
2765M: stelian@popies.net
2766W: http://popies.net/sonypi/
2767S: Maintained
2768
2769SOUND
2770P: Jaroslav Kysela
2771M: perex@suse.cz
2772L: alsa-devel@alsa-project.org
2773S: Maintained
2774
Kumar Gala025c3982006-04-02 16:05:54 -05002775SPI SUBSYSTEM
2776P: David Brownell
2777M: dbrownell@users.sourceforge.net
2778L: spi-devel-general@lists.sourceforge.net
2779S: Maintained
2780
Steven Rostedt855f46a2006-08-05 12:14:50 -07002781STABLE BRANCH:
2782P: Greg Kroah-Hartman
2783M: greg@kroah.com
2784P: Chris Wright
2785M: chrisw@sous-sol.org
2786L: stable@kernel.org
2787S: Maintained
2788
Kylene Hall1c72d462005-05-01 08:59:13 -07002789TPM DEVICE DRIVER
2790P: Kylene Hall
2791M: kjhall@us.ibm.com
2792W: http://tpmdd.sourceforge.net
2793L: tpmdd-devel@lists.sourceforge.net
2794S: Maintained
2795
Mark Gross1a80ba82005-10-30 15:02:55 -08002796Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01002797P: Mark Gross
2798M: mark.gross@intel.com
2799S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08002800
Chris Zankel48b415c2005-06-23 22:01:07 -07002801TENSILICA XTENSA PORT (xtensa):
2802P: Chris Zankel
2803M: chris@zankel.net
2804S: Maintained
2805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806UltraSPARC (sparc64):
2807P: David S. Miller
2808M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002810T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811S: Maintained
2812
2813SHARP LH SUPPORT (LH7952X & LH7A40X)
2814P: Marc Singer
2815M: elf@buici.com
2816W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002817L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818S: Maintained
2819
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002820SHPC HOTPLUG DRIVER
2821P: Kristen Carlson Accardi
2822M: kristen.c.accardi@intel.com
2823L: pcihpd-discuss@lists.sourceforge.net
2824S: Maintained
2825
Pierre Ossmand129bce2006-03-24 03:18:17 -08002826SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
2827P: Pierre Ossman
2828M: drzeus-sdhci@drzeus.cx
2829L: sdhci-devel@list.drzeus.cx
2830W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
2831S: Maintained
2832
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07002833SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
2834P: Stephen Hemminger
2835M: shemminger@osdl.org
2836L: netdev@vger.kernel.org
2837S: Maintained
2838
Chris Boot1a87d942006-07-10 04:45:34 -07002839SOEKRIS NET48XX LED SUPPORT
2840P: Chris Boot
2841M: bootc@bootc.net
2842S: Maintained
2843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844SPARC (sparc32):
2845P: William L. Irwin
2846M: wli@holomorphy.com
2847L: sparclinux@vger.kernel.org
2848S: Maintained
2849
2850SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
2851P: Roger Wolff
2852M: R.E.Wolff@BitWizard.nl
2853L: linux-kernel@vger.kernel.org ?
2854S: Supported
2855
Jim Lewis2752e402006-09-29 02:01:19 -07002856SPIDERNET NETWORK DRIVER for CELL
2857P: Jim Lewis
2858M: jim@jklewis.com
2859L: netdev@vger.kernel.org
2860S: Supported
2861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862SRM (Alpha) environment access
2863P: Jan-Benedict Glaw
2864M: jbglaw@lug-owl.de
2865L: linux-kernel@vger.kernel.org
2866S: Maintained
2867
2868STARFIRE/DURALAN NETWORK DRIVER
2869P: Ion Badulescu
2870M: ionut@cs.columbia.edu
2871S: Maintained
2872
2873STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
2874W: http://mosquitonet.Stanford.EDU/strip.html
2875S: Unsupported ?
2876
2877STRADIS MPEG-2 DECODER DRIVER
2878P: Nathan Laredo
2879M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880W: http://www.stradis.com/
2881S: Maintained
2882
2883SUPERH (sh)
2884P: Paul Mundt
2885M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07002886L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888S: Maintained
2889
2890SUPERH64 (sh64)
2891P: Paul Mundt
2892M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893L: linuxsh-shmedia-dev@lists.sourceforge.net
2894W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895S: Maintained
2896
2897SUN3/3X
2898P: Sam Creasey
2899M: sammy@sammy.net
2900L: sun3-list@redhat.com
2901W: http://sammy.net/sun3/
2902S: Maintained
2903
2904SVGA HANDLING
2905P: Martin Mares
2906M: mj@ucw.cz
2907L: linux-video@atrey.karlin.mff.cuni.cz
2908S: Maintained
2909
2910SYSV FILESYSTEM
2911P: Christoph Hellwig
2912M: hch@infradead.org
2913S: Maintained
2914
Stephen Hemminger781b4562006-07-10 20:25:29 -07002915TC CLASSIFIER
2916P: Jamal Hadi Salim
2917M: hadi@cyberus.ca
2918L: netdev@vger.kernel.org
2919S: Maintained
2920
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07002921TCP LOW PRIORITY MODULE
2922P: Wong Hoi Sing, Edison
2923M: hswong3i@gmail.com
2924P: Hung Hing Lun, Mike
2925M: hlhung3i@gmail.com
2926W: http://tcp-lp-mod.sourceforge.net/
2927S: Maintained
2928
Alex Dubov4020f2d2006-10-04 02:15:37 -07002929TI FLASH MEDIA INTERFACE DRIVER
2930P: Alex Dubov
2931M: oakad@yahoo.com
2932S: Maintained
2933
Michael Buesch844dd052006-06-26 00:24:59 -07002934TI OMAP RANDOM NUMBER GENERATOR SUPPORT
2935P: Deepak Saxena
2936M: dsaxena@plexity.net
2937S: Maintained
2938
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002939TASKSTATS STATISTICS INTERFACE
2940P: Shailabh Nagar
2941M: nagar@watson.ibm.com
2942L: linux-kernel@vger.kernel.org
2943S: Maintained
2944
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002946P: Romain Lievin
2947M: roms@lpg.ticalc.org
2948S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
Per Lidene86eaa32006-01-12 16:45:18 +01002950TIPC NETWORK LAYER
2951P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01002952M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002953P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01002954M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01002955P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01002956M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01002957L: tipc-discussion@lists.sourceforge.net
2958W: http://tipc.sourceforge.net/
2959W: http://tipc.cslab.ericsson.net/
2960T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
2961S: Maintained
2962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963TLAN NETWORK DRIVER
2964P: Samuel Chessman
2965M: chessman@tux.org
2966L: tlan-devel@lists.sourceforge.net
2967W: http://sourceforge.net/projects/tlan/
2968S: Maintained
2969
2970TOKEN-RING NETWORK DRIVER
2971P: Mike Phillips
2972M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002973L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974L: linux-tr@linuxtr.net
2975W: http://www.linuxtr.net
2976S: Maintained
2977
2978TOSHIBA ACPI EXTRAS DRIVER
2979P: John Belmonte
2980M: toshiba_acpi@memebeam.org
2981W: http://memebeam.org/toys/ToshibaAcpiDriver
2982S: Maintained
2983
2984TOSHIBA SMM DRIVER
2985P: Jonathan Buzzard
2986M: jonathan@buzzard.org.uk
2987L: tlinux-users@tce.toshiba-dme.co.jp
2988W: http://www.buzzard.org.uk/toshiba/
2989S: Maintained
2990
2991TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
2992P: Muli Ben-Yehuda
2993M: mulix@mulix.org
2994L: linux-kernel@vger.kernel.org
2995S: Maintained
2996
2997TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01002998P: Adrian Bunk
2999M: trivial@kernel.org
3000L: linux-kernel@vger.kernel.org
3001W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3002T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3003S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
3005TMS380 TOKEN-RING NETWORK DRIVER
3006P: Adam Fritzler
3007M: mid@auk.cx
3008L: linux-tr@linuxtr.net
3009W: http://www.auk.cx/tms380tr/
3010S: Maintained
3011
3012TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003013P: Valerie Henson
3014M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015L: tulip-users@lists.sourceforge.net
3016W: http://sourceforge.net/projects/tulip/
3017S: Maintained
3018
3019TUN/TAP driver
3020P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003021M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022L: vtun@office.satix.net
3023W: http://vtun.sourceforge.net/tun
3024S: Maintained
3025
3026U14-34F SCSI DRIVER
3027P: Dario Ballabio
3028M: ballabio_dario@emc.com
3029L: linux-scsi@vger.kernel.org
3030S: Maintained
3031
3032UDF FILESYSTEM
3033P: Ben Fennema
3034M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035W: http://linux-udf.sourceforge.net
3036S: Maintained
3037
3038UNIFORM CDROM DRIVER
3039P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003040M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041L: linux-kernel@vger.kernel.org
3042W: http://www.kernel.dk
3043S: Maintained
3044
3045USB ACM DRIVER
3046P: Oliver Neukum
3047M: oliver@neukum.name
3048L: linux-usb-users@lists.sourceforge.net
3049L: linux-usb-devel@lists.sourceforge.net
3050S: Maintained
3051
3052USB BLOCK DRIVER (UB ub)
3053P: Pete Zaitcev
3054M: zaitcev@redhat.com
3055L: linux-kernel@vger.kernel.org
3056L: linux-usb-devel@lists.sourceforge.net
3057S: Supported
3058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059USB CDC ETHERNET DRIVER
3060P: Greg Kroah-Hartman
3061M: greg@kroah.com
3062L: linux-usb-users@lists.sourceforge.net
3063L: linux-usb-devel@lists.sourceforge.net
3064S: Maintained
3065W: http://www.kroah.com/linux-usb/
3066
3067USB EHCI DRIVER
3068P: David Brownell
3069M: dbrownell@users.sourceforge.net
3070L: linux-usb-devel@lists.sourceforge.net
3071S: Maintained
3072
Luca Risolia7ce08c92006-01-11 02:06:59 +00003073USB ET61X[12]51 DRIVER
3074P: Luca Risolia
3075M: luca.risolia@studio.unibo.it
3076L: linux-usb-devel@lists.sourceforge.net
3077L: video4linux-list@redhat.com
3078W: http://www.linux-projects.org
3079S: Maintained
3080
David Brownell69ae9e32006-11-14 02:03:31 -08003081USB GADGET/PERIPHERAL SUBSYSTEM
3082P: David Brownell
3083M: dbrownell@users.sourceforge.net
3084L: linux-usb-devel@lists.sourceforge.net
3085W: http://www.linux-usb.org/gadget
3086S: Maintained
3087
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088USB HID/HIDBP DRIVERS
3089P: Vojtech Pavlik
3090M: vojtech@suse.cz
3091L: linux-usb-users@lists.sourceforge.net
3092L: linux-usb-devel@lists.sourceforge.net
3093S: Maintained
3094
3095USB HUB DRIVER
3096P: Johannes Erdfelt
3097M: johannes@erdfelt.com
3098L: linux-usb-users@lists.sourceforge.net
3099L: linux-usb-devel@lists.sourceforge.net
3100S: Maintained
3101
Olav Kongas959eea22005-11-03 17:38:14 +02003102USB ISP116X DRIVER
3103P: Olav Kongas
3104M: ok@artecdesign.ee
3105L: linux-usb-devel@lists.sourceforge.net
3106S: Maintained
3107
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108USB KAWASAKI LSI DRIVER
3109P: Oliver Neukum
3110M: oliver@neukum.name
3111L: linux-usb-users@lists.sourceforge.net
3112L: linux-usb-devel@lists.sourceforge.net
3113S: Maintained
3114
3115USB MASS STORAGE DRIVER
3116P: Matthew Dharm
3117M: mdharm-usb@one-eyed-alien.net
3118L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003119L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120S: Maintained
3121W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3122
3123USB OHCI DRIVER
3124P: Roman Weissgaerber
3125M: weissg@vienna.at
3126L: linux-usb-users@lists.sourceforge.net
3127L: linux-usb-devel@lists.sourceforge.net
3128S: Maintained
3129
Matthias Urlichsba460e42005-07-14 00:33:47 -07003130USB OPTION-CARD DRIVER
3131P: Matthias Urlichs
3132M: smurf@smurf.noris.de
3133L: linux-usb-devel@lists.sourceforge.net
3134S: Maintained
3135
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136USB OV511 DRIVER
3137P: Mark McClelland
3138M: mmcclell@bigfoot.com
3139L: linux-usb-users@lists.sourceforge.net
3140L: linux-usb-devel@lists.sourceforge.net
3141W: http://alpha.dyndns.org/ov511/
3142S: Maintained
3143
3144USB PEGASUS DRIVER
3145P: Petko Manolov
3146M: petkan@users.sourceforge.net
3147L: linux-usb-users@lists.sourceforge.net
3148L: linux-usb-devel@lists.sourceforge.net
3149W: http://pegasus2.sourceforge.net/
3150S: Maintained
3151
3152USB PRINTER DRIVER
3153P: Vojtech Pavlik
3154M: vojtech@suse.cz
3155L: linux-usb-users@lists.sourceforge.net
3156L: linux-usb-devel@lists.sourceforge.net
3157S: Maintained
3158
3159USB RTL8150 DRIVER
3160P: Petko Manolov
3161M: petkan@users.sourceforge.net
3162L: linux-usb-users@lists.sourceforge.net
3163L: linux-usb-devel@lists.sourceforge.net
3164W: http://pegasus2.sourceforge.net/
3165S: Maintained
3166
3167USB SE401 DRIVER
3168P: Jeroen Vreeken
3169M: pe1rxq@amsat.org
3170L: linux-usb-users@lists.sourceforge.net
3171L: linux-usb-devel@lists.sourceforge.net
3172W: http://www.chello.nl/~j.vreeken/se401/
3173S: Maintained
3174
3175USB SERIAL CYBERJACK DRIVER
3176P: Matthias Bruestle and Harald Welte
3177M: support@reiner-sct.com
3178W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3179S: Maintained
3180
3181USB SERIAL DIGI ACCELEPORT DRIVER
3182P: Peter Berger and Al Borchers
3183M: pberger@brimson.com
3184M: alborchers@steinerpoint.com
3185L: linux-usb-users@lists.sourceforge.net
3186L: linux-usb-devel@lists.sourceforge.net
3187S: Maintained
3188
3189USB SERIAL DRIVER
3190P: Greg Kroah-Hartman
3191M: gregkh@suse.de
3192L: linux-usb-users@lists.sourceforge.net
3193L: linux-usb-devel@lists.sourceforge.net
3194S: Supported
3195
3196USB SERIAL BELKIN F5U103 DRIVER
3197P: William Greathouse
3198M: wgreathouse@smva.com
3199L: linux-usb-users@lists.sourceforge.net
3200L: linux-usb-devel@lists.sourceforge.net
3201S: Maintained
3202
3203USB SERIAL CYPRESS M8 DRIVER
3204P: Lonnie Mendez
3205M: dignome@gmail.com
3206L: linux-usb-users@lists.sourceforge.net
3207L: linux-usb-devel@lists.sourceforge.net
3208S: Maintained
3209W: http://geocities.com/i0xox0i
3210W: http://firstlight.net/cvs
3211
3212USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3213L: linux-usb-users@lists.sourceforge.net
3214L: linux-usb-devel@lists.sourceforge.net
3215S: Maintained
3216
3217USB AUERSWALD DRIVER
3218P: Wolfgang Muees
3219M: wolfgang@iksw-muees.de
3220L: linux-usb-users@lists.sourceforge.net
3221L: linux-usb-devel@lists.sourceforge.net
3222S: Maintained
3223
3224USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3225P: Gary Brubaker
3226M: xavyer@ix.netcom.com
3227L: linux-usb-users@lists.sourceforge.net
3228L: linux-usb-devel@lists.sourceforge.net
3229S: Maintained
3230
3231USB SERIAL KEYSPAN DRIVER
3232P: Greg Kroah-Hartman
3233M: greg@kroah.com
3234L: linux-usb-users@lists.sourceforge.net
3235L: linux-usb-devel@lists.sourceforge.net
3236W: http://www.kroah.com/linux/
3237S: Maintained
3238
3239USB SERIAL WHITEHEAT DRIVER
3240P: Stuart MacDonald
3241M: stuartm@connecttech.com
3242L: linux-usb-users@lists.sourceforge.net
3243L: linux-usb-devel@lists.sourceforge.net
3244W: http://www.connecttech.com
3245S: Supported
3246
3247USB SN9C10x DRIVER
3248P: Luca Risolia
3249M: luca.risolia@studio.unibo.it
3250L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003251L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252W: http://www.linux-projects.org
3253S: Maintained
3254
3255USB SUBSYSTEM
3256P: Greg Kroah-Hartman
3257M: gregkh@suse.de
3258L: linux-usb-users@lists.sourceforge.net
3259L: linux-usb-devel@lists.sourceforge.net
3260W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003261T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262S: Supported
3263
3264USB UHCI DRIVER
3265P: Alan Stern
3266M: stern@rowland.harvard.edu
3267L: linux-usb-users@lists.sourceforge.net
3268L: linux-usb-devel@lists.sourceforge.net
3269S: Maintained
3270
David Brownell69ae9e32006-11-14 02:03:31 -08003271USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272P: David Brownell
3273M: dbrownell@users.sourceforge.net
3274L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003275W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276S: Maintained
3277
3278USB W996[87]CF DRIVER
3279P: Luca Risolia
3280M: luca.risolia@studio.unibo.it
3281L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003282L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283W: http://www.linux-projects.org
3284S: Maintained
3285
Luca Risolia60f78052006-02-06 16:29:35 +00003286USB ZC0301 DRIVER
3287P: Luca Risolia
3288M: luca.risolia@studio.unibo.it
3289L: linux-usb-devel@lists.sourceforge.net
3290L: video4linux-list@redhat.com
3291W: http://www.linux-projects.org
3292S: Maintained
3293
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294USB ZD1201 DRIVER
3295P: Jeroen Vreeken
3296M: pe1rxq@amsat.org
3297L: linux-usb-users@lists.sourceforge.net
3298L: linux-usb-devel@lists.sourceforge.net
3299W: http://linux-lc100020.sourceforge.net
3300S: Maintained
3301
3302USER-MODE LINUX
3303P: Jeff Dike
3304M: jdike@karaya.com
3305L: user-mode-linux-devel@lists.sourceforge.net
3306L: user-mode-linux-user@lists.sourceforge.net
3307W: http://user-mode-linux.sourceforge.net
3308S: Maintained
3309
3310FAT/VFAT/MSDOS FILESYSTEM:
3311P: OGAWA Hirofumi
3312M: hirofumi@mail.parknet.co.jp
3313L: linux-kernel@vger.kernel.org
3314S: Maintained
3315
3316VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3317P: Jeff Garzik
3318S: Odd fixes
3319
3320VIA RHINE NETWORK DRIVER
3321P: Roger Luethi
3322M: rl@hellgate.ch
3323S: Maintained
3324
Jean Delvare32c0a522005-09-22 21:47:58 +02003325VIAPRO SMBUS DRIVER
3326P: Jean Delvare
3327M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003328L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003329S: Maintained
3330
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331UCLINUX (AND M68KNOMMU)
3332P: Greg Ungerer
3333M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003335L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336S: Maintained
3337
3338UCLINUX FOR NEC V850
3339P: Miles Bader
3340M: uclinux-v850@lsi.nec.co.jp
3341W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3342W: http://www.ee.nec.de/uclinux/
3343S: Supported
3344
3345UCLINUX FOR RENESAS H8/300
3346P: Yoshinori Sato
3347M: ysato@users.sourceforge.jp
3348W: http://uclinux-h8.sourceforge.jp/
3349S: Supported
3350
3351USB DIAMOND RIO500 DRIVER
3352P: Cesar Miquel
3353M: miquel@df.uba.ar
3354L: rio500-users@lists.sourceforge.net
3355W: http://rio500.sourceforge.net
3356S: Maintained
3357
3358VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003359P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003360M: mchehab@infradead.org
3361M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003363W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003364T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003365S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Juerg Haefligerab413192006-09-24 20:54:04 +02003367VT1211 HARDWARE MONITOR DRIVER
3368P: Juerg Haefliger
3369M: juergh@gmail.com
3370L: lm-sensors@lm-sensors.org
3371S: Maintained
3372
Roger Lucas1de9e372005-11-26 20:20:05 +01003373VT8231 HARDWARE MONITOR DRIVER
3374P: Roger Lucas
3375M: roger@planbit.co.uk
3376L: lm-sensors@lm-sensors.org
3377S: Maintained
3378
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379W1 DALLAS'S 1-WIRE BUS
3380P: Evgeniy Polyakov
3381M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382S: Maintained
3383
Charles Spirakis13927072006-07-05 18:05:15 +02003384W83791D HARDWARE MONITORING DRIVER
3385P: Charles Spirakis
3386M: bezaur@gmail.com
3387L: lm-sensors@lm-sensors.org
3388S: Maintained
3389
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390W83L51xD SD/MMC CARD INTERFACE DRIVER
3391P: Pierre Ossman
3392M: drzeus-wbsd@drzeus.cx
3393L: wbsd-devel@list.drzeus.cx
3394W: http://projects.drzeus.cx/wbsd
3395S: Maintained
3396
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003397WATCHDOG DEVICE DRIVERS
3398P: Wim Van Sebroeck
3399M: wim@iguana.be
3400T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3401S: Maintained
3402
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3404P: Jean Tourrilhes
3405M: jt@hpl.hp.com
3406W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3407S: Maintained
3408
3409WD7000 SCSI DRIVER
3410P: Miroslav Zagorac
3411M: zaga@fly.cc.fer.hr
3412L: linux-scsi@vger.kernel.org
3413S: Maintained
3414
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003415WISTRON LAPTOP BUTTON DRIVER
3416P: Miloslav Trmac
3417M: mitr@volny.cz
3418S: Maintained
3419
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420WL3501 WIRELESS PCMCIA CARD DRIVER
3421P: Arnaldo Carvalho de Melo
3422M: acme@conectiva.com.br
3423W: http://advogato.org/person/acme
3424S: Maintained
3425
3426X.25 NETWORK LAYER
3427P: Henner Eisen
3428M: eis@baty.hanse.de
3429L: linux-x25@vger.kernel.org
3430S: Maintained
3431
3432XFS FILESYSTEM
3433P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003434P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003436L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003438T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439S: Supported
3440
3441X86 3-LEVEL PAGING (PAE) SUPPORT
3442P: Ingo Molnar
3443M: mingo@redhat.com
3444S: Maintained
3445
3446X86-64 port
3447P: Andi Kleen
3448M: ak@suse.de
3449L: discuss@x86-64.org
3450W: http://www.x86-64.org
3451S: Maintained
3452
3453YAM DRIVER FOR AX.25
3454P: Jean-Paul Roubelat
3455M: jpr@f6fbb.org
3456L: linux-hams@vger.kernel.org
3457S: Maintained
3458
Henkaf64a5e2005-10-12 15:02:56 +02003459YEALINK PHONE DRIVER
3460P: Henk Vergonet
3461M: Henk.Vergonet@gmail.com
3462L: usbb2k-api-dev@nongnu.org
3463S: Maintained
3464
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465Z8530 DRIVER FOR AX.25
3466P: Joerg Reuter
3467M: jreuter@yaina.de
3468W: http://yaina.de/jreuter/
3469W: http://www.qsl.net/dl1bke/
3470L: linux-hams@vger.kernel.org
3471S: Maintained
3472
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003473ZD1211RW WIRELESS DRIVER
3474P: Daniel Drake
3475M: dsd@gentoo.org
3476P: Ulrich Kunitz
3477M: kune@deine-taler.de
3478W: http://zd1211.ath.cx/wiki/DriverRewrite
3479L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3480S: Maintained
3481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482ZF MACHZ WATCHDOG
3483P: Fernando Fuganti
3484M: fuganti@netbank.com.br
3485W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3486S: Maintained
3487
3488ZR36067 VIDEO FOR LINUX DRIVER
3489P: Ronald Bultje
3490M: rbultje@ronald.bitfreak.net
3491L: mjpeg-users@lists.sourceforge.net
3492W: http://mjpeg.sourceforge.net/driver-zoran/
3493S: Maintained
3494
3495ZR36120 VIDEO FOR LINUX DRIVER
3496P: Pauline Middelink
3497M: middelin@polyware.nl
3498W: http://www.polyware.nl/~middelin/En/hobbies.html
3499W: http://www.polyware.nl/~middelin/hobbies.html
3500S: Maintained
3501
3502THE REST
3503P: Linus Torvalds
3504S: Buried alive in reporters