blob: d1f454c6dbe48cd1cf296a196ca8ef6feb5a5ad4 [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
444L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
445S: Maintained
446
447ARM/INTEL IOP13XX ARM ARCHITECTURE
448P: Lennert Buytenhek
449M: kernel@wantstofly.org
450L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
451S: Maintained
452
453ARM/INTEL IQ81342EX MACHINE SUPPORT
454P: Lennert Buytenhek
455M: kernel@wantstofly.org
456L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
457S: Maintained
458
459ARM/INTEL IXP2000 ARM ARCHITECTURE
460P: Lennert Buytenhek
461M: kernel@wantstofly.org
462L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
463S: Maintained
464
465ARM/INTEL IXDP2850 MACHINE SUPPORT
466P: Lennert Buytenhek
467M: kernel@wantstofly.org
468L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
469S: Maintained
470
471ARM/INTEL IXP23XX 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 XSC3 (MANZANO) ARM CORE
478P: Lennert Buytenhek
479M: kernel@wantstofly.org
480L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
481S: Maintained
482
483ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
484P: Lennert Buytenhek
485M: kernel@wantstofly.org
486L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
487S: Maintained
488
489ARM/LOGICPD PXA270 MACHINE SUPPORT
490P: Lennert Buytenhek
491M: kernel@wantstofly.org
492L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
493S: Maintained
494
Dirk Opfer8459c152005-11-06 14:27:52 +0000495ARM/TOSA MACHINE SUPPORT
496P: Dirk Opfer
497M: dirk@opfer-online.de
498S: Maintained
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500ARM/PLEB SUPPORT
501P: Peter Chubb
502M: pleb@gelato.unsw.edu.au
503W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
504S: Maintained
505
506ARM/PT DIGITAL BOARD PORT
507P: Stefan Eletzhofer
508M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700509L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510W: http://www.arm.linux.org.uk/
511S: Maintained
512
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800513ARM/RADISYS ENP2611 MACHINE SUPPORT
514P: Lennert Buytenhek
515M: kernel@wantstofly.org
516L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
517S: Maintained
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519ARM/SHARK MACHINE SUPPORT
520P: Alexander Schulz
521M: alex@shark-linux.de
522W: http://www.shark-linux.de/shark.html
523S: Maintained
524
525ARM/STRONGARM110 PORT
526P: Russell King
527M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700528L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529W: http://www.arm.linux.org.uk/
530S: Maintained
531
532ARM/S3C2410 ARM ARCHITECTURE
533P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800534M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700535L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536W: http://www.fluff.org/ben/linux/
537S: Maintained
538
539ARM/S3C2440 ARM ARCHITECTURE
540P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800541M: ben-linux@fluff.org
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.fluff.org/ben/linux/
544S: Maintained
545
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800546ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
547P: Lennert Buytenhek
548M: kernel@wantstofly.org
549L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
550S: Maintained
551
552ARM/THECUS N2100 MACHINE SUPPORT
553P: Lennert Buytenhek
554M: kernel@wantstofly.org
555L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
556S: Maintained
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558ARPD SUPPORT
559P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700560L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561S: Maintained
562
563ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500564P: Corentin Chary
565M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566P: Karol Kozimor
567M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568L: acpi4asus-user@lists.sourceforge.net
569W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500570W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571S: Maintained
572
573ATA OVER ETHERNET DRIVER
574P: Ed L. Cashin
575M: ecashin@coraid.com
576W: http://www.coraid.com/support/linux
577S: Supported
578
579ATM
580P: Chas Williams
581M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700582L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583W: http://linux-atm.sourceforge.net
584S: Maintained
585
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100586ATMEL MACB ETHERNET DRIVER
587P: Atmel AVR32 Support Team
588M: avr32@atmel.com
589P: Haavard Skinnemoen
590M: hskinnemoen@atmel.com
591S: Supported
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593ATMEL WIRELESS DRIVER
594P: Simon Kelley
595M: simon@thekelleys.org.uk
596W: http://www.thekelleys.org.uk/atmel
597W: http://atmelwlandriver.sourceforge.net/
598S: Maintained
599
Chris Wrighta92b7b82005-07-07 18:12:23 -0700600AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100601P: David Woodhouse
602M: dwmw2@infradead.org
603L: linux-audit@redhat.com
604W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800605T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700606S: Maintained
607
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700608AVR32 ARCHITECTURE
609P: Atmel AVR32 Support Team
610M: avr32@atmel.com
611P: Haavard Skinnemoen
612M: hskinnemoen@atmel.com
613W: http://www.atmel.com/products/AVR32/
614W: http://avr32linux.org/
615W: http://avrfreaks.net/
616S: Supported
617
618AVR32/AT32AP MACHINE SUPPORT
619P: Atmel AVR32 Support Team
620M: avr32@atmel.com
621P: Haavard Skinnemoen
622M: hskinnemoen@atmel.com
623S: Supported
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625AX.25 NETWORK LAYER
626P: Ralf Baechle
627M: ralf@linux-mips.org
628L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200629W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630S: Maintained
631
632BAYCOM/HDLCDRV DRIVERS FOR AX.25
633P: Thomas Sailer
634M: t.sailer@alumni.ethz.ch
635L: linux-hams@vger.kernel.org
636W: http://www.baycom.org/~tom/ham/ham.html
637S: Maintained
638
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200639BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
640P: Larry Finger
641M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200642P: Stefano Brivio
643M: st3@riseup.net
644W: http://bcm43xx.berlios.de/
645S: Maintained
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647BEFS FILE SYSTEM
648P: Sergey S. Kostyliov
649M: rathamahata@php4.ru
650L: linux-kernel@vger.kernel.org
651S: Maintained
652
653BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
654P: Kenji Hollis
655W: http://ftp.bitgate.com/pcwd/
656S: Maintained
657
658BFS FILE SYSTEM
659P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800660M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661L: linux-kernel@vger.kernel.org
662S: Maintained
663
664BLOCK LAYER
665P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200666M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800668T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669S: Maintained
670
671BLUETOOTH SUBSYSTEM
672P: Marcel Holtmann
673M: marcel@holtmann.org
674P: Maxim Krasnyansky
675M: maxk@qualcomm.com
676L: bluez-devel@lists.sf.net
677W: http://bluez.sf.net
678W: http://www.bluez.org
679W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800680T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681S: Maintained
682
683BLUETOOTH RFCOMM LAYER
684P: Marcel Holtmann
685M: marcel@holtmann.org
686P: Maxim Krasnyansky
687M: maxk@qualcomm.com
688S: Maintained
689
690BLUETOOTH BNEP LAYER
691P: Marcel Holtmann
692M: marcel@holtmann.org
693P: Maxim Krasnyansky
694M: maxk@qualcomm.com
695S: Maintained
696
697BLUETOOTH CMTP LAYER
698P: Marcel Holtmann
699M: marcel@holtmann.org
700S: Maintained
701
702BLUETOOTH HIDP LAYER
703P: Marcel Holtmann
704M: marcel@holtmann.org
705S: Maintained
706
707BLUETOOTH HCI UART DRIVER
708P: Marcel Holtmann
709M: marcel@holtmann.org
710P: Maxim Krasnyansky
711M: maxk@qualcomm.com
712S: Maintained
713
714BLUETOOTH HCI USB DRIVER
715P: Marcel Holtmann
716M: marcel@holtmann.org
717P: Maxim Krasnyansky
718M: maxk@qualcomm.com
719S: Maintained
720
721BLUETOOTH HCI BCM203X DRIVER
722P: Marcel Holtmann
723M: marcel@holtmann.org
724S: Maintained
725
726BLUETOOTH HCI BPA10X DRIVER
727P: Marcel Holtmann
728M: marcel@holtmann.org
729S: Maintained
730
731BLUETOOTH HCI BFUSB DRIVER
732P: Marcel Holtmann
733M: marcel@holtmann.org
734S: Maintained
735
736BLUETOOTH HCI DTL1 DRIVER
737P: Marcel Holtmann
738M: marcel@holtmann.org
739S: Maintained
740
741BLUETOOTH HCI BLUECARD DRIVER
742P: Marcel Holtmann
743M: marcel@holtmann.org
744S: Maintained
745
746BLUETOOTH HCI BT3C DRIVER
747P: Marcel Holtmann
748M: marcel@holtmann.org
749S: Maintained
750
751BLUETOOTH HCI BTUART DRIVER
752P: Marcel Holtmann
753M: marcel@holtmann.org
754S: Maintained
755
756BLUETOOTH HCI VHCI DRIVER
757P: Maxim Krasnyansky
758M: maxk@qualcomm.com
759S: Maintained
760
761BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100762P: Chad Tindel
763M: ctindel@users.sourceforge.net
764P: Jay Vosburgh
765M: fubar@us.ibm.com
766L: bonding-devel@lists.sourceforge.net
767W: http://sourceforge.net/projects/bonding/
768S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000770BROADBAND PROCESSOR ARCHITECTURE
771P: Arnd Bergmann
772M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100773L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400774W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000775S: Supported
776
Gary Zambrano39105892006-06-22 17:26:20 -0700777BROADCOM B44 10/100 ETHERNET DRIVER
778P: Gary Zambrano
779M: zambrano@broadcom.com
780L: netdev@vger.kernel.org
781S: Supported
782
Michael Chan948c51e2006-06-04 02:51:39 -0700783BROADCOM BNX2 GIGABIT ETHERNET DRIVER
784P: Michael Chan
785M: mchan@broadcom.com
786L: netdev@vger.kernel.org
787S: Supported
788
789BROADCOM TG3 GIGABIT ETHERNET DRIVER
790P: Michael Chan
791M: mchan@broadcom.com
792L: netdev@vger.kernel.org
793S: Supported
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700796P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200797M: mchehab@infradead.org
798M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700800W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200801T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700802S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200804CALGARY x86-64 IOMMU
805P: Muli Ben-Yehuda
806M: muli@il.ibm.com
807P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200808M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200809L: linux-kernel@vger.kernel.org
810L: discuss@x86-64.org
811S: Maintained
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813COMMON INTERNET FILE SYSTEM (CIFS)
814P: Steve French
815M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100816L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817L: samba-technical@lists.samba.org
818W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800819T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820S: Supported
821
Joel Becker7063fbf2005-12-15 14:29:43 -0800822CONFIGFS
823P: Joel Becker
Joel Becker62ca3d22006-01-27 11:04:12 -0800824M: joel.becker@oracle.com
825L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800826S: Supported
827
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800828CIRRUS LOGIC EP93XX ETHERNET DRIVER
829P: Lennert Buytenhek
830M: kernel@wantstofly.org
831L: netdev@vger.kernel.org
832S: Maintained
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834CIRRUS LOGIC GENERIC FBDEV DRIVER
835P: Jeff Garzik
836M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800837L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838S: Odd Fixes
839
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800840CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
841P: Lennert Buytenhek
842M: kernel@wantstofly.org
843L: linux-usb-devel@lists.sourceforge.net
844S: Maintained
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
847P: Cirrus Logic Corporation (kernel 2.2 driver)
848M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
849P: Nils Faerber (port to kernel 2.4)
850M: Nils Faerber <nils@kernelconcepts.de>
851S: Maintained
852
853CODA FILE SYSTEM
854P: Jan Harkes
855M: jaharkes@cs.cmu.edu
856M: coda@cs.cmu.edu
857L: codalist@coda.cs.cmu.edu
858W: http://www.coda.cs.cmu.edu/
859S: Maintained
860
861COMPACTPCI HOTPLUG CORE
862P: Scott Murray
863M: scottm@somanetworks.com
864M: scott@spiteful.org
865L: pcihpd-discuss@lists.sourceforge.net
866S: Supported
867
868COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
869P: Scott Murray
870M: scottm@somanetworks.com
871M: scott@spiteful.org
872L: pcihpd-discuss@lists.sourceforge.net
873S: Supported
874
875COMPACTPCI HOTPLUG GENERIC DRIVER
876P: Scott Murray
877M: scottm@somanetworks.com
878M: scott@spiteful.org
879L: pcihpd-discuss@lists.sourceforge.net
880S: Supported
881
882COMPUTONE INTELLIPORT MULTIPORT CARD
883P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -0700884M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -0700886S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888COSA/SRP SYNC SERIAL DRIVER
889P: Jan "Yenya" Kasprzak
890M: kas@fi.muni.cz
891W: http://www.fi.muni.cz/~kas/cosa/
892S: Maintained
893
894CPU FREQUENCY DRIVERS
895P: Dave Jones
896M: davej@codemonkey.org.uk
897L: cpufreq@lists.linux.org.uk
898W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -0500899T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900S: Maintained
901
902CPUID/MSR DRIVER
903P: H. Peter Anvin
904M: hpa@zytor.com
905S: Maintained
906
Paul Jacksoned90fb42005-09-27 21:45:37 -0700907CPUSETS
908P: Paul Jackson
909P: Simon Derr
910M: pj@sgi.com
911M: simon.derr@bull.net
912L: linux-kernel@vger.kernel.org
913W: http://www.bullopensource.org/cpuset/
914S: Supported
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100917W: http://sourceforge.net/projects/cramfs/
918S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920CRIS PORT
921P: Mikael Starvik
922M: starvik@axis.com
923L: dev-etrax@axis.com
924W: http://developer.axis.com
925S: Maintained
926
927CRYPTO API
928P: Herbert Xu
929M: herbert@gondor.apana.org.au
930P: David S. Miller
931M: davem@davemloft.net
932L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -0800933T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934S: Maintained
935
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100936CS5535 Audio ALSA driver
937P: Jaya Kumar
938M: jayakumar.alsa@gmail.com
939S: Maintained
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941CYBERPRO FB DRIVER
942P: Russell King
943M: rmk@arm.linux.org.uk
944W: http://www.arm.linux.org.uk/
945S: Maintained
946
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700947CYBLAFB FRAMEBUFFER DRIVER
948P: Knut Petersen
949M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800950L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -0700951S: Maintained
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953CYCLADES 2X SYNC CARD DRIVER
954P: Arnaldo Carvalho de Melo
955M: acme@conectiva.com.br
956W: http://advogato.org/person/acme
957L: cycsyn-devel@bazar.conectiva.com.br
958S: Maintained
959
960CYCLADES ASYNC MUX DRIVER
961M: async@cyclades.com
962W: http://www.cyclades.com/
963S: Supported
964
965CYCLADES PC300 DRIVER
966M: pc300@cyclades.com
967W: http://www.cyclades.com/
968S: Supported
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970DAMA SLAVE for AX.25
971P: Joerg Reuter
972M: jreuter@yaina.de
973W: http://yaina.de/jreuter/
974W: http://www.qsl.net/dl1bke/
975L: linux-hams@vger.kernel.org
976S: Maintained
977
978DC395x SCSI driver
979P: Oliver Neukum
980M: oliver@neukum.name
981P: Ali Akcaagac
982M: aliakc@web.de
983P: Jamie Lenehan
984M: lenehan@twibble.org
985W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -0700986L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987L: http://lists.twibble.org/mailman/listinfo/dc395x/
988S: Maintained
989
990DC390/AM53C974 SCSI driver
991P: Kurt Garloff
992M: garloff@suse.de
993W: http://www.garloff.de/kurt/linux/dc390/
994P: Guennadi Liakhovetski
995M: g.liakhovetski@gmx.de
996S: Maintained
997
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -0700998DCCP PROTOCOL
999P: Arnaldo Carvalho de Melo
1000M: acme@mandriva.com
1001L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001002W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001003S: Maintained
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005DECnet NETWORK LAYER
1006P: Patrick Caulfield
1007M: patrick@tykepenguin.com
1008W: http://linux-decnet.sourceforge.net
1009L: linux-decnet-user@lists.sourceforge.net
1010S: Maintained
1011
1012DEFXX FDDI NETWORK DRIVER
1013P: Maciej W. Rozycki
1014M: macro@linux-mips.org
1015S: Maintained
1016
1017DELL LAPTOP SMM DRIVER
1018P: Massimo Dal Zotto
1019M: dz@debian.org
1020W: http://www.debian.org/~dz/i8k/
1021S: Maintained
1022
Doug Warzecha90563ec2005-09-06 15:17:15 -07001023DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1024P: Doug Warzecha
1025M: Douglas_Warzecha@dell.com
1026S: Maintained
1027
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001028DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029P: Alasdair Kergon
1030L: dm-devel@redhat.com
1031W: http://sources.redhat.com/dm
1032S: Maintained
1033
1034DEVICE NUMBER REGISTRY
1035P: Torben Mathiasen
1036M: device@lanana.org
1037W: http://lanana.org/docs/device-list/index.html
1038L: linux-kernel@vger.kernel.org
1039S: Maintained
1040
1041DEVICE FILESYSTEM
1042S: Obsolete
1043
1044DIGI INTL. EPCA DRIVER
1045P: Digi International, Inc
1046M: Eng.Linux@digi.com
1047L: Eng.Linux@digi.com
1048W: http://www.digi.com
1049S: Orphaned
1050
1051DIGI RIGHTSWITCH NETWORK DRIVER
1052P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001053L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054W: http://www.digi.com
1055S: Orphaned
1056
1057DIRECTORY NOTIFICATION
1058P: Stephen Rothwell
1059M: sfr@canb.auug.org.au
1060L: linux-kernel@vger.kernel.org
1061S: Supported
1062
1063DISK GEOMETRY AND PARTITION HANDLING
1064P: Andries Brouwer
1065M: aeb@cwi.nl
1066W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1067W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1068W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1069S: Maintained
1070
1071DISKQUOTA:
1072P: Jan Kara
1073M: jack@suse.cz
1074L: linux-kernel@vger.kernel.org
1075S: Maintained
1076
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001077DISTRIBUTED LOCK MANAGER
1078P: Patrick Caulfield
1079M: pcaulfie@redhat.com
1080P: David Teigland
1081M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001082L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001083W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001084T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1085T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001086S: Supported
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1089P: Tobias Ringstrom
1090M: tori@unhappy.mine.nu
1091L: linux-kernel@vger.kernel.org
1092S: Maintained
1093
Martin Waitzba483d52005-06-17 13:20:59 -07001094DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001095P: Randy Dunlap
1096M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001097S: Maintained
1098
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001099DOCKING STATION DRIVER
1100P: Kristen Carlson Accardi
1101M: kristen.c.accardi@intel.com
1102L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001103S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105DOUBLETALK DRIVER
1106P: James R. Van Zandt
1107M: jrv@vanzandt.mv.com
1108L: blinux-list@redhat.com
1109S: Maintained
1110
1111DRIVER CORE, KOBJECTS, AND SYSFS
1112P: Greg Kroah-Hartman
1113M: gregkh@suse.de
1114L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001115T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116S: Supported
1117
1118DRM DRIVERS
1119P: David Airlie
1120M: airlied@linux.ie
1121L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001122T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123S: Maintained
1124
1125DSCC4 DRIVER
1126P: François Romieu
1127M: romieu@cogenit.fr
1128M: romieu@ensta.fr
1129S: Maintained
1130
1131DVB SUBSYSTEM AND DRIVERS
1132P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001133M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001135W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001136T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001137S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139EATA-DMA SCSI DRIVER
1140P: Michael Neuffer
1141L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1142S: Maintained
1143
1144EATA ISA/EISA/PCI SCSI DRIVER
1145P: Dario Ballabio
1146M: ballabio_dario@emc.com
1147L: linux-scsi@vger.kernel.org
1148S: Maintained
1149
1150EATA-PIO SCSI DRIVER
1151P: Michael Neuffer
1152M: mike@i-Connect.Net
1153L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1154S: Maintained
1155
1156EBTABLES
1157P: Bart De Schuymer
1158M: bart.de.schuymer@pandora.be
1159L: ebtables-user@lists.sourceforge.net
1160L: ebtables-devel@lists.sourceforge.net
1161W: http://ebtables.sourceforge.net/
1162S: Maintained
1163
Michael Halcrow237fead2006-10-04 02:16:22 -07001164ECRYPT FILE SYSTEM
1165P: Mike Halcrow, Phillip Hellewell
1166M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1167L: ecryptfs-devel@lists.sourceforge.net
1168W: http://ecryptfs.sourceforge.net/
1169S: Supported
1170
Alan Coxda9bb1d2006-01-18 17:44:13 -08001171EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001172P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001173M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001174L: bluesmoke-devel@lists.sourceforge.net
1175W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001176S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001177
1178EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001179P: Mark Gross
1180M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001181L: bluesmoke-devel@lists.sourceforge.net
1182W: bluesmoke.sourceforge.net
1183S: Maintained
1184
1185EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001186P: Doug Thompson
1187M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001188L: bluesmoke-devel@lists.sourceforge.net
1189W: bluesmoke.sourceforge.net
1190S: Maintained
1191
1192EDAC-R82600
1193P: Tim Small
1194M: tim@buttersideup.com
1195L: bluesmoke-devel@lists.sourceforge.net
1196W: bluesmoke.sourceforge.net
1197S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199EEPRO100 NETWORK DRIVER
1200P: Andrey V. Savochkin
1201M: saw@saw.sw.com.sg
1202S: Maintained
1203
Josh Triplett0bee8d22006-07-30 03:03:58 -07001204EFS FILESYSTEM
1205W: http://aeschi.ch.eu.org/efs/
1206S: Orphan
1207
Heiko J Schickfab97222006-09-22 15:22:22 -07001208EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1209P: Hoang-Nam Nguyen
1210M: hnguyen@de.ibm.com
1211P: Christoph Raisch
1212M: raisch@de.ibm.com
1213L: openib-general@openib.org
1214S: Supported
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216EMU10K1 SOUND DRIVER
1217P: James Courtier-Dutton
1218M: James@superbug.demon.co.uk
1219L: emu10k1-devel@lists.sourceforge.net
1220W: http://sourceforge.net/projects/emu10k1/
1221S: Maintained
1222
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001223EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001224P: James Smart
1225M: james.smart@emulex.com
1226L: linux-scsi@vger.kernel.org
1227W: http://sourceforge.net/projects/lpfcxxxx
1228S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230EPSON 1355 FRAMEBUFFER DRIVER
1231P: Christopher Hoover
1232M: ch@murgatroid.com, ch@hpl.hp.com
1233S: Maintained
1234
1235ETHEREXPRESS-16 NETWORK DRIVER
1236P: Philip Blundell
1237M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001238L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239S: Maintained
1240
1241ETHERNET BRIDGE
1242P: Stephen Hemminger
1243M: shemminger@osdl.org
1244L: bridge@osdl.org
1245W: http://bridge.sourceforge.net/
1246S: Maintained
1247
1248ETHERTEAM 16I DRIVER
1249P: Mika Kuoppala
1250M: miku@iki.fi
1251S: Maintained
1252
1253EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001254L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255S: Maintained
1256
1257EXT3 FILE SYSTEM
1258P: Stephen Tweedie, Andrew Morton
1259M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001260L: linux-ext4@vger.kernel.org
1261S: Maintained
1262
1263EXT4 FILE SYSTEM
1264P: Stephen Tweedie, Andrew Morton
1265M: sct@redhat.com, akpm@osdl.org, adilger@clusterfs.com
1266L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267S: Maintained
1268
Jean Delvaree53004e2006-01-09 23:26:14 +01001269F71805F HARDWARE MONITORING DRIVER
1270P: Jean Delvare
1271M: khali@linux-fr.org
1272L: lm-sensors@lm-sensors.org
1273S: Maintained
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275FARSYNC SYNCHRONOUS DRIVER
1276P: Kevin Curtis
1277M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278W: http://www.farsite.co.uk/
1279S: Supported
1280
1281FRAMEBUFFER LAYER
1282P: Antonino Daplas
1283M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001284L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285W: http://linux-fbdev.sourceforge.net/
1286S: Maintained
1287
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001288FREESCALE SOC FS_ENET DRIVER
1289P: Pantelis Antoniou
1290M: pantelis.antoniou@gmail.com
1291P: Vitaly Bordug
1292M: vbordug@ru.mvista.com
1293L: linuxppc-embedded@ozlabs.org
1294L: netdev@vger.kernel.org
1295S: Maintained
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297FILE LOCKING (flock() and fcntl()/lockf())
1298P: Matthew Wilcox
1299M: matthew@wil.cx
1300L: linux-fsdevel@vger.kernel.org
1301S: Maintained
1302
1303FILESYSTEMS (VFS and infrastructure)
1304P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001305M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306S: Maintained
1307
1308FIRMWARE LOADER (request_firmware)
1309L: linux-kernel@vger.kernel.org
1310S: Orphan
1311
1312FPU EMULATOR
1313P: Bill Metzenthen
1314M: billm@suburbia.net
1315W: http://suburbia.net/~billm/floating-point/emulator/
1316S: Maintained
1317
1318FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1319P: Mike McLagan
1320M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001321L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322S: Maintained
1323
1324FREEVXFS FILESYSTEM
1325P: Christoph Hellwig
1326M: hch@infradead.org
1327W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1328S: Maintained
1329
1330FUJITSU FR-V PORT
1331P: David Howells
1332M: dhowells@redhat.com
1333S: Maintained
1334
Miklos Szeredi04578f12005-09-09 13:10:22 -07001335FUSE: FILESYSTEM IN USERSPACE
1336P: Miklos Szeredi
1337M: miklos@szeredi.hu
1338L: fuse-devel@lists.sourceforge.net
1339W: http://fuse.sourceforge.net/
1340S: Maintained
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1343P: Rik Faith
1344M: faith@cs.unc.edu
1345L: linux-scsi@vger.kernel.org
1346S: Odd fixes (e.g., new signatures)
1347
1348GDT SCSI DISK ARRAY CONTROLLER DRIVER
1349P: Achim Leubner
1350M: achim_leubner@adaptec.com
1351L: linux-scsi@vger.kernel.org
1352W: http://www.icp-vortex.com/
1353S: Supported
1354
1355GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1356P: Krzysztof Halasa
1357M: khc@pm.waw.pl
1358W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1359S: Maintained
1360
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001361GFS2 FILE SYSTEM
1362P: Steven Whitehouse
1363M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001364L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001365W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001366T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1367T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001368S: Supported
1369
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001370GIGASET ISDN DRIVERS
1371P: Hansjoerg Lipp
1372M: hjlipp@web.de
1373P: Tilman Schmidt
1374M: tilman@imap.cc
1375L: gigaset307x-common@lists.sourceforge.net
1376W: http://gigaset307x.sourceforge.net/
1377S: Maintained
1378
Jean Delvare5b543962005-08-15 19:51:02 +02001379HARDWARE MONITORING
1380P: Jean Delvare
1381M: khali@linux-fr.org
1382L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001383W: http://www.lm-sensors.org/
1384T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001385S: Maintained
1386
Michael Buesch844dd052006-06-26 00:24:59 -07001387HARDWARE RANDOM NUMBER GENERATOR CORE
1388P: Michael Buesch
1389M: mb@bu3sch.de
1390S: Maintained
1391
Robert Love860e1d62005-08-31 23:57:59 -04001392HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1393P: Robert Love
1394M: rlove@rlove.org
1395M: linux-kernel@vger.kernel.org
1396W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1397S: Maintained
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399HARMONY SOUND DRIVER
1400P: Kyle McMartin
1401M: kyle@parisc-linux.org
1402W: http://www.parisc-linux.org/~kyle/harmony/
1403L: parisc-linux@lists.parisc-linux.org
1404S: Maintained
1405
1406HAYES ESP SERIAL DRIVER
1407P: Andrew J. Robinson
1408M: arobinso@nyx.net
1409L: linux-kernel@vger.kernel.org
1410W: http://www.nyx.net/~arobinso
1411S: Maintained
1412
1413HFS FILESYSTEM
1414P: Roman Zippel
1415M: zippel@linux-m68k.org
1416L: linux-kernel@vger.kernel.org
1417S: Maintained
1418
1419HGA FRAMEBUFFER DRIVER
1420P: Ferenc Bakonyi
1421M: fero@drama.obuda.kando.hu
1422L: linux-nvidia@lists.surfsouth.com
1423W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1424S: Maintained
1425
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001426HID CORE LAYER
1427P: Jiri Kosina
1428M: jkosina@suse.cz
1429L: linux-input@atrey.karlin.mff.cuni.cz
1430S: Maintained
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432HIGH-SPEED SCC DRIVER FOR AX.25
1433P: Klaus Kudielka
1434M: klaus.kudielka@ieee.org
1435L: linux-hams@vger.kernel.org
1436W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1437S: Maintained
1438
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001439HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1440P: HighPoint Linux Team
1441M: linux@highpoint-tech.com
1442W: http://www.highpoint-tech.com
1443S: Supported
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445HIPPI
1446P: Jes Sorensen
1447M: jes@trained-monkey.org
1448L: linux-hippi@sunsite.dk
1449S: Maintained
1450
1451HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1452P: Chirag Kantharia
1453M: chirag.kantharia@hp.com
1454L: iss_storagedev@hp.com
1455S: Maintained
1456
1457HEWLETT-PACKARD SMART2 RAID DRIVER
1458P: Chirag Kantharia
1459M: chirag.kantharia@hp.com
1460L: iss_storagedev@hp.com
1461S: Maintained
1462
1463HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1464P: Mike Miller
1465M: mike.miller@hp.com
1466L: iss_storagedev@hp.com
1467S: Supported
1468
Jouni Malinenff1d2762005-05-12 22:54:16 -04001469HOST AP DRIVER
1470P: Jouni Malinen
1471M: jkmaline@cc.hut.fi
1472L: hostap@shmoo.com
1473W: http://hostap.epitest.fi/
1474S: Maintained
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1477P: Jaroslav Kysela
1478M: perex@suse.cz
1479S: Maintained
1480
Bob Piccob9b03322005-11-07 00:59:19 -08001481HPET: High Precision Event Timers driver (hpet.c)
1482P: Clemens Ladisch
1483M: clemens@ladisch.de
1484S: Maintained
1485
1486HPET: i386
1487P: Venkatesh Pallipadi (Venki)
1488M: venkatesh.pallipadi@intel.com
1489S: Maintained
1490
1491HPET: x86_64
1492P: Andi Kleen and Vojtech Pavlik
1493M: ak@muc.de and vojtech@suse.cz
1494S: Maintained
1495
1496HPET: ACPI hpet.c
1497P: Bob Picco
1498M: bob.picco@hp.com
1499S: Maintained
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501HPFS FILESYSTEM
1502P: Mikulas Patocka
1503M: mikulas@artax.karlin.mff.cuni.cz
1504W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1505S: Maintained
1506
1507HUGETLB FILESYSTEM
1508P: William Irwin
1509M: wli@holomorphy.com
1510S: Maintained
1511
Jean Delvare5b543962005-08-15 19:51:02 +02001512I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513P: Jean Delvare
1514M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001515L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001516T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517S: Maintained
1518
1519I2O
1520P: Markus Lidel
1521M: markus.lidel@shadowconnect.com
1522W: http://i2o.shadowconnect.com/
1523S: Maintained
1524
1525i386 BOOT CODE
1526P: Riley H. Williams
1527M: Riley@Williams.Name
1528L: Linux-Kernel@vger.kernel.org
1529S: Maintained
1530
1531i386 SETUP CODE / CPU ERRATA WORKAROUNDS
1532P: Dave Jones
1533M: davej@codemonkey.org.uk
1534P: H. Peter Anvin
1535M: hpa@zytor.com
1536S: Maintained
1537
1538i810 TCO TIMER WATCHDOG
1539P: Nils Faerber
1540M: nils@kernelconcepts.de
1541W: http://www.kernelconcepts.de/
1542S: Maintained
1543
1544IA64 (Itanium) PLATFORM
1545P: Tony Luck
1546M: tony.luck@intel.com
1547L: linux-ia64@vger.kernel.org
1548W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001549T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550S: Maintained
1551
Henrique de Moraes Holschuh7d63c672006-11-08 13:18:29 -02001552IBM ACPI EXTRAS DRIVER
1553P: Henrique de Moraes Holschuh
1554M: ibm-acpi@hmh.eng.br
1555L: ibm-acpi-devel@lists.sourceforge.net
1556W: http://ibm-acpi.sourceforge.net
1557W: http://thinkwiki.org/wiki/Ibm-acpi
1558T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
1559S: Maintained
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001562P: Jes Sorensen
1563M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564L: linux-altix@sgi.com
1565L: linux-ia64@vger.kernel.org
1566W: http://www.sgi.com/altix
1567S: Maintained
1568
1569IBM MCA SCSI SUBSYSTEM DRIVER
1570P: Michael Lang
1571M: langa2@kph.uni-mainz.de
1572W: http://www.uni-mainz.de/~langm000/linux.html
1573S: Maintained
1574
1575IBM Power Linux RAID adapter
1576P: Brian King
1577M: brking@us.ibm.com
1578S: Supported
1579
1580IBM ServeRAID RAID DRIVER
1581P: Jack Hammer
1582P: Dave Jeffery
1583M: ipslinux@adaptec.com
1584W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
1585S: Supported
1586
1587IDE DRIVER [GENERAL]
1588P: Bartlomiej Zolnierkiewicz
1589M: B.Zolnierkiewicz@elka.pw.edu.pl
1590L: linux-kernel@vger.kernel.org
1591L: linux-ide@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001592T: git kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593S: Maintained
1594
1595IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001596P: Alan Cox
1597M: alan@lxorguk.ukuu.org.uk
1598L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599S: Maintained
1600
1601IDE/ATAPI FLOPPY DRIVERS
1602P: Paul Bristow
1603M: Paul Bristow <paul@paulbristow.net>
1604W: http://paulbristow.net/linux/idefloppy.html
1605L: linux-kernel@vger.kernel.org
1606S: Maintained
1607
1608IDE/ATAPI TAPE DRIVERS
1609P: Gadi Oxman
1610M: Gadi Oxman <gadio@netvision.net.il>
1611L: linux-kernel@vger.kernel.org
1612S: Maintained
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614IEEE 1394 SUBSYSTEM
1615P: Ben Collins
1616M: bcollins@debian.org
Stefan Richter87730d02006-09-16 12:24:00 +02001617P: Stefan Richter
1618M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619L: linux1394-devel@lists.sourceforge.net
1620W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001621T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622S: Maintained
1623
Stefan Richter87730d02006-09-16 12:24:00 +02001624IEEE 1394 IPV4 DRIVER (eth1394)
1625P: Stefan Richter
1626M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001628S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630IEEE 1394 PCILYNX DRIVER
1631P: Jody McIntyre
Jody McIntyre6c59f9d2006-01-05 23:04:08 -05001632M: scjody@modernduck.com
Stefan Richter87730d02006-09-16 12:24:00 +02001633P: Stefan Richter
1634M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635L: linux1394-devel@lists.sourceforge.net
Stefan Richter87730d02006-09-16 12:24:00 +02001636S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638IEEE 1394 RAW I/O DRIVER
1639P: Ben Collins
1640M: bcollins@debian.org
1641P: Dan Dennedy
1642M: dan@dennedy.org
1643L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001644S: Maintained
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646IMS TWINTURBO FRAMEBUFFER DRIVER
1647P: Paul Mundt
1648M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001649L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650S: Maintained
1651
1652INFINIBAND SUBSYSTEM
1653P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001654M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655P: Sean Hefty
1656M: mshefty@ichips.intel.com
1657P: Hal Rosenstock
1658M: halr@voltaire.com
1659L: openib-general@openib.org
1660W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001661T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662S: Supported
1663
1664INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001665P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001666M: dmitry.torokhov@gmail.com
1667M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668L: linux-input@atrey.karlin.mff.cuni.cz
1669L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001670T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671S: Maintained
1672
Robert Lovec9f04f52005-07-15 12:21:07 -04001673INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01001674P: John McCutchan
1675M: ttb@tentacle.dhs.org
1676P: Robert Love
1677M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001678L: linux-kernel@vger.kernel.org
1679S: Maintained
1680
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001681INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001682P: Sylvain Meyer
1683M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001684L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001685S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001686
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001688P: Antonino Daplas
1689M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001690L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001691S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1694P: Ingo Molnar
1695M: mingo@redhat.com
1696S: Maintained
1697
1698INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1699P: Jeff Garzik
1700M: jgarzik@pobox.com
1701W: http://sourceforge.net/projects/gkernel/
1702S: Maintained
1703
1704INTEL IA32 MICROCODE UPDATE SUPPORT
1705P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001706M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707S: Maintained
1708
Michael Buesch844dd052006-06-26 00:24:59 -07001709INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1710P: Deepak Saxena
1711M: dsaxena@plexity.net
1712S: Maintained
1713
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001714INTEL IXP2000 ETHERNET DRIVER
1715P: Lennert Buytenhek
1716M: kernel@wantstofly.org
1717L: netdev@vger.kernel.org
1718S: Maintained
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720INTEL PRO/100 ETHERNET SUPPORT
1721P: John Ronciak
1722M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723P: Jesse Brandeburg
1724M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001725P: Jeff Kirsher
1726M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001727P: Auke Kok
1728M: auke-jan.h.kok@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729W: http://sourceforge.net/projects/e1000/
1730S: Supported
1731
1732INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1733P: Jeb Cramer
1734M: cramerj@intel.com
1735P: John Ronciak
1736M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001737P: Jesse Brandeburg
1738M: jesse.brandeburg@intel.com
1739P: 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/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001747P: Jeff Kirsher
1748M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749P: Ayyappan Veeraiyan
1750M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751P: John Ronciak
1752M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001753P: Jesse Brandeburg
1754M: jesse.brandeburg@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
James Ketrenos826d2ab2005-11-07 18:56:59 -06001760INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1761P: Yi Zhu
1762M: yi.zhu@intel.com
1763P: James Ketrenos
1764M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001765L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001766L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1767W: http://ipw2100.sourceforge.net
1768S: Supported
1769
1770INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1771P: Yi Zhu
1772M: yi.zhu@intel.com
1773P: James Ketrenos
1774M: jketreno@linux.intel.com
Randy Dunlapf5df58812006-07-14 00:24:29 -07001775L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001776L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1777W: http://ipw2200.sourceforge.net
1778S: Supported
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780IOC3 DRIVER
1781P: Ralf Baechle
1782M: ralf@linux-mips.org
1783L: linux-mips@linux-mips.org
1784S: Maintained
1785
1786IP MASQUERADING:
1787P: Juanjo Ciarlante
1788M: jjciarla@raiz.uncu.edu.ar
1789S: Maintained
1790
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001791IPATH DRIVER:
1792P: Bryan O'Sullivan
1793M: support@pathscale.com
1794L: openib-general@openib.org
1795S: Supported
1796
Corey Minyard4409ebe2006-04-20 02:43:12 -07001797IPMI SUBSYSTEM
1798P: Corey Minyard
1799M: minyard@acm.org
1800L: openipmi-developer@lists.sourceforge.net
1801W: http://openipmi.sourceforge.net/
1802S: Supported
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804IPX NETWORK LAYER
1805P: Arnaldo Carvalho de Melo
1806M: acme@conectiva.com.br
Ralf Baechle979b6c12005-06-13 14:30:40 -07001807L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808S: Maintained
1809
1810IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001811P: Samuel Ortiz
1812M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001813L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001815S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817ISAPNP
1818P: Jaroslav Kysela
1819M: perex@suse.cz
1820S: Maintained
1821
1822ISDN SUBSYSTEM
1823P: Karsten Keil
1824M: kkeil@suse.de
1825P: Kai Germaschewski
1826M: kai.germaschewski@gmx.de
1827L: isdn4linux@listserv.isdn4linux.de
1828W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001829T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830S: Maintained
1831
1832ISDN SUBSYSTEM (Eicon active card driver)
1833P: Armin Schindler
1834M: mac@melware.de
1835L: isdn4linux@listserv.isdn4linux.de
1836W: http://www.melware.de
1837S: Maintained
1838
1839JOURNALLING FLASH FILE SYSTEM (JFFS)
1840P: Axis Communications AB
1841M: jffs-dev@axis.com
1842L: jffs-dev@axis.com
1843W: http://www.developer.axis.com/software/jffs/
1844S: Maintained
1845
1846JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
1847P: David Woodhouse
1848M: dwmw2@infradead.org
1849L: jffs-dev@axis.com
1850W: http://sources.redhat.com/jffs2/
1851S: Maintained
1852
1853JFS FILESYSTEM
1854P: Dave Kleikamp
1855M: shaggy@austin.ibm.com
1856L: jfs-discussion@lists.sourceforge.net
1857W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08001858T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859S: Supported
1860
Josh Triplettde456d32006-07-30 03:04:00 -07001861JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07001862P: Stephen Tweedie, Andrew Morton
1863M: sct@redhat.com, akpm@osdl.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08001864L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07001865S: Maintained
1866
Rudolf Marek4660cb32006-10-08 22:01:26 +02001867K8TEMP HARDWARE MONITORING DRIVER
1868P: Rudolf Marek
1869M: r.marek@assembler.cz
1870L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871S: Maintained
1872
1873KCONFIG
1874P: Roman Zippel
1875M: zippel@linux-m68k.org
1876L: kbuild-devel@lists.sourceforge.net
1877S: Maintained
1878
Vivek Goyalea6c2082006-05-20 14:59:55 -07001879KDUMP
1880P: Vivek Goyal
1881M: vgoyal@in.ibm.com
1882P: Haren Myneni
1883M: hbabu@us.ibm.com
1884L: fastboot@lists.osdl.org
1885L: linux-kernel@vger.kernel.org
1886W: http://lse.sourceforge.net/kdump/
1887S: Maintained
1888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889KERNEL AUTOMOUNTER (AUTOFS)
1890P: H. Peter Anvin
1891M: hpa@zytor.com
1892L: autofs@linux.kernel.org
1893S: Odd Fixes
1894
1895KERNEL AUTOMOUNTER v4 (AUTOFS4)
1896P: Ian Kent
1897M: raven@themaw.net
1898L: autofs@linux.kernel.org
1899S: Maintained
1900
1901KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
1902P: Kai Germaschewski
1903M: kai@germaschewski.name
1904P: Sam Ravnborg
1905M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001906T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907S: Maintained
1908
1909KERNEL JANITORS
1910P: Several
Randy Dunlap1f525f12006-07-30 03:04:16 -07001911L: kernel-janitors@lists.osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913S: Maintained
1914
1915KERNEL NFSD
1916P: Neil Brown
1917M: neilb@cse.unsw.edu.au
1918L: nfs@lists.sourceforge.net
1919W: http://nfs.sourceforge.net/
1920W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
1921S: Maintained
1922
Avi Kivity426d62e2006-12-13 00:34:03 -08001923KERNEL VIRTUAL MACHINE (KVM)
1924P: Avi Kivity
1925M: avi@qumranet.com
1926L: kvm-devel@lists.sourceforge.net
1927W: kvm.sourceforge.net
1928S: Supported
1929
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001930KEXEC
1931P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001932M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001933W: http://www.xmission.com/~ebiederm/files/kexec/
1934L: linux-kernel@vger.kernel.org
1935L: fastboot@osdl.org
1936S: Maintained
1937
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07001938KPROBES
1939P: Prasanna S Panchamukhi
1940M: prasanna@in.ibm.com
1941P: Ananth N Mavinakayanahalli
1942M: ananth@in.ibm.com
1943P: Anil S Keshavamurthy
1944M: anil.s.keshavamurthy@intel.com
1945P: David S. Miller
1946M: davem@davemloft.net
1947L: linux-kernel@vger.kernel.org
1948S: Maintained
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07001952S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954LASI 53c700 driver for PARISC
1955P: James E.J. Bottomley
1956M: James.Bottomley@HansenPartnership.com
1957L: linux-scsi@vger.kernel.org
1958S: Maintained
1959
Richard Purdie263de9b2006-05-15 09:44:16 -07001960LED SUBSYSTEM
1961P: Richard Purdie
1962M: rpurdie@rpsys.net
1963S: Maintained
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965LEGO USB Tower driver
1966P: Juergen Stuber
1967M: starblue@users.sourceforge.net
1968L: legousb-devel@lists.sourceforge.net
1969W: http://legousb.sourceforge.net/
1970S: Maintained
1971
1972LINUX FOR IBM pSERIES (RS/6000)
1973P: Paul Mackerras
1974M: paulus@au.ibm.com
1975W: http://www.ibm.com/linux/ltc/projects/ppc
1976S: Supported
1977
1978LINUX FOR NCR VOYAGER
1979P: James Bottomley
1980M: James.Bottomley@HansenPartnership.com
1981W: http://www.hansenpartnership.com/voyager
1982S: Maintained
1983
1984LINUX FOR POWERPC
1985P: Paul Mackerras
1986M: paulus@samba.org
1987W: http://www.penguinppc.org/
1988L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001989T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990S: Supported
1991
1992LINUX FOR POWER MACINTOSH
1993P: Benjamin Herrenschmidt
1994M: benh@kernel.crashing.org
1995W: http://www.penguinppc.org/
1996L: linuxppc-dev@ozlabs.org
1997S: Maintained
1998
1999LINUX FOR POWERPC EMBEDDED MPC52XX
2000P: Sylvain Munaut
2001M: tnt@246tNt.com
2002W: http://www.246tNt.com/mpc52xx/
2003W: http://www.penguinppc.org/
2004L: linuxppc-dev@ozlabs.org
2005L: linuxppc-embedded@ozlabs.org
2006S: Maintained
2007
2008LINUX FOR POWERPC EMBEDDED PPC4XX
2009P: Matt Porter
2010M: mporter@kernel.crashing.org
2011W: http://www.penguinppc.org/
2012L: linuxppc-embedded@ozlabs.org
2013S: Maintained
2014
Tom Rinie93adf12005-07-26 12:49:53 -07002015LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016P: Tom Rini
2017M: trini@kernel.crashing.org
2018W: http://www.penguinppc.org/
2019L: linuxppc-embedded@ozlabs.org
2020S: Maintained
2021
Tom Rinie93adf12005-07-26 12:49:53 -07002022LINUX FOR POWERPC EMBEDDED PPC8XX
2023P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002024M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002025W: http://www.penguinppc.org/
2026L: linuxppc-embedded@ozlabs.org
2027S: Maintained
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002030P: Kumar Gala
2031M: galak@kernel.crashing.org
2032W: http://www.penguinppc.org/
2033L: linuxppc-embedded@ozlabs.org
2034S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Olof Johanssonab06ff32006-09-06 14:44:54 -05002036LINUX FOR POWERPC PA SEMI PWRFICIENT
2037P: Olof Johansson
2038M: olof@lixom.net
2039W: http://www.pasemi.com/
2040L: linuxppc-dev@ozlabs.org
2041S: Supported
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043LLC (802.2)
2044P: Arnaldo Carvalho de Melo
2045M: acme@conectiva.com.br
2046S: Maintained
2047
2048LINUX FOR 64BIT POWERPC
2049P: Paul Mackerras
2050M: paulus@samba.org
2051M: paulus@au.ibm.com
2052P: Anton Blanchard
2053M: anton@samba.org
2054M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002055W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002056L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057S: Supported
2058
2059LINUX SECURITY MODULE (LSM) FRAMEWORK
2060P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002061M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002062L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002064T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065S: Supported
2066
2067LM83 HARDWARE MONITOR DRIVER
2068P: Jean Delvare
2069M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002070L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071S: Maintained
2072
2073LM90 HARDWARE MONITOR DRIVER
2074P: Jean Delvare
2075M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002076L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077S: Maintained
2078
2079LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP Dynamic Disks)
2080P: Richard Russon (FlatCap)
2081M: ldm@flatcap.org
2082L: ldm-devel@lists.sourceforge.net
2083W: http://ldm.sourceforge.net
2084S: Maintained
2085
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002086LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2087P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002088M: Eric.Moore@lsi.com
2089M: support@lsi.com
2090L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002091L: linux-scsi@vger.kernel.org
2092W: http://www.lsilogic.com/support
2093S: Supported
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2096P: Matthew Wilcox
2097M: matthew@wil.cx
2098L: linux-scsi@vger.kernel.org
2099S: Maintained
2100
2101M68K ARCHITECTURE
2102P: Geert Uytterhoeven
2103M: geert@linux-m68k.org
2104P: Roman Zippel
2105M: zippel@linux-m68k.org
2106L: linux-m68k@lists.linux-m68k.org
2107W: http://www.linux-m68k.org/
2108W: http://linux-m68k-cvs.ubb.ca/
2109S: Maintained
2110
2111M68K ON APPLE MACINTOSH
2112P: Joshua Thompson
2113M: funaho@jurai.org
2114W: http://www.mac.linux-m68k.org/
2115L: linux-mac68k@mac.linux-m68k.org
2116S: Maintained
2117
2118M68K ON HP9000/300
2119P: Philip Blundell
2120M: philb@gnu.org
2121W: http://www.tazenda.demon.co.uk/phil/linux-hp
2122S: Maintained
2123
2124MARVELL YUKON / SYSKONNECT DRIVER
2125P: Mirko Lindner
2126M: mlindner@syskonnect.de
2127P: Ralph Roesler
2128M: rroesler@syskonnect.de
2129W: http://www.syskonnect.com
2130S: Supported
2131
Michael Kerriskfaf16682005-07-31 22:34:47 -07002132MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002133P: Michael Kerrisk
2134M: mtk-manpages@gmx.net
2135W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2136S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002137
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002138MARVELL MV643XX ETHERNET DRIVER
2139P: Dale Farnsworth
2140M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002142M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002143L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002144S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146MATROX FRAMEBUFFER DRIVER
2147P: Petr Vandrovec
2148M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002149L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150S: Maintained
2151
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002152MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002153P: Neela Syam Kolli
2154M: Neela.Kolli@engenio.com
2155S: linux-scsi@vger.kernel.org
2156W: http://megaraid.lsilogic.com
2157S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002158
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002159MEMORY MANAGEMENT
2160L: linux-mm@kvack.org
2161L: linux-kernel@vger.kernel.org
2162W: http://www.linux-mm.org
2163S: Maintained
2164
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002165MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166P: David Woodhouse
2167M: dwmw2@infradead.org
2168W: http://www.linux-mtd.infradead.org/
2169L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002170T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171S: Maintained
2172
2173MICROTEK X6 SCANNER
2174P: Oliver Neukum
2175M: oliver@neukum.name
2176S: Maintained
2177
2178MIPS
2179P: Ralf Baechle
2180M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002181W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002183T: git www.linux-mips.org:/pub/scm/linux.git
2184S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186MISCELLANEOUS MCA-SUPPORT
2187P: James Bottomley
2188M: jejb@steeleye.com
2189L: linux-kernel@vger.kernel.org
2190S: Maintained
2191
2192MODULE SUPPORT
2193P: Rusty Russell
2194M: rusty@rustcorp.com.au
2195L: linux-kernel@vger.kernel.org
2196S: Maintained
2197
2198MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2199P: Stelian Pop
2200M: stelian@popies.net
2201W: http://popies.net/meye/
2202S: Maintained
2203
2204MOUSE AND MISC DEVICES [GENERAL]
2205P: Alessandro Rubini
2206M: rubini@ipvvis.unipv.it
2207L: linux-kernel@vger.kernel.org
2208S: Maintained
2209
Jiri Slabyd7354102006-12-08 02:38:35 -08002210MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2211P: Jiri Slaby
2212M: jirislaby@gmail.com
2213L: linux-kernel@vger.kernel.org
2214S: Maintained
2215
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002216MSI LAPTOP SUPPORT
2217P: Lennart Poettering
2218M: mzxreary@0pointer.de
2219L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2220W: http://0pointer.de/lennart/tchibo.html
2221S: Maintained
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223MTRR AND SIMILAR SUPPORT [i386]
2224P: Richard Gooch
2225M: rgooch@atnf.csiro.au
2226L: linux-kernel@vger.kernel.org
2227W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2228S: Maintained
2229
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002230MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2231P: Pierre Ossman
2232M: drzeus-mmc@drzeus.cx
2233L: linux-kernel@vger.kernel.org
2234S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236MULTISOUND SOUND DRIVER
2237P: Andrew Veliath
2238M: andrewtv@usa.net
2239S: Maintained
2240
Jiri Slabyd7354102006-12-08 02:38:35 -08002241MULTITECH MULTIPORT CARD (ISICOM)
2242P: Jiri Slaby
2243M: jirislaby@gmail.com
2244L: linux-kernel@vger.kernel.org
2245S: Maintained
2246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247NATSEMI ETHERNET DRIVER (DP8381x)
2248P: Tim Hockin
2249M: thockin@hockin.org
2250S: Maintained
2251
2252NCP FILESYSTEM
2253P: Petr Vandrovec
2254M: vandrove@vc.cvut.cz
2255L: linware@sh.cvut.cz
2256S: Maintained
2257
2258NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2259P: James E.J. Bottomley
2260M: James.Bottomley@HansenPartnership.com
2261L: linux-scsi@vger.kernel.org
2262S: Maintained
2263
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002264NETEM NETWORK EMULATOR
2265P: Stephen Hemminger
2266M: shemminger@osdl.org
2267L: netem@osdl.org
2268S: Maintained
2269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270NETFILTER/IPTABLES/IPCHAINS
2271P: Rusty Russell
2272P: Marc Boucher
2273P: James Morris
2274P: Harald Welte
2275P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002276P: Patrick McHardy
2277M: kaber@trash.net
2278L: netfilter-devel@lists.netfilter.org
2279L: netfilter@lists.netfilter.org
2280L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281W: http://www.netfilter.org/
2282W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283S: Supported
2284
Paul Moore4cc67732006-09-25 15:57:13 -07002285NETLABEL
2286P: Paul Moore
2287M: paul.moore@hp.com
2288W: http://netlabel.sf.net
2289L: netdev@vger.kernel.org
2290S: Supported
2291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292NETROM NETWORK LAYER
2293P: Ralf Baechle
2294M: ralf@linux-mips.org
2295L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002296W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297S: Maintained
2298
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002299NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300P: Paul Clements
2301M: Paul.Clements@steeleye.com
2302S: Maintained
2303
2304NETWORK DEVICE DRIVERS
2305P: Andrew Morton
2306M: akpm@osdl.org
2307P: Jeff Garzik
2308M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002309L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002310T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311S: Maintained
2312
2313NETWORKING [GENERAL]
2314P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002315M: netdev@vger.kernel.org
2316L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002317W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318S: Maintained
2319
2320NETWORKING [IPv4/IPv6]
2321P: David S. Miller
2322M: davem@davemloft.net
2323P: Alexey Kuznetsov
2324M: kuznet@ms2.inr.ac.ru
2325P: Pekka Savola (ipv6)
2326M: pekkas@netcore.fi
2327P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002328M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329P: Hideaki YOSHIFUJI
2330M: yoshfuji@linux-ipv6.org
2331P: Patrick McHardy
2332M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002333L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002334T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335S: Maintained
2336
John W. Linville29f8f632006-01-18 14:52:48 -08002337NETWORKING [WIRELESS]
2338P: John W. Linville
2339M: linville@tuxdriver.com
2340L: netdev@vger.kernel.org
2341T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2342S: Maintained
2343
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002344NETXEN (1/10) GbE SUPPORT
2345P: Amit S. Kale
2346M: amitkale@netxen.com
2347L: netdev@vger.kernel.org
2348W: http://www.netxen.com
2349S: Supported
2350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351IPVS
2352P: Wensong Zhang
2353M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002354P: Simon Horman
2355M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356P: Julian Anastasov
2357M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002358L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359S: Maintained
2360
2361NFS CLIENT
2362P: Trond Myklebust
2363M: trond.myklebust@fys.uio.no
2364L: linux-kernel@vger.kernel.org
2365S: Maintained
2366
2367NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002368P: Jan-Pascal van Best
2369M: janpascal@vanbest.org
2370P: Andreas Mohr
2371M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002372L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373S: Maintained
2374
2375NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2376P: YOKOTA Hiroshi
2377M: yokota@netlab.is.tsukuba.ac.jp
2378W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2379S: Maintained
2380
2381NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2382P: GOTO Masanori
2383M: gotom@debian.or.jp
2384P: YOKOTA Hiroshi
2385M: yokota@netlab.is.tsukuba.ac.jp
2386W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2387S: Maintained
2388
2389NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2390P: Eberhard Moenkeberg
2391M: emoenke@gwdg.de
2392L: linux-kernel@vger.kernel.org
2393S: Maintained
2394
2395NTFS FILESYSTEM
2396P: Anton Altaparmakov
2397M: aia21@cantab.net
2398L: linux-ntfs-dev@lists.sourceforge.net
2399L: linux-kernel@vger.kernel.org
2400W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002401T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402S: Maintained
2403
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002404NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002405P: Antonino Daplas
2406M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002407L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002408S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002410OPENCORES I2C BUS DRIVER
2411P: Peter Korsgaard
2412M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002413L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002414S: Maintained
2415
Mark Fashehccd979b2005-12-15 14:31:24 -08002416ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2417P: Mark Fasheh
2418M: mark.fasheh@oracle.com
2419P: Kurt Hackel
2420M: kurt.hackel@oracle.com
2421L: ocfs2-devel@oss.oracle.com
2422W: http://oss.oracle.com/projects/ocfs2/
2423S: Supported
2424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425OLYMPIC NETWORK DRIVER
2426P: Peter De Shrijver
2427M: p2@ace.ulyssis.student.kuleuven.ac.be
2428P: Mike Phillips
2429M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002430L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431L: linux-tr@linuxtr.net
2432W: http://www.linuxtr.net
2433S: Maintained
2434
Harald Weltec1986ee2005-11-13 16:06:29 -08002435OMNIKEY CARDMAN 4000 DRIVER
2436P: Harald Welte
2437M: laforge@gnumonks.org
2438S: Maintained
2439
Harald Welte77c44ab2005-11-13 16:06:26 -08002440OMNIKEY CARDMAN 4040 DRIVER
2441P: Harald Welte
2442M: laforge@gnumonks.org
2443S: Maintained
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445ONSTREAM SCSI TAPE DRIVER
2446P: Willem Riede
2447M: osst@riede.org
2448L: osst-users@lists.sourceforge.net
2449L: linux-scsi@vger.kernel.org
2450S: Maintained
2451
2452OPL3-SA2, SA3, and SAx DRIVER
2453P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002454M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455L: linux-sound@vger.kernel.org
2456S: Maintained
2457
2458OPROFILE
2459P: Philippe Elie
2460M: phil.el@wanadoo.fr
2461L: oprofile-list@lists.sf.net
2462S: Maintained
2463
2464ORINOCO DRIVER
2465P: Pavel Roskin
2466M: proski@gnu.org
2467P: David Gibson
2468M: hermes@gibson.dropbear.id.au
Pavel Roskinecffdde2005-05-05 16:16:01 -07002469L: orinoco-users@lists.sourceforge.net
2470L: orinoco-devel@lists.sourceforge.net
2471W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472S: Maintained
2473
2474PARALLEL PORT SUPPORT
2475P: Phil Blundell
2476M: philb@gnu.org
2477P: Tim Waugh
2478M: tim@cyberelk.net
2479P: David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480P: Andrea Arcangeli
2481M: andrea@suse.de
2482L: linux-parport@lists.infradead.org
2483W: http://people.redhat.com/twaugh/parport/
2484S: Maintained
2485
2486PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2487P: Tim Waugh
2488M: tim@cyberelk.net
2489L: linux-parport@lists.infradead.org
2490W: http://www.torque.net/linux-pp.html
2491S: Maintained
2492
2493PARISC ARCHITECTURE
2494P: Matthew Wilcox
2495M: matthew@wil.cx
2496P: Grant Grundler
2497M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002498P: Kyle McMartin
2499M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500L: parisc-linux@parisc-linux.org
2501W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002502T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2503T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504S: Maintained
2505
Jim Cromie1662d322006-10-06 00:43:59 -07002506PC87360 HARDWARE MONITORING DRIVER
2507P: Jim Cromie
2508M: jim.cromie@gmail.com
2509L: lm-sensors@lm-sensors.org
2510S: Maintained
2511
2512PC8736x GPIO DRIVER
2513P: Jim Cromie
2514M: jim.cromie@gmail.com
2515S: Maintained
2516
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002517PCI ERROR RECOVERY
2518P: Linas Vepstas
2519M: linas@austin.ibm.com
2520L: linux-kernel@vger.kernel.org
2521L: linux-pci@atrey.karlin.mff.cuni.cz
2522S: Supported
2523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2525P: Thomas Sailer
2526M: sailer@ife.ee.ethz.ch
2527L: linux-sound@vger.kernel.org
2528W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2529S: Maintained
2530
2531PCI SUBSYSTEM
2532P: Greg Kroah-Hartman
2533M: gregkh@suse.de
2534L: linux-kernel@vger.kernel.org
2535L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002536T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537S: Supported
2538
2539PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002540P: Kristen Carlson Accardi
2541M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542S: Supported
2543
2544PCI HOTPLUG COMPAQ DRIVER
2545P: Greg Kroah-Hartman
2546M: greg@kroah.com
2547S: Maintained
2548
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002549PCIE HOTPLUG DRIVER
2550P: Kristen Carlson Accardi
2551M: kristen.c.accardi@intel.com
2552L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002553S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002556P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002557L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002559T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002560S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
2562PCNET32 NETWORK DRIVER
2563P: Thomas Bogendörfer
2564M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002565L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566S: Maintained
2567
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002568PER-TASK DELAY ACCOUNTING
2569P: Shailabh Nagar
2570M: nagar@watson.ibm.com
2571L: linux-kernel@vger.kernel.org
2572S: Maintained
2573
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002574PERSONALITY HANDLING
2575P: Christoph Hellwig
2576M: hch@infradead.org
2577L: linux-abi-devel@lists.sourceforge.net
2578S: Maintained
2579
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580PHRAM MTD DRIVER
2581P: Jörn Engel
2582M: joern@wh.fh-wedel.de
2583L: linux-mtd@lists.infradead.org
2584S: Maintained
2585
Peter Osterlund249a6772005-09-27 21:45:30 -07002586PKTCDVD DRIVER
2587P: Peter Osterlund
2588M: petero2@telia.com
2589L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002590S: Maintained
2591
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592POSIX CLOCKS and TIMERS
2593P: George Anzinger
2594M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002595L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596S: Supported
2597
Eugene Surovegin24682972005-10-14 03:00:53 -07002598POWERPC 4xx EMAC DRIVER
2599P: Eugene Surovegin
2600M: ebs@ebshome.net
2601W: http://kernel.ebshome.net/emac/
2602L: linuxppc-embedded@ozlabs.org
2603L: netdev@vger.kernel.org
2604S: Maintained
2605
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606PNP SUPPORT
2607P: Adam Belay
2608M: ambx1@neo.rr.com
2609S: Maintained
2610
2611PPP PROTOCOL DRIVERS AND COMPRESSORS
2612P: Paul Mackerras
2613M: paulus@samba.org
2614L: linux-ppp@vger.kernel.org
2615S: Maintained
2616
2617PPP OVER ATM (RFC 2364)
2618P: Mitchell Blank Jr
2619M: mitch@sfgoth.com
2620S: Maintained
2621
2622PPP OVER ETHERNET
2623P: Michal Ostrowski
2624M: mostrows@speakeasy.net
2625S: Maintained
2626
2627PREEMPTIBLE KERNEL
2628P: Robert Love
2629M: rml@tech9.net
2630L: linux-kernel@vger.kernel.org
2631L: kpreempt-tech@lists.sourceforge.net
2632W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2633S: Supported
2634
2635PRISM54 WIRELESS DRIVER
2636P: Prism54 Development Team
2637M: prism54-private@prism54.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002638L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639W: http://prism54.org
2640S: Maintained
2641
2642PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2643P: Peter Denison
2644M: promise@pnd-pc.demon.co.uk
2645W: http://www.pnd-pc.demon.co.uk/promise/
2646S: Maintained
2647
Geoff Levandf58a9d12006-11-23 00:46:51 +01002648PS3 PLATFORM SUPPORT
2649P: Geoff Levand
2650M: geoffrey.levand@am.sony.com
2651L: linuxppc-dev@ozlabs.org
2652L: cbe-oss-dev@ozlabs.org
2653S: Supported
2654
Michael Krufky83202042006-07-03 00:24:18 -07002655PVRUSB2 VIDEO4LINUX DRIVER
2656P: Mike Isely
2657M: isely@pobox.com
2658L: pvrusb2@isely.net
2659L: video4linux-list@redhat.com
2660W: http://www.isely.net/pvrusb2/
2661S: Maintained
2662
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663PXA2xx SUPPORT
2664P: Nicolas Pitre
2665M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002666L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667S: Maintained
2668
2669QLOGIC QLA2XXX FC-SCSI DRIVER
2670P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002671M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672L: linux-scsi@vger.kernel.org
2673S: Supported
2674
Ron Mercer5a4faa82006-07-25 00:40:21 -07002675QLOGIC QLA3XXX NETWORK DRIVER
2676P: Ron Mercer
2677M: linux-driver@qlogic.com
2678L: netdev@vger.kernel.org
2679S: Supported
2680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681QNX4 FILESYSTEM
2682P: Anders Larsen
2683M: al@alarsen.net
2684L: linux-kernel@vger.kernel.org
2685W: http://www.alarsen.net/linux/qnx4fs/
2686S: Maintained
2687
2688RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002689P: Benjamin Herrenschmidt
2690M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002691L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692S: Maintained
2693
2694RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002695P: Paul Mackerras
2696M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002697L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698S: Maintained
2699
2700RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2701P: Corey Thomas
2702M: corey@world.std.com
2703L: linux-kernel@vger.kernel.org
2704S: Maintained
2705
Matt Mackall9e95ce22005-04-16 15:25:56 -07002706RANDOM NUMBER DRIVER
2707P: Matt Mackall
2708M: mpm@selenic.com
2709S: Maintained
2710
Matt Porter394b7012005-11-07 01:00:15 -08002711RAPIDIO SUBSYSTEM
2712P: Matt Porter
2713M: mporter@kernel.crashing.org
2714L: linux-kernel@vger.kernel.org
2715S: Maintained
2716
Josh Triplett595182b2006-10-04 02:17:21 -07002717READ-COPY UPDATE (RCU)
2718P: Dipankar Sarma
2719M: dipankar@in.ibm.com
2720W: http://www.rdrop.com/users/paulmck/rclock/
2721L: linux-kernel@vger.kernel.org
2722S: Supported
2723
2724RCUTORTURE MODULE
2725P: Josh Triplett
2726M: josh@freedesktop.org
2727L: linux-kernel@vger.kernel.org
2728S: Maintained
2729
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730REAL TIME CLOCK DRIVER
2731P: Paul Gortmaker
2732M: p_gortmaker@yahoo.com
2733L: linux-kernel@vger.kernel.org
2734S: Maintained
2735
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002736REAL TIME CLOCK (RTC) SUBSYSTEM
2737P: Alessandro Zummo
2738M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002739L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002740S: Maintained
2741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742REISERFS FILE SYSTEM
2743P: Hans Reiser
2744M: reiserfs-dev@namesys.com
2745L: reiserfs-list@namesys.com
2746W: http://www.namesys.com
2747S: Supported
2748
2749ROCKETPORT DRIVER
2750P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751W: http://www.comtrol.com
2752S: Maintained
2753
2754ROSE NETWORK LAYER
2755P: Ralf Baechle
2756M: ralf@linux-mips.org
2757L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002758W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759S: Maintained
2760
2761RISCOM8 DRIVER
2762S: Orphan
2763
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002764S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002765P: Antonino Daplas
2766M: adaplas@pol.net
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002767L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002768S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770S390
2771P: Martin Schwidefsky
2772M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02002773P: Heiko Carstens
2774M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775M: linux390@de.ibm.com
2776L: linux-390@vm.marist.edu
Heiko Carstens5238da42006-02-11 17:56:01 -08002777W: http://www.ibm.com/developerworks/linux/linux390/
2778S: Supported
2779
2780S390 NETWORK DRIVERS
2781P: Frank Pavlic
2782M: fpavlic@de.ibm.com
2783M: linux390@de.ibm.com
2784L: linux-390@vm.marist.edu
2785W: http://www.ibm.com/developerworks/linux/linux390/
2786S: Supported
2787
2788S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02002789P: Swen Schillig
2790M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08002791M: linux390@de.ibm.com
2792L: linux-390@vm.marist.edu
2793W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794S: Supported
2795
2796SAA7146 VIDEO4LINUX-2 DRIVER
2797P: Michael Hunold
2798M: michael@mihu.de
2799W: http://www.mihu.de/linux/saa7146
2800S: Maintained
2801
2802SBPCD CDROM DRIVER
2803P: Eberhard Moenkeberg
2804M: emoenke@gwdg.de
2805L: linux-kernel@vger.kernel.org
2806S: Maintained
2807
2808SC1200 WDT DRIVER
2809P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002810M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811S: Maintained
2812
2813SCHEDULER
2814P: Ingo Molnar
2815M: mingo@elte.hu
2816P: Robert Love [the preemptible kernel bits]
2817M: rml@tech9.net
2818L: linux-kernel@vger.kernel.org
2819S: Maintained
2820
2821SCSI CDROM DRIVER
2822P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02002823M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824L: linux-scsi@vger.kernel.org
2825W: http://www.kernel.dk
2826S: Maintained
2827
2828SCSI SG DRIVER
2829P: Doug Gilbert
2830M: dgilbert@interlog.com
2831L: linux-scsi@vger.kernel.org
2832W: http://www.torque.net/sg
2833S: Maintained
2834
2835SCSI SUBSYSTEM
2836P: James E.J. Bottomley
2837M: James.Bottomley@SteelEye.com
2838L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002839T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840S: Maintained
2841
2842SCSI TAPE DRIVER
2843P: Kai Mäkisara
2844M: Kai.Makisara@kolumbus.fi
2845L: linux-scsi@vger.kernel.org
2846S: Maintained
2847
2848SCTP PROTOCOL
Jim Cromiece00f852006-11-30 04:49:44 +01002849P: Sridhar Samudrala
2850M: sri@us.ibm.com
2851L: lksctp-developers@lists.sourceforge.net
2852S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853
2854SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07002855P: Jim Cromie
2856M: jim.cromie@gmail.com
2857S: Odd Fixes
2858
2859SCx200 GPIO DRIVER
2860P: Jim Cromie
2861M: jim.cromie@gmail.com
2862S: Maintained
2863
2864SCx200 HRT CLOCKSOURCE DRIVER
2865P: Jim Cromie
2866M: jim.cromie@gmail.com
2867S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
2869SECURITY CONTACT
2870P: Security Officers
2871M: security@kernel.org
2872S: Supported
2873
2874SELINUX SECURITY MODULE
2875P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08002876M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002878M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879L: linux-kernel@vger.kernel.org (kernel issues)
2880L: selinux@tycho.nsa.gov (general discussion)
2881W: http://www.nsa.gov/selinux
2882S: Supported
2883
2884SERIAL ATA (SATA) SUBSYSTEM:
2885P: Jeff Garzik
2886M: jgarzik@pobox.com
2887L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002888T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889S: Supported
2890
2891SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
2892P: Pat Gefre
2893M: pfg@sgi.com
2894L: linux-ia64@vger.kernel.org
2895S: Supported
2896
2897SGI VISUAL WORKSTATION 320 AND 540
2898P: Andrey Panin
2899M: pazke@donpac.ru
2900L: linux-visws-devel@lists.sf.net
2901W: http://linux-visws.sf.net
2902S: Maintained for 2.6.
2903
2904SIMTEC EB110ATX (Chalice CATS)
2905P: Ben Dooks
2906P: Vincent Sanders
2907M: support@simtec.co.uk
2908W: http://www.simtec.co.uk/products/EB110ATX/
2909S: Supported
2910
2911SIMTEC EB2410ITX (BAST)
2912P: Ben Dooks
2913P: Vincent Sanders
2914M: support@simtec.co.uk
2915W: http://www.simtec.co.uk/products/EB2410ITX/
2916S: Supported
2917
Francois Romieu92aab3c2005-07-30 13:11:18 +02002918SIS 190 ETHERNET DRIVER
2919P: Francois Romieu
2920M: romieu@fr.zoreil.com
2921L: netdev@vger.kernel.org
2922S: Maintained
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924SIS 5513 IDE CONTROLLER DRIVER
2925P: Lionel Bouton
2926M: Lionel.Bouton@inet6.fr
2927W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
2928W: http://gyver.homeip.net/sis5513/index.html
2929S: Maintained
2930
2931SIS 900/7016 FAST ETHERNET DRIVER
2932P: Daniele Venzano
2933M: venza@brownhat.org
2934W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07002935L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936S: Maintained
2937
2938SIS FRAMEBUFFER DRIVER
2939P: Thomas Winischhofer
2940M: thomas@winischhofer.net
2941W: http://www.winischhofer.net/linuxsisvga.shtml
2942S: Maintained
2943
2944SIS USB2VGA DRIVER
2945P: Thomas Winischhofer
2946M: thomas@winischhofer.net
2947W: http://www.winischhofer.at/linuxsisusbvga.shtml
2948S: Maintained
2949
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950SMC91x ETHERNET DRIVER
2951P: Nicolas Pitre
2952M: nico@cam.org
2953S: Maintained
2954
Daniel Drake8f0f8502006-07-18 22:00:25 +01002955SOFTMAC LAYER (IEEE 802.11)
2956P: Johannes Berg
2957M: johannes@sipsolutions.net
2958P: Joe Jezak
2959M: josejx@gentoo.org
2960P: Daniel Drake
2961M: dsd@gentoo.org
2962W: http://softmac.sipsolutions.net/
Daniel Drake8f0f8502006-07-18 22:00:25 +01002963L: netdev@vger.kernel.org
2964S: Maintained
2965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966SOFTWARE RAID (Multiple Disks) SUPPORT
2967P: Ingo Molnar
2968M: mingo@redhat.com
2969P: Neil Brown
2970M: neilb@cse.unsw.edu.au
2971L: linux-raid@vger.kernel.org
2972S: Maintained
2973
2974SOFTWARE SUSPEND:
2975P: Pavel Machek
2976M: pavel@suse.cz
Pavel Machekfc5fb2c2005-06-25 14:55:07 -07002977L: linux-pm@osdl.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978S: Maintained
2979
2980SONIC NETWORK DRIVER
2981P: Thomas Bogendoerfer
2982M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002983L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984S: Maintained
2985
2986SONY VAIO CONTROL DEVICE DRIVER
2987P: Stelian Pop
2988M: stelian@popies.net
2989W: http://popies.net/sonypi/
2990S: Maintained
2991
2992SOUND
2993P: Jaroslav Kysela
2994M: perex@suse.cz
2995L: alsa-devel@alsa-project.org
2996S: Maintained
2997
Kumar Gala025c3982006-04-02 16:05:54 -05002998SPI SUBSYSTEM
2999P: David Brownell
3000M: dbrownell@users.sourceforge.net
3001L: spi-devel-general@lists.sourceforge.net
3002S: Maintained
3003
Steven Rostedt855f46a2006-08-05 12:14:50 -07003004STABLE BRANCH:
3005P: Greg Kroah-Hartman
3006M: greg@kroah.com
3007P: Chris Wright
3008M: chrisw@sous-sol.org
3009L: stable@kernel.org
3010S: Maintained
3011
Kylene Hall1c72d462005-05-01 08:59:13 -07003012TPM DEVICE DRIVER
3013P: Kylene Hall
3014M: kjhall@us.ibm.com
3015W: http://tpmdd.sourceforge.net
3016L: tpmdd-devel@lists.sourceforge.net
3017S: Maintained
3018
Mark Gross1a80ba82005-10-30 15:02:55 -08003019Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003020P: Mark Gross
3021M: mark.gross@intel.com
3022S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003023
Chris Zankel48b415c2005-06-23 22:01:07 -07003024TENSILICA XTENSA PORT (xtensa):
3025P: Chris Zankel
3026M: chris@zankel.net
3027S: Maintained
3028
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029UltraSPARC (sparc64):
3030P: David S. Miller
3031M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003033T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034S: Maintained
3035
3036SHARP LH SUPPORT (LH7952X & LH7A40X)
3037P: Marc Singer
3038M: elf@buici.com
3039W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003040L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041S: Maintained
3042
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003043SHPC HOTPLUG DRIVER
3044P: Kristen Carlson Accardi
3045M: kristen.c.accardi@intel.com
3046L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003047S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003048
Pierre Ossmand129bce2006-03-24 03:18:17 -08003049SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3050P: Pierre Ossman
3051M: drzeus-sdhci@drzeus.cx
3052L: sdhci-devel@list.drzeus.cx
3053W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3054S: Maintained
3055
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003056SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3057P: Stephen Hemminger
3058M: shemminger@osdl.org
3059L: netdev@vger.kernel.org
3060S: Maintained
3061
Chris Boot1a87d942006-07-10 04:45:34 -07003062SOEKRIS NET48XX LED SUPPORT
3063P: Chris Boot
3064M: bootc@bootc.net
3065S: Maintained
3066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067SPARC (sparc32):
3068P: William L. Irwin
3069M: wli@holomorphy.com
3070L: sparclinux@vger.kernel.org
3071S: Maintained
3072
3073SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3074P: Roger Wolff
3075M: R.E.Wolff@BitWizard.nl
3076L: linux-kernel@vger.kernel.org ?
3077S: Supported
3078
Jim Lewis2752e402006-09-29 02:01:19 -07003079SPIDERNET NETWORK DRIVER for CELL
3080P: Jim Lewis
3081M: jim@jklewis.com
3082L: netdev@vger.kernel.org
3083S: Supported
3084
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085SRM (Alpha) environment access
3086P: Jan-Benedict Glaw
3087M: jbglaw@lug-owl.de
3088L: linux-kernel@vger.kernel.org
3089S: Maintained
3090
3091STARFIRE/DURALAN NETWORK DRIVER
3092P: Ion Badulescu
3093M: ionut@cs.columbia.edu
3094S: Maintained
3095
3096STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3097W: http://mosquitonet.Stanford.EDU/strip.html
3098S: Unsupported ?
3099
3100STRADIS MPEG-2 DECODER DRIVER
3101P: Nathan Laredo
3102M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103W: http://www.stradis.com/
3104S: Maintained
3105
3106SUPERH (sh)
3107P: Paul Mundt
3108M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003109L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111S: Maintained
3112
3113SUPERH64 (sh64)
3114P: Paul Mundt
3115M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116L: linuxsh-shmedia-dev@lists.sourceforge.net
3117W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118S: Maintained
3119
3120SUN3/3X
3121P: Sam Creasey
3122M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123W: http://sammy.net/sun3/
3124S: Maintained
3125
3126SVGA HANDLING
3127P: Martin Mares
3128M: mj@ucw.cz
3129L: linux-video@atrey.karlin.mff.cuni.cz
3130S: Maintained
3131
3132SYSV FILESYSTEM
3133P: Christoph Hellwig
3134M: hch@infradead.org
3135S: Maintained
3136
Stephen Hemminger781b4562006-07-10 20:25:29 -07003137TC CLASSIFIER
3138P: Jamal Hadi Salim
3139M: hadi@cyberus.ca
3140L: netdev@vger.kernel.org
3141S: Maintained
3142
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003143TCP LOW PRIORITY MODULE
3144P: Wong Hoi Sing, Edison
3145M: hswong3i@gmail.com
3146P: Hung Hing Lun, Mike
3147M: hlhung3i@gmail.com
3148W: http://tcp-lp-mod.sourceforge.net/
3149S: Maintained
3150
Alex Dubov4020f2d2006-10-04 02:15:37 -07003151TI FLASH MEDIA INTERFACE DRIVER
3152P: Alex Dubov
3153M: oakad@yahoo.com
3154S: Maintained
3155
Michael Buesch844dd052006-06-26 00:24:59 -07003156TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3157P: Deepak Saxena
3158M: dsaxena@plexity.net
3159S: Maintained
3160
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003161TASKSTATS STATISTICS INTERFACE
3162P: Shailabh Nagar
3163M: nagar@watson.ibm.com
3164L: linux-kernel@vger.kernel.org
3165S: Maintained
3166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003168P: Romain Lievin
3169M: roms@lpg.ticalc.org
3170S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Per Lidene86eaa32006-01-12 16:45:18 +01003172TIPC NETWORK LAYER
3173P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003174M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003175P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003176M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003177P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003178M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003179L: tipc-discussion@lists.sourceforge.net
3180W: http://tipc.sourceforge.net/
3181W: http://tipc.cslab.ericsson.net/
3182T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3183S: Maintained
3184
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185TLAN NETWORK DRIVER
3186P: Samuel Chessman
3187M: chessman@tux.org
3188L: tlan-devel@lists.sourceforge.net
3189W: http://sourceforge.net/projects/tlan/
3190S: Maintained
3191
3192TOKEN-RING NETWORK DRIVER
3193P: Mike Phillips
3194M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003195L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196L: linux-tr@linuxtr.net
3197W: http://www.linuxtr.net
3198S: Maintained
3199
3200TOSHIBA ACPI EXTRAS DRIVER
3201P: John Belmonte
3202M: toshiba_acpi@memebeam.org
3203W: http://memebeam.org/toys/ToshibaAcpiDriver
3204S: Maintained
3205
3206TOSHIBA SMM DRIVER
3207P: Jonathan Buzzard
3208M: jonathan@buzzard.org.uk
3209L: tlinux-users@tce.toshiba-dme.co.jp
3210W: http://www.buzzard.org.uk/toshiba/
3211S: Maintained
3212
3213TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3214P: Muli Ben-Yehuda
3215M: mulix@mulix.org
3216L: linux-kernel@vger.kernel.org
3217S: Maintained
3218
3219TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003220P: Adrian Bunk
3221M: trivial@kernel.org
3222L: linux-kernel@vger.kernel.org
3223W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3224T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3225S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
3227TMS380 TOKEN-RING NETWORK DRIVER
3228P: Adam Fritzler
3229M: mid@auk.cx
3230L: linux-tr@linuxtr.net
3231W: http://www.auk.cx/tms380tr/
3232S: Maintained
3233
3234TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003235P: Valerie Henson
3236M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237L: tulip-users@lists.sourceforge.net
3238W: http://sourceforge.net/projects/tulip/
3239S: Maintained
3240
3241TUN/TAP driver
3242P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003243M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244L: vtun@office.satix.net
3245W: http://vtun.sourceforge.net/tun
3246S: Maintained
3247
3248U14-34F SCSI DRIVER
3249P: Dario Ballabio
3250M: ballabio_dario@emc.com
3251L: linux-scsi@vger.kernel.org
3252S: Maintained
3253
3254UDF FILESYSTEM
3255P: Ben Fennema
3256M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257W: http://linux-udf.sourceforge.net
3258S: Maintained
3259
3260UNIFORM CDROM DRIVER
3261P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003262M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263L: linux-kernel@vger.kernel.org
3264W: http://www.kernel.dk
3265S: Maintained
3266
3267USB ACM DRIVER
3268P: Oliver Neukum
3269M: oliver@neukum.name
3270L: linux-usb-users@lists.sourceforge.net
3271L: linux-usb-devel@lists.sourceforge.net
3272S: Maintained
3273
3274USB BLOCK DRIVER (UB ub)
3275P: Pete Zaitcev
3276M: zaitcev@redhat.com
3277L: linux-kernel@vger.kernel.org
3278L: linux-usb-devel@lists.sourceforge.net
3279S: Supported
3280
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281USB CDC ETHERNET DRIVER
3282P: Greg Kroah-Hartman
3283M: greg@kroah.com
3284L: linux-usb-users@lists.sourceforge.net
3285L: linux-usb-devel@lists.sourceforge.net
3286S: Maintained
3287W: http://www.kroah.com/linux-usb/
3288
3289USB EHCI DRIVER
3290P: David Brownell
3291M: dbrownell@users.sourceforge.net
3292L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003293S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
Luca Risolia7ce08c92006-01-11 02:06:59 +00003295USB ET61X[12]51 DRIVER
3296P: Luca Risolia
3297M: luca.risolia@studio.unibo.it
3298L: linux-usb-devel@lists.sourceforge.net
3299L: video4linux-list@redhat.com
3300W: http://www.linux-projects.org
3301S: Maintained
3302
David Brownell69ae9e32006-11-14 02:03:31 -08003303USB GADGET/PERIPHERAL SUBSYSTEM
3304P: David Brownell
3305M: dbrownell@users.sourceforge.net
3306L: linux-usb-devel@lists.sourceforge.net
3307W: http://www.linux-usb.org/gadget
3308S: Maintained
3309
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310USB HID/HIDBP DRIVERS
3311P: Vojtech Pavlik
3312M: vojtech@suse.cz
3313L: linux-usb-users@lists.sourceforge.net
3314L: linux-usb-devel@lists.sourceforge.net
3315S: Maintained
3316
3317USB HUB DRIVER
3318P: Johannes Erdfelt
3319M: johannes@erdfelt.com
3320L: linux-usb-users@lists.sourceforge.net
3321L: linux-usb-devel@lists.sourceforge.net
3322S: Maintained
3323
Olav Kongas959eea22005-11-03 17:38:14 +02003324USB ISP116X DRIVER
3325P: Olav Kongas
3326M: ok@artecdesign.ee
3327L: linux-usb-devel@lists.sourceforge.net
3328S: Maintained
3329
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330USB KAWASAKI LSI DRIVER
3331P: Oliver Neukum
3332M: oliver@neukum.name
3333L: linux-usb-users@lists.sourceforge.net
3334L: linux-usb-devel@lists.sourceforge.net
3335S: Maintained
3336
3337USB MASS STORAGE DRIVER
3338P: Matthew Dharm
3339M: mdharm-usb@one-eyed-alien.net
3340L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003341L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342S: Maintained
3343W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3344
3345USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003346P: David Brownell
3347M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348L: linux-usb-users@lists.sourceforge.net
3349L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003350S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
Matthias Urlichsba460e42005-07-14 00:33:47 -07003352USB OPTION-CARD DRIVER
3353P: Matthias Urlichs
3354M: smurf@smurf.noris.de
3355L: linux-usb-devel@lists.sourceforge.net
3356S: Maintained
3357
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358USB OV511 DRIVER
3359P: Mark McClelland
3360M: mmcclell@bigfoot.com
3361L: linux-usb-users@lists.sourceforge.net
3362L: linux-usb-devel@lists.sourceforge.net
3363W: http://alpha.dyndns.org/ov511/
3364S: Maintained
3365
3366USB PEGASUS DRIVER
3367P: Petko Manolov
3368M: petkan@users.sourceforge.net
3369L: linux-usb-users@lists.sourceforge.net
3370L: linux-usb-devel@lists.sourceforge.net
3371W: http://pegasus2.sourceforge.net/
3372S: Maintained
3373
3374USB PRINTER DRIVER
3375P: Vojtech Pavlik
3376M: vojtech@suse.cz
3377L: linux-usb-users@lists.sourceforge.net
3378L: linux-usb-devel@lists.sourceforge.net
3379S: Maintained
3380
3381USB RTL8150 DRIVER
3382P: Petko Manolov
3383M: petkan@users.sourceforge.net
3384L: linux-usb-users@lists.sourceforge.net
3385L: linux-usb-devel@lists.sourceforge.net
3386W: http://pegasus2.sourceforge.net/
3387S: Maintained
3388
3389USB SE401 DRIVER
3390P: Jeroen Vreeken
3391M: pe1rxq@amsat.org
3392L: linux-usb-users@lists.sourceforge.net
3393L: linux-usb-devel@lists.sourceforge.net
3394W: http://www.chello.nl/~j.vreeken/se401/
3395S: Maintained
3396
3397USB SERIAL CYBERJACK DRIVER
3398P: Matthias Bruestle and Harald Welte
3399M: support@reiner-sct.com
3400W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3401S: Maintained
3402
3403USB SERIAL DIGI ACCELEPORT DRIVER
3404P: Peter Berger and Al Borchers
3405M: pberger@brimson.com
3406M: alborchers@steinerpoint.com
3407L: linux-usb-users@lists.sourceforge.net
3408L: linux-usb-devel@lists.sourceforge.net
3409S: Maintained
3410
3411USB SERIAL DRIVER
3412P: Greg Kroah-Hartman
3413M: gregkh@suse.de
3414L: linux-usb-users@lists.sourceforge.net
3415L: linux-usb-devel@lists.sourceforge.net
3416S: Supported
3417
3418USB SERIAL BELKIN F5U103 DRIVER
3419P: William Greathouse
3420M: wgreathouse@smva.com
3421L: linux-usb-users@lists.sourceforge.net
3422L: linux-usb-devel@lists.sourceforge.net
3423S: Maintained
3424
3425USB SERIAL CYPRESS M8 DRIVER
3426P: Lonnie Mendez
3427M: dignome@gmail.com
3428L: linux-usb-users@lists.sourceforge.net
3429L: linux-usb-devel@lists.sourceforge.net
3430S: Maintained
3431W: http://geocities.com/i0xox0i
3432W: http://firstlight.net/cvs
3433
3434USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3435L: linux-usb-users@lists.sourceforge.net
3436L: linux-usb-devel@lists.sourceforge.net
3437S: Maintained
3438
3439USB AUERSWALD DRIVER
3440P: Wolfgang Muees
3441M: wolfgang@iksw-muees.de
3442L: linux-usb-users@lists.sourceforge.net
3443L: linux-usb-devel@lists.sourceforge.net
3444S: Maintained
3445
3446USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3447P: Gary Brubaker
3448M: xavyer@ix.netcom.com
3449L: linux-usb-users@lists.sourceforge.net
3450L: linux-usb-devel@lists.sourceforge.net
3451S: Maintained
3452
3453USB SERIAL KEYSPAN DRIVER
3454P: Greg Kroah-Hartman
3455M: greg@kroah.com
3456L: linux-usb-users@lists.sourceforge.net
3457L: linux-usb-devel@lists.sourceforge.net
3458W: http://www.kroah.com/linux/
3459S: Maintained
3460
3461USB SERIAL WHITEHEAT DRIVER
3462P: Stuart MacDonald
3463M: stuartm@connecttech.com
3464L: linux-usb-users@lists.sourceforge.net
3465L: linux-usb-devel@lists.sourceforge.net
3466W: http://www.connecttech.com
3467S: Supported
3468
3469USB SN9C10x DRIVER
3470P: Luca Risolia
3471M: luca.risolia@studio.unibo.it
3472L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003473L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474W: http://www.linux-projects.org
3475S: Maintained
3476
3477USB SUBSYSTEM
3478P: Greg Kroah-Hartman
3479M: gregkh@suse.de
3480L: linux-usb-users@lists.sourceforge.net
3481L: linux-usb-devel@lists.sourceforge.net
3482W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003483T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484S: Supported
3485
3486USB UHCI DRIVER
3487P: Alan Stern
3488M: stern@rowland.harvard.edu
3489L: linux-usb-users@lists.sourceforge.net
3490L: linux-usb-devel@lists.sourceforge.net
3491S: Maintained
3492
David Brownell69ae9e32006-11-14 02:03:31 -08003493USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494P: David Brownell
3495M: dbrownell@users.sourceforge.net
3496L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003497W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498S: Maintained
3499
3500USB W996[87]CF DRIVER
3501P: Luca Risolia
3502M: luca.risolia@studio.unibo.it
3503L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003504L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505W: http://www.linux-projects.org
3506S: Maintained
3507
Luca Risolia60f78052006-02-06 16:29:35 +00003508USB ZC0301 DRIVER
3509P: Luca Risolia
3510M: luca.risolia@studio.unibo.it
3511L: linux-usb-devel@lists.sourceforge.net
3512L: video4linux-list@redhat.com
3513W: http://www.linux-projects.org
3514S: Maintained
3515
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516USB ZD1201 DRIVER
3517P: Jeroen Vreeken
3518M: pe1rxq@amsat.org
3519L: linux-usb-users@lists.sourceforge.net
3520L: linux-usb-devel@lists.sourceforge.net
3521W: http://linux-lc100020.sourceforge.net
3522S: Maintained
3523
3524USER-MODE LINUX
3525P: Jeff Dike
3526M: jdike@karaya.com
3527L: user-mode-linux-devel@lists.sourceforge.net
3528L: user-mode-linux-user@lists.sourceforge.net
3529W: http://user-mode-linux.sourceforge.net
3530S: Maintained
3531
3532FAT/VFAT/MSDOS FILESYSTEM:
3533P: OGAWA Hirofumi
3534M: hirofumi@mail.parknet.co.jp
3535L: linux-kernel@vger.kernel.org
3536S: Maintained
3537
3538VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3539P: Jeff Garzik
3540S: Odd fixes
3541
3542VIA RHINE NETWORK DRIVER
3543P: Roger Luethi
3544M: rl@hellgate.ch
3545S: Maintained
3546
Jean Delvare32c0a522005-09-22 21:47:58 +02003547VIAPRO SMBUS DRIVER
3548P: Jean Delvare
3549M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003550L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003551S: Maintained
3552
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553UCLINUX (AND M68KNOMMU)
3554P: Greg Ungerer
3555M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003557L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558S: Maintained
3559
3560UCLINUX FOR NEC V850
3561P: Miles Bader
3562M: uclinux-v850@lsi.nec.co.jp
3563W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3564W: http://www.ee.nec.de/uclinux/
3565S: Supported
3566
3567UCLINUX FOR RENESAS H8/300
3568P: Yoshinori Sato
3569M: ysato@users.sourceforge.jp
3570W: http://uclinux-h8.sourceforge.jp/
3571S: Supported
3572
3573USB DIAMOND RIO500 DRIVER
3574P: Cesar Miquel
3575M: miquel@df.uba.ar
3576L: rio500-users@lists.sourceforge.net
3577W: http://rio500.sourceforge.net
3578S: Maintained
3579
3580VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003581P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003582M: mchehab@infradead.org
3583M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003585W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003586T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003587S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
Juerg Haefligerab413192006-09-24 20:54:04 +02003589VT1211 HARDWARE MONITOR DRIVER
3590P: Juerg Haefliger
3591M: juergh@gmail.com
3592L: lm-sensors@lm-sensors.org
3593S: Maintained
3594
Roger Lucas1de9e372005-11-26 20:20:05 +01003595VT8231 HARDWARE MONITOR DRIVER
3596P: Roger Lucas
3597M: roger@planbit.co.uk
3598L: lm-sensors@lm-sensors.org
3599S: Maintained
3600
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601W1 DALLAS'S 1-WIRE BUS
3602P: Evgeniy Polyakov
3603M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604S: Maintained
3605
Charles Spirakis13927072006-07-05 18:05:15 +02003606W83791D HARDWARE MONITORING DRIVER
3607P: Charles Spirakis
3608M: bezaur@gmail.com
3609L: lm-sensors@lm-sensors.org
3610S: Maintained
3611
Rudolf Marek61db0112006-12-12 18:18:30 +01003612W83793 HARDWARE MONITORING DRIVER
3613P: Rudolf Marek
3614M: r.marek@assembler.cz
3615L: lm-sensors@lm-sensors.org
3616S: Maintained
3617
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618W83L51xD SD/MMC CARD INTERFACE DRIVER
3619P: Pierre Ossman
3620M: drzeus-wbsd@drzeus.cx
3621L: wbsd-devel@list.drzeus.cx
3622W: http://projects.drzeus.cx/wbsd
3623S: Maintained
3624
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003625WATCHDOG DEVICE DRIVERS
3626P: Wim Van Sebroeck
3627M: wim@iguana.be
3628T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3629S: Maintained
3630
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3632P: Jean Tourrilhes
3633M: jt@hpl.hp.com
3634W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3635S: Maintained
3636
3637WD7000 SCSI DRIVER
3638P: Miroslav Zagorac
3639M: zaga@fly.cc.fer.hr
3640L: linux-scsi@vger.kernel.org
3641S: Maintained
3642
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05003643WISTRON LAPTOP BUTTON DRIVER
3644P: Miloslav Trmac
3645M: mitr@volny.cz
3646S: Maintained
3647
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648WL3501 WIRELESS PCMCIA CARD DRIVER
3649P: Arnaldo Carvalho de Melo
3650M: acme@conectiva.com.br
3651W: http://advogato.org/person/acme
3652S: Maintained
3653
3654X.25 NETWORK LAYER
3655P: Henner Eisen
3656M: eis@baty.hanse.de
3657L: linux-x25@vger.kernel.org
3658S: Maintained
3659
3660XFS FILESYSTEM
3661P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003662P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003664L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003666T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667S: Supported
3668
Peter Korsgaard238b8722006-12-06 20:35:17 -08003669XILINX UARTLITE SERIAL DRIVER
3670P: Peter Korsgaard
3671M: jacmet@sunsite.dk
3672L: linux-serial@vger.kernel.org
3673S: Maintained
3674
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675X86 3-LEVEL PAGING (PAE) SUPPORT
3676P: Ingo Molnar
3677M: mingo@redhat.com
3678S: Maintained
3679
3680X86-64 port
3681P: Andi Kleen
3682M: ak@suse.de
3683L: discuss@x86-64.org
3684W: http://www.x86-64.org
3685S: Maintained
3686
3687YAM DRIVER FOR AX.25
3688P: Jean-Paul Roubelat
3689M: jpr@f6fbb.org
3690L: linux-hams@vger.kernel.org
3691S: Maintained
3692
Henkaf64a5e2005-10-12 15:02:56 +02003693YEALINK PHONE DRIVER
3694P: Henk Vergonet
3695M: Henk.Vergonet@gmail.com
3696L: usbb2k-api-dev@nongnu.org
3697S: Maintained
3698
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699Z8530 DRIVER FOR AX.25
3700P: Joerg Reuter
3701M: jreuter@yaina.de
3702W: http://yaina.de/jreuter/
3703W: http://www.qsl.net/dl1bke/
3704L: linux-hams@vger.kernel.org
3705S: Maintained
3706
Daniel Drake7c0c3af2006-07-16 13:55:17 +01003707ZD1211RW WIRELESS DRIVER
3708P: Daniel Drake
3709M: dsd@gentoo.org
3710P: Ulrich Kunitz
3711M: kune@deine-taler.de
3712W: http://zd1211.ath.cx/wiki/DriverRewrite
3713L: zd1211-devs@lists.sourceforge.net (subscribers-only)
3714S: Maintained
3715
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716ZF MACHZ WATCHDOG
3717P: Fernando Fuganti
3718M: fuganti@netbank.com.br
3719W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
3720S: Maintained
3721
3722ZR36067 VIDEO FOR LINUX DRIVER
3723P: Ronald Bultje
3724M: rbultje@ronald.bitfreak.net
3725L: mjpeg-users@lists.sourceforge.net
3726W: http://mjpeg.sourceforge.net/driver-zoran/
3727S: Maintained
3728
3729ZR36120 VIDEO FOR LINUX DRIVER
3730P: Pauline Middelink
3731M: middelin@polyware.nl
3732W: http://www.polyware.nl/~middelin/En/hobbies.html
3733W: http://www.polyware.nl/~middelin/hobbies.html
3734S: Maintained
3735
3736THE REST
3737P: Linus Torvalds
3738S: Buried alive in reporters