Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | |
| 2 | List of maintainers and how to submit kernel changes |
| 3 | |
| 4 | Please try to follow the guidelines below. This will make things |
| 5 | easier on the maintainers. Not all of these guidelines matter for every |
| 6 | trivial patch so apply some common sense. |
| 7 | |
| 8 | 1. Always _test_ your changes, however small, on at least 4 or |
| 9 | 5 people, preferably many more. |
| 10 | |
| 11 | 2. 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 | |
| 19 | 3. 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 | |
| 23 | 4. When you are happy with a change make it generally available for |
| 24 | testing and await feedback. |
| 25 | |
| 26 | 5. 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 |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 33 | generalized kernel feature ready for next time. |
| 34 | |
| 35 | PLEASE check your patch with the automated style checker |
| 36 | (scripts/checkpatch.pl) to catch trival style violations. |
| 37 | See Documentation/CodingStyle for guidance here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | PLEASE try to include any credit lines you want added with the |
| 40 | patch. It avoids people being missed off by mistake and makes |
| 41 | it easier to know who wants adding and who doesn't. |
| 42 | |
| 43 | PLEASE document known bugs. If it doesn't work for everything |
| 44 | or does something very odd once a month document it. |
| 45 | |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 46 | PLEASE remember that submissions must be made under the terms |
Randy Dunlap | 4500371 | 2007-08-30 23:56:37 -0700 | [diff] [blame] | 47 | of the OSDL certificate of contribution and should include a |
| 48 | Signed-off-by: line. The current version of this "Developer's |
| 49 | Certificate of Origin" (DCO) is listed in the file |
| 50 | Documentation/SubmittingPatches. |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | 6. Make sure you have the right to send any changes you make. If you |
| 53 | do changes at work you may find your employer owns the patch |
| 54 | not you. |
| 55 | |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 56 | 7. When sending security related changes or reports to a maintainer |
| 57 | please Cc: security@kernel.org, especially if the maintainer |
| 58 | does not respond. |
| 59 | |
| 60 | 8. Happy hacking. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 62 | ----------------------------------- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | Maintainers List (try to look for most precise areas first) |
| 65 | |
| 66 | Note: For the hard of thinking, this list is meant to remain in alphabetical |
| 67 | order. If you could add yourselves to it in alphabetical order that would be |
| 68 | so much easier [Ed] |
| 69 | |
| 70 | P: Person |
| 71 | M: Mail patches to |
| 72 | L: Mailing list that is relevant to this area |
| 73 | W: Web-page with status/info |
Jody McIntyre | 50306fb | 2005-11-23 15:44:03 -0800 | [diff] [blame] | 74 | T: SCM tree type and location. Type is one of: git, hg, quilt. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | S: Status, one of the following: |
| 76 | |
| 77 | Supported: Someone is actually paid to look after this. |
| 78 | Maintained: Someone actually looks after it. |
| 79 | Odd Fixes: It has a maintainer but they don't have time to do |
| 80 | much other than throw the odd patch in. See below.. |
| 81 | Orphan: No current maintainer [but maybe you could take the |
| 82 | role as you write your new code]. |
| 83 | Obsolete: Old code. Something tagged obsolete generally means |
| 84 | it has been replaced by a better system and you |
| 85 | should be using that. |
| 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | 3C505 NETWORK DRIVER |
| 88 | P: Philip Blundell |
| 89 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 90 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | S: Maintained |
| 92 | |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 93 | 3C59X NETWORK DRIVER |
| 94 | P: Steffen Klassert |
| 95 | M: klassert@mathematik.tu-chemnitz.de |
| 96 | L: netdev@vger.kernel.org |
| 97 | S: Maintained |
| 98 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | 3CR990 NETWORK DRIVER |
| 100 | P: David Dillow |
| 101 | M: dave@thedillows.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 102 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | S: Maintained |
| 104 | |
| 105 | 3W-XXXX ATA-RAID CONTROLLER DRIVER |
| 106 | P: Adam Radford |
| 107 | M: linuxraid@amcc.com |
| 108 | L: linux-scsi@vger.kernel.org |
| 109 | W: http://www.amcc.com |
| 110 | S: Supported |
| 111 | |
| 112 | 3W-9XXX SATA-RAID CONTROLLER DRIVER |
| 113 | P: Adam Radford |
| 114 | M: linuxraid@amcc.com |
| 115 | L: linux-scsi@vger.kernel.org |
| 116 | W: http://www.amcc.com |
| 117 | S: Supported |
| 118 | |
| 119 | 53C700 AND 53C700-66 SCSI DRIVER |
| 120 | P: James E.J. Bottomley |
| 121 | M: James.Bottomley@HansenPartnership.com |
| 122 | L: linux-scsi@vger.kernel.org |
| 123 | S: Maintained |
| 124 | |
| 125 | 6PACK NETWORK DRIVER FOR AX.25 |
| 126 | P: Andreas Koensgen |
| 127 | M: ajk@iehk.rwth-aachen.de |
| 128 | L: linux-hams@vger.kernel.org |
| 129 | S: Maintained |
| 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
| 132 | P: Francois Romieu |
| 133 | M: romieu@fr.zoreil.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 134 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | S: Maintained |
| 136 | |
| 137 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | L: linux-serial@vger.kernel.org |
| 139 | W: http://serial.sourceforge.net |
Russell King | 353cefd | 2006-10-03 17:36:11 +0100 | [diff] [blame] | 140 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
| 142 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
| 143 | P: Paul Gortmaker |
| 144 | M: p_gortmaker@yahoo.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 145 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | S: Maintained |
| 147 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 148 | 9P FILE SYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 149 | P: Eric Van Hensbergen |
| 150 | M: ericvh@gmail.com |
| 151 | P: Ron Minnich |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 152 | M: rminnich@sandia.gov |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 153 | P: Latchesar Ionkov |
| 154 | M: lucho@ionkov.net |
| 155 | L: v9fs-developer@lists.sourceforge.net |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 156 | W: http://swik.net/v9fs |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 157 | T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git |
| 158 | S: Maintained |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | A2232 SERIAL BOARD DRIVER |
| 161 | P: Enver Haase |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | M: A2232@gmx.net |
| 163 | L: linux-m68k@lists.linux-m68k.org |
| 164 | S: Maintained |
| 165 | |
| 166 | AIO |
| 167 | P: Benjamin LaHaise |
| 168 | M: bcrl@kvack.org |
| 169 | L: linux-aio@kvack.org |
| 170 | S: Supported |
| 171 | |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 172 | ABIT UGURU HARDWARE MONITOR DRIVER |
| 173 | P: Hans de Goede |
| 174 | M: j.w.r.degoede@hhs.nl |
| 175 | L: lm-sensors@lm-sensors.org |
| 176 | S: Maintained |
| 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | ACENIC DRIVER |
| 179 | P: Jes Sorensen |
| 180 | M: jes@trained-monkey.org |
| 181 | L: linux-acenic@sunsite.dk |
| 182 | S: Maintained |
| 183 | |
Salyzyn, Mark | e6d1fc3 | 2007-03-29 01:20:24 -0700 | [diff] [blame] | 184 | IPS SCSI RAID DRIVER |
| 185 | P: Adaptec OEM Raid Solutions |
| 186 | M: aacraid@adaptec.com |
| 187 | L: linux-scsi@vger.kernel.org |
| 188 | W: http://www.adaptec.com/ |
| 189 | S: Maintained |
| 190 | |
| 191 | DPT_I2O SCSI RAID DRIVER |
| 192 | P: Adaptec OEM Raid Solutions |
| 193 | M: aacraid@adaptec.com |
| 194 | L: linux-scsi@vger.kernel.org |
| 195 | W: http://www.adaptec.com/ |
| 196 | S: Maintained |
| 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | AACRAID SCSI RAID DRIVER |
| 199 | P: Adaptec OEM Raid Solutions |
Salyzyn, Mark | e6d1fc3 | 2007-03-29 01:20:24 -0700 | [diff] [blame] | 200 | M: aacraid@adaptec.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | L: linux-scsi@vger.kernel.org |
Salyzyn, Mark | e6d1fc3 | 2007-03-29 01:20:24 -0700 | [diff] [blame] | 202 | W: http://www.adaptec.com/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | S: Supported |
| 204 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 205 | ACER WMI LAPTOP EXTRAS |
| 206 | P: Carlos Corbacho |
| 207 | M: carlos@strangeworlds.co.uk |
| 208 | L: aceracpi@googlegroups.com (subscribers-only) |
| 209 | W: http://code.google.com/p/aceracpi |
| 210 | S: Maintained |
| 211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | ACPI |
| 213 | P: Len Brown |
| 214 | M: len.brown@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 215 | M: lenb@kernel.org |
Len Brown | 6968e50 | 2005-12-30 00:32:49 -0500 | [diff] [blame] | 216 | L: linux-acpi@vger.kernel.org |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 217 | W: http://www.lesswatts.org/projects/acpi/ |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 218 | T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 219 | S: Supported |
| 220 | |
| 221 | ACPI BATTERY DRIVERS |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 222 | P: Alexey Starikovskiy |
| 223 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 224 | L: linux-acpi@vger.kernel.org |
| 225 | W: http://acpi.sourceforge.net/ |
| 226 | S: Supported |
| 227 | |
| 228 | ACPI EC DRIVER |
| 229 | P: Alexey Starikovskiy |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 230 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 231 | L: linux-acpi@vger.kernel.org |
| 232 | W: http://acpi.sourceforge.net/ |
| 233 | S: Supported |
| 234 | |
| 235 | ACPI FAN DRIVER |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 236 | P: Len Brown |
| 237 | M: len.brown@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 238 | L: linux-acpi@vger.kernel.org |
| 239 | W: http://acpi.sourceforge.net/ |
| 240 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 242 | ACPI PCI HOTPLUG DRIVER |
| 243 | P: Kristen Carlson Accardi |
| 244 | M: kristen.c.accardi@intel.com |
| 245 | L: pcihpd-discuss@lists.sourceforge.net |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 246 | S: Supported |
| 247 | |
| 248 | ACPI THERMAL DRIVER |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 249 | P: Len Brown |
| 250 | M: len.brown@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 251 | L: linux-acpi@vger.kernel.org |
| 252 | W: http://acpi.sourceforge.net/ |
| 253 | S: Supported |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 254 | |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 255 | ACPI VIDEO DRIVER |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 256 | P: Rui Zhang |
| 257 | M: rui.zhang@intel.com |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 258 | L: linux-acpi@vger.kernel.org |
| 259 | W: http://acpi.sourceforge.net/ |
| 260 | S: Supported |
| 261 | |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 262 | ACPI WMI DRIVER |
| 263 | P: Carlos Corbacho |
| 264 | M: carlos@strangeworlds.co.uk |
| 265 | L: linux-acpi@vger.kernel.org |
| 266 | W: http://www.lesswatts.org/projects/acpi/ |
| 267 | S: Maintained |
| 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | ADM1025 HARDWARE MONITOR DRIVER |
| 270 | P: Jean Delvare |
| 271 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 272 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | S: Maintained |
| 274 | |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 275 | ADM1029 HARDWARE MONITOR DRIVER |
| 276 | P: Corentin Labbe |
| 277 | M: corentin.labbe@geomatys.fr |
| 278 | L: lm-sensors@lm-sensors.org |
| 279 | S: Maintained |
| 280 | |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 281 | ADM8211 WIRELESS DRIVER |
| 282 | P: Michael Wu |
| 283 | M: flamingice@sourmilk.net |
| 284 | L: linux-wireless@vger.kernel.org |
| 285 | W: http://linuxwireless.org/ |
| 286 | T: git kernel.org:/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git |
| 287 | S: Maintained |
| 288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | ADT746X FAN DRIVER |
| 290 | P: Colin Leroy |
| 291 | M: colin@colino.net |
| 292 | S: Maintained |
| 293 | |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 294 | ADVANSYS SCSI DRIVER |
| 295 | P: Matthew Wilcox |
| 296 | M: matthew@wil.cx |
| 297 | L: linux-scsi@vger.kernel.org |
| 298 | S: Maintained |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | AEDSP16 DRIVER |
| 301 | P: Riccardo Facchetti |
| 302 | M: fizban@tin.it |
| 303 | S: Maintained |
| 304 | |
| 305 | AFFS FILE SYSTEM |
| 306 | P: Roman Zippel |
| 307 | M: zippel@linux-m68k.org |
| 308 | S: Maintained |
| 309 | |
| 310 | AGPGART DRIVER |
Dave Jones | 70e8992 | 2007-07-09 20:23:50 -0400 | [diff] [blame] | 311 | P: David Airlie |
| 312 | M: airlied@linux.ie |
| 313 | T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | S: Maintained |
| 315 | |
| 316 | AHA152X SCSI DRIVER |
| 317 | P: Juergen E. Fischer |
| 318 | M: Juergen Fischer <fischer@norbit.de> |
| 319 | L: linux-scsi@vger.kernel.org |
| 320 | S: Maintained |
| 321 | |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 322 | AIC7XXX / AIC79XX SCSI DRIVER |
| 323 | P: Hannes Reinecke |
| 324 | M: hare@suse.de |
| 325 | L: linux-scsi@vger.kernel.org |
| 326 | S: Maintained |
| 327 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | ALCATEL SPEEDTOUCH USB DRIVER |
| 329 | P: Duncan Sands |
| 330 | M: duncan.sands@free.fr |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 331 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | W: http://www.linux-usb.org/SpeedTouch/ |
| 333 | S: Maintained |
| 334 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 335 | ALCHEMY AU1XX0 MMC DRIVER |
| 336 | S: Orphan |
| 337 | |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 338 | ALI1563 I2C DRIVER |
| 339 | P: Rudolf Marek |
Jean Delvare | 7188cc6 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 340 | M: r.marek@assembler.cz |
Jean Delvare | 5d925fe | 2006-07-01 17:14:32 +0200 | [diff] [blame] | 341 | L: i2c@lm-sensors.org |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 342 | S: Maintained |
| 343 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | ALPHA PORT |
| 345 | P: Richard Henderson |
| 346 | M: rth@twiddle.net |
| 347 | S: Odd Fixes for 2.4; Maintained for 2.6. |
| 348 | P: Ivan Kokshaysky |
| 349 | M: ink@jurassic.park.msu.ru |
| 350 | S: Maintained for 2.4; PCI support for 2.6. |
| 351 | |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 352 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
| 353 | P: Thomas Dahlmann |
| 354 | M: thomas.dahlmann@amd.com |
Alan Cox | 20292bc | 2008-02-06 01:36:07 -0800 | [diff] [blame] | 355 | L: info-linux@geode.amd.com (subscribers-only) |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 356 | S: Supported |
| 357 | |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 358 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 359 | P: Jordan Crouse |
Alan Cox | 20292bc | 2008-02-06 01:36:07 -0800 | [diff] [blame] | 360 | L: info-linux@geode.amd.com (subscribers-only) |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 361 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
| 362 | S: Supported |
| 363 | |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 364 | AMS (Apple Motion Sensor) DRIVER |
| 365 | P: Stelian Pop |
| 366 | M: stelian@popies.net |
| 367 | P: Michael Hanselmann |
| 368 | M: linux-kernel@hansmi.ch |
| 369 | S: Supported |
| 370 | |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 371 | AMSO1100 RNIC DRIVER |
| 372 | P: Tom Tucker |
| 373 | M: tom@opengridcomputing.com |
| 374 | P: Steve Wise |
| 375 | M: swise@opengridcomputing.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 376 | L: general@lists.openfabrics.org |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 377 | S: Maintained |
| 378 | |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 379 | AOA (Apple Onboard Audio) ALSA DRIVER |
| 380 | P: Johannes Berg |
| 381 | M: johannes@sipsolutions.net |
| 382 | L: linuxppc-dev@ozlabs.org |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 383 | L: alsa-devel@alsa-project.org (subscribers-only) |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 384 | S: Maintained |
| 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | APM DRIVER |
| 387 | P: Stephen Rothwell |
| 388 | M: sfr@canb.auug.org.au |
| 389 | L: linux-laptop@vger.kernel.org |
| 390 | W: http://www.canb.auug.org.au/~sfr/ |
| 391 | S: Supported |
| 392 | |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 393 | APPLE SMC DRIVER |
| 394 | P: Nicolas Boichat |
| 395 | M: nicolas@boichat.ch |
| 396 | L: mactel-linux-devel@lists.sourceforge.net |
| 397 | S: Maintained |
| 398 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | APPLETALK NETWORK LAYER |
| 400 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 401 | M: acme@ghostprotocols.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | S: Maintained |
| 403 | |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 404 | APPLETOUCH TOUCHPAD DRIVER |
| 405 | P: Johannes Berg |
| 406 | M: johannes@sipsolutions.net |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 407 | L: linux-input@vger.kernel.org |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 408 | S: Maintained |
| 409 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 410 | ARC FRAMEBUFFER DRIVER |
| 411 | P: Jaya Kumar |
| 412 | M: jayalk@intworks.biz |
| 413 | S: Maintained |
| 414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | ARM MFM AND FLOPPY DRIVERS |
| 416 | P: Ian Molton |
| 417 | M: spyro@f2s.com |
| 418 | S: Maintained |
| 419 | |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 420 | ARM PRIMECELL MMCI PL180/1 DRIVER |
| 421 | P: Russell King |
| 422 | M: rmk@arm.linux.org.uk |
| 423 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 424 | S: Maintained |
| 425 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 426 | ARM/ADI ROADRUNNER MACHINE SUPPORT |
| 427 | P: Lennert Buytenhek |
| 428 | M: kernel@wantstofly.org |
| 429 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 430 | S: Maintained |
| 431 | |
| 432 | ARM/ADS SPHERE MACHINE SUPPORT |
| 433 | P: Lennert Buytenhek |
| 434 | M: kernel@wantstofly.org |
| 435 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 436 | S: Maintained |
| 437 | |
| 438 | ARM/AJECO 1ARM MACHINE SUPPORT |
| 439 | P: Lennert Buytenhek |
| 440 | M: kernel@wantstofly.org |
| 441 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 442 | S: Maintained |
| 443 | |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 444 | ARM/ATMEL AT91RM9200 ARM ARCHITECTURE |
| 445 | P: Andrew Victor |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 446 | M: andrew@sanpeople.com |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 447 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 448 | W: http://maxim.org.za/at91_26.html |
| 449 | S: Maintained |
| 450 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 451 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
| 452 | P: Lennert Buytenhek |
| 453 | M: kernel@wantstofly.org |
| 454 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 455 | S: Maintained |
| 456 | |
| 457 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
| 458 | P: Lennert Buytenhek |
| 459 | M: kernel@wantstofly.org |
| 460 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 461 | S: Maintained |
| 462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | ARM/CORGI MACHINE SUPPORT |
| 464 | P: Richard Purdie |
| 465 | M: rpurdie@rpsys.net |
| 466 | S: Maintained |
| 467 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 468 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
| 469 | P: Lennert Buytenhek |
| 470 | M: kernel@wantstofly.org |
| 471 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 472 | S: Maintained |
| 473 | |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 474 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
| 475 | P: Kristoffer Ericson |
Kristoffer Ericson | 6a4d028 | 2007-07-07 17:45:10 +0100 | [diff] [blame] | 476 | M: kristoffer.ericson@gmail.com |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 477 | W: www.jlime.com |
| 478 | S: Maintained |
| 479 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 480 | ARM/INTEL IOP32X ARM ARCHITECTURE |
| 481 | P: Lennert Buytenhek |
| 482 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 483 | P: Dan Williams |
| 484 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 485 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 486 | S: Supported |
| 487 | |
| 488 | ARM/INTEL IOP33X ARM ARCHITECTURE |
| 489 | P: Dan Williams |
| 490 | M: dan.j.williams@intel.com |
| 491 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 492 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 493 | |
| 494 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
| 495 | P: Lennert Buytenhek |
| 496 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 497 | P: Dan Williams |
| 498 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 499 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 500 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 501 | |
| 502 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
| 503 | P: Lennert Buytenhek |
| 504 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 505 | P: Dan Williams |
| 506 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 507 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 508 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 509 | |
| 510 | ARM/INTEL IXP2000 ARM ARCHITECTURE |
| 511 | P: Lennert Buytenhek |
| 512 | M: kernel@wantstofly.org |
| 513 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 514 | S: Maintained |
| 515 | |
| 516 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
| 517 | P: Lennert Buytenhek |
| 518 | M: kernel@wantstofly.org |
| 519 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 520 | S: Maintained |
| 521 | |
| 522 | ARM/INTEL IXP23XX ARM ARCHITECTURE |
| 523 | P: Lennert Buytenhek |
| 524 | M: kernel@wantstofly.org |
| 525 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 526 | S: Maintained |
| 527 | |
| 528 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
| 529 | P: Lennert Buytenhek |
| 530 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 531 | P: Dan Williams |
| 532 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 533 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 534 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 535 | |
| 536 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
| 537 | P: Lennert Buytenhek |
| 538 | M: kernel@wantstofly.org |
| 539 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 540 | S: Maintained |
| 541 | |
| 542 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
| 543 | P: Lennert Buytenhek |
| 544 | M: kernel@wantstofly.org |
| 545 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 546 | S: Maintained |
| 547 | |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 548 | ARM/TOSA MACHINE SUPPORT |
| 549 | P: Dirk Opfer |
| 550 | M: dirk@opfer-online.de |
| 551 | S: Maintained |
| 552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | ARM/PLEB SUPPORT |
| 554 | P: Peter Chubb |
| 555 | M: pleb@gelato.unsw.edu.au |
| 556 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
| 557 | S: Maintained |
| 558 | |
| 559 | ARM/PT DIGITAL BOARD PORT |
| 560 | P: Stefan Eletzhofer |
| 561 | M: stefan.eletzhofer@eletztrick.de |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 562 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | W: http://www.arm.linux.org.uk/ |
| 564 | S: Maintained |
| 565 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 566 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
| 567 | P: Lennert Buytenhek |
| 568 | M: kernel@wantstofly.org |
| 569 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 570 | S: Maintained |
| 571 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | ARM/SHARK MACHINE SUPPORT |
| 573 | P: Alexander Schulz |
| 574 | M: alex@shark-linux.de |
| 575 | W: http://www.shark-linux.de/shark.html |
| 576 | S: Maintained |
| 577 | |
| 578 | ARM/STRONGARM110 PORT |
| 579 | P: Russell King |
| 580 | M: rmk@arm.linux.org.uk |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 581 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | W: http://www.arm.linux.org.uk/ |
| 583 | S: Maintained |
| 584 | |
| 585 | ARM/S3C2410 ARM ARCHITECTURE |
| 586 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 587 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 588 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | W: http://www.fluff.org/ben/linux/ |
| 590 | S: Maintained |
| 591 | |
| 592 | ARM/S3C2440 ARM ARCHITECTURE |
| 593 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 594 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 595 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | W: http://www.fluff.org/ben/linux/ |
| 597 | S: Maintained |
| 598 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 599 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
| 600 | P: Lennert Buytenhek |
| 601 | M: kernel@wantstofly.org |
| 602 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 603 | S: Maintained |
| 604 | |
| 605 | ARM/THECUS N2100 MACHINE SUPPORT |
| 606 | P: Lennert Buytenhek |
| 607 | M: kernel@wantstofly.org |
| 608 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 609 | S: Maintained |
| 610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | ARPD SUPPORT |
| 612 | P: Jonathan Layes |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 613 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | S: Maintained |
| 615 | |
| 616 | ASUS ACPI EXTRAS DRIVER |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 617 | P: Corentin Chary |
| 618 | M: corentincj@iksaif.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | P: Karol Kozimor |
| 620 | M: sziwan@users.sourceforge.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | L: acpi4asus-user@lists.sourceforge.net |
| 622 | W: http://sourceforge.net/projects/acpi4asus |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 623 | W: http://xf.iksaif.net/acpi4asus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | S: Maintained |
| 625 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 626 | ASUS ASB100 HARDWARE MONITOR DRIVER |
| 627 | P: Mark M. Hoffman |
| 628 | M: mhoffman@lightlink.com |
| 629 | L: lm-sensors@lm-sensors.org |
| 630 | S: Maintained |
| 631 | |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 632 | ASUS LAPTOP EXTRAS DRIVER |
| 633 | P: Corentin Chary |
| 634 | M: corentincj@iksaif.net |
| 635 | L: acpi4asus-user@lists.sourceforge.net |
| 636 | W: http://sourceforge.net/projects/acpi4asus |
| 637 | W: http://xf.iksaif.net/acpi4asus |
| 638 | S: Maintained |
| 639 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 640 | ASYNCHRONOUS TRANSFERS/TRANSFORMS API |
| 641 | P: Dan Williams |
| 642 | M: dan.j.williams@intel.com |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 643 | P: Maciej Sosnowski |
| 644 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 645 | L: linux-kernel@vger.kernel.org |
| 646 | W: http://sourceforge.net/projects/xscaleiop |
| 647 | S: Supported |
| 648 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | ATA OVER ETHERNET DRIVER |
| 650 | P: Ed L. Cashin |
| 651 | M: ecashin@coraid.com |
| 652 | W: http://www.coraid.com/support/linux |
| 653 | S: Supported |
| 654 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 655 | ATHEROS ATH5K WIRELESS DRIVER |
| 656 | P: Jiri Slaby |
| 657 | M: jirislaby@gmail.com |
| 658 | P: Nick Kossifidis |
| 659 | M: mickflemm@gmail.com |
| 660 | P: Luis R. Rodriguez |
| 661 | M: mcgrof@gmail.com |
| 662 | L: linux-wireless@vger.kernel.org |
| 663 | L: ath5k-devel@lists.ath5k.org |
| 664 | S: Maintained |
| 665 | |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 666 | ATL1 ETHERNET DRIVER |
| 667 | P: Jay Cliburn |
| 668 | M: jcliburn@gmail.com |
| 669 | P: Chris Snook |
| 670 | M: csnook@redhat.com |
| 671 | L: atl1-devel@lists.sourceforge.net |
| 672 | W: http://sourceforge.net/projects/atl1 |
| 673 | W: http://atl1.sourceforge.net |
| 674 | S: Maintained |
| 675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | ATM |
| 677 | P: Chas Williams |
| 678 | M: chas@cmf.nrl.navy.mil |
Roland Dreier | f37bf90 | 2006-09-13 20:39:33 -0700 | [diff] [blame] | 679 | L: linux-atm-general@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | W: http://linux-atm.sourceforge.net |
| 681 | S: Maintained |
| 682 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 683 | ATMEL AT91 MCI DRIVER |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 684 | P: Nicolas Ferre |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 685 | M: nicolas.ferre@atmel.com |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 686 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 687 | W: http://www.atmel.com/products/AT91/ |
| 688 | W: http://www.at91.com/ |
| 689 | S: Maintained |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 690 | |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 691 | ATMEL AT91 / AT32 SERIAL DRIVER |
| 692 | P: Haavard Skinnemoen |
| 693 | M: hskinnemoen@atmel.com |
| 694 | L: linux-kernel@vger.kernel.org |
| 695 | S: Supported |
| 696 | |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 697 | ATMEL LCDFB DRIVER |
| 698 | P: Nicolas Ferre |
| 699 | M: nicolas.ferre@atmel.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 700 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 701 | S: Maintained |
| 702 | |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 703 | ATMEL MACB ETHERNET DRIVER |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 704 | P: Haavard Skinnemoen |
| 705 | M: hskinnemoen@atmel.com |
| 706 | S: Supported |
| 707 | |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 708 | ATMEL SPI DRIVER |
| 709 | P: Haavard Skinnemoen |
| 710 | M: hskinnemoen@atmel.com |
| 711 | S: Supported |
| 712 | |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 713 | ATMEL USBA UDC DRIVER |
| 714 | P: Haavard Skinnemoen |
| 715 | M: hskinnemoen@atmel.com |
| 716 | L: kernel@avr32linux.org |
| 717 | W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver |
| 718 | S: Supported |
| 719 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | ATMEL WIRELESS DRIVER |
| 721 | P: Simon Kelley |
| 722 | M: simon@thekelleys.org.uk |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 723 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | W: http://www.thekelleys.org.uk/atmel |
| 725 | W: http://atmelwlandriver.sourceforge.net/ |
| 726 | S: Maintained |
| 727 | |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 728 | AUDIT SUBSYSTEM |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 729 | P: David Woodhouse |
| 730 | M: dwmw2@infradead.org |
Gabriel C | b9a0620 | 2007-08-10 13:00:56 -0700 | [diff] [blame] | 731 | L: linux-audit@redhat.com (subscribers-only) |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 732 | W: http://people.redhat.com/sgrubb/audit/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 733 | T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 734 | S: Maintained |
| 735 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 736 | AUXILIARY DISPLAY DRIVERS |
| 737 | P: Miguel Ojeda Sandonis |
| 738 | M: maxextreme@gmail.com |
| 739 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 6b96862 | 2007-05-08 00:29:54 -0700 | [diff] [blame] | 740 | W: http://auxdisplay.googlepages.com/ |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 741 | S: Maintained |
| 742 | |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 743 | AVR32 ARCHITECTURE |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 744 | P: Haavard Skinnemoen |
| 745 | M: hskinnemoen@atmel.com |
| 746 | W: http://www.atmel.com/products/AVR32/ |
| 747 | W: http://avr32linux.org/ |
| 748 | W: http://avrfreaks.net/ |
| 749 | S: Supported |
| 750 | |
| 751 | AVR32/AT32AP MACHINE SUPPORT |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 752 | P: Haavard Skinnemoen |
| 753 | M: hskinnemoen@atmel.com |
| 754 | S: Supported |
| 755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | AX.25 NETWORK LAYER |
| 757 | P: Ralf Baechle |
| 758 | M: ralf@linux-mips.org |
| 759 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 760 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | S: Maintained |
| 762 | |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 763 | BACKLIGHT CLASS/SUBSYSTEM |
| 764 | P: Richard Purdie |
| 765 | M: rpurdie@rpsys.net |
| 766 | S: Maintained |
| 767 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 768 | BLACKFIN ARCHITECTURE |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 769 | P: Bryan Wu |
Bryan Wu | 7dd06cd | 2008-02-21 16:18:43 +0800 | [diff] [blame] | 770 | M: cooloney@kernel.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 771 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 772 | W: http://blackfin.uclinux.org |
| 773 | S: Supported |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 774 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 775 | BLACKFIN EMAC DRIVER |
| 776 | P: Bryan Wu |
Bryan Wu | 7dd06cd | 2008-02-21 16:18:43 +0800 | [diff] [blame] | 777 | M: cooloney@kernel.org |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 778 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 779 | W: http://blackfin.uclinux.org |
| 780 | S: Supported |
| 781 | |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 782 | BLACKFIN RTC DRIVER |
| 783 | P: Mike Frysinger |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 784 | M: vapier.adi@gmail.com |
| 785 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 786 | W: http://blackfin.uclinux.org |
| 787 | S: Supported |
| 788 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 789 | BLACKFIN SERIAL DRIVER |
Mike Frysinger | 9c5e710 | 2007-11-17 23:19:44 +0800 | [diff] [blame] | 790 | P: Sonic Zhang |
| 791 | M: sonic.zhang@analog.com |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 792 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 793 | W: http://blackfin.uclinux.org |
| 794 | S: Supported |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 795 | |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 796 | BLACKFIN WATCHDOG DRIVER |
| 797 | P: Mike Frysinger |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 798 | M: vapier.adi@gmail.com |
| 799 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 800 | W: http://blackfin.uclinux.org |
| 801 | S: Supported |
| 802 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
| 804 | P: Thomas Sailer |
| 805 | M: t.sailer@alumni.ethz.ch |
| 806 | L: linux-hams@vger.kernel.org |
| 807 | W: http://www.baycom.org/~tom/ham/ham.html |
| 808 | S: Maintained |
| 809 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 810 | B43 WIRELESS DRIVER |
| 811 | P: Michael Buesch |
| 812 | M: mb@bu3sch.de |
| 813 | P: Stefano Brivio |
Stefano Brivio | 2817ef1 | 2007-11-06 22:48:56 +0100 | [diff] [blame] | 814 | M: stefano.brivio@polimi.it |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 815 | L: linux-wireless@vger.kernel.org |
Stefano Brivio | 2817ef1 | 2007-11-06 22:48:56 +0100 | [diff] [blame] | 816 | W: http://linuxwireless.org/en/users/Drivers/b43 |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 817 | S: Maintained |
| 818 | |
Larry Finger | 75388ac | 2007-09-25 16:46:54 -0700 | [diff] [blame] | 819 | B43LEGACY WIRELESS DRIVER |
| 820 | P: Larry Finger |
| 821 | M: Larry.Finger@lwfinger.net |
Stefano Brivio | 2817ef1 | 2007-11-06 22:48:56 +0100 | [diff] [blame] | 822 | P: Stefano Brivio |
| 823 | M: stefano.brivio@polimi.it |
Larry Finger | 75388ac | 2007-09-25 16:46:54 -0700 | [diff] [blame] | 824 | L: linux-wireless@vger.kernel.org |
Stefano Brivio | 2817ef1 | 2007-11-06 22:48:56 +0100 | [diff] [blame] | 825 | W: http://linuxwireless.org/en/users/Drivers/b43 |
Larry Finger | 75388ac | 2007-09-25 16:46:54 -0700 | [diff] [blame] | 826 | S: Maintained |
| 827 | |
Michael Buesch | fb67a0f | 2006-08-16 00:39:36 +0200 | [diff] [blame] | 828 | BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION) |
| 829 | P: Larry Finger |
| 830 | M: Larry.Finger@lwfinger.net |
Michael Buesch | 9eac8f9 | 2006-04-22 17:31:27 +0200 | [diff] [blame] | 831 | P: Stefano Brivio |
Stefano Brivio | 2817ef1 | 2007-11-06 22:48:56 +0100 | [diff] [blame] | 832 | M: stefano.brivio@polimi.it |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 833 | L: linux-wireless@vger.kernel.org |
Michael Buesch | 9eac8f9 | 2006-04-22 17:31:27 +0200 | [diff] [blame] | 834 | W: http://bcm43xx.berlios.de/ |
John W. Linville | 003faaa | 2008-01-27 22:48:37 -0800 | [diff] [blame] | 835 | S: Obsolete |
Michael Buesch | 9eac8f9 | 2006-04-22 17:31:27 +0200 | [diff] [blame] | 836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | BEFS FILE SYSTEM |
| 838 | P: Sergey S. Kostyliov |
| 839 | M: rathamahata@php4.ru |
| 840 | L: linux-kernel@vger.kernel.org |
| 841 | S: Maintained |
| 842 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | BFS FILE SYSTEM |
| 844 | P: Tigran A. Aivazian |
Tigran Aivazian | b5b9df6 | 2006-11-08 17:44:46 -0800 | [diff] [blame] | 845 | M: tigran@aivazian.fsnet.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | L: linux-kernel@vger.kernel.org |
| 847 | S: Maintained |
| 848 | |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 849 | BLACKFIN I2C TWI DRIVER |
| 850 | P: Sonic Zhang |
| 851 | M: sonic.zhang@analog.com |
| 852 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 853 | W: http://blackfin.uclinux.org/ |
| 854 | S: Supported |
| 855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | BLOCK LAYER |
| 857 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 858 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | L: linux-kernel@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 860 | T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | S: Maintained |
| 862 | |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 863 | BLOCK2MTD DRIVER |
| 864 | P: Joern Engel |
| 865 | M: joern@lazybastard.org |
| 866 | L: linux-mtd@lists.infradead.org |
| 867 | S: Maintained |
| 868 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | BLUETOOTH SUBSYSTEM |
| 870 | P: Marcel Holtmann |
| 871 | M: marcel@holtmann.org |
| 872 | P: Maxim Krasnyansky |
| 873 | M: maxk@qualcomm.com |
| 874 | L: bluez-devel@lists.sf.net |
| 875 | W: http://bluez.sf.net |
| 876 | W: http://www.bluez.org |
| 877 | W: http://www.holtmann.org/linux/bluetooth/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 878 | T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | S: Maintained |
| 880 | |
| 881 | BLUETOOTH RFCOMM LAYER |
| 882 | P: Marcel Holtmann |
| 883 | M: marcel@holtmann.org |
| 884 | P: Maxim Krasnyansky |
| 885 | M: maxk@qualcomm.com |
| 886 | S: Maintained |
| 887 | |
| 888 | BLUETOOTH BNEP LAYER |
| 889 | P: Marcel Holtmann |
| 890 | M: marcel@holtmann.org |
| 891 | P: Maxim Krasnyansky |
| 892 | M: maxk@qualcomm.com |
| 893 | S: Maintained |
| 894 | |
| 895 | BLUETOOTH CMTP LAYER |
| 896 | P: Marcel Holtmann |
| 897 | M: marcel@holtmann.org |
| 898 | S: Maintained |
| 899 | |
| 900 | BLUETOOTH HIDP LAYER |
| 901 | P: Marcel Holtmann |
| 902 | M: marcel@holtmann.org |
| 903 | S: Maintained |
| 904 | |
| 905 | BLUETOOTH HCI UART DRIVER |
| 906 | P: Marcel Holtmann |
| 907 | M: marcel@holtmann.org |
| 908 | P: Maxim Krasnyansky |
| 909 | M: maxk@qualcomm.com |
| 910 | S: Maintained |
| 911 | |
| 912 | BLUETOOTH HCI USB DRIVER |
| 913 | P: Marcel Holtmann |
| 914 | M: marcel@holtmann.org |
| 915 | P: Maxim Krasnyansky |
| 916 | M: maxk@qualcomm.com |
| 917 | S: Maintained |
| 918 | |
| 919 | BLUETOOTH HCI BCM203X DRIVER |
| 920 | P: Marcel Holtmann |
| 921 | M: marcel@holtmann.org |
| 922 | S: Maintained |
| 923 | |
| 924 | BLUETOOTH HCI BPA10X DRIVER |
| 925 | P: Marcel Holtmann |
| 926 | M: marcel@holtmann.org |
| 927 | S: Maintained |
| 928 | |
| 929 | BLUETOOTH HCI BFUSB DRIVER |
| 930 | P: Marcel Holtmann |
| 931 | M: marcel@holtmann.org |
| 932 | S: Maintained |
| 933 | |
| 934 | BLUETOOTH HCI DTL1 DRIVER |
| 935 | P: Marcel Holtmann |
| 936 | M: marcel@holtmann.org |
| 937 | S: Maintained |
| 938 | |
| 939 | BLUETOOTH HCI BLUECARD DRIVER |
| 940 | P: Marcel Holtmann |
| 941 | M: marcel@holtmann.org |
| 942 | S: Maintained |
| 943 | |
| 944 | BLUETOOTH HCI BT3C DRIVER |
| 945 | P: Marcel Holtmann |
| 946 | M: marcel@holtmann.org |
| 947 | S: Maintained |
| 948 | |
| 949 | BLUETOOTH HCI BTUART DRIVER |
| 950 | P: Marcel Holtmann |
| 951 | M: marcel@holtmann.org |
| 952 | S: Maintained |
| 953 | |
| 954 | BLUETOOTH HCI VHCI DRIVER |
| 955 | P: Maxim Krasnyansky |
| 956 | M: maxk@qualcomm.com |
| 957 | S: Maintained |
| 958 | |
| 959 | BONDING DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 960 | P: Jay Vosburgh |
| 961 | M: fubar@us.ibm.com |
| 962 | L: bonding-devel@lists.sourceforge.net |
| 963 | W: http://sourceforge.net/projects/bonding/ |
| 964 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | |
Arnd Bergmann | fef1c77 | 2005-06-23 09:43:37 +1000 | [diff] [blame] | 966 | BROADBAND PROCESSOR ARCHITECTURE |
| 967 | P: Arnd Bergmann |
| 968 | M: arnd@arndb.de |
Stephen Rothwell | 1d04981 | 2006-03-22 11:26:58 +1100 | [diff] [blame] | 969 | L: linuxppc-dev@ozlabs.org |
Arthur Othieno | 6d923f9 | 2006-05-19 06:22:23 -0400 | [diff] [blame] | 970 | W: http://www.penguinppc.org/ppc64/ |
Arnd Bergmann | fef1c77 | 2005-06-23 09:43:37 +1000 | [diff] [blame] | 971 | S: Supported |
| 972 | |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 973 | BROADCOM B44 10/100 ETHERNET DRIVER |
| 974 | P: Gary Zambrano |
| 975 | M: zambrano@broadcom.com |
| 976 | L: netdev@vger.kernel.org |
| 977 | S: Supported |
| 978 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 979 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
| 980 | P: Michael Chan |
| 981 | M: mchan@broadcom.com |
| 982 | L: netdev@vger.kernel.org |
| 983 | S: Supported |
| 984 | |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 985 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
| 986 | P: Eliezer Tamir |
| 987 | M: eliezert@broadcom.com |
| 988 | L: netdev@vger.kernel.org |
| 989 | S: Supported |
| 990 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 991 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
| 992 | P: Michael Chan |
| 993 | M: mchan@broadcom.com |
| 994 | L: netdev@vger.kernel.org |
| 995 | S: Supported |
| 996 | |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 997 | BSG (block layer generic sg v4 driver) |
| 998 | P: FUJITA Tomonori |
| 999 | M: fujita.tomonori@lab.ntt.co.jp |
| 1000 | L: linux-scsi@vger.kernel.org |
| 1001 | S: Supported |
| 1002 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | BTTV VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1004 | P: Mauro Carvalho Chehab |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1005 | M: mchehab@infradead.org |
| 1006 | M: v4l-dvb-maintainer@linuxtv.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | L: video4linux-list@redhat.com |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1008 | W: http://linuxtv.org |
Mauro Carvalho Chehab | ecfa4fd | 2005-12-19 09:15:13 -0200 | [diff] [blame] | 1009 | T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1010 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1012 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
| 1013 | P: Jonathan Corbet |
| 1014 | M: corbet@lwn.net |
| 1015 | L: video4linux-list@redhat.com |
| 1016 | S: Maintained |
| 1017 | |
Oliver Hartkopp | beca222 | 2007-11-16 16:07:41 -0800 | [diff] [blame] | 1018 | CAN NETWORK LAYER |
| 1019 | P: Urs Thuermann |
| 1020 | M: urs.thuermann@volkswagen.de |
| 1021 | P: Oliver Hartkopp |
| 1022 | M: oliver.hartkopp@volkswagen.de |
| 1023 | L: socketcan-core@lists.berlios.de |
| 1024 | W: http://developer.berlios.de/projects/socketcan/ |
| 1025 | S: Maintained |
| 1026 | |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1027 | CALGARY x86-64 IOMMU |
| 1028 | P: Muli Ben-Yehuda |
| 1029 | M: muli@il.ibm.com |
| 1030 | P: Jon D. Mason |
Jon Mason | d8d2bed | 2006-10-05 18:47:21 +0200 | [diff] [blame] | 1031 | M: jdmason@kudzu.us |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1032 | L: linux-kernel@vger.kernel.org |
| 1033 | L: discuss@x86-64.org |
| 1034 | S: Maintained |
| 1035 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1036 | CFAG12864B LCD DRIVER |
| 1037 | P: Miguel Ojeda Sandonis |
| 1038 | M: maxextreme@gmail.com |
| 1039 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 6b96862 | 2007-05-08 00:29:54 -0700 | [diff] [blame] | 1040 | W: http://auxdisplay.googlepages.com/ |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1041 | S: Maintained |
| 1042 | |
| 1043 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
| 1044 | P: Miguel Ojeda Sandonis |
| 1045 | M: maxextreme@gmail.com |
| 1046 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 6b96862 | 2007-05-08 00:29:54 -0700 | [diff] [blame] | 1047 | W: http://auxdisplay.googlepages.com/ |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1048 | S: Maintained |
| 1049 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1050 | CFG80211 and NL80211 |
| 1051 | P: Johannes Berg |
| 1052 | M: johannes@sipsolutions.net |
| 1053 | L: linux-wireless@vger.kernel.org |
| 1054 | S: Maintained |
| 1055 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1056 | CHECKPATCH |
| 1057 | P: Andy Whitcroft |
| 1058 | M: apw@shadowen.org |
| 1059 | P: Randy Dunlap |
| 1060 | M: rdunlap@xenotime.net |
| 1061 | P: Joel Schopp |
| 1062 | M: jschopp@austin.ibm.com |
| 1063 | S: Supported |
| 1064 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | COMMON INTERNET FILE SYSTEM (CIFS) |
| 1066 | P: Steve French |
| 1067 | M: sfrench@samba.org |
Jesper Juhl | fb453d4 | 2006-01-15 02:46:48 +0100 | [diff] [blame] | 1068 | L: linux-cifs-client@lists.samba.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | L: samba-technical@lists.samba.org |
Steve French | af5a032 | 2007-08-13 19:53:17 +0000 | [diff] [blame] | 1070 | W: http://linux-cifs.samba.org/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 1071 | T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 1072 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1074 | CONFIGFS |
| 1075 | P: Joel Becker |
Joel Becker | 62ca3d26 | 2006-01-27 11:04:12 -0800 | [diff] [blame] | 1076 | M: joel.becker@oracle.com |
| 1077 | L: linux-kernel@vger.kernel.org |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1078 | S: Supported |
| 1079 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1080 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
| 1081 | P: Lennert Buytenhek |
| 1082 | M: kernel@wantstofly.org |
| 1083 | L: netdev@vger.kernel.org |
| 1084 | S: Maintained |
| 1085 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1086 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
| 1087 | P: Lennert Buytenhek |
| 1088 | M: kernel@wantstofly.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 1089 | L: linux-usb@vger.kernel.org |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1090 | S: Maintained |
| 1091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER |
| 1093 | P: Cirrus Logic Corporation (kernel 2.2 driver) |
| 1094 | M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com> |
| 1095 | P: Nils Faerber (port to kernel 2.4) |
| 1096 | M: Nils Faerber <nils@kernelconcepts.de> |
| 1097 | S: Maintained |
| 1098 | |
| 1099 | CODA FILE SYSTEM |
| 1100 | P: Jan Harkes |
| 1101 | M: jaharkes@cs.cmu.edu |
| 1102 | M: coda@cs.cmu.edu |
| 1103 | L: codalist@coda.cs.cmu.edu |
| 1104 | W: http://www.coda.cs.cmu.edu/ |
| 1105 | S: Maintained |
| 1106 | |
| 1107 | COMPACTPCI HOTPLUG CORE |
| 1108 | P: Scott Murray |
| 1109 | M: scottm@somanetworks.com |
| 1110 | M: scott@spiteful.org |
| 1111 | L: pcihpd-discuss@lists.sourceforge.net |
| 1112 | S: Supported |
| 1113 | |
| 1114 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
| 1115 | P: Scott Murray |
| 1116 | M: scottm@somanetworks.com |
| 1117 | M: scott@spiteful.org |
| 1118 | L: pcihpd-discuss@lists.sourceforge.net |
| 1119 | S: Supported |
| 1120 | |
| 1121 | COMPACTPCI HOTPLUG GENERIC DRIVER |
| 1122 | P: Scott Murray |
| 1123 | M: scottm@somanetworks.com |
| 1124 | M: scott@spiteful.org |
| 1125 | L: pcihpd-discuss@lists.sourceforge.net |
| 1126 | S: Supported |
| 1127 | |
| 1128 | COMPUTONE INTELLIPORT MULTIPORT CARD |
| 1129 | P: Michael H. Warfield |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1130 | M: mhw@wittsend.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | W: http://www.wittsend.com/computone.html |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1132 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1134 | CONEXANT ACCESSRUNNER USB DRIVER |
| 1135 | P: Simon Arlott |
| 1136 | M: cxacru@fire.lp0.eu |
Simon Arlott | 9ae5e3b | 2007-05-09 08:38:10 +0200 | [diff] [blame] | 1137 | L: accessrunner-general@lists.sourceforge.net |
| 1138 | W: http://accessrunner.sourceforge.net/ |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1139 | S: Maintained |
| 1140 | |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1141 | CONTROL GROUPS (CGROUPS) |
| 1142 | P: Paul Menage |
| 1143 | M: menage@google.com |
| 1144 | L: containers@lists.linux-foundation.org |
| 1145 | S: Maintained |
| 1146 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1147 | CORETEMP HARDWARE MONITORING DRIVER |
| 1148 | P: Rudolf Marek |
| 1149 | M: r.marek@assembler.cz |
| 1150 | L: lm-sensors@lm-sensors.org |
| 1151 | S: Maintained |
| 1152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | COSA/SRP SYNC SERIAL DRIVER |
| 1154 | P: Jan "Yenya" Kasprzak |
| 1155 | M: kas@fi.muni.cz |
| 1156 | W: http://www.fi.muni.cz/~kas/cosa/ |
| 1157 | S: Maintained |
| 1158 | |
| 1159 | CPU FREQUENCY DRIVERS |
| 1160 | P: Dave Jones |
| 1161 | M: davej@codemonkey.org.uk |
| 1162 | L: cpufreq@lists.linux.org.uk |
| 1163 | W: http://www.codemonkey.org.uk/projects/cpufreq/ |
Dave Jones | 7531a0b | 2006-12-12 17:26:35 -0500 | [diff] [blame] | 1164 | T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | S: Maintained |
| 1166 | |
| 1167 | CPUID/MSR DRIVER |
| 1168 | P: H. Peter Anvin |
| 1169 | M: hpa@zytor.com |
| 1170 | S: Maintained |
| 1171 | |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1172 | CPUSETS |
| 1173 | P: Paul Jackson |
| 1174 | P: Simon Derr |
| 1175 | M: pj@sgi.com |
| 1176 | M: simon.derr@bull.net |
| 1177 | L: linux-kernel@vger.kernel.org |
| 1178 | W: http://www.bullopensource.org/cpuset/ |
| 1179 | S: Supported |
| 1180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | CRAMFS FILESYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1182 | W: http://sourceforge.net/projects/cramfs/ |
| 1183 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | |
| 1185 | CRIS PORT |
| 1186 | P: Mikael Starvik |
| 1187 | M: starvik@axis.com |
Jesper Nilsson | 0b07aa6 | 2008-01-25 13:22:29 +0100 | [diff] [blame] | 1188 | P: Jesper Nilsson |
| 1189 | M: jesper.nilsson@axis.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | L: dev-etrax@axis.com |
| 1191 | W: http://developer.axis.com |
| 1192 | S: Maintained |
| 1193 | |
| 1194 | CRYPTO API |
| 1195 | P: Herbert Xu |
| 1196 | M: herbert@gondor.apana.org.au |
| 1197 | P: David S. Miller |
| 1198 | M: davem@davemloft.net |
| 1199 | L: linux-crypto@vger.kernel.org |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 1200 | T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | S: Maintained |
| 1202 | |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1203 | CS5535 Audio ALSA driver |
| 1204 | P: Jaya Kumar |
| 1205 | M: jayakumar.alsa@gmail.com |
| 1206 | S: Maintained |
| 1207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | CYBERPRO FB DRIVER |
| 1209 | P: Russell King |
| 1210 | M: rmk@arm.linux.org.uk |
| 1211 | W: http://www.arm.linux.org.uk/ |
| 1212 | S: Maintained |
| 1213 | |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1214 | CYBLAFB FRAMEBUFFER DRIVER |
| 1215 | P: Knut Petersen |
| 1216 | M: Knut_Petersen@t-online.de |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1217 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1218 | S: Maintained |
| 1219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | CYCLADES 2X SYNC CARD DRIVER |
| 1221 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1222 | M: acme@ghostprotocols.net |
| 1223 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | S: Maintained |
| 1225 | |
| 1226 | CYCLADES ASYNC MUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1228 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | |
| 1230 | CYCLADES PC300 DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1232 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | DAMA SLAVE for AX.25 |
| 1235 | P: Joerg Reuter |
| 1236 | M: jreuter@yaina.de |
| 1237 | W: http://yaina.de/jreuter/ |
| 1238 | W: http://www.qsl.net/dl1bke/ |
| 1239 | L: linux-hams@vger.kernel.org |
| 1240 | S: Maintained |
| 1241 | |
| 1242 | DC395x SCSI driver |
| 1243 | P: Oliver Neukum |
| 1244 | M: oliver@neukum.name |
| 1245 | P: Ali Akcaagac |
| 1246 | M: aliakc@web.de |
| 1247 | P: Jamie Lenehan |
| 1248 | M: lenehan@twibble.org |
| 1249 | W: http://twibble.org/dist/dc395x/ |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 1250 | L: dc395x@twibble.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
| 1252 | S: Maintained |
| 1253 | |
| 1254 | DC390/AM53C974 SCSI driver |
| 1255 | P: Kurt Garloff |
| 1256 | M: garloff@suse.de |
| 1257 | W: http://www.garloff.de/kurt/linux/dc390/ |
| 1258 | P: Guennadi Liakhovetski |
| 1259 | M: g.liakhovetski@gmx.de |
| 1260 | S: Maintained |
| 1261 | |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1262 | DCCP PROTOCOL |
| 1263 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1264 | M: acme@ghostprotocols.net |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1265 | L: dccp@vger.kernel.org |
Ian McDonald | f3b84ec | 2005-11-10 13:05:01 -0800 | [diff] [blame] | 1266 | W: http://linux-net.osdl.org/index.php/DCCP |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1267 | S: Maintained |
| 1268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | DECnet NETWORK LAYER |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1270 | P: Christine Caulfield |
| 1271 | M: christine.caulfield@googlemail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | W: http://linux-decnet.sourceforge.net |
| 1273 | L: linux-decnet-user@lists.sourceforge.net |
| 1274 | S: Maintained |
| 1275 | |
| 1276 | DEFXX FDDI NETWORK DRIVER |
| 1277 | P: Maciej W. Rozycki |
| 1278 | M: macro@linux-mips.org |
| 1279 | S: Maintained |
| 1280 | |
| 1281 | DELL LAPTOP SMM DRIVER |
| 1282 | P: Massimo Dal Zotto |
| 1283 | M: dz@debian.org |
| 1284 | W: http://www.debian.org/~dz/i8k/ |
| 1285 | S: Maintained |
| 1286 | |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1287 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
| 1288 | P: Doug Warzecha |
| 1289 | M: Douglas_Warzecha@dell.com |
| 1290 | S: Maintained |
| 1291 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 1292 | DEVICE-MAPPER (LVM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | P: Alasdair Kergon |
| 1294 | L: dm-devel@redhat.com |
| 1295 | W: http://sources.redhat.com/dm |
| 1296 | S: Maintained |
| 1297 | |
| 1298 | DEVICE NUMBER REGISTRY |
| 1299 | P: Torben Mathiasen |
| 1300 | M: device@lanana.org |
| 1301 | W: http://lanana.org/docs/device-list/index.html |
| 1302 | L: linux-kernel@vger.kernel.org |
| 1303 | S: Maintained |
| 1304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | DIGI INTL. EPCA DRIVER |
| 1306 | P: Digi International, Inc |
| 1307 | M: Eng.Linux@digi.com |
| 1308 | L: Eng.Linux@digi.com |
| 1309 | W: http://www.digi.com |
| 1310 | S: Orphaned |
| 1311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | DIRECTORY NOTIFICATION |
| 1313 | P: Stephen Rothwell |
| 1314 | M: sfr@canb.auug.org.au |
| 1315 | L: linux-kernel@vger.kernel.org |
| 1316 | S: Supported |
| 1317 | |
| 1318 | DISK GEOMETRY AND PARTITION HANDLING |
| 1319 | P: Andries Brouwer |
| 1320 | M: aeb@cwi.nl |
| 1321 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
| 1322 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
| 1323 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
| 1324 | S: Maintained |
| 1325 | |
| 1326 | DISKQUOTA: |
| 1327 | P: Jan Kara |
| 1328 | M: jack@suse.cz |
| 1329 | L: linux-kernel@vger.kernel.org |
| 1330 | S: Maintained |
| 1331 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1332 | DISTRIBUTED LOCK MANAGER |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1333 | P: Christine Caulfield |
| 1334 | M: ccaulfie@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1335 | P: David Teigland |
| 1336 | M: teigland@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 1337 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1338 | W: http://sources.redhat.com/cluster/ |
David Teigland | d7c2fea | 2008-02-21 15:27:09 -0600 | [diff] [blame] | 1339 | T: git kernel.org:/pub/scm/linux/kernel/git/teigland/dlm.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1340 | S: Supported |
| 1341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
| 1343 | P: Tobias Ringstrom |
| 1344 | M: tori@unhappy.mine.nu |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 1345 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | S: Maintained |
| 1347 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1348 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 1349 | P: Maciej Sosnowski |
| 1350 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1351 | P: Dan Williams |
| 1352 | M: dan.j.williams@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1353 | L: linux-kernel@vger.kernel.org |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1354 | S: Supported |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1355 | |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1356 | DME1737 HARDWARE MONITOR DRIVER |
| 1357 | P: Juerg Haefliger |
| 1358 | M: juergh@gmail.com |
| 1359 | L: lm-sensors@lm-sensors.org |
| 1360 | S: Maintained |
| 1361 | |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1362 | DOCBOOK FOR DOCUMENTATION |
Randy Dunlap | 0f40efb | 2006-07-03 00:24:15 -0700 | [diff] [blame] | 1363 | P: Randy Dunlap |
| 1364 | M: rdunlap@xenotime.net |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1365 | S: Maintained |
| 1366 | |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1367 | DOCKING STATION DRIVER |
| 1368 | P: Kristen Carlson Accardi |
| 1369 | M: kristen.c.accardi@intel.com |
| 1370 | L: linux-acpi@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 1371 | S: Supported |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | DOUBLETALK DRIVER |
| 1374 | P: James R. Van Zandt |
| 1375 | M: jrv@vanzandt.mv.com |
| 1376 | L: blinux-list@redhat.com |
| 1377 | S: Maintained |
| 1378 | |
| 1379 | DRIVER CORE, KOBJECTS, AND SYSFS |
| 1380 | P: Greg Kroah-Hartman |
| 1381 | M: gregkh@suse.de |
| 1382 | L: linux-kernel@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1383 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | S: Supported |
| 1385 | |
| 1386 | DRM DRIVERS |
| 1387 | P: David Airlie |
| 1388 | M: airlied@linux.ie |
| 1389 | L: dri-devel@lists.sourceforge.net |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1390 | T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | S: Maintained |
| 1392 | |
| 1393 | DSCC4 DRIVER |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 1394 | P: Francois Romieu |
| 1395 | M: romieu@fr.zoreil.com |
| 1396 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | S: Maintained |
| 1398 | |
| 1399 | DVB SUBSYSTEM AND DRIVERS |
| 1400 | P: LinuxTV.org Project |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1401 | M: v4l-dvb-maintainer@linuxtv.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | L: linux-dvb@linuxtv.org (subscription required) |
Johannes Stezenbach | 7d69fa6 | 2005-08-11 11:54:24 +0200 | [diff] [blame] | 1403 | W: http://linuxtv.org/ |
Mauro Carvalho Chehab | ecfa4fd | 2005-12-19 09:15:13 -0200 | [diff] [blame] | 1404 | T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1405 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 1407 | DZ DECSTATION DZ11 SERIAL DRIVER |
| 1408 | P: Maciej W. Rozycki |
| 1409 | M: macro@linux-mips.org |
| 1410 | S: Maintained |
| 1411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | EATA-DMA SCSI DRIVER |
| 1413 | P: Michael Neuffer |
| 1414 | L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org |
| 1415 | S: Maintained |
| 1416 | |
| 1417 | EATA ISA/EISA/PCI SCSI DRIVER |
| 1418 | P: Dario Ballabio |
| 1419 | M: ballabio_dario@emc.com |
| 1420 | L: linux-scsi@vger.kernel.org |
| 1421 | S: Maintained |
| 1422 | |
| 1423 | EATA-PIO SCSI DRIVER |
| 1424 | P: Michael Neuffer |
| 1425 | M: mike@i-Connect.Net |
| 1426 | L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org |
| 1427 | S: Maintained |
| 1428 | |
| 1429 | EBTABLES |
| 1430 | P: Bart De Schuymer |
| 1431 | M: bart.de.schuymer@pandora.be |
| 1432 | L: ebtables-user@lists.sourceforge.net |
| 1433 | L: ebtables-devel@lists.sourceforge.net |
| 1434 | W: http://ebtables.sourceforge.net/ |
| 1435 | S: Maintained |
| 1436 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1437 | ECRYPT FILE SYSTEM |
| 1438 | P: Mike Halcrow, Phillip Hellewell |
| 1439 | M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net |
| 1440 | L: ecryptfs-devel@lists.sourceforge.net |
| 1441 | W: http://ecryptfs.sourceforge.net/ |
| 1442 | S: Supported |
| 1443 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 1444 | EDAC-CORE |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1445 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1446 | M: dougthompson@xmission.com |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1447 | L: bluesmoke-devel@lists.sourceforge.net |
| 1448 | W: bluesmoke.sourceforge.net |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1449 | S: Supported |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1450 | |
| 1451 | EDAC-E752X |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1452 | P: Mark Gross |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1453 | P: Doug Thompson |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1454 | M: mark.gross@intel.com |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1455 | M: dougthompson@xmission.com |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1456 | L: bluesmoke-devel@lists.sourceforge.net |
| 1457 | W: bluesmoke.sourceforge.net |
| 1458 | S: Maintained |
| 1459 | |
| 1460 | EDAC-E7XXX |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1461 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1462 | M: dougthompson@xmission.com |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1463 | L: bluesmoke-devel@lists.sourceforge.net |
| 1464 | W: bluesmoke.sourceforge.net |
| 1465 | S: Maintained |
| 1466 | |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 1467 | EDAC-I82443BXGX |
| 1468 | P: Tim Small |
| 1469 | M: tim@buttersideup.com |
| 1470 | L: bluesmoke-devel@lists.sourceforge.net |
| 1471 | W: bluesmoke.sourceforge.net |
| 1472 | S: Maintained |
| 1473 | |
| 1474 | EDAC-I3000 |
| 1475 | P: Jason Uhlenkott |
| 1476 | M: juhlenko@akamai.com |
| 1477 | L: bluesmoke-devel@lists.sourceforge.net |
| 1478 | W: bluesmoke.sourceforge.net |
| 1479 | S: Maintained |
| 1480 | |
| 1481 | EDAC-I5000 |
| 1482 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1483 | M: dougthompson@xmission.com |
| 1484 | L: bluesmoke-devel@lists.sourceforge.net |
| 1485 | W: bluesmoke.sourceforge.net |
| 1486 | S: Maintained |
| 1487 | |
| 1488 | EDAC-I82975X |
| 1489 | P: Ranganathan Desikan |
| 1490 | P: Arvind R. |
| 1491 | M: rdesikan@jetzbroadband.com |
| 1492 | M: arvind@acarlab.com |
| 1493 | L: bluesmoke-devel@lists.sourceforge.net |
| 1494 | W: bluesmoke.sourceforge.net |
| 1495 | S: Maintained |
| 1496 | |
| 1497 | EDAC-PASEMI |
| 1498 | P: Egor Martovetsky |
| 1499 | M: egor@pasemi.com |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 1500 | L: bluesmoke-devel@lists.sourceforge.net |
| 1501 | W: bluesmoke.sourceforge.net |
| 1502 | S: Maintained |
| 1503 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1504 | EDAC-R82600 |
| 1505 | P: Tim Small |
| 1506 | M: tim@buttersideup.com |
| 1507 | L: bluesmoke-devel@lists.sourceforge.net |
| 1508 | W: bluesmoke.sourceforge.net |
| 1509 | S: Maintained |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 1510 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | EEPRO100 NETWORK DRIVER |
| 1512 | P: Andrey V. Savochkin |
| 1513 | M: saw@saw.sw.com.sg |
| 1514 | S: Maintained |
| 1515 | |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 1516 | EFS FILESYSTEM |
| 1517 | W: http://aeschi.ch.eu.org/efs/ |
| 1518 | S: Orphan |
| 1519 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 1520 | EHCA (IBM GX bus InfiniBand adapter) DRIVER: |
| 1521 | P: Hoang-Nam Nguyen |
| 1522 | M: hnguyen@de.ibm.com |
| 1523 | P: Christoph Raisch |
| 1524 | M: raisch@de.ibm.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 1525 | L: general@lists.openfabrics.org |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 1526 | S: Supported |
| 1527 | |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 1528 | EMULEX LPFC FC SCSI DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1529 | P: James Smart |
| 1530 | M: james.smart@emulex.com |
| 1531 | L: linux-scsi@vger.kernel.org |
| 1532 | W: http://sourceforge.net/projects/lpfcxxxx |
| 1533 | S: Supported |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 1534 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | EPSON 1355 FRAMEBUFFER DRIVER |
| 1536 | P: Christopher Hoover |
| 1537 | M: ch@murgatroid.com, ch@hpl.hp.com |
| 1538 | S: Maintained |
| 1539 | |
| 1540 | ETHEREXPRESS-16 NETWORK DRIVER |
| 1541 | P: Philip Blundell |
| 1542 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 1543 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | S: Maintained |
| 1545 | |
| 1546 | ETHERNET BRIDGE |
| 1547 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 1548 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 1549 | L: bridge@lists.linux-foundation.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | W: http://bridge.sourceforge.net/ |
| 1551 | S: Maintained |
| 1552 | |
| 1553 | ETHERTEAM 16I DRIVER |
| 1554 | P: Mika Kuoppala |
| 1555 | M: miku@iki.fi |
| 1556 | S: Maintained |
| 1557 | |
| 1558 | EXT2 FILE SYSTEM |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 1559 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | S: Maintained |
| 1561 | |
| 1562 | EXT3 FILE SYSTEM |
| 1563 | P: Stephen Tweedie, Andrew Morton |
Simon Horman | 588cc70 | 2007-02-20 13:58:06 -0800 | [diff] [blame] | 1564 | M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 1565 | L: linux-ext4@vger.kernel.org |
| 1566 | S: Maintained |
| 1567 | |
| 1568 | EXT4 FILE SYSTEM |
| 1569 | P: Stephen Tweedie, Andrew Morton |
Simon Horman | 588cc70 | 2007-02-20 13:58:06 -0800 | [diff] [blame] | 1570 | M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 1571 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | S: Maintained |
| 1573 | |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 1574 | F71805F HARDWARE MONITORING DRIVER |
| 1575 | P: Jean Delvare |
| 1576 | M: khali@linux-fr.org |
| 1577 | L: lm-sensors@lm-sensors.org |
| 1578 | S: Maintained |
| 1579 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | FARSYNC SYNCHRONOUS DRIVER |
| 1581 | P: Kevin Curtis |
| 1582 | M: kevin.curtis@farsite.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | W: http://www.farsite.co.uk/ |
| 1584 | S: Supported |
| 1585 | |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 1586 | FAULT INJECTION SUPPORT |
| 1587 | P: Akinobu Mita |
| 1588 | M: akinobu.mita@gmail.com |
| 1589 | S: Supported |
| 1590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | FRAMEBUFFER LAYER |
| 1592 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 1593 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1594 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | W: http://linux-fbdev.sourceforge.net/ |
| 1596 | S: Maintained |
| 1597 | |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 1598 | FREESCALE DMA DRIVER |
| 1599 | P; Zhang Wei |
| 1600 | M: wei.zhang@freescale.com |
| 1601 | L: linuxppc-embedded@ozlabs.org |
| 1602 | L: linux-kernel@vger.kernel.org |
| 1603 | S: Maintained |
| 1604 | |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 1605 | FREESCALE SOC FS_ENET DRIVER |
| 1606 | P: Pantelis Antoniou |
| 1607 | M: pantelis.antoniou@gmail.com |
| 1608 | P: Vitaly Bordug |
| 1609 | M: vbordug@ru.mvista.com |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 1610 | L: linuxppc-dev@ozlabs.org |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 1611 | L: netdev@vger.kernel.org |
| 1612 | S: Maintained |
| 1613 | |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 1614 | FREESCALE HIGHSPEED USB DEVICE DRIVER |
| 1615 | P: Li Yang |
| 1616 | M: leoli@freescale.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 1617 | L: linux-usb@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 1618 | L: linuxppc-dev@ozlabs.org |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 1619 | S: Maintained |
| 1620 | |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 1621 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
| 1622 | P: Li Yang |
| 1623 | M: leoli@freescale.com |
| 1624 | L: netdev@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 1625 | L: linuxppc-dev@ozlabs.org |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 1626 | S: Maintained |
| 1627 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | FILE LOCKING (flock() and fcntl()/lockf()) |
| 1629 | P: Matthew Wilcox |
| 1630 | M: matthew@wil.cx |
| 1631 | L: linux-fsdevel@vger.kernel.org |
| 1632 | S: Maintained |
| 1633 | |
| 1634 | FILESYSTEMS (VFS and infrastructure) |
| 1635 | P: Alexander Viro |
viro@ZenIV.linux.org.uk | 8412205 | 2005-09-06 19:35:49 +0100 | [diff] [blame] | 1636 | M: viro@zeniv.linux.org.uk |
Paul Menage | b9cf92e | 2008-02-14 19:31:24 -0800 | [diff] [blame] | 1637 | L: linux-fsdevel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | S: Maintained |
| 1639 | |
Stefan Richter | f148e20 | 2008-01-12 12:32:44 +0100 | [diff] [blame] | 1640 | FIREWIRE SUBSYSTEM (drivers/firewire, <linux/firewire*.h>) |
Stefan Richter | b327447 | 2007-05-30 20:44:52 -0400 | [diff] [blame] | 1641 | P: Kristian Hoegsberg, Stefan Richter |
| 1642 | M: krh@redhat.com, stefanr@s5r6.in-berlin.de |
| 1643 | L: linux1394-devel@lists.sourceforge.net |
| 1644 | W: http://www.linux1394.org/ |
| 1645 | T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git |
| 1646 | S: Maintained |
| 1647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | FIRMWARE LOADER (request_firmware) |
| 1649 | L: linux-kernel@vger.kernel.org |
| 1650 | S: Orphan |
| 1651 | |
| 1652 | FPU EMULATOR |
| 1653 | P: Bill Metzenthen |
| 1654 | M: billm@suburbia.net |
| 1655 | W: http://suburbia.net/~billm/floating-point/emulator/ |
| 1656 | S: Maintained |
| 1657 | |
| 1658 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
| 1659 | P: Mike McLagan |
| 1660 | M: mike.mclagan@linux.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 1661 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | S: Maintained |
| 1663 | |
| 1664 | FREEVXFS FILESYSTEM |
| 1665 | P: Christoph Hellwig |
| 1666 | M: hch@infradead.org |
| 1667 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
| 1668 | S: Maintained |
| 1669 | |
David Howells | 5ab7ffe | 2007-04-10 15:10:45 +0100 | [diff] [blame] | 1670 | FUJITSU FR-V (FRV) PORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | P: David Howells |
| 1672 | M: dhowells@redhat.com |
| 1673 | S: Maintained |
| 1674 | |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 1675 | FUSE: FILESYSTEM IN USERSPACE |
| 1676 | P: Miklos Szeredi |
| 1677 | M: miklos@szeredi.hu |
| 1678 | L: fuse-devel@lists.sourceforge.net |
| 1679 | W: http://fuse.sourceforge.net/ |
| 1680 | S: Maintained |
| 1681 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
| 1683 | P: Rik Faith |
| 1684 | M: faith@cs.unc.edu |
| 1685 | L: linux-scsi@vger.kernel.org |
| 1686 | S: Odd fixes (e.g., new signatures) |
| 1687 | |
| 1688 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
| 1689 | P: Achim Leubner |
| 1690 | M: achim_leubner@adaptec.com |
| 1691 | L: linux-scsi@vger.kernel.org |
| 1692 | W: http://www.icp-vortex.com/ |
| 1693 | S: Supported |
| 1694 | |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 1695 | GENERIC GPIO I2C DRIVER |
| 1696 | P: Haavard Skinnemoen |
| 1697 | M: hskinnemoen@atmel.com |
| 1698 | S: Supported |
| 1699 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS |
| 1701 | P: Krzysztof Halasa |
| 1702 | M: khc@pm.waw.pl |
| 1703 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
| 1704 | S: Maintained |
| 1705 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1706 | GFS2 FILE SYSTEM |
| 1707 | P: Steven Whitehouse |
| 1708 | M: swhiteho@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 1709 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1710 | W: http://sources.redhat.com/cluster/ |
Steven Whitehouse | 370298e | 2006-10-12 15:40:05 -0400 | [diff] [blame] | 1711 | T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git |
| 1712 | T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1713 | S: Supported |
| 1714 | |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 1715 | GIGASET ISDN DRIVERS |
| 1716 | P: Hansjoerg Lipp |
| 1717 | M: hjlipp@web.de |
| 1718 | P: Tilman Schmidt |
| 1719 | M: tilman@imap.cc |
| 1720 | L: gigaset307x-common@lists.sourceforge.net |
| 1721 | W: http://gigaset307x.sourceforge.net/ |
| 1722 | S: Maintained |
| 1723 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 1724 | HARDWARE MONITORING |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 1725 | P: Mark M. Hoffman |
| 1726 | M: mhoffman@lightlink.com |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 1727 | L: lm-sensors@lm-sensors.org |
Jean Delvare | 595142e | 2006-12-06 20:39:36 -0800 | [diff] [blame] | 1728 | W: http://www.lm-sensors.org/ |
Mark M. Hoffman | a1aa5a7 | 2007-10-07 14:45:26 -0400 | [diff] [blame] | 1729 | T: git lm-sensors.org:/kernel/mhoffman/hwmon-2.6.git testing |
| 1730 | T: git lm-sensors.org:/kernel/mhoffman/hwmon-2.6.git release |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 1731 | S: Maintained |
| 1732 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 1733 | HARDWARE RANDOM NUMBER GENERATOR CORE |
Michael Buesch | 4185108 | 2008-02-23 15:23:42 -0800 | [diff] [blame] | 1734 | S: Orphaned |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 1735 | |
Robert Love | 860e1d6 | 2005-08-31 23:57:59 -0400 | [diff] [blame] | 1736 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
| 1737 | P: Robert Love |
| 1738 | M: rlove@rlove.org |
| 1739 | M: linux-kernel@vger.kernel.org |
| 1740 | W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/ |
| 1741 | S: Maintained |
| 1742 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | HARMONY SOUND DRIVER |
| 1744 | P: Kyle McMartin |
| 1745 | M: kyle@parisc-linux.org |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 1746 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | S: Maintained |
| 1748 | |
| 1749 | HAYES ESP SERIAL DRIVER |
| 1750 | P: Andrew J. Robinson |
| 1751 | M: arobinso@nyx.net |
| 1752 | L: linux-kernel@vger.kernel.org |
| 1753 | W: http://www.nyx.net/~arobinso |
| 1754 | S: Maintained |
| 1755 | |
| 1756 | HFS FILESYSTEM |
| 1757 | P: Roman Zippel |
| 1758 | M: zippel@linux-m68k.org |
| 1759 | L: linux-kernel@vger.kernel.org |
| 1760 | S: Maintained |
| 1761 | |
| 1762 | HGA FRAMEBUFFER DRIVER |
| 1763 | P: Ferenc Bakonyi |
| 1764 | M: fero@drama.obuda.kando.hu |
| 1765 | L: linux-nvidia@lists.surfsouth.com |
| 1766 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
| 1767 | S: Maintained |
| 1768 | |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 1769 | HID CORE LAYER |
| 1770 | P: Jiri Kosina |
| 1771 | M: jkosina@suse.cz |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 1772 | L: linux-input@vger.kernel.org |
Jiri Kosina | a4dff39 | 2007-02-27 17:40:09 +0100 | [diff] [blame] | 1773 | T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 1774 | S: Maintained |
| 1775 | |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 1776 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
| 1777 | P: Thomas Gleixner |
| 1778 | M: tglx@linutronix.de |
| 1779 | L: linux-kernel@vger.kernel.org |
| 1780 | S: Maintained |
| 1781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | HIGH-SPEED SCC DRIVER FOR AX.25 |
| 1783 | P: Klaus Kudielka |
| 1784 | M: klaus.kudielka@ieee.org |
| 1785 | L: linux-hams@vger.kernel.org |
| 1786 | W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ |
| 1787 | S: Maintained |
| 1788 | |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 1789 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
| 1790 | P: HighPoint Linux Team |
| 1791 | M: linux@highpoint-tech.com |
| 1792 | W: http://www.highpoint-tech.com |
| 1793 | S: Supported |
| 1794 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | HIPPI |
| 1796 | P: Jes Sorensen |
| 1797 | M: jes@trained-monkey.org |
| 1798 | L: linux-hippi@sunsite.dk |
| 1799 | S: Maintained |
| 1800 | |
| 1801 | HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA |
| 1802 | P: Chirag Kantharia |
| 1803 | M: chirag.kantharia@hp.com |
| 1804 | L: iss_storagedev@hp.com |
| 1805 | S: Maintained |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 1806 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | HEWLETT-PACKARD SMART2 RAID DRIVER |
| 1808 | P: Chirag Kantharia |
| 1809 | M: chirag.kantharia@hp.com |
| 1810 | L: iss_storagedev@hp.com |
| 1811 | S: Maintained |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 1812 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
| 1814 | P: Mike Miller |
| 1815 | M: mike.miller@hp.com |
| 1816 | L: iss_storagedev@hp.com |
| 1817 | S: Supported |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 1818 | |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 1819 | HOST AP DRIVER |
| 1820 | P: Jouni Malinen |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 1821 | M: j@w1.fi |
| 1822 | L: hostap@shmoo.com (subscribers-only) |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 1823 | L: linux-wireless@vger.kernel.org |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 1824 | W: http://hostap.epitest.fi/ |
| 1825 | S: Maintained |
| 1826 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
| 1828 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 1829 | M: perex@perex.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | S: Maintained |
| 1831 | |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 1832 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
| 1833 | P: Carlos Corbacho |
| 1834 | M: carlos@strangeworlds.co.uk |
| 1835 | S: Odd Fixes |
| 1836 | |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 1837 | HPET: High Precision Event Timers driver (hpet.c) |
| 1838 | P: Clemens Ladisch |
| 1839 | M: clemens@ladisch.de |
| 1840 | S: Maintained |
| 1841 | |
| 1842 | HPET: i386 |
| 1843 | P: Venkatesh Pallipadi (Venki) |
| 1844 | M: venkatesh.pallipadi@intel.com |
| 1845 | S: Maintained |
| 1846 | |
| 1847 | HPET: x86_64 |
Andi Kleen | 8bd0983 | 2007-10-13 01:01:08 +0200 | [diff] [blame] | 1848 | P: Vojtech Pavlik |
| 1849 | M: vojtech@suse.cz |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 1850 | S: Maintained |
| 1851 | |
| 1852 | HPET: ACPI hpet.c |
| 1853 | P: Bob Picco |
| 1854 | M: bob.picco@hp.com |
| 1855 | S: Maintained |
| 1856 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | HPFS FILESYSTEM |
| 1858 | P: Mikulas Patocka |
| 1859 | M: mikulas@artax.karlin.mff.cuni.cz |
| 1860 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
| 1861 | S: Maintained |
| 1862 | |
| 1863 | HUGETLB FILESYSTEM |
| 1864 | P: William Irwin |
| 1865 | M: wli@holomorphy.com |
| 1866 | S: Maintained |
| 1867 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 1868 | I2C/SMBUS STUB DRIVER |
| 1869 | P: Mark M. Hoffman |
| 1870 | M: mhoffman@lightlink.com |
| 1871 | L: lm-sensors@lm-sensors.org |
| 1872 | S: Maintained |
| 1873 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 1874 | I2C SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | P: Jean Delvare |
| 1876 | M: khali@linux-fr.org |
Jean Delvare | 5d925fe | 2006-07-01 17:14:32 +0200 | [diff] [blame] | 1877 | L: i2c@lm-sensors.org |
Jean Delvare | 595142e | 2006-12-06 20:39:36 -0800 | [diff] [blame] | 1878 | T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | S: Maintained |
| 1880 | |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 1881 | I2C-TINY-USB DRIVER |
| 1882 | P: Till Harbaum |
| 1883 | M: till@harbaum.org |
| 1884 | L: i2c@lm-sensors.org |
| 1885 | T: http://www.harbaum.org/till/i2c_tiny_usb |
| 1886 | S: Maintained |
| 1887 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | i386 BOOT CODE |
H. Peter Anvin | 7f1291f | 2007-07-11 12:18:26 -0700 | [diff] [blame] | 1889 | P: H. Peter Anvin |
| 1890 | M: hpa@zytor.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | L: Linux-Kernel@vger.kernel.org |
| 1892 | S: Maintained |
| 1893 | |
| 1894 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | P: H. Peter Anvin |
| 1896 | M: hpa@zytor.com |
H. Peter Anvin | 72af61c | 2007-07-13 16:26:55 -0700 | [diff] [blame] | 1897 | T: git.kernel.org:/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | S: Maintained |
| 1899 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | IA64 (Itanium) PLATFORM |
| 1901 | P: Tony Luck |
| 1902 | M: tony.luck@intel.com |
| 1903 | L: linux-ia64@vger.kernel.org |
| 1904 | W: http://www.ia64-linux.org/ |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1905 | T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1906 | S: Maintained |
| 1907 | |
| 1908 | SN-IA64 (Itanium) SUB-PLATFORM |
Greg Edwards | e5ee7dd | 2006-01-18 10:21:59 -0600 | [diff] [blame] | 1909 | P: Jes Sorensen |
| 1910 | M: jes@sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1911 | L: linux-altix@sgi.com |
| 1912 | L: linux-ia64@vger.kernel.org |
| 1913 | W: http://www.sgi.com/altix |
| 1914 | S: Maintained |
| 1915 | |
| 1916 | IBM MCA SCSI SUBSYSTEM DRIVER |
| 1917 | P: Michael Lang |
| 1918 | M: langa2@kph.uni-mainz.de |
| 1919 | W: http://www.uni-mainz.de/~langm000/linux.html |
| 1920 | S: Maintained |
| 1921 | |
| 1922 | IBM Power Linux RAID adapter |
| 1923 | P: Brian King |
| 1924 | M: brking@us.ibm.com |
| 1925 | S: Supported |
| 1926 | |
| 1927 | IBM ServeRAID RAID DRIVER |
| 1928 | P: Jack Hammer |
| 1929 | P: Dave Jeffery |
| 1930 | M: ipslinux@adaptec.com |
| 1931 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 1932 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 1934 | IDE SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | P: Bartlomiej Zolnierkiewicz |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 1936 | M: bzolnier@gmail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | L: linux-ide@vger.kernel.org |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 1938 | T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | S: Maintained |
| 1940 | |
| 1941 | IDE/ATAPI CDROM DRIVER |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 1942 | P: Borislav Petkov |
Borislav Petkov | ef70916 | 2008-02-19 01:41:25 +0100 | [diff] [blame] | 1943 | M: petkovbb@gmail.com |
Jens Axboe | 9c5b0ce | 2007-01-03 18:15:20 +0100 | [diff] [blame] | 1944 | L: linux-ide@vger.kernel.org |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 1945 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | |
| 1947 | IDE/ATAPI FLOPPY DRIVERS |
| 1948 | P: Paul Bristow |
| 1949 | M: Paul Bristow <paul@paulbristow.net> |
| 1950 | W: http://paulbristow.net/linux/idefloppy.html |
| 1951 | L: linux-kernel@vger.kernel.org |
| 1952 | S: Maintained |
| 1953 | |
| 1954 | IDE/ATAPI TAPE DRIVERS |
| 1955 | P: Gadi Oxman |
| 1956 | M: Gadi Oxman <gadio@netvision.net.il> |
| 1957 | L: linux-kernel@vger.kernel.org |
| 1958 | S: Maintained |
| 1959 | |
Bartlomiej Zolnierkiewicz | f72abc2 | 2007-09-19 22:08:56 +0200 | [diff] [blame] | 1960 | IDE-SCSI DRIVER |
| 1961 | L: linux-ide@vger.kernel.org |
| 1962 | L: linux-scsi@vger.kernel.org |
| 1963 | S: Orphan |
| 1964 | |
Stefan Richter | f148e20 | 2008-01-12 12:32:44 +0100 | [diff] [blame] | 1965 | IEEE 1394 SUBSYSTEM (drivers/ieee1394) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | P: Ben Collins |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 1967 | M: ben.collins@ubuntu.com |
Stefan Richter | 87730d0 | 2006-09-16 12:24:00 +0200 | [diff] [blame] | 1968 | P: Stefan Richter |
| 1969 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | L: linux1394-devel@lists.sourceforge.net |
| 1971 | W: http://www.linux1394.org/ |
Stefan Richter | 87730d0 | 2006-09-16 12:24:00 +0200 | [diff] [blame] | 1972 | T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 | S: Maintained |
| 1974 | |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 1975 | IEEE 1394 RAW I/O DRIVER (raw1394) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | P: Dan Dennedy |
| 1977 | M: dan@dennedy.org |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 1978 | P: Stefan Richter |
| 1979 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | L: linux1394-devel@lists.sourceforge.net |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 1981 | S: Maintained |
| 1982 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | IMS TWINTURBO FRAMEBUFFER DRIVER |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1984 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Paul Mundt | 843393d | 2007-11-19 13:11:04 +0900 | [diff] [blame] | 1985 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | |
| 1987 | INFINIBAND SUBSYSTEM |
| 1988 | P: Roland Dreier |
Roland Dreier | 21c121c | 2005-06-27 14:36:47 -0700 | [diff] [blame] | 1989 | M: rolandd@cisco.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | P: Sean Hefty |
Sean Hefty | ed96f2470 | 2008-01-02 12:00:24 -0800 | [diff] [blame] | 1991 | M: sean.hefty@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | P: Hal Rosenstock |
Roland Dreier | cec7c89 | 2007-07-12 15:59:36 -0700 | [diff] [blame] | 1993 | M: hal.rosenstock@gmail.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 1994 | L: general@lists.openfabrics.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | W: http://www.openib.org/ |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1996 | T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | S: Supported |
| 1998 | |
Robert P. J. Day | 2f1d076 | 2007-07-10 00:38:18 -0400 | [diff] [blame] | 1999 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
Vojtech Pavlik | 664d22a | 2005-12-13 17:03:36 -0800 | [diff] [blame] | 2000 | P: Dmitry Torokhov |
Dmitry Torokhov | 62f7caf | 2006-06-26 01:47:56 -0400 | [diff] [blame] | 2001 | M: dmitry.torokhov@gmail.com |
| 2002 | M: dtor@mail.ru |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 2003 | L: linux-input@vger.kernel.org |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2004 | T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | S: Maintained |
| 2006 | |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2007 | INOTIFY |
Cal Peake | 18b36c71 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2008 | P: John McCutchan |
| 2009 | M: ttb@tentacle.dhs.org |
| 2010 | P: Robert Love |
| 2011 | M: rml@novell.com |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2012 | L: linux-kernel@vger.kernel.org |
| 2013 | S: Maintained |
| 2014 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2015 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2016 | P: Sylvain Meyer |
| 2017 | M: sylvain.meyer@worldonline.fr |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2018 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2019 | S: Maintained |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2020 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2021 | INTEL 810/815 FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2022 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2023 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2024 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2025 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | INTEL IA32 MICROCODE UPDATE SUPPORT |
| 2028 | P: Tigran Aivazian |
Tigran Aivazian | b5b9df6 | 2006-11-08 17:44:46 -0800 | [diff] [blame] | 2029 | M: tigran@aivazian.fsnet.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2030 | S: Maintained |
| 2031 | |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2032 | INTEL I/OAT DMA DRIVER |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 2033 | P: Maciej Sosnowski |
| 2034 | M: maciej.sosnowski@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2035 | L: linux-kernel@vger.kernel.org |
| 2036 | S: Supported |
| 2037 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2038 | INTEL IOP-ADMA DMA DRIVER |
| 2039 | P: Dan Williams |
| 2040 | M: dan.j.williams@intel.com |
| 2041 | L: linux-kernel@vger.kernel.org |
| 2042 | S: Supported |
| 2043 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2044 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
| 2045 | P: Deepak Saxena |
| 2046 | M: dsaxena@plexity.net |
| 2047 | S: Maintained |
| 2048 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2049 | INTEL IXP2000 ETHERNET DRIVER |
| 2050 | P: Lennert Buytenhek |
| 2051 | M: kernel@wantstofly.org |
| 2052 | L: netdev@vger.kernel.org |
| 2053 | S: Maintained |
| 2054 | |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2055 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe) |
Auke Kok | 2042465 | 2008-01-07 21:47:25 -0800 | [diff] [blame] | 2056 | P: Auke Kok |
| 2057 | M: auke-jan.h.kok@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | P: Jesse Brandeburg |
| 2059 | M: jesse.brandeburg@intel.com |
Jesse Brandeburg | add1878 | 2006-03-14 14:52:13 -0800 | [diff] [blame] | 2060 | P: Jeff Kirsher |
| 2061 | M: jeffrey.t.kirsher@intel.com |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2062 | P: Bruce Allan |
| 2063 | M: bruce.w.allan@intel.com |
Auke Kok | 2042465 | 2008-01-07 21:47:25 -0800 | [diff] [blame] | 2064 | P: John Ronciak |
| 2065 | M: john.ronciak@intel.com |
Auke Kok | dcd01fa | 2007-03-06 08:58:06 -0800 | [diff] [blame] | 2066 | L: e1000-devel@lists.sourceforge.net |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2067 | W: http://e1000.sourceforge.net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | S: Supported |
| 2069 | |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2070 | INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2071 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2072 | M: yi.zhu@intel.com |
| 2073 | P: James Ketrenos |
| 2074 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2075 | P: Reinette Chatre |
| 2076 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2077 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 2078 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 2079 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2080 | W: http://ipw2100.sourceforge.net |
| 2081 | S: Supported |
| 2082 | |
| 2083 | INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2084 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2085 | M: yi.zhu@intel.com |
| 2086 | P: James Ketrenos |
| 2087 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2088 | P: Reinette Chatre |
| 2089 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2090 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 2091 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 2092 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2093 | W: http://ipw2200.sourceforge.net |
| 2094 | S: Supported |
| 2095 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2096 | INTEL WIRELESS WIFI LINK (iwlwifi) |
| 2097 | P: Zhu Yi |
| 2098 | M: yi.zhu@intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2099 | P: Reinette Chatre |
| 2100 | M: reinette.chatre@intel.com |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2101 | L: linux-wireless@vger.kernel.org |
| 2102 | L: ipw3945-devel@lists.sourceforge.net |
| 2103 | W: http://intellinuxwireless.org |
| 2104 | T: git git://intellinuxwireless.org/repos/iwlwifi |
| 2105 | S: Supported |
| 2106 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 2107 | IOC3 ETHERNET DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | P: Ralf Baechle |
| 2109 | M: ralf@linux-mips.org |
| 2110 | L: linux-mips@linux-mips.org |
| 2111 | S: Maintained |
| 2112 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 2113 | IOC3 SERIAL DRIVER |
| 2114 | P: Pat Gefre |
| 2115 | M: pfg@sgi.com |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 2116 | L: linux-mips@linux-mips.org |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 2117 | S: Maintained |
| 2118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | IP MASQUERADING: |
| 2120 | P: Juanjo Ciarlante |
| 2121 | M: jjciarla@raiz.uncu.edu.ar |
| 2122 | S: Maintained |
| 2123 | |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 2124 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
| 2125 | P: Francois Romieu |
| 2126 | M: romieu@fr.zoreil.com |
| 2127 | P: Sorbica Shieh |
| 2128 | M: sorbica@icplus.com.tw |
| 2129 | P: Jesse Huang |
| 2130 | M: jesse@icplus.com.tw |
| 2131 | L: netdev@vger.kernel.org |
| 2132 | S: Maintained |
| 2133 | |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 2134 | IPATH DRIVER: |
Arthur Jones | 18b8c8f | 2008-02-29 10:13:37 -0800 | [diff] [blame] | 2135 | P: Ralph Campbell |
Arthur Jones | f42b647 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 2136 | M: infinipath@qlogic.com |
| 2137 | L: general@lists.openfabrics.org |
| 2138 | T: git git://git.qlogic.com/ipath-linux-2.6 |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 2139 | S: Supported |
| 2140 | |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 2141 | IPMI SUBSYSTEM |
| 2142 | P: Corey Minyard |
| 2143 | M: minyard@acm.org |
| 2144 | L: openipmi-developer@lists.sourceforge.net |
| 2145 | W: http://openipmi.sourceforge.net/ |
| 2146 | S: Supported |
| 2147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | IPX NETWORK LAYER |
| 2149 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 2150 | M: acme@ghostprotocols.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2151 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | S: Maintained |
| 2153 | |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 2154 | IPWIRELES DRIVER |
| 2155 | P: Jiri Kosina |
| 2156 | M: jkosina@suse.cz |
| 2157 | P: David Sterba |
| 2158 | M: dsterba@suse.cz |
| 2159 | S: Maintained |
| 2160 | T: git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git |
| 2161 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2162 | IRDA SUBSYSTEM |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 2163 | P: Samuel Ortiz |
| 2164 | M: samuel@sortiz.org |
Olaf Hering | a2ac953 | 2005-07-12 13:58:35 -0700 | [diff] [blame] | 2165 | L: irda-users@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | W: http://irda.sourceforge.net/ |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 2167 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 2169 | ISCSI |
| 2170 | P: Mike Christie |
| 2171 | M: michaelc@cs.wisc.edu |
| 2172 | L: open-iscsi@googlegroups.com |
| 2173 | W: www.open-iscsi.org |
| 2174 | T: git kernel.org:/pub/scm/linux/kernel/mnc/linux-2.6-iscsi.git |
| 2175 | S: Maintained |
| 2176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | ISAPNP |
| 2178 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 2179 | M: perex@perex.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | S: Maintained |
| 2181 | |
| 2182 | ISDN SUBSYSTEM |
| 2183 | P: Karsten Keil |
| 2184 | M: kkeil@suse.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | L: isdn4linux@listserv.isdn4linux.de |
| 2186 | W: http://www.isdn4linux.de |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2187 | T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | S: Maintained |
| 2189 | |
| 2190 | ISDN SUBSYSTEM (Eicon active card driver) |
| 2191 | P: Armin Schindler |
| 2192 | M: mac@melware.de |
| 2193 | L: isdn4linux@listserv.isdn4linux.de |
| 2194 | W: http://www.melware.de |
| 2195 | S: Maintained |
| 2196 | |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 2197 | IVTV VIDEO4LINUX DRIVER |
| 2198 | P: Hans Verkuil |
| 2199 | M: hverkuil@xs4all.nl |
| 2200 | L: ivtv-devel@ivtvdriver.org |
| 2201 | L: ivtv-users@ivtvdriver.org |
| 2202 | L: video4linux-list@redhat.com |
| 2203 | W: http://www.ivtvdriver.org |
| 2204 | S: Maintained |
| 2205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
| 2207 | P: David Woodhouse |
| 2208 | M: dwmw2@infradead.org |
David Woodhouse | 6d85d06 | 2007-10-27 10:39:48 -0400 | [diff] [blame] | 2209 | L: linux-mtd@lists.infradead.org |
| 2210 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | S: Maintained |
| 2212 | |
| 2213 | JFS FILESYSTEM |
| 2214 | P: Dave Kleikamp |
| 2215 | M: shaggy@austin.ibm.com |
| 2216 | L: jfs-discussion@lists.sourceforge.net |
| 2217 | W: http://jfs.sourceforge.net/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2218 | T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | S: Supported |
| 2220 | |
Josh Triplett | de456d3 | 2006-07-30 03:04:00 -0700 | [diff] [blame] | 2221 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 2222 | P: Stephen Tweedie, Andrew Morton |
Simon Horman | 588cc70 | 2007-02-20 13:58:06 -0800 | [diff] [blame] | 2223 | M: sct@redhat.com, akpm@linux-foundation.org |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2224 | L: linux-ext4@vger.kernel.org |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 2225 | S: Maintained |
| 2226 | |
Rudolf Marek | 4660cb3 | 2006-10-08 22:01:26 +0200 | [diff] [blame] | 2227 | K8TEMP HARDWARE MONITORING DRIVER |
| 2228 | P: Rudolf Marek |
| 2229 | M: r.marek@assembler.cz |
| 2230 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | S: Maintained |
| 2232 | |
| 2233 | KCONFIG |
| 2234 | P: Roman Zippel |
| 2235 | M: zippel@linux-m68k.org |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 2236 | L: linux-kbuild@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | S: Maintained |
| 2238 | |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 2239 | KDUMP |
| 2240 | P: Vivek Goyal |
Vivek Goyal | 4200b66c | 2007-12-01 12:16:30 -0800 | [diff] [blame] | 2241 | M: vgoyal@redhat.com |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 2242 | P: Haren Myneni |
| 2243 | M: hbabu@us.ibm.com |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 2244 | L: kexec@lists.infradead.org |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 2245 | L: linux-kernel@vger.kernel.org |
| 2246 | W: http://lse.sourceforge.net/kdump/ |
| 2247 | S: Maintained |
| 2248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | KERNEL AUTOMOUNTER (AUTOFS) |
| 2250 | P: H. Peter Anvin |
| 2251 | M: hpa@zytor.com |
| 2252 | L: autofs@linux.kernel.org |
| 2253 | S: Odd Fixes |
| 2254 | |
| 2255 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
| 2256 | P: Ian Kent |
| 2257 | M: raven@themaw.net |
| 2258 | L: autofs@linux.kernel.org |
| 2259 | S: Maintained |
| 2260 | |
| 2261 | KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | P: Sam Ravnborg |
| 2263 | M: sam@ravnborg.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 2264 | T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 2265 | L: linux-kbuild@vger.kernel.org |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 2266 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2267 | |
| 2268 | KERNEL JANITORS |
| 2269 | P: Several |
maximilian attems | c3000e0 | 2007-07-06 11:17:32 -0700 | [diff] [blame] | 2270 | L: kernel-janitors@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | W: http://www.kerneljanitors.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2272 | S: Maintained |
| 2273 | |
| 2274 | KERNEL NFSD |
Neil Brown | a512cd5 | 2007-07-31 00:37:27 -0700 | [diff] [blame] | 2275 | P: J. Bruce Fields |
| 2276 | M: bfields@fieldses.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | P: Neil Brown |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 2278 | M: neilb@suse.de |
Neil Brown | 16141c0 | 2007-12-11 16:16:12 -0800 | [diff] [blame] | 2279 | L: linux-nfs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | W: http://nfs.sourceforge.net/ |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 2281 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 2283 | KERNEL VIRTUAL MACHINE (KVM) |
| 2284 | P: Avi Kivity |
| 2285 | M: avi@qumranet.com |
| 2286 | L: kvm-devel@lists.sourceforge.net |
| 2287 | W: kvm.sourceforge.net |
| 2288 | S: Supported |
| 2289 | |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 2290 | KERNEL VIRTUAL MACHINE For Itanium(KVM/IA64) |
| 2291 | P: Anthony Xu |
| 2292 | M: anthony.xu@intel.com |
| 2293 | P: Xiantao Zhang |
| 2294 | M: xiantao.zhang@intel.com |
| 2295 | L: kvm-ia64-devel@lists.sourceforge.net |
| 2296 | W: kvm.sourceforge.net |
| 2297 | S: Supported |
| 2298 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 2299 | KEXEC |
| 2300 | P: Eric Biederman |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 2301 | M: ebiederm@xmission.com |
Signed-off-by@vergenet.net":Simon | b7c698f | 2007-10-18 03:04:33 -0700 | [diff] [blame] | 2302 | W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/ |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 2303 | L: linux-kernel@vger.kernel.org |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 2304 | L: kexec@lists.infradead.org |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 2305 | S: Maintained |
| 2306 | |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 2307 | KPROBES |
| 2308 | P: Prasanna S Panchamukhi |
| 2309 | M: prasanna@in.ibm.com |
| 2310 | P: Ananth N Mavinakayanahalli |
| 2311 | M: ananth@in.ibm.com |
| 2312 | P: Anil S Keshavamurthy |
| 2313 | M: anil.s.keshavamurthy@intel.com |
| 2314 | P: David S. Miller |
| 2315 | M: davem@davemloft.net |
| 2316 | L: linux-kernel@vger.kernel.org |
| 2317 | S: Maintained |
| 2318 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2319 | KS0108 LCD CONTROLLER DRIVER |
| 2320 | P: Miguel Ojeda Sandonis |
| 2321 | M: maxextreme@gmail.com |
| 2322 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 6b96862 | 2007-05-08 00:29:54 -0700 | [diff] [blame] | 2323 | W: http://auxdisplay.googlepages.com/ |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2324 | S: Maintained |
| 2325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | LAPB module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | L: linux-x25@vger.kernel.org |
David S. Miller | bf9915c | 2006-07-21 14:55:17 -0700 | [diff] [blame] | 2328 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | |
| 2330 | LASI 53c700 driver for PARISC |
| 2331 | P: James E.J. Bottomley |
| 2332 | M: James.Bottomley@HansenPartnership.com |
| 2333 | L: linux-scsi@vger.kernel.org |
| 2334 | S: Maintained |
| 2335 | |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 2336 | LED SUBSYSTEM |
| 2337 | P: Richard Purdie |
| 2338 | M: rpurdie@rpsys.net |
| 2339 | S: Maintained |
| 2340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | LEGO USB Tower driver |
| 2342 | P: Juergen Stuber |
| 2343 | M: starblue@users.sourceforge.net |
| 2344 | L: legousb-devel@lists.sourceforge.net |
| 2345 | W: http://legousb.sourceforge.net/ |
| 2346 | S: Maintained |
| 2347 | |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 2348 | LGUEST |
| 2349 | P: Rusty Russell |
| 2350 | M: rusty@rustcorp.com.au |
| 2351 | L: lguest@ozlabs.org |
| 2352 | W: http://lguest.ozlabs.org/ |
| 2353 | S: Maintained |
| 2354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2355 | LINUX FOR IBM pSERIES (RS/6000) |
| 2356 | P: Paul Mackerras |
| 2357 | M: paulus@au.ibm.com |
| 2358 | W: http://www.ibm.com/linux/ltc/projects/ppc |
| 2359 | S: Supported |
| 2360 | |
| 2361 | LINUX FOR NCR VOYAGER |
| 2362 | P: James Bottomley |
| 2363 | M: James.Bottomley@HansenPartnership.com |
| 2364 | W: http://www.hansenpartnership.com/voyager |
| 2365 | S: Maintained |
| 2366 | |
| 2367 | LINUX FOR POWERPC |
| 2368 | P: Paul Mackerras |
| 2369 | M: paulus@samba.org |
| 2370 | W: http://www.penguinppc.org/ |
| 2371 | L: linuxppc-dev@ozlabs.org |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2372 | T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2373 | S: Supported |
| 2374 | |
| 2375 | LINUX FOR POWER MACINTOSH |
| 2376 | P: Benjamin Herrenschmidt |
| 2377 | M: benh@kernel.crashing.org |
| 2378 | W: http://www.penguinppc.org/ |
| 2379 | L: linuxppc-dev@ozlabs.org |
| 2380 | S: Maintained |
| 2381 | |
| 2382 | LINUX FOR POWERPC EMBEDDED MPC52XX |
| 2383 | P: Sylvain Munaut |
| 2384 | M: tnt@246tNt.com |
Grant Likely | e1eea9f | 2007-10-09 14:45:26 -0600 | [diff] [blame] | 2385 | P: Grant Likely |
| 2386 | M: grant.likely@secretlab.ca |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | W: http://www.246tNt.com/mpc52xx/ |
| 2388 | W: http://www.penguinppc.org/ |
| 2389 | L: linuxppc-dev@ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2390 | S: Maintained |
| 2391 | |
| 2392 | LINUX FOR POWERPC EMBEDDED PPC4XX |
Josh Boyer | 9a474ff | 2007-09-19 21:19:07 -0500 | [diff] [blame] | 2393 | P: Josh Boyer |
| 2394 | M: jwboyer@linux.vnet.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2395 | P: Matt Porter |
| 2396 | M: mporter@kernel.crashing.org |
| 2397 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2398 | L: linuxppc-dev@ozlabs.org |
Josh Boyer | 9a474ff | 2007-09-19 21:19:07 -0500 | [diff] [blame] | 2399 | T: git kernel.org:/pub/scm/linux/kernel/git/jwboyer/powerpc.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | S: Maintained |
| 2401 | |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 2402 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
| 2403 | P: Grant Likely |
| 2404 | M: grant.likely@secretlab.ca |
Grant Likely | f210d43 | 2007-10-03 23:24:52 -0600 | [diff] [blame] | 2405 | W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 2406 | L: linuxppc-dev@ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2407 | S: Maintained |
| 2408 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 2409 | LINUX FOR POWERPC BOOT CODE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2410 | P: Tom Rini |
| 2411 | M: trini@kernel.crashing.org |
| 2412 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2413 | L: linuxppc-dev@ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2414 | S: Maintained |
| 2415 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 2416 | LINUX FOR POWERPC EMBEDDED PPC8XX |
Marcelo Tosatti | dba5baf | 2007-09-10 18:46:01 -0400 | [diff] [blame] | 2417 | P: Vitaly Bordug |
| 2418 | M: vitb@kernel.crashing.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 2419 | P: Marcelo Tosatti |
Marcelo Tosatti | 2e367a8 | 2006-05-15 09:44:08 -0700 | [diff] [blame] | 2420 | M: marcelo@kvack.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 2421 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2422 | L: linuxppc-dev@ozlabs.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 2423 | S: Maintained |
| 2424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2426 | P: Kumar Gala |
| 2427 | M: galak@kernel.crashing.org |
| 2428 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2429 | L: linuxppc-dev@ozlabs.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2430 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2431 | |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 2432 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
| 2433 | P: Olof Johansson |
| 2434 | M: olof@lixom.net |
| 2435 | W: http://www.pasemi.com/ |
| 2436 | L: linuxppc-dev@ozlabs.org |
| 2437 | S: Supported |
| 2438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | LLC (802.2) |
| 2440 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 2441 | M: acme@ghostprotocols.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2442 | S: Maintained |
| 2443 | |
| 2444 | LINUX FOR 64BIT POWERPC |
| 2445 | P: Paul Mackerras |
| 2446 | M: paulus@samba.org |
| 2447 | M: paulus@au.ibm.com |
| 2448 | P: Anton Blanchard |
| 2449 | M: anton@samba.org |
| 2450 | M: anton@au.ibm.com |
Arthur Othieno | 6d923f9 | 2006-05-19 06:22:23 -0400 | [diff] [blame] | 2451 | W: http://www.penguinppc.org/ppc64/ |
Stephen Rothwell | 1d04981 | 2006-03-22 11:26:58 +1100 | [diff] [blame] | 2452 | L: linuxppc-dev@ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | S: Supported |
| 2454 | |
| 2455 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
| 2456 | P: Chris Wright |
Chris Wright | 692a206 | 2006-03-11 03:27:19 -0800 | [diff] [blame] | 2457 | M: chrisw@sous-sol.org |
Chris Wright | 1a4520b | 2006-03-11 03:27:20 -0800 | [diff] [blame] | 2458 | L: linux-security-module@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2459 | W: http://lsm.immunix.org |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2460 | T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2461 | S: Supported |
| 2462 | |
| 2463 | LM83 HARDWARE MONITOR DRIVER |
| 2464 | P: Jean Delvare |
| 2465 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 2466 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | S: Maintained |
| 2468 | |
| 2469 | LM90 HARDWARE MONITOR DRIVER |
| 2470 | P: Jean Delvare |
| 2471 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 2472 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2473 | S: Maintained |
| 2474 | |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 2475 | LOCKDEP AND LOCKSTAT |
| 2476 | P: Peter Zijlstra |
| 2477 | M: peterz@infradead.org |
| 2478 | P: Ingo Molnar |
| 2479 | M: mingo@redhat.com |
| 2480 | L: linux-kernel@vger.kernel.org |
| 2481 | T: git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git |
| 2482 | S: Maintained |
| 2483 | |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 2484 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2485 | P: Richard Russon (FlatCap) |
| 2486 | M: ldm@flatcap.org |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 2487 | L: linux-ntfs-dev@lists.sourceforge.net |
| 2488 | W: http://www.linux-ntfs.org/content/view/19/37/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2489 | S: Maintained |
| 2490 | |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 2491 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
| 2492 | P: Eric Moore |
Eric Moore | d8a82d7 | 2006-12-29 16:47:43 -0800 | [diff] [blame] | 2493 | M: Eric.Moore@lsi.com |
| 2494 | M: support@lsi.com |
Eric Moore | cec744f | 2007-09-14 19:08:08 -0600 | [diff] [blame] | 2495 | L: DL-MPTFusionLinux@lsi.com |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 2496 | L: linux-scsi@vger.kernel.org |
| 2497 | W: http://www.lsilogic.com/support |
| 2498 | S: Supported |
| 2499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
| 2501 | P: Matthew Wilcox |
| 2502 | M: matthew@wil.cx |
| 2503 | L: linux-scsi@vger.kernel.org |
| 2504 | S: Maintained |
| 2505 | |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 2506 | M32R ARCHITECTURE |
| 2507 | P: Hirokazu Takata |
| 2508 | M: takata@linux-m32r.org |
| 2509 | L: linux-m32r@ml.linux-m32r.org |
| 2510 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
| 2511 | W: http://www.linux-m32r.org/ |
| 2512 | S: Maintained |
| 2513 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | M68K ARCHITECTURE |
| 2515 | P: Geert Uytterhoeven |
| 2516 | M: geert@linux-m68k.org |
| 2517 | P: Roman Zippel |
| 2518 | M: zippel@linux-m68k.org |
| 2519 | L: linux-m68k@lists.linux-m68k.org |
| 2520 | W: http://www.linux-m68k.org/ |
| 2521 | W: http://linux-m68k-cvs.ubb.ca/ |
| 2522 | S: Maintained |
| 2523 | |
| 2524 | M68K ON APPLE MACINTOSH |
| 2525 | P: Joshua Thompson |
| 2526 | M: funaho@jurai.org |
| 2527 | W: http://www.mac.linux-m68k.org/ |
Finn Thain | 9bb9f22 | 2007-11-18 11:10:05 +0100 | [diff] [blame] | 2528 | L: linux-m68k@lists.linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | S: Maintained |
| 2530 | |
| 2531 | M68K ON HP9000/300 |
| 2532 | P: Philip Blundell |
| 2533 | M: philb@gnu.org |
| 2534 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
| 2535 | S: Maintained |
| 2536 | |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 2537 | MAC80211 |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 2538 | P: Michael Wu |
| 2539 | M: flamingice@sourmilk.net |
Johannes Berg | 31c7cec | 2007-10-23 17:05:25 +0200 | [diff] [blame] | 2540 | P: Johannes Berg |
| 2541 | M: johannes@sipsolutions.net |
| 2542 | P: Jiri Benc |
| 2543 | M: jbenc@suse.cz |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 2544 | L: linux-wireless@vger.kernel.org |
| 2545 | W: http://linuxwireless.org/ |
Johannes Berg | 31c7cec | 2007-10-23 17:05:25 +0200 | [diff] [blame] | 2546 | T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 2547 | S: Maintained |
| 2548 | |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 2549 | MAC80211 PID RATE CONTROL |
| 2550 | P: Stefano Brivio |
| 2551 | M: stefano.brivio@polimi.it |
| 2552 | P: Mattias Nissler |
| 2553 | M: mattias.nissler@gmx.de |
| 2554 | L: linux-wireless@vger.kernel.org |
| 2555 | W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID |
| 2556 | T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
| 2557 | S: Maintained |
| 2558 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 2559 | MACVLAN DRIVER |
| 2560 | P: Patrick McHardy |
| 2561 | M: kaber@trash.net |
| 2562 | L: netdev@vger.kernel.org |
| 2563 | S: Maintained |
| 2564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | MARVELL YUKON / SYSKONNECT DRIVER |
| 2566 | P: Mirko Lindner |
| 2567 | M: mlindner@syskonnect.de |
| 2568 | P: Ralph Roesler |
| 2569 | M: rroesler@syskonnect.de |
| 2570 | W: http://www.syskonnect.com |
| 2571 | S: Supported |
| 2572 | |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 2573 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2574 | P: Michael Kerrisk |
Michael Kerrisk | 1d7f502 | 2007-10-16 23:30:31 -0700 | [diff] [blame] | 2575 | M: mtk.manpages@gmail.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2576 | W: ftp://ftp.kernel.org/pub/linux/docs/manpages |
| 2577 | S: Maintained |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 2578 | |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 2579 | MARVELL LIBERTAS WIRELESS DRIVER |
| 2580 | P: Dan Williams |
| 2581 | M: dcbw@redhat.com |
| 2582 | L: libertas-dev@lists.infradead.org |
| 2583 | S: Maintained |
| 2584 | |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 2585 | MARVELL MV643XX ETHERNET DRIVER |
| 2586 | P: Dale Farnsworth |
| 2587 | M: dale@farnsworth.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2588 | P: Manish Lachwani |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 2589 | M: mlachwani@mvista.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2590 | L: netdev@vger.kernel.org |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 2591 | S: Odd Fixes for 2.4; Maintained for 2.6. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | |
| 2593 | MATROX FRAMEBUFFER DRIVER |
| 2594 | P: Petr Vandrovec |
| 2595 | M: vandrove@vc.cvut.cz |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2596 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2597 | S: Maintained |
| 2598 | |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 2599 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 2600 | P: Hans J. Koch |
| 2601 | M: hjk@linutronix.de |
| 2602 | L: lm-sensors@lm-sensors.org |
| 2603 | S: Maintained |
| 2604 | |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 2605 | MEGARAID SCSI DRIVERS |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2606 | P: Neela Syam Kolli |
Sumant Patro | bdd0d757 | 2007-05-10 07:22:35 -0700 | [diff] [blame] | 2607 | M: megaraidlinux@lsi.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2608 | S: linux-scsi@vger.kernel.org |
| 2609 | W: http://megaraid.lsilogic.com |
| 2610 | S: Maintained |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 2611 | |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 2612 | MEMORY MANAGEMENT |
| 2613 | L: linux-mm@kvack.org |
| 2614 | L: linux-kernel@vger.kernel.org |
| 2615 | W: http://www.linux-mm.org |
| 2616 | S: Maintained |
| 2617 | |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 2618 | MEMORY RESOURCE CONTROLLER |
| 2619 | P: Balbir Singh |
| 2620 | M: balbir@linux.vnet.ibm.com |
| 2621 | P: Pavel Emelyanov |
| 2622 | M: xemul@openvz.org |
| 2623 | P: KAMEZAWA Hiroyuki |
| 2624 | M: kamezawa.hiroyu@jp.fujitsu.com |
| 2625 | L: linux-mm@kvack.org |
| 2626 | L: linux-kernel@vger.kernel.org |
| 2627 | S: Maintained |
| 2628 | |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 2629 | MEI MN10300/AM33 PORT |
| 2630 | P: David Howells |
| 2631 | M: dhowells@redhat.com |
| 2632 | P: Koichi Yasutake |
| 2633 | M: yasutake.koichi@jp.panasonic.com |
| 2634 | L: linux-am33-list@redhat.com |
| 2635 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
| 2636 | S: Maintained |
| 2637 | |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 2638 | MEMORY TECHNOLOGY DEVICES (MTD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | P: David Woodhouse |
| 2640 | M: dwmw2@infradead.org |
| 2641 | W: http://www.linux-mtd.infradead.org/ |
| 2642 | L: linux-mtd@lists.infradead.org |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 2643 | T: git git://git.infradead.org/mtd-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2644 | S: Maintained |
| 2645 | |
Artem Bityutskiy | 4857640 | 2007-02-13 17:11:10 +0200 | [diff] [blame] | 2646 | UNSORTED BLOCK IMAGES (UBI) |
| 2647 | P: Artem Bityutskiy |
| 2648 | M: dedekind@infradead.org |
| 2649 | W: http://www.linux-mtd.infradead.org/ |
| 2650 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | 2160054 | 2007-05-22 12:23:21 +0300 | [diff] [blame] | 2651 | T: git git://git.infradead.org/~dedekind/ubi-2.6.git |
Artem Bityutskiy | 4857640 | 2007-02-13 17:11:10 +0200 | [diff] [blame] | 2652 | S: Maintained |
| 2653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2654 | MICROTEK X6 SCANNER |
| 2655 | P: Oliver Neukum |
| 2656 | M: oliver@neukum.name |
| 2657 | S: Maintained |
| 2658 | |
| 2659 | MIPS |
| 2660 | P: Ralf Baechle |
| 2661 | M: ralf@linux-mips.org |
Ralf Baechle | d50f7ec | 2005-10-04 13:30:10 +0100 | [diff] [blame] | 2662 | W: http://www.linux-mips.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2663 | L: linux-mips@linux-mips.org |
Ralf Baechle | 7425b34 | 2006-03-10 13:47:21 +0000 | [diff] [blame] | 2664 | T: git www.linux-mips.org:/pub/scm/linux.git |
| 2665 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | |
| 2667 | MISCELLANEOUS MCA-SUPPORT |
| 2668 | P: James Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 2669 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2670 | L: linux-kernel@vger.kernel.org |
| 2671 | S: Maintained |
| 2672 | |
| 2673 | MODULE SUPPORT |
| 2674 | P: Rusty Russell |
| 2675 | M: rusty@rustcorp.com.au |
| 2676 | L: linux-kernel@vger.kernel.org |
| 2677 | S: Maintained |
| 2678 | |
| 2679 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
| 2680 | P: Stelian Pop |
| 2681 | M: stelian@popies.net |
| 2682 | W: http://popies.net/meye/ |
| 2683 | S: Maintained |
| 2684 | |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 2685 | MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 2686 | P: Pavel Pisa |
| 2687 | M: ppisa@pikron.com |
| 2688 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 2689 | S: Maintained |
| 2690 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2691 | MOUSE AND MISC DEVICES [GENERAL] |
| 2692 | P: Alessandro Rubini |
| 2693 | M: rubini@ipvvis.unipv.it |
| 2694 | L: linux-kernel@vger.kernel.org |
| 2695 | S: Maintained |
| 2696 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 2697 | MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0) |
| 2698 | P: Jiri Slaby |
| 2699 | M: jirislaby@gmail.com |
| 2700 | L: linux-kernel@vger.kernel.org |
| 2701 | S: Maintained |
| 2702 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 2703 | MSI LAPTOP SUPPORT |
| 2704 | P: Lennart Poettering |
| 2705 | M: mzxreary@0pointer.de |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 2706 | W: https://tango.0pointer.de/mailman/listinfo/s270-linux |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 2707 | W: http://0pointer.de/lennart/tchibo.html |
| 2708 | S: Maintained |
| 2709 | |
Pierre Ossman | 5c4e6f1 | 2007-05-21 20:23:20 +0200 | [diff] [blame] | 2710 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 2711 | P: Pierre Ossman |
| 2712 | M: drzeus-mmc@drzeus.cx |
| 2713 | L: linux-kernel@vger.kernel.org |
| 2714 | S: Maintained |
Russell King | baca2da | 2006-06-04 17:36:31 +0100 | [diff] [blame] | 2715 | |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 2716 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
| 2717 | P: David Brownell |
| 2718 | M: dbrownell@users.sourceforge.net |
| 2719 | L: linux-kernel@vger.kernel.org |
| 2720 | S: Odd fixes |
| 2721 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2722 | MULTISOUND SOUND DRIVER |
| 2723 | P: Andrew Veliath |
| 2724 | M: andrewtv@usa.net |
| 2725 | S: Maintained |
| 2726 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 2727 | MULTITECH MULTIPORT CARD (ISICOM) |
| 2728 | P: Jiri Slaby |
| 2729 | M: jirislaby@gmail.com |
| 2730 | L: linux-kernel@vger.kernel.org |
| 2731 | S: Maintained |
| 2732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2733 | NATSEMI ETHERNET DRIVER (DP8381x) |
| 2734 | P: Tim Hockin |
| 2735 | M: thockin@hockin.org |
| 2736 | S: Maintained |
| 2737 | |
| 2738 | NCP FILESYSTEM |
| 2739 | P: Petr Vandrovec |
| 2740 | M: vandrove@vc.cvut.cz |
| 2741 | L: linware@sh.cvut.cz |
| 2742 | S: Maintained |
| 2743 | |
| 2744 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
| 2745 | P: James E.J. Bottomley |
| 2746 | M: James.Bottomley@HansenPartnership.com |
| 2747 | L: linux-scsi@vger.kernel.org |
| 2748 | S: Maintained |
| 2749 | |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 2750 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
| 2751 | P: Faisal Latif |
| 2752 | M: flatif@neteffect.com |
Roland Dreier | 030f1b2 | 2008-02-21 09:02:41 -0600 | [diff] [blame] | 2753 | P: Nishi Gupta |
| 2754 | M: ngupta@neteffect.com |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 2755 | P: Glenn Streiff |
| 2756 | M: gstreiff@neteffect.com |
| 2757 | L: general@lists.openfabrics.org |
| 2758 | W: http://www.neteffect.com |
| 2759 | S: Supported |
| 2760 | F: drivers/infiniband/hw/nes/ |
| 2761 | |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 2762 | NETEM NETWORK EMULATOR |
| 2763 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 2764 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 2765 | L: netem@lists.linux-foundation.org |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 2766 | S: Maintained |
| 2767 | |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 2768 | NETERION (S2IO) Xframe 10GbE DRIVER |
| 2769 | P: Ramkrishna Vepa |
| 2770 | M: ram.vepa@neterion.com |
| 2771 | P: Rastapur Santosh |
| 2772 | M: santosh.rastapur@neterion.com |
| 2773 | P: Sivakumar Subramani |
| 2774 | M: sivakumar.subramani@neterion.com |
| 2775 | P: Sreenivasa Honnur |
| 2776 | M: sreenivasa.honnur@neterion.com |
| 2777 | L: netdev@vger.kernel.org |
| 2778 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/TitleIndex?anonymous |
| 2779 | S: Supported |
| 2780 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2781 | NETFILTER/IPTABLES/IPCHAINS |
| 2782 | P: Rusty Russell |
| 2783 | P: Marc Boucher |
| 2784 | P: James Morris |
| 2785 | P: Harald Welte |
| 2786 | P: Jozsef Kadlecsik |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 2787 | P: Patrick McHardy |
| 2788 | M: kaber@trash.net |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 2789 | L: netfilter-devel@vger.kernel.org |
| 2790 | L: netfilter@vger.kernel.org |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 2791 | L: coreteam@netfilter.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2792 | W: http://www.netfilter.org/ |
| 2793 | W: http://www.iptables.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2794 | S: Supported |
| 2795 | |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 2796 | NETLABEL |
| 2797 | P: Paul Moore |
| 2798 | M: paul.moore@hp.com |
| 2799 | W: http://netlabel.sf.net |
| 2800 | L: netdev@vger.kernel.org |
| 2801 | S: Supported |
| 2802 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2803 | NETROM NETWORK LAYER |
| 2804 | P: Ralf Baechle |
| 2805 | M: ralf@linux-mips.org |
| 2806 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 2807 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2808 | S: Maintained |
| 2809 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 2810 | NETWORK BLOCK DEVICE (NBD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | P: Paul Clements |
| 2812 | M: Paul.Clements@steeleye.com |
| 2813 | S: Maintained |
| 2814 | |
| 2815 | NETWORK DEVICE DRIVERS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2816 | P: Jeff Garzik |
| 2817 | M: jgarzik@pobox.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2818 | L: netdev@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 2819 | T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2820 | S: Maintained |
| 2821 | |
| 2822 | NETWORKING [GENERAL] |
| 2823 | P: Networking Team |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2824 | M: netdev@vger.kernel.org |
| 2825 | L: netdev@vger.kernel.org |
David S. Miller | f1465f7 | 2006-03-27 23:28:44 -0800 | [diff] [blame] | 2826 | W: http://linux-net.osdl.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2827 | S: Maintained |
| 2828 | |
| 2829 | NETWORKING [IPv4/IPv6] |
| 2830 | P: David S. Miller |
| 2831 | M: davem@davemloft.net |
| 2832 | P: Alexey Kuznetsov |
| 2833 | M: kuznet@ms2.inr.ac.ru |
| 2834 | P: Pekka Savola (ipv6) |
| 2835 | M: pekkas@netcore.fi |
| 2836 | P: James Morris |
James Morris | 48de5be | 2005-08-08 10:29:08 -0400 | [diff] [blame] | 2837 | M: jmorris@namei.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2838 | P: Hideaki YOSHIFUJI |
| 2839 | M: yoshfuji@linux-ipv6.org |
| 2840 | P: Patrick McHardy |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 2841 | M: kaber@trash.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2842 | L: netdev@vger.kernel.org |
John W. Linville | d5ca311 | 2006-01-18 14:52:18 -0800 | [diff] [blame] | 2843 | T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2844 | S: Maintained |
| 2845 | |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 2846 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
| 2847 | P: Paul Moore |
| 2848 | M: paul.moore@hp.com |
| 2849 | L: netdev@vger.kernel.org |
| 2850 | S: Maintained |
| 2851 | |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 2852 | NETWORKING [WIRELESS] |
| 2853 | P: John W. Linville |
| 2854 | M: linville@tuxdriver.com |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 2855 | L: linux-wireless@vger.kernel.org |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 2856 | T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
| 2857 | S: Maintained |
| 2858 | |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 2859 | NETXEN (1/10) GbE SUPPORT |
dhananjay@netxen.com | d230ce3 | 2007-12-26 10:23:53 -0800 | [diff] [blame] | 2860 | P: Dhananjay Phadke |
| 2861 | M: dhananjay@netxen.com |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 2862 | L: netdev@vger.kernel.org |
| 2863 | W: http://www.netxen.com |
| 2864 | S: Supported |
| 2865 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2866 | IPVS |
| 2867 | P: Wensong Zhang |
| 2868 | M: wensong@linux-vs.org |
Horms | 9d30c17 | 2005-09-29 19:47:06 -0700 | [diff] [blame] | 2869 | P: Simon Horman |
| 2870 | M: horms@verge.net.au |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2871 | P: Julian Anastasov |
| 2872 | M: ja@ssi.bg |
Horms | 9d30c17 | 2005-09-29 19:47:06 -0700 | [diff] [blame] | 2873 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2874 | S: Maintained |
| 2875 | |
| 2876 | NFS CLIENT |
| 2877 | P: Trond Myklebust |
Trond Myklebust | 78f5815 | 2007-12-12 20:16:06 -0500 | [diff] [blame] | 2878 | M: Trond.Myklebust@netapp.com |
| 2879 | L: linux-nfs@vger.kernel.org |
| 2880 | W: http://client.linux-nfs.org |
| 2881 | T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2882 | S: Maintained |
| 2883 | |
| 2884 | NI5010 NETWORK DRIVER |
Andreas Mohr | 5b552b1 | 2006-06-30 02:25:07 -0700 | [diff] [blame] | 2885 | P: Jan-Pascal van Best |
| 2886 | M: janpascal@vanbest.org |
| 2887 | P: Andreas Mohr |
| 2888 | M: andi@lisas.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2889 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2890 | S: Maintained |
| 2891 | |
| 2892 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
| 2893 | P: YOKOTA Hiroshi |
| 2894 | M: yokota@netlab.is.tsukuba.ac.jp |
| 2895 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 2896 | S: Maintained |
| 2897 | |
| 2898 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
| 2899 | P: GOTO Masanori |
| 2900 | M: gotom@debian.or.jp |
| 2901 | P: YOKOTA Hiroshi |
| 2902 | M: yokota@netlab.is.tsukuba.ac.jp |
| 2903 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 2904 | S: Maintained |
| 2905 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2906 | NTFS FILESYSTEM |
| 2907 | P: Anton Altaparmakov |
| 2908 | M: aia21@cantab.net |
| 2909 | L: linux-ntfs-dev@lists.sourceforge.net |
| 2910 | L: linux-kernel@vger.kernel.org |
| 2911 | W: http://linux-ntfs.sf.net/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2912 | T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2913 | S: Maintained |
| 2914 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2915 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2916 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2917 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2918 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2919 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2920 | |
Peter Korsgaard | 1ded969 | 2006-06-12 21:40:53 +0200 | [diff] [blame] | 2921 | OPENCORES I2C BUS DRIVER |
| 2922 | P: Peter Korsgaard |
| 2923 | M: jacmet@sunsite.dk |
Jean Delvare | 5d925fe | 2006-07-01 17:14:32 +0200 | [diff] [blame] | 2924 | L: i2c@lm-sensors.org |
Peter Korsgaard | 1ded969 | 2006-06-12 21:40:53 +0200 | [diff] [blame] | 2925 | S: Maintained |
| 2926 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2927 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
| 2928 | P: Mark Fasheh |
| 2929 | M: mark.fasheh@oracle.com |
| 2930 | P: Kurt Hackel |
| 2931 | M: kurt.hackel@oracle.com |
| 2932 | L: ocfs2-devel@oss.oracle.com |
| 2933 | W: http://oss.oracle.com/projects/ocfs2/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 2934 | S: Supported |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2935 | |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 2936 | OMNIKEY CARDMAN 4000 DRIVER |
| 2937 | P: Harald Welte |
| 2938 | M: laforge@gnumonks.org |
| 2939 | S: Maintained |
| 2940 | |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 2941 | OMNIKEY CARDMAN 4040 DRIVER |
| 2942 | P: Harald Welte |
| 2943 | M: laforge@gnumonks.org |
| 2944 | S: Maintained |
| 2945 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 2946 | OMNIVISION OV7670 SENSOR DRIVER |
| 2947 | P: Jonathan Corbet |
| 2948 | M: corbet@lwn.net |
| 2949 | L: video4linux-list@redhat.com |
| 2950 | S: Maintained |
| 2951 | |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 2952 | ONENAND FLASH DRIVER |
| 2953 | P: Kyungmin Park |
| 2954 | M: kyungmin.park@samsung.com |
| 2955 | L: linux-mtd@lists.infradead.org |
| 2956 | S: Maintained |
| 2957 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2958 | ONSTREAM SCSI TAPE DRIVER |
| 2959 | P: Willem Riede |
| 2960 | M: osst@riede.org |
| 2961 | L: osst-users@lists.sourceforge.net |
| 2962 | L: linux-scsi@vger.kernel.org |
| 2963 | S: Maintained |
| 2964 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2965 | OPROFILE |
| 2966 | P: Philippe Elie |
| 2967 | M: phil.el@wanadoo.fr |
| 2968 | L: oprofile-list@lists.sf.net |
| 2969 | S: Maintained |
| 2970 | |
| 2971 | ORINOCO DRIVER |
| 2972 | P: Pavel Roskin |
| 2973 | M: proski@gnu.org |
| 2974 | P: David Gibson |
| 2975 | M: hermes@gibson.dropbear.id.au |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2976 | L: linux-wireless@vger.kernel.org |
Pavel Roskin | ecffdde | 2005-05-05 16:16:01 -0700 | [diff] [blame] | 2977 | L: orinoco-users@lists.sourceforge.net |
| 2978 | L: orinoco-devel@lists.sourceforge.net |
| 2979 | W: http://www.nongnu.org/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | S: Maintained |
| 2981 | |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 2982 | PA SEMI ETHERNET DRIVER |
| 2983 | P: Olof Johansson |
| 2984 | M: olof@lixom.net |
| 2985 | L: netdev@vger.kernel.org |
| 2986 | S: Maintained |
| 2987 | |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 2988 | PA SEMI SMBUS DRIVER |
| 2989 | P: Olof Johansson |
| 2990 | M: olof@lixom.net |
| 2991 | L: i2c@lm-sensors.org |
| 2992 | S: Maintained |
| 2993 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2994 | PARALLEL PORT SUPPORT |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 2995 | L: linux-parport@lists.infradead.org (subscribers-only) |
David Brownell | 5fdc2ab | 2007-03-05 00:30:13 -0800 | [diff] [blame] | 2996 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2997 | |
| 2998 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
| 2999 | P: Tim Waugh |
| 3000 | M: tim@cyberelk.net |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 3001 | L: linux-parport@lists.infradead.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | W: http://www.torque.net/linux-pp.html |
| 3003 | S: Maintained |
| 3004 | |
| 3005 | PARISC ARCHITECTURE |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 3006 | P: Kyle McMartin |
| 3007 | M: kyle@parisc-linux.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3008 | P: Matthew Wilcox |
| 3009 | M: matthew@wil.cx |
| 3010 | P: Grant Grundler |
| 3011 | M: grundler@parisc-linux.org |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 3012 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3013 | W: http://www.parisc-linux.org/ |
Kyle McMartin | 223232d | 2006-04-21 16:54:23 -0400 | [diff] [blame] | 3014 | T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3015 | S: Maintained |
| 3016 | |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 3017 | PARAVIRT_OPS INTERFACE |
| 3018 | P: Jeremy Fitzhardinge |
| 3019 | M: jeremy@xensource.com |
| 3020 | P: Chris Wright |
| 3021 | M: chrisw@sous-sol.org |
| 3022 | P: Zachary Amsden |
| 3023 | M: zach@vmware.com |
| 3024 | P: Rusty Russell |
| 3025 | M: rusty@rustcorp.com.au |
| 3026 | L: virtualization@lists.osdl.org |
| 3027 | L: linux-kernel@vger.kernel.org |
| 3028 | S: Supported |
| 3029 | |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 3030 | PC87360 HARDWARE MONITORING DRIVER |
| 3031 | P: Jim Cromie |
| 3032 | M: jim.cromie@gmail.com |
| 3033 | L: lm-sensors@lm-sensors.org |
| 3034 | S: Maintained |
| 3035 | |
| 3036 | PC8736x GPIO DRIVER |
| 3037 | P: Jim Cromie |
| 3038 | M: jim.cromie@gmail.com |
| 3039 | S: Maintained |
| 3040 | |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 3041 | PCI ERROR RECOVERY |
| 3042 | P: Linas Vepstas |
| 3043 | M: linas@austin.ibm.com |
| 3044 | L: linux-kernel@vger.kernel.org |
| 3045 | L: linux-pci@atrey.karlin.mff.cuni.cz |
| 3046 | S: Supported |
| 3047 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3048 | PCI SUBSYSTEM |
| 3049 | P: Greg Kroah-Hartman |
| 3050 | M: gregkh@suse.de |
| 3051 | L: linux-kernel@vger.kernel.org |
| 3052 | L: linux-pci@atrey.karlin.mff.cuni.cz |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 3053 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3054 | S: Supported |
| 3055 | |
| 3056 | PCI HOTPLUG CORE |
Kristen Carlson Accardi | fb5f4d7 | 2006-09-29 10:30:27 -0700 | [diff] [blame] | 3057 | P: Kristen Carlson Accardi |
| 3058 | M: kristen.c.accardi@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3059 | S: Supported |
| 3060 | |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 3061 | PCIE HOTPLUG DRIVER |
| 3062 | P: Kristen Carlson Accardi |
| 3063 | M: kristen.c.accardi@intel.com |
| 3064 | L: pcihpd-discuss@lists.sourceforge.net |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 3065 | S: Supported |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 3066 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3067 | PCMCIA SUBSYSTEM |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 3068 | P: Linux PCMCIA Team |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3069 | L: linux-pcmcia@lists.infradead.org |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 3070 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 3071 | T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 3072 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3073 | |
| 3074 | PCNET32 NETWORK DRIVER |
pcnet32@verizon.net | 04ce094 | 2007-02-16 10:07:12 -0600 | [diff] [blame] | 3075 | P: Don Fry |
| 3076 | M: pcnet32@verizon.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3077 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3078 | S: Maintained |
| 3079 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 3080 | PER-TASK DELAY ACCOUNTING |
| 3081 | P: Shailabh Nagar |
| 3082 | M: nagar@watson.ibm.com |
| 3083 | L: linux-kernel@vger.kernel.org |
| 3084 | S: Maintained |
| 3085 | |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 3086 | PERSONALITY HANDLING |
| 3087 | P: Christoph Hellwig |
| 3088 | M: hch@infradead.org |
| 3089 | L: linux-abi-devel@lists.sourceforge.net |
| 3090 | S: Maintained |
| 3091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3092 | PHRAM MTD DRIVER |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 3093 | P: Joern Engel |
| 3094 | M: joern@lazybastard.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | L: linux-mtd@lists.infradead.org |
| 3096 | S: Maintained |
| 3097 | |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 3098 | PKTCDVD DRIVER |
| 3099 | P: Peter Osterlund |
| 3100 | M: petero2@telia.com |
| 3101 | L: linux-kernel@vger.kernel.org |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 3102 | S: Maintained |
| 3103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3104 | POSIX CLOCKS and TIMERS |
Ingo Molnar | aa781ae | 2007-07-19 01:48:32 -0700 | [diff] [blame] | 3105 | P: Thomas Gleixner |
| 3106 | M: tglx@linutronix.de |
Horms | f1c3ddf | 2006-01-15 02:18:28 +0100 | [diff] [blame] | 3107 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3108 | S: Supported |
| 3109 | |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 3110 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
| 3111 | P: Anton Vorontsov |
| 3112 | M: cbou@mail.ru |
| 3113 | P: David Woodhouse |
| 3114 | M: dwmw2@infradead.org |
| 3115 | L: linux-kernel@vger.kernel.org |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 3116 | T: git git.infradead.org/battery-2.6.git |
| 3117 | S: Maintained |
| 3118 | |
Eugene Surovegin | 2468297 | 2005-10-14 03:00:53 -0700 | [diff] [blame] | 3119 | POWERPC 4xx EMAC DRIVER |
| 3120 | P: Eugene Surovegin |
| 3121 | M: ebs@ebshome.net |
| 3122 | W: http://kernel.ebshome.net/emac/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3123 | L: linuxppc-dev@ozlabs.org |
Eugene Surovegin | 2468297 | 2005-10-14 03:00:53 -0700 | [diff] [blame] | 3124 | L: netdev@vger.kernel.org |
| 3125 | S: Maintained |
| 3126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 | PNP SUPPORT |
| 3128 | P: Adam Belay |
| 3129 | M: ambx1@neo.rr.com |
| 3130 | S: Maintained |
| 3131 | |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 3132 | PNXxxxx I2C DRIVER |
| 3133 | P: Vitaly Wool |
| 3134 | M: vitalywool@gmail.com |
| 3135 | L: i2c@lm-sensors.org |
| 3136 | S: Maintained |
| 3137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3138 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
| 3139 | P: Paul Mackerras |
| 3140 | M: paulus@samba.org |
| 3141 | L: linux-ppp@vger.kernel.org |
| 3142 | S: Maintained |
| 3143 | |
| 3144 | PPP OVER ATM (RFC 2364) |
| 3145 | P: Mitchell Blank Jr |
| 3146 | M: mitch@sfgoth.com |
| 3147 | S: Maintained |
| 3148 | |
| 3149 | PPP OVER ETHERNET |
| 3150 | P: Michal Ostrowski |
| 3151 | M: mostrows@speakeasy.net |
| 3152 | S: Maintained |
| 3153 | |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 3154 | PPP OVER L2TP |
| 3155 | P: James Chapman |
| 3156 | M: jchapman@katalix.com |
| 3157 | S: Maintained |
| 3158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3159 | PREEMPTIBLE KERNEL |
| 3160 | P: Robert Love |
| 3161 | M: rml@tech9.net |
| 3162 | L: linux-kernel@vger.kernel.org |
| 3163 | L: kpreempt-tech@lists.sourceforge.net |
| 3164 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
| 3165 | S: Supported |
| 3166 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 3167 | P54 WIRELESS DRIVER |
| 3168 | P: Michael Wu |
| 3169 | M: flamingice@sourmilk.net |
| 3170 | L: linux-wireless@vger.kernel.org |
| 3171 | W: http://prism54.org |
| 3172 | T: git kernel.org:/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git |
| 3173 | S: Maintained |
| 3174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3175 | PRISM54 WIRELESS DRIVER |
Luis R. Rodriguez | e88b34b | 2007-06-01 00:46:57 -0700 | [diff] [blame] | 3176 | P: Luis R. Rodriguez |
| 3177 | M: mcgrof@gmail.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3178 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3179 | W: http://prism54.org |
| 3180 | S: Maintained |
| 3181 | |
| 3182 | PROMISE DC4030 CACHING DISK CONTROLLER DRIVER |
| 3183 | P: Peter Denison |
| 3184 | M: promise@pnd-pc.demon.co.uk |
| 3185 | W: http://www.pnd-pc.demon.co.uk/promise/ |
| 3186 | S: Maintained |
| 3187 | |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 3188 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
| 3189 | P: Mikael Pettersson |
| 3190 | M: mikpe@it.uu.se |
| 3191 | L: linux-ide@vger.kernel.org |
| 3192 | S: Maintained |
| 3193 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 3194 | PS3 NETWORK SUPPORT |
| 3195 | P: Masakazu Mokuno |
| 3196 | M: mokuno@sm.sony.co.jp |
| 3197 | L: netdev@vger.kernel.org |
| 3198 | L: cbe-oss-dev@ozlabs.org |
| 3199 | S: Supported |
| 3200 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 3201 | PS3 PLATFORM SUPPORT |
| 3202 | P: Geoff Levand |
| 3203 | M: geoffrey.levand@am.sony.com |
| 3204 | L: linuxppc-dev@ozlabs.org |
| 3205 | L: cbe-oss-dev@ozlabs.org |
| 3206 | S: Supported |
| 3207 | |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 3208 | PVRUSB2 VIDEO4LINUX DRIVER |
| 3209 | P: Mike Isely |
| 3210 | M: isely@pobox.com |
Mike Isely | 16e9495 | 2007-01-03 18:08:06 -0300 | [diff] [blame] | 3211 | L: pvrusb2@isely.net (subscribers-only) |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 3212 | L: video4linux-list@redhat.com |
| 3213 | W: http://www.isely.net/pvrusb2/ |
| 3214 | S: Maintained |
| 3215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3216 | PXA2xx SUPPORT |
| 3217 | P: Nicolas Pitre |
| 3218 | M: nico@cam.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 3219 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3220 | S: Maintained |
| 3221 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 3222 | PXA MMCI DRIVER |
| 3223 | S: Orphan |
| 3224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3225 | QLOGIC QLA2XXX FC-SCSI DRIVER |
| 3226 | P: Andrew Vasquez |
Andrew Vasquez | 95e6a85 | 2006-03-14 14:41:04 -0800 | [diff] [blame] | 3227 | M: linux-driver@qlogic.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3228 | L: linux-scsi@vger.kernel.org |
| 3229 | S: Supported |
| 3230 | |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 3231 | QLOGIC QLA3XXX NETWORK DRIVER |
| 3232 | P: Ron Mercer |
| 3233 | M: linux-driver@qlogic.com |
| 3234 | L: netdev@vger.kernel.org |
| 3235 | S: Supported |
| 3236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3237 | QNX4 FILESYSTEM |
| 3238 | P: Anders Larsen |
| 3239 | M: al@alarsen.net |
| 3240 | L: linux-kernel@vger.kernel.org |
| 3241 | W: http://www.alarsen.net/linux/qnx4fs/ |
| 3242 | S: Maintained |
| 3243 | |
| 3244 | RADEON FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 3245 | P: Benjamin Herrenschmidt |
| 3246 | M: benh@kernel.crashing.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3247 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3248 | S: Maintained |
| 3249 | |
| 3250 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 3251 | P: Paul Mackerras |
| 3252 | M: paulus@samba.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3253 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3254 | S: Maintained |
| 3255 | |
| 3256 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
| 3257 | P: Corey Thomas |
Joe Perches | 7c4a52e | 2008-02-03 16:38:31 +0200 | [diff] [blame] | 3258 | M: coreythomas@charter.net |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3259 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3260 | S: Maintained |
| 3261 | |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 3262 | RALINK RT2X00 WLAN DRIVER |
| 3263 | P: rt2x00 project |
| 3264 | L: linux-wireless@vger.kernel.org |
| 3265 | L: rt2400-devel@lists.sourceforge.net |
| 3266 | W: http://rt2x00.serialmonkey.com/ |
| 3267 | S: Maintained |
| 3268 | F: drivers/net/wireless/rt2x00/ |
| 3269 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 3270 | RAMDISK RAM BLOCK DEVICE DRIVER |
| 3271 | P: Nick Piggin |
| 3272 | M: npiggin@suse.de |
| 3273 | S: Maintained |
| 3274 | |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 3275 | RANDOM NUMBER DRIVER |
| 3276 | P: Matt Mackall |
| 3277 | M: mpm@selenic.com |
| 3278 | S: Maintained |
| 3279 | |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 3280 | RAPIDIO SUBSYSTEM |
| 3281 | P: Matt Porter |
| 3282 | M: mporter@kernel.crashing.org |
| 3283 | L: linux-kernel@vger.kernel.org |
| 3284 | S: Maintained |
| 3285 | |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 3286 | RDC R-321X SoC |
| 3287 | P: Florian Fainelli |
| 3288 | M: florian.fainelli@telecomint.eu |
| 3289 | L: linux-kernel@vger.kernel.org |
| 3290 | S: Maintained |
| 3291 | |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 3292 | RDC R6040 FAST ETHERNET DRIVER |
| 3293 | P: Florian Fainelli |
| 3294 | M: florian.fainelli@telecomint.eu |
| 3295 | L: netdev@vger.kernel.org |
| 3296 | S: Maintained |
| 3297 | |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 3298 | READ-COPY UPDATE (RCU) |
| 3299 | P: Dipankar Sarma |
| 3300 | M: dipankar@in.ibm.com |
| 3301 | W: http://www.rdrop.com/users/paulmck/rclock/ |
| 3302 | L: linux-kernel@vger.kernel.org |
| 3303 | S: Supported |
| 3304 | |
| 3305 | RCUTORTURE MODULE |
| 3306 | P: Josh Triplett |
| 3307 | M: josh@freedesktop.org |
| 3308 | L: linux-kernel@vger.kernel.org |
| 3309 | S: Maintained |
| 3310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3311 | REAL TIME CLOCK DRIVER |
| 3312 | P: Paul Gortmaker |
| 3313 | M: p_gortmaker@yahoo.com |
| 3314 | L: linux-kernel@vger.kernel.org |
| 3315 | S: Maintained |
| 3316 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 3317 | REAL TIME CLOCK (RTC) SUBSYSTEM |
| 3318 | P: Alessandro Zummo |
| 3319 | M: a.zummo@towertech.it |
Alessandro Zummo | 7646549 | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 3320 | L: rtc-linux@googlegroups.com |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 3321 | S: Maintained |
| 3322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3323 | REISERFS FILE SYSTEM |
| 3324 | P: Hans Reiser |
| 3325 | M: reiserfs-dev@namesys.com |
Jeff Mahoney | 76c4e5e | 2007-06-08 13:47:02 -0700 | [diff] [blame] | 3326 | L: reiserfs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3327 | W: http://www.namesys.com |
| 3328 | S: Supported |
| 3329 | |
| 3330 | ROCKETPORT DRIVER |
| 3331 | P: Comtrol Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3332 | W: http://www.comtrol.com |
| 3333 | S: Maintained |
| 3334 | |
| 3335 | ROSE NETWORK LAYER |
| 3336 | P: Ralf Baechle |
| 3337 | M: ralf@linux-mips.org |
| 3338 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 3339 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3340 | S: Maintained |
| 3341 | |
| 3342 | RISCOM8 DRIVER |
| 3343 | S: Orphan |
| 3344 | |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 3345 | RTL818X WIRELESS DRIVER |
| 3346 | P: Michael Wu |
| 3347 | M: flamingice@sourmilk.net |
| 3348 | P: Andrea Merello |
| 3349 | M: andreamrl@tiscali.it |
| 3350 | L: linux-wireless@vger.kernel.org |
| 3351 | W: http://linuxwireless.org/ |
| 3352 | T: git kernel.org:/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git |
| 3353 | S: Maintained |
| 3354 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 3355 | S3 SAVAGE FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3356 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 3357 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3358 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3359 | S: Maintained |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 3360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3361 | S390 |
| 3362 | P: Martin Schwidefsky |
| 3363 | M: schwidefsky@de.ibm.com |
Martin Schwidefsky | 8301425 | 2006-09-20 15:58:58 +0200 | [diff] [blame] | 3364 | P: Heiko Carstens |
| 3365 | M: heiko.carstens@de.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 3367 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 3368 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3369 | S: Supported |
| 3370 | |
| 3371 | S390 NETWORK DRIVERS |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 3372 | P: Ursula Braun |
| 3373 | M: ubraun@linux.vnet.ibm.com |
Ursula Braun | b9192ad | 2007-10-22 16:16:15 +0200 | [diff] [blame] | 3374 | P: Frank Blaschka |
| 3375 | M: blaschka@linux.vnet.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 3376 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 3377 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 3378 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3379 | S: Supported |
| 3380 | |
| 3381 | S390 ZFCP DRIVER |
Swen Schillig | 0033bb4 | 2007-12-18 11:16:14 +0100 | [diff] [blame] | 3382 | P: Christof Schmitt |
| 3383 | M: christof.schmitt@de.ibm.com |
| 3384 | P: Martin Peschke |
| 3385 | M: mp3@de.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 3386 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 3387 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 3388 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3389 | S: Supported |
| 3390 | |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 3391 | S390 IUCV NETWORK LAYER |
| 3392 | P: Ursula Braun |
| 3393 | M: ubraun@linux.vnet.ibm.com |
| 3394 | M: linux390@de.ibm.com |
| 3395 | L: linux-s390@vger.kernel.org |
| 3396 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3397 | S: Supported |
| 3398 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3399 | SAA7146 VIDEO4LINUX-2 DRIVER |
| 3400 | P: Michael Hunold |
| 3401 | M: michael@mihu.de |
| 3402 | W: http://www.mihu.de/linux/saa7146 |
| 3403 | S: Maintained |
| 3404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3405 | SC1200 WDT DRIVER |
| 3406 | P: Zwane Mwaikambo |
Zwane Mwaikambo | 3c7bf1e | 2005-08-18 11:24:07 -0700 | [diff] [blame] | 3407 | M: zwane@arm.linux.org.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3408 | S: Maintained |
| 3409 | |
| 3410 | SCHEDULER |
| 3411 | P: Ingo Molnar |
| 3412 | M: mingo@elte.hu |
| 3413 | P: Robert Love [the preemptible kernel bits] |
| 3414 | M: rml@tech9.net |
| 3415 | L: linux-kernel@vger.kernel.org |
| 3416 | S: Maintained |
| 3417 | |
| 3418 | SCSI CDROM DRIVER |
| 3419 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 3420 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3421 | L: linux-scsi@vger.kernel.org |
| 3422 | W: http://www.kernel.dk |
| 3423 | S: Maintained |
| 3424 | |
| 3425 | SCSI SG DRIVER |
| 3426 | P: Doug Gilbert |
| 3427 | M: dgilbert@interlog.com |
| 3428 | L: linux-scsi@vger.kernel.org |
| 3429 | W: http://www.torque.net/sg |
| 3430 | S: Maintained |
| 3431 | |
| 3432 | SCSI SUBSYSTEM |
| 3433 | P: James E.J. Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 3434 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3435 | L: linux-scsi@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 3436 | T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 3437 | T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git |
| 3438 | T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3439 | S: Maintained |
| 3440 | |
| 3441 | SCSI TAPE DRIVER |
John Anthony Kazos Jr | dd4ef01 | 2007-05-09 08:06:37 +0200 | [diff] [blame] | 3442 | P: Kai Mäkisara |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3443 | M: Kai.Makisara@kolumbus.fi |
| 3444 | L: linux-scsi@vger.kernel.org |
| 3445 | S: Maintained |
| 3446 | |
| 3447 | SCTP PROTOCOL |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 3448 | P: Vlad Yasevich |
| 3449 | M: vladislav.yasevich@hp.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3450 | P: Sridhar Samudrala |
| 3451 | M: sri@us.ibm.com |
| 3452 | L: lksctp-developers@lists.sourceforge.net |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 3453 | W: http://lksctp.sourceforge.net |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3454 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3455 | |
| 3456 | SCx200 CPU SUPPORT |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 3457 | P: Jim Cromie |
| 3458 | M: jim.cromie@gmail.com |
| 3459 | S: Odd Fixes |
| 3460 | |
| 3461 | SCx200 GPIO DRIVER |
| 3462 | P: Jim Cromie |
| 3463 | M: jim.cromie@gmail.com |
| 3464 | S: Maintained |
| 3465 | |
| 3466 | SCx200 HRT CLOCKSOURCE DRIVER |
| 3467 | P: Jim Cromie |
| 3468 | M: jim.cromie@gmail.com |
| 3469 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3470 | |
| 3471 | SECURITY CONTACT |
| 3472 | P: Security Officers |
| 3473 | M: security@kernel.org |
| 3474 | S: Supported |
| 3475 | |
| 3476 | SELINUX SECURITY MODULE |
| 3477 | P: Stephen Smalley |
Stephen Smalley | 62cfe7e | 2006-02-04 23:27:42 -0800 | [diff] [blame] | 3478 | M: sds@tycho.nsa.gov |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3479 | P: James Morris |
James Morris | 48de5be | 2005-08-08 10:29:08 -0400 | [diff] [blame] | 3480 | M: jmorris@namei.org |
Stephen Smalley | 588a315 | 2007-02-23 09:20:09 -0500 | [diff] [blame] | 3481 | P: Eric Paris |
| 3482 | M: eparis@parisplace.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3483 | L: linux-kernel@vger.kernel.org (kernel issues) |
Stephen Smalley | 588a315 | 2007-02-23 09:20:09 -0500 | [diff] [blame] | 3484 | L: selinux@tycho.nsa.gov (subscribers-only, general discussion) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3485 | W: http://www.nsa.gov/selinux |
| 3486 | S: Supported |
| 3487 | |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 3488 | SENSABLE PHANTOM |
| 3489 | P: Jiri Slaby |
| 3490 | M: jirislaby@gmail.com |
| 3491 | S: Maintained |
| 3492 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3493 | SERIAL ATA (SATA) SUBSYSTEM: |
| 3494 | P: Jeff Garzik |
| 3495 | M: jgarzik@pobox.com |
| 3496 | L: linux-ide@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 3497 | T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3498 | S: Supported |
| 3499 | |
| 3500 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER |
| 3501 | P: Pat Gefre |
| 3502 | M: pfg@sgi.com |
| 3503 | L: linux-ia64@vger.kernel.org |
| 3504 | S: Supported |
| 3505 | |
| 3506 | SGI VISUAL WORKSTATION 320 AND 540 |
| 3507 | P: Andrey Panin |
| 3508 | M: pazke@donpac.ru |
| 3509 | L: linux-visws-devel@lists.sf.net |
| 3510 | W: http://linux-visws.sf.net |
| 3511 | S: Maintained for 2.6. |
| 3512 | |
| 3513 | SIMTEC EB110ATX (Chalice CATS) |
| 3514 | P: Ben Dooks |
| 3515 | P: Vincent Sanders |
| 3516 | M: support@simtec.co.uk |
| 3517 | W: http://www.simtec.co.uk/products/EB110ATX/ |
| 3518 | S: Supported |
| 3519 | |
| 3520 | SIMTEC EB2410ITX (BAST) |
| 3521 | P: Ben Dooks |
| 3522 | P: Vincent Sanders |
| 3523 | M: support@simtec.co.uk |
| 3524 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
| 3525 | S: Supported |
| 3526 | |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 3527 | SIS 190 ETHERNET DRIVER |
| 3528 | P: Francois Romieu |
| 3529 | M: romieu@fr.zoreil.com |
| 3530 | L: netdev@vger.kernel.org |
| 3531 | S: Maintained |
| 3532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3533 | SIS 5513 IDE CONTROLLER DRIVER |
| 3534 | P: Lionel Bouton |
| 3535 | M: Lionel.Bouton@inet6.fr |
| 3536 | W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html |
| 3537 | W: http://gyver.homeip.net/sis5513/index.html |
| 3538 | S: Maintained |
| 3539 | |
| 3540 | SIS 900/7016 FAST ETHERNET DRIVER |
| 3541 | P: Daniele Venzano |
| 3542 | M: venza@brownhat.org |
| 3543 | W: http://www.brownhat.org/sis900.html |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3544 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3545 | S: Maintained |
| 3546 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 3547 | SIS 96X I2C/SMBUS DRIVER |
| 3548 | P: Mark M. Hoffman |
| 3549 | M: mhoffman@lightlink.com |
| 3550 | L: lm-sensors@lm-sensors.org |
| 3551 | S: Maintained |
| 3552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3553 | SIS FRAMEBUFFER DRIVER |
| 3554 | P: Thomas Winischhofer |
| 3555 | M: thomas@winischhofer.net |
| 3556 | W: http://www.winischhofer.net/linuxsisvga.shtml |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 3557 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3558 | |
| 3559 | SIS USB2VGA DRIVER |
| 3560 | P: Thomas Winischhofer |
| 3561 | M: thomas@winischhofer.net |
| 3562 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
| 3563 | S: Maintained |
| 3564 | |
Christoph Lameter | 415ad26d | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 3565 | SLAB ALLOCATOR |
| 3566 | P: Christoph Lameter |
| 3567 | M: clameter@sgi.com |
| 3568 | P: Pekka Enberg |
| 3569 | M: penberg@cs.helsinki.fi |
Pekka Enberg | c76d118 | 2008-02-11 23:52:47 +0200 | [diff] [blame] | 3570 | P: Matt Mackall |
| 3571 | M: mpm@selenic.com |
Christoph Lameter | 415ad26d | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 3572 | L: linux-mm@kvack.org |
| 3573 | S: Maintained |
| 3574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3575 | SMC91x ETHERNET DRIVER |
| 3576 | P: Nicolas Pitre |
| 3577 | M: nico@cam.org |
| 3578 | S: Maintained |
| 3579 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 3580 | SMSC47B397 HARDWARE MONITOR DRIVER |
| 3581 | P: Mark M. Hoffman |
| 3582 | M: mhoffman@lightlink.com |
| 3583 | L: lm-sensors@lm-sensors.org |
| 3584 | S: Maintained |
| 3585 | |
Daniel Drake | 8f0f850 | 2006-07-18 22:00:25 +0100 | [diff] [blame] | 3586 | SOFTMAC LAYER (IEEE 802.11) |
Daniel Drake | 8f0f850 | 2006-07-18 22:00:25 +0100 | [diff] [blame] | 3587 | P: Daniel Drake |
| 3588 | M: dsd@gentoo.org |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3589 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 6b345dd | 2007-11-05 14:32:35 +0100 | [diff] [blame] | 3590 | S: Obsolete |
Daniel Drake | 8f0f850 | 2006-07-18 22:00:25 +0100 | [diff] [blame] | 3591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3592 | SOFTWARE RAID (Multiple Disks) SUPPORT |
| 3593 | P: Ingo Molnar |
| 3594 | M: mingo@redhat.com |
| 3595 | P: Neil Brown |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 3596 | M: neilb@suse.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3597 | L: linux-raid@vger.kernel.org |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 3598 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3599 | |
Pavel Machek | 95a631e | 2007-07-19 01:47:42 -0700 | [diff] [blame] | 3600 | HIBERNATION (aka Software Suspend, aka swsusp): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3601 | P: Pavel Machek |
| 3602 | M: pavel@suse.cz |
Pavel Machek | 95a631e | 2007-07-19 01:47:42 -0700 | [diff] [blame] | 3603 | P: Rafael J. Wysocki |
| 3604 | M: rjw@sisk.pl |
| 3605 | L: linux-pm@lists.linux-foundation.org |
| 3606 | S: Supported |
| 3607 | |
| 3608 | SUSPEND TO RAM: |
Len Brown | a0ce317 | 2007-10-25 18:05:49 -0400 | [diff] [blame] | 3609 | P: Len Brown |
| 3610 | M: len.brown@intel.com |
Pavel Machek | 95a631e | 2007-07-19 01:47:42 -0700 | [diff] [blame] | 3611 | P: Pavel Machek |
| 3612 | M: pavel@suse.cz |
| 3613 | P: Rafael J. Wysocki |
| 3614 | M: rjw@sisk.pl |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 3615 | L: linux-pm@lists.linux-foundation.org |
Len Brown | a0ce317 | 2007-10-25 18:05:49 -0400 | [diff] [blame] | 3616 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3617 | |
| 3618 | SONIC NETWORK DRIVER |
| 3619 | P: Thomas Bogendoerfer |
| 3620 | M: tsbogend@alpha.franken.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3621 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3622 | S: Maintained |
| 3623 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 3624 | SONICS SILICON BACKPLANE DRIVER (SSB) |
| 3625 | P: Michael Buesch |
| 3626 | M: mb@bu3sch.de |
| 3627 | L: netdev@vger.kernel.org |
| 3628 | S: Maintained |
| 3629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3630 | SONY VAIO CONTROL DEVICE DRIVER |
Mattia Dongili | 0d477fa | 2007-02-08 20:16:40 +0100 | [diff] [blame] | 3631 | P: Mattia Dongili |
| 3632 | M: malattia@linux.it |
Mattia Dongili | 5b18167 | 2007-03-12 21:43:57 +0100 | [diff] [blame] | 3633 | L: linux-acpi@vger.kernel.org |
| 3634 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3635 | S: Maintained |
| 3636 | |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 3637 | SONY MEMORYSTICK CARD SUPPORT |
| 3638 | P: Alex Dubov |
| 3639 | M: oakad@yahoo.com |
| 3640 | L: linux-kernel@vger.kernel.org |
| 3641 | W: http://tifmxx.berlios.de/ |
| 3642 | S: Maintained |
| 3643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3644 | SOUND |
| 3645 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 3646 | M: perex@perex.cz |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 3647 | L: alsa-devel@alsa-project.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3648 | S: Maintained |
| 3649 | |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 3650 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT |
| 3651 | P: Liam Girdwood |
| 3652 | M: liam.girdwood@wolfsonmicro.com |
Mark Brown | 2cad0ad | 2008-01-10 14:33:07 +0100 | [diff] [blame] | 3653 | P: Mark Brown |
| 3654 | M: broonie@opensource.wolfsonmicro.com |
| 3655 | T: git opensource.wolfsonmicro.com/linux-2.6-asoc |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 3656 | L: alsa-devel@alsa-project.org (subscribers-only) |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 3657 | S: Supported |
| 3658 | |
Kumar Gala | 025c398 | 2006-04-02 16:05:54 -0500 | [diff] [blame] | 3659 | SPI SUBSYSTEM |
| 3660 | P: David Brownell |
| 3661 | M: dbrownell@users.sourceforge.net |
| 3662 | L: spi-devel-general@lists.sourceforge.net |
| 3663 | S: Maintained |
| 3664 | |
Steven Rostedt | 855f46a | 2006-08-05 12:14:50 -0700 | [diff] [blame] | 3665 | STABLE BRANCH: |
| 3666 | P: Greg Kroah-Hartman |
| 3667 | M: greg@kroah.com |
| 3668 | P: Chris Wright |
| 3669 | M: chrisw@sous-sol.org |
| 3670 | L: stable@kernel.org |
| 3671 | S: Maintained |
| 3672 | |
Kylene Hall | 1c72d46 | 2005-05-01 08:59:13 -0700 | [diff] [blame] | 3673 | TPM DEVICE DRIVER |
| 3674 | P: Kylene Hall |
Kent Yoder | 8e81cc1 | 2007-08-22 14:01:04 -0700 | [diff] [blame] | 3675 | M: tpmdd-devel@lists.sourceforge.net |
Kylene Hall | 1c72d46 | 2005-05-01 08:59:13 -0700 | [diff] [blame] | 3676 | W: http://tpmdd.sourceforge.net |
Marcel Selhorst | d3a7b6d | 2007-03-16 13:38:31 -0800 | [diff] [blame] | 3677 | P: Marcel Selhorst |
| 3678 | M: tpm@selhorst.net |
| 3679 | W: http://www.prosec.rub.de/tpm/ |
Stephen Rothwell | 3bd2aad | 2007-05-15 01:41:36 -0700 | [diff] [blame] | 3680 | L: tpmdd-devel@lists.sourceforge.net |
Kylene Hall | 1c72d46 | 2005-05-01 08:59:13 -0700 | [diff] [blame] | 3681 | S: Maintained |
| 3682 | |
Mark Gross | 1a80ba8 | 2005-10-30 15:02:55 -0800 | [diff] [blame] | 3683 | Telecom Clock Driver for MCPL0010 |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3684 | P: Mark Gross |
| 3685 | M: mark.gross@intel.com |
| 3686 | S: Supported |
Mark Gross | 1a80ba8 | 2005-10-30 15:02:55 -0800 | [diff] [blame] | 3687 | |
Chris Zankel | 48b415c | 2005-06-23 22:01:07 -0700 | [diff] [blame] | 3688 | TENSILICA XTENSA PORT (xtensa): |
| 3689 | P: Chris Zankel |
| 3690 | M: chris@zankel.net |
| 3691 | S: Maintained |
| 3692 | |
Henrique de Moraes Holschuh | 756970a | 2007-03-29 01:58:44 -0300 | [diff] [blame] | 3693 | THINKPAD ACPI EXTRAS DRIVER |
| 3694 | P: Henrique de Moraes Holschuh |
| 3695 | M: ibm-acpi@hmh.eng.br |
| 3696 | L: ibm-acpi-devel@lists.sourceforge.net |
| 3697 | W: http://ibm-acpi.sourceforge.net |
| 3698 | W: http://thinkwiki.org/wiki/Ibm-acpi |
| 3699 | T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
| 3700 | S: Maintained |
| 3701 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3702 | UltraSPARC (sparc64): |
| 3703 | P: David S. Miller |
| 3704 | M: davem@davemloft.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3705 | L: sparclinux@vger.kernel.org |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 3706 | T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3707 | S: Maintained |
| 3708 | |
| 3709 | SHARP LH SUPPORT (LH7952X & LH7A40X) |
| 3710 | P: Marc Singer |
| 3711 | M: elf@buici.com |
| 3712 | W: http://projects.buici.com/arm |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 3713 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3714 | S: Maintained |
| 3715 | |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 3716 | SHPC HOTPLUG DRIVER |
| 3717 | P: Kristen Carlson Accardi |
| 3718 | M: kristen.c.accardi@intel.com |
| 3719 | L: pcihpd-discuss@lists.sourceforge.net |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 3720 | S: Supported |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 3721 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3722 | SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER |
| 3723 | P: Pierre Ossman |
| 3724 | M: drzeus-sdhci@drzeus.cx |
| 3725 | L: sdhci-devel@list.drzeus.cx |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3726 | S: Maintained |
| 3727 | |
Stephen Hemminger | 4b1ac9ab | 2005-09-21 09:55:41 -0700 | [diff] [blame] | 3728 | SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS |
| 3729 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 3730 | M: shemminger@linux-foundation.org |
Stephen Hemminger | 4b1ac9ab | 2005-09-21 09:55:41 -0700 | [diff] [blame] | 3731 | L: netdev@vger.kernel.org |
| 3732 | S: Maintained |
| 3733 | |
Chris Boot | 1a87d94 | 2006-07-10 04:45:34 -0700 | [diff] [blame] | 3734 | SOEKRIS NET48XX LED SUPPORT |
| 3735 | P: Chris Boot |
| 3736 | M: bootc@bootc.net |
| 3737 | S: Maintained |
| 3738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3739 | SPARC (sparc32): |
| 3740 | P: William L. Irwin |
| 3741 | M: wli@holomorphy.com |
| 3742 | L: sparclinux@vger.kernel.org |
| 3743 | S: Maintained |
| 3744 | |
| 3745 | SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER |
| 3746 | P: Roger Wolff |
| 3747 | M: R.E.Wolff@BitWizard.nl |
| 3748 | L: linux-kernel@vger.kernel.org ? |
| 3749 | S: Supported |
| 3750 | |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 3751 | SPIDERNET NETWORK DRIVER for CELL |
Jens Osterkamp | cb8da8a | 2008-01-11 13:44:35 +0100 | [diff] [blame] | 3752 | P: Ishizaki Kou |
| 3753 | M: kou.ishizaki@toshiba.co.jp |
| 3754 | P: Jens Osterkamp |
| 3755 | M: jens@de.ibm.com |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 3756 | L: netdev@vger.kernel.org |
| 3757 | S: Supported |
| 3758 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3759 | SRM (Alpha) environment access |
| 3760 | P: Jan-Benedict Glaw |
| 3761 | M: jbglaw@lug-owl.de |
| 3762 | L: linux-kernel@vger.kernel.org |
| 3763 | S: Maintained |
| 3764 | |
| 3765 | STARFIRE/DURALAN NETWORK DRIVER |
| 3766 | P: Ion Badulescu |
| 3767 | M: ionut@cs.columbia.edu |
| 3768 | S: Maintained |
| 3769 | |
| 3770 | STARMODE RADIO IP (STRIP) PROTOCOL DRIVER |
| 3771 | W: http://mosquitonet.Stanford.EDU/strip.html |
| 3772 | S: Unsupported ? |
| 3773 | |
| 3774 | STRADIS MPEG-2 DECODER DRIVER |
| 3775 | P: Nathan Laredo |
| 3776 | M: laredo@gnu.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3777 | W: http://www.stradis.com/ |
| 3778 | S: Maintained |
| 3779 | |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 3780 | SUPERH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3781 | P: Paul Mundt |
| 3782 | M: lethal@linux-sh.org |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 3783 | L: linux-sh@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3784 | W: http://www.linux-sh.org |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 3785 | T: git kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3786 | S: Maintained |
| 3787 | |
| 3788 | SUN3/3X |
| 3789 | P: Sam Creasey |
| 3790 | M: sammy@sammy.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3791 | W: http://sammy.net/sun3/ |
| 3792 | S: Maintained |
| 3793 | |
| 3794 | SVGA HANDLING |
| 3795 | P: Martin Mares |
| 3796 | M: mj@ucw.cz |
| 3797 | L: linux-video@atrey.karlin.mff.cuni.cz |
| 3798 | S: Maintained |
| 3799 | |
| 3800 | SYSV FILESYSTEM |
| 3801 | P: Christoph Hellwig |
| 3802 | M: hch@infradead.org |
| 3803 | S: Maintained |
| 3804 | |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 3805 | TC CLASSIFIER |
| 3806 | P: Jamal Hadi Salim |
| 3807 | M: hadi@cyberus.ca |
| 3808 | L: netdev@vger.kernel.org |
| 3809 | S: Maintained |
| 3810 | |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 3811 | TCP LOW PRIORITY MODULE |
| 3812 | P: Wong Hoi Sing, Edison |
| 3813 | M: hswong3i@gmail.com |
| 3814 | P: Hung Hing Lun, Mike |
| 3815 | M: hlhung3i@gmail.com |
| 3816 | W: http://tcp-lp-mod.sourceforge.net/ |
| 3817 | S: Maintained |
| 3818 | |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 3819 | TEHUTI ETHERNET DRIVER |
| 3820 | P: Alexander Indenbaum |
| 3821 | M: baum@tehutinetworks.net |
| 3822 | P: Andy Gospodarek |
| 3823 | M: andy@greyhouse.net |
| 3824 | L: netdev@vger.kernel.org |
| 3825 | S: Supported |
| 3826 | |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 3827 | TI FLASH MEDIA INTERFACE DRIVER |
| 3828 | P: Alex Dubov |
| 3829 | M: oakad@yahoo.com |
| 3830 | S: Maintained |
| 3831 | |
Syed Khasim | 9f9c24f | 2007-05-16 01:07:22 +0200 | [diff] [blame] | 3832 | TI OMAP MMC INTERFACE DRIVER |
| 3833 | P: Carlos Aguiar, Anderson Briglia and Syed Khasim |
Randy Dunlap | e82ce35 | 2007-10-16 23:29:44 -0700 | [diff] [blame] | 3834 | M: linux-omap-open-source@linux.omap.com (subscribers only) |
Syed Khasim | 9f9c24f | 2007-05-16 01:07:22 +0200 | [diff] [blame] | 3835 | W: http://linux.omap.com |
| 3836 | W: http://www.muru.com/linux/omap/ |
| 3837 | S: Maintained |
| 3838 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 3839 | TI OMAP RANDOM NUMBER GENERATOR SUPPORT |
| 3840 | P: Deepak Saxena |
| 3841 | M: dsaxena@plexity.net |
| 3842 | S: Maintained |
| 3843 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 3844 | TASKSTATS STATISTICS INTERFACE |
| 3845 | P: Shailabh Nagar |
| 3846 | M: nagar@watson.ibm.com |
| 3847 | L: linux-kernel@vger.kernel.org |
| 3848 | S: Maintained |
| 3849 | |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 3850 | TIPC NETWORK LAYER |
| 3851 | P: Per Liden |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 3852 | M: per.liden@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 3853 | P: Jon Maloy |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 3854 | M: jon.maloy@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 3855 | P: Allan Stephens |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 3856 | M: allan.stephens@windriver.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 3857 | L: tipc-discussion@lists.sourceforge.net |
| 3858 | W: http://tipc.sourceforge.net/ |
| 3859 | W: http://tipc.cslab.ericsson.net/ |
| 3860 | T: git tipc.cslab.ericsson.net:/pub/git/tipc.git |
| 3861 | S: Maintained |
| 3862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3863 | TLAN NETWORK DRIVER |
| 3864 | P: Samuel Chessman |
| 3865 | M: chessman@tux.org |
Gabriel Craciunescu | 88c07dd | 2007-11-22 19:43:36 +0800 | [diff] [blame] | 3866 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3867 | W: http://sourceforge.net/projects/tlan/ |
| 3868 | S: Maintained |
| 3869 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3870 | TOSHIBA ACPI EXTRAS DRIVER |
| 3871 | P: John Belmonte |
| 3872 | M: toshiba_acpi@memebeam.org |
| 3873 | W: http://memebeam.org/toys/ToshibaAcpiDriver |
| 3874 | S: Maintained |
| 3875 | |
| 3876 | TOSHIBA SMM DRIVER |
| 3877 | P: Jonathan Buzzard |
| 3878 | M: jonathan@buzzard.org.uk |
| 3879 | L: tlinux-users@tce.toshiba-dme.co.jp |
| 3880 | W: http://www.buzzard.org.uk/toshiba/ |
| 3881 | S: Maintained |
| 3882 | |
| 3883 | TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE |
| 3884 | P: Muli Ben-Yehuda |
| 3885 | M: mulix@mulix.org |
| 3886 | L: linux-kernel@vger.kernel.org |
| 3887 | S: Maintained |
| 3888 | |
| 3889 | TRIVIAL PATCHES |
Adrian Bunk | 1560a79 | 2008-02-03 18:17:37 +0200 | [diff] [blame] | 3890 | P: Jesper Juhl |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3891 | M: trivial@kernel.org |
| 3892 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3893 | S: Maintained |
| 3894 | |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 3895 | TULIP NETWORK DRIVERS |
| 3896 | P: Grant Grundler |
| 3897 | M: grundler@parisc-linux.org |
| 3898 | P: Kyle McMartin |
| 3899 | M: kyle@parisc-linux.org |
| 3900 | L: netdev@vger.kernel.org |
| 3901 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3902 | |
| 3903 | TUN/TAP driver |
| 3904 | P: Maxim Krasnyansky |
Dave Jones | 66777b7 | 2006-03-25 03:07:53 -0800 | [diff] [blame] | 3905 | M: maxk@qualcomm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | L: vtun@office.satix.net |
| 3907 | W: http://vtun.sourceforge.net/tun |
| 3908 | S: Maintained |
| 3909 | |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 3910 | TURBOCHANNEL SUBSYSTEM |
| 3911 | P: Maciej W. Rozycki |
| 3912 | M: macro@linux-mips.org |
| 3913 | S: Maintained |
| 3914 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3915 | U14-34F SCSI DRIVER |
| 3916 | P: Dario Ballabio |
| 3917 | M: ballabio_dario@emc.com |
| 3918 | L: linux-scsi@vger.kernel.org |
| 3919 | S: Maintained |
| 3920 | |
| 3921 | UDF FILESYSTEM |
Jan Kara | 800fdfb | 2008-02-08 04:20:51 -0800 | [diff] [blame] | 3922 | P: Jan Kara |
| 3923 | M: jack@suse.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3924 | W: http://linux-udf.sourceforge.net |
| 3925 | S: Maintained |
| 3926 | |
| 3927 | UNIFORM CDROM DRIVER |
| 3928 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 3929 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3930 | L: linux-kernel@vger.kernel.org |
| 3931 | W: http://www.kernel.dk |
| 3932 | S: Maintained |
| 3933 | |
| 3934 | USB ACM DRIVER |
| 3935 | P: Oliver Neukum |
| 3936 | M: oliver@neukum.name |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3937 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3938 | S: Maintained |
| 3939 | |
Jiri Slaby | 6d98516 | 2008-02-06 01:37:11 -0800 | [diff] [blame] | 3940 | USB AUERSWALD DRIVER |
| 3941 | P: Wolfgang Muees |
| 3942 | M: wolfgang@iksw-muees.de |
| 3943 | L: linux-usb@vger.kernel.org |
| 3944 | S: Maintained |
| 3945 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3946 | USB BLOCK DRIVER (UB ub) |
| 3947 | P: Pete Zaitcev |
| 3948 | M: zaitcev@redhat.com |
| 3949 | L: linux-kernel@vger.kernel.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3950 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3951 | S: Supported |
| 3952 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3953 | USB CDC ETHERNET DRIVER |
| 3954 | P: Greg Kroah-Hartman |
| 3955 | M: greg@kroah.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3956 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3957 | S: Maintained |
| 3958 | W: http://www.kroah.com/linux-usb/ |
| 3959 | |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 3960 | USB DAVICOM DM9601 DRIVER |
| 3961 | P: Peter Korsgaard |
| 3962 | M: jacmet@sunsite.dk |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 3963 | L: netdev@vger.kernel.org |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 3964 | W: http://www.linux-usb.org/usbnet |
| 3965 | S: Maintained |
| 3966 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3967 | USB EHCI DRIVER |
| 3968 | P: David Brownell |
| 3969 | M: dbrownell@users.sourceforge.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3970 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 3971 | S: Odd Fixes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3972 | |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 3973 | USB ET61X[12]51 DRIVER |
| 3974 | P: Luca Risolia |
| 3975 | M: luca.risolia@studio.unibo.it |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3976 | L: linux-usb@vger.kernel.org |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 3977 | L: video4linux-list@redhat.com |
| 3978 | W: http://www.linux-projects.org |
| 3979 | S: Maintained |
| 3980 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 3981 | USB GADGET/PERIPHERAL SUBSYSTEM |
| 3982 | P: David Brownell |
| 3983 | M: dbrownell@users.sourceforge.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3984 | L: linux-usb@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 3985 | W: http://www.linux-usb.org/gadget |
| 3986 | S: Maintained |
| 3987 | |
Jiri Kosina | 2dea64b | 2007-07-11 12:12:11 +0200 | [diff] [blame] | 3988 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
Jiri Kosina | 641266fd | 2007-01-15 09:56:21 +0100 | [diff] [blame] | 3989 | P: Jiri Kosina |
| 3990 | M: jkosina@suse.cz |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3991 | L: linux-usb@vger.kernel.org |
Jiri Kosina | a4dff39 | 2007-02-27 17:40:09 +0100 | [diff] [blame] | 3992 | T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3993 | S: Maintained |
| 3994 | |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 3995 | USB ISP116X DRIVER |
| 3996 | P: Olav Kongas |
| 3997 | M: ok@artecdesign.ee |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3998 | L: linux-usb@vger.kernel.org |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 3999 | S: Maintained |
| 4000 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4001 | USB KAWASAKI LSI DRIVER |
| 4002 | P: Oliver Neukum |
| 4003 | M: oliver@neukum.name |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4004 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4005 | S: Maintained |
| 4006 | |
| 4007 | USB MASS STORAGE DRIVER |
| 4008 | P: Matthew Dharm |
| 4009 | M: mdharm-usb@one-eyed-alien.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4010 | L: linux-usb@vger.kernel.org |
Matthew Dharm | 8836aeb | 2005-12-04 22:03:47 -0800 | [diff] [blame] | 4011 | L: usb-storage@lists.one-eyed-alien.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4012 | S: Maintained |
| 4013 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ |
| 4014 | |
| 4015 | USB OHCI DRIVER |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 4016 | P: David Brownell |
| 4017 | M: dbrownell@users.sourceforge.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4018 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 4019 | S: Odd Fixes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4020 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 4021 | USB OPTION-CARD DRIVER |
| 4022 | P: Matthias Urlichs |
| 4023 | M: smurf@smurf.noris.de |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4024 | L: linux-usb@vger.kernel.org |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 4025 | S: Maintained |
| 4026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4027 | USB OV511 DRIVER |
| 4028 | P: Mark McClelland |
| 4029 | M: mmcclell@bigfoot.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4030 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4031 | W: http://alpha.dyndns.org/ov511/ |
| 4032 | S: Maintained |
| 4033 | |
| 4034 | USB PEGASUS DRIVER |
| 4035 | P: Petko Manolov |
| 4036 | M: petkan@users.sourceforge.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4037 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 4038 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4039 | W: http://pegasus2.sourceforge.net/ |
| 4040 | S: Maintained |
| 4041 | |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 4042 | USB PRINTER DRIVER (usblp) |
| 4043 | P: Pete Zaitcev |
| 4044 | M: zaitcev@redhat.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4045 | L: linux-usb@vger.kernel.org |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 4046 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4047 | |
| 4048 | USB RTL8150 DRIVER |
| 4049 | P: Petko Manolov |
| 4050 | M: petkan@users.sourceforge.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4051 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 4052 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4053 | W: http://pegasus2.sourceforge.net/ |
| 4054 | S: Maintained |
| 4055 | |
| 4056 | USB SE401 DRIVER |
| 4057 | P: Jeroen Vreeken |
| 4058 | M: pe1rxq@amsat.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4059 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4060 | W: http://www.chello.nl/~j.vreeken/se401/ |
| 4061 | S: Maintained |
| 4062 | |
| 4063 | USB SERIAL CYBERJACK DRIVER |
| 4064 | P: Matthias Bruestle and Harald Welte |
| 4065 | M: support@reiner-sct.com |
| 4066 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
| 4067 | S: Maintained |
| 4068 | |
| 4069 | USB SERIAL DIGI ACCELEPORT DRIVER |
| 4070 | P: Peter Berger and Al Borchers |
| 4071 | M: pberger@brimson.com |
| 4072 | M: alborchers@steinerpoint.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4073 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4074 | S: Maintained |
| 4075 | |
| 4076 | USB SERIAL DRIVER |
| 4077 | P: Greg Kroah-Hartman |
| 4078 | M: gregkh@suse.de |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4079 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4080 | S: Supported |
| 4081 | |
| 4082 | USB SERIAL BELKIN F5U103 DRIVER |
| 4083 | P: William Greathouse |
| 4084 | M: wgreathouse@smva.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4085 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4086 | S: Maintained |
| 4087 | |
| 4088 | USB SERIAL CYPRESS M8 DRIVER |
| 4089 | P: Lonnie Mendez |
| 4090 | M: dignome@gmail.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4091 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4092 | S: Maintained |
| 4093 | W: http://geocities.com/i0xox0i |
| 4094 | W: http://firstlight.net/cvs |
| 4095 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4096 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
| 4097 | P: Gary Brubaker |
| 4098 | M: xavyer@ix.netcom.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4099 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4100 | S: Maintained |
| 4101 | |
| 4102 | USB SERIAL KEYSPAN DRIVER |
| 4103 | P: Greg Kroah-Hartman |
| 4104 | M: greg@kroah.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4105 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4106 | W: http://www.kroah.com/linux/ |
| 4107 | S: Maintained |
| 4108 | |
| 4109 | USB SERIAL WHITEHEAT DRIVER |
Stuart MacDonald | 8bc8493 | 2007-05-04 16:00:03 -0400 | [diff] [blame] | 4110 | P: Support Department |
| 4111 | M: support@connecttech.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4112 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4113 | W: http://www.connecttech.com |
| 4114 | S: Supported |
| 4115 | |
Luca Risolia | f423b9a | 2007-03-26 16:12:04 -0300 | [diff] [blame] | 4116 | USB SN9C1xx DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4117 | P: Luca Risolia |
| 4118 | M: luca.risolia@studio.unibo.it |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4119 | L: linux-usb@vger.kernel.org |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 4120 | L: video4linux-list@redhat.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4121 | W: http://www.linux-projects.org |
| 4122 | S: Maintained |
| 4123 | |
| 4124 | USB SUBSYSTEM |
| 4125 | P: Greg Kroah-Hartman |
| 4126 | M: gregkh@suse.de |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4127 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4128 | W: http://www.linux-usb.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 4129 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4130 | S: Supported |
| 4131 | |
| 4132 | USB UHCI DRIVER |
| 4133 | P: Alan Stern |
| 4134 | M: stern@rowland.harvard.edu |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4135 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4136 | S: Maintained |
| 4137 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 4138 | USB "USBNET" DRIVER FRAMEWORK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4139 | P: David Brownell |
| 4140 | M: dbrownell@users.sourceforge.net |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 4141 | L: netdev@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 4142 | W: http://www.linux-usb.org/usbnet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4143 | S: Maintained |
| 4144 | |
| 4145 | USB W996[87]CF DRIVER |
| 4146 | P: Luca Risolia |
| 4147 | M: luca.risolia@studio.unibo.it |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4148 | L: linux-usb@vger.kernel.org |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 4149 | L: video4linux-list@redhat.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4150 | W: http://www.linux-projects.org |
| 4151 | S: Maintained |
| 4152 | |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 4153 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
| 4154 | P: Jussi Kivilinna |
| 4155 | M: jussi.kivilinna@mbnet.fi |
| 4156 | L: linux-wireless@vger.kernel.org |
| 4157 | S: Maintained |
| 4158 | |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 4159 | USB ZC0301 DRIVER |
| 4160 | P: Luca Risolia |
| 4161 | M: luca.risolia@studio.unibo.it |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4162 | L: linux-usb@vger.kernel.org |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 4163 | L: video4linux-list@redhat.com |
| 4164 | W: http://www.linux-projects.org |
| 4165 | S: Maintained |
| 4166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4167 | USB ZD1201 DRIVER |
| 4168 | P: Jeroen Vreeken |
| 4169 | M: pe1rxq@amsat.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4170 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4171 | W: http://linux-lc100020.sourceforge.net |
| 4172 | S: Maintained |
| 4173 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 4174 | USB ZR364XX DRIVER |
| 4175 | P: Antoine Jacquet |
| 4176 | M: royale@zerezo.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4177 | L: linux-usb@vger.kernel.org |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 4178 | L: video4linux-list@redhat.com |
| 4179 | W: http://royale.zerezo.com/zr364xx/ |
| 4180 | S: Maintained |
| 4181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4182 | USER-MODE LINUX |
| 4183 | P: Jeff Dike |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 4184 | M: jdike@addtoit.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4185 | L: user-mode-linux-devel@lists.sourceforge.net |
| 4186 | L: user-mode-linux-user@lists.sourceforge.net |
| 4187 | W: http://user-mode-linux.sourceforge.net |
| 4188 | S: Maintained |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 4189 | |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 4190 | USERSPACE I/O (UIO) |
| 4191 | P: Hans J. Koch |
| 4192 | M: hjk@linutronix.de |
| 4193 | P: Greg Kroah-Hartman |
| 4194 | M: gregkh@suse.de |
| 4195 | L: linux-kernel@vger.kernel.org |
| 4196 | S: Maintained |
| 4197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4198 | FAT/VFAT/MSDOS FILESYSTEM: |
| 4199 | P: OGAWA Hirofumi |
| 4200 | M: hirofumi@mail.parknet.co.jp |
| 4201 | L: linux-kernel@vger.kernel.org |
| 4202 | S: Maintained |
| 4203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4204 | VIA RHINE NETWORK DRIVER |
| 4205 | P: Roger Luethi |
| 4206 | M: rl@hellgate.ch |
| 4207 | S: Maintained |
| 4208 | |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 4209 | VIAPRO SMBUS DRIVER |
| 4210 | P: Jean Delvare |
| 4211 | M: khali@linux-fr.org |
Jean Delvare | 5d925fe | 2006-07-01 17:14:32 +0200 | [diff] [blame] | 4212 | L: i2c@lm-sensors.org |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 4213 | S: Maintained |
| 4214 | |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 4215 | VIA VELOCITY NETWORK DRIVER |
| 4216 | P: Francois Romieu |
| 4217 | M: romieu@fr.zoreil.com |
| 4218 | L: netdev@vger.kernel.org |
| 4219 | S: Maintained |
| 4220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4221 | UCLINUX (AND M68KNOMMU) |
| 4222 | P: Greg Ungerer |
| 4223 | M: gerg@uclinux.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4224 | W: http://www.uclinux.org/ |
Adrian Bunk | d660a74 | 2005-06-25 14:59:35 -0700 | [diff] [blame] | 4225 | L: uclinux-dev@uclinux.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4226 | S: Maintained |
| 4227 | |
| 4228 | UCLINUX FOR NEC V850 |
| 4229 | P: Miles Bader |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4230 | |
| 4231 | UCLINUX FOR RENESAS H8/300 |
| 4232 | P: Yoshinori Sato |
| 4233 | M: ysato@users.sourceforge.jp |
| 4234 | W: http://uclinux-h8.sourceforge.jp/ |
| 4235 | S: Supported |
| 4236 | |
Evgeniy Dushistov | 719d969 | 2007-02-02 11:36:34 +0300 | [diff] [blame] | 4237 | UFS FILESYSTEM |
Alan Cox | abb4920 | 2007-06-08 13:47:03 -0700 | [diff] [blame] | 4238 | P: Evgeniy Dushistov |
| 4239 | M: dushistov@mail.ru |
| 4240 | L: linux-kernel@vger.kernel.org |
| 4241 | S: Maintained |
Evgeniy Dushistov | 719d969 | 2007-02-02 11:36:34 +0300 | [diff] [blame] | 4242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4243 | USB DIAMOND RIO500 DRIVER |
| 4244 | P: Cesar Miquel |
| 4245 | M: miquel@df.uba.ar |
| 4246 | L: rio500-users@lists.sourceforge.net |
| 4247 | W: http://rio500.sourceforge.net |
| 4248 | S: Maintained |
| 4249 | |
| 4250 | VIDEO FOR LINUX |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 4251 | P: Mauro Carvalho Chehab |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 4252 | M: mchehab@infradead.org |
| 4253 | M: v4l-dvb-maintainer@linuxtv.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4254 | L: video4linux-list@redhat.com |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 4255 | W: http://linuxtv.org |
Mauro Carvalho Chehab | ecfa4fd | 2005-12-19 09:15:13 -0200 | [diff] [blame] | 4256 | T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 4257 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4258 | |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 4259 | VLAN (802.1Q) |
| 4260 | P: Patrick McHardy |
| 4261 | M: kaber@trash.net |
| 4262 | L: netdev@vger.kernel.org |
| 4263 | S: Maintained |
| 4264 | |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 4265 | VT1211 HARDWARE MONITOR DRIVER |
| 4266 | P: Juerg Haefliger |
| 4267 | M: juergh@gmail.com |
| 4268 | L: lm-sensors@lm-sensors.org |
| 4269 | S: Maintained |
| 4270 | |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 4271 | VT8231 HARDWARE MONITOR DRIVER |
| 4272 | P: Roger Lucas |
Roger Lucas | af86576 | 2008-02-13 07:52:06 -0500 | [diff] [blame] | 4273 | M: vt8231@hiddenengine.co.uk |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 4274 | L: lm-sensors@lm-sensors.org |
| 4275 | S: Maintained |
| 4276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4277 | W1 DALLAS'S 1-WIRE BUS |
| 4278 | P: Evgeniy Polyakov |
| 4279 | M: johnpol@2ka.mipt.ru |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4280 | S: Maintained |
| 4281 | |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 4282 | W83791D HARDWARE MONITORING DRIVER |
| 4283 | P: Charles Spirakis |
| 4284 | M: bezaur@gmail.com |
| 4285 | L: lm-sensors@lm-sensors.org |
Charles Spirakis | 6438312 | 2007-09-04 13:31:56 -0700 | [diff] [blame] | 4286 | S: Odd Fixes |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 4287 | |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 4288 | W83793 HARDWARE MONITORING DRIVER |
| 4289 | P: Rudolf Marek |
| 4290 | M: r.marek@assembler.cz |
| 4291 | L: lm-sensors@lm-sensors.org |
| 4292 | S: Maintained |
| 4293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4294 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
| 4295 | P: Pierre Ossman |
| 4296 | M: drzeus-wbsd@drzeus.cx |
Pierre Ossman | fac8899 | 2007-01-27 13:18:26 +0100 | [diff] [blame] | 4297 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4298 | S: Maintained |
| 4299 | |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 4300 | WATCHDOG DEVICE DRIVERS |
| 4301 | P: Wim Van Sebroeck |
| 4302 | M: wim@iguana.be |
| 4303 | T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git |
| 4304 | S: Maintained |
| 4305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4306 | WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS |
| 4307 | P: Jean Tourrilhes |
| 4308 | M: jt@hpl.hp.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4309 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4310 | W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/ |
| 4311 | S: Maintained |
| 4312 | |
| 4313 | WD7000 SCSI DRIVER |
| 4314 | P: Miroslav Zagorac |
| 4315 | M: zaga@fly.cc.fer.hr |
| 4316 | L: linux-scsi@vger.kernel.org |
| 4317 | S: Maintained |
| 4318 | |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 4319 | WISTRON LAPTOP BUTTON DRIVER |
| 4320 | P: Miloslav Trmac |
| 4321 | M: mitr@volny.cz |
| 4322 | S: Maintained |
| 4323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4324 | WL3501 WIRELESS PCMCIA CARD DRIVER |
| 4325 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 4326 | M: acme@ghostprotocols.net |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4327 | L: linux-wireless@vger.kernel.org |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 4328 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4329 | S: Maintained |
| 4330 | |
| 4331 | X.25 NETWORK LAYER |
| 4332 | P: Henner Eisen |
| 4333 | M: eis@baty.hanse.de |
| 4334 | L: linux-x25@vger.kernel.org |
| 4335 | S: Maintained |
| 4336 | |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 4337 | XEN HYPERVISOR INTERFACE |
| 4338 | P: Jeremy Fitzhardinge |
| 4339 | M: jeremy@xensource.com |
| 4340 | P: Chris Wright |
| 4341 | M: chrisw@sous-sol.org |
| 4342 | L: virtualization@lists.osdl.org |
| 4343 | L: xen-devel@lists.xensource.com |
| 4344 | S: Supported |
| 4345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4346 | XFS FILESYSTEM |
| 4347 | P: Silicon Graphics Inc |
Timothy Shimmin | 78bfd36 | 2007-06-11 20:42:09 -0700 | [diff] [blame] | 4348 | P: Tim Shimmin |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4349 | M: xfs-masters@oss.sgi.com |
Nathan Scott | d7ede1a | 2006-06-13 16:28:11 +1000 | [diff] [blame] | 4350 | L: xfs@oss.sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4351 | W: http://oss.sgi.com/projects/xfs |
Tim Shimmin | e99f056 | 2007-06-19 15:26:35 +1000 | [diff] [blame] | 4352 | T: git git://oss.sgi.com:8090/xfs/xfs-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4353 | S: Supported |
| 4354 | |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 4355 | XILINX SYSTEMACE DRIVER |
| 4356 | P: Grant Likely |
| 4357 | M: grant.likely@secretlab.ca |
| 4358 | W: http://www.secretlab.ca/ |
| 4359 | L: linux-kernel@vger.kernel.org |
| 4360 | S: Maintained |
| 4361 | |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 4362 | XILINX UARTLITE SERIAL DRIVER |
| 4363 | P: Peter Korsgaard |
| 4364 | M: jacmet@sunsite.dk |
| 4365 | L: linux-serial@vger.kernel.org |
| 4366 | S: Maintained |
| 4367 | |
Ingo Molnar | 6ce59b4 | 2007-10-20 02:36:26 +0200 | [diff] [blame] | 4368 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
| 4369 | P: Thomas Gleixner |
| 4370 | M: tglx@linutronix.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4371 | P: Ingo Molnar |
| 4372 | M: mingo@redhat.com |
Ingo Molnar | 6ce59b4 | 2007-10-20 02:36:26 +0200 | [diff] [blame] | 4373 | P: H. Peter Anvin |
| 4374 | M: hpa@zytor.com |
| 4375 | L: linux-kernel@vger.kernel.org |
| 4376 | T: git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4377 | S: Maintained |
| 4378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4379 | YAM DRIVER FOR AX.25 |
| 4380 | P: Jean-Paul Roubelat |
| 4381 | M: jpr@f6fbb.org |
| 4382 | L: linux-hams@vger.kernel.org |
| 4383 | S: Maintained |
| 4384 | |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 4385 | YEALINK PHONE DRIVER |
| 4386 | P: Henk Vergonet |
| 4387 | M: Henk.Vergonet@gmail.com |
| 4388 | L: usbb2k-api-dev@nongnu.org |
| 4389 | S: Maintained |
| 4390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4391 | Z8530 DRIVER FOR AX.25 |
| 4392 | P: Joerg Reuter |
| 4393 | M: jreuter@yaina.de |
| 4394 | W: http://yaina.de/jreuter/ |
| 4395 | W: http://www.qsl.net/dl1bke/ |
| 4396 | L: linux-hams@vger.kernel.org |
| 4397 | S: Maintained |
| 4398 | |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 4399 | ZD1211RW WIRELESS DRIVER |
| 4400 | P: Daniel Drake |
| 4401 | M: dsd@gentoo.org |
| 4402 | P: Ulrich Kunitz |
| 4403 | M: kune@deine-taler.de |
| 4404 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4405 | L: linux-wireless@vger.kernel.org |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 4406 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
| 4407 | S: Maintained |
| 4408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4409 | ZF MACHZ WATCHDOG |
| 4410 | P: Fernando Fuganti |
| 4411 | M: fuganti@netbank.com.br |
| 4412 | W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/ |
| 4413 | S: Maintained |
| 4414 | |
| 4415 | ZR36067 VIDEO FOR LINUX DRIVER |
| 4416 | P: Ronald Bultje |
| 4417 | M: rbultje@ronald.bitfreak.net |
| 4418 | L: mjpeg-users@lists.sourceforge.net |
| 4419 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
| 4420 | S: Maintained |
| 4421 | |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 4422 | ZS DECSTATION Z85C30 SERIAL DRIVER |
| 4423 | P: Maciej W. Rozycki |
| 4424 | M: macro@linux-mips.org |
| 4425 | S: Maintained |
| 4426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4427 | THE REST |
| 4428 | P: Linus Torvalds |
| 4429 | S: Buried alive in reporters |