blob: b0e33617273d1d5beca12658b4c762d20f953e4c [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 Brown8b59a452007-01-08 19:03:28 -0500210M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500211L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800213T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500214S: Supported
215
216ACPI BATTERY DRIVERS
217P: Vladimir P. Lebedev
218M: vladimir.p.lebedev@intel.com
219L: linux-acpi@vger.kernel.org
220W: http://acpi.sourceforge.net/
221S: Supported
222
223ACPI EC DRIVER
224P: Alexey Starikovskiy
225M: alexey.y.starikovskiy@linux.intel.com
226L: linux-acpi@vger.kernel.org
227W: http://acpi.sourceforge.net/
228S: Supported
229
230ACPI FAN DRIVER
231P: Konstantin A. Karasyov
232M: konstantin.a.karasyov@intel.com
233L: linux-acpi@vger.kernel.org
234W: http://acpi.sourceforge.net/
235S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700237ACPI PCI HOTPLUG DRIVER
238P: Kristen Carlson Accardi
239M: kristen.c.accardi@intel.com
240L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -0500241S: Supported
242
243ACPI THERMAL DRIVER
244P: Konstantin A. Karasyov
245M: konstantin.a.karasyov@intel.com
246L: linux-acpi@vger.kernel.org
247W: http://acpi.sourceforge.net/
248S: Supported
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250AD1816 SOUND DRIVER
251P: Thorsten Knabe
252M: Thorsten Knabe <linux@thorsten-knabe.de>
253W: http://linux.thorsten-knabe.de
254S: Maintained
255
Kyle McMartin6958ae32005-10-21 23:11:27 -0400256AD1889 SOUND DRIVER
257P: Kyle McMartin
258M: kyle@parisc-linux.org
259P: Thibaut Varene
260M: T-Bone@parisc-linux.org
261W: http://wiki.parisc-linux.org/AD1889
262L: parisc-linux@lists.parisc-linux.org
263S: Maintained
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265ADM1025 HARDWARE MONITOR DRIVER
266P: Jean Delvare
267M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200268L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269S: Maintained
270
271ADT746X FAN DRIVER
272P: Colin Leroy
273M: colin@colino.net
274S: Maintained
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276AEDSP16 DRIVER
277P: Riccardo Facchetti
278M: fizban@tin.it
279S: Maintained
280
281AFFS FILE SYSTEM
282P: Roman Zippel
283M: zippel@linux-m68k.org
284S: Maintained
285
286AGPGART DRIVER
287P: Dave Jones
288M: davej@codemonkey.org.uk
289W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800290T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291S: Maintained
292
293AHA152X SCSI DRIVER
294P: Juergen E. Fischer
295M: Juergen Fischer <fischer@norbit.de>
296L: linux-scsi@vger.kernel.org
297S: Maintained
298
299ALCATEL SPEEDTOUCH USB DRIVER
300P: Duncan Sands
301M: duncan.sands@free.fr
302L: linux-usb-users@lists.sourceforge.net
303L: linux-usb-devel@lists.sourceforge.net
304W: http://www.linux-usb.org/SpeedTouch/
305S: Maintained
306
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000307ALI1563 I2C DRIVER
308P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100309M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200310L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000311S: Maintained
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313ALPHA PORT
314P: Richard Henderson
315M: rth@twiddle.net
316S: Odd Fixes for 2.4; Maintained for 2.6.
317P: Ivan Kokshaysky
318M: ink@jurassic.park.msu.ru
319S: Maintained for 2.4; PCI support for 2.6.
320
Jordan Crousef90b8112006-01-06 00:12:14 -0800321AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100322P: Jordan Crouse
323M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800324L: info-linux@geode.amd.com
325W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
326S: Supported
327
Stelian Pop284f42b2006-12-12 18:18:31 +0100328AMS (Apple Motion Sensor) DRIVER
329P: Stelian Pop
330M: stelian@popies.net
331P: Michael Hanselmann
332M: linux-kernel@hansmi.ch
333S: Supported
334
Tom Tuckerf94b5332006-09-22 15:22:48 -0700335AMSO1100 RNIC DRIVER
336P: Tom Tucker
337M: tom@opengridcomputing.com
338P: Steve Wise
339M: swise@opengridcomputing.com
340L: openib-general@openib.org
341S: Maintained
342
Johannes Berg42269062006-07-25 16:15:50 +0200343AOA (Apple Onboard Audio) ALSA DRIVER
344P: Johannes Berg
345M: johannes@sipsolutions.net
346L: linuxppc-dev@ozlabs.org
347L: alsa-devel@alsa-project.org
348S: Maintained
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350APM DRIVER
351P: Stephen Rothwell
352M: sfr@canb.auug.org.au
353L: linux-laptop@vger.kernel.org
354W: http://www.canb.auug.org.au/~sfr/
355S: Supported
356
357APPLETALK NETWORK LAYER
358P: Arnaldo Carvalho de Melo
359M: acme@conectiva.com.br
360S: Maintained
361
Jaya Kumar1154ea72005-06-21 17:17:04 -0700362ARC FRAMEBUFFER DRIVER
363P: Jaya Kumar
364M: jayalk@intworks.biz
365S: Maintained
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367ARM26 ARCHITECTURE
368P: Ian Molton
369M: spyro@f2s.com
370S: Maintained
371
372ARM26/ARCHIMEDES
373P: Ian Molton
374M: spyro@f2s.com
375S: Maintained
376
377ARM26/A5000
378P: John Appleby
379M: john@dnsworld.co.uk
380S: Maintained
381
382ARM MFM AND FLOPPY DRIVERS
383P: Ian Molton
384M: spyro@f2s.com
385S: Maintained
386
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800387ARM/ADI ROADRUNNER MACHINE SUPPORT
388P: Lennert Buytenhek
389M: kernel@wantstofly.org
390L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
391S: Maintained
392
393ARM/ADS SPHERE MACHINE SUPPORT
394P: Lennert Buytenhek
395M: kernel@wantstofly.org
396L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
397S: Maintained
398
399ARM/AJECO 1ARM MACHINE SUPPORT
400P: Lennert Buytenhek
401M: kernel@wantstofly.org
402L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
403S: Maintained
404
Andrew Victord4a89c72006-12-04 13:56:21 +0100405ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
406P: Andrew Victor
407M: andrew@sanpeople.com
408L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
409W: http://maxim.org.za/at91_26.html
410S: Maintained
411
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800412ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
413P: Lennert Buytenhek
414M: kernel@wantstofly.org
415L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
416S: Maintained
417
418ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
419P: Lennert Buytenhek
420M: kernel@wantstofly.org
421L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
422S: Maintained
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424ARM/CORGI MACHINE SUPPORT
425P: Richard Purdie
426M: rpurdie@rpsys.net
427S: Maintained
428
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800429ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
430P: Lennert Buytenhek
431M: kernel@wantstofly.org
432L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
433S: Maintained
434
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100435ARM/HP JORNADA 7XX MACHINE SUPPORT
436P: Kristoffer Ericson
437M: kristoffer_e1@hotmail.com
438W: www.jlime.com
439S: Maintained
440
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800441ARM/INTEL IOP32X ARM ARCHITECTURE
442P: Lennert Buytenhek
443M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100444P: Dan Williams
445M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800446L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100447S: Supported
448
449ARM/INTEL IOP33X ARM ARCHITECTURE
450P: Dan Williams
451M: dan.j.williams@intel.com
452L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
453S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800454
455ARM/INTEL IOP13XX ARM ARCHITECTURE
456P: Lennert Buytenhek
457M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100458P: Dan Williams
459M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800460L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100461S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800462
463ARM/INTEL IQ81342EX MACHINE SUPPORT
464P: Lennert Buytenhek
465M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100466P: Dan Williams
467M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800468L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100469S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800470
471ARM/INTEL IXP2000 ARM ARCHITECTURE
472P: Lennert Buytenhek
473M: kernel@wantstofly.org
474L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
475S: Maintained
476
477ARM/INTEL IXDP2850 MACHINE SUPPORT
478P: Lennert Buytenhek
479M: kernel@wantstofly.org
480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
481S: Maintained
482
483ARM/INTEL IXP23XX ARM ARCHITECTURE
484P: Lennert Buytenhek
485M: kernel@wantstofly.org
486L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
487S: Maintained
488
489ARM/INTEL XSC3 (MANZANO) ARM CORE
490P: Lennert Buytenhek
491M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100492P: Dan Williams
493M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800494L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100495S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800496
497ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
498P: Lennert Buytenhek
499M: kernel@wantstofly.org
500L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
501S: Maintained
502
503ARM/LOGICPD PXA270 MACHINE SUPPORT
504P: Lennert Buytenhek
505M: kernel@wantstofly.org
506L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
507S: Maintained
508
Dirk Opfer8459c152005-11-06 14:27:52 +0000509ARM/TOSA MACHINE SUPPORT
510P: Dirk Opfer
511M: dirk@opfer-online.de
512S: Maintained
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514ARM/PLEB SUPPORT
515P: Peter Chubb
516M: pleb@gelato.unsw.edu.au
517W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
518S: Maintained
519
520ARM/PT DIGITAL BOARD PORT
521P: Stefan Eletzhofer
522M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700523L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524W: http://www.arm.linux.org.uk/
525S: Maintained
526
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800527ARM/RADISYS ENP2611 MACHINE SUPPORT
528P: Lennert Buytenhek
529M: kernel@wantstofly.org
530L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
531S: Maintained
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533ARM/SHARK MACHINE SUPPORT
534P: Alexander Schulz
535M: alex@shark-linux.de
536W: http://www.shark-linux.de/shark.html
537S: Maintained
538
539ARM/STRONGARM110 PORT
540P: Russell King
541M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700542L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543W: http://www.arm.linux.org.uk/
544S: Maintained
545
546ARM/S3C2410 ARM ARCHITECTURE
547P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800548M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700549L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550W: http://www.fluff.org/ben/linux/
551S: Maintained
552
553ARM/S3C2440 ARM ARCHITECTURE
554P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800555M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700556L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557W: http://www.fluff.org/ben/linux/
558S: Maintained
559
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800560ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
561P: Lennert Buytenhek
562M: kernel@wantstofly.org
563L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
564S: Maintained
565
566ARM/THECUS N2100 MACHINE SUPPORT
567P: Lennert Buytenhek
568M: kernel@wantstofly.org
569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
570S: Maintained
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572ARPD SUPPORT
573P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700574L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575S: Maintained
576
577ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500578P: Corentin Chary
579M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580P: Karol Kozimor
581M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582L: acpi4asus-user@lists.sourceforge.net
583W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500584W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585S: Maintained
586
587ATA OVER ETHERNET DRIVER
588P: Ed L. Cashin
589M: ecashin@coraid.com
590W: http://www.coraid.com/support/linux
591S: Supported
592
593ATM
594P: Chas Williams
595M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700596L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597W: http://linux-atm.sourceforge.net
598S: Maintained
599
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100600ATMEL MACB ETHERNET DRIVER
601P: Atmel AVR32 Support Team
602M: avr32@atmel.com
603P: Haavard Skinnemoen
604M: hskinnemoen@atmel.com
605S: Supported
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607ATMEL WIRELESS DRIVER
608P: Simon Kelley
609M: simon@thekelleys.org.uk
610W: http://www.thekelleys.org.uk/atmel
611W: http://atmelwlandriver.sourceforge.net/
612S: Maintained
613
Chris Wrighta92b7b82005-07-07 18:12:23 -0700614AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100615P: David Woodhouse
616M: dwmw2@infradead.org
617L: linux-audit@redhat.com
618W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800619T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700620S: Maintained
621
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700622AVR32 ARCHITECTURE
623P: Atmel AVR32 Support Team
624M: avr32@atmel.com
625P: Haavard Skinnemoen
626M: hskinnemoen@atmel.com
627W: http://www.atmel.com/products/AVR32/
628W: http://avr32linux.org/
629W: http://avrfreaks.net/
630S: Supported
631
632AVR32/AT32AP MACHINE SUPPORT
633P: Atmel AVR32 Support Team
634M: avr32@atmel.com
635P: Haavard Skinnemoen
636M: hskinnemoen@atmel.com
637S: Supported
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639AX.25 NETWORK LAYER
640P: Ralf Baechle
641M: ralf@linux-mips.org
642L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200643W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644S: Maintained
645
646BAYCOM/HDLCDRV DRIVERS FOR AX.25
647P: Thomas Sailer
648M: t.sailer@alumni.ethz.ch
649L: linux-hams@vger.kernel.org
650W: http://www.baycom.org/~tom/ham/ham.html
651S: Maintained
652
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200653BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
654P: Larry Finger
655M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200656P: Stefano Brivio
657M: st3@riseup.net
658W: http://bcm43xx.berlios.de/
659S: Maintained
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661BEFS FILE SYSTEM
662P: Sergey S. Kostyliov
663M: rathamahata@php4.ru
664L: linux-kernel@vger.kernel.org
665S: Maintained
666
667BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
668P: Kenji Hollis
669W: http://ftp.bitgate.com/pcwd/
670S: Maintained
671
672BFS FILE SYSTEM
673P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800674M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675L: linux-kernel@vger.kernel.org
676S: Maintained
677
678BLOCK LAYER
679P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200680M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800682T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683S: Maintained
684
685BLUETOOTH SUBSYSTEM
686P: Marcel Holtmann
687M: marcel@holtmann.org
688P: Maxim Krasnyansky
689M: maxk@qualcomm.com
690L: bluez-devel@lists.sf.net
691W: http://bluez.sf.net
692W: http://www.bluez.org
693W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800694T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695S: Maintained
696
697BLUETOOTH RFCOMM LAYER
698P: Marcel Holtmann
699M: marcel@holtmann.org
700P: Maxim Krasnyansky
701M: maxk@qualcomm.com
702S: Maintained
703
704BLUETOOTH BNEP LAYER
705P: Marcel Holtmann
706M: marcel@holtmann.org
707P: Maxim Krasnyansky
708M: maxk@qualcomm.com
709S: Maintained
710
711BLUETOOTH CMTP LAYER
712P: Marcel Holtmann
713M: marcel@holtmann.org
714S: Maintained
715
716BLUETOOTH HIDP LAYER
717P: Marcel Holtmann
718M: marcel@holtmann.org
719S: Maintained
720
721BLUETOOTH HCI UART DRIVER
722P: Marcel Holtmann
723M: marcel@holtmann.org
724P: Maxim Krasnyansky
725M: maxk@qualcomm.com
726S: Maintained
727
728BLUETOOTH HCI USB DRIVER
729P: Marcel Holtmann
730M: marcel@holtmann.org
731P: Maxim Krasnyansky
732M: maxk@qualcomm.com
733S: Maintained
734
735BLUETOOTH HCI BCM203X DRIVER
736P: Marcel Holtmann
737M: marcel@holtmann.org
738S: Maintained
739
740BLUETOOTH HCI BPA10X DRIVER
741P: Marcel Holtmann
742M: marcel@holtmann.org
743S: Maintained
744
745BLUETOOTH HCI BFUSB DRIVER
746P: Marcel Holtmann
747M: marcel@holtmann.org
748S: Maintained
749
750BLUETOOTH HCI DTL1 DRIVER
751P: Marcel Holtmann
752M: marcel@holtmann.org
753S: Maintained
754
755BLUETOOTH HCI BLUECARD DRIVER
756P: Marcel Holtmann
757M: marcel@holtmann.org
758S: Maintained
759
760BLUETOOTH HCI BT3C DRIVER
761P: Marcel Holtmann
762M: marcel@holtmann.org
763S: Maintained
764
765BLUETOOTH HCI BTUART DRIVER
766P: Marcel Holtmann
767M: marcel@holtmann.org
768S: Maintained
769
770BLUETOOTH HCI VHCI DRIVER
771P: Maxim Krasnyansky
772M: maxk@qualcomm.com
773S: Maintained
774
775BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100776P: Chad Tindel
777M: ctindel@users.sourceforge.net
778P: Jay Vosburgh
779M: fubar@us.ibm.com
780L: bonding-devel@lists.sourceforge.net
781W: http://sourceforge.net/projects/bonding/
782S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000784BROADBAND PROCESSOR ARCHITECTURE
785P: Arnd Bergmann
786M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100787L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400788W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000789S: Supported
790
Gary Zambrano39105892006-06-22 17:26:20 -0700791BROADCOM B44 10/100 ETHERNET DRIVER
792P: Gary Zambrano
793M: zambrano@broadcom.com
794L: netdev@vger.kernel.org
795S: Supported
796
Michael Chan948c51e2006-06-04 02:51:39 -0700797BROADCOM BNX2 GIGABIT ETHERNET DRIVER
798P: Michael Chan
799M: mchan@broadcom.com
800L: netdev@vger.kernel.org
801S: Supported
802
803BROADCOM TG3 GIGABIT ETHERNET DRIVER
804P: Michael Chan
805M: mchan@broadcom.com
806L: netdev@vger.kernel.org
807S: Supported
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700810P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200811M: mchehab@infradead.org
812M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700814W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200815T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700816S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200818CALGARY x86-64 IOMMU
819P: Muli Ben-Yehuda
820M: muli@il.ibm.com
821P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200822M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200823L: linux-kernel@vger.kernel.org
824L: discuss@x86-64.org
825S: Maintained
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827COMMON INTERNET FILE SYSTEM (CIFS)
828P: Steve French
829M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100830L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831L: samba-technical@lists.samba.org
832W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800833T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834S: Supported
835
Joel Becker7063fbf2005-12-15 14:29:43 -0800836CONFIGFS
837P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800838M: joel.becker@oracle.com
839L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800840S: Supported
841
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800842CIRRUS LOGIC EP93XX ETHERNET DRIVER
843P: Lennert Buytenhek
844M: kernel@wantstofly.org
845L: netdev@vger.kernel.org
846S: Maintained
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848CIRRUS LOGIC GENERIC FBDEV DRIVER
849P: Jeff Garzik
850M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800851L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852S: Odd Fixes
853
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800854CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
855P: Lennert Buytenhek
856M: kernel@wantstofly.org
857L: linux-usb-devel@lists.sourceforge.net
858S: Maintained
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
861P: Cirrus Logic Corporation (kernel 2.2 driver)
862M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
863P: Nils Faerber (port to kernel 2.4)
864M: Nils Faerber <nils@kernelconcepts.de>
865S: Maintained
866
867CODA FILE SYSTEM
868P: Jan Harkes
869M: jaharkes@cs.cmu.edu
870M: coda@cs.cmu.edu
871L: codalist@coda.cs.cmu.edu
872W: http://www.coda.cs.cmu.edu/
873S: Maintained
874
875COMPACTPCI HOTPLUG CORE
876P: Scott Murray
877M: scottm@somanetworks.com
878M: scott@spiteful.org
879L: pcihpd-discuss@lists.sourceforge.net
880S: Supported
881
882COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
883P: Scott Murray
884M: scottm@somanetworks.com
885M: scott@spiteful.org
886L: pcihpd-discuss@lists.sourceforge.net
887S: Supported
888
889COMPACTPCI HOTPLUG GENERIC DRIVER
890P: Scott Murray
891M: scottm@somanetworks.com
892M: scott@spiteful.org
893L: pcihpd-discuss@lists.sourceforge.net
894S: Supported
895
896COMPUTONE INTELLIPORT MULTIPORT CARD
897P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700898M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700900S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902COSA/SRP SYNC SERIAL DRIVER
903P: Jan "Yenya" Kasprzak
904M: kas@fi.muni.cz
905W: http://www.fi.muni.cz/~kas/cosa/
906S: Maintained
907
908CPU FREQUENCY DRIVERS
909P: Dave Jones
910M: davej@codemonkey.org.uk
911L: cpufreq@lists.linux.org.uk
912W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500913T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914S: Maintained
915
916CPUID/MSR DRIVER
917P: H. Peter Anvin
918M: hpa@zytor.com
919S: Maintained
920
Paul Jacksoned90fb42005-09-27 21:45:37 -0700921CPUSETS
922P: Paul Jackson
923P: Simon Derr
924M: pj@sgi.com
925M: simon.derr@bull.net
926L: linux-kernel@vger.kernel.org
927W: http://www.bullopensource.org/cpuset/
928S: Supported
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100931W: http://sourceforge.net/projects/cramfs/
932S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934CRIS PORT
935P: Mikael Starvik
936M: starvik@axis.com
937L: dev-etrax@axis.com
938W: http://developer.axis.com
939S: Maintained
940
941CRYPTO API
942P: Herbert Xu
943M: herbert@gondor.apana.org.au
944P: David S. Miller
945M: davem@davemloft.net
946L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800947T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948S: Maintained
949
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100950CS5535 Audio ALSA driver
951P: Jaya Kumar
952M: jayakumar.alsa@gmail.com
953S: Maintained
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955CYBERPRO FB DRIVER
956P: Russell King
957M: rmk@arm.linux.org.uk
958W: http://www.arm.linux.org.uk/
959S: Maintained
960
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700961CYBLAFB FRAMEBUFFER DRIVER
962P: Knut Petersen
963M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800964L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700965S: Maintained
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967CYCLADES 2X SYNC CARD DRIVER
968P: Arnaldo Carvalho de Melo
969M: acme@conectiva.com.br
970W: http://advogato.org/person/acme
971L: cycsyn-devel@bazar.conectiva.com.br
972S: Maintained
973
974CYCLADES ASYNC MUX DRIVER
975M: async@cyclades.com
976W: http://www.cyclades.com/
977S: Supported
978
979CYCLADES PC300 DRIVER
980M: pc300@cyclades.com
981W: http://www.cyclades.com/
982S: Supported
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984DAMA SLAVE for AX.25
985P: Joerg Reuter
986M: jreuter@yaina.de
987W: http://yaina.de/jreuter/
988W: http://www.qsl.net/dl1bke/
989L: linux-hams@vger.kernel.org
990S: Maintained
991
992DC395x SCSI driver
993P: Oliver Neukum
994M: oliver@neukum.name
995P: Ali Akcaagac
996M: aliakc@web.de
997P: Jamie Lenehan
998M: lenehan@twibble.org
999W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001000L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001L: http://lists.twibble.org/mailman/listinfo/dc395x/
1002S: Maintained
1003
1004DC390/AM53C974 SCSI driver
1005P: Kurt Garloff
1006M: garloff@suse.de
1007W: http://www.garloff.de/kurt/linux/dc390/
1008P: Guennadi Liakhovetski
1009M: g.liakhovetski@gmx.de
1010S: Maintained
1011
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001012DCCP PROTOCOL
1013P: Arnaldo Carvalho de Melo
1014M: acme@mandriva.com
1015L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001016W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001017S: Maintained
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019DECnet NETWORK LAYER
1020P: Patrick Caulfield
1021M: patrick@tykepenguin.com
1022W: http://linux-decnet.sourceforge.net
1023L: linux-decnet-user@lists.sourceforge.net
1024S: Maintained
1025
1026DEFXX FDDI NETWORK DRIVER
1027P: Maciej W. Rozycki
1028M: macro@linux-mips.org
1029S: Maintained
1030
1031DELL LAPTOP SMM DRIVER
1032P: Massimo Dal Zotto
1033M: dz@debian.org
1034W: http://www.debian.org/~dz/i8k/
1035S: Maintained
1036
Doug Warzecha90563ec2005-09-06 15:17:15 -07001037DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1038P: Doug Warzecha
1039M: Douglas_Warzecha@dell.com
1040S: Maintained
1041
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001042DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043P: Alasdair Kergon
1044L: dm-devel@redhat.com
1045W: http://sources.redhat.com/dm
1046S: Maintained
1047
1048DEVICE NUMBER REGISTRY
1049P: Torben Mathiasen
1050M: device@lanana.org
1051W: http://lanana.org/docs/device-list/index.html
1052L: linux-kernel@vger.kernel.org
1053S: Maintained
1054
1055DEVICE FILESYSTEM
1056S: Obsolete
1057
1058DIGI INTL. EPCA DRIVER
1059P: Digi International, Inc
1060M: Eng.Linux@digi.com
1061L: Eng.Linux@digi.com
1062W: http://www.digi.com
1063S: Orphaned
1064
1065DIGI RIGHTSWITCH NETWORK DRIVER
1066P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001067L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068W: http://www.digi.com
1069S: Orphaned
1070
1071DIRECTORY NOTIFICATION
1072P: Stephen Rothwell
1073M: sfr@canb.auug.org.au
1074L: linux-kernel@vger.kernel.org
1075S: Supported
1076
1077DISK GEOMETRY AND PARTITION HANDLING
1078P: Andries Brouwer
1079M: aeb@cwi.nl
1080W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1081W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1082W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1083S: Maintained
1084
1085DISKQUOTA:
1086P: Jan Kara
1087M: jack@suse.cz
1088L: linux-kernel@vger.kernel.org
1089S: Maintained
1090
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001091DISTRIBUTED LOCK MANAGER
1092P: Patrick Caulfield
1093M: pcaulfie@redhat.com
1094P: David Teigland
1095M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001096L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001097W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001098T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1099T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001100S: Supported
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1103P: Tobias Ringstrom
1104M: tori@unhappy.mine.nu
1105L: linux-kernel@vger.kernel.org
1106S: Maintained
1107
Martin Waitzba483d52005-06-17 13:20:59 -07001108DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001109P: Randy Dunlap
1110M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001111S: Maintained
1112
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001113DOCKING STATION DRIVER
1114P: Kristen Carlson Accardi
1115M: kristen.c.accardi@intel.com
1116L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001117S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119DOUBLETALK DRIVER
1120P: James R. Van Zandt
1121M: jrv@vanzandt.mv.com
1122L: blinux-list@redhat.com
1123S: Maintained
1124
1125DRIVER CORE, KOBJECTS, AND SYSFS
1126P: Greg Kroah-Hartman
1127M: gregkh@suse.de
1128L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001129T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130S: Supported
1131
1132DRM DRIVERS
1133P: David Airlie
1134M: airlied@linux.ie
1135L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001136T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137S: Maintained
1138
1139DSCC4 DRIVER
1140P: François Romieu
1141M: romieu@cogenit.fr
1142M: romieu@ensta.fr
1143S: Maintained
1144
1145DVB SUBSYSTEM AND DRIVERS
1146P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001147M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001149W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001150T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001151S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153EATA-DMA SCSI DRIVER
1154P: Michael Neuffer
1155L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1156S: Maintained
1157
1158EATA ISA/EISA/PCI SCSI DRIVER
1159P: Dario Ballabio
1160M: ballabio_dario@emc.com
1161L: linux-scsi@vger.kernel.org
1162S: Maintained
1163
1164EATA-PIO SCSI DRIVER
1165P: Michael Neuffer
1166M: mike@i-Connect.Net
1167L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1168S: Maintained
1169
1170EBTABLES
1171P: Bart De Schuymer
1172M: bart.de.schuymer@pandora.be
1173L: ebtables-user@lists.sourceforge.net
1174L: ebtables-devel@lists.sourceforge.net
1175W: http://ebtables.sourceforge.net/
1176S: Maintained
1177
Michael Halcrow237fead2006-10-04 02:16:22 -07001178ECRYPT FILE SYSTEM
1179P: Mike Halcrow, Phillip Hellewell
1180M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1181L: ecryptfs-devel@lists.sourceforge.net
1182W: http://ecryptfs.sourceforge.net/
1183S: Supported
1184
Alan Coxda9bb1d2006-01-18 17:44:13 -08001185EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001186P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001187M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001188L: bluesmoke-devel@lists.sourceforge.net
1189W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001190S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001191
1192EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001193P: Mark Gross
1194M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001195L: bluesmoke-devel@lists.sourceforge.net
1196W: bluesmoke.sourceforge.net
1197S: Maintained
1198
1199EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001200P: Doug Thompson
1201M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001202L: bluesmoke-devel@lists.sourceforge.net
1203W: bluesmoke.sourceforge.net
1204S: Maintained
1205
1206EDAC-R82600
1207P: Tim Small
1208M: tim@buttersideup.com
1209L: bluesmoke-devel@lists.sourceforge.net
1210W: bluesmoke.sourceforge.net
1211S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213EEPRO100 NETWORK DRIVER
1214P: Andrey V. Savochkin
1215M: saw@saw.sw.com.sg
1216S: Maintained
1217
Josh Triplett0bee8d22006-07-30 03:03:58 -07001218EFS FILESYSTEM
1219W: http://aeschi.ch.eu.org/efs/
1220S: Orphan
1221
Heiko J Schickfab97222006-09-22 15:22:22 -07001222EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1223P: Hoang-Nam Nguyen
1224M: hnguyen@de.ibm.com
1225P: Christoph Raisch
1226M: raisch@de.ibm.com
1227L: openib-general@openib.org
1228S: Supported
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230EMU10K1 SOUND DRIVER
1231P: James Courtier-Dutton
1232M: James@superbug.demon.co.uk
1233L: emu10k1-devel@lists.sourceforge.net
1234W: http://sourceforge.net/projects/emu10k1/
1235S: Maintained
1236
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001237EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001238P: James Smart
1239M: james.smart@emulex.com
1240L: linux-scsi@vger.kernel.org
1241W: http://sourceforge.net/projects/lpfcxxxx
1242S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244EPSON 1355 FRAMEBUFFER DRIVER
1245P: Christopher Hoover
1246M: ch@murgatroid.com, ch@hpl.hp.com
1247S: Maintained
1248
1249ETHEREXPRESS-16 NETWORK DRIVER
1250P: Philip Blundell
1251M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001252L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253S: Maintained
1254
1255ETHERNET BRIDGE
1256P: Stephen Hemminger
1257M: shemminger@osdl.org
1258L: bridge@osdl.org
1259W: http://bridge.sourceforge.net/
1260S: Maintained
1261
1262ETHERTEAM 16I DRIVER
1263P: Mika Kuoppala
1264M: miku@iki.fi
1265S: Maintained
1266
1267EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001268L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269S: Maintained
1270
1271EXT3 FILE SYSTEM
1272P: Stephen Tweedie, Andrew Morton
1273M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001274L: linux-ext4@vger.kernel.org
1275S: Maintained
1276
1277EXT4 FILE SYSTEM
1278P: Stephen Tweedie, Andrew Morton
1279M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1280L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281S: Maintained
1282
Jean Delvaree53004e2006-01-09 23:26:14 +01001283F71805F HARDWARE MONITORING DRIVER
1284P: Jean Delvare
1285M: khali@linux-fr.org
1286L: lm-sensors@lm-sensors.org
1287S: Maintained
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289FARSYNC SYNCHRONOUS DRIVER
1290P: Kevin Curtis
1291M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292W: http://www.farsite.co.uk/
1293S: Supported
1294
1295FRAMEBUFFER LAYER
1296P: Antonino Daplas
1297M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001298L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299W: http://linux-fbdev.sourceforge.net/
1300S: Maintained
1301
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001302FREESCALE SOC FS_ENET DRIVER
1303P: Pantelis Antoniou
1304M: pantelis.antoniou@gmail.com
1305P: Vitaly Bordug
1306M: vbordug@ru.mvista.com
1307L: linuxppc-embedded@ozlabs.org
1308L: netdev@vger.kernel.org
1309S: Maintained
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311FILE LOCKING (flock() and fcntl()/lockf())
1312P: Matthew Wilcox
1313M: matthew@wil.cx
1314L: linux-fsdevel@vger.kernel.org
1315S: Maintained
1316
1317FILESYSTEMS (VFS and infrastructure)
1318P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001319M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320S: Maintained
1321
1322FIRMWARE LOADER (request_firmware)
1323L: linux-kernel@vger.kernel.org
1324S: Orphan
1325
1326FPU EMULATOR
1327P: Bill Metzenthen
1328M: billm@suburbia.net
1329W: http://suburbia.net/~billm/floating-point/emulator/
1330S: Maintained
1331
1332FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1333P: Mike McLagan
1334M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001335L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336S: Maintained
1337
1338FREEVXFS FILESYSTEM
1339P: Christoph Hellwig
1340M: hch@infradead.org
1341W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1342S: Maintained
1343
1344FUJITSU FR-V PORT
1345P: David Howells
1346M: dhowells@redhat.com
1347S: Maintained
1348
Miklos Szeredi04578f12005-09-09 13:10:22 -07001349FUSE: FILESYSTEM IN USERSPACE
1350P: Miklos Szeredi
1351M: miklos@szeredi.hu
1352L: fuse-devel@lists.sourceforge.net
1353W: http://fuse.sourceforge.net/
1354S: Maintained
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1357P: Rik Faith
1358M: faith@cs.unc.edu
1359L: linux-scsi@vger.kernel.org
1360S: Odd fixes (e.g., new signatures)
1361
1362GDT SCSI DISK ARRAY CONTROLLER DRIVER
1363P: Achim Leubner
1364M: achim_leubner@adaptec.com
1365L: linux-scsi@vger.kernel.org
1366W: http://www.icp-vortex.com/
1367S: Supported
1368
1369GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1370P: Krzysztof Halasa
1371M: khc@pm.waw.pl
1372W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1373S: Maintained
1374
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001375GFS2 FILE SYSTEM
1376P: Steven Whitehouse
1377M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001378L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001379W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001380T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1381T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001382S: Supported
1383
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001384GIGASET ISDN DRIVERS
1385P: Hansjoerg Lipp
1386M: hjlipp@web.de
1387P: Tilman Schmidt
1388M: tilman@imap.cc
1389L: gigaset307x-common@lists.sourceforge.net
1390W: http://gigaset307x.sourceforge.net/
1391S: Maintained
1392
Jean Delvare5b543962005-08-15 19:51:02 +02001393HARDWARE MONITORING
1394P: Jean Delvare
1395M: khali@linux-fr.org
1396L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001397W: http://www.lm-sensors.org/
1398T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001399S: Maintained
1400
Michael Buesch844dd052006-06-26 00:24:59 -07001401HARDWARE RANDOM NUMBER GENERATOR CORE
1402P: Michael Buesch
1403M: mb@bu3sch.de
1404S: Maintained
1405
Robert Love860e1d62005-08-31 23:57:59 -04001406HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1407P: Robert Love
1408M: rlove@rlove.org
1409M: linux-kernel@vger.kernel.org
1410W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1411S: Maintained
1412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413HARMONY SOUND DRIVER
1414P: Kyle McMartin
1415M: kyle@parisc-linux.org
1416W: http://www.parisc-linux.org/~kyle/harmony/
1417L: parisc-linux@lists.parisc-linux.org
1418S: Maintained
1419
1420HAYES ESP SERIAL DRIVER
1421P: Andrew J. Robinson
1422M: arobinso@nyx.net
1423L: linux-kernel@vger.kernel.org
1424W: http://www.nyx.net/~arobinso
1425S: Maintained
1426
1427HFS FILESYSTEM
1428P: Roman Zippel
1429M: zippel@linux-m68k.org
1430L: linux-kernel@vger.kernel.org
1431S: Maintained
1432
1433HGA FRAMEBUFFER DRIVER
1434P: Ferenc Bakonyi
1435M: fero@drama.obuda.kando.hu
1436L: linux-nvidia@lists.surfsouth.com
1437W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1438S: Maintained
1439
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001440HID CORE LAYER
1441P: Jiri Kosina
1442M: jkosina@suse.cz
1443L: linux-input@atrey.karlin.mff.cuni.cz
1444S: Maintained
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446HIGH-SPEED SCC DRIVER FOR AX.25
1447P: Klaus Kudielka
1448M: klaus.kudielka@ieee.org
1449L: linux-hams@vger.kernel.org
1450W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1451S: Maintained
1452
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001453HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1454P: HighPoint Linux Team
1455M: linux@highpoint-tech.com
1456W: http://www.highpoint-tech.com
1457S: Supported
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459HIPPI
1460P: Jes Sorensen
1461M: jes@trained-monkey.org
1462L: linux-hippi@sunsite.dk
1463S: Maintained
1464
1465HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1466P: Chirag Kantharia
1467M: chirag.kantharia@hp.com
1468L: iss_storagedev@hp.com
1469S: Maintained
1470
1471HEWLETT-PACKARD SMART2 RAID DRIVER
1472P: Chirag Kantharia
1473M: chirag.kantharia@hp.com
1474L: iss_storagedev@hp.com
1475S: Maintained
1476
1477HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1478P: Mike Miller
1479M: mike.miller@hp.com
1480L: iss_storagedev@hp.com
1481S: Supported
1482
Jouni Malinenff1d2762005-05-12 22:54:16 -04001483HOST AP DRIVER
1484P: Jouni Malinen
1485M: jkmaline@cc.hut.fi
1486L: hostap@shmoo.com
1487W: http://hostap.epitest.fi/
1488S: Maintained
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1491P: Jaroslav Kysela
1492M: perex@suse.cz
1493S: Maintained
1494
Bob Piccob9b03322005-11-07 00:59:19 -08001495HPET: High Precision Event Timers driver (hpet.c)
1496P: Clemens Ladisch
1497M: clemens@ladisch.de
1498S: Maintained
1499
1500HPET: i386
1501P: Venkatesh Pallipadi (Venki)
1502M: venkatesh.pallipadi@intel.com
1503S: Maintained
1504
1505HPET: x86_64
1506P: Andi Kleen and Vojtech Pavlik
1507M: ak@muc.de and vojtech@suse.cz
1508S: Maintained
1509
1510HPET: ACPI hpet.c
1511P: Bob Picco
1512M: bob.picco@hp.com
1513S: Maintained
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515HPFS FILESYSTEM
1516P: Mikulas Patocka
1517M: mikulas@artax.karlin.mff.cuni.cz
1518W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1519S: Maintained
1520
1521HUGETLB FILESYSTEM
1522P: William Irwin
1523M: wli@holomorphy.com
1524S: Maintained
1525
Jean Delvare5b543962005-08-15 19:51:02 +02001526I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527P: Jean Delvare
1528M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001529L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001530T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531S: Maintained
1532
1533I2O
1534P: Markus Lidel
1535M: markus.lidel@shadowconnect.com
1536W: http://i2o.shadowconnect.com/
1537S: Maintained
1538
1539i386 BOOT CODE
1540P: Riley H. Williams
1541M: Riley@Williams.Name
1542L: Linux-Kernel@vger.kernel.org
1543S: Maintained
1544
1545i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1546P: Dave Jones
1547M: davej@codemonkey.org.uk
1548P: H. Peter Anvin
1549M: hpa@zytor.com
1550S: Maintained
1551
1552i810 TCO TIMER WATCHDOG
1553P: Nils Faerber
1554M: nils@kernelconcepts.de
1555W: http://www.kernelconcepts.de/
1556S: Maintained
1557
1558IA64 (Itanium) PLATFORM
1559P: Tony Luck
1560M: tony.luck@intel.com
1561L: linux-ia64@vger.kernel.org
1562W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001563T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564S: Maintained
1565
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001566IBM ACPI EXTRAS DRIVER
1567P: Henrique de Moraes Holschuh
1568M: ibm-acpi@hmh.eng.br
1569L: ibm-acpi-devel@lists.sourceforge.net
1570W: http://ibm-acpi.sourceforge.net
1571W: http://thinkwiki.org/wiki/Ibm-acpi
1572T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1573S: Maintained
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001576P: Jes Sorensen
1577M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578L: linux-altix@sgi.com
1579L: linux-ia64@vger.kernel.org
1580W: http://www.sgi.com/altix
1581S: Maintained
1582
1583IBM MCA SCSI SUBSYSTEM DRIVER
1584P: Michael Lang
1585M: langa2@kph.uni-mainz.de
1586W: http://www.uni-mainz.de/~langm000/linux.html
1587S: Maintained
1588
1589IBM Power Linux RAID adapter
1590P: Brian King
1591M: brking@us.ibm.com
1592S: Supported
1593
1594IBM ServeRAID RAID DRIVER
1595P: Jack Hammer
1596P: Dave Jeffery
1597M: ipslinux@adaptec.com
1598W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1599S: Supported
1600
1601IDE DRIVER [GENERAL]
1602P: Bartlomiej Zolnierkiewicz
1603M: B.Zolnierkiewicz@elka.pw.edu.pl
1604L: linux-kernel@vger.kernel.org
1605L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001606T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607S: Maintained
1608
1609IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001610P: Alan Cox
1611M: alan@lxorguk.ukuu.org.uk
1612L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613S: Maintained
1614
1615IDE/ATAPI FLOPPY DRIVERS
1616P: Paul Bristow
1617M: Paul Bristow <paul@paulbristow.net>
1618W: http://paulbristow.net/linux/idefloppy.html
1619L: linux-kernel@vger.kernel.org
1620S: Maintained
1621
1622IDE/ATAPI TAPE DRIVERS
1623P: Gadi Oxman
1624M: Gadi Oxman <gadio@netvision.net.il>
1625L: linux-kernel@vger.kernel.org
1626S: Maintained
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628IEEE 1394 SUBSYSTEM
1629P: Ben Collins
1630M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001631P: Stefan Richter
1632M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633L: linux1394-devel@lists.sourceforge.net
1634W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001635T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636S: Maintained
1637
Stefan Richter87730d02006-09-16 12:24:00 +02001638IEEE 1394 IPV4 DRIVER (eth1394)
1639P: Stefan Richter
1640M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001642S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644IEEE 1394 PCILYNX DRIVER
1645P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001646M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001647P: Stefan Richter
1648M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001650S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652IEEE 1394 RAW I/O DRIVER
1653P: Ben Collins
1654M: bcollins@debian.org
1655P: Dan Dennedy
1656M: dan@dennedy.org
1657L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001658S: Maintained
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660IMS TWINTURBO FRAMEBUFFER DRIVER
1661P: Paul Mundt
1662M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001663L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664S: Maintained
1665
1666INFINIBAND SUBSYSTEM
1667P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001668M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669P: Sean Hefty
1670M: mshefty@ichips.intel.com
1671P: Hal Rosenstock
1672M: halr@voltaire.com
1673L: openib-general@openib.org
1674W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001675T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676S: Supported
1677
1678INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001679P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001680M: dmitry.torokhov@gmail.com
1681M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682L: linux-input@atrey.karlin.mff.cuni.cz
1683L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001684T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685S: Maintained
1686
Robert Lovec9f04f52005-07-15 12:21:07 -04001687INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001688P: John McCutchan
1689M: ttb@tentacle.dhs.org
1690P: Robert Love
1691M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001692L: linux-kernel@vger.kernel.org
1693S: Maintained
1694
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001695INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001696P: Sylvain Meyer
1697M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001698L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001699S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001702P: Antonino Daplas
1703M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001704L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001705S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1708P: Ingo Molnar
1709M: mingo@redhat.com
1710S: Maintained
1711
1712INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1713P: Jeff Garzik
1714M: jgarzik@pobox.com
1715W: http://sourceforge.net/projects/gkernel/
1716S: Maintained
1717
1718INTEL IA32 MICROCODE UPDATE SUPPORT
1719P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001720M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721S: Maintained
1722
Michael Buesch844dd052006-06-26 00:24:59 -07001723INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1724P: Deepak Saxena
1725M: dsaxena@plexity.net
1726S: Maintained
1727
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001728INTEL IXP2000 ETHERNET DRIVER
1729P: Lennert Buytenhek
1730M: kernel@wantstofly.org
1731L: netdev@vger.kernel.org
1732S: Maintained
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734INTEL PRO/100 ETHERNET SUPPORT
1735P: John Ronciak
1736M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737P: Jesse Brandeburg
1738M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001739P: Jeff Kirsher
1740M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001741P: Auke Kok
1742M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743W: http://sourceforge.net/projects/e1000/
1744S: Supported
1745
1746INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1747P: Jeb Cramer
1748M: cramerj@intel.com
1749P: John Ronciak
1750M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001751P: Jesse Brandeburg
1752M: jesse.brandeburg@intel.com
1753P: Jeff Kirsher
1754M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001755P: Auke Kok
1756M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757W: http://sourceforge.net/projects/e1000/
1758S: Supported
1759
1760INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001761P: Jeff Kirsher
1762M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763P: Ayyappan Veeraiyan
1764M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765P: John Ronciak
1766M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001767P: Jesse Brandeburg
1768M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001769P: Auke Kok
1770M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771W: http://sourceforge.net/projects/e1000/
1772S: Supported
1773
James Ketrenos826d2ab2005-11-07 18:56:59 -06001774INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1775P: Yi Zhu
1776M: yi.zhu@intel.com
1777P: James Ketrenos
1778M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001779L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001780L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1781W: http://ipw2100.sourceforge.net
1782S: Supported
1783
1784INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1785P: Yi Zhu
1786M: yi.zhu@intel.com
1787P: James Ketrenos
1788M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001789L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001790L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1791W: http://ipw2200.sourceforge.net
1792S: Supported
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794IOC3 DRIVER
1795P: Ralf Baechle
1796M: ralf@linux-mips.org
1797L: linux-mips@linux-mips.org
1798S: Maintained
1799
1800IP MASQUERADING:
1801P: Juanjo Ciarlante
1802M: jjciarla@raiz.uncu.edu.ar
1803S: Maintained
1804
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001805IPATH DRIVER:
1806P: Bryan O'Sullivan
1807M: support@pathscale.com
1808L: openib-general@openib.org
1809S: Supported
1810
Corey Minyard4409ebe2006-04-20 02:43:12 -07001811IPMI SUBSYSTEM
1812P: Corey Minyard
1813M: minyard@acm.org
1814L: openipmi-developer@lists.sourceforge.net
1815W: http://openipmi.sourceforge.net/
1816S: Supported
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818IPX NETWORK LAYER
1819P: Arnaldo Carvalho de Melo
1820M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001821L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822S: Maintained
1823
1824IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001825P: Samuel Ortiz
1826M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001827L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001829S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831ISAPNP
1832P: Jaroslav Kysela
1833M: perex@suse.cz
1834S: Maintained
1835
1836ISDN SUBSYSTEM
1837P: Karsten Keil
1838M: kkeil@suse.de
1839P: Kai Germaschewski
1840M: kai.germaschewski@gmx.de
1841L: isdn4linux@listserv.isdn4linux.de
1842W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001843T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844S: Maintained
1845
1846ISDN SUBSYSTEM (Eicon active card driver)
1847P: Armin Schindler
1848M: mac@melware.de
1849L: isdn4linux@listserv.isdn4linux.de
1850W: http://www.melware.de
1851S: Maintained
1852
1853JOURNALLING FLASH FILE SYSTEM (JFFS)
1854P: Axis Communications AB
1855M: jffs-dev@axis.com
1856L: jffs-dev@axis.com
1857W: http://www.developer.axis.com/software/jffs/
1858S: Maintained
1859
1860JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1861P: David Woodhouse
1862M: dwmw2@infradead.org
1863L: jffs-dev@axis.com
1864W: http://sources.redhat.com/jffs2/
1865S: Maintained
1866
1867JFS FILESYSTEM
1868P: Dave Kleikamp
1869M: shaggy@austin.ibm.com
1870L: jfs-discussion@lists.sourceforge.net
1871W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001872T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873S: Supported
1874
Josh Triplettde456d32006-07-30 03:04:00 -07001875JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001876P: Stephen Tweedie, Andrew Morton
1877M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001878L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001879S: Maintained
1880
Rudolf Marek4660cb32006-10-08 22:01:26 +02001881K8TEMP HARDWARE MONITORING DRIVER
1882P: Rudolf Marek
1883M: r.marek@assembler.cz
1884L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885S: Maintained
1886
1887KCONFIG
1888P: Roman Zippel
1889M: zippel@linux-m68k.org
1890L: kbuild-devel@lists.sourceforge.net
1891S: Maintained
1892
Vivek Goyalea6c2082006-05-20 14:59:55 -07001893KDUMP
1894P: Vivek Goyal
1895M: vgoyal@in.ibm.com
1896P: Haren Myneni
1897M: hbabu@us.ibm.com
1898L: fastboot@lists.osdl.org
1899L: linux-kernel@vger.kernel.org
1900W: http://lse.sourceforge.net/kdump/
1901S: Maintained
1902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903KERNEL AUTOMOUNTER (AUTOFS)
1904P: H. Peter Anvin
1905M: hpa@zytor.com
1906L: autofs@linux.kernel.org
1907S: Odd Fixes
1908
1909KERNEL AUTOMOUNTER v4 (AUTOFS4)
1910P: Ian Kent
1911M: raven@themaw.net
1912L: autofs@linux.kernel.org
1913S: Maintained
1914
1915KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1916P: Kai Germaschewski
1917M: kai@germaschewski.name
1918P: Sam Ravnborg
1919M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001920T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921S: Maintained
1922
1923KERNEL JANITORS
1924P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001925L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927S: Maintained
1928
1929KERNEL NFSD
1930P: Neil Brown
1931M: neilb@cse.unsw.edu.au
1932L: nfs@lists.sourceforge.net
1933W: http://nfs.sourceforge.net/
1934W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1935S: Maintained
1936
Avi Kivity426d62e2006-12-13 00:34:03 -08001937KERNEL VIRTUAL MACHINE (KVM)
1938P: Avi Kivity
1939M: avi@qumranet.com
1940L: kvm-devel@lists.sourceforge.net
1941W: kvm.sourceforge.net
1942S: Supported
1943
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001944KEXEC
1945P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001946M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001947W: http://www.xmission.com/~ebiederm/files/kexec/
1948L: linux-kernel@vger.kernel.org
1949L: fastboot@osdl.org
1950S: Maintained
1951
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001952KPROBES
1953P: Prasanna S Panchamukhi
1954M: prasanna@in.ibm.com
1955P: Ananth N Mavinakayanahalli
1956M: ananth@in.ibm.com
1957P: Anil S Keshavamurthy
1958M: anil.s.keshavamurthy@intel.com
1959P: David S. Miller
1960M: davem@davemloft.net
1961L: linux-kernel@vger.kernel.org
1962S: Maintained
1963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001966S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968LASI 53c700 driver for PARISC
1969P: James E.J. Bottomley
1970M: James.Bottomley@HansenPartnership.com
1971L: linux-scsi@vger.kernel.org
1972S: Maintained
1973
Richard Purdie263de9b2006-05-15 09:44:16 -07001974LED SUBSYSTEM
1975P: Richard Purdie
1976M: rpurdie@rpsys.net
1977S: Maintained
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979LEGO USB Tower driver
1980P: Juergen Stuber
1981M: starblue@users.sourceforge.net
1982L: legousb-devel@lists.sourceforge.net
1983W: http://legousb.sourceforge.net/
1984S: Maintained
1985
1986LINUX FOR IBM pSERIES (RS/6000)
1987P: Paul Mackerras
1988M: paulus@au.ibm.com
1989W: http://www.ibm.com/linux/ltc/projects/ppc
1990S: Supported
1991
1992LINUX FOR NCR VOYAGER
1993P: James Bottomley
1994M: James.Bottomley@HansenPartnership.com
1995W: http://www.hansenpartnership.com/voyager
1996S: Maintained
1997
1998LINUX FOR POWERPC
1999P: Paul Mackerras
2000M: paulus@samba.org
2001W: http://www.penguinppc.org/
2002L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002003T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004S: Supported
2005
2006LINUX FOR POWER MACINTOSH
2007P: Benjamin Herrenschmidt
2008M: benh@kernel.crashing.org
2009W: http://www.penguinppc.org/
2010L: linuxppc-dev@ozlabs.org
2011S: Maintained
2012
2013LINUX FOR POWERPC EMBEDDED MPC52XX
2014P: Sylvain Munaut
2015M: tnt@246tNt.com
2016W: http://www.246tNt.com/mpc52xx/
2017W: http://www.penguinppc.org/
2018L: linuxppc-dev@ozlabs.org
2019L: linuxppc-embedded@ozlabs.org
2020S: Maintained
2021
2022LINUX FOR POWERPC EMBEDDED PPC4XX
2023P: Matt Porter
2024M: mporter@kernel.crashing.org
2025W: http://www.penguinppc.org/
2026L: linuxppc-embedded@ozlabs.org
2027S: Maintained
2028
Tom Rinie93adf12005-07-26 12:49:53 -07002029LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030P: Tom Rini
2031M: trini@kernel.crashing.org
2032W: http://www.penguinppc.org/
2033L: linuxppc-embedded@ozlabs.org
2034S: Maintained
2035
Tom Rinie93adf12005-07-26 12:49:53 -07002036LINUX FOR POWERPC EMBEDDED PPC8XX
2037P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002038M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002039W: http://www.penguinppc.org/
2040L: linuxppc-embedded@ozlabs.org
2041S: Maintained
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002044P: Kumar Gala
2045M: galak@kernel.crashing.org
2046W: http://www.penguinppc.org/
2047L: linuxppc-embedded@ozlabs.org
2048S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Olof Johanssonab06ff32006-09-06 14:44:54 -05002050LINUX FOR POWERPC PA SEMI PWRFICIENT
2051P: Olof Johansson
2052M: olof@lixom.net
2053W: http://www.pasemi.com/
2054L: linuxppc-dev@ozlabs.org
2055S: Supported
2056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057LLC (802.2)
2058P: Arnaldo Carvalho de Melo
2059M: acme@conectiva.com.br
2060S: Maintained
2061
2062LINUX FOR 64BIT POWERPC
2063P: Paul Mackerras
2064M: paulus@samba.org
2065M: paulus@au.ibm.com
2066P: Anton Blanchard
2067M: anton@samba.org
2068M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002069W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002070L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071S: Supported
2072
2073LINUX SECURITY MODULE (LSM) FRAMEWORK
2074P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002075M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002076L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002078T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079S: Supported
2080
2081LM83 HARDWARE MONITOR DRIVER
2082P: Jean Delvare
2083M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002084L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085S: Maintained
2086
2087LM90 HARDWARE MONITOR DRIVER
2088P: Jean Delvare
2089M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002090L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091S: Maintained
2092
2093LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2094P: Richard Russon (FlatCap)
2095M: ldm@flatcap.org
2096L: ldm-devel@lists.sourceforge.net
2097W: http://ldm.sourceforge.net
2098S: Maintained
2099
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002100LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2101P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002102M: Eric.Moore@lsi.com
2103M: support@lsi.com
2104L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002105L: linux-scsi@vger.kernel.org
2106W: http://www.lsilogic.com/support
2107S: Supported
2108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2110P: Matthew Wilcox
2111M: matthew@wil.cx
2112L: linux-scsi@vger.kernel.org
2113S: Maintained
2114
2115M68K ARCHITECTURE
2116P: Geert Uytterhoeven
2117M: geert@linux-m68k.org
2118P: Roman Zippel
2119M: zippel@linux-m68k.org
2120L: linux-m68k@lists.linux-m68k.org
2121W: http://www.linux-m68k.org/
2122W: http://linux-m68k-cvs.ubb.ca/
2123S: Maintained
2124
2125M68K ON APPLE MACINTOSH
2126P: Joshua Thompson
2127M: funaho@jurai.org
2128W: http://www.mac.linux-m68k.org/
2129L: linux-mac68k@mac.linux-m68k.org
2130S: Maintained
2131
2132M68K ON HP9000/300
2133P: Philip Blundell
2134M: philb@gnu.org
2135W: http://www.tazenda.demon.co.uk/phil/linux-hp
2136S: Maintained
2137
2138MARVELL YUKON / SYSKONNECT DRIVER
2139P: Mirko Lindner
2140M: mlindner@syskonnect.de
2141P: Ralph Roesler
2142M: rroesler@syskonnect.de
2143W: http://www.syskonnect.com
2144S: Supported
2145
Michael Kerriskfaf16682005-07-31 22:34:47 -07002146MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002147P: Michael Kerrisk
2148M: mtk-manpages@gmx.net
2149W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2150S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002151
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002152MARVELL MV643XX ETHERNET DRIVER
2153P: Dale Farnsworth
2154M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002156M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002157L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002158S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160MATROX FRAMEBUFFER DRIVER
2161P: Petr Vandrovec
2162M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002163L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164S: Maintained
2165
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002166MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002167P: Neela Syam Kolli
2168M: Neela.Kolli@engenio.com
2169S: linux-scsi@vger.kernel.org
2170W: http://megaraid.lsilogic.com
2171S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002172
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002173MEMORY MANAGEMENT
2174L: linux-mm@kvack.org
2175L: linux-kernel@vger.kernel.org
2176W: http://www.linux-mm.org
2177S: Maintained
2178
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002179MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180P: David Woodhouse
2181M: dwmw2@infradead.org
2182W: http://www.linux-mtd.infradead.org/
2183L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002184T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185S: Maintained
2186
2187MICROTEK X6 SCANNER
2188P: Oliver Neukum
2189M: oliver@neukum.name
2190S: Maintained
2191
2192MIPS
2193P: Ralf Baechle
2194M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002195W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002197T: git www.linux-mips.org:/pub/scm/linux.git
2198S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200MISCELLANEOUS MCA-SUPPORT
2201P: James Bottomley
2202M: jejb@steeleye.com
2203L: linux-kernel@vger.kernel.org
2204S: Maintained
2205
2206MODULE SUPPORT
2207P: Rusty Russell
2208M: rusty@rustcorp.com.au
2209L: linux-kernel@vger.kernel.org
2210S: Maintained
2211
2212MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2213P: Stelian Pop
2214M: stelian@popies.net
2215W: http://popies.net/meye/
2216S: Maintained
2217
2218MOUSE AND MISC DEVICES [GENERAL]
2219P: Alessandro Rubini
2220M: rubini@ipvvis.unipv.it
2221L: linux-kernel@vger.kernel.org
2222S: Maintained
2223
Jiri Slabyd7354102006-12-08 02:38:35 -08002224MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2225P: Jiri Slaby
2226M: jirislaby@gmail.com
2227L: linux-kernel@vger.kernel.org
2228S: Maintained
2229
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002230MSI LAPTOP SUPPORT
2231P: Lennart Poettering
2232M: mzxreary@0pointer.de
2233L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2234W: http://0pointer.de/lennart/tchibo.html
2235S: Maintained
2236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237MTRR AND SIMILAR SUPPORT [i386]
2238P: Richard Gooch
2239M: rgooch@atnf.csiro.au
2240L: linux-kernel@vger.kernel.org
2241W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2242S: Maintained
2243
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002244MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2245P: Pierre Ossman
2246M: drzeus-mmc@drzeus.cx
2247L: linux-kernel@vger.kernel.org
2248S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250MULTISOUND SOUND DRIVER
2251P: Andrew Veliath
2252M: andrewtv@usa.net
2253S: Maintained
2254
Jiri Slabyd7354102006-12-08 02:38:35 -08002255MULTITECH MULTIPORT CARD (ISICOM)
2256P: Jiri Slaby
2257M: jirislaby@gmail.com
2258L: linux-kernel@vger.kernel.org
2259S: Maintained
2260
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261NATSEMI ETHERNET DRIVER (DP8381x)
2262P: Tim Hockin
2263M: thockin@hockin.org
2264S: Maintained
2265
2266NCP FILESYSTEM
2267P: Petr Vandrovec
2268M: vandrove@vc.cvut.cz
2269L: linware@sh.cvut.cz
2270S: Maintained
2271
2272NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2273P: James E.J. Bottomley
2274M: James.Bottomley@HansenPartnership.com
2275L: linux-scsi@vger.kernel.org
2276S: Maintained
2277
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002278NETEM NETWORK EMULATOR
2279P: Stephen Hemminger
2280M: shemminger@osdl.org
2281L: netem@osdl.org
2282S: Maintained
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284NETFILTER/IPTABLES/IPCHAINS
2285P: Rusty Russell
2286P: Marc Boucher
2287P: James Morris
2288P: Harald Welte
2289P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002290P: Patrick McHardy
2291M: kaber@trash.net
2292L: netfilter-devel@lists.netfilter.org
2293L: netfilter@lists.netfilter.org
2294L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295W: http://www.netfilter.org/
2296W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297S: Supported
2298
Paul Moore4cc67732006-09-25 15:57:13 -07002299NETLABEL
2300P: Paul Moore
2301M: paul.moore@hp.com
2302W: http://netlabel.sf.net
2303L: netdev@vger.kernel.org
2304S: Supported
2305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306NETROM NETWORK LAYER
2307P: Ralf Baechle
2308M: ralf@linux-mips.org
2309L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002310W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311S: Maintained
2312
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002313NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314P: Paul Clements
2315M: Paul.Clements@steeleye.com
2316S: Maintained
2317
2318NETWORK DEVICE DRIVERS
2319P: Andrew Morton
2320M: akpm@osdl.org
2321P: Jeff Garzik
2322M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002323L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002324T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325S: Maintained
2326
2327NETWORKING [GENERAL]
2328P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002329M: netdev@vger.kernel.org
2330L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002331W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332S: Maintained
2333
2334NETWORKING [IPv4/IPv6]
2335P: David S. Miller
2336M: davem@davemloft.net
2337P: Alexey Kuznetsov
2338M: kuznet@ms2.inr.ac.ru
2339P: Pekka Savola (ipv6)
2340M: pekkas@netcore.fi
2341P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002342M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343P: Hideaki YOSHIFUJI
2344M: yoshfuji@linux-ipv6.org
2345P: Patrick McHardy
2346M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002347L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002348T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349S: Maintained
2350
John W. Linville29f8f632006-01-18 14:52:48 -08002351NETWORKING [WIRELESS]
2352P: John W. Linville
2353M: linville@tuxdriver.com
2354L: netdev@vger.kernel.org
2355T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2356S: Maintained
2357
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002358NETXEN (1/10) GbE SUPPORT
2359P: Amit S. Kale
2360M: amitkale@netxen.com
2361L: netdev@vger.kernel.org
2362W: http://www.netxen.com
2363S: Supported
2364
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365IPVS
2366P: Wensong Zhang
2367M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002368P: Simon Horman
2369M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370P: Julian Anastasov
2371M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002372L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373S: Maintained
2374
2375NFS CLIENT
2376P: Trond Myklebust
2377M: trond.myklebust@fys.uio.no
2378L: linux-kernel@vger.kernel.org
2379S: Maintained
2380
2381NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002382P: Jan-Pascal van Best
2383M: janpascal@vanbest.org
2384P: Andreas Mohr
2385M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002386L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387S: Maintained
2388
2389NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2390P: YOKOTA Hiroshi
2391M: yokota@netlab.is.tsukuba.ac.jp
2392W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2393S: Maintained
2394
2395NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2396P: GOTO Masanori
2397M: gotom@debian.or.jp
2398P: YOKOTA Hiroshi
2399M: yokota@netlab.is.tsukuba.ac.jp
2400W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2401S: Maintained
2402
2403NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2404P: Eberhard Moenkeberg
2405M: emoenke@gwdg.de
2406L: linux-kernel@vger.kernel.org
2407S: Maintained
2408
2409NTFS FILESYSTEM
2410P: Anton Altaparmakov
2411M: aia21@cantab.net
2412L: linux-ntfs-dev@lists.sourceforge.net
2413L: linux-kernel@vger.kernel.org
2414W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002415T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416S: Maintained
2417
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002418NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002419P: Antonino Daplas
2420M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002421L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002422S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002424OPENCORES I2C BUS DRIVER
2425P: Peter Korsgaard
2426M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002427L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002428S: Maintained
2429
Mark Fashehccd979b2005-12-15 14:31:24 -08002430ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2431P: Mark Fasheh
2432M: mark.fasheh@oracle.com
2433P: Kurt Hackel
2434M: kurt.hackel@oracle.com
2435L: ocfs2-devel@oss.oracle.com
2436W: http://oss.oracle.com/projects/ocfs2/
2437S: Supported
2438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439OLYMPIC NETWORK DRIVER
2440P: Peter De Shrijver
2441M: p2@ace.ulyssis.student.kuleuven.ac.be
2442P: Mike Phillips
2443M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002444L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445L: linux-tr@linuxtr.net
2446W: http://www.linuxtr.net
2447S: Maintained
2448
Harald Weltec1986ee2005-11-13 16:06:29 -08002449OMNIKEY CARDMAN 4000 DRIVER
2450P: Harald Welte
2451M: laforge@gnumonks.org
2452S: Maintained
2453
Harald Welte77c44ab2005-11-13 16:06:26 -08002454OMNIKEY CARDMAN 4040 DRIVER
2455P: Harald Welte
2456M: laforge@gnumonks.org
2457S: Maintained
2458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459ONSTREAM SCSI TAPE DRIVER
2460P: Willem Riede
2461M: osst@riede.org
2462L: osst-users@lists.sourceforge.net
2463L: linux-scsi@vger.kernel.org
2464S: Maintained
2465
2466OPL3-SA2, SA3, and SAx DRIVER
2467P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002468M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469L: linux-sound@vger.kernel.org
2470S: Maintained
2471
2472OPROFILE
2473P: Philippe Elie
2474M: phil.el@wanadoo.fr
2475L: oprofile-list@lists.sf.net
2476S: Maintained
2477
2478ORINOCO DRIVER
2479P: Pavel Roskin
2480M: proski@gnu.org
2481P: David Gibson
2482M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002483L: orinoco-users@lists.sourceforge.net
2484L: orinoco-devel@lists.sourceforge.net
2485W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486S: Maintained
2487
2488PARALLEL PORT SUPPORT
2489P: Phil Blundell
2490M: philb@gnu.org
2491P: Tim Waugh
2492M: tim@cyberelk.net
2493P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494P: Andrea Arcangeli
2495M: andrea@suse.de
2496L: linux-parport@lists.infradead.org
2497W: http://people.redhat.com/twaugh/parport/
2498S: Maintained
2499
2500PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2501P: Tim Waugh
2502M: tim@cyberelk.net
2503L: linux-parport@lists.infradead.org
2504W: http://www.torque.net/linux-pp.html
2505S: Maintained
2506
2507PARISC ARCHITECTURE
2508P: Matthew Wilcox
2509M: matthew@wil.cx
2510P: Grant Grundler
2511M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002512P: Kyle McMartin
2513M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514L: parisc-linux@parisc-linux.org
2515W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002516T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2517T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518S: Maintained
2519
Jim Cromie1662d322006-10-06 00:43:59 -07002520PC87360 HARDWARE MONITORING DRIVER
2521P: Jim Cromie
2522M: jim.cromie@gmail.com
2523L: lm-sensors@lm-sensors.org
2524S: Maintained
2525
2526PC8736x GPIO DRIVER
2527P: Jim Cromie
2528M: jim.cromie@gmail.com
2529S: Maintained
2530
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002531PCI ERROR RECOVERY
2532P: Linas Vepstas
2533M: linas@austin.ibm.com
2534L: linux-kernel@vger.kernel.org
2535L: linux-pci@atrey.karlin.mff.cuni.cz
2536S: Supported
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2539P: Thomas Sailer
2540M: sailer@ife.ee.ethz.ch
2541L: linux-sound@vger.kernel.org
2542W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2543S: Maintained
2544
2545PCI SUBSYSTEM
2546P: Greg Kroah-Hartman
2547M: gregkh@suse.de
2548L: linux-kernel@vger.kernel.org
2549L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002550T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551S: Supported
2552
2553PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002554P: Kristen Carlson Accardi
2555M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556S: Supported
2557
2558PCI HOTPLUG COMPAQ DRIVER
2559P: Greg Kroah-Hartman
2560M: greg@kroah.com
2561S: Maintained
2562
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002563PCIE HOTPLUG DRIVER
2564P: Kristen Carlson Accardi
2565M: kristen.c.accardi@intel.com
2566L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002567S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002570P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002571L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002573T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002574S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
2576PCNET32 NETWORK DRIVER
2577P: Thomas Bogendörfer
2578M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002579L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580S: Maintained
2581
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002582PER-TASK DELAY ACCOUNTING
2583P: Shailabh Nagar
2584M: nagar@watson.ibm.com
2585L: linux-kernel@vger.kernel.org
2586S: Maintained
2587
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002588PERSONALITY HANDLING
2589P: Christoph Hellwig
2590M: hch@infradead.org
2591L: linux-abi-devel@lists.sourceforge.net
2592S: Maintained
2593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594PHRAM MTD DRIVER
2595P: Jörn Engel
2596M: joern@wh.fh-wedel.de
2597L: linux-mtd@lists.infradead.org
2598S: Maintained
2599
Peter Osterlund249a6772005-09-27 21:45:30 -07002600PKTCDVD DRIVER
2601P: Peter Osterlund
2602M: petero2@telia.com
2603L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002604S: Maintained
2605
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606POSIX CLOCKS and TIMERS
2607P: George Anzinger
2608M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002609L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610S: Supported
2611
Eugene Surovegin24682972005-10-14 03:00:53 -07002612POWERPC 4xx EMAC DRIVER
2613P: Eugene Surovegin
2614M: ebs@ebshome.net
2615W: http://kernel.ebshome.net/emac/
2616L: linuxppc-embedded@ozlabs.org
2617L: netdev@vger.kernel.org
2618S: Maintained
2619
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620PNP SUPPORT
2621P: Adam Belay
2622M: ambx1@neo.rr.com
2623S: Maintained
2624
Vitaly Wool999445d2007-01-04 13:07:03 +01002625PNXxxxx I2C DRIVER
2626P: Vitaly Wool
2627M: vitalywool@gmail.com
2628L: i2c@lm-sensors.org
2629S: Maintained
2630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631PPP PROTOCOL DRIVERS AND COMPRESSORS
2632P: Paul Mackerras
2633M: paulus@samba.org
2634L: linux-ppp@vger.kernel.org
2635S: Maintained
2636
2637PPP OVER ATM (RFC 2364)
2638P: Mitchell Blank Jr
2639M: mitch@sfgoth.com
2640S: Maintained
2641
2642PPP OVER ETHERNET
2643P: Michal Ostrowski
2644M: mostrows@speakeasy.net
2645S: Maintained
2646
2647PREEMPTIBLE KERNEL
2648P: Robert Love
2649M: rml@tech9.net
2650L: linux-kernel@vger.kernel.org
2651L: kpreempt-tech@lists.sourceforge.net
2652W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2653S: Supported
2654
2655PRISM54 WIRELESS DRIVER
2656P: Prism54 Development Team
2657M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002658L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659W: http://prism54.org
2660S: Maintained
2661
2662PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2663P: Peter Denison
2664M: promise@pnd-pc.demon.co.uk
2665W: http://www.pnd-pc.demon.co.uk/promise/
2666S: Maintained
2667
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002668PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2669P: Mikael Pettersson
2670M: mikpe@it.uu.se
2671L: linux-ide@vger.kernel.org
2672S: Maintained
2673
Geoff Levandf58a9d12006-11-23 00:46:51 +01002674PS3 PLATFORM SUPPORT
2675P: Geoff Levand
2676M: geoffrey.levand@am.sony.com
2677L: linuxppc-dev@ozlabs.org
2678L: cbe-oss-dev@ozlabs.org
2679S: Supported
2680
Michael Krufky83202042006-07-03 00:24:18 -07002681PVRUSB2 VIDEO4LINUX DRIVER
2682P: Mike Isely
2683M: isely@pobox.com
2684L: pvrusb2@isely.net
2685L: video4linux-list@redhat.com
2686W: http://www.isely.net/pvrusb2/
2687S: Maintained
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689PXA2xx SUPPORT
2690P: Nicolas Pitre
2691M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002692L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693S: Maintained
2694
2695QLOGIC QLA2XXX FC-SCSI DRIVER
2696P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002697M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698L: linux-scsi@vger.kernel.org
2699S: Supported
2700
Ron Mercer5a4faa872006-07-25 00:40:21 -07002701QLOGIC QLA3XXX NETWORK DRIVER
2702P: Ron Mercer
2703M: linux-driver@qlogic.com
2704L: netdev@vger.kernel.org
2705S: Supported
2706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707QNX4 FILESYSTEM
2708P: Anders Larsen
2709M: al@alarsen.net
2710L: linux-kernel@vger.kernel.org
2711W: http://www.alarsen.net/linux/qnx4fs/
2712S: Maintained
2713
2714RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002715P: Benjamin Herrenschmidt
2716M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002717L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718S: Maintained
2719
2720RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002721P: Paul Mackerras
2722M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002723L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724S: Maintained
2725
2726RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2727P: Corey Thomas
2728M: corey@world.std.com
2729L: linux-kernel@vger.kernel.org
2730S: Maintained
2731
Matt Mackall9e95ce22005-04-16 15:25:56 -07002732RANDOM NUMBER DRIVER
2733P: Matt Mackall
2734M: mpm@selenic.com
2735S: Maintained
2736
Matt Porter394b7012005-11-07 01:00:15 -08002737RAPIDIO SUBSYSTEM
2738P: Matt Porter
2739M: mporter@kernel.crashing.org
2740L: linux-kernel@vger.kernel.org
2741S: Maintained
2742
Josh Triplett595182b2006-10-04 02:17:21 -07002743READ-COPY UPDATE (RCU)
2744P: Dipankar Sarma
2745M: dipankar@in.ibm.com
2746W: http://www.rdrop.com/users/paulmck/rclock/
2747L: linux-kernel@vger.kernel.org
2748S: Supported
2749
2750RCUTORTURE MODULE
2751P: Josh Triplett
2752M: josh@freedesktop.org
2753L: linux-kernel@vger.kernel.org
2754S: Maintained
2755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756REAL TIME CLOCK DRIVER
2757P: Paul Gortmaker
2758M: p_gortmaker@yahoo.com
2759L: linux-kernel@vger.kernel.org
2760S: Maintained
2761
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002762REAL TIME CLOCK (RTC) SUBSYSTEM
2763P: Alessandro Zummo
2764M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002765L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002766S: Maintained
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768REISERFS FILE SYSTEM
2769P: Hans Reiser
2770M: reiserfs-dev@namesys.com
2771L: reiserfs-list@namesys.com
2772W: http://www.namesys.com
2773S: Supported
2774
2775ROCKETPORT DRIVER
2776P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777W: http://www.comtrol.com
2778S: Maintained
2779
2780ROSE NETWORK LAYER
2781P: Ralf Baechle
2782M: ralf@linux-mips.org
2783L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002784W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785S: Maintained
2786
2787RISCOM8 DRIVER
2788S: Orphan
2789
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002790S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002791P: Antonino Daplas
2792M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002793L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002794S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796S390
2797P: Martin Schwidefsky
2798M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002799P: Heiko Carstens
2800M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801M: linux390@de.ibm.com
2802L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002803W: http://www.ibm.com/developerworks/linux/linux390/
2804S: Supported
2805
2806S390 NETWORK DRIVERS
2807P: Frank Pavlic
2808M: fpavlic@de.ibm.com
2809M: linux390@de.ibm.com
2810L: linux-390@vm.marist.edu
2811W: http://www.ibm.com/developerworks/linux/linux390/
2812S: Supported
2813
2814S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002815P: Swen Schillig
2816M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002817M: linux390@de.ibm.com
2818L: linux-390@vm.marist.edu
2819W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820S: Supported
2821
2822SAA7146 VIDEO4LINUX-2 DRIVER
2823P: Michael Hunold
2824M: michael@mihu.de
2825W: http://www.mihu.de/linux/saa7146
2826S: Maintained
2827
2828SBPCD CDROM DRIVER
2829P: Eberhard Moenkeberg
2830M: emoenke@gwdg.de
2831L: linux-kernel@vger.kernel.org
2832S: Maintained
2833
2834SC1200 WDT DRIVER
2835P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002836M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837S: Maintained
2838
2839SCHEDULER
2840P: Ingo Molnar
2841M: mingo@elte.hu
2842P: Robert Love [the preemptible kernel bits]
2843M: rml@tech9.net
2844L: linux-kernel@vger.kernel.org
2845S: Maintained
2846
2847SCSI CDROM DRIVER
2848P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002849M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850L: linux-scsi@vger.kernel.org
2851W: http://www.kernel.dk
2852S: Maintained
2853
2854SCSI SG DRIVER
2855P: Doug Gilbert
2856M: dgilbert@interlog.com
2857L: linux-scsi@vger.kernel.org
2858W: http://www.torque.net/sg
2859S: Maintained
2860
2861SCSI SUBSYSTEM
2862P: James E.J. Bottomley
2863M: James.Bottomley@SteelEye.com
2864L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002865T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866S: Maintained
2867
2868SCSI TAPE DRIVER
2869P: Kai Mäkisara
2870M: Kai.Makisara@kolumbus.fi
2871L: linux-scsi@vger.kernel.org
2872S: Maintained
2873
2874SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002875P: Sridhar Samudrala
2876M: sri@us.ibm.com
2877L: lksctp-developers@lists.sourceforge.net
2878S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
2880SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002881P: Jim Cromie
2882M: jim.cromie@gmail.com
2883S: Odd Fixes
2884
2885SCx200 GPIO DRIVER
2886P: Jim Cromie
2887M: jim.cromie@gmail.com
2888S: Maintained
2889
2890SCx200 HRT CLOCKSOURCE DRIVER
2891P: Jim Cromie
2892M: jim.cromie@gmail.com
2893S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
2895SECURITY CONTACT
2896P: Security Officers
2897M: security@kernel.org
2898S: Supported
2899
2900SELINUX SECURITY MODULE
2901P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002902M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002904M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905L: linux-kernel@vger.kernel.org (kernel issues)
2906L: selinux@tycho.nsa.gov (general discussion)
2907W: http://www.nsa.gov/selinux
2908S: Supported
2909
2910SERIAL ATA (SATA) SUBSYSTEM:
2911P: Jeff Garzik
2912M: jgarzik@pobox.com
2913L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002914T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915S: Supported
2916
2917SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2918P: Pat Gefre
2919M: pfg@sgi.com
2920L: linux-ia64@vger.kernel.org
2921S: Supported
2922
2923SGI VISUAL WORKSTATION 320 AND 540
2924P: Andrey Panin
2925M: pazke@donpac.ru
2926L: linux-visws-devel@lists.sf.net
2927W: http://linux-visws.sf.net
2928S: Maintained for 2.6.
2929
2930SIMTEC EB110ATX (Chalice CATS)
2931P: Ben Dooks
2932P: Vincent Sanders
2933M: support@simtec.co.uk
2934W: http://www.simtec.co.uk/products/EB110ATX/
2935S: Supported
2936
2937SIMTEC EB2410ITX (BAST)
2938P: Ben Dooks
2939P: Vincent Sanders
2940M: support@simtec.co.uk
2941W: http://www.simtec.co.uk/products/EB2410ITX/
2942S: Supported
2943
Francois Romieu92aab3c2005-07-30 13:11:18 +02002944SIS 190 ETHERNET DRIVER
2945P: Francois Romieu
2946M: romieu@fr.zoreil.com
2947L: netdev@vger.kernel.org
2948S: Maintained
2949
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950SIS 5513 IDE CONTROLLER DRIVER
2951P: Lionel Bouton
2952M: Lionel.Bouton@inet6.fr
2953W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2954W: http://gyver.homeip.net/sis5513/index.html
2955S: Maintained
2956
2957SIS 900/7016 FAST ETHERNET DRIVER
2958P: Daniele Venzano
2959M: venza@brownhat.org
2960W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002961L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962S: Maintained
2963
2964SIS FRAMEBUFFER DRIVER
2965P: Thomas Winischhofer
2966M: thomas@winischhofer.net
2967W: http://www.winischhofer.net/linuxsisvga.shtml
2968S: Maintained
2969
2970SIS USB2VGA DRIVER
2971P: Thomas Winischhofer
2972M: thomas@winischhofer.net
2973W: http://www.winischhofer.at/linuxsisusbvga.shtml
2974S: Maintained
2975
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976SMC91x ETHERNET DRIVER
2977P: Nicolas Pitre
2978M: nico@cam.org
2979S: Maintained
2980
Daniel Drake8f0f8502006-07-18 22:00:25 +01002981SOFTMAC LAYER (IEEE 802.11)
2982P: Johannes Berg
2983M: johannes@sipsolutions.net
2984P: Joe Jezak
2985M: josejx@gentoo.org
2986P: Daniel Drake
2987M: dsd@gentoo.org
2988W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002989L: netdev@vger.kernel.org
2990S: Maintained
2991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992SOFTWARE RAID (Multiple Disks) SUPPORT
2993P: Ingo Molnar
2994M: mingo@redhat.com
2995P: Neil Brown
2996M: neilb@cse.unsw.edu.au
2997L: linux-raid@vger.kernel.org
2998S: Maintained
2999
3000SOFTWARE SUSPEND:
3001P: Pavel Machek
3002M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07003003L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004S: Maintained
3005
3006SONIC NETWORK DRIVER
3007P: Thomas Bogendoerfer
3008M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003009L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010S: Maintained
3011
3012SONY VAIO CONTROL DEVICE DRIVER
3013P: Stelian Pop
3014M: stelian@popies.net
3015W: http://popies.net/sonypi/
3016S: Maintained
3017
3018SOUND
3019P: Jaroslav Kysela
3020M: perex@suse.cz
3021L: alsa-devel@alsa-project.org
3022S: Maintained
3023
Kumar Gala025c3982006-04-02 16:05:54 -05003024SPI SUBSYSTEM
3025P: David Brownell
3026M: dbrownell@users.sourceforge.net
3027L: spi-devel-general@lists.sourceforge.net
3028S: Maintained
3029
Steven Rostedt855f46a2006-08-05 12:14:50 -07003030STABLE BRANCH:
3031P: Greg Kroah-Hartman
3032M: greg@kroah.com
3033P: Chris Wright
3034M: chrisw@sous-sol.org
3035L: stable@kernel.org
3036S: Maintained
3037
Kylene Hall1c72d462005-05-01 08:59:13 -07003038TPM DEVICE DRIVER
3039P: Kylene Hall
3040M: kjhall@us.ibm.com
3041W: http://tpmdd.sourceforge.net
3042L: tpmdd-devel@lists.sourceforge.net
3043S: Maintained
3044
Mark Gross1a80ba82005-10-30 15:02:55 -08003045Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003046P: Mark Gross
3047M: mark.gross@intel.com
3048S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003049
Chris Zankel48b415c2005-06-23 22:01:07 -07003050TENSILICA XTENSA PORT (xtensa):
3051P: Chris Zankel
3052M: chris@zankel.net
3053S: Maintained
3054
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055UltraSPARC (sparc64):
3056P: David S. Miller
3057M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003059T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060S: Maintained
3061
3062SHARP LH SUPPORT (LH7952X & LH7A40X)
3063P: Marc Singer
3064M: elf@buici.com
3065W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003066L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067S: Maintained
3068
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003069SHPC HOTPLUG DRIVER
3070P: Kristen Carlson Accardi
3071M: kristen.c.accardi@intel.com
3072L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003073S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003074
Pierre Ossmand129bce2006-03-24 03:18:17 -08003075SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3076P: Pierre Ossman
3077M: drzeus-sdhci@drzeus.cx
3078L: sdhci-devel@list.drzeus.cx
3079W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3080S: Maintained
3081
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003082SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3083P: Stephen Hemminger
3084M: shemminger@osdl.org
3085L: netdev@vger.kernel.org
3086S: Maintained
3087
Chris Boot1a87d942006-07-10 04:45:34 -07003088SOEKRIS NET48XX LED SUPPORT
3089P: Chris Boot
3090M: bootc@bootc.net
3091S: Maintained
3092
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093SPARC (sparc32):
3094P: William L. Irwin
3095M: wli@holomorphy.com
3096L: sparclinux@vger.kernel.org
3097S: Maintained
3098
3099SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3100P: Roger Wolff
3101M: R.E.Wolff@BitWizard.nl
3102L: linux-kernel@vger.kernel.org ?
3103S: Supported
3104
Jim Lewis2752e402006-09-29 02:01:19 -07003105SPIDERNET NETWORK DRIVER for CELL
3106P: Jim Lewis
3107M: jim@jklewis.com
3108L: netdev@vger.kernel.org
3109S: Supported
3110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111SRM (Alpha) environment access
3112P: Jan-Benedict Glaw
3113M: jbglaw@lug-owl.de
3114L: linux-kernel@vger.kernel.org
3115S: Maintained
3116
3117STARFIRE/DURALAN NETWORK DRIVER
3118P: Ion Badulescu
3119M: ionut@cs.columbia.edu
3120S: Maintained
3121
3122STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3123W: http://mosquitonet.Stanford.EDU/strip.html
3124S: Unsupported ?
3125
3126STRADIS MPEG-2 DECODER DRIVER
3127P: Nathan Laredo
3128M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129W: http://www.stradis.com/
3130S: Maintained
3131
3132SUPERH (sh)
3133P: Paul Mundt
3134M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003135L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137S: Maintained
3138
3139SUPERH64 (sh64)
3140P: Paul Mundt
3141M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142L: linuxsh-shmedia-dev@lists.sourceforge.net
3143W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144S: Maintained
3145
3146SUN3/3X
3147P: Sam Creasey
3148M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149W: http://sammy.net/sun3/
3150S: Maintained
3151
3152SVGA HANDLING
3153P: Martin Mares
3154M: mj@ucw.cz
3155L: linux-video@atrey.karlin.mff.cuni.cz
3156S: Maintained
3157
3158SYSV FILESYSTEM
3159P: Christoph Hellwig
3160M: hch@infradead.org
3161S: Maintained
3162
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003163TC CLASSIFIER
3164P: Jamal Hadi Salim
3165M: hadi@cyberus.ca
3166L: netdev@vger.kernel.org
3167S: Maintained
3168
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003169TCP LOW PRIORITY MODULE
3170P: Wong Hoi Sing, Edison
3171M: hswong3i@gmail.com
3172P: Hung Hing Lun, Mike
3173M: hlhung3i@gmail.com
3174W: http://tcp-lp-mod.sourceforge.net/
3175S: Maintained
3176
Alex Dubov4020f2d2006-10-04 02:15:37 -07003177TI FLASH MEDIA INTERFACE DRIVER
3178P: Alex Dubov
3179M: oakad@yahoo.com
3180S: Maintained
3181
Michael Buesch844dd052006-06-26 00:24:59 -07003182TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3183P: Deepak Saxena
3184M: dsaxena@plexity.net
3185S: Maintained
3186
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003187TASKSTATS STATISTICS INTERFACE
3188P: Shailabh Nagar
3189M: nagar@watson.ibm.com
3190L: linux-kernel@vger.kernel.org
3191S: Maintained
3192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003194P: Romain Lievin
3195M: roms@lpg.ticalc.org
3196S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
Per Lidene86eaa32006-01-12 16:45:18 +01003198TIPC NETWORK LAYER
3199P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003200M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003201P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003202M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003203P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003204M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003205L: tipc-discussion@lists.sourceforge.net
3206W: http://tipc.sourceforge.net/
3207W: http://tipc.cslab.ericsson.net/
3208T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3209S: Maintained
3210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211TLAN NETWORK DRIVER
3212P: Samuel Chessman
3213M: chessman@tux.org
3214L: tlan-devel@lists.sourceforge.net
3215W: http://sourceforge.net/projects/tlan/
3216S: Maintained
3217
3218TOKEN-RING NETWORK DRIVER
3219P: Mike Phillips
3220M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003221L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222L: linux-tr@linuxtr.net
3223W: http://www.linuxtr.net
3224S: Maintained
3225
3226TOSHIBA ACPI EXTRAS DRIVER
3227P: John Belmonte
3228M: toshiba_acpi@memebeam.org
3229W: http://memebeam.org/toys/ToshibaAcpiDriver
3230S: Maintained
3231
3232TOSHIBA SMM DRIVER
3233P: Jonathan Buzzard
3234M: jonathan@buzzard.org.uk
3235L: tlinux-users@tce.toshiba-dme.co.jp
3236W: http://www.buzzard.org.uk/toshiba/
3237S: Maintained
3238
3239TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3240P: Muli Ben-Yehuda
3241M: mulix@mulix.org
3242L: linux-kernel@vger.kernel.org
3243S: Maintained
3244
3245TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003246P: Adrian Bunk
3247M: trivial@kernel.org
3248L: linux-kernel@vger.kernel.org
3249W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3250T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3251S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
3253TMS380 TOKEN-RING NETWORK DRIVER
3254P: Adam Fritzler
3255M: mid@auk.cx
3256L: linux-tr@linuxtr.net
3257W: http://www.auk.cx/tms380tr/
3258S: Maintained
3259
3260TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003261P: Valerie Henson
3262M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263L: tulip-users@lists.sourceforge.net
3264W: http://sourceforge.net/projects/tulip/
3265S: Maintained
3266
3267TUN/TAP driver
3268P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003269M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270L: vtun@office.satix.net
3271W: http://vtun.sourceforge.net/tun
3272S: Maintained
3273
3274U14-34F SCSI DRIVER
3275P: Dario Ballabio
3276M: ballabio_dario@emc.com
3277L: linux-scsi@vger.kernel.org
3278S: Maintained
3279
3280UDF FILESYSTEM
3281P: Ben Fennema
3282M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283W: http://linux-udf.sourceforge.net
3284S: Maintained
3285
3286UNIFORM CDROM DRIVER
3287P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003288M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289L: linux-kernel@vger.kernel.org
3290W: http://www.kernel.dk
3291S: Maintained
3292
3293USB ACM DRIVER
3294P: Oliver Neukum
3295M: oliver@neukum.name
3296L: linux-usb-users@lists.sourceforge.net
3297L: linux-usb-devel@lists.sourceforge.net
3298S: Maintained
3299
3300USB BLOCK DRIVER (UB ub)
3301P: Pete Zaitcev
3302M: zaitcev@redhat.com
3303L: linux-kernel@vger.kernel.org
3304L: linux-usb-devel@lists.sourceforge.net
3305S: Supported
3306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307USB CDC ETHERNET DRIVER
3308P: Greg Kroah-Hartman
3309M: greg@kroah.com
3310L: linux-usb-users@lists.sourceforge.net
3311L: linux-usb-devel@lists.sourceforge.net
3312S: Maintained
3313W: http://www.kroah.com/linux-usb/
3314
3315USB EHCI DRIVER
3316P: David Brownell
3317M: dbrownell@users.sourceforge.net
3318L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003319S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
Luca Risolia7ce08c92006-01-11 02:06:59 +00003321USB ET61X[12]51 DRIVER
3322P: Luca Risolia
3323M: luca.risolia@studio.unibo.it
3324L: linux-usb-devel@lists.sourceforge.net
3325L: video4linux-list@redhat.com
3326W: http://www.linux-projects.org
3327S: Maintained
3328
David Brownell69ae9e32006-11-14 02:03:31 -08003329USB GADGET/PERIPHERAL SUBSYSTEM
3330P: David Brownell
3331M: dbrownell@users.sourceforge.net
3332L: linux-usb-devel@lists.sourceforge.net
3333W: http://www.linux-usb.org/gadget
3334S: Maintained
3335
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003337P: Jiri Kosina
3338M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339L: linux-usb-devel@lists.sourceforge.net
3340S: Maintained
3341
3342USB HUB DRIVER
3343P: Johannes Erdfelt
3344M: johannes@erdfelt.com
3345L: linux-usb-users@lists.sourceforge.net
3346L: linux-usb-devel@lists.sourceforge.net
3347S: Maintained
3348
Olav Kongas959eea22005-11-03 17:38:14 +02003349USB ISP116X DRIVER
3350P: Olav Kongas
3351M: ok@artecdesign.ee
3352L: linux-usb-devel@lists.sourceforge.net
3353S: Maintained
3354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355USB KAWASAKI LSI DRIVER
3356P: Oliver Neukum
3357M: oliver@neukum.name
3358L: linux-usb-users@lists.sourceforge.net
3359L: linux-usb-devel@lists.sourceforge.net
3360S: Maintained
3361
3362USB MASS STORAGE DRIVER
3363P: Matthew Dharm
3364M: mdharm-usb@one-eyed-alien.net
3365L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003366L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367S: Maintained
3368W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3369
3370USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003371P: David Brownell
3372M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373L: linux-usb-users@lists.sourceforge.net
3374L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003375S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376
Matthias Urlichsba460e42005-07-14 00:33:47 -07003377USB OPTION-CARD DRIVER
3378P: Matthias Urlichs
3379M: smurf@smurf.noris.de
3380L: linux-usb-devel@lists.sourceforge.net
3381S: Maintained
3382
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383USB OV511 DRIVER
3384P: Mark McClelland
3385M: mmcclell@bigfoot.com
3386L: linux-usb-users@lists.sourceforge.net
3387L: linux-usb-devel@lists.sourceforge.net
3388W: http://alpha.dyndns.org/ov511/
3389S: Maintained
3390
3391USB PEGASUS DRIVER
3392P: Petko Manolov
3393M: petkan@users.sourceforge.net
3394L: linux-usb-users@lists.sourceforge.net
3395L: linux-usb-devel@lists.sourceforge.net
3396W: http://pegasus2.sourceforge.net/
3397S: Maintained
3398
3399USB PRINTER DRIVER
3400P: Vojtech Pavlik
3401M: vojtech@suse.cz
3402L: linux-usb-users@lists.sourceforge.net
3403L: linux-usb-devel@lists.sourceforge.net
3404S: Maintained
3405
3406USB RTL8150 DRIVER
3407P: Petko Manolov
3408M: petkan@users.sourceforge.net
3409L: linux-usb-users@lists.sourceforge.net
3410L: linux-usb-devel@lists.sourceforge.net
3411W: http://pegasus2.sourceforge.net/
3412S: Maintained
3413
3414USB SE401 DRIVER
3415P: Jeroen Vreeken
3416M: pe1rxq@amsat.org
3417L: linux-usb-users@lists.sourceforge.net
3418L: linux-usb-devel@lists.sourceforge.net
3419W: http://www.chello.nl/~j.vreeken/se401/
3420S: Maintained
3421
3422USB SERIAL CYBERJACK DRIVER
3423P: Matthias Bruestle and Harald Welte
3424M: support@reiner-sct.com
3425W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3426S: Maintained
3427
3428USB SERIAL DIGI ACCELEPORT DRIVER
3429P: Peter Berger and Al Borchers
3430M: pberger@brimson.com
3431M: alborchers@steinerpoint.com
3432L: linux-usb-users@lists.sourceforge.net
3433L: linux-usb-devel@lists.sourceforge.net
3434S: Maintained
3435
3436USB SERIAL DRIVER
3437P: Greg Kroah-Hartman
3438M: gregkh@suse.de
3439L: linux-usb-users@lists.sourceforge.net
3440L: linux-usb-devel@lists.sourceforge.net
3441S: Supported
3442
3443USB SERIAL BELKIN F5U103 DRIVER
3444P: William Greathouse
3445M: wgreathouse@smva.com
3446L: linux-usb-users@lists.sourceforge.net
3447L: linux-usb-devel@lists.sourceforge.net
3448S: Maintained
3449
3450USB SERIAL CYPRESS M8 DRIVER
3451P: Lonnie Mendez
3452M: dignome@gmail.com
3453L: linux-usb-users@lists.sourceforge.net
3454L: linux-usb-devel@lists.sourceforge.net
3455S: Maintained
3456W: http://geocities.com/i0xox0i
3457W: http://firstlight.net/cvs
3458
3459USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3460L: linux-usb-users@lists.sourceforge.net
3461L: linux-usb-devel@lists.sourceforge.net
3462S: Maintained
3463
3464USB AUERSWALD DRIVER
3465P: Wolfgang Muees
3466M: wolfgang@iksw-muees.de
3467L: linux-usb-users@lists.sourceforge.net
3468L: linux-usb-devel@lists.sourceforge.net
3469S: Maintained
3470
3471USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3472P: Gary Brubaker
3473M: xavyer@ix.netcom.com
3474L: linux-usb-users@lists.sourceforge.net
3475L: linux-usb-devel@lists.sourceforge.net
3476S: Maintained
3477
3478USB SERIAL KEYSPAN DRIVER
3479P: Greg Kroah-Hartman
3480M: greg@kroah.com
3481L: linux-usb-users@lists.sourceforge.net
3482L: linux-usb-devel@lists.sourceforge.net
3483W: http://www.kroah.com/linux/
3484S: Maintained
3485
3486USB SERIAL WHITEHEAT DRIVER
3487P: Stuart MacDonald
3488M: stuartm@connecttech.com
3489L: linux-usb-users@lists.sourceforge.net
3490L: linux-usb-devel@lists.sourceforge.net
3491W: http://www.connecttech.com
3492S: Supported
3493
3494USB SN9C10x DRIVER
3495P: Luca Risolia
3496M: luca.risolia@studio.unibo.it
3497L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003498L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499W: http://www.linux-projects.org
3500S: Maintained
3501
3502USB SUBSYSTEM
3503P: Greg Kroah-Hartman
3504M: gregkh@suse.de
3505L: linux-usb-users@lists.sourceforge.net
3506L: linux-usb-devel@lists.sourceforge.net
3507W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003508T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509S: Supported
3510
3511USB UHCI DRIVER
3512P: Alan Stern
3513M: stern@rowland.harvard.edu
3514L: linux-usb-users@lists.sourceforge.net
3515L: linux-usb-devel@lists.sourceforge.net
3516S: Maintained
3517
David Brownell69ae9e32006-11-14 02:03:31 -08003518USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519P: David Brownell
3520M: dbrownell@users.sourceforge.net
3521L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003522W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523S: Maintained
3524
3525USB W996[87]CF DRIVER
3526P: Luca Risolia
3527M: luca.risolia@studio.unibo.it
3528L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003529L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530W: http://www.linux-projects.org
3531S: Maintained
3532
Luca Risolia60f78052006-02-06 16:29:35 +00003533USB ZC0301 DRIVER
3534P: Luca Risolia
3535M: luca.risolia@studio.unibo.it
3536L: linux-usb-devel@lists.sourceforge.net
3537L: video4linux-list@redhat.com
3538W: http://www.linux-projects.org
3539S: Maintained
3540
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541USB ZD1201 DRIVER
3542P: Jeroen Vreeken
3543M: pe1rxq@amsat.org
3544L: linux-usb-users@lists.sourceforge.net
3545L: linux-usb-devel@lists.sourceforge.net
3546W: http://linux-lc100020.sourceforge.net
3547S: Maintained
3548
3549USER-MODE LINUX
3550P: Jeff Dike
3551M: jdike@karaya.com
3552L: user-mode-linux-devel@lists.sourceforge.net
3553L: user-mode-linux-user@lists.sourceforge.net
3554W: http://user-mode-linux.sourceforge.net
3555S: Maintained
3556
3557FAT/VFAT/MSDOS FILESYSTEM:
3558P: OGAWA Hirofumi
3559M: hirofumi@mail.parknet.co.jp
3560L: linux-kernel@vger.kernel.org
3561S: Maintained
3562
3563VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3564P: Jeff Garzik
3565S: Odd fixes
3566
3567VIA RHINE NETWORK DRIVER
3568P: Roger Luethi
3569M: rl@hellgate.ch
3570S: Maintained
3571
Jean Delvare32c0a522005-09-22 21:47:58 +02003572VIAPRO SMBUS DRIVER
3573P: Jean Delvare
3574M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003575L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003576S: Maintained
3577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578UCLINUX (AND M68KNOMMU)
3579P: Greg Ungerer
3580M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003582L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583S: Maintained
3584
3585UCLINUX FOR NEC V850
3586P: Miles Bader
3587M: uclinux-v850@lsi.nec.co.jp
3588W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3589W: http://www.ee.nec.de/uclinux/
3590S: Supported
3591
3592UCLINUX FOR RENESAS H8/300
3593P: Yoshinori Sato
3594M: ysato@users.sourceforge.jp
3595W: http://uclinux-h8.sourceforge.jp/
3596S: Supported
3597
3598USB DIAMOND RIO500 DRIVER
3599P: Cesar Miquel
3600M: miquel@df.uba.ar
3601L: rio500-users@lists.sourceforge.net
3602W: http://rio500.sourceforge.net
3603S: Maintained
3604
3605VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003606P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003607M: mchehab@infradead.org
3608M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003610W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003611T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003612S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
Juerg Haefligerab413192006-09-24 20:54:04 +02003614VT1211 HARDWARE MONITOR DRIVER
3615P: Juerg Haefliger
3616M: juergh@gmail.com
3617L: lm-sensors@lm-sensors.org
3618S: Maintained
3619
Roger Lucas1de9e372005-11-26 20:20:05 +01003620VT8231 HARDWARE MONITOR DRIVER
3621P: Roger Lucas
3622M: roger@planbit.co.uk
3623L: lm-sensors@lm-sensors.org
3624S: Maintained
3625
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626W1 DALLAS'S 1-WIRE BUS
3627P: Evgeniy Polyakov
3628M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629S: Maintained
3630
Charles Spirakis13927072006-07-05 18:05:15 +02003631W83791D HARDWARE MONITORING DRIVER
3632P: Charles Spirakis
3633M: bezaur@gmail.com
3634L: lm-sensors@lm-sensors.org
3635S: Maintained
3636
Rudolf Marek61db0112006-12-12 18:18:30 +01003637W83793 HARDWARE MONITORING DRIVER
3638P: Rudolf Marek
3639M: r.marek@assembler.cz
3640L: lm-sensors@lm-sensors.org
3641S: Maintained
3642
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643W83L51xD SD/MMC CARD INTERFACE DRIVER
3644P: Pierre Ossman
3645M: drzeus-wbsd@drzeus.cx
3646L: wbsd-devel@list.drzeus.cx
3647W: http://projects.drzeus.cx/wbsd
3648S: Maintained
3649
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003650WATCHDOG DEVICE DRIVERS
3651P: Wim Van Sebroeck
3652M: wim@iguana.be
3653T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3654S: Maintained
3655
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3657P: Jean Tourrilhes
3658M: jt@hpl.hp.com
3659W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3660S: Maintained
3661
3662WD7000 SCSI DRIVER
3663P: Miroslav Zagorac
3664M: zaga@fly.cc.fer.hr
3665L: linux-scsi@vger.kernel.org
3666S: Maintained
3667
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003668WISTRON LAPTOP BUTTON DRIVER
3669P: Miloslav Trmac
3670M: mitr@volny.cz
3671S: Maintained
3672
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673WL3501 WIRELESS PCMCIA CARD DRIVER
3674P: Arnaldo Carvalho de Melo
3675M: acme@conectiva.com.br
3676W: http://advogato.org/person/acme
3677S: Maintained
3678
3679X.25 NETWORK LAYER
3680P: Henner Eisen
3681M: eis@baty.hanse.de
3682L: linux-x25@vger.kernel.org
3683S: Maintained
3684
3685XFS FILESYSTEM
3686P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003687P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003689L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003691T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692S: Supported
3693
Peter Korsgaard238b8722006-12-06 20:35:17 -08003694XILINX UARTLITE SERIAL DRIVER
3695P: Peter Korsgaard
3696M: jacmet@sunsite.dk
3697L: linux-serial@vger.kernel.org
3698S: Maintained
3699
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700X86 3-LEVEL PAGING (PAE) SUPPORT
3701P: Ingo Molnar
3702M: mingo@redhat.com
3703S: Maintained
3704
3705X86-64 port
3706P: Andi Kleen
3707M: ak@suse.de
3708L: discuss@x86-64.org
3709W: http://www.x86-64.org
3710S: Maintained
3711
3712YAM DRIVER FOR AX.25
3713P: Jean-Paul Roubelat
3714M: jpr@f6fbb.org
3715L: linux-hams@vger.kernel.org
3716S: Maintained
3717
Henkaf64a5e2005-10-12 15:02:56 +02003718YEALINK PHONE DRIVER
3719P: Henk Vergonet
3720M: Henk.Vergonet@gmail.com
3721L: usbb2k-api-dev@nongnu.org
3722S: Maintained
3723
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724Z8530 DRIVER FOR AX.25
3725P: Joerg Reuter
3726M: jreuter@yaina.de
3727W: http://yaina.de/jreuter/
3728W: http://www.qsl.net/dl1bke/
3729L: linux-hams@vger.kernel.org
3730S: Maintained
3731
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003732ZD1211RW WIRELESS DRIVER
3733P: Daniel Drake
3734M: dsd@gentoo.org
3735P: Ulrich Kunitz
3736M: kune@deine-taler.de
3737W: http://zd1211.ath.cx/wiki/DriverRewrite
3738L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3739S: Maintained
3740
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741ZF MACHZ WATCHDOG
3742P: Fernando Fuganti
3743M: fuganti@netbank.com.br
3744W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3745S: Maintained
3746
3747ZR36067 VIDEO FOR LINUX DRIVER
3748P: Ronald Bultje
3749M: rbultje@ronald.bitfreak.net
3750L: mjpeg-users@lists.sourceforge.net
3751W: http://mjpeg.sourceforge.net/driver-zoran/
3752S: Maintained
3753
3754ZR36120 VIDEO FOR LINUX DRIVER
3755P: Pauline Middelink
3756M: middelin@polyware.nl
3757W: http://www.polyware.nl/~middelin/En/hobbies.html
3758W: http://www.polyware.nl/~middelin/hobbies.html
3759S: Maintained
3760
3761THE REST
3762P: Linus Torvalds
3763S: Buried alive in reporters