blob: 49e4f554d2117d21e3ce96e50bb6b1a5a78c0de7 [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
Jean Delvare7188cc62006-12-12 18:18:30 +0100280M: r.marek@assembler.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
Stelian Pop284f42b2006-12-12 18:18:31 +0100299AMS (Apple Motion Sensor) DRIVER
300P: Stelian Pop
301M: stelian@popies.net
302P: Michael Hanselmann
303M: linux-kernel@hansmi.ch
304S: Supported
305
Tom Tuckerf94b5332006-09-22 15:22:48 -0700306AMSO1100 RNIC DRIVER
307P: Tom Tucker
308M: tom@opengridcomputing.com
309P: Steve Wise
310M: swise@opengridcomputing.com
311L: openib-general@openib.org
312S: Maintained
313
Johannes Berg42269062006-07-25 16:15:50 +0200314AOA (Apple Onboard Audio) ALSA DRIVER
315P: Johannes Berg
316M: johannes@sipsolutions.net
317L: linuxppc-dev@ozlabs.org
318L: alsa-devel@alsa-project.org
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321APM DRIVER
322P: Stephen Rothwell
323M: sfr@canb.auug.org.au
324L: linux-laptop@vger.kernel.org
325W: http://www.canb.auug.org.au/~sfr/
326S: Supported
327
328APPLETALK NETWORK LAYER
329P: Arnaldo Carvalho de Melo
330M: acme@conectiva.com.br
331S: Maintained
332
Jaya Kumar1154ea72005-06-21 17:17:04 -0700333ARC FRAMEBUFFER DRIVER
334P: Jaya Kumar
335M: jayalk@intworks.biz
336S: Maintained
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338ARM26 ARCHITECTURE
339P: Ian Molton
340M: spyro@f2s.com
341S: Maintained
342
343ARM26/ARCHIMEDES
344P: Ian Molton
345M: spyro@f2s.com
346S: Maintained
347
348ARM26/A5000
349P: John Appleby
350M: john@dnsworld.co.uk
351S: Maintained
352
353ARM MFM AND FLOPPY DRIVERS
354P: Ian Molton
355M: spyro@f2s.com
356S: Maintained
357
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800358ARM/ADI ROADRUNNER MACHINE SUPPORT
359P: Lennert Buytenhek
360M: kernel@wantstofly.org
361L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
362S: Maintained
363
364ARM/ADS SPHERE MACHINE SUPPORT
365P: Lennert Buytenhek
366M: kernel@wantstofly.org
367L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
368S: Maintained
369
370ARM/AJECO 1ARM MACHINE SUPPORT
371P: Lennert Buytenhek
372M: kernel@wantstofly.org
373L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
374S: Maintained
375
Andrew Victord4a89c72006-12-04 13:56:21 +0100376ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
377P: Andrew Victor
378M: andrew@sanpeople.com
379L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
380W: http://maxim.org.za/at91_26.html
381S: Maintained
382
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800383ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
384P: Lennert Buytenhek
385M: kernel@wantstofly.org
386L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
387S: Maintained
388
389ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
390P: Lennert Buytenhek
391M: kernel@wantstofly.org
392L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
393S: Maintained
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395ARM/CORGI MACHINE SUPPORT
396P: Richard Purdie
397M: rpurdie@rpsys.net
398S: Maintained
399
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800400ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
401P: Lennert Buytenhek
402M: kernel@wantstofly.org
403L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
404S: Maintained
405
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100406ARM/HP JORNADA 7XX MACHINE SUPPORT
407P: Kristoffer Ericson
408M: kristoffer_e1@hotmail.com
409W: www.jlime.com
410S: Maintained
411
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800412ARM/INTEL IOP32X ARM ARCHITECTURE
413P: Lennert Buytenhek
414M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100415P: Dan Williams
416M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800417L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100418S: Supported
419
420ARM/INTEL IOP33X ARM ARCHITECTURE
421P: Dan Williams
422M: dan.j.williams@intel.com
423L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
424S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800425
426ARM/INTEL IOP13XX ARM ARCHITECTURE
427P: Lennert Buytenhek
428M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100429P: Dan Williams
430M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800431L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100432S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800433
434ARM/INTEL IQ81342EX MACHINE SUPPORT
435P: Lennert Buytenhek
436M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100437P: Dan Williams
438M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800439L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100440S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800441
442ARM/INTEL IXP2000 ARM ARCHITECTURE
443P: Lennert Buytenhek
444M: kernel@wantstofly.org
445L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
446S: Maintained
447
448ARM/INTEL IXDP2850 MACHINE SUPPORT
449P: Lennert Buytenhek
450M: kernel@wantstofly.org
451L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
452S: Maintained
453
454ARM/INTEL IXP23XX ARM ARCHITECTURE
455P: Lennert Buytenhek
456M: kernel@wantstofly.org
457L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
458S: Maintained
459
460ARM/INTEL XSC3 (MANZANO) ARM CORE
461P: Lennert Buytenhek
462M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100463P: Dan Williams
464M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800465L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100466S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800467
468ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
469P: Lennert Buytenhek
470M: kernel@wantstofly.org
471L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
472S: Maintained
473
474ARM/LOGICPD PXA270 MACHINE SUPPORT
475P: Lennert Buytenhek
476M: kernel@wantstofly.org
477L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
478S: Maintained
479
Dirk Opfer8459c152005-11-06 14:27:52 +0000480ARM/TOSA MACHINE SUPPORT
481P: Dirk Opfer
482M: dirk@opfer-online.de
483S: Maintained
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485ARM/PLEB SUPPORT
486P: Peter Chubb
487M: pleb@gelato.unsw.edu.au
488W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
489S: Maintained
490
491ARM/PT DIGITAL BOARD PORT
492P: Stefan Eletzhofer
493M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700494L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495W: http://www.arm.linux.org.uk/
496S: Maintained
497
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800498ARM/RADISYS ENP2611 MACHINE SUPPORT
499P: Lennert Buytenhek
500M: kernel@wantstofly.org
501L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
502S: Maintained
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504ARM/SHARK MACHINE SUPPORT
505P: Alexander Schulz
506M: alex@shark-linux.de
507W: http://www.shark-linux.de/shark.html
508S: Maintained
509
510ARM/STRONGARM110 PORT
511P: Russell King
512M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700513L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514W: http://www.arm.linux.org.uk/
515S: Maintained
516
517ARM/S3C2410 ARM ARCHITECTURE
518P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800519M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700520L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521W: http://www.fluff.org/ben/linux/
522S: Maintained
523
524ARM/S3C2440 ARM ARCHITECTURE
525P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800526M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700527L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528W: http://www.fluff.org/ben/linux/
529S: Maintained
530
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800531ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
532P: Lennert Buytenhek
533M: kernel@wantstofly.org
534L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
535S: Maintained
536
537ARM/THECUS N2100 MACHINE SUPPORT
538P: Lennert Buytenhek
539M: kernel@wantstofly.org
540L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
541S: Maintained
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543ARPD SUPPORT
544P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700545L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546S: Maintained
547
548ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500549P: Corentin Chary
550M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551P: Karol Kozimor
552M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553L: acpi4asus-user@lists.sourceforge.net
554W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500555W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556S: Maintained
557
558ATA OVER ETHERNET DRIVER
559P: Ed L. Cashin
560M: ecashin@coraid.com
561W: http://www.coraid.com/support/linux
562S: Supported
563
564ATM
565P: Chas Williams
566M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700567L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568W: http://linux-atm.sourceforge.net
569S: Maintained
570
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100571ATMEL MACB ETHERNET DRIVER
572P: Atmel AVR32 Support Team
573M: avr32@atmel.com
574P: Haavard Skinnemoen
575M: hskinnemoen@atmel.com
576S: Supported
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578ATMEL WIRELESS DRIVER
579P: Simon Kelley
580M: simon@thekelleys.org.uk
581W: http://www.thekelleys.org.uk/atmel
582W: http://atmelwlandriver.sourceforge.net/
583S: Maintained
584
Chris Wrighta92b7b82005-07-07 18:12:23 -0700585AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100586P: David Woodhouse
587M: dwmw2@infradead.org
588L: linux-audit@redhat.com
589W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800590T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700591S: Maintained
592
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700593AVR32 ARCHITECTURE
594P: Atmel AVR32 Support Team
595M: avr32@atmel.com
596P: Haavard Skinnemoen
597M: hskinnemoen@atmel.com
598W: http://www.atmel.com/products/AVR32/
599W: http://avr32linux.org/
600W: http://avrfreaks.net/
601S: Supported
602
603AVR32/AT32AP MACHINE SUPPORT
604P: Atmel AVR32 Support Team
605M: avr32@atmel.com
606P: Haavard Skinnemoen
607M: hskinnemoen@atmel.com
608S: Supported
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610AX.25 NETWORK LAYER
611P: Ralf Baechle
612M: ralf@linux-mips.org
613L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200614W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615S: Maintained
616
617BAYCOM/HDLCDRV DRIVERS FOR AX.25
618P: Thomas Sailer
619M: t.sailer@alumni.ethz.ch
620L: linux-hams@vger.kernel.org
621W: http://www.baycom.org/~tom/ham/ham.html
622S: Maintained
623
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200624BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
625P: Larry Finger
626M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200627P: Stefano Brivio
628M: st3@riseup.net
629W: http://bcm43xx.berlios.de/
630S: Maintained
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632BEFS FILE SYSTEM
633P: Sergey S. Kostyliov
634M: rathamahata@php4.ru
635L: linux-kernel@vger.kernel.org
636S: Maintained
637
638BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
639P: Kenji Hollis
640W: http://ftp.bitgate.com/pcwd/
641S: Maintained
642
643BFS FILE SYSTEM
644P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800645M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646L: linux-kernel@vger.kernel.org
647S: Maintained
648
649BLOCK LAYER
650P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200651M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800653T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654S: Maintained
655
656BLUETOOTH SUBSYSTEM
657P: Marcel Holtmann
658M: marcel@holtmann.org
659P: Maxim Krasnyansky
660M: maxk@qualcomm.com
661L: bluez-devel@lists.sf.net
662W: http://bluez.sf.net
663W: http://www.bluez.org
664W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800665T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666S: Maintained
667
668BLUETOOTH RFCOMM LAYER
669P: Marcel Holtmann
670M: marcel@holtmann.org
671P: Maxim Krasnyansky
672M: maxk@qualcomm.com
673S: Maintained
674
675BLUETOOTH BNEP LAYER
676P: Marcel Holtmann
677M: marcel@holtmann.org
678P: Maxim Krasnyansky
679M: maxk@qualcomm.com
680S: Maintained
681
682BLUETOOTH CMTP LAYER
683P: Marcel Holtmann
684M: marcel@holtmann.org
685S: Maintained
686
687BLUETOOTH HIDP LAYER
688P: Marcel Holtmann
689M: marcel@holtmann.org
690S: Maintained
691
692BLUETOOTH HCI UART DRIVER
693P: Marcel Holtmann
694M: marcel@holtmann.org
695P: Maxim Krasnyansky
696M: maxk@qualcomm.com
697S: Maintained
698
699BLUETOOTH HCI USB DRIVER
700P: Marcel Holtmann
701M: marcel@holtmann.org
702P: Maxim Krasnyansky
703M: maxk@qualcomm.com
704S: Maintained
705
706BLUETOOTH HCI BCM203X DRIVER
707P: Marcel Holtmann
708M: marcel@holtmann.org
709S: Maintained
710
711BLUETOOTH HCI BPA10X DRIVER
712P: Marcel Holtmann
713M: marcel@holtmann.org
714S: Maintained
715
716BLUETOOTH HCI BFUSB DRIVER
717P: Marcel Holtmann
718M: marcel@holtmann.org
719S: Maintained
720
721BLUETOOTH HCI DTL1 DRIVER
722P: Marcel Holtmann
723M: marcel@holtmann.org
724S: Maintained
725
726BLUETOOTH HCI BLUECARD DRIVER
727P: Marcel Holtmann
728M: marcel@holtmann.org
729S: Maintained
730
731BLUETOOTH HCI BT3C DRIVER
732P: Marcel Holtmann
733M: marcel@holtmann.org
734S: Maintained
735
736BLUETOOTH HCI BTUART DRIVER
737P: Marcel Holtmann
738M: marcel@holtmann.org
739S: Maintained
740
741BLUETOOTH HCI VHCI DRIVER
742P: Maxim Krasnyansky
743M: maxk@qualcomm.com
744S: Maintained
745
746BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100747P: Chad Tindel
748M: ctindel@users.sourceforge.net
749P: Jay Vosburgh
750M: fubar@us.ibm.com
751L: bonding-devel@lists.sourceforge.net
752W: http://sourceforge.net/projects/bonding/
753S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000755BROADBAND PROCESSOR ARCHITECTURE
756P: Arnd Bergmann
757M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100758L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400759W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000760S: Supported
761
Gary Zambrano39105892006-06-22 17:26:20 -0700762BROADCOM B44 10/100 ETHERNET DRIVER
763P: Gary Zambrano
764M: zambrano@broadcom.com
765L: netdev@vger.kernel.org
766S: Supported
767
Michael Chan948c51e2006-06-04 02:51:39 -0700768BROADCOM BNX2 GIGABIT ETHERNET DRIVER
769P: Michael Chan
770M: mchan@broadcom.com
771L: netdev@vger.kernel.org
772S: Supported
773
774BROADCOM TG3 GIGABIT ETHERNET DRIVER
775P: Michael Chan
776M: mchan@broadcom.com
777L: netdev@vger.kernel.org
778S: Supported
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700781P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200782M: mchehab@infradead.org
783M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700785W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200786T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700787S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200789CALGARY x86-64 IOMMU
790P: Muli Ben-Yehuda
791M: muli@il.ibm.com
792P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200793M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200794L: linux-kernel@vger.kernel.org
795L: discuss@x86-64.org
796S: Maintained
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798COMMON INTERNET FILE SYSTEM (CIFS)
799P: Steve French
800M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100801L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802L: samba-technical@lists.samba.org
803W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800804T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805S: Supported
806
Joel Becker7063fbf2005-12-15 14:29:43 -0800807CONFIGFS
808P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800809M: joel.becker@oracle.com
810L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800811S: Supported
812
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800813CIRRUS LOGIC EP93XX ETHERNET DRIVER
814P: Lennert Buytenhek
815M: kernel@wantstofly.org
816L: netdev@vger.kernel.org
817S: Maintained
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819CIRRUS LOGIC GENERIC FBDEV DRIVER
820P: Jeff Garzik
821M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800822L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823S: Odd Fixes
824
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800825CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
826P: Lennert Buytenhek
827M: kernel@wantstofly.org
828L: linux-usb-devel@lists.sourceforge.net
829S: Maintained
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
832P: Cirrus Logic Corporation (kernel 2.2 driver)
833M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
834P: Nils Faerber (port to kernel 2.4)
835M: Nils Faerber <nils@kernelconcepts.de>
836S: Maintained
837
838CODA FILE SYSTEM
839P: Jan Harkes
840M: jaharkes@cs.cmu.edu
841M: coda@cs.cmu.edu
842L: codalist@coda.cs.cmu.edu
843W: http://www.coda.cs.cmu.edu/
844S: Maintained
845
846COMPACTPCI HOTPLUG CORE
847P: Scott Murray
848M: scottm@somanetworks.com
849M: scott@spiteful.org
850L: pcihpd-discuss@lists.sourceforge.net
851S: Supported
852
853COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
854P: Scott Murray
855M: scottm@somanetworks.com
856M: scott@spiteful.org
857L: pcihpd-discuss@lists.sourceforge.net
858S: Supported
859
860COMPACTPCI HOTPLUG GENERIC DRIVER
861P: Scott Murray
862M: scottm@somanetworks.com
863M: scott@spiteful.org
864L: pcihpd-discuss@lists.sourceforge.net
865S: Supported
866
867COMPUTONE INTELLIPORT MULTIPORT CARD
868P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700869M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700871S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873COSA/SRP SYNC SERIAL DRIVER
874P: Jan "Yenya" Kasprzak
875M: kas@fi.muni.cz
876W: http://www.fi.muni.cz/~kas/cosa/
877S: Maintained
878
879CPU FREQUENCY DRIVERS
880P: Dave Jones
881M: davej@codemonkey.org.uk
882L: cpufreq@lists.linux.org.uk
883W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500884T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885S: Maintained
886
887CPUID/MSR DRIVER
888P: H. Peter Anvin
889M: hpa@zytor.com
890S: Maintained
891
Paul Jacksoned90fb42005-09-27 21:45:37 -0700892CPUSETS
893P: Paul Jackson
894P: Simon Derr
895M: pj@sgi.com
896M: simon.derr@bull.net
897L: linux-kernel@vger.kernel.org
898W: http://www.bullopensource.org/cpuset/
899S: Supported
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100902W: http://sourceforge.net/projects/cramfs/
903S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905CRIS PORT
906P: Mikael Starvik
907M: starvik@axis.com
908L: dev-etrax@axis.com
909W: http://developer.axis.com
910S: Maintained
911
912CRYPTO API
913P: Herbert Xu
914M: herbert@gondor.apana.org.au
915P: David S. Miller
916M: davem@davemloft.net
917L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800918T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919S: Maintained
920
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100921CS5535 Audio ALSA driver
922P: Jaya Kumar
923M: jayakumar.alsa@gmail.com
924S: Maintained
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926CYBERPRO FB DRIVER
927P: Russell King
928M: rmk@arm.linux.org.uk
929W: http://www.arm.linux.org.uk/
930S: Maintained
931
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700932CYBLAFB FRAMEBUFFER DRIVER
933P: Knut Petersen
934M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800935L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700936S: Maintained
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938CYCLADES 2X SYNC CARD DRIVER
939P: Arnaldo Carvalho de Melo
940M: acme@conectiva.com.br
941W: http://advogato.org/person/acme
942L: cycsyn-devel@bazar.conectiva.com.br
943S: Maintained
944
945CYCLADES ASYNC MUX DRIVER
946M: async@cyclades.com
947W: http://www.cyclades.com/
948S: Supported
949
950CYCLADES PC300 DRIVER
951M: pc300@cyclades.com
952W: http://www.cyclades.com/
953S: Supported
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955DAMA SLAVE for AX.25
956P: Joerg Reuter
957M: jreuter@yaina.de
958W: http://yaina.de/jreuter/
959W: http://www.qsl.net/dl1bke/
960L: linux-hams@vger.kernel.org
961S: Maintained
962
963DC395x SCSI driver
964P: Oliver Neukum
965M: oliver@neukum.name
966P: Ali Akcaagac
967M: aliakc@web.de
968P: Jamie Lenehan
969M: lenehan@twibble.org
970W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700971L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972L: http://lists.twibble.org/mailman/listinfo/dc395x/
973S: Maintained
974
975DC390/AM53C974 SCSI driver
976P: Kurt Garloff
977M: garloff@suse.de
978W: http://www.garloff.de/kurt/linux/dc390/
979P: Guennadi Liakhovetski
980M: g.liakhovetski@gmx.de
981S: Maintained
982
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700983DCCP PROTOCOL
984P: Arnaldo Carvalho de Melo
985M: acme@mandriva.com
986L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -0800987W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700988S: Maintained
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990DECnet NETWORK LAYER
991P: Patrick Caulfield
992M: patrick@tykepenguin.com
993W: http://linux-decnet.sourceforge.net
994L: linux-decnet-user@lists.sourceforge.net
995S: Maintained
996
997DEFXX FDDI NETWORK DRIVER
998P: Maciej W. Rozycki
999M: macro@linux-mips.org
1000S: Maintained
1001
1002DELL LAPTOP SMM DRIVER
1003P: Massimo Dal Zotto
1004M: dz@debian.org
1005W: http://www.debian.org/~dz/i8k/
1006S: Maintained
1007
Doug Warzecha90563ec2005-09-06 15:17:15 -07001008DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1009P: Doug Warzecha
1010M: Douglas_Warzecha@dell.com
1011S: Maintained
1012
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001013DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014P: Alasdair Kergon
1015L: dm-devel@redhat.com
1016W: http://sources.redhat.com/dm
1017S: Maintained
1018
1019DEVICE NUMBER REGISTRY
1020P: Torben Mathiasen
1021M: device@lanana.org
1022W: http://lanana.org/docs/device-list/index.html
1023L: linux-kernel@vger.kernel.org
1024S: Maintained
1025
1026DEVICE FILESYSTEM
1027S: Obsolete
1028
1029DIGI INTL. EPCA DRIVER
1030P: Digi International, Inc
1031M: Eng.Linux@digi.com
1032L: Eng.Linux@digi.com
1033W: http://www.digi.com
1034S: Orphaned
1035
1036DIGI RIGHTSWITCH NETWORK DRIVER
1037P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001038L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039W: http://www.digi.com
1040S: Orphaned
1041
1042DIRECTORY NOTIFICATION
1043P: Stephen Rothwell
1044M: sfr@canb.auug.org.au
1045L: linux-kernel@vger.kernel.org
1046S: Supported
1047
1048DISK GEOMETRY AND PARTITION HANDLING
1049P: Andries Brouwer
1050M: aeb@cwi.nl
1051W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1052W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1053W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1054S: Maintained
1055
1056DISKQUOTA:
1057P: Jan Kara
1058M: jack@suse.cz
1059L: linux-kernel@vger.kernel.org
1060S: Maintained
1061
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001062DISTRIBUTED LOCK MANAGER
1063P: Patrick Caulfield
1064M: pcaulfie@redhat.com
1065P: David Teigland
1066M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001067L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001068W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001069T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1070T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001071S: Supported
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1074P: Tobias Ringstrom
1075M: tori@unhappy.mine.nu
1076L: linux-kernel@vger.kernel.org
1077S: Maintained
1078
Martin Waitzba483d52005-06-17 13:20:59 -07001079DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001080P: Randy Dunlap
1081M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001082S: Maintained
1083
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001084DOCKING STATION DRIVER
1085P: Kristen Carlson Accardi
1086M: kristen.c.accardi@intel.com
1087L: linux-acpi@vger.kernel.org
1088S: Maintained
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090DOUBLETALK DRIVER
1091P: James R. Van Zandt
1092M: jrv@vanzandt.mv.com
1093L: blinux-list@redhat.com
1094S: Maintained
1095
1096DRIVER CORE, KOBJECTS, AND SYSFS
1097P: Greg Kroah-Hartman
1098M: gregkh@suse.de
1099L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001100T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101S: Supported
1102
1103DRM DRIVERS
1104P: David Airlie
1105M: airlied@linux.ie
1106L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001107T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108S: Maintained
1109
1110DSCC4 DRIVER
1111P: François Romieu
1112M: romieu@cogenit.fr
1113M: romieu@ensta.fr
1114S: Maintained
1115
1116DVB SUBSYSTEM AND DRIVERS
1117P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001118M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001120W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001121T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001122S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124EATA-DMA SCSI DRIVER
1125P: Michael Neuffer
1126L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1127S: Maintained
1128
1129EATA ISA/EISA/PCI SCSI DRIVER
1130P: Dario Ballabio
1131M: ballabio_dario@emc.com
1132L: linux-scsi@vger.kernel.org
1133S: Maintained
1134
1135EATA-PIO SCSI DRIVER
1136P: Michael Neuffer
1137M: mike@i-Connect.Net
1138L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1139S: Maintained
1140
1141EBTABLES
1142P: Bart De Schuymer
1143M: bart.de.schuymer@pandora.be
1144L: ebtables-user@lists.sourceforge.net
1145L: ebtables-devel@lists.sourceforge.net
1146W: http://ebtables.sourceforge.net/
1147S: Maintained
1148
Michael Halcrow237fead2006-10-04 02:16:22 -07001149ECRYPT FILE SYSTEM
1150P: Mike Halcrow, Phillip Hellewell
1151M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1152L: ecryptfs-devel@lists.sourceforge.net
1153W: http://ecryptfs.sourceforge.net/
1154S: Supported
1155
Alan Coxda9bb1d2006-01-18 17:44:13 -08001156EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001157P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001158M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001159L: bluesmoke-devel@lists.sourceforge.net
1160W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001161S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001162
1163EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001164P: Mark Gross
1165M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001166L: bluesmoke-devel@lists.sourceforge.net
1167W: bluesmoke.sourceforge.net
1168S: Maintained
1169
1170EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001171P: Doug Thompson
1172M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001173L: bluesmoke-devel@lists.sourceforge.net
1174W: bluesmoke.sourceforge.net
1175S: Maintained
1176
1177EDAC-R82600
1178P: Tim Small
1179M: tim@buttersideup.com
1180L: bluesmoke-devel@lists.sourceforge.net
1181W: bluesmoke.sourceforge.net
1182S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184EEPRO100 NETWORK DRIVER
1185P: Andrey V. Savochkin
1186M: saw@saw.sw.com.sg
1187S: Maintained
1188
Josh Triplett0bee8d22006-07-30 03:03:58 -07001189EFS FILESYSTEM
1190W: http://aeschi.ch.eu.org/efs/
1191S: Orphan
1192
Heiko J Schickfab97222006-09-22 15:22:22 -07001193EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1194P: Hoang-Nam Nguyen
1195M: hnguyen@de.ibm.com
1196P: Christoph Raisch
1197M: raisch@de.ibm.com
1198L: openib-general@openib.org
1199S: Supported
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201EMU10K1 SOUND DRIVER
1202P: James Courtier-Dutton
1203M: James@superbug.demon.co.uk
1204L: emu10k1-devel@lists.sourceforge.net
1205W: http://sourceforge.net/projects/emu10k1/
1206S: Maintained
1207
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001208EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001209P: James Smart
1210M: james.smart@emulex.com
1211L: linux-scsi@vger.kernel.org
1212W: http://sourceforge.net/projects/lpfcxxxx
1213S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215EPSON 1355 FRAMEBUFFER DRIVER
1216P: Christopher Hoover
1217M: ch@murgatroid.com, ch@hpl.hp.com
1218S: Maintained
1219
1220ETHEREXPRESS-16 NETWORK DRIVER
1221P: Philip Blundell
1222M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001223L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224S: Maintained
1225
1226ETHERNET BRIDGE
1227P: Stephen Hemminger
1228M: shemminger@osdl.org
1229L: bridge@osdl.org
1230W: http://bridge.sourceforge.net/
1231S: Maintained
1232
1233ETHERTEAM 16I DRIVER
1234P: Mika Kuoppala
1235M: miku@iki.fi
1236S: Maintained
1237
1238EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001239L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240S: Maintained
1241
1242EXT3 FILE SYSTEM
1243P: Stephen Tweedie, Andrew Morton
1244M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001245L: linux-ext4@vger.kernel.org
1246S: Maintained
1247
1248EXT4 FILE SYSTEM
1249P: Stephen Tweedie, Andrew Morton
1250M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1251L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252S: Maintained
1253
Jean Delvaree53004e2006-01-09 23:26:14 +01001254F71805F HARDWARE MONITORING DRIVER
1255P: Jean Delvare
1256M: khali@linux-fr.org
1257L: lm-sensors@lm-sensors.org
1258S: Maintained
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260FARSYNC SYNCHRONOUS DRIVER
1261P: Kevin Curtis
1262M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263W: http://www.farsite.co.uk/
1264S: Supported
1265
1266FRAMEBUFFER LAYER
1267P: Antonino Daplas
1268M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001269L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270W: http://linux-fbdev.sourceforge.net/
1271S: Maintained
1272
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001273FREESCALE SOC FS_ENET DRIVER
1274P: Pantelis Antoniou
1275M: pantelis.antoniou@gmail.com
1276P: Vitaly Bordug
1277M: vbordug@ru.mvista.com
1278L: linuxppc-embedded@ozlabs.org
1279L: netdev@vger.kernel.org
1280S: Maintained
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282FILE LOCKING (flock() and fcntl()/lockf())
1283P: Matthew Wilcox
1284M: matthew@wil.cx
1285L: linux-fsdevel@vger.kernel.org
1286S: Maintained
1287
1288FILESYSTEMS (VFS and infrastructure)
1289P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001290M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291S: Maintained
1292
1293FIRMWARE LOADER (request_firmware)
1294L: linux-kernel@vger.kernel.org
1295S: Orphan
1296
1297FPU EMULATOR
1298P: Bill Metzenthen
1299M: billm@suburbia.net
1300W: http://suburbia.net/~billm/floating-point/emulator/
1301S: Maintained
1302
1303FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1304P: Mike McLagan
1305M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001306L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307S: Maintained
1308
1309FREEVXFS FILESYSTEM
1310P: Christoph Hellwig
1311M: hch@infradead.org
1312W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1313S: Maintained
1314
1315FUJITSU FR-V PORT
1316P: David Howells
1317M: dhowells@redhat.com
1318S: Maintained
1319
Miklos Szeredi04578f12005-09-09 13:10:22 -07001320FUSE: FILESYSTEM IN USERSPACE
1321P: Miklos Szeredi
1322M: miklos@szeredi.hu
1323L: fuse-devel@lists.sourceforge.net
1324W: http://fuse.sourceforge.net/
1325S: Maintained
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1328P: Rik Faith
1329M: faith@cs.unc.edu
1330L: linux-scsi@vger.kernel.org
1331S: Odd fixes (e.g., new signatures)
1332
1333GDT SCSI DISK ARRAY CONTROLLER DRIVER
1334P: Achim Leubner
1335M: achim_leubner@adaptec.com
1336L: linux-scsi@vger.kernel.org
1337W: http://www.icp-vortex.com/
1338S: Supported
1339
1340GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1341P: Krzysztof Halasa
1342M: khc@pm.waw.pl
1343W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1344S: Maintained
1345
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001346GFS2 FILE SYSTEM
1347P: Steven Whitehouse
1348M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001349L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001350W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001351T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1352T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001353S: Supported
1354
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001355GIGASET ISDN DRIVERS
1356P: Hansjoerg Lipp
1357M: hjlipp@web.de
1358P: Tilman Schmidt
1359M: tilman@imap.cc
1360L: gigaset307x-common@lists.sourceforge.net
1361W: http://gigaset307x.sourceforge.net/
1362S: Maintained
1363
Jean Delvare5b543962005-08-15 19:51:02 +02001364HARDWARE MONITORING
1365P: Jean Delvare
1366M: khali@linux-fr.org
1367L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001368W: http://www.lm-sensors.org/
1369T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001370S: Maintained
1371
Michael Buesch844dd052006-06-26 00:24:59 -07001372HARDWARE RANDOM NUMBER GENERATOR CORE
1373P: Michael Buesch
1374M: mb@bu3sch.de
1375S: Maintained
1376
Robert Love860e1d62005-08-31 23:57:59 -04001377HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1378P: Robert Love
1379M: rlove@rlove.org
1380M: linux-kernel@vger.kernel.org
1381W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1382S: Maintained
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384HARMONY SOUND DRIVER
1385P: Kyle McMartin
1386M: kyle@parisc-linux.org
1387W: http://www.parisc-linux.org/~kyle/harmony/
1388L: parisc-linux@lists.parisc-linux.org
1389S: Maintained
1390
1391HAYES ESP SERIAL DRIVER
1392P: Andrew J. Robinson
1393M: arobinso@nyx.net
1394L: linux-kernel@vger.kernel.org
1395W: http://www.nyx.net/~arobinso
1396S: Maintained
1397
1398HFS FILESYSTEM
1399P: Roman Zippel
1400M: zippel@linux-m68k.org
1401L: linux-kernel@vger.kernel.org
1402S: Maintained
1403
1404HGA FRAMEBUFFER DRIVER
1405P: Ferenc Bakonyi
1406M: fero@drama.obuda.kando.hu
1407L: linux-nvidia@lists.surfsouth.com
1408W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1409S: Maintained
1410
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001411HID CORE LAYER
1412P: Jiri Kosina
1413M: jkosina@suse.cz
1414L: linux-input@atrey.karlin.mff.cuni.cz
1415S: Maintained
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417HIGH-SPEED SCC DRIVER FOR AX.25
1418P: Klaus Kudielka
1419M: klaus.kudielka@ieee.org
1420L: linux-hams@vger.kernel.org
1421W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1422S: Maintained
1423
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001424HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1425P: HighPoint Linux Team
1426M: linux@highpoint-tech.com
1427W: http://www.highpoint-tech.com
1428S: Supported
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430HIPPI
1431P: Jes Sorensen
1432M: jes@trained-monkey.org
1433L: linux-hippi@sunsite.dk
1434S: Maintained
1435
1436HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1437P: Chirag Kantharia
1438M: chirag.kantharia@hp.com
1439L: iss_storagedev@hp.com
1440S: Maintained
1441
1442HEWLETT-PACKARD SMART2 RAID DRIVER
1443P: Chirag Kantharia
1444M: chirag.kantharia@hp.com
1445L: iss_storagedev@hp.com
1446S: Maintained
1447
1448HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1449P: Mike Miller
1450M: mike.miller@hp.com
1451L: iss_storagedev@hp.com
1452S: Supported
1453
Jouni Malinenff1d2762005-05-12 22:54:16 -04001454HOST AP DRIVER
1455P: Jouni Malinen
1456M: jkmaline@cc.hut.fi
1457L: hostap@shmoo.com
1458W: http://hostap.epitest.fi/
1459S: Maintained
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1462P: Jaroslav Kysela
1463M: perex@suse.cz
1464S: Maintained
1465
Bob Piccob9b03322005-11-07 00:59:19 -08001466HPET: High Precision Event Timers driver (hpet.c)
1467P: Clemens Ladisch
1468M: clemens@ladisch.de
1469S: Maintained
1470
1471HPET: i386
1472P: Venkatesh Pallipadi (Venki)
1473M: venkatesh.pallipadi@intel.com
1474S: Maintained
1475
1476HPET: x86_64
1477P: Andi Kleen and Vojtech Pavlik
1478M: ak@muc.de and vojtech@suse.cz
1479S: Maintained
1480
1481HPET: ACPI hpet.c
1482P: Bob Picco
1483M: bob.picco@hp.com
1484S: Maintained
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486HPFS FILESYSTEM
1487P: Mikulas Patocka
1488M: mikulas@artax.karlin.mff.cuni.cz
1489W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1490S: Maintained
1491
1492HUGETLB FILESYSTEM
1493P: William Irwin
1494M: wli@holomorphy.com
1495S: Maintained
1496
Jean Delvare5b543962005-08-15 19:51:02 +02001497I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498P: Jean Delvare
1499M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001500L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001501T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502S: Maintained
1503
1504I2O
1505P: Markus Lidel
1506M: markus.lidel@shadowconnect.com
1507W: http://i2o.shadowconnect.com/
1508S: Maintained
1509
1510i386 BOOT CODE
1511P: Riley H. Williams
1512M: Riley@Williams.Name
1513L: Linux-Kernel@vger.kernel.org
1514S: Maintained
1515
1516i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1517P: Dave Jones
1518M: davej@codemonkey.org.uk
1519P: H. Peter Anvin
1520M: hpa@zytor.com
1521S: Maintained
1522
1523i810 TCO TIMER WATCHDOG
1524P: Nils Faerber
1525M: nils@kernelconcepts.de
1526W: http://www.kernelconcepts.de/
1527S: Maintained
1528
1529IA64 (Itanium) PLATFORM
1530P: Tony Luck
1531M: tony.luck@intel.com
1532L: linux-ia64@vger.kernel.org
1533W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001534T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535S: Maintained
1536
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001537IBM ACPI EXTRAS DRIVER
1538P: Henrique de Moraes Holschuh
1539M: ibm-acpi@hmh.eng.br
1540L: ibm-acpi-devel@lists.sourceforge.net
1541W: http://ibm-acpi.sourceforge.net
1542W: http://thinkwiki.org/wiki/Ibm-acpi
1543T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1544S: Maintained
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001547P: Jes Sorensen
1548M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549L: linux-altix@sgi.com
1550L: linux-ia64@vger.kernel.org
1551W: http://www.sgi.com/altix
1552S: Maintained
1553
1554IBM MCA SCSI SUBSYSTEM DRIVER
1555P: Michael Lang
1556M: langa2@kph.uni-mainz.de
1557W: http://www.uni-mainz.de/~langm000/linux.html
1558S: Maintained
1559
1560IBM Power Linux RAID adapter
1561P: Brian King
1562M: brking@us.ibm.com
1563S: Supported
1564
1565IBM ServeRAID RAID DRIVER
1566P: Jack Hammer
1567P: Dave Jeffery
1568M: ipslinux@adaptec.com
1569W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1570S: Supported
1571
1572IDE DRIVER [GENERAL]
1573P: Bartlomiej Zolnierkiewicz
1574M: B.Zolnierkiewicz@elka.pw.edu.pl
1575L: linux-kernel@vger.kernel.org
1576L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001577T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578S: Maintained
1579
1580IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001581P: Alan Cox
1582M: alan@lxorguk.ukuu.org.uk
1583L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584S: Maintained
1585
1586IDE/ATAPI FLOPPY DRIVERS
1587P: Paul Bristow
1588M: Paul Bristow <paul@paulbristow.net>
1589W: http://paulbristow.net/linux/idefloppy.html
1590L: linux-kernel@vger.kernel.org
1591S: Maintained
1592
1593IDE/ATAPI TAPE DRIVERS
1594P: Gadi Oxman
1595M: Gadi Oxman <gadio@netvision.net.il>
1596L: linux-kernel@vger.kernel.org
1597S: Maintained
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599IEEE 1394 SUBSYSTEM
1600P: Ben Collins
1601M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001602P: Stefan Richter
1603M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604L: linux1394-devel@lists.sourceforge.net
1605W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001606T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607S: Maintained
1608
Stefan Richter87730d02006-09-16 12:24:00 +02001609IEEE 1394 IPV4 DRIVER (eth1394)
1610P: Stefan Richter
1611M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001613S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615IEEE 1394 PCILYNX DRIVER
1616P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001617M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001618P: Stefan Richter
1619M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001621S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623IEEE 1394 RAW I/O DRIVER
1624P: Ben Collins
1625M: bcollins@debian.org
1626P: Dan Dennedy
1627M: dan@dennedy.org
1628L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001629S: Maintained
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631IMS TWINTURBO FRAMEBUFFER DRIVER
1632P: Paul Mundt
1633M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001634L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635S: Maintained
1636
1637INFINIBAND SUBSYSTEM
1638P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001639M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640P: Sean Hefty
1641M: mshefty@ichips.intel.com
1642P: Hal Rosenstock
1643M: halr@voltaire.com
1644L: openib-general@openib.org
1645W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001646T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647S: Supported
1648
1649INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001650P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001651M: dmitry.torokhov@gmail.com
1652M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653L: linux-input@atrey.karlin.mff.cuni.cz
1654L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001655T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656S: Maintained
1657
Robert Lovec9f04f52005-07-15 12:21:07 -04001658INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001659P: John McCutchan
1660M: ttb@tentacle.dhs.org
1661P: Robert Love
1662M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001663L: linux-kernel@vger.kernel.org
1664S: Maintained
1665
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001666INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001667P: Sylvain Meyer
1668M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001669L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001670S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001673P: Antonino Daplas
1674M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001675L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001676S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1679P: Ingo Molnar
1680M: mingo@redhat.com
1681S: Maintained
1682
1683INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1684P: Jeff Garzik
1685M: jgarzik@pobox.com
1686W: http://sourceforge.net/projects/gkernel/
1687S: Maintained
1688
1689INTEL IA32 MICROCODE UPDATE SUPPORT
1690P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001691M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692S: Maintained
1693
Michael Buesch844dd052006-06-26 00:24:59 -07001694INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1695P: Deepak Saxena
1696M: dsaxena@plexity.net
1697S: Maintained
1698
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001699INTEL IXP2000 ETHERNET DRIVER
1700P: Lennert Buytenhek
1701M: kernel@wantstofly.org
1702L: netdev@vger.kernel.org
1703S: Maintained
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705INTEL PRO/100 ETHERNET SUPPORT
1706P: John Ronciak
1707M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708P: Jesse Brandeburg
1709M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001710P: Jeff Kirsher
1711M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001712P: Auke Kok
1713M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714W: http://sourceforge.net/projects/e1000/
1715S: Supported
1716
1717INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1718P: Jeb Cramer
1719M: cramerj@intel.com
1720P: John Ronciak
1721M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001722P: Jesse Brandeburg
1723M: jesse.brandeburg@intel.com
1724P: Jeff Kirsher
1725M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001726P: Auke Kok
1727M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728W: http://sourceforge.net/projects/e1000/
1729S: Supported
1730
1731INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001732P: Jeff Kirsher
1733M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734P: Ayyappan Veeraiyan
1735M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736P: John Ronciak
1737M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001738P: Jesse Brandeburg
1739M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001740P: Auke Kok
1741M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742W: http://sourceforge.net/projects/e1000/
1743S: Supported
1744
James Ketrenos826d2ab2005-11-07 18:56:59 -06001745INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1746P: Yi Zhu
1747M: yi.zhu@intel.com
1748P: James Ketrenos
1749M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001750L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001751L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1752W: http://ipw2100.sourceforge.net
1753S: Supported
1754
1755INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1756P: Yi Zhu
1757M: yi.zhu@intel.com
1758P: James Ketrenos
1759M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001760L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001761L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1762W: http://ipw2200.sourceforge.net
1763S: Supported
1764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765IOC3 DRIVER
1766P: Ralf Baechle
1767M: ralf@linux-mips.org
1768L: linux-mips@linux-mips.org
1769S: Maintained
1770
1771IP MASQUERADING:
1772P: Juanjo Ciarlante
1773M: jjciarla@raiz.uncu.edu.ar
1774S: Maintained
1775
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001776IPATH DRIVER:
1777P: Bryan O'Sullivan
1778M: support@pathscale.com
1779L: openib-general@openib.org
1780S: Supported
1781
Corey Minyard4409ebe2006-04-20 02:43:12 -07001782IPMI SUBSYSTEM
1783P: Corey Minyard
1784M: minyard@acm.org
1785L: openipmi-developer@lists.sourceforge.net
1786W: http://openipmi.sourceforge.net/
1787S: Supported
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789IPX NETWORK LAYER
1790P: Arnaldo Carvalho de Melo
1791M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001792L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793S: Maintained
1794
1795IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001796P: Samuel Ortiz
1797M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001798L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001800S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802ISAPNP
1803P: Jaroslav Kysela
1804M: perex@suse.cz
1805S: Maintained
1806
1807ISDN SUBSYSTEM
1808P: Karsten Keil
1809M: kkeil@suse.de
1810P: Kai Germaschewski
1811M: kai.germaschewski@gmx.de
1812L: isdn4linux@listserv.isdn4linux.de
1813W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001814T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815S: Maintained
1816
1817ISDN SUBSYSTEM (Eicon active card driver)
1818P: Armin Schindler
1819M: mac@melware.de
1820L: isdn4linux@listserv.isdn4linux.de
1821W: http://www.melware.de
1822S: Maintained
1823
1824JOURNALLING FLASH FILE SYSTEM (JFFS)
1825P: Axis Communications AB
1826M: jffs-dev@axis.com
1827L: jffs-dev@axis.com
1828W: http://www.developer.axis.com/software/jffs/
1829S: Maintained
1830
1831JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1832P: David Woodhouse
1833M: dwmw2@infradead.org
1834L: jffs-dev@axis.com
1835W: http://sources.redhat.com/jffs2/
1836S: Maintained
1837
1838JFS FILESYSTEM
1839P: Dave Kleikamp
1840M: shaggy@austin.ibm.com
1841L: jfs-discussion@lists.sourceforge.net
1842W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001843T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844S: Supported
1845
Josh Triplettde456d32006-07-30 03:04:00 -07001846JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001847P: Stephen Tweedie, Andrew Morton
1848M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001849L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001850S: Maintained
1851
Rudolf Marek4660cb32006-10-08 22:01:26 +02001852K8TEMP HARDWARE MONITORING DRIVER
1853P: Rudolf Marek
1854M: r.marek@assembler.cz
1855L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856S: Maintained
1857
1858KCONFIG
1859P: Roman Zippel
1860M: zippel@linux-m68k.org
1861L: kbuild-devel@lists.sourceforge.net
1862S: Maintained
1863
Vivek Goyalea6c2082006-05-20 14:59:55 -07001864KDUMP
1865P: Vivek Goyal
1866M: vgoyal@in.ibm.com
1867P: Haren Myneni
1868M: hbabu@us.ibm.com
1869L: fastboot@lists.osdl.org
1870L: linux-kernel@vger.kernel.org
1871W: http://lse.sourceforge.net/kdump/
1872S: Maintained
1873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874KERNEL AUTOMOUNTER (AUTOFS)
1875P: H. Peter Anvin
1876M: hpa@zytor.com
1877L: autofs@linux.kernel.org
1878S: Odd Fixes
1879
1880KERNEL AUTOMOUNTER v4 (AUTOFS4)
1881P: Ian Kent
1882M: raven@themaw.net
1883L: autofs@linux.kernel.org
1884S: Maintained
1885
1886KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1887P: Kai Germaschewski
1888M: kai@germaschewski.name
1889P: Sam Ravnborg
1890M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001891T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892S: Maintained
1893
1894KERNEL JANITORS
1895P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001896L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898S: Maintained
1899
1900KERNEL NFSD
1901P: Neil Brown
1902M: neilb@cse.unsw.edu.au
1903L: nfs@lists.sourceforge.net
1904W: http://nfs.sourceforge.net/
1905W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1906S: Maintained
1907
Avi Kivity426d62e2006-12-13 00:34:03 -08001908KERNEL VIRTUAL MACHINE (KVM)
1909P: Avi Kivity
1910M: avi@qumranet.com
1911L: kvm-devel@lists.sourceforge.net
1912W: kvm.sourceforge.net
1913S: Supported
1914
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001915KEXEC
1916P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001917M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001918W: http://www.xmission.com/~ebiederm/files/kexec/
1919L: linux-kernel@vger.kernel.org
1920L: fastboot@osdl.org
1921S: Maintained
1922
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001923KPROBES
1924P: Prasanna S Panchamukhi
1925M: prasanna@in.ibm.com
1926P: Ananth N Mavinakayanahalli
1927M: ananth@in.ibm.com
1928P: Anil S Keshavamurthy
1929M: anil.s.keshavamurthy@intel.com
1930P: David S. Miller
1931M: davem@davemloft.net
1932L: linux-kernel@vger.kernel.org
1933S: Maintained
1934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001937S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939LASI 53c700 driver for PARISC
1940P: James E.J. Bottomley
1941M: James.Bottomley@HansenPartnership.com
1942L: linux-scsi@vger.kernel.org
1943S: Maintained
1944
Richard Purdie263de9b2006-05-15 09:44:16 -07001945LED SUBSYSTEM
1946P: Richard Purdie
1947M: rpurdie@rpsys.net
1948S: Maintained
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950LEGO USB Tower driver
1951P: Juergen Stuber
1952M: starblue@users.sourceforge.net
1953L: legousb-devel@lists.sourceforge.net
1954W: http://legousb.sourceforge.net/
1955S: Maintained
1956
1957LINUX FOR IBM pSERIES (RS/6000)
1958P: Paul Mackerras
1959M: paulus@au.ibm.com
1960W: http://www.ibm.com/linux/ltc/projects/ppc
1961S: Supported
1962
1963LINUX FOR NCR VOYAGER
1964P: James Bottomley
1965M: James.Bottomley@HansenPartnership.com
1966W: http://www.hansenpartnership.com/voyager
1967S: Maintained
1968
1969LINUX FOR POWERPC
1970P: Paul Mackerras
1971M: paulus@samba.org
1972W: http://www.penguinppc.org/
1973L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001974T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975S: Supported
1976
1977LINUX FOR POWER MACINTOSH
1978P: Benjamin Herrenschmidt
1979M: benh@kernel.crashing.org
1980W: http://www.penguinppc.org/
1981L: linuxppc-dev@ozlabs.org
1982S: Maintained
1983
1984LINUX FOR POWERPC EMBEDDED MPC52XX
1985P: Sylvain Munaut
1986M: tnt@246tNt.com
1987W: http://www.246tNt.com/mpc52xx/
1988W: http://www.penguinppc.org/
1989L: linuxppc-dev@ozlabs.org
1990L: linuxppc-embedded@ozlabs.org
1991S: Maintained
1992
1993LINUX FOR POWERPC EMBEDDED PPC4XX
1994P: Matt Porter
1995M: mporter@kernel.crashing.org
1996W: http://www.penguinppc.org/
1997L: linuxppc-embedded@ozlabs.org
1998S: Maintained
1999
Tom Rinie93adf12005-07-26 12:49:53 -07002000LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001P: Tom Rini
2002M: trini@kernel.crashing.org
2003W: http://www.penguinppc.org/
2004L: linuxppc-embedded@ozlabs.org
2005S: Maintained
2006
Tom Rinie93adf12005-07-26 12:49:53 -07002007LINUX FOR POWERPC EMBEDDED PPC8XX
2008P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002009M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002010W: http://www.penguinppc.org/
2011L: linuxppc-embedded@ozlabs.org
2012S: Maintained
2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002015P: Kumar Gala
2016M: galak@kernel.crashing.org
2017W: http://www.penguinppc.org/
2018L: linuxppc-embedded@ozlabs.org
2019S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Olof Johanssonab06ff32006-09-06 14:44:54 -05002021LINUX FOR POWERPC PA SEMI PWRFICIENT
2022P: Olof Johansson
2023M: olof@lixom.net
2024W: http://www.pasemi.com/
2025L: linuxppc-dev@ozlabs.org
2026S: Supported
2027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028LLC (802.2)
2029P: Arnaldo Carvalho de Melo
2030M: acme@conectiva.com.br
2031S: Maintained
2032
2033LINUX FOR 64BIT POWERPC
2034P: Paul Mackerras
2035M: paulus@samba.org
2036M: paulus@au.ibm.com
2037P: Anton Blanchard
2038M: anton@samba.org
2039M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002040W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002041L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042S: Supported
2043
2044LINUX SECURITY MODULE (LSM) FRAMEWORK
2045P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002046M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002047L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002049T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050S: Supported
2051
2052LM83 HARDWARE MONITOR DRIVER
2053P: Jean Delvare
2054M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002055L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056S: Maintained
2057
2058LM90 HARDWARE MONITOR DRIVER
2059P: Jean Delvare
2060M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002061L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062S: Maintained
2063
2064LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2065P: Richard Russon (FlatCap)
2066M: ldm@flatcap.org
2067L: ldm-devel@lists.sourceforge.net
2068W: http://ldm.sourceforge.net
2069S: Maintained
2070
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002071LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2072P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002073M: Eric.Moore@lsi.com
2074M: support@lsi.com
2075L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002076L: linux-scsi@vger.kernel.org
2077W: http://www.lsilogic.com/support
2078S: Supported
2079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2081P: Matthew Wilcox
2082M: matthew@wil.cx
2083L: linux-scsi@vger.kernel.org
2084S: Maintained
2085
2086M68K ARCHITECTURE
2087P: Geert Uytterhoeven
2088M: geert@linux-m68k.org
2089P: Roman Zippel
2090M: zippel@linux-m68k.org
2091L: linux-m68k@lists.linux-m68k.org
2092W: http://www.linux-m68k.org/
2093W: http://linux-m68k-cvs.ubb.ca/
2094S: Maintained
2095
2096M68K ON APPLE MACINTOSH
2097P: Joshua Thompson
2098M: funaho@jurai.org
2099W: http://www.mac.linux-m68k.org/
2100L: linux-mac68k@mac.linux-m68k.org
2101S: Maintained
2102
2103M68K ON HP9000/300
2104P: Philip Blundell
2105M: philb@gnu.org
2106W: http://www.tazenda.demon.co.uk/phil/linux-hp
2107S: Maintained
2108
2109MARVELL YUKON / SYSKONNECT DRIVER
2110P: Mirko Lindner
2111M: mlindner@syskonnect.de
2112P: Ralph Roesler
2113M: rroesler@syskonnect.de
2114W: http://www.syskonnect.com
2115S: Supported
2116
Michael Kerriskfaf16682005-07-31 22:34:47 -07002117MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002118P: Michael Kerrisk
2119M: mtk-manpages@gmx.net
2120W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2121S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002122
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002123MARVELL MV643XX ETHERNET DRIVER
2124P: Dale Farnsworth
2125M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002127M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002128L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002129S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131MATROX FRAMEBUFFER DRIVER
2132P: Petr Vandrovec
2133M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002134L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135S: Maintained
2136
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002137MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002138P: Neela Syam Kolli
2139M: Neela.Kolli@engenio.com
2140S: linux-scsi@vger.kernel.org
2141W: http://megaraid.lsilogic.com
2142S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002143
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002144MEMORY MANAGEMENT
2145L: linux-mm@kvack.org
2146L: linux-kernel@vger.kernel.org
2147W: http://www.linux-mm.org
2148S: Maintained
2149
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002150MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151P: David Woodhouse
2152M: dwmw2@infradead.org
2153W: http://www.linux-mtd.infradead.org/
2154L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002155T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156S: Maintained
2157
2158MICROTEK X6 SCANNER
2159P: Oliver Neukum
2160M: oliver@neukum.name
2161S: Maintained
2162
2163MIPS
2164P: Ralf Baechle
2165M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002166W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002168T: git www.linux-mips.org:/pub/scm/linux.git
2169S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171MISCELLANEOUS MCA-SUPPORT
2172P: James Bottomley
2173M: jejb@steeleye.com
2174L: linux-kernel@vger.kernel.org
2175S: Maintained
2176
2177MODULE SUPPORT
2178P: Rusty Russell
2179M: rusty@rustcorp.com.au
2180L: linux-kernel@vger.kernel.org
2181S: Maintained
2182
2183MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2184P: Stelian Pop
2185M: stelian@popies.net
2186W: http://popies.net/meye/
2187S: Maintained
2188
2189MOUSE AND MISC DEVICES [GENERAL]
2190P: Alessandro Rubini
2191M: rubini@ipvvis.unipv.it
2192L: linux-kernel@vger.kernel.org
2193S: Maintained
2194
Jiri Slabyd7354102006-12-08 02:38:35 -08002195MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2196P: Jiri Slaby
2197M: jirislaby@gmail.com
2198L: linux-kernel@vger.kernel.org
2199S: Maintained
2200
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002201MSI LAPTOP SUPPORT
2202P: Lennart Poettering
2203M: mzxreary@0pointer.de
2204L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2205W: http://0pointer.de/lennart/tchibo.html
2206S: Maintained
2207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208MTRR AND SIMILAR SUPPORT [i386]
2209P: Richard Gooch
2210M: rgooch@atnf.csiro.au
2211L: linux-kernel@vger.kernel.org
2212W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2213S: Maintained
2214
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002215MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2216P: Pierre Ossman
2217M: drzeus-mmc@drzeus.cx
2218L: linux-kernel@vger.kernel.org
2219S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221MULTISOUND SOUND DRIVER
2222P: Andrew Veliath
2223M: andrewtv@usa.net
2224S: Maintained
2225
Jiri Slabyd7354102006-12-08 02:38:35 -08002226MULTITECH MULTIPORT CARD (ISICOM)
2227P: Jiri Slaby
2228M: jirislaby@gmail.com
2229L: linux-kernel@vger.kernel.org
2230S: Maintained
2231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232NATSEMI ETHERNET DRIVER (DP8381x)
2233P: Tim Hockin
2234M: thockin@hockin.org
2235S: Maintained
2236
2237NCP FILESYSTEM
2238P: Petr Vandrovec
2239M: vandrove@vc.cvut.cz
2240L: linware@sh.cvut.cz
2241S: Maintained
2242
2243NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2244P: James E.J. Bottomley
2245M: James.Bottomley@HansenPartnership.com
2246L: linux-scsi@vger.kernel.org
2247S: Maintained
2248
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002249NETEM NETWORK EMULATOR
2250P: Stephen Hemminger
2251M: shemminger@osdl.org
2252L: netem@osdl.org
2253S: Maintained
2254
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255NETFILTER/IPTABLES/IPCHAINS
2256P: Rusty Russell
2257P: Marc Boucher
2258P: James Morris
2259P: Harald Welte
2260P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002261P: Patrick McHardy
2262M: kaber@trash.net
2263L: netfilter-devel@lists.netfilter.org
2264L: netfilter@lists.netfilter.org
2265L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266W: http://www.netfilter.org/
2267W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268S: Supported
2269
Paul Moore4cc67732006-09-25 15:57:13 -07002270NETLABEL
2271P: Paul Moore
2272M: paul.moore@hp.com
2273W: http://netlabel.sf.net
2274L: netdev@vger.kernel.org
2275S: Supported
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277NETROM NETWORK LAYER
2278P: Ralf Baechle
2279M: ralf@linux-mips.org
2280L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002281W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282S: Maintained
2283
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002284NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285P: Paul Clements
2286M: Paul.Clements@steeleye.com
2287S: Maintained
2288
2289NETWORK DEVICE DRIVERS
2290P: Andrew Morton
2291M: akpm@osdl.org
2292P: Jeff Garzik
2293M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002294L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002295T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296S: Maintained
2297
2298NETWORKING [GENERAL]
2299P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002300M: netdev@vger.kernel.org
2301L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002302W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303S: Maintained
2304
2305NETWORKING [IPv4/IPv6]
2306P: David S. Miller
2307M: davem@davemloft.net
2308P: Alexey Kuznetsov
2309M: kuznet@ms2.inr.ac.ru
2310P: Pekka Savola (ipv6)
2311M: pekkas@netcore.fi
2312P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002313M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314P: Hideaki YOSHIFUJI
2315M: yoshfuji@linux-ipv6.org
2316P: Patrick McHardy
2317M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002318L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002319T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320S: Maintained
2321
John W. Linville29f8f632006-01-18 14:52:48 -08002322NETWORKING [WIRELESS]
2323P: John W. Linville
2324M: linville@tuxdriver.com
2325L: netdev@vger.kernel.org
2326T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2327S: Maintained
2328
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002329NETXEN (1/10) GbE SUPPORT
2330P: Amit S. Kale
2331M: amitkale@netxen.com
2332L: netdev@vger.kernel.org
2333W: http://www.netxen.com
2334S: Supported
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336IPVS
2337P: Wensong Zhang
2338M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002339P: Simon Horman
2340M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341P: Julian Anastasov
2342M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002343L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344S: Maintained
2345
2346NFS CLIENT
2347P: Trond Myklebust
2348M: trond.myklebust@fys.uio.no
2349L: linux-kernel@vger.kernel.org
2350S: Maintained
2351
2352NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002353P: Jan-Pascal van Best
2354M: janpascal@vanbest.org
2355P: Andreas Mohr
2356M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002357L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358S: Maintained
2359
2360NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2361P: YOKOTA Hiroshi
2362M: yokota@netlab.is.tsukuba.ac.jp
2363W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2364S: Maintained
2365
2366NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2367P: GOTO Masanori
2368M: gotom@debian.or.jp
2369P: YOKOTA Hiroshi
2370M: yokota@netlab.is.tsukuba.ac.jp
2371W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2372S: Maintained
2373
2374NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2375P: Eberhard Moenkeberg
2376M: emoenke@gwdg.de
2377L: linux-kernel@vger.kernel.org
2378S: Maintained
2379
2380NTFS FILESYSTEM
2381P: Anton Altaparmakov
2382M: aia21@cantab.net
2383L: linux-ntfs-dev@lists.sourceforge.net
2384L: linux-kernel@vger.kernel.org
2385W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002386T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387S: Maintained
2388
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002389NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002390P: Antonino Daplas
2391M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002392L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002393S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002395OPENCORES I2C BUS DRIVER
2396P: Peter Korsgaard
2397M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002398L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002399S: Maintained
2400
Mark Fashehccd979b2005-12-15 14:31:24 -08002401ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2402P: Mark Fasheh
2403M: mark.fasheh@oracle.com
2404P: Kurt Hackel
2405M: kurt.hackel@oracle.com
2406L: ocfs2-devel@oss.oracle.com
2407W: http://oss.oracle.com/projects/ocfs2/
2408S: Supported
2409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410OLYMPIC NETWORK DRIVER
2411P: Peter De Shrijver
2412M: p2@ace.ulyssis.student.kuleuven.ac.be
2413P: Mike Phillips
2414M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002415L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416L: linux-tr@linuxtr.net
2417W: http://www.linuxtr.net
2418S: Maintained
2419
Harald Weltec1986ee2005-11-13 16:06:29 -08002420OMNIKEY CARDMAN 4000 DRIVER
2421P: Harald Welte
2422M: laforge@gnumonks.org
2423S: Maintained
2424
Harald Welte77c44ab2005-11-13 16:06:26 -08002425OMNIKEY CARDMAN 4040 DRIVER
2426P: Harald Welte
2427M: laforge@gnumonks.org
2428S: Maintained
2429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430ONSTREAM SCSI TAPE DRIVER
2431P: Willem Riede
2432M: osst@riede.org
2433L: osst-users@lists.sourceforge.net
2434L: linux-scsi@vger.kernel.org
2435S: Maintained
2436
2437OPL3-SA2, SA3, and SAx DRIVER
2438P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002439M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440L: linux-sound@vger.kernel.org
2441S: Maintained
2442
2443OPROFILE
2444P: Philippe Elie
2445M: phil.el@wanadoo.fr
2446L: oprofile-list@lists.sf.net
2447S: Maintained
2448
2449ORINOCO DRIVER
2450P: Pavel Roskin
2451M: proski@gnu.org
2452P: David Gibson
2453M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002454L: orinoco-users@lists.sourceforge.net
2455L: orinoco-devel@lists.sourceforge.net
2456W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457S: Maintained
2458
2459PARALLEL PORT SUPPORT
2460P: Phil Blundell
2461M: philb@gnu.org
2462P: Tim Waugh
2463M: tim@cyberelk.net
2464P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465P: Andrea Arcangeli
2466M: andrea@suse.de
2467L: linux-parport@lists.infradead.org
2468W: http://people.redhat.com/twaugh/parport/
2469S: Maintained
2470
2471PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2472P: Tim Waugh
2473M: tim@cyberelk.net
2474L: linux-parport@lists.infradead.org
2475W: http://www.torque.net/linux-pp.html
2476S: Maintained
2477
2478PARISC ARCHITECTURE
2479P: Matthew Wilcox
2480M: matthew@wil.cx
2481P: Grant Grundler
2482M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002483P: Kyle McMartin
2484M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485L: parisc-linux@parisc-linux.org
2486W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002487T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2488T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489S: Maintained
2490
Jim Cromie1662d322006-10-06 00:43:59 -07002491PC87360 HARDWARE MONITORING DRIVER
2492P: Jim Cromie
2493M: jim.cromie@gmail.com
2494L: lm-sensors@lm-sensors.org
2495S: Maintained
2496
2497PC8736x GPIO DRIVER
2498P: Jim Cromie
2499M: jim.cromie@gmail.com
2500S: Maintained
2501
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002502PCI ERROR RECOVERY
2503P: Linas Vepstas
2504M: linas@austin.ibm.com
2505L: linux-kernel@vger.kernel.org
2506L: linux-pci@atrey.karlin.mff.cuni.cz
2507S: Supported
2508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2510P: Thomas Sailer
2511M: sailer@ife.ee.ethz.ch
2512L: linux-sound@vger.kernel.org
2513W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2514S: Maintained
2515
2516PCI SUBSYSTEM
2517P: Greg Kroah-Hartman
2518M: gregkh@suse.de
2519L: linux-kernel@vger.kernel.org
2520L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002521T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522S: Supported
2523
2524PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002525P: Kristen Carlson Accardi
2526M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527S: Supported
2528
2529PCI HOTPLUG COMPAQ DRIVER
2530P: Greg Kroah-Hartman
2531M: greg@kroah.com
2532S: Maintained
2533
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002534PCIE HOTPLUG DRIVER
2535P: Kristen Carlson Accardi
2536M: kristen.c.accardi@intel.com
2537L: pcihpd-discuss@lists.sourceforge.net
2538S: Maintained
2539
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002541P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002542L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002544T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002545S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547PCNET32 NETWORK DRIVER
2548P: Thomas Bogendörfer
2549M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002550L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551S: Maintained
2552
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002553PER-TASK DELAY ACCOUNTING
2554P: Shailabh Nagar
2555M: nagar@watson.ibm.com
2556L: linux-kernel@vger.kernel.org
2557S: Maintained
2558
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002559PERSONALITY HANDLING
2560P: Christoph Hellwig
2561M: hch@infradead.org
2562L: linux-abi-devel@lists.sourceforge.net
2563S: Maintained
2564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565PHRAM MTD DRIVER
2566P: Jörn Engel
2567M: joern@wh.fh-wedel.de
2568L: linux-mtd@lists.infradead.org
2569S: Maintained
2570
Peter Osterlund249a6772005-09-27 21:45:30 -07002571PKTCDVD DRIVER
2572P: Peter Osterlund
2573M: petero2@telia.com
2574L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002575S: Maintained
2576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577POSIX CLOCKS and TIMERS
2578P: George Anzinger
2579M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002580L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581S: Supported
2582
Eugene Surovegin24682972005-10-14 03:00:53 -07002583POWERPC 4xx EMAC DRIVER
2584P: Eugene Surovegin
2585M: ebs@ebshome.net
2586W: http://kernel.ebshome.net/emac/
2587L: linuxppc-embedded@ozlabs.org
2588L: netdev@vger.kernel.org
2589S: Maintained
2590
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591PNP SUPPORT
2592P: Adam Belay
2593M: ambx1@neo.rr.com
2594S: Maintained
2595
Vitaly Wool999445d2007-01-04 13:07:03 +01002596PNXxxxx I2C DRIVER
2597P: Vitaly Wool
2598M: vitalywool@gmail.com
2599L: i2c@lm-sensors.org
2600S: Maintained
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602PPP PROTOCOL DRIVERS AND COMPRESSORS
2603P: Paul Mackerras
2604M: paulus@samba.org
2605L: linux-ppp@vger.kernel.org
2606S: Maintained
2607
2608PPP OVER ATM (RFC 2364)
2609P: Mitchell Blank Jr
2610M: mitch@sfgoth.com
2611S: Maintained
2612
2613PPP OVER ETHERNET
2614P: Michal Ostrowski
2615M: mostrows@speakeasy.net
2616S: Maintained
2617
2618PREEMPTIBLE KERNEL
2619P: Robert Love
2620M: rml@tech9.net
2621L: linux-kernel@vger.kernel.org
2622L: kpreempt-tech@lists.sourceforge.net
2623W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2624S: Supported
2625
2626PRISM54 WIRELESS DRIVER
2627P: Prism54 Development Team
2628M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002629L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630W: http://prism54.org
2631S: Maintained
2632
2633PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2634P: Peter Denison
2635M: promise@pnd-pc.demon.co.uk
2636W: http://www.pnd-pc.demon.co.uk/promise/
2637S: Maintained
2638
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002639PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2640P: Mikael Pettersson
2641M: mikpe@it.uu.se
2642L: linux-ide@vger.kernel.org
2643S: Maintained
2644
Geoff Levandf58a9d12006-11-23 00:46:51 +01002645PS3 PLATFORM SUPPORT
2646P: Geoff Levand
2647M: geoffrey.levand@am.sony.com
2648L: linuxppc-dev@ozlabs.org
2649L: cbe-oss-dev@ozlabs.org
2650S: Supported
2651
Michael Krufky83202042006-07-03 00:24:18 -07002652PVRUSB2 VIDEO4LINUX DRIVER
2653P: Mike Isely
2654M: isely@pobox.com
2655L: pvrusb2@isely.net
2656L: video4linux-list@redhat.com
2657W: http://www.isely.net/pvrusb2/
2658S: Maintained
2659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660PXA2xx SUPPORT
2661P: Nicolas Pitre
2662M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002663L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664S: Maintained
2665
2666QLOGIC QLA2XXX FC-SCSI DRIVER
2667P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002668M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669L: linux-scsi@vger.kernel.org
2670S: Supported
2671
Ron Mercer5a4faa872006-07-25 00:40:21 -07002672QLOGIC QLA3XXX NETWORK DRIVER
2673P: Ron Mercer
2674M: linux-driver@qlogic.com
2675L: netdev@vger.kernel.org
2676S: Supported
2677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678QNX4 FILESYSTEM
2679P: Anders Larsen
2680M: al@alarsen.net
2681L: linux-kernel@vger.kernel.org
2682W: http://www.alarsen.net/linux/qnx4fs/
2683S: Maintained
2684
2685RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002686P: Benjamin Herrenschmidt
2687M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002688L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689S: Maintained
2690
2691RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002692P: Paul Mackerras
2693M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002694L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695S: Maintained
2696
2697RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2698P: Corey Thomas
2699M: corey@world.std.com
2700L: linux-kernel@vger.kernel.org
2701S: Maintained
2702
Matt Mackall9e95ce22005-04-16 15:25:56 -07002703RANDOM NUMBER DRIVER
2704P: Matt Mackall
2705M: mpm@selenic.com
2706S: Maintained
2707
Matt Porter394b7012005-11-07 01:00:15 -08002708RAPIDIO SUBSYSTEM
2709P: Matt Porter
2710M: mporter@kernel.crashing.org
2711L: linux-kernel@vger.kernel.org
2712S: Maintained
2713
Josh Triplett595182b2006-10-04 02:17:21 -07002714READ-COPY UPDATE (RCU)
2715P: Dipankar Sarma
2716M: dipankar@in.ibm.com
2717W: http://www.rdrop.com/users/paulmck/rclock/
2718L: linux-kernel@vger.kernel.org
2719S: Supported
2720
2721RCUTORTURE MODULE
2722P: Josh Triplett
2723M: josh@freedesktop.org
2724L: linux-kernel@vger.kernel.org
2725S: Maintained
2726
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727REAL TIME CLOCK DRIVER
2728P: Paul Gortmaker
2729M: p_gortmaker@yahoo.com
2730L: linux-kernel@vger.kernel.org
2731S: Maintained
2732
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002733REAL TIME CLOCK (RTC) SUBSYSTEM
2734P: Alessandro Zummo
2735M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002736L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002737S: Maintained
2738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739REISERFS FILE SYSTEM
2740P: Hans Reiser
2741M: reiserfs-dev@namesys.com
2742L: reiserfs-list@namesys.com
2743W: http://www.namesys.com
2744S: Supported
2745
2746ROCKETPORT DRIVER
2747P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748W: http://www.comtrol.com
2749S: Maintained
2750
2751ROSE NETWORK LAYER
2752P: Ralf Baechle
2753M: ralf@linux-mips.org
2754L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002755W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756S: Maintained
2757
2758RISCOM8 DRIVER
2759S: Orphan
2760
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002761S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002762P: Antonino Daplas
2763M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002764L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002765S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767S390
2768P: Martin Schwidefsky
2769M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002770P: Heiko Carstens
2771M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772M: linux390@de.ibm.com
2773L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002774W: http://www.ibm.com/developerworks/linux/linux390/
2775S: Supported
2776
2777S390 NETWORK DRIVERS
2778P: Frank Pavlic
2779M: fpavlic@de.ibm.com
2780M: linux390@de.ibm.com
2781L: linux-390@vm.marist.edu
2782W: http://www.ibm.com/developerworks/linux/linux390/
2783S: Supported
2784
2785S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002786P: Swen Schillig
2787M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002788M: linux390@de.ibm.com
2789L: linux-390@vm.marist.edu
2790W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791S: Supported
2792
2793SAA7146 VIDEO4LINUX-2 DRIVER
2794P: Michael Hunold
2795M: michael@mihu.de
2796W: http://www.mihu.de/linux/saa7146
2797S: Maintained
2798
2799SBPCD CDROM DRIVER
2800P: Eberhard Moenkeberg
2801M: emoenke@gwdg.de
2802L: linux-kernel@vger.kernel.org
2803S: Maintained
2804
2805SC1200 WDT DRIVER
2806P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002807M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808S: Maintained
2809
2810SCHEDULER
2811P: Ingo Molnar
2812M: mingo@elte.hu
2813P: Robert Love [the preemptible kernel bits]
2814M: rml@tech9.net
2815L: linux-kernel@vger.kernel.org
2816S: Maintained
2817
2818SCSI CDROM DRIVER
2819P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002820M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821L: linux-scsi@vger.kernel.org
2822W: http://www.kernel.dk
2823S: Maintained
2824
2825SCSI SG DRIVER
2826P: Doug Gilbert
2827M: dgilbert@interlog.com
2828L: linux-scsi@vger.kernel.org
2829W: http://www.torque.net/sg
2830S: Maintained
2831
2832SCSI SUBSYSTEM
2833P: James E.J. Bottomley
2834M: James.Bottomley@SteelEye.com
2835L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002836T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837S: Maintained
2838
2839SCSI TAPE DRIVER
2840P: Kai Mäkisara
2841M: Kai.Makisara@kolumbus.fi
2842L: linux-scsi@vger.kernel.org
2843S: Maintained
2844
2845SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002846P: Sridhar Samudrala
2847M: sri@us.ibm.com
2848L: lksctp-developers@lists.sourceforge.net
2849S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
2851SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002852P: Jim Cromie
2853M: jim.cromie@gmail.com
2854S: Odd Fixes
2855
2856SCx200 GPIO DRIVER
2857P: Jim Cromie
2858M: jim.cromie@gmail.com
2859S: Maintained
2860
2861SCx200 HRT CLOCKSOURCE DRIVER
2862P: Jim Cromie
2863M: jim.cromie@gmail.com
2864S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866SECURITY CONTACT
2867P: Security Officers
2868M: security@kernel.org
2869S: Supported
2870
2871SELINUX SECURITY MODULE
2872P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002873M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002875M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876L: linux-kernel@vger.kernel.org (kernel issues)
2877L: selinux@tycho.nsa.gov (general discussion)
2878W: http://www.nsa.gov/selinux
2879S: Supported
2880
2881SERIAL ATA (SATA) SUBSYSTEM:
2882P: Jeff Garzik
2883M: jgarzik@pobox.com
2884L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002885T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886S: Supported
2887
2888SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2889P: Pat Gefre
2890M: pfg@sgi.com
2891L: linux-ia64@vger.kernel.org
2892S: Supported
2893
2894SGI VISUAL WORKSTATION 320 AND 540
2895P: Andrey Panin
2896M: pazke@donpac.ru
2897L: linux-visws-devel@lists.sf.net
2898W: http://linux-visws.sf.net
2899S: Maintained for 2.6.
2900
2901SIMTEC EB110ATX (Chalice CATS)
2902P: Ben Dooks
2903P: Vincent Sanders
2904M: support@simtec.co.uk
2905W: http://www.simtec.co.uk/products/EB110ATX/
2906S: Supported
2907
2908SIMTEC EB2410ITX (BAST)
2909P: Ben Dooks
2910P: Vincent Sanders
2911M: support@simtec.co.uk
2912W: http://www.simtec.co.uk/products/EB2410ITX/
2913S: Supported
2914
Francois Romieu92aab3c2005-07-30 13:11:18 +02002915SIS 190 ETHERNET DRIVER
2916P: Francois Romieu
2917M: romieu@fr.zoreil.com
2918L: netdev@vger.kernel.org
2919S: Maintained
2920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921SIS 5513 IDE CONTROLLER DRIVER
2922P: Lionel Bouton
2923M: Lionel.Bouton@inet6.fr
2924W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2925W: http://gyver.homeip.net/sis5513/index.html
2926S: Maintained
2927
2928SIS 900/7016 FAST ETHERNET DRIVER
2929P: Daniele Venzano
2930M: venza@brownhat.org
2931W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002932L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933S: Maintained
2934
2935SIS FRAMEBUFFER DRIVER
2936P: Thomas Winischhofer
2937M: thomas@winischhofer.net
2938W: http://www.winischhofer.net/linuxsisvga.shtml
2939S: Maintained
2940
2941SIS USB2VGA DRIVER
2942P: Thomas Winischhofer
2943M: thomas@winischhofer.net
2944W: http://www.winischhofer.at/linuxsisusbvga.shtml
2945S: Maintained
2946
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947SMC91x ETHERNET DRIVER
2948P: Nicolas Pitre
2949M: nico@cam.org
2950S: Maintained
2951
Daniel Drake8f0f8502006-07-18 22:00:25 +01002952SOFTMAC LAYER (IEEE 802.11)
2953P: Johannes Berg
2954M: johannes@sipsolutions.net
2955P: Joe Jezak
2956M: josejx@gentoo.org
2957P: Daniel Drake
2958M: dsd@gentoo.org
2959W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002960L: netdev@vger.kernel.org
2961S: Maintained
2962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963SOFTWARE RAID (Multiple Disks) SUPPORT
2964P: Ingo Molnar
2965M: mingo@redhat.com
2966P: Neil Brown
2967M: neilb@cse.unsw.edu.au
2968L: linux-raid@vger.kernel.org
2969S: Maintained
2970
2971SOFTWARE SUSPEND:
2972P: Pavel Machek
2973M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002974L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975S: Maintained
2976
2977SONIC NETWORK DRIVER
2978P: Thomas Bogendoerfer
2979M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002980L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981S: Maintained
2982
2983SONY VAIO CONTROL DEVICE DRIVER
2984P: Stelian Pop
2985M: stelian@popies.net
2986W: http://popies.net/sonypi/
2987S: Maintained
2988
2989SOUND
2990P: Jaroslav Kysela
2991M: perex@suse.cz
2992L: alsa-devel@alsa-project.org
2993S: Maintained
2994
Kumar Gala025c3982006-04-02 16:05:54 -05002995SPI SUBSYSTEM
2996P: David Brownell
2997M: dbrownell@users.sourceforge.net
2998L: spi-devel-general@lists.sourceforge.net
2999S: Maintained
3000
Steven Rostedt855f46a2006-08-05 12:14:50 -07003001STABLE BRANCH:
3002P: Greg Kroah-Hartman
3003M: greg@kroah.com
3004P: Chris Wright
3005M: chrisw@sous-sol.org
3006L: stable@kernel.org
3007S: Maintained
3008
Kylene Hall1c72d462005-05-01 08:59:13 -07003009TPM DEVICE DRIVER
3010P: Kylene Hall
3011M: kjhall@us.ibm.com
3012W: http://tpmdd.sourceforge.net
3013L: tpmdd-devel@lists.sourceforge.net
3014S: Maintained
3015
Mark Gross1a80ba82005-10-30 15:02:55 -08003016Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003017P: Mark Gross
3018M: mark.gross@intel.com
3019S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003020
Chris Zankel48b415c2005-06-23 22:01:07 -07003021TENSILICA XTENSA PORT (xtensa):
3022P: Chris Zankel
3023M: chris@zankel.net
3024S: Maintained
3025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026UltraSPARC (sparc64):
3027P: David S. Miller
3028M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003030T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031S: Maintained
3032
3033SHARP LH SUPPORT (LH7952X & LH7A40X)
3034P: Marc Singer
3035M: elf@buici.com
3036W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003037L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038S: Maintained
3039
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003040SHPC HOTPLUG DRIVER
3041P: Kristen Carlson Accardi
3042M: kristen.c.accardi@intel.com
3043L: pcihpd-discuss@lists.sourceforge.net
3044S: Maintained
3045
Pierre Ossmand129bce2006-03-24 03:18:17 -08003046SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3047P: Pierre Ossman
3048M: drzeus-sdhci@drzeus.cx
3049L: sdhci-devel@list.drzeus.cx
3050W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3051S: Maintained
3052
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003053SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3054P: Stephen Hemminger
3055M: shemminger@osdl.org
3056L: netdev@vger.kernel.org
3057S: Maintained
3058
Chris Boot1a87d942006-07-10 04:45:34 -07003059SOEKRIS NET48XX LED SUPPORT
3060P: Chris Boot
3061M: bootc@bootc.net
3062S: Maintained
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064SPARC (sparc32):
3065P: William L. Irwin
3066M: wli@holomorphy.com
3067L: sparclinux@vger.kernel.org
3068S: Maintained
3069
3070SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3071P: Roger Wolff
3072M: R.E.Wolff@BitWizard.nl
3073L: linux-kernel@vger.kernel.org ?
3074S: Supported
3075
Jim Lewis2752e402006-09-29 02:01:19 -07003076SPIDERNET NETWORK DRIVER for CELL
3077P: Jim Lewis
3078M: jim@jklewis.com
3079L: netdev@vger.kernel.org
3080S: Supported
3081
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082SRM (Alpha) environment access
3083P: Jan-Benedict Glaw
3084M: jbglaw@lug-owl.de
3085L: linux-kernel@vger.kernel.org
3086S: Maintained
3087
3088STARFIRE/DURALAN NETWORK DRIVER
3089P: Ion Badulescu
3090M: ionut@cs.columbia.edu
3091S: Maintained
3092
3093STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3094W: http://mosquitonet.Stanford.EDU/strip.html
3095S: Unsupported ?
3096
3097STRADIS MPEG-2 DECODER DRIVER
3098P: Nathan Laredo
3099M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100W: http://www.stradis.com/
3101S: Maintained
3102
3103SUPERH (sh)
3104P: Paul Mundt
3105M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003106L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108S: Maintained
3109
3110SUPERH64 (sh64)
3111P: Paul Mundt
3112M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113L: linuxsh-shmedia-dev@lists.sourceforge.net
3114W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115S: Maintained
3116
3117SUN3/3X
3118P: Sam Creasey
3119M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120W: http://sammy.net/sun3/
3121S: Maintained
3122
3123SVGA HANDLING
3124P: Martin Mares
3125M: mj@ucw.cz
3126L: linux-video@atrey.karlin.mff.cuni.cz
3127S: Maintained
3128
3129SYSV FILESYSTEM
3130P: Christoph Hellwig
3131M: hch@infradead.org
3132S: Maintained
3133
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003134TC CLASSIFIER
3135P: Jamal Hadi Salim
3136M: hadi@cyberus.ca
3137L: netdev@vger.kernel.org
3138S: Maintained
3139
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003140TCP LOW PRIORITY MODULE
3141P: Wong Hoi Sing, Edison
3142M: hswong3i@gmail.com
3143P: Hung Hing Lun, Mike
3144M: hlhung3i@gmail.com
3145W: http://tcp-lp-mod.sourceforge.net/
3146S: Maintained
3147
Alex Dubov4020f2d2006-10-04 02:15:37 -07003148TI FLASH MEDIA INTERFACE DRIVER
3149P: Alex Dubov
3150M: oakad@yahoo.com
3151S: Maintained
3152
Michael Buesch844dd052006-06-26 00:24:59 -07003153TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3154P: Deepak Saxena
3155M: dsaxena@plexity.net
3156S: Maintained
3157
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003158TASKSTATS STATISTICS INTERFACE
3159P: Shailabh Nagar
3160M: nagar@watson.ibm.com
3161L: linux-kernel@vger.kernel.org
3162S: Maintained
3163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003165P: Romain Lievin
3166M: roms@lpg.ticalc.org
3167S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
Per Lidene86eaa32006-01-12 16:45:18 +01003169TIPC NETWORK LAYER
3170P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003171M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003172P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003173M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003174P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003175M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003176L: tipc-discussion@lists.sourceforge.net
3177W: http://tipc.sourceforge.net/
3178W: http://tipc.cslab.ericsson.net/
3179T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3180S: Maintained
3181
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182TLAN NETWORK DRIVER
3183P: Samuel Chessman
3184M: chessman@tux.org
3185L: tlan-devel@lists.sourceforge.net
3186W: http://sourceforge.net/projects/tlan/
3187S: Maintained
3188
3189TOKEN-RING NETWORK DRIVER
3190P: Mike Phillips
3191M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003192L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193L: linux-tr@linuxtr.net
3194W: http://www.linuxtr.net
3195S: Maintained
3196
3197TOSHIBA ACPI EXTRAS DRIVER
3198P: John Belmonte
3199M: toshiba_acpi@memebeam.org
3200W: http://memebeam.org/toys/ToshibaAcpiDriver
3201S: Maintained
3202
3203TOSHIBA SMM DRIVER
3204P: Jonathan Buzzard
3205M: jonathan@buzzard.org.uk
3206L: tlinux-users@tce.toshiba-dme.co.jp
3207W: http://www.buzzard.org.uk/toshiba/
3208S: Maintained
3209
3210TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3211P: Muli Ben-Yehuda
3212M: mulix@mulix.org
3213L: linux-kernel@vger.kernel.org
3214S: Maintained
3215
3216TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003217P: Adrian Bunk
3218M: trivial@kernel.org
3219L: linux-kernel@vger.kernel.org
3220W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3221T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3222S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
3224TMS380 TOKEN-RING NETWORK DRIVER
3225P: Adam Fritzler
3226M: mid@auk.cx
3227L: linux-tr@linuxtr.net
3228W: http://www.auk.cx/tms380tr/
3229S: Maintained
3230
3231TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003232P: Valerie Henson
3233M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234L: tulip-users@lists.sourceforge.net
3235W: http://sourceforge.net/projects/tulip/
3236S: Maintained
3237
3238TUN/TAP driver
3239P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003240M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241L: vtun@office.satix.net
3242W: http://vtun.sourceforge.net/tun
3243S: Maintained
3244
3245U14-34F SCSI DRIVER
3246P: Dario Ballabio
3247M: ballabio_dario@emc.com
3248L: linux-scsi@vger.kernel.org
3249S: Maintained
3250
3251UDF FILESYSTEM
3252P: Ben Fennema
3253M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254W: http://linux-udf.sourceforge.net
3255S: Maintained
3256
3257UNIFORM CDROM DRIVER
3258P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003259M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260L: linux-kernel@vger.kernel.org
3261W: http://www.kernel.dk
3262S: Maintained
3263
3264USB ACM DRIVER
3265P: Oliver Neukum
3266M: oliver@neukum.name
3267L: linux-usb-users@lists.sourceforge.net
3268L: linux-usb-devel@lists.sourceforge.net
3269S: Maintained
3270
3271USB BLOCK DRIVER (UB ub)
3272P: Pete Zaitcev
3273M: zaitcev@redhat.com
3274L: linux-kernel@vger.kernel.org
3275L: linux-usb-devel@lists.sourceforge.net
3276S: Supported
3277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278USB CDC ETHERNET DRIVER
3279P: Greg Kroah-Hartman
3280M: greg@kroah.com
3281L: linux-usb-users@lists.sourceforge.net
3282L: linux-usb-devel@lists.sourceforge.net
3283S: Maintained
3284W: http://www.kroah.com/linux-usb/
3285
3286USB EHCI DRIVER
3287P: David Brownell
3288M: dbrownell@users.sourceforge.net
3289L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003290S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291
Luca Risolia7ce08c92006-01-11 02:06:59 +00003292USB ET61X[12]51 DRIVER
3293P: Luca Risolia
3294M: luca.risolia@studio.unibo.it
3295L: linux-usb-devel@lists.sourceforge.net
3296L: video4linux-list@redhat.com
3297W: http://www.linux-projects.org
3298S: Maintained
3299
David Brownell69ae9e32006-11-14 02:03:31 -08003300USB GADGET/PERIPHERAL SUBSYSTEM
3301P: David Brownell
3302M: dbrownell@users.sourceforge.net
3303L: linux-usb-devel@lists.sourceforge.net
3304W: http://www.linux-usb.org/gadget
3305S: Maintained
3306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307USB HID/HIDBP DRIVERS
3308P: Vojtech Pavlik
3309M: vojtech@suse.cz
3310L: linux-usb-users@lists.sourceforge.net
3311L: linux-usb-devel@lists.sourceforge.net
3312S: Maintained
3313
3314USB HUB DRIVER
3315P: Johannes Erdfelt
3316M: johannes@erdfelt.com
3317L: linux-usb-users@lists.sourceforge.net
3318L: linux-usb-devel@lists.sourceforge.net
3319S: Maintained
3320
Olav Kongas959eea22005-11-03 17:38:14 +02003321USB ISP116X DRIVER
3322P: Olav Kongas
3323M: ok@artecdesign.ee
3324L: linux-usb-devel@lists.sourceforge.net
3325S: Maintained
3326
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327USB KAWASAKI LSI DRIVER
3328P: Oliver Neukum
3329M: oliver@neukum.name
3330L: linux-usb-users@lists.sourceforge.net
3331L: linux-usb-devel@lists.sourceforge.net
3332S: Maintained
3333
3334USB MASS STORAGE DRIVER
3335P: Matthew Dharm
3336M: mdharm-usb@one-eyed-alien.net
3337L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003338L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339S: Maintained
3340W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3341
3342USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003343P: David Brownell
3344M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345L: linux-usb-users@lists.sourceforge.net
3346L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003347S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
Matthias Urlichsba460e42005-07-14 00:33:47 -07003349USB OPTION-CARD DRIVER
3350P: Matthias Urlichs
3351M: smurf@smurf.noris.de
3352L: linux-usb-devel@lists.sourceforge.net
3353S: Maintained
3354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355USB OV511 DRIVER
3356P: Mark McClelland
3357M: mmcclell@bigfoot.com
3358L: linux-usb-users@lists.sourceforge.net
3359L: linux-usb-devel@lists.sourceforge.net
3360W: http://alpha.dyndns.org/ov511/
3361S: Maintained
3362
3363USB PEGASUS DRIVER
3364P: Petko Manolov
3365M: petkan@users.sourceforge.net
3366L: linux-usb-users@lists.sourceforge.net
3367L: linux-usb-devel@lists.sourceforge.net
3368W: http://pegasus2.sourceforge.net/
3369S: Maintained
3370
3371USB PRINTER DRIVER
3372P: Vojtech Pavlik
3373M: vojtech@suse.cz
3374L: linux-usb-users@lists.sourceforge.net
3375L: linux-usb-devel@lists.sourceforge.net
3376S: Maintained
3377
3378USB RTL8150 DRIVER
3379P: Petko Manolov
3380M: petkan@users.sourceforge.net
3381L: linux-usb-users@lists.sourceforge.net
3382L: linux-usb-devel@lists.sourceforge.net
3383W: http://pegasus2.sourceforge.net/
3384S: Maintained
3385
3386USB SE401 DRIVER
3387P: Jeroen Vreeken
3388M: pe1rxq@amsat.org
3389L: linux-usb-users@lists.sourceforge.net
3390L: linux-usb-devel@lists.sourceforge.net
3391W: http://www.chello.nl/~j.vreeken/se401/
3392S: Maintained
3393
3394USB SERIAL CYBERJACK DRIVER
3395P: Matthias Bruestle and Harald Welte
3396M: support@reiner-sct.com
3397W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3398S: Maintained
3399
3400USB SERIAL DIGI ACCELEPORT DRIVER
3401P: Peter Berger and Al Borchers
3402M: pberger@brimson.com
3403M: alborchers@steinerpoint.com
3404L: linux-usb-users@lists.sourceforge.net
3405L: linux-usb-devel@lists.sourceforge.net
3406S: Maintained
3407
3408USB SERIAL DRIVER
3409P: Greg Kroah-Hartman
3410M: gregkh@suse.de
3411L: linux-usb-users@lists.sourceforge.net
3412L: linux-usb-devel@lists.sourceforge.net
3413S: Supported
3414
3415USB SERIAL BELKIN F5U103 DRIVER
3416P: William Greathouse
3417M: wgreathouse@smva.com
3418L: linux-usb-users@lists.sourceforge.net
3419L: linux-usb-devel@lists.sourceforge.net
3420S: Maintained
3421
3422USB SERIAL CYPRESS M8 DRIVER
3423P: Lonnie Mendez
3424M: dignome@gmail.com
3425L: linux-usb-users@lists.sourceforge.net
3426L: linux-usb-devel@lists.sourceforge.net
3427S: Maintained
3428W: http://geocities.com/i0xox0i
3429W: http://firstlight.net/cvs
3430
3431USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3432L: linux-usb-users@lists.sourceforge.net
3433L: linux-usb-devel@lists.sourceforge.net
3434S: Maintained
3435
3436USB AUERSWALD DRIVER
3437P: Wolfgang Muees
3438M: wolfgang@iksw-muees.de
3439L: linux-usb-users@lists.sourceforge.net
3440L: linux-usb-devel@lists.sourceforge.net
3441S: Maintained
3442
3443USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3444P: Gary Brubaker
3445M: xavyer@ix.netcom.com
3446L: linux-usb-users@lists.sourceforge.net
3447L: linux-usb-devel@lists.sourceforge.net
3448S: Maintained
3449
3450USB SERIAL KEYSPAN DRIVER
3451P: Greg Kroah-Hartman
3452M: greg@kroah.com
3453L: linux-usb-users@lists.sourceforge.net
3454L: linux-usb-devel@lists.sourceforge.net
3455W: http://www.kroah.com/linux/
3456S: Maintained
3457
3458USB SERIAL WHITEHEAT DRIVER
3459P: Stuart MacDonald
3460M: stuartm@connecttech.com
3461L: linux-usb-users@lists.sourceforge.net
3462L: linux-usb-devel@lists.sourceforge.net
3463W: http://www.connecttech.com
3464S: Supported
3465
3466USB SN9C10x DRIVER
3467P: Luca Risolia
3468M: luca.risolia@studio.unibo.it
3469L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003470L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471W: http://www.linux-projects.org
3472S: Maintained
3473
3474USB SUBSYSTEM
3475P: Greg Kroah-Hartman
3476M: gregkh@suse.de
3477L: linux-usb-users@lists.sourceforge.net
3478L: linux-usb-devel@lists.sourceforge.net
3479W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003480T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481S: Supported
3482
3483USB UHCI DRIVER
3484P: Alan Stern
3485M: stern@rowland.harvard.edu
3486L: linux-usb-users@lists.sourceforge.net
3487L: linux-usb-devel@lists.sourceforge.net
3488S: Maintained
3489
David Brownell69ae9e32006-11-14 02:03:31 -08003490USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491P: David Brownell
3492M: dbrownell@users.sourceforge.net
3493L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003494W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495S: Maintained
3496
3497USB W996[87]CF DRIVER
3498P: Luca Risolia
3499M: luca.risolia@studio.unibo.it
3500L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003501L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502W: http://www.linux-projects.org
3503S: Maintained
3504
Luca Risolia60f78052006-02-06 16:29:35 +00003505USB ZC0301 DRIVER
3506P: Luca Risolia
3507M: luca.risolia@studio.unibo.it
3508L: linux-usb-devel@lists.sourceforge.net
3509L: video4linux-list@redhat.com
3510W: http://www.linux-projects.org
3511S: Maintained
3512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513USB ZD1201 DRIVER
3514P: Jeroen Vreeken
3515M: pe1rxq@amsat.org
3516L: linux-usb-users@lists.sourceforge.net
3517L: linux-usb-devel@lists.sourceforge.net
3518W: http://linux-lc100020.sourceforge.net
3519S: Maintained
3520
3521USER-MODE LINUX
3522P: Jeff Dike
3523M: jdike@karaya.com
3524L: user-mode-linux-devel@lists.sourceforge.net
3525L: user-mode-linux-user@lists.sourceforge.net
3526W: http://user-mode-linux.sourceforge.net
3527S: Maintained
3528
3529FAT/VFAT/MSDOS FILESYSTEM:
3530P: OGAWA Hirofumi
3531M: hirofumi@mail.parknet.co.jp
3532L: linux-kernel@vger.kernel.org
3533S: Maintained
3534
3535VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3536P: Jeff Garzik
3537S: Odd fixes
3538
3539VIA RHINE NETWORK DRIVER
3540P: Roger Luethi
3541M: rl@hellgate.ch
3542S: Maintained
3543
Jean Delvare32c0a522005-09-22 21:47:58 +02003544VIAPRO SMBUS DRIVER
3545P: Jean Delvare
3546M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003547L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003548S: Maintained
3549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550UCLINUX (AND M68KNOMMU)
3551P: Greg Ungerer
3552M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003554L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555S: Maintained
3556
3557UCLINUX FOR NEC V850
3558P: Miles Bader
3559M: uclinux-v850@lsi.nec.co.jp
3560W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3561W: http://www.ee.nec.de/uclinux/
3562S: Supported
3563
3564UCLINUX FOR RENESAS H8/300
3565P: Yoshinori Sato
3566M: ysato@users.sourceforge.jp
3567W: http://uclinux-h8.sourceforge.jp/
3568S: Supported
3569
3570USB DIAMOND RIO500 DRIVER
3571P: Cesar Miquel
3572M: miquel@df.uba.ar
3573L: rio500-users@lists.sourceforge.net
3574W: http://rio500.sourceforge.net
3575S: Maintained
3576
3577VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003578P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003579M: mchehab@infradead.org
3580M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003582W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003583T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003584S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
Juerg Haefligerab413192006-09-24 20:54:04 +02003586VT1211 HARDWARE MONITOR DRIVER
3587P: Juerg Haefliger
3588M: juergh@gmail.com
3589L: lm-sensors@lm-sensors.org
3590S: Maintained
3591
Roger Lucas1de9e372005-11-26 20:20:05 +01003592VT8231 HARDWARE MONITOR DRIVER
3593P: Roger Lucas
3594M: roger@planbit.co.uk
3595L: lm-sensors@lm-sensors.org
3596S: Maintained
3597
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598W1 DALLAS'S 1-WIRE BUS
3599P: Evgeniy Polyakov
3600M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601S: Maintained
3602
Charles Spirakis13927072006-07-05 18:05:15 +02003603W83791D HARDWARE MONITORING DRIVER
3604P: Charles Spirakis
3605M: bezaur@gmail.com
3606L: lm-sensors@lm-sensors.org
3607S: Maintained
3608
Rudolf Marek61db0112006-12-12 18:18:30 +01003609W83793 HARDWARE MONITORING DRIVER
3610P: Rudolf Marek
3611M: r.marek@assembler.cz
3612L: lm-sensors@lm-sensors.org
3613S: Maintained
3614
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615W83L51xD SD/MMC CARD INTERFACE DRIVER
3616P: Pierre Ossman
3617M: drzeus-wbsd@drzeus.cx
3618L: wbsd-devel@list.drzeus.cx
3619W: http://projects.drzeus.cx/wbsd
3620S: Maintained
3621
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003622WATCHDOG DEVICE DRIVERS
3623P: Wim Van Sebroeck
3624M: wim@iguana.be
3625T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3626S: Maintained
3627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3629P: Jean Tourrilhes
3630M: jt@hpl.hp.com
3631W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3632S: Maintained
3633
3634WD7000 SCSI DRIVER
3635P: Miroslav Zagorac
3636M: zaga@fly.cc.fer.hr
3637L: linux-scsi@vger.kernel.org
3638S: Maintained
3639
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003640WISTRON LAPTOP BUTTON DRIVER
3641P: Miloslav Trmac
3642M: mitr@volny.cz
3643S: Maintained
3644
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645WL3501 WIRELESS PCMCIA CARD DRIVER
3646P: Arnaldo Carvalho de Melo
3647M: acme@conectiva.com.br
3648W: http://advogato.org/person/acme
3649S: Maintained
3650
3651X.25 NETWORK LAYER
3652P: Henner Eisen
3653M: eis@baty.hanse.de
3654L: linux-x25@vger.kernel.org
3655S: Maintained
3656
3657XFS FILESYSTEM
3658P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003659P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003661L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003663T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664S: Supported
3665
Peter Korsgaard238b8722006-12-06 20:35:17 -08003666XILINX UARTLITE SERIAL DRIVER
3667P: Peter Korsgaard
3668M: jacmet@sunsite.dk
3669L: linux-serial@vger.kernel.org
3670S: Maintained
3671
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672X86 3-LEVEL PAGING (PAE) SUPPORT
3673P: Ingo Molnar
3674M: mingo@redhat.com
3675S: Maintained
3676
3677X86-64 port
3678P: Andi Kleen
3679M: ak@suse.de
3680L: discuss@x86-64.org
3681W: http://www.x86-64.org
3682S: Maintained
3683
3684YAM DRIVER FOR AX.25
3685P: Jean-Paul Roubelat
3686M: jpr@f6fbb.org
3687L: linux-hams@vger.kernel.org
3688S: Maintained
3689
Henkaf64a5e2005-10-12 15:02:56 +02003690YEALINK PHONE DRIVER
3691P: Henk Vergonet
3692M: Henk.Vergonet@gmail.com
3693L: usbb2k-api-dev@nongnu.org
3694S: Maintained
3695
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696Z8530 DRIVER FOR AX.25
3697P: Joerg Reuter
3698M: jreuter@yaina.de
3699W: http://yaina.de/jreuter/
3700W: http://www.qsl.net/dl1bke/
3701L: linux-hams@vger.kernel.org
3702S: Maintained
3703
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003704ZD1211RW WIRELESS DRIVER
3705P: Daniel Drake
3706M: dsd@gentoo.org
3707P: Ulrich Kunitz
3708M: kune@deine-taler.de
3709W: http://zd1211.ath.cx/wiki/DriverRewrite
3710L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3711S: Maintained
3712
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713ZF MACHZ WATCHDOG
3714P: Fernando Fuganti
3715M: fuganti@netbank.com.br
3716W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3717S: Maintained
3718
3719ZR36067 VIDEO FOR LINUX DRIVER
3720P: Ronald Bultje
3721M: rbultje@ronald.bitfreak.net
3722L: mjpeg-users@lists.sourceforge.net
3723W: http://mjpeg.sourceforge.net/driver-zoran/
3724S: Maintained
3725
3726ZR36120 VIDEO FOR LINUX DRIVER
3727P: Pauline Middelink
3728M: middelin@polyware.nl
3729W: http://www.polyware.nl/~middelin/En/hobbies.html
3730W: http://www.polyware.nl/~middelin/hobbies.html
3731S: Maintained
3732
3733THE REST
3734P: Linus Torvalds
3735S: Buried alive in reporters