MAINTAINERS 147.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

	List of maintainers and how to submit kernel changes

Please try to follow the guidelines below.  This will make things
easier on the maintainers.  Not all of these guidelines matter for every
trivial patch so apply some common sense.

1.	Always _test_ your changes, however small, on at least 4 or
	5 people, preferably many more.

2.	Try to release a few ALPHA test versions to the net. Announce
	them onto the kernel channel and await results. This is especially
	important for device drivers, because often that's the only way
	you will find things like the fact version 3 firmware needs
	a magic fix you didn't know about, or some clown changed the
	chips on a board and not its name.  (Don't laugh!  Look at the
	SMC etherpower for that.)

3.	Make sure your changes compile correctly in multiple
	configurations. In particular check that changes work both as a
	module and built into the kernel.

4.	When you are happy with a change make it generally available for
	testing and await feedback.

5.	Make a patch available to the relevant maintainer in the list. Use
	'diff -u' to make the patch easy to merge. Be prepared to get your
	changes sent back with seemingly silly requests about formatting
	and variable names.  These aren't as silly as they seem. One
	job the maintainers (and especially Linus) do is to keep things
	looking the same. Sometimes this means that the clever hack in
	your driver to get around a problem actually needs to become a
33 34 35 36 37
	generalized kernel feature ready for next time.

	PLEASE check your patch with the automated style checker
	(scripts/checkpatch.pl) to catch trival style violations.
	See Documentation/CodingStyle for guidance here.
L
Linus Torvalds 已提交
38

39 40 41 42 43 44
	PLEASE CC: the maintainers and mailing lists that are generated
	by scripts/get_maintainer.pl.  The results returned by the
	script will be best if you have git installed and are making
	your changes in a branch derived from Linus' latest git tree.
	See Documentation/SubmittingPatches for details.

L
Linus Torvalds 已提交
45 46 47 48 49 50 51
	PLEASE try to include any credit lines you want added with the
	patch. It avoids people being missed off by mistake and makes
	it easier to know who wants adding and who doesn't.

	PLEASE document known bugs. If it doesn't work for everything
	or does something very odd once a month document it.

52
	PLEASE remember that submissions must be made under the terms
53 54 55 56
	of the OSDL certificate of contribution and should include a
	Signed-off-by: line.  The current version of this "Developer's
	Certificate of Origin" (DCO) is listed in the file
	Documentation/SubmittingPatches.
57

L
Linus Torvalds 已提交
58 59 60 61
6.	Make sure you have the right to send any changes you make. If you
	do changes at work you may find your employer owns the patch
	not you.

62 63 64 65 66
7.	When sending security related changes or reports to a maintainer
	please Cc: security@kernel.org, especially if the maintainer
	does not respond.

8.	Happy hacking.
L
Linus Torvalds 已提交
67

68
		-----------------------------------
L
Linus Torvalds 已提交
69 70 71 72 73 74 75 76 77 78 79

Maintainers List (try to look for most precise areas first)

Note: For the hard of thinking, this list is meant to remain in alphabetical
order. If you could add yourselves to it in alphabetical order that would be
so much easier [Ed]

P: Person
M: Mail patches to
L: Mailing list that is relevant to this area
W: Web-page with status/info
A
Alan Cox 已提交
80
T: SCM tree type and location.  Type is one of: git, hg, quilt, stgit.
81
S: Status, one of the following:
L
Linus Torvalds 已提交
82 83 84 85 86 87 88 89 90 91 92

	Supported:	Someone is actually paid to look after this.
	Maintained:	Someone actually looks after it.
	Odd Fixes:	It has a maintainer but they don't have time to do
			much other than throw the odd patch in. See below..
	Orphan:		No current maintainer [but maybe you could take the
			role as you write your new code].
	Obsolete:	Old code. Something tagged obsolete generally means
			it has been replaced by a better system and you
			should be using that.

93 94 95 96 97 98 99 100 101 102 103 104 105
F: Files and directories with wildcard patterns.
   A trailing slash includes all files and subdirectory files.
	F:	drivers/net/	all files in and below drivers/net
	F:	drivers/net/*	all files in drivers/net, but not below
	F:	*/net/*		all files in "any top level directory"/net
   One pattern per line.  Multiple F: lines acceptable.
X: Files and directories that are NOT maintained, same rules as F:
   Files exclusions are tested before file matches.
   Can be useful for excluding a specific subdirectory, for instance:
	F:	net/
	X:	net/ipv6/
   matches all files in and below net excluding net/ipv6/

L
Linus Torvalds 已提交
106 107 108
3C505 NETWORK DRIVER
P:	Philip Blundell
M:	philb@gnu.org
109
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
110
S:	Maintained
111
F:	drivers/net/3c505*
L
Linus Torvalds 已提交
112

S
Steffen Klassert 已提交
113 114 115 116 117
3C59X NETWORK DRIVER
P:	Steffen Klassert
M:	klassert@mathematik.tu-chemnitz.de
L:	netdev@vger.kernel.org
S:	Maintained
118 119
F:	Documentation/networking/vortex.txt
F:	drivers/net/3c59x.c
S
Steffen Klassert 已提交
120

L
Linus Torvalds 已提交
121 122 123
3CR990 NETWORK DRIVER
P:	David Dillow
M:	dave@thedillows.org
124
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
125
S:	Maintained
126
F:	drivers/net/typhoon*
L
Linus Torvalds 已提交
127

R
Randy Dunlap 已提交
128
3W-9XXX SATA-RAID CONTROLLER DRIVER
L
Linus Torvalds 已提交
129 130 131 132 133
P:	Adam Radford
M:	linuxraid@amcc.com
L:	linux-scsi@vger.kernel.org
W:	http://www.amcc.com
S:	Supported
134
F:	drivers/scsi/3w-9xxx*
L
Linus Torvalds 已提交
135

R
Randy Dunlap 已提交
136
3W-XXXX ATA-RAID CONTROLLER DRIVER
L
Linus Torvalds 已提交
137 138 139 140 141
P:	Adam Radford
M:	linuxraid@amcc.com
L:	linux-scsi@vger.kernel.org
W:	http://www.amcc.com
S:	Supported
142
F:	drivers/scsi/3w-xxxx*
L
Linus Torvalds 已提交
143 144 145 146 147 148

53C700 AND 53C700-66 SCSI DRIVER
P:	James E.J. Bottomley
M:	James.Bottomley@HansenPartnership.com
L:	linux-scsi@vger.kernel.org
S:	Maintained
149
F:	drivers/scsi/53c700*
L
Linus Torvalds 已提交
150 151 152 153 154 155

6PACK NETWORK DRIVER FOR AX.25
P:	Andreas Koensgen
M:	ajk@iehk.rwth-aachen.de
L:	linux-hams@vger.kernel.org
S:	Maintained
156
F:	drivers/net/hamradio/6pack.c
L
Linus Torvalds 已提交
157 158 159 160

8169 10/100/1000 GIGABIT ETHERNET DRIVER
P:	Francois Romieu
M:	romieu@fr.zoreil.com
161
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
162
S:	Maintained
163
F:	drivers/net/r8169.c
L
Linus Torvalds 已提交
164 165

8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
166 167
P:	Alan Cox
M:	alan@lxorguk.ukuu.org.uk
L
Linus Torvalds 已提交
168 169
L:	linux-serial@vger.kernel.org
W:	http://serial.sourceforge.net
170
S:	Odd Fixes
171 172
F:	drivers/serial/8250*
F:	include/linux/serial_8250.h
L
Linus Torvalds 已提交
173 174 175 176

8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
P:	Paul Gortmaker
M:	p_gortmaker@yahoo.com
177
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
178
S:	Maintained
179 180
F:	drivers/net/*8390*
F:	drivers/net/ax88796.c
L
Linus Torvalds 已提交
181

182
9P FILE SYSTEM
J
Jim Cromie 已提交
183 184 185
P:	Eric Van Hensbergen
M:	ericvh@gmail.com
P:	Ron Minnich
186
M:	rminnich@sandia.gov
J
Jim Cromie 已提交
187 188 189
P:	Latchesar Ionkov
M:	lucho@ionkov.net
L:	v9fs-developer@lists.sourceforge.net
190
W:	http://swik.net/v9fs
191
T:	git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git
J
Jim Cromie 已提交
192
S:	Maintained
193 194
F:	Documentation/filesystems/9p.txt
F:	fs/9p/
195

L
Linus Torvalds 已提交
196 197 198 199 200
A2232 SERIAL BOARD DRIVER
P:	Enver Haase
M:	A2232@gmx.net
L:	linux-m68k@lists.linux-m68k.org
S:	Maintained
201
F:	drivers/char/ser_a2232*
L
Linus Torvalds 已提交
202

R
Randy Dunlap 已提交
203 204 205 206 207
AACRAID SCSI RAID DRIVER
P:	Adaptec OEM Raid Solutions
M:	aacraid@adaptec.com
L:	linux-scsi@vger.kernel.org
W:	http://www.adaptec.com/
L
Linus Torvalds 已提交
208
S:	Supported
209 210
F:	Documentation/scsi/aacraid.txt
F:	drivers/scsi/aacraid/
L
Linus Torvalds 已提交
211

212
ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
213 214 215 216
P:	Hans de Goede
M:	j.w.r.degoede@hhs.nl
L:	lm-sensors@lm-sensors.org
S:	Maintained
217
F:	drivers/hwmon/abituguru.c
218

219 220 221 222 223
ABIT UGURU 3 HARDWARE MONITOR DRIVER
P:	Alistair John Strachan
M:	alistair@devzero.co.uk
L:	lm-sensors@lm-sensors.org
S:	Maintained
224
F:	drivers/hwmon/abituguru3.c
225

L
Linus Torvalds 已提交
226 227 228 229 230
ACENIC DRIVER
P:	Jes Sorensen
M:	jes@trained-monkey.org
L:	linux-acenic@sunsite.dk
S:	Maintained
231
F:	drivers/net/acenic*
L
Linus Torvalds 已提交
232

233 234 235 236 237 238 239
ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
P: Peter Feuerer
M: peter@piie.net
W: http://piie.net/?section=acerhdf
S: Maintained
F: drivers/platform/x86/acerhdf.c

240 241 242 243 244 245
ACER WMI LAPTOP EXTRAS
P:	Carlos Corbacho
M:	carlos@strangeworlds.co.uk
L:	aceracpi@googlegroups.com (subscribers-only)
W:	http://code.google.com/p/aceracpi
S:	Maintained
246
F:	drivers/platform/x86/acer-wmi.c
247

L
Linus Torvalds 已提交
248
ACPI
249
P:	Len Brown
L
Len Brown 已提交
250
M:	lenb@kernel.org
251
L:	linux-acpi@vger.kernel.org
L
Len Brown 已提交
252
W:	http://www.lesswatts.org/projects/acpi/
253
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
L
Len Brown 已提交
254
S:	Supported
255 256 257
F:	drivers/acpi/
F:	drivers/pnp/pnpacpi/
F:	include/linux/acpi.h
L
Len Brown 已提交
258 259

ACPI BATTERY DRIVERS
260 261
P:	Alexey Starikovskiy
M:	astarikovskiy@suse.de
L
Len Brown 已提交
262
L:	linux-acpi@vger.kernel.org
263
W:	http://www.lesswatts.org/projects/acpi/
L
Len Brown 已提交
264
S:	Supported
265 266
F:	drivers/acpi/battery.c
F:	drivers/acpi/*sbs*
L
Len Brown 已提交
267 268 269

ACPI EC DRIVER
P:	Alexey Starikovskiy
270
M:	astarikovskiy@suse.de
L
Len Brown 已提交
271
L:	linux-acpi@vger.kernel.org
272
W:	http://www.lesswatts.org/projects/acpi/
L
Len Brown 已提交
273
S:	Supported
274
F:	drivers/acpi/ec.c
L
Len Brown 已提交
275 276

ACPI FAN DRIVER
277 278
P:	Zhang Rui
M:	rui.zhang@intel.com
L
Len Brown 已提交
279
L:	linux-acpi@vger.kernel.org
280
W:	http://www.lesswatts.org/projects/acpi/
L
Len Brown 已提交
281
S:	Supported
282
F:	drivers/acpi/fan.c
L
Linus Torvalds 已提交
283

284 285 286
ACPI PCI HOTPLUG DRIVER
P:	Kristen Carlson Accardi
M:	kristen.c.accardi@intel.com
287
L:	linux-pci@vger.kernel.org
L
Len Brown 已提交
288
S:	Supported
289
F:	drivers/pci/hotplug/acpi*
L
Len Brown 已提交
290 291

ACPI THERMAL DRIVER
292 293
P:	Zhang Rui
M:	rui.zhang@intel.com
L
Len Brown 已提交
294
L:	linux-acpi@vger.kernel.org
295
W:	http://www.lesswatts.org/projects/acpi/
L
Len Brown 已提交
296
S:	Supported
297
F:	drivers/acpi/*thermal*
298

299
ACPI VIDEO DRIVER
300
P:	Zhang Rui
L
Len Brown 已提交
301
M:	rui.zhang@intel.com
L
Len Brown 已提交
302
L:	linux-acpi@vger.kernel.org
303
W:	http://www.lesswatts.org/projects/acpi/
L
Len Brown 已提交
304
S:	Supported
305
F:	drivers/acpi/video.c
306

307
ACPI WMI DRIVER
308 309 310 311 312
P:	Carlos Corbacho
M:	carlos@strangeworlds.co.uk
L:	linux-acpi@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
S:	Maintained
313
F:	drivers/platform/x86/wmi.c
314

315
AD1889 ALSA SOUND DRIVER
316 317 318 319 320 321 322
P:	Kyle McMartin
M:	kyle@mcmartin.ca
P:	Thibaut Varene
M:	T-Bone@parisc-linux.org
W:	http://wiki.parisc-linux.org/AD1889
L:	linux-parisc@vger.kernel.org
S:	Maintained
323
F:	sound/pci/ad1889.*
324

L
Linus Torvalds 已提交
325 326 327
ADM1025 HARDWARE MONITOR DRIVER
P:	Jean Delvare
M:	khali@linux-fr.org
328
L:	lm-sensors@lm-sensors.org
L
Linus Torvalds 已提交
329
S:	Maintained
330 331
F:	Documentation/hwmon/adm1025
F:	drivers/hwmon/adm1025.c
L
Linus Torvalds 已提交
332

333 334 335 336 337
ADM1029 HARDWARE MONITOR DRIVER
P:	Corentin Labbe
M:	corentin.labbe@geomatys.fr
L:	lm-sensors@lm-sensors.org
S:	Maintained
338
F:	drivers/hwmon/adm1029.c
339

340 341 342 343 344
ADM8211 WIRELESS DRIVER
P:	Michael Wu
M:	flamingice@sourmilk.net
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/
345
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
346
S:	Maintained
347
F:	drivers/net/wireless/adm8211.*
348

L
Linus Torvalds 已提交
349 350 351 352
ADT746X FAN DRIVER
P:	Colin Leroy
M:	colin@colino.net
S:	Maintained
353
F:	drivers/macintosh/therm_adt746x.c
L
Linus Torvalds 已提交
354

355 356 357 358 359
ADVANSYS SCSI DRIVER
P:	Matthew Wilcox
M:	matthew@wil.cx
L:	linux-scsi@vger.kernel.org
S:	Maintained
360 361
F:	Documentation/scsi/advansys.txt
F:	drivers/scsi/advansys.c
362

L
Linus Torvalds 已提交
363 364 365 366
AEDSP16 DRIVER
P:	Riccardo Facchetti
M:	fizban@tin.it
S:	Maintained
367
F:	sound/oss/aedsp16.c
L
Linus Torvalds 已提交
368 369 370 371 372

AFFS FILE SYSTEM
P:	Roman Zippel
M:	zippel@linux-m68k.org
S:	Maintained
373 374
F:	Documentation/filesystems/affs.txt
F:	fs/affs/
L
Linus Torvalds 已提交
375

R
Randy Dunlap 已提交
376 377 378 379 380
AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
P:	David Howells
M:	dhowells@redhat.com
L:	linux-afs@lists.infradead.org
S:	Supported
381 382 383
F:	fs/afs/
F:	include/net/af_rxrpc.h
F:	net/rxrpc/af_rxrpc.c
R
Randy Dunlap 已提交
384

L
Linus Torvalds 已提交
385
AGPGART DRIVER
386 387
P:	David Airlie
M:	airlied@linux.ie
388
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
L
Linus Torvalds 已提交
389
S:	Maintained
390 391
F:	drivers/char/agp/
F:	include/linux/agp*
L
Linus Torvalds 已提交
392 393 394

AHA152X SCSI DRIVER
P:	Juergen E. Fischer
395
M:	fischer@norbit.de
L
Linus Torvalds 已提交
396 397
L:	linux-scsi@vger.kernel.org
S:	Maintained
398 399
F:	drivers/scsi/aha152x*
F:	drivers/scsi/pcmcia/aha152x*
L
Linus Torvalds 已提交
400

401 402 403 404
AIC7XXX / AIC79XX SCSI DRIVER
P:	Hannes Reinecke
M:	hare@suse.de
L:	linux-scsi@vger.kernel.org
L
Linus Torvalds 已提交
405
S:	Maintained
406 407
F:	drivers/scsi/aic7xxx/
F:	drivers/scsi/aic7xxx_old/
L
Linus Torvalds 已提交
408

R
Randy Dunlap 已提交
409 410 411 412 413
AIO
P:	Benjamin LaHaise
M:	bcrl@kvack.org
L:	linux-aio@kvack.org
S:	Supported
414 415
F:	fs/aio.c
F:	include/linux/*aio*.h
R
Randy Dunlap 已提交
416

L
Linus Torvalds 已提交
417 418 419
ALCATEL SPEEDTOUCH USB DRIVER
P:	Duncan Sands
M:	duncan.sands@free.fr
420
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
421 422
W:	http://www.linux-usb.org/SpeedTouch/
S:	Maintained
423 424
F:	drivers/usb/atm/speedtch.c
F:	drivers/usb/atm/usbatm.c
L
Linus Torvalds 已提交
425

426
ALCHEMY AU1XX0 MMC DRIVER
M
Manuel Lauss 已提交
427 428 429
P:	Manuel Lauss
M:	manuel.lauss@gmail.com
S:	Maintained
430
F:	drivers/mmc/host/au1xmmc.c
431

432 433
ALI1563 I2C DRIVER
P:	Rudolf Marek
434
M:	r.marek@assembler.cz
435
L:	linux-i2c@vger.kernel.org
436
S:	Maintained
437 438
F:	Documentation/i2c/busses/i2c-ali1563
F:	drivers/i2c/busses/i2c-ali1563.c
439

L
Linus Torvalds 已提交
440 441 442 443 444 445 446
ALPHA PORT
P:	Richard Henderson
M:	rth@twiddle.net
S:	Odd Fixes for 2.4; Maintained for 2.6.
P:	Ivan Kokshaysky
M:	ink@jurassic.park.msu.ru
S:	Maintained for 2.4; PCI support for 2.6.
447
L:	linux-alpha@vger.kernel.org
448
F:	arch/alpha/
L
Linus Torvalds 已提交
449

450 451
AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
P:	Thomas Dahlmann
452
M:	dahlmann.thomas@arcor.de
453
L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
454
S:	Supported
455
F:	drivers/usb/gadget/amd5536udc.*
456

457
AMD GEODE PROCESSOR/CHIPSET SUPPORT
J
Jim Cromie 已提交
458
P:	Jordan Crouse
459
L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
460 461
W:	http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
S:	Supported
462 463 464 465 466
F:	arch/x86/kernel/geode_32.c
F:	drivers/char/hw_random/geode-rng.c
F:	drivers/crypto/geode*
F:	drivers/video/geode/
F:	arch/x86/include/asm/geode.h
467

468 469 470 471
AMD IOMMU (AMD-VI)
P:	Joerg Roedel
M:	joerg.roedel@amd.com
L:	iommu@lists.linux-foundation.org
472
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
473
S:	Supported
474 475
F:	arch/x86/kernel/amd_iommu*.c
F:	arch/x86/include/asm/amd_iommu*.h
476

477
AMD MICROCODE UPDATE SUPPORT
478
P:	Andreas Herrmann
479
M:	andreas.herrmann3@amd.com
480 481
L:	amd64-microcode@amd64.org
S:	Supported
482
F:	arch/x86/kernel/microcode_amd.c
483

484 485 486 487 488 489
AMS (Apple Motion Sensor) DRIVER
P:	Stelian Pop
M:	stelian@popies.net
P:	Michael Hanselmann
M:	linux-kernel@hansmi.ch
S:	Supported
490
F:	drivers/hwmon/ams/
491

492 493 494 495 496
AMSO1100 RNIC DRIVER
P:	Tom Tucker
M:	tom@opengridcomputing.com
P:	Steve Wise
M:	swise@opengridcomputing.com
497
L:	general@lists.openfabrics.org
498
S:	Maintained
499
F:	drivers/infiniband/hw/amso1100/
500

501 502 503 504
AOA (Apple Onboard Audio) ALSA DRIVER
P:	Johannes Berg
M:	johannes@sipsolutions.net
L:	linuxppc-dev@ozlabs.org
505
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
506
S:	Maintained
507
F:	sound/aoa/
508

L
Linus Torvalds 已提交
509 510 511 512 513 514
APM DRIVER
P:	Stephen Rothwell
M:	sfr@canb.auug.org.au
L:	linux-laptop@vger.kernel.org
W:	http://www.canb.auug.org.au/~sfr/
S:	Supported
515 516
F:	arch/x86/kernel/apm_32.c
F:	include/linux/apm_bios.h
L
Linus Torvalds 已提交
517

518 519 520 521 522
APPLE BCM5974 MULTITOUCH DRIVER
P:	Henrik Rydberg
M:	rydberg@euromail.se
L:	linux-input@vger.kernel.org
S:	Maintained
523
F:	drivers/input/mouse/bcm5974.c
524

525 526 527 528 529
APPLE SMC DRIVER
P:	Nicolas Boichat
M:	nicolas@boichat.ch
L:	mactel-linux-devel@lists.sourceforge.net
S:	Maintained
530
F:	drivers/hwmon/applesmc.c
531

L
Linus Torvalds 已提交
532 533
APPLETALK NETWORK LAYER
P:	Arnaldo Carvalho de Melo
534
M:	acme@ghostprotocols.net
L
Linus Torvalds 已提交
535
S:	Maintained
536 537
F:	drivers/net/appletalk/
F:	net/appletalk/
L
Linus Torvalds 已提交
538

539 540 541
APPLETOUCH TOUCHPAD DRIVER
P:	Johannes Berg
M:	johannes@sipsolutions.net
542
L:	linux-input@vger.kernel.org
543
S:	Maintained
544 545
F:	Documentation/input/appletouch.txt
F:	drivers/input/mouse/appletouch.c
546

547 548 549 550
ARC FRAMEBUFFER DRIVER
P:	Jaya Kumar
M:	jayalk@intworks.biz
S:	Maintained
551 552
F:	drivers/video/arcfb.c
F:	drivers/video/fb_defio.c
553

L
Linus Torvalds 已提交
554 555 556 557
ARM MFM AND FLOPPY DRIVERS
P:	Ian Molton
M:	spyro@f2s.com
S:	Maintained
558 559
F:	arch/arm/lib/floppydma.S
F:	arch/arm/include/asm/floppy.h
L
Linus Torvalds 已提交
560

R
Russell King 已提交
561 562 563 564 565 566 567 568
ARM PORT
P:	Russell King
M:	linux@arm.linux.org.uk
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	arch/arm/

569
ARM PRIMECELL MMCI PL180/1 DRIVER
570
S:	Orphan
571
F:	drivers/mmc/host/mmci.*
572

573 574 575 576 577
ARM/ADI ROADRUNNER MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained
578 579
F:	arch/arm/mach-ixp23xx/
F:	arch/arm/mach-ixp23xx/include/mach/
580 581 582 583 584 585 586

ARM/ADS SPHERE MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

587 588 589 590 591 592
ARM/AFEB9260 MACHINE SUPPORT
P:	Sergey Lapin
M:	slapin@ossfans.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

593 594 595 596 597 598
ARM/AJECO 1ARM MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

599
ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
600 601 602 603 604
P:	Andrew Victor
M:	linux@maxim.org.za
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
W:	http://maxim.org.za/at91_26.html
S:	Maintained
605

606 607 608 609 610 611 612 613 614 615 616 617
ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

R
Russell King 已提交
618 619 620 621 622 623 624
ARM/CLKDEV SUPPORT
P:	Russell King
M:	linux@arm.linux.org.uk
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
F:	arch/arm/common/clkdev.c
F:	arch/arm/include/asm/clkdev.h

625
ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
626 627 628 629 630
P:	Mike Rapoport
M:	mike@compulab.co.il
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

L
Linus Torvalds 已提交
631 632 633 634 635
ARM/CORGI MACHINE SUPPORT
P:	Richard Purdie
M:	rpurdie@rpsys.net
S:	Maintained

636 637 638 639
ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
P:	Paulius Zaleckas
M:	paulius.zaleckas@teltonika.lt
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
640
T:	git git://gitorious.org/linux-gemini/mainline.git
641
S:	Maintained
642
F:	arch/arm/mach-gemini/
643

R
Russell King 已提交
644 645 646 647 648 649 650 651 652
ARM/EBSA110 MACHINE SUPPORT
P:	Russell King
M:	linux@arm.linux.org.uk
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	arch/arm/mach-ebsa110/
F:	drivers/net/arm/am79c961a.*

653 654 655 656 657 658 659 660 661 662
ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
P:	Daniel Ribeiro
M:	drwyrm@gmail.com
P:	Stefan Schmidt
M:	stefan@openezx.org
P:	Harald Welte
M:	laforge@openezx.org
L:	openezx-devel@lists.openezx.org (subscribers-only)
W:	http://www.openezx.org/
S:	Maintained
663 664
T:	topgit git://git.openezx.org/openezx.git
F:	arch/arm/mach-pxa/ezx.c
665

666 667 668 669 670
ARM/FARADAY FA526 PORT
P:	Paulius Zaleckas
M:	paulius.zaleckas@teltonika.lt
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained
671
F:	arch/arm/mm/*-fa*
672

R
Russell King 已提交
673 674 675 676 677 678 679 680 681
ARM/FOOTBRIDGE ARCHITECTURE
P:	Russell King
M:	linux@arm.linux.org.uk
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	arch/arm/include/asm/hardware/dec21285.h
F:	arch/arm/mach-footbridge/

682 683 684 685 686 687
ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
P:	Sascha Hauer
M:	kernel@pengutronix.de
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

688 689 690 691 692 693
ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

694 695 696 697 698 699
ARM/GUMSTIX MACHINE SUPPORT
P:	Steve Sakoman
M:	sakoman@gmail.com
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

700 701 702 703 704 705 706
ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
P:	Philipp Zabel
M:	philipp.zabel@gmail.com
S:	Maintained
F:	arch/arm/mach-pxa/hx4700.c
F:	arch/arm/mach-pxa/include/mach/hx4700.h

707
ARM/HP JORNADA 7XX MACHINE SUPPORT
708 709 710 711
P:	Kristoffer Ericson
M:	kristoffer.ericson@gmail.com
W:	www.jlime.com
S:	Maintained
712

713 714 715
ARM/INTEL IOP32X ARM ARCHITECTURE
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
716 717
P:	Dan Williams
M:	dan.j.williams@intel.com
718
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
719 720 721 722 723 724 725
S:	Supported

ARM/INTEL IOP33X ARM ARCHITECTURE
P:	Dan Williams
M:	dan.j.williams@intel.com
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Supported
726 727 728 729

ARM/INTEL IOP13XX ARM ARCHITECTURE
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
730 731
P:	Dan Williams
M:	dan.j.williams@intel.com
732
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
733
S:	Supported
734 735 736 737

ARM/INTEL IQ81342EX MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
738 739
P:	Dan Williams
M:	dan.j.williams@intel.com
740
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
741
S:	Supported
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763

ARM/INTEL IXP2000 ARM ARCHITECTURE
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

ARM/INTEL IXDP2850 MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

ARM/INTEL IXP23XX ARM ARCHITECTURE
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

ARM/INTEL XSC3 (MANZANO) ARM CORE
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
764 765
P:	Dan Williams
M:	dan.j.williams@intel.com
766
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
767
S:	Supported
768 769 770 771 772 773 774 775 776 777 778 779 780

ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

ARM/LOGICPD PXA270 MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

781 782 783 784 785
ARM/MAGICIAN MACHINE SUPPORT
P:	Philipp Zabel
M:	philipp.zabel@gmail.com
S:	Maintained

786 787 788 789 790 791 792
ARM/MIOA701 MACHINE SUPPORT
P:	Robert Jarzmik
M:	robert.jarzmik@free.fr
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
F:	arch/arm/mach-pxa/mioa701.c
S:	Maintained

793 794 795 796 797
ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
P:	Michael Petchkovsky
M:	mkpetch@internode.on.net
S:	Maintained

798 799 800 801 802 803 804
ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
P:	Nelson Castillo
M:	arhuaco@freaks-unidos.net
L:	openmoko-kernel@lists.openmoko.org (subscribers-only)
W:	http://wiki.openmoko.org/wiki/Neo_FreeRunner
S:	Supported

805
ARM/TOSA MACHINE SUPPORT
806
P:	Dmitry Eremin-Solenikov
807
M:	dbaryshkov@gmail.com
808 809 810 811
P:	Dirk Opfer
M:	dirk@opfer-online.de
S:	Maintained

812
ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
813 814 815 816 817
P:	Marek Vasut
M:	marek.vasut@gmail.com
W:	http://hackndev.com
S:	Maintained

818 819 820 821 822 823
ARM/PALM TREO 680 SUPPORT
P:	Tomas Cech
M:	sleep_walker@suse.cz
W:	http://hackndev.com
S:	Maintained

824
ARM/PALMZ72 SUPPORT
825 826 827 828
P:	Sergey Lapin
M:	slapin@ossfans.org
W:	http://hackndev.com
S:	Maintained
829

L
Linus Torvalds 已提交
830 831 832 833 834 835 836 837 838
ARM/PLEB SUPPORT
P:	Peter Chubb
M:	pleb@gelato.unsw.edu.au
W:	http://www.disy.cse.unsw.edu.au/Hardware/PLEB
S:	Maintained

ARM/PT DIGITAL BOARD PORT
P:	Stefan Eletzhofer
M:	stefan.eletzhofer@eletztrick.de
839
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
L
Linus Torvalds 已提交
840 841 842
W:	http://www.arm.linux.org.uk/
S:	Maintained

843 844 845 846 847 848
ARM/RADISYS ENP2611 MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

R
Russell King 已提交
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
ARM/RISCPC ARCHITECTURE
P:	Russell King
M:	linux@arm.linux.org.uk
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	arch/arm/common/time-acorn.c
F:	arch/arm/include/asm/hardware/entry-macro-iomd.S
F:	arch/arm/include/asm/hardware/ioc.h
F:	arch/arm/include/asm/hardware/iomd.h
F:	arch/arm/include/asm/hardware/memc.h
F:	arch/arm/mach-rpc/
F:	drivers/net/arm/ether*
F:	drivers/scsi/arm/

L
Linus Torvalds 已提交
864 865 866 867 868 869 870 871
ARM/SHARK MACHINE SUPPORT
P:	Alexander Schulz
M:	alex@shark-linux.de
W:	http://www.shark-linux.de/shark.html
S:	Maintained

ARM/S3C2410 ARM ARCHITECTURE
P:	Ben Dooks
872
M:	ben-linux@fluff.org
873
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
L
Linus Torvalds 已提交
874 875 876 877 878
W:	http://www.fluff.org/ben/linux/
S:	Maintained

ARM/S3C2440 ARM ARCHITECTURE
P:	Ben Dooks
879
M:	ben-linux@fluff.org
880
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
L
Linus Torvalds 已提交
881 882 883
W:	http://www.fluff.org/ben/linux/
S:	Maintained

884 885 886 887 888 889 890 891 892 893 894 895
ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

ARM/THECUS N2100 MACHINE SUPPORT
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained

896
ARM/NUVOTON W90X900 ARM ARCHITECTURE
897 898 899 900 901
P:	Wan ZongShun
M:	mcuos.com@gmail.com
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
W:	http://www.mcuos.com
S:	Maintained
902

R
Russell King 已提交
903 904 905 906 907 908 909 910
ARM/VFP SUPPORT
P:	Russell King
M:	linux@arm.linux.org.uk
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	arch/arm/vfp/

L
Linus Torvalds 已提交
911 912
ARPD SUPPORT
P:	Jonathan Layes
913
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
914
S:	Maintained
915
F:	net/ipv4/arp.c
L
Linus Torvalds 已提交
916 917

ASUS ACPI EXTRAS DRIVER
918 919
P:	Corentin Chary
M:	corentincj@iksaif.net
L
Linus Torvalds 已提交
920 921 922
P:	Karol Kozimor
M:	sziwan@users.sourceforge.net
L:	acpi4asus-user@lists.sourceforge.net
923
W:	http://acpi4asus.sf.net
924
S:	Maintained
925 926
F:	arch/x86/kernel/acpi/boot.c
F:	drivers/platform/x86/asus_acpi.c
927

M
Mark M. Hoffman 已提交
928 929 930 931 932
ASUS ASB100 HARDWARE MONITOR DRIVER
P:	Mark M. Hoffman
M:	mhoffman@lightlink.com
L:	lm-sensors@lm-sensors.org
S:	Maintained
933
F:	drivers/hwmon/asb100.c
M
Mark M. Hoffman 已提交
934

935 936 937 938
ASUS LAPTOP EXTRAS DRIVER
P:	Corentin Chary
M:	corentincj@iksaif.net
L:	acpi4asus-user@lists.sourceforge.net
939
W:	http://acpi4asus.sf.net
L
Linus Torvalds 已提交
940
S:	Maintained
941
F:	drivers/platform/x86/asus-laptop.c
L
Linus Torvalds 已提交
942

943
ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
944 945
P:	Dan Williams
M:	dan.j.williams@intel.com
946 947
P:	Maciej Sosnowski
M:	maciej.sosnowski@intel.com
948 949
W:	http://sourceforge.net/projects/xscaleiop
S:	Supported
950 951 952 953 954
F:	Documentation/crypto/async-tx-api.txt
F:	crypto/async_tx/
F:	drivers/dma/
F:	include/linux/dmaengine.h
F:	include/linux/async_tx.h
955

956
ATA OVER ETHERNET (AOE) DRIVER
L
Linus Torvalds 已提交
957 958 959 960
P:	Ed L. Cashin
M:	ecashin@coraid.com
W:	http://www.coraid.com/support/linux
S:	Supported
961 962
F:	Documentation/aoe/
F:	drivers/block/aoe/
L
Linus Torvalds 已提交
963

964 965 966 967 968 969
ATHEROS ATH5K WIRELESS DRIVER
P:	Jiri Slaby
M:	jirislaby@gmail.com
P:	Nick Kossifidis
M:	mickflemm@gmail.com
P:	Luis R. Rodriguez
970
M:	lrodriguez@atheros.com
971 972
P:	Bob Copeland
M:	me@bobcopeland.com
973 974 975
L:	linux-wireless@vger.kernel.org
L:	ath5k-devel@lists.ath5k.org
S:	Maintained
976
F:	drivers/net/wireless/ath/ath5k/
977

978 979 980 981 982
ATHEROS ATH9K WIRELESS DRIVER
P:	Luis R. Rodriguez
M:	lrodriguez@atheros.com
P:	Jouni Malinen
M:	jmalinen@atheros.com
983 984 985 986 987 988
P:	Sujith Manoharan
M:	Sujith.Manoharan@atheros.com
P:	Vasanthakumar Thiagarajan
M:	vasanth@atheros.com
P:	Senthil Balasubramanian
M:	senthilkumar@atheros.com
989 990 991
L:	linux-wireless@vger.kernel.org
L:	ath9k-devel@lists.ath9k.org
S:	Supported
992
F:	drivers/net/wireless/ath/ath9k/
993

994 995 996 997 998 999
ATHEROS AR9170 WIRELESS DRIVER
P:	Christian Lamparter
M:	chunkeey@web.de
L:	linux-wireless@vger.kernel.org
W:	http://wireless.kernel.org/en/users/Drivers/ar9170
S:	Maintained
1000
F:	drivers/net/wireless/ath/ar9170/
1001

1002 1003 1004 1005
ATI_REMOTE2 DRIVER
P:	Ville Syrjala
M:	syrjala@sci.fi
S:	Maintained
1006
F:	drivers/input/misc/ati_remote2.c
1007

1008
ATLX ETHERNET DRIVERS
1009 1010 1011 1012
P:	Jay Cliburn
M:	jcliburn@gmail.com
P:	Chris Snook
M:	csnook@redhat.com
1013 1014
P:	Jie Yang
M:	jie.yang@atheros.com
1015 1016 1017 1018
L:	atl1-devel@lists.sourceforge.net
W:	http://sourceforge.net/projects/atl1
W:	http://atl1.sourceforge.net
S:	Maintained
1019
F:	drivers/net/atlx/
1020

L
Linus Torvalds 已提交
1021 1022 1023
ATM
P:	Chas Williams
M:	chas@cmf.nrl.navy.mil
1024
L:	linux-atm-general@lists.sourceforge.net (subscribers-only)
1025
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
1026 1027
W:	http://linux-atm.sourceforge.net
S:	Maintained
1028 1029
F:	drivers/atm/
F:	include/linux/atm*
L
Linus Torvalds 已提交
1030

1031
ATMEL AT91 MCI DRIVER
1032
P:	Nicolas Ferre
1033
M:	nicolas.ferre@atmel.com
1034 1035 1036 1037
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
W:	http://www.atmel.com/products/AT91/
W:	http://www.at91.com/
S:	Maintained
1038
F:	drivers/mmc/host/at91_mci.c
1039

1040 1041 1042 1043 1044 1045 1046
ATMEL AT91 / AT32 MCI DRIVER
P:	Nicolas Ferre
M:	nicolas.ferre@atmel.com
S:	Maintained
F:	drivers/mmc/host/atmel-mci.c
F:	drivers/mmc/host/atmel-mci-regs.h

1047 1048 1049 1050
ATMEL AT91 / AT32 SERIAL DRIVER
P:	Haavard Skinnemoen
M:	hskinnemoen@atmel.com
S:	Supported
1051
F:	drivers/serial/atmel_serial.c
1052

1053 1054 1055
ATMEL LCDFB DRIVER
P:	Nicolas Ferre
M:	nicolas.ferre@atmel.com
1056
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
1057
S:	Maintained
1058 1059
F:	drivers/video/atmel_lcdfb.c
F:	include/video/atmel_lcdc.h
1060

1061 1062 1063 1064
ATMEL MACB ETHERNET DRIVER
P:	Haavard Skinnemoen
M:	hskinnemoen@atmel.com
S:	Supported
1065
F:	drivers/net/macb.*
1066

1067 1068 1069 1070
ATMEL SPI DRIVER
P:	Haavard Skinnemoen
M:	hskinnemoen@atmel.com
S:	Supported
1071
F:	drivers/spi/atmel_spi.*
1072

1073 1074 1075 1076 1077 1078
ATMEL USBA UDC DRIVER
P:	Haavard Skinnemoen
M:	hskinnemoen@atmel.com
L:	kernel@avr32linux.org
W:	http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
S:	Supported
1079
F:	drivers/usb/gadget/atmel_usba_udc.*
1080

L
Linus Torvalds 已提交
1081 1082 1083
ATMEL WIRELESS DRIVER
P:	Simon Kelley
M:	simon@thekelleys.org.uk
1084
L:	linux-wireless@vger.kernel.org
L
Linus Torvalds 已提交
1085 1086 1087
W:	http://www.thekelleys.org.uk/atmel
W:	http://atmelwlandriver.sourceforge.net/
S:	Maintained
1088
F:	drivers/net/wireless/atmel*
L
Linus Torvalds 已提交
1089

1090
AUDIT SUBSYSTEM
E
Eric Paris 已提交
1091 1092 1093 1094
P:	Al Viro
M:	viro@zeniv.linux.org.uk
P:	Eric Paris
M:	eparis@redhat.com
1095
L:	linux-audit@redhat.com (subscribers-only)
1096
W:	http://people.redhat.com/sgrubb/audit/
1097
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
1098
S:	Maintained
1099 1100
F:	include/linux/audit.h
F:	kernel/audit*
1101

1102 1103
AUXILIARY DISPLAY DRIVERS
P:	Miguel Ojeda Sandonis
M
Miguel Ojeda 已提交
1104 1105 1106
M:	miguel.ojeda.sandonis@gmail.com
W:	http://miguelojeda.es/auxdisplay.htm
W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1107
S:	Maintained
1108 1109
F:	drivers/auxdisplay/
F:	include/linux/cfag12864b.h
1110

1111 1112 1113 1114 1115 1116 1117
AVR32 ARCHITECTURE
P:	Haavard Skinnemoen
M:	hskinnemoen@atmel.com
W:	http://www.atmel.com/products/AVR32/
W:	http://avr32linux.org/
W:	http://avrfreaks.net/
S:	Supported
1118
F:	arch/avr32/
1119 1120 1121 1122 1123

AVR32/AT32AP MACHINE SUPPORT
P:	Haavard Skinnemoen
M:	hskinnemoen@atmel.com
S:	Supported
1124
F:	arch/avr32/mach-at32ap/
1125

L
Linus Torvalds 已提交
1126 1127 1128 1129
AX.25 NETWORK LAYER
P:	Ralf Baechle
M:	ralf@linux-mips.org
L:	linux-hams@vger.kernel.org
1130
W:	http://www.linux-ax25.org/
L
Linus Torvalds 已提交
1131
S:	Maintained
1132 1133 1134
F:	include/linux/ax25.h
F:	include/net/ax25.h
F:	net/ax25/
L
Linus Torvalds 已提交
1135

R
Randy Dunlap 已提交
1136 1137 1138 1139 1140 1141 1142 1143
B43 WIRELESS DRIVER
P:	Michael Buesch
M:	mb@bu3sch.de
P:	Stefano Brivio
M:	stefano.brivio@polimi.it
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/en/users/Drivers/b43
S:	Maintained
1144
F:	drivers/net/wireless/b43/
R
Randy Dunlap 已提交
1145 1146 1147 1148 1149 1150 1151 1152 1153

B43LEGACY WIRELESS DRIVER
P:	Larry Finger
M:	Larry.Finger@lwfinger.net
P:	Stefano Brivio
M:	stefano.brivio@polimi.it
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/en/users/Drivers/b43
S:	Maintained
1154
F:	drivers/net/wireless/b43legacy/
R
Randy Dunlap 已提交
1155

1156 1157 1158 1159
BACKLIGHT CLASS/SUBSYSTEM
P:	Richard Purdie
M:	rpurdie@rpsys.net
S:	Maintained
1160 1161
F:	drivers/video/backlight/
F:	include/linux/backlight.h
1162

R
Randy Dunlap 已提交
1163 1164 1165 1166 1167 1168
BAYCOM/HDLCDRV DRIVERS FOR AX.25
P:	Thomas Sailer
M:	t.sailer@alumni.ethz.ch
L:	linux-hams@vger.kernel.org
W:	http://www.baycom.org/~tom/ham/ham.html
S:	Maintained
1169
F:	drivers/net/hamradio/baycom*
R
Randy Dunlap 已提交
1170 1171 1172 1173 1174

BEFS FILE SYSTEM
P:	Sergey S. Kostyliov
M:	rathamahata@php4.ru
S:	Maintained
1175 1176
F:	Documentation/filesystems/befs.txt
F:	fs/befs/
R
Randy Dunlap 已提交
1177 1178 1179 1180 1181

BFS FILE SYSTEM
P:	Tigran A. Aivazian
M:	tigran@aivazian.fsnet.co.uk
S:	Maintained
1182 1183 1184
F:	Documentation/filesystems/bfs.txt
F:	fs/bfs/
F:	include/linux/bfs_fs.h
R
Randy Dunlap 已提交
1185

B
Bryan Wu 已提交
1186
BLACKFIN ARCHITECTURE
1187 1188
P:	Mike Frysinger
M:	vapier@gentoo.org
1189
L:	uclinux-dist-devel@blackfin.uclinux.org
1190 1191
W:	http://blackfin.uclinux.org
S:	Supported
1192
F:	arch/blackfin/
1193

1194
BLACKFIN EMAC DRIVER
1195 1196
P:	Michael Hennerich
M:	michael.hennerich@analog.com
1197
L:	uclinux-dist-devel@blackfin.uclinux.org
1198 1199
W:	http://blackfin.uclinux.org
S:	Supported
1200
F:	drivers/net/bfin_mac.*
1201

1202 1203 1204
BLACKFIN RTC DRIVER
P:	Mike Frysinger
M:	vapier.adi@gmail.com
1205
L:	uclinux-dist-devel@blackfin.uclinux.org
1206 1207
W:	http://blackfin.uclinux.org
S:	Supported
1208
F:	drivers/rtc/rtc-bfin.c
B
Bryan Wu 已提交
1209 1210

BLACKFIN SERIAL DRIVER
1211 1212
P:	Sonic Zhang
M:	sonic.zhang@analog.com
1213
L:	uclinux-dist-devel@blackfin.uclinux.org
1214 1215
W:	http://blackfin.uclinux.org
S:	Supported
1216
F:	drivers/serial/bfin_5xx.c
B
Bryan Wu 已提交
1217

1218 1219 1220
BLACKFIN WATCHDOG DRIVER
P:	Mike Frysinger
M:	vapier.adi@gmail.com
1221
L:	uclinux-dist-devel@blackfin.uclinux.org
1222 1223
W:	http://blackfin.uclinux.org
S:	Supported
1224
F:	drivers/watchdog/bfin_wdt.c
1225

1226 1227 1228
BLACKFIN I2C TWI DRIVER
P:	Sonic Zhang
M:	sonic.zhang@analog.com
1229
L:	uclinux-dist-devel@blackfin.uclinux.org
1230 1231
W:	http://blackfin.uclinux.org/
S:	Supported
1232
F:	drivers/i2c/busses/i2c-bfin-twi.c
1233

L
Linus Torvalds 已提交
1234 1235
BLOCK LAYER
P:	Jens Axboe
1236
M:	axboe@kernel.dk
1237
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
L
Linus Torvalds 已提交
1238
S:	Maintained
1239
F:	block/
L
Linus Torvalds 已提交
1240

1241 1242 1243 1244 1245
BLOCK2MTD DRIVER
P:	Joern Engel
M:	joern@lazybastard.org
L:	linux-mtd@lists.infradead.org
S:	Maintained
1246
F:	drivers/mtd/devices/block2mtd.c
1247

1248
BLUETOOTH DRIVERS
L
Linus Torvalds 已提交
1249 1250
P:	Marcel Holtmann
M:	marcel@holtmann.org
1251
L:	linux-bluetooth@vger.kernel.org
1252
W:	http://www.bluez.org/
L
Linus Torvalds 已提交
1253
S:	Maintained
1254
F:	drivers/bluetooth/
L
Linus Torvalds 已提交
1255

1256
BLUETOOTH SUBSYSTEM
L
Linus Torvalds 已提交
1257 1258
P:	Marcel Holtmann
M:	marcel@holtmann.org
1259 1260
L:	linux-bluetooth@vger.kernel.org
W:	http://www.bluez.org/
1261
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
L
Linus Torvalds 已提交
1262
S:	Maintained
1263 1264
F:	net/bluetooth/
F:	include/net/bluetooth/
L
Linus Torvalds 已提交
1265 1266

BONDING DRIVER
J
Jim Cromie 已提交
1267 1268 1269 1270 1271
P:	Jay Vosburgh
M:	fubar@us.ibm.com
L:	bonding-devel@lists.sourceforge.net
W:	http://sourceforge.net/projects/bonding/
S:	Supported
1272 1273
F:	drivers/net/bonding/
F:	include/linux/if_bonding.h
L
Linus Torvalds 已提交
1274

1275 1276 1277 1278 1279
BROADCOM B44 10/100 ETHERNET DRIVER
P:	Gary Zambrano
M:	zambrano@broadcom.com
L:	netdev@vger.kernel.org
S:	Supported
1280
F:	drivers/net/b44.*
1281

1282 1283 1284 1285 1286
BROADCOM BNX2 GIGABIT ETHERNET DRIVER
P:	Michael Chan
M:	mchan@broadcom.com
L:	netdev@vger.kernel.org
S:	Supported
1287 1288
F:	drivers/net/bnx2.*
F:	drivers/net/bnx2_*
1289

1290
BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
1291 1292
P:	Eilon Greenstein
M:	eilong@broadcom.com
1293 1294
L:	netdev@vger.kernel.org
S:	Supported
1295
F:	drivers/net/bnx2x*
1296

1297
BROADCOM TG3 GIGABIT ETHERNET DRIVER
1298 1299
P:	Matt Carlson
M:	mcarlson@broadcom.com
1300 1301 1302 1303
P:	Michael Chan
M:	mchan@broadcom.com
L:	netdev@vger.kernel.org
S:	Supported
1304
F:	drivers/net/tg3.*
1305

1306 1307 1308 1309 1310
BSG (block layer generic sg v4 driver)
P:	FUJITA Tomonori
M:	fujita.tomonori@lab.ntt.co.jp
L:	linux-scsi@vger.kernel.org
S:	Supported
1311 1312
F:	block/bsg.c
F:	include/linux/bsg.h
1313

1314 1315 1316 1317 1318
BT8XXGPIO DRIVER
P:	Michael Buesch
M:	mb@bu3sch.de
W:	http://bu3sch.de/btgpio.php
S:	Maintained
1319
F:	drivers/gpio/bt8xxgpio.c
1320

J
Joe Perches 已提交
1321 1322 1323 1324 1325
BTRFS FILE SYSTEM
P:	Chris Mason
M:	chris.mason@oracle.com
L:	linux-btrfs@vger.kernel.org
W:	http://btrfs.wiki.kernel.org/
1326
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
J
Joe Perches 已提交
1327
S:	Maintained
1328 1329
F:	Documentation/filesystems/btrfs.txt
F:	fs/btrfs/
J
Joe Perches 已提交
1330

L
Linus Torvalds 已提交
1331
BTTV VIDEO4LINUX DRIVER
1332
P:	Mauro Carvalho Chehab
1333
M:	mchehab@infradead.org
1334
L:	linux-media@vger.kernel.org
1335
W:	http://linuxtv.org
1336
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
1337
S:	Maintained
1338 1339
F:	Documentation/video4linux/bttv/
F:	drivers/media/video/bt8xx/bttv*
L
Linus Torvalds 已提交
1340

1341 1342 1343 1344 1345 1346 1347 1348
CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
P:	David Howells
M:	dhowells@redhat.com
L:	linux-cachefs@redhat.com
S:	Supported
F:	Documentation/filesystems/caching/cachefiles.txt
F:	fs/cachefiles/

1349
CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
1350
P:	Jonathan Corbet
1351
M:	corbet@lwn.net
1352
L:	linux-media@vger.kernel.org
1353
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
1354
S:	Maintained
1355 1356
F:	Documentation/video4linux/cafe_ccic
F:	drivers/media/video/cafe_ccic*
1357

1358 1359 1360 1361
CALGARY x86-64 IOMMU
P:	Muli Ben-Yehuda
M:	muli@il.ibm.com
P:	Jon D. Mason
1362
M:	jdmason@kudzu.us
1363 1364
L:	discuss@x86-64.org
S:	Maintained
1365 1366 1367 1368
F:	arch/x86/kernel/pci-calgary_64.c
F:	arch/x86/kernel/tce_64.c
F:	arch/x86/include/asm/calgary.h
F:	arch/x86/include/asm/tce.h
1369

R
Randy Dunlap 已提交
1370 1371 1372 1373 1374 1375 1376 1377
CAN NETWORK LAYER
P:	Urs Thuermann
M:	urs.thuermann@volkswagen.de
P:	Oliver Hartkopp
M:	oliver.hartkopp@volkswagen.de
L:	socketcan-core@lists.berlios.de (subscribers-only)
W:	http://developer.berlios.de/projects/socketcan/
S:	Maintained
1378 1379 1380
F:	drivers/net/can/
F:	include/linux/can/
F:	include/linux/can.h
R
Randy Dunlap 已提交
1381

1382 1383 1384 1385 1386 1387 1388
CAN NETWORK DRIVERS
P:	Wolfgang Grandegger
M:	wg@grandegger.com
L:	socketcan-core@lists.berlios.de (subscribers-only)
W:	http://developer.berlios.de/projects/socketcan/
S:	Maintained

1389 1390 1391 1392 1393 1394 1395
CELL BROADBAND ENGINE ARCHITECTURE
P:	Arnd Bergmann
M:	arnd@arndb.de
L:	linuxppc-dev@ozlabs.org
L:	cbe-oss-dev@ozlabs.org
W:	http://www.ibm.com/developerworks/power/cell/
S:	Supported
1396 1397 1398 1399
F:	arch/powerpc/include/asm/cell*.h
F:	arch/powerpc/include/asm/spu*.h
F:	arch/powerpc/oprofile/*cell*
F:	arch/powerpc/platforms/cell/
1400

1401 1402 1403 1404 1405
CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
P:	David Vrabel
M:	david.vrabel@csr.com
L:	linux-usb@vger.kernel.org
S:	Supported
1406 1407 1408 1409
F:	Documentation/usb/WUSB-Design-overview.txt
F:	Documentation/usb/wusb-cbaf
F:	drivers/usb/wusbcore/
F:	include/linux/usb/wusb*
1410

1411 1412
CFAG12864B LCD DRIVER
P:	Miguel Ojeda Sandonis
M
Miguel Ojeda 已提交
1413 1414 1415
M:	miguel.ojeda.sandonis@gmail.com
W:	http://miguelojeda.es/auxdisplay.htm
W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1416
S:	Maintained
1417 1418
F:	drivers/auxdisplay/cfag12864b.c
F:	include/linux/cfag12864b.h
1419 1420 1421

CFAG12864BFB LCD FRAMEBUFFER DRIVER
P:	Miguel Ojeda Sandonis
M
Miguel Ojeda 已提交
1422 1423 1424
M:	miguel.ojeda.sandonis@gmail.com
W:	http://miguelojeda.es/auxdisplay.htm
W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1425
S:	Maintained
1426 1427
F:	drivers/auxdisplay/cfag12864bfb.c
F:	include/linux/cfag12864b.h
1428

1429 1430 1431 1432 1433
CFG80211 and NL80211
P:	Johannes Berg
M:	johannes@sipsolutions.net
L:	linux-wireless@vger.kernel.org
S:	Maintained
1434 1435 1436 1437
F:	include/linux/nl80211.h
F:	include/net/cfg80211.h
F:	net/wireless/*
X:	net/wireless/wext*
1438

1439 1440
CHECKPATCH
P:	Andy Whitcroft
1441
M:	apw@canonical.com
1442
S:	Supported
1443
F:	scripts/checkpatch.pl
1444

R
Randy Dunlap 已提交
1445 1446 1447 1448 1449
CISCO 10G ETHERNET DRIVER
P:	Scott Feldman
M:	scofeldm@cisco.com
P:	Joe Eykholt
M:	jeykholt@cisco.com
1450
S:	Supported
1451
F:	drivers/net/enic/
1452

1453 1454 1455 1456 1457
CIRRUS LOGIC EP93XX ETHERNET DRIVER
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	netdev@vger.kernel.org
S:	Maintained
1458
F:	drivers/net/arm/ep93xx_eth.c
1459 1460 1461 1462

CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
1463
L:	linux-usb@vger.kernel.org
1464
S:	Maintained
1465
F:	drivers/usb/host/ohci-ep93xx.c
1466

1467 1468 1469
CIRRUS LOGIC CS4270 SOUND DRIVER
P:	Timur Tabi
M:	timur@freescale.com
1470
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
1471
S:	Supported
1472
F:	sound/soc/codecs/cs4270*
1473

L
Linus Torvalds 已提交
1474 1475 1476 1477 1478 1479
CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
P:	Cirrus Logic Corporation (kernel 2.2 driver)
M:	Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
P:	Nils Faerber (port to kernel 2.4)
M:	Nils Faerber <nils@kernelconcepts.de>
S:	Maintained
1480 1481
F:	Documentation/input/cs461x.txt
F:	sound/pci/cs46xx/
L
Linus Torvalds 已提交
1482

R
Russell King 已提交
1483 1484 1485 1486 1487
CLK API
P:	Russell King
M:	linux@arm.linux.org.uk
F:	include/linux/clk.h

1488 1489 1490 1491 1492 1493 1494
CISCO FCOE HBA DRIVER
P:	Abhijeet Joglekar
M:	abjoglek@cisco.com
P:	Joe Eykholt
M:	jeykholt@cisco.com
L:	linux-scsi@vger.kernel.org
S:	Supported
1495
F:	drivers/scsi/fnic/
1496

L
Linus Torvalds 已提交
1497 1498 1499 1500 1501 1502 1503
CODA FILE SYSTEM
P:	Jan Harkes
M:	jaharkes@cs.cmu.edu
M:	coda@cs.cmu.edu
L:	codalist@coda.cs.cmu.edu
W:	http://www.coda.cs.cmu.edu/
S:	Maintained
1504 1505 1506
F:	Documentation/filesystems/coda.txt
F:	fs/coda/
F:	include/linux/coda*.h
L
Linus Torvalds 已提交
1507

R
Randy Dunlap 已提交
1508 1509 1510 1511 1512 1513
COMMON INTERNET FILE SYSTEM (CIFS)
P:	Steve French
M:	sfrench@samba.org
L:	linux-cifs-client@lists.samba.org
L:	samba-technical@lists.samba.org
W:	http://linux-cifs.samba.org/
1514
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
R
Randy Dunlap 已提交
1515
S:	Supported
1516 1517
F:	Documentation/filesystems/cifs.txt
F:	fs/cifs/
R
Randy Dunlap 已提交
1518

L
Linus Torvalds 已提交
1519 1520 1521 1522
COMPACTPCI HOTPLUG CORE
P:	Scott Murray
M:	scottm@somanetworks.com
M:	scott@spiteful.org
1523
L:	linux-pci@vger.kernel.org
L
Linus Torvalds 已提交
1524
S:	Supported
1525
F:	drivers/pci/hotplug/cpci_hotplug*
L
Linus Torvalds 已提交
1526 1527 1528 1529 1530

COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
P:	Scott Murray
M:	scottm@somanetworks.com
M:	scott@spiteful.org
1531
L:	linux-pci@vger.kernel.org
L
Linus Torvalds 已提交
1532
S:	Supported
1533
F:	drivers/pci/hotplug/cpcihp_zt5550.*
L
Linus Torvalds 已提交
1534 1535 1536 1537 1538

COMPACTPCI HOTPLUG GENERIC DRIVER
P:	Scott Murray
M:	scottm@somanetworks.com
M:	scott@spiteful.org
1539
L:	linux-pci@vger.kernel.org
L
Linus Torvalds 已提交
1540
S:	Supported
1541
F:	drivers/pci/hotplug/cpcihp_generic.c
L
Linus Torvalds 已提交
1542

1543 1544 1545 1546
COMPAL LAPTOP SUPPORT
P:	Cezary Jackiewicz
M:	cezary.jackiewicz@gmail.com
S:	Maintained
1547
F:	drivers/platform/x86/compal-laptop.c
1548

L
Linus Torvalds 已提交
1549 1550
COMPUTONE INTELLIPORT MULTIPORT CARD
P:	Michael H. Warfield
1551
M:	mhw@wittsend.com
L
Linus Torvalds 已提交
1552
W:	http://www.wittsend.com/computone.html
1553
S:	Maintained
1554 1555
F:	Documentation/serial/computone.txt
F:	drivers/char/ip2/
L
Linus Torvalds 已提交
1556

S
Simon Arlott 已提交
1557 1558 1559
CONEXANT ACCESSRUNNER USB DRIVER
P:	Simon Arlott
M:	cxacru@fire.lp0.eu
1560 1561
L:	accessrunner-general@lists.sourceforge.net
W:	http://accessrunner.sourceforge.net/
S
Simon Arlott 已提交
1562
S:	Maintained
1563
F:	drivers/usb/atm/cxacru.c
S
Simon Arlott 已提交
1564

R
Randy Dunlap 已提交
1565 1566 1567 1568
CONFIGFS
P:	Joel Becker
M:	joel.becker@oracle.com
S:	Supported
1569 1570
F:	fs/configfs/
F:	include/linux/configfs.h
R
Randy Dunlap 已提交
1571

1572 1573 1574
CONTROL GROUPS (CGROUPS)
P:	Paul Menage
M:	menage@google.com
1575 1576
P:	Li Zefan
M:	lizf@cn.fujitsu.com
1577 1578
L:	containers@lists.linux-foundation.org
S:	Maintained
1579 1580
F:	include/linux/cgroup*
F:	kernel/cgroup*
1581
F:	mm/*cgroup*
1582

R
Rudolf Marek 已提交
1583 1584 1585 1586 1587
CORETEMP HARDWARE MONITORING DRIVER
P:	Rudolf Marek
M:	r.marek@assembler.cz
L:	lm-sensors@lm-sensors.org
S:	Maintained
1588 1589
F:	Documentation/hwmon/coretemp
F:	drivers/hwmon/coretemp.c
R
Rudolf Marek 已提交
1590

L
Linus Torvalds 已提交
1591 1592 1593 1594 1595
COSA/SRP SYNC SERIAL DRIVER
P:	Jan "Yenya" Kasprzak
M:	kas@fi.muni.cz
W:	http://www.fi.muni.cz/~kas/cosa/
S:	Maintained
1596
F:	drivers/net/wan/cosa*
L
Linus Torvalds 已提交
1597

1598 1599 1600 1601 1602 1603 1604
CPMAC ETHERNET DRIVER
P:	Florian Fainelli
M:	florian@openwrt.org
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/cpmac.c

L
Linus Torvalds 已提交
1605 1606
CPU FREQUENCY DRIVERS
P:	Dave Jones
D
Dave Jones 已提交
1607
M:	davej@redhat.com
1608
L:	cpufreq@vger.kernel.org
L
Linus Torvalds 已提交
1609
W:	http://www.codemonkey.org.uk/projects/cpufreq/
1610
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
L
Linus Torvalds 已提交
1611
S:	Maintained
1612 1613 1614
F:	arch/x86/kernel/cpu/cpufreq/
F:	drivers/cpufreq/
F:	include/linux/cpufreq.h
L
Linus Torvalds 已提交
1615 1616 1617 1618 1619

CPUID/MSR DRIVER
P:	H. Peter Anvin
M:	hpa@zytor.com
S:	Maintained
1620 1621
F:	arch/x86/kernel/cpuid.c
F:	arch/x86/kernel/msr.c
L
Linus Torvalds 已提交
1622

P
Paul Jackson 已提交
1623
CPUSETS
1624 1625
P:	Paul Menage
M:	menage@google.com
P
Paul Jackson 已提交
1626
W:	http://www.bullopensource.org/cpuset/
1627
W:	http://oss.sgi.com/projects/cpusets/
P
Paul Jackson 已提交
1628
S:	Supported
1629 1630 1631
F:	Documentation/cgroups/cpusets.txt
F:	include/linux/cpuset.h
F:	kernel/cpuset.c
P
Paul Jackson 已提交
1632

L
Linus Torvalds 已提交
1633
CRAMFS FILESYSTEM
J
Jim Cromie 已提交
1634 1635
W:	http://sourceforge.net/projects/cramfs/
S:	Orphan
1636 1637
F:	Documentation/filesystems/cramfs.txt
F:	fs/cramfs/
L
Linus Torvalds 已提交
1638 1639 1640 1641

CRIS PORT
P:	Mikael Starvik
M:	starvik@axis.com
1642 1643
P:	Jesper Nilsson
M:	jesper.nilsson@axis.com
1644
L:	linux-cris-kernel@axis.com
L
Linus Torvalds 已提交
1645 1646
W:	http://developer.axis.com
S:	Maintained
1647
F:	arch/cris/
L
Linus Torvalds 已提交
1648 1649 1650 1651 1652 1653 1654

CRYPTO API
P:	Herbert Xu
M:	herbert@gondor.apana.org.au
P:	David S. Miller
M:	davem@davemloft.net
L:	linux-crypto@vger.kernel.org
1655
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
L
Linus Torvalds 已提交
1656
S:	Maintained
1657 1658 1659 1660 1661
F:	Documentation/crypto/
F:	arch/*/crypto/
F:	crypto/
F:	drivers/crypto/
F:	include/crypto/
L
Linus Torvalds 已提交
1662

1663 1664 1665 1666 1667 1668
CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
P:	Neil Horman
M:	nhorman@tuxdriver.com
L:	linux-crypto@vger.kernel.org
S:	Maintained

1669 1670 1671 1672
CS5535 Audio ALSA driver
P:	Jaya Kumar
M:	jayakumar.alsa@gmail.com
S:	Maintained
1673
F:	sound/pci/cs5535audio/
1674

1675
CX18 VIDEO4LINUX DRIVER
1676 1677 1678 1679
P:	Hans Verkuil
M:	hverkuil@xs4all.nl
P:	Andy Walls
M:	awalls@radix.net
1680 1681
L:	ivtv-devel@ivtvdriver.org
L:	ivtv-users@ivtvdriver.org
1682
L:	linux-media@vger.kernel.org
1683
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
1684 1685
W:	http://linuxtv.org
S:	Maintained
1686 1687
F:	Documentation/video4linux/cx18.txt
F:	drivers/media/video/cx18/
1688

1689 1690 1691 1692 1693 1694
CXGB3 ETHERNET DRIVER (CXGB3)
P:	Divy Le Ray
M:	divy@chelsio.com
L:	netdev@vger.kernel.org
W:	http://www.chelsio.com
S:	Supported
1695
F:	drivers/net/cxgb3/
1696 1697 1698 1699 1700 1701 1702

CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
P:	Steve Wise
M:	swise@chelsio.com
L:	general@lists.openfabrics.org
W:	http://www.openfabrics.org
S:	Supported
1703
F:	drivers/infiniband/hw/cxgb3/
1704

L
Linus Torvalds 已提交
1705 1706
CYBERPRO FB DRIVER
P:	Russell King
R
Russell King 已提交
1707 1708
M:	linux@arm.linux.org.uk
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
L
Linus Torvalds 已提交
1709 1710
W:	http://www.arm.linux.org.uk/
S:	Maintained
1711
F:	drivers/video/cyber2000fb.*
1712

L
Linus Torvalds 已提交
1713 1714
CYCLADES 2X SYNC CARD DRIVER
P:	Arnaldo Carvalho de Melo
1715 1716
M:	acme@ghostprotocols.net
W:	http://oops.ghostprotocols.net:81/blog
L
Linus Torvalds 已提交
1717
S:	Maintained
1718
F:	drivers/net/wan/cycx*
L
Linus Torvalds 已提交
1719 1720 1721

CYCLADES ASYNC MUX DRIVER
W:	http://www.cyclades.com/
1722
S:	Orphan
1723 1724
F:	drivers/char/cyclades.c
F:	include/linux/cyclades.h
L
Linus Torvalds 已提交
1725 1726 1727

CYCLADES PC300 DRIVER
W:	http://www.cyclades.com/
1728
S:	Orphan
1729
F:	drivers/net/wan/pc300*
L
Linus Torvalds 已提交
1730 1731 1732 1733 1734 1735 1736 1737

DAMA SLAVE for AX.25
P:	Joerg Reuter
M:	jreuter@yaina.de
W:	http://yaina.de/jreuter/
W:	http://www.qsl.net/dl1bke/
L:	linux-hams@vger.kernel.org
S:	Maintained
1738 1739 1740 1741 1742 1743 1744
F:	net/ax25/af_ax25.c
F:	net/ax25/ax25_dev.c
F:	net/ax25/ax25_ds_*
F:	net/ax25/ax25_in.c
F:	net/ax25/ax25_out.c
F:	net/ax25/ax25_timer.c
F:	net/ax25/sysctl_net_ax25.c
L
Linus Torvalds 已提交
1745

R
Randy Dunlap 已提交
1746 1747 1748 1749 1750
DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
P:	Tobias Ringstrom
M:	tori@unhappy.mine.nu
L:	netdev@vger.kernel.org
S:	Maintained
1751 1752
F:	Documentation/networking/dmfe.txt
F:	drivers/net/tulip/dmfe.c
R
Randy Dunlap 已提交
1753 1754 1755 1756 1757 1758 1759 1760

DC390/AM53C974 SCSI driver
P:	Kurt Garloff
M:	garloff@suse.de
W:	http://www.garloff.de/kurt/linux/dc390/
P:	Guennadi Liakhovetski
M:	g.liakhovetski@gmx.de
S:	Maintained
1761
F:	drivers/scsi/tmscsim.*
R
Randy Dunlap 已提交
1762

L
Linus Torvalds 已提交
1763 1764 1765 1766 1767 1768 1769 1770
DC395x SCSI driver
P:	Oliver Neukum
M:	oliver@neukum.name
P:	Ali Akcaagac
M:	aliakc@web.de
P:	Jamie Lenehan
M:	lenehan@twibble.org
W:	http://twibble.org/dist/dc395x/
1771
L:	dc395x@twibble.org
L
Linus Torvalds 已提交
1772 1773
L:	http://lists.twibble.org/mailman/listinfo/dc395x/
S:	Maintained
1774 1775
F:	Documentation/scsi/dc395x.txt
F:	drivers/scsi/dc395x.*
L
Linus Torvalds 已提交
1776

1777 1778
DCCP PROTOCOL
P:	Arnaldo Carvalho de Melo
1779
M:	acme@ghostprotocols.net
1780
L:	dccp@vger.kernel.org
1781
W:	http://linux-net.osdl.org/index.php/DCCP
1782
S:	Maintained
1783 1784 1785
F:	include/linux/dccp.h
F:	include/linux/tfrc.h
F:	net/dccp/
1786

L
Linus Torvalds 已提交
1787
DECnet NETWORK LAYER
1788 1789
P:	Christine Caulfield
M:	christine.caulfield@googlemail.com
L
Linus Torvalds 已提交
1790 1791 1792
W:	http://linux-decnet.sourceforge.net
L:	linux-decnet-user@lists.sourceforge.net
S:	Maintained
1793 1794
F:	Documentation/networking/decnet.txt
F:	net/decnet/
L
Linus Torvalds 已提交
1795 1796 1797 1798 1799

DEFXX FDDI NETWORK DRIVER
P:	Maciej W. Rozycki
M:	macro@linux-mips.org
S:	Maintained
1800
F:	drivers/net/defxx.*
L
Linus Torvalds 已提交
1801

1802 1803 1804 1805
DELL LAPTOP DRIVER
P:	Matthew Garrett
M:	mjg59@srcf.ucam.org
S:	Maintained
1806
F:	drivers/platform/x86/dell-laptop.c
1807

L
Linus Torvalds 已提交
1808 1809 1810 1811 1812
DELL LAPTOP SMM DRIVER
P:	Massimo Dal Zotto
M:	dz@debian.org
W:	http://www.debian.org/~dz/i8k/
S:	Maintained
1813 1814
F:	drivers/char/i8k.c
F:	include/linux/i8k.h
L
Linus Torvalds 已提交
1815

1816 1817 1818 1819
DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
P:	Doug Warzecha
M:	Douglas_Warzecha@dell.com
S:	Maintained
1820 1821
F:	Documentation/dcdbas.txt
F:	drivers/firmware/dcdbas.*
1822

1823 1824 1825 1826 1827
DELL WMI EXTRAS DRIVER
P:	Matthew Garrett
M:	mjg59@srcf.ucam.org
S:	Maintained

L
Linus Torvalds 已提交
1828 1829 1830 1831 1832 1833
DEVICE NUMBER REGISTRY
P:	Torben Mathiasen
M:	device@lanana.org
W:	http://lanana.org/docs/device-list/index.html
S:	Maintained

R
Randy Dunlap 已提交
1834 1835 1836 1837 1838
DEVICE-MAPPER  (LVM)
P:	Alasdair Kergon
L:	dm-devel@redhat.com
W:	http://sources.redhat.com/dm
S:	Maintained
1839 1840 1841 1842
F:	Documentation/device-mapper/
F:	drivers/md/dm*
F:	include/linux/device-mapper.h
F:	include/linux/dm-*.h
R
Randy Dunlap 已提交
1843

L
Linus Torvalds 已提交
1844 1845 1846 1847 1848
DIGI INTL. EPCA DRIVER
P:	Digi International, Inc
M:	Eng.Linux@digi.com
L:	Eng.Linux@digi.com
W:	http://www.digi.com
J
Jean Delvare 已提交
1849
S:	Orphan
1850 1851 1852
F:	Documentation/serial/digiepca.txt
F:	drivers/char/epca*
F:	drivers/char/digi*
L
Linus Torvalds 已提交
1853

1854
DIRECTORY NOTIFICATION (DNOTIFY)
1855 1856 1857
P:	Eric Paris
M:	eparis@parisplace.org
S:	Maintained
1858 1859 1860
F:	Documentation/filesystems/dnotify.txt
F:	fs/notify/dnotify/
F:	include/linux/dnotify.h
L
Linus Torvalds 已提交
1861 1862 1863 1864 1865 1866 1867 1868 1869

DISK GEOMETRY AND PARTITION HANDLING
P:	Andries Brouwer
M:	aeb@cwi.nl
W:	http://www.win.tue.nl/~aeb/linux/Large-Disk.html
W:	http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
W:	http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
S:	Maintained

1870
DISKQUOTA
L
Linus Torvalds 已提交
1871 1872 1873
P:	Jan Kara
M:	jack@suse.cz
S:	Maintained
1874 1875 1876
F:	Documentation/filesystems/quota.txt
F:	fs/quota/
F:	include/linux/quota*.h
L
Linus Torvalds 已提交
1877

1878
DISTRIBUTED LOCK MANAGER (DLM)
1879 1880
P:	Christine Caulfield
M:	ccaulfie@redhat.com
1881 1882
P:	David Teigland
M:	teigland@redhat.com
1883
L:	cluster-devel@redhat.com
1884
W:	http://sources.redhat.com/cluster/
1885
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
1886
S:	Supported
1887
F:	fs/dlm/
1888

1889
DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
1890 1891
P:	Maciej Sosnowski
M:	maciej.sosnowski@intel.com
1892 1893 1894
P:	Dan Williams
M:	dan.j.williams@intel.com
S:	Supported
1895 1896
F:	drivers/dma/
F:	include/linux/dma*
1897

1898 1899 1900 1901 1902
DME1737 HARDWARE MONITOR DRIVER
P:	Juerg Haefliger
M:	juergh@gmail.com
L:	lm-sensors@lm-sensors.org
S:	Maintained
1903 1904
F:	Documentation/hwmon/dme1737
F:	drivers/hwmon/dme1737.c
1905

1906
DOCBOOK FOR DOCUMENTATION
1907 1908
P:	Randy Dunlap
M:	rdunlap@xenotime.net
1909 1910
S:	Maintained

1911
DOCKING STATION DRIVER
1912 1913
P:	Shaohua Li
M:	shaohua.li@intel.com
1914
L:	linux-acpi@vger.kernel.org
L
Len Brown 已提交
1915
S:	Supported
1916
F:	drivers/acpi/dock.c
1917

1918
DOCUMENTATION
1919 1920 1921 1922
P:	Randy Dunlap
M:	rdunlap@xenotime.net
L:	linux-doc@vger.kernel.org
S:	Maintained
1923
F:	Documentation/
R
Randy Dunlap 已提交
1924

L
Linus Torvalds 已提交
1925 1926 1927 1928 1929
DOUBLETALK DRIVER
P:	James R. Van Zandt
M:	jrv@vanzandt.mv.com
L:	blinux-list@redhat.com
S:	Maintained
1930 1931
F:	drivers/char/dtlk.c
F:	include/linux/dtlk.h
L
Linus Torvalds 已提交
1932

R
Randy Dunlap 已提交
1933 1934 1935 1936 1937 1938
DPT_I2O SCSI RAID DRIVER
P:	Adaptec OEM Raid Solutions
M:	aacraid@adaptec.com
L:	linux-scsi@vger.kernel.org
W:	http://www.adaptec.com/
S:	Maintained
1939 1940
F:	drivers/scsi/dpt*
F:	drivers/scsi/dpt/
R
Randy Dunlap 已提交
1941

L
Linus Torvalds 已提交
1942 1943 1944
DRIVER CORE, KOBJECTS, AND SYSFS
P:	Greg Kroah-Hartman
M:	gregkh@suse.de
1945
T:	quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
L
Linus Torvalds 已提交
1946
S:	Supported
1947
F:	Documentation/kobject.txt
1948
F:	drivers/base/
1949 1950 1951
F:	fs/sysfs/
F:	include/linux/kobj*
F:	lib/kobj*
L
Linus Torvalds 已提交
1952 1953 1954 1955 1956

DRM DRIVERS
P:	David Airlie
M:	airlied@linux.ie
L:	dri-devel@lists.sourceforge.net
1957
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
L
Linus Torvalds 已提交
1958
S:	Maintained
1959
F:	drivers/gpu/drm/
L
Linus Torvalds 已提交
1960 1961

DSCC4 DRIVER
1962 1963 1964
P:	Francois Romieu
M:	romieu@fr.zoreil.com
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
1965
S:	Maintained
1966
F:	drivers/net/wan/dscc4.c
L
Linus Torvalds 已提交
1967

1968 1969 1970 1971
DZ DECSTATION DZ11 SERIAL DRIVER
P:	Maciej W. Rozycki
M:	macro@linux-mips.org
S:	Maintained
1972
F:	drivers/serial/dz.*
1973

L
Linus Torvalds 已提交
1974 1975
EATA-DMA SCSI DRIVER
P:	Michael Neuffer
1976 1977 1978
M:	mike@i-Connect.Net
L:	linux-eata@i-connect.net
L:	linux-scsi@vger.kernel.org
L
Linus Torvalds 已提交
1979
S:	Maintained
1980
F:	drivers/scsi/eata*
L
Linus Torvalds 已提交
1981 1982 1983 1984 1985 1986

EATA ISA/EISA/PCI SCSI DRIVER
P:	Dario Ballabio
M:	ballabio_dario@emc.com
L:	linux-scsi@vger.kernel.org
S:	Maintained
1987
F:	drivers/scsi/eata.c
L
Linus Torvalds 已提交
1988 1989 1990 1991

EATA-PIO SCSI DRIVER
P:	Michael Neuffer
M:	mike@i-Connect.Net
1992 1993
L:	linux-eata@i-connect.net
L:	linux-scsi@vger.kernel.org
L
Linus Torvalds 已提交
1994
S:	Maintained
1995
F:	drivers/scsi/eata_pio.*
L
Linus Torvalds 已提交
1996 1997 1998 1999 2000 2001 2002 2003

EBTABLES
P:	Bart De Schuymer
M:	bart.de.schuymer@pandora.be
L:	ebtables-user@lists.sourceforge.net
L:	ebtables-devel@lists.sourceforge.net
W:	http://ebtables.sourceforge.net/
S:	Maintained
2004 2005
F:	include/linux/netfilter_bridge/ebt_*.h
F:	net/bridge/netfilter/ebt*.c
L
Linus Torvalds 已提交
2006

2007
ECRYPT FILE SYSTEM
2008 2009
P:	Tyler Hicks
M:	tyhicks@linux.vnet.ibm.com
2010 2011
P:	Dustin Kirkland
M:	kirkland@canonical.com
2012 2013
L:	ecryptfs-devel@lists.launchpad.net
W:	https://launchpad.net/ecryptfs
2014
S:	Supported
2015 2016
F:	Documentation/filesystems/ecryptfs.txt
F:	fs/ecryptfs/
2017

2018
EDAC-CORE
2019
P:	Doug Thompson
2020
M:	dougthompson@xmission.com
2021
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2022
W:	bluesmoke.sourceforge.net
2023
S:	Supported
2024 2025 2026
F:	Documentation/edac.txt
F:	drivers/edac/edac_*
F:	include/linux/edac.h
2027

2028 2029 2030 2031 2032 2033 2034 2035 2036 2037
EDAC-AMD64
P:	Doug Thompson
M:	dougthompson@xmission.com
P:	Borislav Petkov
M:	borislav.petkov@amd.com
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Supported
F:	drivers/edac/amd64_edac*

2038
EDAC-E752X
2039 2040
P:	Mark Gross
M:	mark.gross@intel.com
2041
P:	Doug Thompson
2042
M:	dougthompson@xmission.com
2043
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2044 2045
W:	bluesmoke.sourceforge.net
S:	Maintained
2046
F:	drivers/edac/e752x_edac.c
2047 2048

EDAC-E7XXX
2049
P:	Doug Thompson
2050
M:	dougthompson@xmission.com
2051
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2052 2053
W:	bluesmoke.sourceforge.net
S:	Maintained
2054
F:	drivers/edac/e7xxx_edac.c
2055

2056 2057 2058
EDAC-I82443BXGX
P:	Tim Small
M:	tim@buttersideup.com
2059
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2060 2061
W:	bluesmoke.sourceforge.net
S:	Maintained
2062
F:	drivers/edac/i82443bxgx_edac.c
2063 2064 2065 2066

EDAC-I3000
P:	Jason Uhlenkott
M:	juhlenko@akamai.com
2067
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2068 2069
W:	bluesmoke.sourceforge.net
S:	Maintained
2070
F:	drivers/edac/i3000_edac.c
2071 2072 2073

EDAC-I5000
P:	Doug Thompson
2074
M:	dougthompson@xmission.com
2075
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2076 2077
W:	bluesmoke.sourceforge.net
S:	Maintained
2078
F:	drivers/edac/i5000_edac.c
2079

2080 2081 2082
EDAC-I5400
P:	Mauro Carvalho Chehab
M:	mchehab@redhat.com
2083
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2084 2085
W:	bluesmoke.sourceforge.net
S:	Maintained
2086
F:	drivers/edac/i5400_edac.c
2087

2088 2089 2090
EDAC-I82975X
P:	Ranganathan Desikan
M:	rdesikan@jetzbroadband.com
2091
P:	Arvind R.
2092
M:	arvind@acarlab.com
2093
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2094 2095
W:	bluesmoke.sourceforge.net
S:	Maintained
2096
F:	drivers/edac/i82975x_edac.c
2097 2098 2099 2100

EDAC-PASEMI
P:	Egor Martovetsky
M:	egor@pasemi.com
2101
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2102 2103
W:	bluesmoke.sourceforge.net
S:	Maintained
2104
F:	drivers/edac/pasemi_edac.c
2105

2106 2107 2108
EDAC-R82600
P:	Tim Small
M:	tim@buttersideup.com
2109
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2110 2111
W:	bluesmoke.sourceforge.net
S:	Maintained
2112
F:	drivers/edac/r82600_edac.c
2113

2114 2115 2116 2117
EEEPC LAPTOP EXTRAS DRIVER
P:	Corentin Chary
M:	corentincj@iksaif.net
L:	acpi4asus-user@lists.sourceforge.net
2118
W:	http://acpi4asus.sf.net
2119
S:	Maintained
2120
F:	drivers/platform/x86/eeepc-laptop.c
2121

2122 2123 2124
EFS FILESYSTEM
W:	http://aeschi.ch.eu.org/efs/
S:	Orphan
2125
F:	fs/efs/
2126

2127
EHCA (IBM GX bus InfiniBand adapter) DRIVER
2128 2129 2130 2131
P:	Hoang-Nam Nguyen
M:	hnguyen@de.ibm.com
P:	Christoph Raisch
M:	raisch@de.ibm.com
2132
L:	general@lists.openfabrics.org
2133
S:	Supported
2134
F:	drivers/infiniband/hw/ehca/
2135

2136 2137 2138
EMBEDDED LINUX
P:	Paul Gortmaker
M:	paul.gortmaker@windriver.com
2139 2140
P:	Matt Mackall
M:	mpm@selenic.com
2141
P:	David Woodhouse
2142 2143 2144 2145
M:	dwmw2@infradead.org
L:	linux-embedded@vger.kernel.org
S:	Maintained

2146
EMULEX LPFC FC SCSI DRIVER
J
Jim Cromie 已提交
2147 2148 2149 2150 2151
P:	James Smart
M:	james.smart@emulex.com
L:	linux-scsi@vger.kernel.org
W:	http://sourceforge.net/projects/lpfcxxxx
S:	Supported
2152
F:	drivers/scsi/lpfc/
2153

2154 2155 2156 2157 2158 2159 2160 2161 2162
ENE CB710 FLASH CARD READER DRIVER
P:	Michał Mirosław
M:	mirq-linux@rere.qmqm.pl
L:	linux-kernel@vger.kernel.org
S:	Maintained
F:	drivers/misc/cb710/
F:	drivers/mmc/host/cb710-mmc.*
F:	include/linux/cb710.h

L
Linus Torvalds 已提交
2163 2164
EPSON 1355 FRAMEBUFFER DRIVER
P:	Christopher Hoover
2165 2166 2167
M:	ch@murgatroid.com
P:	Christopher Hoover
M:	ch@hpl.hp.com
L
Linus Torvalds 已提交
2168
S:	Maintained
2169
F:	drivers/video/epson1355fb.c
L
Linus Torvalds 已提交
2170

2171 2172 2173 2174
EPSON S1D13XXX FRAMEBUFFER DRIVER
P:	Kristoffer Ericson
M:	kristoffer.ericson@gmail.com
S:	Maintained
2175 2176
F:	drivers/video/s1d13xxxfb.c
F:	include/video/s1d13xxxfb.h
2177

L
Linus Torvalds 已提交
2178 2179 2180
ETHEREXPRESS-16 NETWORK DRIVER
P:	Philip Blundell
M:	philb@gnu.org
2181
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
2182
S:	Maintained
2183
F:	drivers/net/eexpress.*
L
Linus Torvalds 已提交
2184 2185 2186

ETHERNET BRIDGE
P:	Stephen Hemminger
2187
M:	shemminger@linux-foundation.org
2188
L:	bridge@lists.linux-foundation.org
A
Adrian Bunk 已提交
2189
W:	http://www.linux-foundation.org/en/Net:Bridge
L
Linus Torvalds 已提交
2190
S:	Maintained
2191 2192
F:	include/linux/netfilter_bridge/
F:	net/bridge/
L
Linus Torvalds 已提交
2193 2194 2195 2196 2197

ETHERTEAM 16I DRIVER
P:	Mika Kuoppala
M:	miku@iki.fi
S:	Maintained
2198
F:	drivers/net/eth16i.c
L
Linus Torvalds 已提交
2199 2200

EXT2 FILE SYSTEM
2201
L:	linux-ext4@vger.kernel.org
L
Linus Torvalds 已提交
2202
S:	Maintained
2203 2204 2205
F:	Documentation/filesystems/ext2.txt
F:	fs/ext2/
F:	include/linux/ext2*
L
Linus Torvalds 已提交
2206 2207

EXT3 FILE SYSTEM
2208 2209 2210 2211 2212 2213
P:	Stephen Tweedie
M:	sct@redhat.com
P:	Andrew Morton
M:	akpm@linux-foundation.org
P:	Andreas Dilger
M:	adilger@sun.com
2214 2215
L:	linux-ext4@vger.kernel.org
S:	Maintained
2216 2217 2218
F:	Documentation/filesystems/ext3.txt
F:	fs/ext3/
F:	include/linux/ext3*
2219 2220

EXT4 FILE SYSTEM
2221
P:	Theodore Ts'o
2222 2223 2224
M:	tytso@mit.edu
P:	Andreas Dilger
M:	adilger@sun.com
2225
L:	linux-ext4@vger.kernel.org
2226
W:	http://ext4.wiki.kernel.org
L
Linus Torvalds 已提交
2227
S:	Maintained
2228 2229
F:	Documentation/filesystems/ext4.txt
F:	fs/ext4/
L
Linus Torvalds 已提交
2230

2231 2232 2233 2234 2235
F71805F HARDWARE MONITORING DRIVER
P:	Jean Delvare
M:	khali@linux-fr.org
L:	lm-sensors@lm-sensors.org
S:	Maintained
2236 2237
F:	Documentation/hwmon/f71805f
F:	drivers/hwmon/f71805f.c
2238

L
Linus Torvalds 已提交
2239 2240 2241 2242 2243
FARSYNC SYNCHRONOUS DRIVER
P:	Kevin Curtis
M:	kevin.curtis@farsite.co.uk
W:	http://www.farsite.co.uk/
S:	Supported
2244
F:	drivers/net/wan/farsync.*
L
Linus Torvalds 已提交
2245

2246 2247 2248 2249
FAULT INJECTION SUPPORT
P:	Akinobu Mita
M:	akinobu.mita@gmail.com
S:	Supported
2250 2251
F:	Documentation/fault-injection/
F:	lib/fault-inject.c
2252

R
Randy Dunlap 已提交
2253 2254 2255 2256
FILE LOCKING (flock() and fcntl()/lockf())
P:	Matthew Wilcox
M:	matthew@wil.cx
L:	linux-fsdevel@vger.kernel.org
L
Linus Torvalds 已提交
2257
S:	Maintained
2258 2259 2260 2261
F:	include/linux/fcntl.h
F:	include/linux/fs.h
F:	fs/fcntl.c
F:	fs/locks.c
L
Linus Torvalds 已提交
2262

R
Randy Dunlap 已提交
2263 2264 2265 2266
FILESYSTEMS (VFS and infrastructure)
P:	Alexander Viro
M:	viro@zeniv.linux.org.uk
L:	linux-fsdevel@vger.kernel.org
2267
S:	Maintained
2268
F:	fs/*
2269

2270 2271 2272 2273 2274
FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
P:	Riku Voipio
M:	riku.vipio@iki.fi
L:	lm-sensors@lm-sensors.org
S:	Maintained
2275 2276
F:	drivers/hwmon/f75375s.c
F:	include/linux/f75375s.h
2277

2278 2279 2280 2281 2282
FIREWIRE SUBSYSTEM
P:	Kristian Hoegsberg
M:	krh@redhat.com
P:	Stefan Richter
M:	stefanr@s5r6.in-berlin.de
R
Randy Dunlap 已提交
2283 2284
L:	linux1394-devel@lists.sourceforge.net
W:	http://www.linux1394.org/
2285
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
R
Randy Dunlap 已提交
2286
S:	Maintained
2287 2288
F:	drivers/firewire/
F:	include/linux/firewire*.h
R
Randy Dunlap 已提交
2289 2290 2291

FIRMWARE LOADER (request_firmware)
S:	Orphan
2292 2293 2294
F:	Documentation/firmware_class/
F:	drivers/base/firmware*.c
F:	include/linux/firmware.h
R
Randy Dunlap 已提交
2295 2296 2297

FPU EMULATOR
P:	Bill Metzenthen
2298 2299
M:	billm@melbpc.org.au
W:	http://floatingpoint.sourceforge.net/emulator/index.html
R
Randy Dunlap 已提交
2300
S:	Maintained
2301
F:	arch/x86/math-emu/
R
Randy Dunlap 已提交
2302 2303 2304 2305 2306 2307

FRAME RELAY DLCI/FRAD (Sangoma drivers too)
P:	Mike McLagan
M:	mike.mclagan@linux.org
L:	netdev@vger.kernel.org
S:	Maintained
2308 2309
F:	drivers/net/wan/dlci.c
F:	drivers/net/wan/sdla.c
R
Randy Dunlap 已提交
2310 2311 2312 2313

FRAMEBUFFER LAYER
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	http://linux-fbdev.sourceforge.net/
2314
S:	Orphan
2315 2316 2317
F:	Documentation/fb/
F:	drivers/video/fb*
F:	include/linux/fb.h
R
Randy Dunlap 已提交
2318 2319 2320 2321 2322 2323

FREESCALE DMA DRIVER
P:	Li Yang
M:	leoli@freescale.com
P:	Zhang Wei
M:	zw@zh-kernel.org
2324
L:	linuxppc-dev@ozlabs.org
R
Randy Dunlap 已提交
2325
S:	Maintained
2326
F:	drivers/dma/fsldma.*
R
Randy Dunlap 已提交
2327 2328 2329 2330 2331

FREESCALE I2C CPM DRIVER
P:	Jochen Friedrich
M:	jochen@scram.de
L:	linuxppc-dev@ozlabs.org
2332
L:	linux-i2c@vger.kernel.org
2333
S:	Maintained
2334
F:	drivers/i2c/busses/i2c-cpm.c
2335

2336 2337 2338 2339 2340 2341
FREESCALE IMX / MXC FRAMEBUFFER DRIVER
P:	Sascha Hauer
M:	kernel@pengutronix.de
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained
2342 2343
F:	arch/arm/plat-mxc/include/mach/imxfb.h
F:	drivers/video/imxfb.c
2344

2345 2346 2347 2348 2349
FREESCALE SOC FS_ENET DRIVER
P:	Pantelis Antoniou
M:	pantelis.antoniou@gmail.com
P:	Vitaly Bordug
M:	vbordug@ru.mvista.com
2350
L:	linuxppc-dev@ozlabs.org
2351 2352
L:	netdev@vger.kernel.org
S:	Maintained
2353 2354
F:	drivers/net/fs_enet/
F:	include/linux/fs_enet_pd.h
2355

2356 2357 2358 2359 2360
FREESCALE QUICC ENGINE LIBRARY
P:	Timur Tabi
M:	timur@freescale.com
L:	linuxppc-dev@ozlabs.org
S:	Supported
2361 2362
F:	arch/powerpc/sysdev/qe_lib/
F:	arch/powerpc/include/asm/*qe.h
2363

2364 2365 2366
FREESCALE HIGHSPEED USB DEVICE DRIVER
P:	Li Yang
M:	leoli@freescale.com
2367
L:	linux-usb@vger.kernel.org
2368
L:	linuxppc-dev@ozlabs.org
2369
S:	Maintained
2370
F:	drivers/usb/gadget/fsl_usb2_udc.c
2371

2372 2373 2374 2375
FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
P:	Li Yang
M:	leoli@freescale.com
L:	netdev@vger.kernel.org
2376
L:	linuxppc-dev@ozlabs.org
2377
S:	Maintained
2378
F:	drivers/net/ucc_geth*
2379

2380 2381 2382 2383 2384
FREESCALE QUICC ENGINE UCC UART DRIVER
P:	Timur Tabi
M:	timur@freescale.com
L:	linuxppc-dev@ozlabs.org
S:	Supported
2385
F:	drivers/serial/ucc_uart.c
2386 2387 2388 2389

FREESCALE SOC SOUND DRIVERS
P:	Timur Tabi
M:	timur@freescale.com
2390
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
2391 2392
L:	linuxppc-dev@ozlabs.org
S:	Supported
2393 2394
F:	sound/soc/fsl/fsl*
F:	sound/soc/fsl/mpc8610_hpcd.c
2395

L
Linus Torvalds 已提交
2396 2397 2398 2399 2400
FREEVXFS FILESYSTEM
P:	Christoph Hellwig
M:	hch@infradead.org
W:	ftp://ftp.openlinux.org/pub/people/hch/vxfs
S:	Maintained
2401
F:	fs/freevxfs/
L
Linus Torvalds 已提交
2402

2403 2404
FREEZER
P:	Pavel Machek
2405
M:	pavel@ucw.cz
2406 2407 2408 2409
P:	Rafael J. Wysocki
M:	rjw@sisk.pl
L:	linux-pm@lists.linux-foundation.org
S:	Supported
2410 2411 2412
F:	Documentation/power/freezing-of-tasks.txt
F:	include/linux/freezer.h
F:	kernel/freezer.c
2413

2414 2415 2416 2417 2418 2419 2420 2421 2422
FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
P:	David Howells
M:	dhowells@redhat.com
L:	linux-cachefs@redhat.com
S:	Supported
F:	Documentation/filesystems/caching/
F:	fs/fscache/
F:	include/linux/fscache*.h

S
Steven Rostedt 已提交
2423 2424
FTRACE
P:	Steven Rostedt
2425
M:	rostedt@goodmis.org
S
Steven Rostedt 已提交
2426
S:	Maintained
2427
F:	Documentation/trace/ftrace.txt
2428 2429 2430 2431
F:	arch/*/*/*/ftrace.h
F:	arch/*/kernel/ftrace.c
F:	include/*/ftrace.h
F:	kernel/trace/
S
Steven Rostedt 已提交
2432

2433
FUJITSU FR-V (FRV) PORT
L
Linus Torvalds 已提交
2434 2435 2436
P:	David Howells
M:	dhowells@redhat.com
S:	Maintained
2437
F:	arch/frv/
L
Linus Torvalds 已提交
2438

J
Jonathan Woithe 已提交
2439 2440 2441 2442 2443
FUJITSU LAPTOP EXTRAS
P:	Jonathan Woithe
M:	jwoithe@physics.adelaide.edu.au
L:	linux-acpi@vger.kernel.org
S:	Maintained
2444
F:	drivers/platform/x86/fujitsu-laptop.c
J
Jonathan Woithe 已提交
2445

2446 2447 2448 2449 2450 2451
FUSE: FILESYSTEM IN USERSPACE
P:	Miklos Szeredi
M:	miklos@szeredi.hu
L:	fuse-devel@lists.sourceforge.net
W:	http://fuse.sourceforge.net/
S:	Maintained
2452 2453
F:	fs/fuse/
F:	include/linux/fuse.h
2454

L
Linus Torvalds 已提交
2455 2456 2457 2458
FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
P:	Rik Faith
M:	faith@cs.unc.edu
L:	linux-scsi@vger.kernel.org
J
Jean Delvare 已提交
2459
S:	Odd Fixes (e.g., new signatures)
2460
F:	drivers/scsi/fdomain.*
L
Linus Torvalds 已提交
2461 2462 2463 2464 2465 2466 2467

GDT SCSI DISK ARRAY CONTROLLER DRIVER
P:	Achim Leubner
M:	achim_leubner@adaptec.com
L:	linux-scsi@vger.kernel.org
W:	http://www.icp-vortex.com/
S:	Supported
2468
F:	drivers/scsi/gdt*
L
Linus Torvalds 已提交
2469

2470 2471 2472 2473
GENERIC GPIO I2C DRIVER
P:	Haavard Skinnemoen
M:	hskinnemoen@atmel.com
S:	Supported
2474 2475
F:	drivers/i2c/busses/i2c-gpio.c
F:	include/linux/i2c-gpio.h
2476

2477
GENERIC HDLC (WAN) DRIVERS
L
Linus Torvalds 已提交
2478 2479 2480 2481
P:	Krzysztof Halasa
M:	khc@pm.waw.pl
W:	http://www.kernel.org/pub/linux/utils/net/hdlc/
S:	Maintained
2482 2483 2484 2485 2486 2487 2488
F:	drivers/net/wan/c101.c
F:	drivers/net/wan/hd6457*
F:	drivers/net/wan/hdlc*
F:	drivers/net/wan/n2.c
F:	drivers/net/wan/pc300too.c
F:	drivers/net/wan/pci200syn.c
F:	drivers/net/wan/wanxl*
L
Linus Torvalds 已提交
2489

2490 2491 2492 2493 2494 2495 2496 2497
GENERIC INCLUDE/ASM HEADER FILES
P:	Arnd Bergmann
M:	arnd@arndb.de
L:	linux-arch@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
S:	Maintained
F:	include/asm-generic

2498 2499 2500
GFS2 FILE SYSTEM
P:	Steven Whitehouse
M:	swhiteho@redhat.com
2501
L:	cluster-devel@redhat.com
2502
W:	http://sources.redhat.com/cluster/
2503 2504
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
2505
S:	Supported
2506 2507 2508
F:	Documentation/filesystems/gfs2*.txt
F:	fs/gfs2/
F:	include/linux/gfs2_ondisk.h
2509

2510 2511 2512 2513 2514 2515 2516 2517
GIGASET ISDN DRIVERS
P:	Hansjoerg Lipp
M:	hjlipp@web.de
P:	Tilman Schmidt
M:	tilman@imap.cc
L:	gigaset307x-common@lists.sourceforge.net
W:	http://gigaset307x.sourceforge.net/
S:	Maintained
2518 2519 2520
F:	Documentation/isdn/README.gigaset
F:	drivers/isdn/gigaset/
F:	include/linux/gigaset_dev.h
2521

R
Randy Dunlap 已提交
2522
HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
2523 2524 2525 2526
P:	Frank Seidel
M:	frank@f-seidel.de
L:	lm-sensors@lm-sensors.org
W:	http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
R
Randy Dunlap 已提交
2527
S:	Maintained
2528
F:	drivers/hwmon/hdaps.c
R
Randy Dunlap 已提交
2529

2530 2531 2532 2533 2534
HYPERVISOR VIRTUAL CONSOLE DRIVER
L:	linuxppc-dev@ozlabs.org
S:	Odd Fixes
F:	drivers/char/hvc_*

2535 2536 2537
GSPCA FINEPIX SUBDRIVER
P:	Frank Zago
M:	frank@zago.net
2538
L:	linux-media@vger.kernel.org
2539
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2540
S:	Maintained
2541
F:	drivers/media/video/gspca/finepix.c
2542 2543 2544 2545

GSPCA M5602 SUBDRIVER
P:	Erik Andren
M:	erik.andren@gmail.com
2546
L:	linux-media@vger.kernel.org
2547
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2548
S:	Maintained
2549
F:	drivers/media/video/gspca/m5602/
2550 2551 2552 2553

GSPCA PAC207 SONIXB SUBDRIVER
P:	Hans de Goede
M:	hdegoede@redhat.com
2554
L:	linux-media@vger.kernel.org
2555
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2556
S:	Maintained
2557
F:	drivers/media/video/gspca/pac207.c
2558 2559 2560 2561

GSPCA T613 SUBDRIVER
P:	Leandro Costantino
M:	lcostantino@gmail.com
2562
L:	linux-media@vger.kernel.org
2563
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2564
S:	Maintained
2565
F:	drivers/media/video/gspca/t613.c
2566 2567 2568 2569 2570

GSPCA USB WEBCAM DRIVER
P:	Jean-Francois Moine
M:	moinejf@free.fr
W:	http://moinejf.free.fr
2571
L:	linux-media@vger.kernel.org
2572
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2573
S:	Maintained
2574
F:	drivers/media/video/gspca/
2575

2576 2577
HARDWARE MONITORING
L:	lm-sensors@lm-sensors.org
2578
W:	http://www.lm-sensors.org/
J
Jean Delvare 已提交
2579
S:	Orphan
2580
F:	drivers/hwmon/
2581

2582
HARDWARE RANDOM NUMBER GENERATOR CORE
J
Jean Delvare 已提交
2583
S:	Orphan
2584 2585 2586
F:	Documentation/hw_random.txt
F:	drivers/char/hw_random/
F:	include/linux/hw_random.h
2587

L
Linus Torvalds 已提交
2588 2589
HARMONY SOUND DRIVER
P:	Kyle McMartin
2590
M:	kyle@mcmartin.ca
2591
L:	linux-parisc@vger.kernel.org
L
Linus Torvalds 已提交
2592
S:	Maintained
2593
F:	sound/parisc/harmony.*
L
Linus Torvalds 已提交
2594 2595 2596 2597 2598 2599

HAYES ESP SERIAL DRIVER
P:	Andrew J. Robinson
M:	arobinso@nyx.net
W:	http://www.nyx.net/~arobinso
S:	Maintained
2600 2601
F:	Documentation/serial/hayes-esp.txt
F:	drivers/char/esp.c
R
Randy Dunlap 已提交
2602 2603 2604 2605 2606 2607

HEWLETT-PACKARD SMART2 RAID DRIVER
P:	Chirag Kantharia
M:	chirag.kantharia@hp.com
L:	iss_storagedev@hp.com
S:	Maintained
2608 2609
F:	Documentation/blockdev/cpqarray.txt
F:	drivers/block/cpqarray.*
R
Randy Dunlap 已提交
2610 2611 2612 2613 2614 2615

HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
P:	Mike Miller
M:	mike.miller@hp.com
L:	iss_storagedev@hp.com
S:	Supported
2616 2617 2618
F:	Documentation/blockdev/cciss.txt
F:	drivers/block/cciss*
F:	include/linux/cciss_ioctl.h
R
Randy Dunlap 已提交
2619

L
Linus Torvalds 已提交
2620 2621 2622 2623
HFS FILESYSTEM
P:	Roman Zippel
M:	zippel@linux-m68k.org
S:	Maintained
2624 2625
F:	Documentation/filesystems/hfs.txt
F:	fs/hfs/
L
Linus Torvalds 已提交
2626 2627 2628 2629 2630 2631 2632

HGA FRAMEBUFFER DRIVER
P:	Ferenc Bakonyi
M:	fero@drama.obuda.kando.hu
L:	linux-nvidia@lists.surfsouth.com
W:	http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
S:	Maintained
2633
F:	drivers/video/hgafb.c
L
Linus Torvalds 已提交
2634

2635
HIBERNATION (aka Software Suspend, aka swsusp)
R
Randy Dunlap 已提交
2636
P:	Pavel Machek
P
Pavel Machek 已提交
2637
M:	pavel@ucw.cz
R
Randy Dunlap 已提交
2638 2639 2640 2641
P:	Rafael J. Wysocki
M:	rjw@sisk.pl
L:	linux-pm@lists.linux-foundation.org
S:	Supported
2642 2643 2644 2645 2646 2647 2648
F:	arch/x86/power/
F:	drivers/base/power/
F:	kernel/power/
F:	include/linux/suspend.h
F:	include/linux/freezer.h
F:	include/linux/pm.h
F:	arch/*/include/asm/suspend*.h
R
Randy Dunlap 已提交
2649

2650 2651 2652
HID CORE LAYER
P:	Jiri Kosina
M:	jkosina@suse.cz
2653
L:	linux-input@vger.kernel.org
2654
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
2655
S:	Maintained
2656 2657
F:	drivers/hid/
F:	include/linux/hid*
2658

2659 2660 2661 2662
HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
P:	Thomas Gleixner
M:	tglx@linutronix.de
S:	Maintained
2663 2664 2665
F:	Documentation/timers/
F:	kernel/hrtimer.c
F:	include/linux/hrtimer.h
2666

L
Linus Torvalds 已提交
2667 2668 2669 2670 2671 2672
HIGH-SPEED SCC DRIVER FOR AX.25
P:	Klaus Kudielka
M:	klaus.kudielka@ieee.org
L:	linux-hams@vger.kernel.org
W:	http://www.nt.tuwien.ac.at/~kkudielk/Linux/
S:	Maintained
2673 2674
F:	drivers/net/hamradio/dmascc.c
F:	drivers/net/hamradio/scc.c
L
Linus Torvalds 已提交
2675

2676 2677 2678 2679 2680
HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
P:	HighPoint Linux Team
M:	linux@highpoint-tech.com
W:	http://www.highpoint-tech.com
S:	Supported
2681 2682
F:	Documentation/scsi/hptiop.txt
F:	drivers/scsi/hptiop.c
2683

L
Linus Torvalds 已提交
2684 2685 2686 2687 2688
HIPPI
P:	Jes Sorensen
M:	jes@trained-monkey.org
L:	linux-hippi@sunsite.dk
S:	Maintained
2689 2690 2691
F:	include/linux/hippidevice.h
F:	include/linux/if_hippi.h
F:	net/802/hippi.c
L
Linus Torvalds 已提交
2692

2693 2694
HOST AP DRIVER
P:	Jouni Malinen
2695 2696
M:	j@w1.fi
L:	hostap@shmoo.com (subscribers-only)
2697
L:	linux-wireless@vger.kernel.org
2698 2699
W:	http://hostap.epitest.fi/
S:	Maintained
2700
F:	drivers/net/wireless/hostap/
2701

2702 2703 2704 2705
HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
P:	Carlos Corbacho
M:	carlos@strangeworlds.co.uk
S:	Odd Fixes
2706
F:	drivers/platform/x86/tc1100-wmi.c
2707

R
Randy Dunlap 已提交
2708 2709 2710 2711
HP100:	Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
P:	Jaroslav Kysela
M:	perex@perex.cz
S:	Maintained
2712
F:	drivers/net/hp100.*
R
Randy Dunlap 已提交
2713

2714
HPET:	High Precision Event Timers driver
B
Bob Picco 已提交
2715 2716 2717
P:	Clemens Ladisch
M:	clemens@ladisch.de
S:	Maintained
2718 2719 2720
F:	Documentation/timers/hpet.txt
F:	drivers/char/hpet.c
F:	include/linux/hpet.h
B
Bob Picco 已提交
2721 2722 2723 2724 2725

HPET:	i386
P:	Venkatesh Pallipadi (Venki)
M:	venkatesh.pallipadi@intel.com
S:	Maintained
2726 2727
F:	arch/x86/kernel/hpet.c
F:	arch/x86/include/asm/hpet.h
B
Bob Picco 已提交
2728 2729

HPET:	x86_64
A
Andi Kleen 已提交
2730 2731
P:	Vojtech Pavlik
M:	vojtech@suse.cz
B
Bob Picco 已提交
2732 2733
S:	Maintained

2734
HPET:	ACPI
B
Bob Picco 已提交
2735 2736 2737
P:	Bob Picco
M:	bob.picco@hp.com
S:	Maintained
2738
F:	drivers/char/hpet.c
B
Bob Picco 已提交
2739

L
Linus Torvalds 已提交
2740 2741 2742 2743 2744
HPFS FILESYSTEM
P:	Mikulas Patocka
M:	mikulas@artax.karlin.mff.cuni.cz
W:	http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
S:	Maintained
2745
F:	fs/hpfs/
L
Linus Torvalds 已提交
2746

2747
HSO 3G MODEM DRIVER
2748 2749
P:	Jan Dumon
M:	j.dumon@option.com
2750 2751
W:	http://www.pharscape.org
S:	Maintained
2752
F:	drivers/net/usb/hso.c
2753

2754 2755 2756 2757 2758
HTCPEN TOUCHSCREEN DRIVER
P:	Pau Oliva Fora
M:	pof@eslack.org
L:	linux-input@vger.kernel.org
S:	Maintained
2759
F:	drivers/input/touchscreen/htcpen.c
2760

L
Linus Torvalds 已提交
2761 2762 2763 2764
HUGETLB FILESYSTEM
P:	William Irwin
M:	wli@holomorphy.com
S:	Maintained
2765
F:	fs/hugetlbfs/
L
Linus Torvalds 已提交
2766

M
Mark M. Hoffman 已提交
2767 2768 2769
I2C/SMBUS STUB DRIVER
P:	Mark M. Hoffman
M:	mhoffman@lightlink.com
2770
L:	linux-i2c@vger.kernel.org
M
Mark M. Hoffman 已提交
2771
S:	Maintained
2772
F:	drivers/i2c/busses/i2c-stub.c
M
Mark M. Hoffman 已提交
2773

2774
I2C SUBSYSTEM
J
Jean Delvare 已提交
2775
P:	Jean Delvare (PC drivers, core)
L
Linus Torvalds 已提交
2776
M:	khali@linux-fr.org
J
Jean Delvare 已提交
2777 2778
P:	Ben Dooks (embedded platforms)
M:	ben-linux@fluff.org
2779
L:	linux-i2c@vger.kernel.org
J
Jean Delvare 已提交
2780 2781
W:	http://i2c.wiki.kernel.org/
T:	quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
L
Linus Torvalds 已提交
2782
S:	Maintained
2783 2784 2785 2786 2787
F:	Documentation/i2c/
F:	drivers/i2c/
F:	include/linux/i2c.h
F:	include/linux/i2c-dev.h
F:	include/linux/i2c-id.h
L
Linus Torvalds 已提交
2788

2789 2790 2791
I2C-TINY-USB DRIVER
P:	Till Harbaum
M:	till@harbaum.org
2792
L:	linux-i2c@vger.kernel.org
2793
W:	http://www.harbaum.org/till/i2c_tiny_usb
2794
S:	Maintained
2795
F:	drivers/i2c/busses/i2c-tiny-usb.c
2796

L
Linus Torvalds 已提交
2797
i386 BOOT CODE
2798 2799
P:	H. Peter Anvin
M:	hpa@zytor.com
L
Linus Torvalds 已提交
2800
S:	Maintained
2801
F:	arch/x86/boot/
L
Linus Torvalds 已提交
2802 2803 2804 2805

i386 SETUP CODE / CPU ERRATA WORKAROUNDS
P:	H. Peter Anvin
M:	hpa@zytor.com
2806
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
L
Linus Torvalds 已提交
2807 2808 2809 2810 2811 2812 2813
S:	Maintained

IA64 (Itanium) PLATFORM
P:	Tony Luck
M:	tony.luck@intel.com
L:	linux-ia64@vger.kernel.org
W:	http://www.ia64-linux.org/
2814
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
L
Linus Torvalds 已提交
2815
S:	Maintained
2816
F:	arch/ia64/
L
Linus Torvalds 已提交
2817 2818 2819 2820 2821 2822

IBM MCA SCSI SUBSYSTEM DRIVER
P:	Michael Lang
M:	langa2@kph.uni-mainz.de
W:	http://www.uni-mainz.de/~langm000/linux.html
S:	Maintained
2823
F:	drivers/scsi/ibmmca.c
L
Linus Torvalds 已提交
2824 2825 2826 2827 2828

IBM Power Linux RAID adapter
P:	Brian King
M:	brking@us.ibm.com
S:	Supported
2829
F:	drivers/scsi/ipr.*
L
Linus Torvalds 已提交
2830 2831 2832 2833 2834 2835

IBM ServeRAID RAID DRIVER
P:	Jack Hammer
P:	Dave Jeffery
M:	ipslinux@adaptec.com
W:	http://www.developer.ibm.com/welcome/netfinity/serveraid.html
2836
S:	Supported
2837
F:	drivers/scsi/ips.*
L
Linus Torvalds 已提交
2838

2839
IDE SUBSYSTEM
2840 2841
P:	David S. Miller
M:	davem@davemloft.net
L
Linus Torvalds 已提交
2842
L:	linux-ide@vger.kernel.org
2843
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
L
Linus Torvalds 已提交
2844
S:	Maintained
2845 2846 2847
F:	Documentation/ide/
F:	drivers/ide/
F:	include/linux/ide.h
L
Linus Torvalds 已提交
2848

2849
IDE/ATAPI DRIVERS
2850
P:	Borislav Petkov
2851
M:	petkovbb@gmail.com
J
Jens Axboe 已提交
2852
L:	linux-ide@vger.kernel.org
2853
S:	Maintained
2854 2855
F:	Documentation/cdrom/ide-cd
F:	drivers/ide/ide-cd*
L
Linus Torvalds 已提交
2856

A
Andy Henroid 已提交
2857 2858 2859 2860 2861
IDLE-I7300
P:	Andy Henroid
M:	andrew.d.henroid@intel.com
L:	linux-pm@lists.linux-foundation.org
S:	Supported
2862
F:	drivers/idle/i7300_idle.c
A
Andy Henroid 已提交
2863

2864
IEEE 1394 SUBSYSTEM
L
Linus Torvalds 已提交
2865
P:	Ben Collins
2866
M:	ben.collins@ubuntu.com
2867 2868
P:	Stefan Richter
M:	stefanr@s5r6.in-berlin.de
L
Linus Torvalds 已提交
2869 2870
L:	linux1394-devel@lists.sourceforge.net
W:	http://www.linux1394.org/
2871
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
L
Linus Torvalds 已提交
2872
S:	Maintained
2873
F:	drivers/ieee1394/
L
Linus Torvalds 已提交
2874

2875
IEEE 1394 RAW I/O DRIVER
L
Linus Torvalds 已提交
2876 2877
P:	Dan Dennedy
M:	dan@dennedy.org
2878 2879
P:	Stefan Richter
M:	stefanr@s5r6.in-berlin.de
L
Linus Torvalds 已提交
2880
L:	linux1394-devel@lists.sourceforge.net
2881
S:	Maintained
2882
F:	drivers/ieee1394/raw1394*
2883

2884 2885 2886 2887 2888 2889 2890
IEEE 802.15.4 SUBSYSTEM
P:	Dmitry Eremin-Solenikov
M:	dbaryshkov@gmail.com
P:	Sergey Lapin
M:	slapin@ossfans.org
L:	linux-zigbee-devel@lists.sourceforge.net
W:	http://apps.sourceforge.net/trac/linux-zigbee
2891
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
2892 2893
S:	Maintained
F:	net/ieee802154/
2894
F:	drivers/ieee802154/
2895

2896 2897 2898 2899
INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
P:	Mimi Zohar
M:	zohar@us.ibm.com
S:	Supported
2900
F:	security/integrity/ima/
2901

L
Linus Torvalds 已提交
2902
IMS TWINTURBO FRAMEBUFFER DRIVER
2903
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
P
Paul Mundt 已提交
2904
S:	Orphan
2905
F:	drivers/video/imsttfb.c
L
Linus Torvalds 已提交
2906 2907 2908

INFINIBAND SUBSYSTEM
P:	Roland Dreier
2909
M:	rolandd@cisco.com
L
Linus Torvalds 已提交
2910
P:	Sean Hefty
2911
M:	sean.hefty@intel.com
L
Linus Torvalds 已提交
2912
P:	Hal Rosenstock
2913
M:	hal.rosenstock@gmail.com
2914
L:	general@lists.openfabrics.org (moderated for non-subscribers)
L
Linus Torvalds 已提交
2915
W:	http://www.openib.org/
2916
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
L
Linus Torvalds 已提交
2917
S:	Supported
2918 2919 2920
F:	Documentation/infiniband/
F:	drivers/infiniband/
F:	include/linux/if_infiniband.h
L
Linus Torvalds 已提交
2921

2922
INOTIFY
C
Cal Peake 已提交
2923
P:	John McCutchan
2924
M:	john@johnmccutchan.com
C
Cal Peake 已提交
2925
P:	Robert Love
2926
M:	rlove@rlove.org
2927 2928
P:	Eric Paris
M:	eparis@parisplace.org
2929
S:	Maintained
2930 2931 2932
F:	Documentation/filesystems/inotify.txt
F:	fs/notify/inotify/
F:	include/linux/inotify.h
2933

R
Randy Dunlap 已提交
2934 2935 2936 2937 2938
INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
P:	Dmitry Torokhov
M:	dmitry.torokhov@gmail.com
M:	dtor@mail.ru
L:	linux-input@vger.kernel.org
2939
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
R
Randy Dunlap 已提交
2940
S:	Maintained
2941
F:	drivers/input/
R
Randy Dunlap 已提交
2942

2943
INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
J
Jim Cromie 已提交
2944 2945
P:	Sylvain Meyer
M:	sylvain.meyer@worldonline.fr
2946
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
J
Jim Cromie 已提交
2947
S:	Maintained
2948 2949
F:	Documentation/fb/intelfb.txt
F:	drivers/video/intelfb/
2950

L
Linus Torvalds 已提交
2951
INTEL 810/815 FRAMEBUFFER DRIVER
J
Jim Cromie 已提交
2952
P:	Antonino Daplas
2953
M:	adaplas@gmail.com
2954
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
J
Jim Cromie 已提交
2955
S:	Maintained
2956
F:	drivers/video/i810/
L
Linus Torvalds 已提交
2957

2958 2959 2960 2961 2962 2963
INTEL MENLOW THERMAL DRIVER
P:	Sujith Thomas
M:	sujith.thomas@intel.com
L:	linux-acpi@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
S:	Supported
2964
F:	drivers/platform/x86/intel_menlow.c
2965

L
Linus Torvalds 已提交
2966 2967
INTEL IA32 MICROCODE UPDATE SUPPORT
P:	Tigran Aivazian
2968
M:	tigran@aivazian.fsnet.co.uk
L
Linus Torvalds 已提交
2969
S:	Maintained
2970 2971
F:	arch/x86/kernel/microcode_core.c
F:	arch/x86/kernel/microcode_intel.c
L
Linus Torvalds 已提交
2972

2973
INTEL I/OAT DMA DRIVER
2974 2975
P:	Maciej Sosnowski
M:	maciej.sosnowski@intel.com
2976
S:	Supported
2977
F:	drivers/dma/ioat*
2978

2979 2980 2981 2982
INTEL IOMMU (VT-d)
P:	David Woodhouse
M:	dwmw2@infradead.org
L:	iommu@lists.linux-foundation.org
2983
T:	git git://git.infradead.org/iommu-2.6.git
2984
S:	Supported
2985 2986
F:	drivers/pci/intel-iommu.c
F:	include/linux/intel-iommu.h
2987

2988 2989 2990 2991
INTEL IOP-ADMA DMA DRIVER
P:	Dan Williams
M:	dan.j.williams@intel.com
S:	Supported
2992
F:	drivers/dma/iop-adma.c
2993

2994 2995 2996 2997
INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
P:	Krzysztof Halasa
M:	khc@pm.waw.pl
S:	Maintained
2998 2999 3000 3001 3002 3003
F:	arch/arm/mach-ixp4xx/include/mach/qmgr.h
F:	arch/arm/mach-ixp4xx/include/mach/npe.h
F:	arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
F:	arch/arm/mach-ixp4xx/ixp4xx_npe.c
F:	drivers/net/arm/ixp4xx_eth.c
F:	drivers/net/wan/ixp4xx_hss.c
3004

3005 3006 3007 3008
INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
P:	Deepak Saxena
M:	dsaxena@plexity.net
S:	Maintained
3009
F:	drivers/char/hw_random/ixp4xx-rng.c
3010

3011 3012 3013 3014 3015
INTEL IXP2000 ETHERNET DRIVER
P:	Lennert Buytenhek
M:	kernel@wantstofly.org
L:	netdev@vger.kernel.org
S:	Maintained
3016
F:	drivers/net/ixp2000/
3017

3018
INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
3019 3020
P:	Jeff Kirsher
M:	jeffrey.t.kirsher@intel.com
3021 3022
P:	Jesse Brandeburg
M:	jesse.brandeburg@intel.com
3023 3024
P:	Bruce Allan
M:	bruce.w.allan@intel.com
J
Jeff Kirsher 已提交
3025 3026
P:	PJ Waskiewicz
M:	peter.p.waskiewicz.jr@intel.com
3027 3028
P:	John Ronciak
M:	john.ronciak@intel.com
3029
L:	e1000-devel@lists.sourceforge.net
3030
W:	http://e1000.sourceforge.net/
L
Linus Torvalds 已提交
3031
S:	Supported
3032 3033 3034 3035 3036 3037
F:	drivers/net/e100.c
F:	drivers/net/e1000/
F:	drivers/net/e1000e/
F:	drivers/net/igb/
F:	drivers/net/ixgb/
F:	drivers/net/ixgbe/
L
Linus Torvalds 已提交
3038

3039
INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
3040
P:	Zhu Yi
3041 3042 3043
M:	yi.zhu@intel.com
P:	James Ketrenos
M:	jketreno@linux.intel.com
3044 3045
P:	Reinette Chatre
M:	reinette.chatre@intel.com
3046
L:	linux-wireless@vger.kernel.org
3047
L:	ipw2100-devel@lists.sourceforge.net
3048
W:	http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
3049 3050
W:	http://ipw2100.sourceforge.net
S:	Supported
3051 3052
F:	Documentation/networking/README.ipw2100
F:	drivers/net/wireless/ipw2x00/ipw2100.*
3053 3054

INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
3055
P:	Zhu Yi
3056 3057 3058
M:	yi.zhu@intel.com
P:	James Ketrenos
M:	jketreno@linux.intel.com
3059 3060
P:	Reinette Chatre
M:	reinette.chatre@intel.com
3061
L:	linux-wireless@vger.kernel.org
3062
L:	ipw2100-devel@lists.sourceforge.net
3063
W:	http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
3064 3065
W:	http://ipw2200.sourceforge.net
S:	Supported
3066 3067
F:	Documentation/networking/README.ipw2200
F:	drivers/net/wireless/ipw2x00/ipw2200.*
3068

3069 3070 3071 3072 3073 3074 3075
INTEL WIRELESS WIMAX CONNECTION 2400
P:	Inaky Perez-Gonzalez
M:	inaky.perez-gonzalez@intel.com
M:	linux-wimax@intel.com
L:	wimax@linuxwimax.org
S:	Supported
W:	http://linuxwimax.org
3076 3077 3078
F:	Documentation/wimax/README.i2400m
F:	drivers/net/wimax/i2400m/
F:	include/linux/wimax/i2400m.h
3079

3080 3081 3082
INTEL WIRELESS WIFI LINK (iwlwifi)
P:	Zhu Yi
M:	yi.zhu@intel.com
3083 3084
P:	Reinette Chatre
M:	reinette.chatre@intel.com
3085 3086 3087
L:	linux-wireless@vger.kernel.org
L:	ipw3945-devel@lists.sourceforge.net
W:	http://intellinuxwireless.org
3088
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
3089
S:	Supported
3090
F:	drivers/net/wireless/iwlwifi/
3091

3092
IOC3 ETHERNET DRIVER
L
Linus Torvalds 已提交
3093 3094 3095 3096
P:	Ralf Baechle
M:	ralf@linux-mips.org
L:	linux-mips@linux-mips.org
S:	Maintained
3097
F:	drivers/net/ioc3-eth.c
L
Linus Torvalds 已提交
3098

3099 3100 3101
IOC3 SERIAL DRIVER
P:	Pat Gefre
M:	pfg@sgi.com
3102
L:	linux-mips@linux-mips.org
3103
S:	Maintained
3104
F:	drivers/serial/ioc3_serial.c
3105

3106
IP MASQUERADING
L
Linus Torvalds 已提交
3107 3108 3109
P:	Juanjo Ciarlante
M:	jjciarla@raiz.uncu.edu.ar
S:	Maintained
3110
F:	net/ipv4/netfilter/ipt_MASQUERADE.c
L
Linus Torvalds 已提交
3111

3112 3113 3114 3115 3116 3117 3118 3119 3120
IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
P:	Francois Romieu
M:	romieu@fr.zoreil.com
P:	Sorbica Shieh
M:	sorbica@icplus.com.tw
P:	Jesse Huang
M:	jesse@icplus.com.tw
L:	netdev@vger.kernel.org
S:	Maintained
3121
F:	drivers/net/ipg.c
3122

3123
IPATH DRIVER
3124
P:	Ralph Campbell
3125 3126 3127
M:	infinipath@qlogic.com
L:	general@lists.openfabrics.org
T:	git git://git.qlogic.com/ipath-linux-2.6
3128
S:	Supported
3129
F:	drivers/infiniband/hw/ipath/
3130

C
Corey Minyard 已提交
3131 3132 3133 3134 3135 3136
IPMI SUBSYSTEM
P:	Corey Minyard
M:	minyard@acm.org
L:	openipmi-developer@lists.sourceforge.net
W:	http://openipmi.sourceforge.net/
S:	Supported
3137 3138 3139
F:	Documentation/IPMI.txt
F:	drivers/char/ipmi/
F:	include/linux/ipmi*
C
Corey Minyard 已提交
3140

R
Randy Dunlap 已提交
3141 3142 3143 3144 3145 3146
IPS SCSI RAID DRIVER
P:	Adaptec OEM Raid Solutions
M:	aacraid@adaptec.com
L:	linux-scsi@vger.kernel.org
W:	http://www.adaptec.com/
S:	Maintained
3147
F:	drivers/scsi/ips*
R
Randy Dunlap 已提交
3148 3149 3150 3151 3152 3153 3154 3155

IPVS
P:	Wensong Zhang
M:	wensong@linux-vs.org
P:	Simon Horman
M:	horms@verge.net.au
P:	Julian Anastasov
M:	ja@ssi.bg
3156
L:	netdev@vger.kernel.org
R
Randy Dunlap 已提交
3157
L:	lvs-devel@vger.kernel.org
L
Linus Torvalds 已提交
3158
S:	Maintained
3159 3160
F:	Documentation/networking/ipvs-sysctl.txt
F:	net/netfilter/ipvs/
L
Linus Torvalds 已提交
3161

3162
IPWIRELESS DRIVER
3163 3164 3165 3166 3167
P:	Jiri Kosina
M:	jkosina@suse.cz
P:	David Sterba
M:	dsterba@suse.cz
S:	Maintained
3168
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
3169
F:	drivers/char/pcmcia/ipwireless/
3170

R
Randy Dunlap 已提交
3171 3172 3173 3174 3175
IPX NETWORK LAYER
P:	Arnaldo Carvalho de Melo
M:	acme@ghostprotocols.net
L:	netdev@vger.kernel.org
S:	Maintained
3176 3177 3178
F:	include/linux/ipx.h
F:	include/net/ipx.h
F:	net/ipx/
R
Randy Dunlap 已提交
3179

L
Linus Torvalds 已提交
3180
IRDA SUBSYSTEM
S
Samuel Ortiz 已提交
3181 3182
P:	Samuel Ortiz
M:	samuel@sortiz.org
3183
L:	irda-users@lists.sourceforge.net (subscribers-only)
L
Linus Torvalds 已提交
3184
W:	http://irda.sourceforge.net/
S
Samuel Ortiz 已提交
3185
S:	Maintained
3186
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
3187 3188 3189 3190
F:	Documentation/networking/irda.txt
F:	drivers/net/irda/
F:	include/net/irda/
F:	net/irda/
L
Linus Torvalds 已提交
3191

R
Randy Dunlap 已提交
3192 3193 3194 3195
ISAPNP
P:	Jaroslav Kysela
M:	perex@perex.cz
S:	Maintained
3196 3197 3198
F:	Documentation/isapnp.txt
F:	drivers/pnp/isapnp/
F:	include/linux/isapnp.h
R
Randy Dunlap 已提交
3199

3200 3201 3202 3203 3204
ISCSI
P:	Mike Christie
M:	michaelc@cs.wisc.edu
L:	open-iscsi@googlegroups.com
W:	www.open-iscsi.org
3205
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
3206
S:	Maintained
3207 3208
F:	drivers/scsi/*iscsi*
F:	include/scsi/*iscsi*
3209

L
Linus Torvalds 已提交
3210 3211
ISDN SUBSYSTEM
P:	Karsten Keil
K
Karsten Keil 已提交
3212
M:	isdn@linux-pingi.de
3213
L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
L
Linus Torvalds 已提交
3214
W:	http://www.isdn4linux.de
3215
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
L
Linus Torvalds 已提交
3216
S:	Maintained
3217 3218 3219 3220
F:	Documentation/isdn/
F:	drivers/isdn/
F:	include/linux/isdn.h
F:	include/linux/isdn/
L
Linus Torvalds 已提交
3221 3222 3223 3224

ISDN SUBSYSTEM (Eicon active card driver)
P:	Armin Schindler
M:	mac@melware.de
3225
L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
L
Linus Torvalds 已提交
3226 3227
W:	http://www.melware.de
S:	Maintained
3228
F:	drivers/isdn/hardware/eicon/
L
Linus Torvalds 已提交
3229

3230 3231 3232 3233 3234
IVTV VIDEO4LINUX DRIVER
P:	Hans Verkuil
M:	hverkuil@xs4all.nl
L:	ivtv-devel@ivtvdriver.org
L:	ivtv-users@ivtvdriver.org
3235
L:	linux-media@vger.kernel.org
3236
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3237 3238
W:	http://www.ivtvdriver.org
S:	Maintained
3239 3240 3241
F:	Documentation/video4linux/*.ivtv
F:	drivers/media/video/ivtv/
F:	include/linux/ivtv*
3242

R
Randy Dunlap 已提交
3243 3244 3245 3246 3247
JFS FILESYSTEM
P:	Dave Kleikamp
M:	shaggy@austin.ibm.com
L:	jfs-discussion@lists.sourceforge.net
W:	http://jfs.sourceforge.net/
3248
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
R
Randy Dunlap 已提交
3249
S:	Supported
3250 3251
F:	Documentation/filesystems/jfs.txt
F:	fs/jfs/
R
Randy Dunlap 已提交
3252

3253 3254 3255 3256 3257
JME NETWORK DRIVER
P:	Guo-Fu Tseng
M:	cooldavid@cooldavid.org
L:	netdev@vger.kernel.org
S:	Maintained
3258
F:	drivers/net/jme.*
3259

L
Linus Torvalds 已提交
3260 3261 3262
JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
P:	David Woodhouse
M:	dwmw2@infradead.org
3263 3264
L:	linux-mtd@lists.infradead.org
W:	http://www.linux-mtd.infradead.org/doc/jffs2.html
L
Linus Torvalds 已提交
3265
S:	Maintained
3266 3267
F:	fs/jffs2/
F:	include/linux/jffs2.h
L
Linus Torvalds 已提交
3268

3269
JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
3270 3271 3272 3273
P:	Stephen Tweedie
M:	sct@redhat.com
P:	Andrew Morton
M:	akpm@linux-foundation.org
3274
L:	linux-ext4@vger.kernel.org
3275
S:	Maintained
3276 3277 3278
F:	fs/jbd*/
F:	include/linux/ext*jbd*.h
F:	include/linux/jbd*.h
3279

3280 3281 3282 3283
K8TEMP HARDWARE MONITORING DRIVER
P:	Rudolf Marek
M:	r.marek@assembler.cz
L:	lm-sensors@lm-sensors.org
3284
S:	Maintained
3285 3286
F:	Documentation/hwmon/k8temp
F:	drivers/hwmon/k8temp.c
3287

L
Linus Torvalds 已提交
3288 3289 3290
KCONFIG
P:	Roman Zippel
M:	zippel@linux-m68k.org
3291
L:	linux-kbuild@vger.kernel.org
L
Linus Torvalds 已提交
3292
S:	Maintained
3293 3294
F:	Documentation/kbuild/kconfig-language.txt
F:	scripts/kconfig/
L
Linus Torvalds 已提交
3295

3296 3297
KDUMP
P:	Vivek Goyal
3298
M:	vgoyal@redhat.com
3299 3300
P:	Haren Myneni
M:	hbabu@us.ibm.com
3301
L:	kexec@lists.infradead.org
3302 3303
W:	http://lse.sourceforge.net/kdump/
S:	Maintained
3304
F:	Documentation/kdump/
3305

L
Linus Torvalds 已提交
3306 3307 3308 3309 3310
KERNEL AUTOMOUNTER (AUTOFS)
P:	H. Peter Anvin
M:	hpa@zytor.com
L:	autofs@linux.kernel.org
S:	Odd Fixes
3311
F:	fs/autofs/
L
Linus Torvalds 已提交
3312 3313 3314 3315 3316 3317

KERNEL AUTOMOUNTER v4 (AUTOFS4)
P:	Ian Kent
M:	raven@themaw.net
L:	autofs@linux.kernel.org
S:	Maintained
3318
F:	fs/autofs4/
L
Linus Torvalds 已提交
3319

3320
KERNEL BUILD
L
Linus Torvalds 已提交
3321 3322
P:	Sam Ravnborg
M:	sam@ravnborg.org
3323 3324
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
3325
L:	linux-kbuild@vger.kernel.org
3326
S:	Maintained
3327 3328 3329
F:	Documentation/kbuild/
F:	Makefile
F:	scripts/Makefile.*
L
Linus Torvalds 已提交
3330 3331 3332

KERNEL JANITORS
P:	Several
3333
L:	kernel-janitors@vger.kernel.org
L
Linus Torvalds 已提交
3334 3335 3336
W:	http://www.kerneljanitors.org/
S:	Maintained

3337
KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
3338 3339
P:	J. Bruce Fields
M:	bfields@fieldses.org
L
Linus Torvalds 已提交
3340
P:	Neil Brown
3341
M:	neilb@suse.de
3342
L:	linux-nfs@vger.kernel.org
L
Linus Torvalds 已提交
3343
W:	http://nfs.sourceforge.net/
3344
S:	Supported
3345 3346 3347 3348 3349 3350 3351
F:	fs/nfsd/
F:	include/linux/nfsd/
F:	fs/lockd/
F:	fs/nfs_common/
F:	net/sunrpc/
F:	include/linux/lockd/
F:	include/linux/sunrpc/
L
Linus Torvalds 已提交
3352

3353 3354
KERNEL VIRTUAL MACHINE (KVM)
P:	Avi Kivity
3355
M:	avi@redhat.com
3356 3357
L:	kvm@vger.kernel.org
W:	http://kvm.qumranet.com
3358
S:	Supported
3359 3360 3361 3362 3363
F:	Documentation/*/kvm.txt
F:	arch/*/kvm/
F:	arch/*/include/asm/kvm*
F:	include/linux/kvm*
F:	virt/kvm/
3364

3365 3366 3367
KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
P:	Joerg Roedel
M:	joerg.roedel@amd.com
3368 3369
L:	kvm@vger.kernel.org
W:	http://kvm.qumranet.com
3370
S:	Supported
3371 3372 3373
F:	arch/x86/include/asm/svm.h
F:	arch/x86/kvm/kvm_svm.h
F:	arch/x86/kvm/svm.c
3374

3375 3376 3377
KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
P:	Hollis Blanchard
M:	hollisb@us.ibm.com
3378 3379
L:	kvm-ppc@vger.kernel.org
W:	http://kvm.qumranet.com
3380
S:	Supported
3381 3382
F:	arch/powerpc/include/asm/kvm*
F:	arch/powerpc/kvm/
3383

3384
KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
3385 3386
P:	Xiantao Zhang
M:	xiantao.zhang@intel.com
3387 3388
L:	kvm-ia64@vger.kernel.org
W:	http://kvm.qumranet.com
3389
S:	Supported
3390 3391 3392
F:	Documentation/ia64/kvm.txt
F:	arch/ia64/include/asm/kvm*
F:	arch/ia64/kvm/
3393

3394 3395 3396 3397 3398 3399 3400 3401 3402
KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
P:	Carsten Otte
M:	cotte@de.ibm.com
P:	Christian Borntraeger
M:	borntraeger@de.ibm.com
M:	linux390@de.ibm.com
L:	linux-s390@vger.kernel.org
W:	http://www.ibm.com/developerworks/linux/linux390/
S:	Supported
3403 3404
F:	Documentation/s390/kvm.txt
F:	arch/s390/include/asm/kvm*
3405
F:	arch/s390/kvm/
3406

3407 3408 3409
KEXEC
P:	Eric Biederman
M:	ebiederm@xmission.com
3410
W:	http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
3411
L:	kexec@lists.infradead.org
3412
S:	Maintained
3413 3414
F:	include/linux/kexec.h
F:	kernel/kexec.c
3415

J
Jason Wessel 已提交
3416 3417 3418 3419 3420
KGDB
P:	Jason Wessel
M:	jason.wessel@windriver.com
L:	kgdb-bugreport@lists.sourceforge.net
S:	Maintained
3421 3422 3423 3424 3425
F:	Documentation/DocBook/kgdb.tmpl
F:	drivers/misc/kgdbts.c
F:	drivers/serial/kgdboc.c
F:	include/linux/kgdb.h
F:	kernel/kgdb.c
J
Jason Wessel 已提交
3426

3427 3428 3429 3430 3431
KMEMCHECK
P:	Vegard Nossum
M:	vegardno@ifi.uio.no
P	Pekka Enberg
M:	penberg@cs.helsinki.fi
3432 3433 3434
L:	linux-kernel@vger.kernel.org
S:	Maintained

3435 3436 3437 3438 3439 3440 3441 3442 3443 3444
KMEMLEAK
P:	Catalin Marinas
M:	catalin.marinas@arm.com
L:	linux-kernel@vger.kernel.org
S:	Maintained
F:	Documentation/kmemleak.txt
F:	include/linux/kmemleak.h
F:	mm/kmemleak.c
F:	mm/kmemleak-test.c

3445 3446 3447 3448
KMEMTRACE
P:	Eduard - Gabriel Munteanu
M:	eduard.munteanu@linux360.ro
S:	Maintained
3449
F:	Documentation/trace/kmemtrace.txt
3450
F:	include/linux/kmemtrace.h
3451
F:	kernel/trace/kmemtrace.c
3452

3453 3454 3455 3456 3457 3458 3459
KPROBES
P:	Ananth N Mavinakayanahalli
M:	ananth@in.ibm.com
P:	Anil S Keshavamurthy
M:	anil.s.keshavamurthy@intel.com
P:	David S. Miller
M:	davem@davemloft.net
3460 3461
P:	Masami Hiramatsu
M:	mhiramat@redhat.com
3462
S:	Maintained
3463 3464 3465
F:	Documentation/kprobes.txt
F:	include/linux/kprobes.h
F:	kernel/kprobes.c
3466

3467 3468
KS0108 LCD CONTROLLER DRIVER
P:	Miguel Ojeda Sandonis
M
Miguel Ojeda 已提交
3469 3470 3471
M:	miguel.ojeda.sandonis@gmail.com
W:	http://miguelojeda.es/auxdisplay.htm
W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3472
S:	Maintained
3473 3474 3475
F:	Documentation/auxdisplay/ks0108
F:	drivers/auxdisplay/ks0108.c
F:	include/linux/ks0108.h
3476

L
Linus Torvalds 已提交
3477 3478
LAPB module
L:	linux-x25@vger.kernel.org
3479
S:	Orphan
3480 3481 3482
F:	Documentation/networking/lapb-module.txt
F:	include/*/lapb.h
F:	net/lapb/
L
Linus Torvalds 已提交
3483 3484 3485 3486 3487 3488

LASI 53c700 driver for PARISC
P:	James E.J. Bottomley
M:	James.Bottomley@HansenPartnership.com
L:	linux-scsi@vger.kernel.org
S:	Maintained
3489 3490
F:	Documentation/scsi/53c700.txt
F:	drivers/scsi/53c700*
L
Linus Torvalds 已提交
3491

3492 3493 3494 3495
LED SUBSYSTEM
P:	Richard Purdie
M:	rpurdie@rpsys.net
S:	Maintained
3496 3497
F:	drivers/leds/
F:	include/linux/leds.h
3498

L
Linus Torvalds 已提交
3499 3500 3501 3502 3503 3504
LEGO USB Tower driver
P:	Juergen Stuber
M:	starblue@users.sourceforge.net
L:	legousb-devel@lists.sourceforge.net
W:	http://legousb.sourceforge.net/
S:	Maintained
3505
F:	drivers/usb/misc/legousbtower.c
L
Linus Torvalds 已提交
3506

3507 3508 3509 3510 3511 3512
LGUEST
P:	Rusty Russell
M:	rusty@rustcorp.com.au
L:	lguest@ozlabs.org
W:	http://lguest.ozlabs.org/
S:	Maintained
3513 3514 3515 3516 3517
F:	Documentation/lguest/
F:	arch/x86/lguest/
F:	drivers/lguest/
F:	include/linux/lguest*.h
F:	arch/x86/include/asm/lguest*.h
3518

L
Linus Torvalds 已提交
3519 3520 3521 3522 3523 3524
LINUX FOR IBM pSERIES (RS/6000)
P:	Paul Mackerras
M:	paulus@au.ibm.com
W:	http://www.ibm.com/linux/ltc/projects/ppc
S:	Supported

3525 3526 3527
LINUX FOR POWERPC (32-BIT AND 64-BIT)
P:	Benjamin Herrenschmidt
M:	benh@kernel.crashing.org
3528 3529
P:	Paul Mackerras
M:	paulus@samba.org
L
Linus Torvalds 已提交
3530 3531
W:	http://www.penguinppc.org/
L:	linuxppc-dev@ozlabs.org
3532
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
L
Linus Torvalds 已提交
3533 3534 3535 3536 3537 3538 3539 3540 3541
S:	Supported

LINUX FOR POWER MACINTOSH
P:	Benjamin Herrenschmidt
M:	benh@kernel.crashing.org
W:	http://www.penguinppc.org/
L:	linuxppc-dev@ozlabs.org
S:	Maintained

3542
LINUX FOR POWERPC EMBEDDED MPC5XXX
3543 3544
P:	Grant Likely
M:	grant.likely@secretlab.ca
L
Linus Torvalds 已提交
3545
L:	linuxppc-dev@ozlabs.org
3546
T:	git git://git.secretlab.ca/git/linux-2.6.git
L
Linus Torvalds 已提交
3547 3548 3549
S:	Maintained

LINUX FOR POWERPC EMBEDDED PPC4XX
3550 3551
P:	Josh Boyer
M:	jwboyer@linux.vnet.ibm.com
L
Linus Torvalds 已提交
3552 3553 3554
P:	Matt Porter
M:	mporter@kernel.crashing.org
W:	http://www.penguinppc.org/
3555
L:	linuxppc-dev@ozlabs.org
3556
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
L
Linus Torvalds 已提交
3557 3558
S:	Maintained

3559 3560 3561
LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
P:	Grant Likely
M:	grant.likely@secretlab.ca
3562
W:	http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
3563
L:	linuxppc-dev@ozlabs.org
3564
T:	git git://git.secretlab.ca/git/linux-2.6.git
L
Linus Torvalds 已提交
3565 3566
S:	Maintained

3567
LINUX FOR POWERPC EMBEDDED PPC8XX
3568 3569
P:	Vitaly Bordug
M:	vitb@kernel.crashing.org
3570
P:	Marcelo Tosatti
3571
M:	marcelo@kvack.org
3572
W:	http://www.penguinppc.org/
3573
L:	linuxppc-dev@ozlabs.org
3574 3575
S:	Maintained

L
Linus Torvalds 已提交
3576
LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
J
Jim Cromie 已提交
3577 3578 3579
P:	Kumar Gala
M:	galak@kernel.crashing.org
W:	http://www.penguinppc.org/
3580
L:	linuxppc-dev@ozlabs.org
J
Jim Cromie 已提交
3581
S:	Maintained
L
Linus Torvalds 已提交
3582

3583 3584 3585 3586 3587 3588 3589
LINUX FOR POWERPC PA SEMI PWRFICIENT
P:	Olof Johansson
M:	olof@lixom.net
W:	http://www.pasemi.com/
L:	linuxppc-dev@ozlabs.org
S:	Supported

L
Linus Torvalds 已提交
3590 3591
LINUX SECURITY MODULE (LSM) FRAMEWORK
P:	Chris Wright
3592
M:	chrisw@sous-sol.org
3593
L:	linux-security-module@vger.kernel.org
3594
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
L
Linus Torvalds 已提交
3595 3596
S:	Supported

R
Randy Dunlap 已提交
3597 3598 3599 3600
LLC (802.2)
P:	Arnaldo Carvalho de Melo
M:	acme@ghostprotocols.net
S:	Maintained
3601 3602 3603
F:	include/linux/llc.h
F:	include/net/llc*
F:	net/llc/
R
Randy Dunlap 已提交
3604

3605 3606 3607 3608
LIS3LV02D ACCELEROMETER DRIVER
P:	Eric Piel
M:	eric.piel@tremplin-utc.net
S:	Maintained
3609 3610
F:	Documentation/hwmon/lis3lv02d
F:	drivers/hwmon/lis3lv02d.*
3611

L
Linus Torvalds 已提交
3612 3613 3614
LM83 HARDWARE MONITOR DRIVER
P:	Jean Delvare
M:	khali@linux-fr.org
3615
L:	lm-sensors@lm-sensors.org
L
Linus Torvalds 已提交
3616
S:	Maintained
3617 3618
F:	Documentation/hwmon/lm83
F:	drivers/hwmon/lm83.c
L
Linus Torvalds 已提交
3619 3620 3621 3622

LM90 HARDWARE MONITOR DRIVER
P:	Jean Delvare
M:	khali@linux-fr.org
3623
L:	lm-sensors@lm-sensors.org
L
Linus Torvalds 已提交
3624
S:	Maintained
3625 3626
F:	Documentation/hwmon/lm90
F:	drivers/hwmon/lm90.c
L
Linus Torvalds 已提交
3627

P
Peter Zijlstra 已提交
3628 3629 3630 3631 3632
LOCKDEP AND LOCKSTAT
P:	Peter Zijlstra
M:	peterz@infradead.org
P:	Ingo Molnar
M:	mingo@redhat.com
3633
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
P
Peter Zijlstra 已提交
3634
S:	Maintained
3635 3636 3637 3638
F:	Documentation/lockdep*.txt
F:	Documentation/lockstat.txt
F:	include/linux/lockdep.h
F:	kernel/lockdep*
P
Peter Zijlstra 已提交
3639

3640
LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
L
Linus Torvalds 已提交
3641 3642
P:	Richard Russon (FlatCap)
M:	ldm@flatcap.org
3643 3644
L:	linux-ntfs-dev@lists.sourceforge.net
W:	http://www.linux-ntfs.org/content/view/19/37/
L
Linus Torvalds 已提交
3645
S:	Maintained
3646 3647
F:	Documentation/ldm.txt
F:	fs/partitions/ldm.*
L
Linus Torvalds 已提交
3648

3649 3650
LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
P:	Eric Moore
3651 3652
M:	Eric.Moore@lsi.com
M:	support@lsi.com
3653
L:	DL-MPTFusionLinux@lsi.com
3654 3655 3656
L:	linux-scsi@vger.kernel.org
W:	http://www.lsilogic.com/support
S:	Supported
3657
F:	drivers/message/fusion/
3658

L
Linus Torvalds 已提交
3659 3660 3661 3662 3663
LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
P:	Matthew Wilcox
M:	matthew@wil.cx
L:	linux-scsi@vger.kernel.org
S:	Maintained
3664
F:	drivers/scsi/sym53c8xx_2/
L
Linus Torvalds 已提交
3665

3666 3667 3668 3669 3670 3671 3672
LTP (Linux Test Project)
P:	Subrata Modak
M:	subrata@linux.vnet.ibm.com
P:	Mike Frysinger
M:	vapier@gentoo.org
L:	ltp-list@lists.sourceforge.net (subscribers-only)
W:	http://ltp.sourceforge.net/
3673
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
3674 3675
S:	Maintained

3676 3677 3678 3679 3680 3681 3682
M32R ARCHITECTURE
P:	Hirokazu Takata
M:	takata@linux-m32r.org
L:	linux-m32r@ml.linux-m32r.org
L:	linux-m32r-ja@ml.linux-m32r.org (in Japanese)
W:	http://www.linux-m32r.org/
S:	Maintained
3683
F:	arch/m32r/
3684

L
Linus Torvalds 已提交
3685 3686 3687 3688 3689 3690 3691
M68K ARCHITECTURE
P:	Geert Uytterhoeven
M:	geert@linux-m68k.org
P:	Roman Zippel
M:	zippel@linux-m68k.org
L:	linux-m68k@lists.linux-m68k.org
W:	http://www.linux-m68k.org/
3692
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
L
Linus Torvalds 已提交
3693
S:	Maintained
3694
F:	arch/m68k/
3695
F:	drivers/zorro/
L
Linus Torvalds 已提交
3696 3697 3698 3699 3700

M68K ON APPLE MACINTOSH
P:	Joshua Thompson
M:	funaho@jurai.org
W:	http://www.mac.linux-m68k.org/
3701
L:	linux-m68k@lists.linux-m68k.org
L
Linus Torvalds 已提交
3702
S:	Maintained
3703
F:	arch/m68k/mac/
L
Linus Torvalds 已提交
3704 3705 3706 3707 3708 3709

M68K ON HP9000/300
P:	Philip Blundell
M:	philb@gnu.org
W:	http://www.tazenda.demon.co.uk/phil/linux-hp
S:	Maintained
3710
F:	arch/m68k/hp300/
L
Linus Torvalds 已提交
3711

3712
MAC80211
3713 3714
P:	Johannes Berg
M:	johannes@sipsolutions.net
3715 3716
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/
3717
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
3718
S:	Maintained
3719 3720 3721
F:	Documentation/networking/mac80211-injection.txt
F:	include/net/mac80211.h
F:	net/mac80211/
3722

3723 3724 3725 3726 3727 3728 3729
MAC80211 PID RATE CONTROL
P:	Stefano Brivio
M:	stefano.brivio@polimi.it
P:	Mattias Nissler
M:	mattias.nissler@gmx.de
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
3730
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
3731
S:	Maintained
3732
F:	net/mac80211/rc80211_pid*
3733

3734 3735 3736 3737 3738
MACVLAN DRIVER
P:	Patrick McHardy
M:	kaber@trash.net
L:	netdev@vger.kernel.org
S:	Maintained
3739 3740
F:	drivers/net/macvlan.c
F:	include/linux/if_macvlan.h
3741

3742
MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
J
Jim Cromie 已提交
3743
P:	Michael Kerrisk
3744
M:	mtk.manpages@gmail.com
3745
W:	http://www.kernel.org/doc/man-pages
3746
L:	linux-man@vger.kernel.org
3747
S:	Maintained
3748

3749 3750 3751 3752 3753
MARVELL LIBERTAS WIRELESS DRIVER
P:	Dan Williams
M:	dcbw@redhat.com
L:	libertas-dev@lists.infradead.org
S:	Maintained
3754
F:	drivers/net/wireless/libertas/
3755

3756
MARVELL MV643XX ETHERNET DRIVER
3757 3758
P:	Lennert Buytenhek
M:	buytenh@marvell.com
3759
L:	netdev@vger.kernel.org
3760
S:	Supported
3761 3762
F:	drivers/net/mv643xx_eth.*
F:	include/linux/mv643xx.h
L
Linus Torvalds 已提交
3763

3764 3765 3766 3767 3768
MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
P:	Nicolas Pitre
M:	nico@cam.org
S:	Maintained

R
Randy Dunlap 已提交
3769 3770 3771 3772 3773 3774 3775 3776
MARVELL YUKON / SYSKONNECT DRIVER
P:	Mirko Lindner
M:	mlindner@syskonnect.de
P:	Ralph Roesler
M:	rroesler@syskonnect.de
W:	http://www.syskonnect.com
S:	Supported

L
Linus Torvalds 已提交
3777 3778 3779
MATROX FRAMEBUFFER DRIVER
P:	Petr Vandrovec
M:	vandrove@vc.cvut.cz
3780
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
L
Linus Torvalds 已提交
3781
S:	Maintained
3782 3783
F:	drivers/video/matrox/matroxfb_*
F:	include/linux/matroxfb.h
L
Linus Torvalds 已提交
3784

3785 3786 3787 3788 3789
MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
P:	Hans J. Koch
M:	hjk@linutronix.de
L:	lm-sensors@lm-sensors.org
S:	Maintained
3790 3791
F:	Documentation/hwmon/max6650
F:	drivers/hwmon/max6650.c
3792

3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806
MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
P:	Mauro Carvalho Chehab
M:	mchehab@infradead.org
P:	LinuxTV.org Project
L:	linux-media@vger.kernel.org
W:	http://linuxtv.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	Documentation/dvb/
F:	Documentation/video4linux/
F:	drivers/media/
F:	include/media/
F:	include/linux/dvb/
F:	include/linux/videodev*.h
3807

3808
MEGARAID SCSI DRIVERS
J
Jim Cromie 已提交
3809
P:	Neela Syam Kolli
3810
M:	megaraidlinux@lsi.com
J
Jean Delvare 已提交
3811
L:	linux-scsi@vger.kernel.org
J
Jim Cromie 已提交
3812 3813
W:	http://megaraid.lsilogic.com
S:	Maintained
3814 3815 3816
F:	Documentation/scsi/megaraid.txt
F:	drivers/scsi/megaraid.*
F:	drivers/scsi/megaraid/
3817

3818 3819 3820 3821
MEMORY MANAGEMENT
L:	linux-mm@kvack.org
W:	http://www.linux-mm.org
S:	Maintained
3822 3823
F:	include/linux/mm.h
F:	mm/
3824

3825 3826 3827 3828 3829 3830 3831 3832 3833
MEMORY RESOURCE CONTROLLER
P:	Balbir Singh
M:	balbir@linux.vnet.ibm.com
P:	Pavel Emelyanov
M:	xemul@openvz.org
P:	KAMEZAWA Hiroyuki
M:	kamezawa.hiroyu@jp.fujitsu.com
L:	linux-mm@kvack.org
S:	Maintained
3834
F:	mm/memcontrol.c
3835

3836
MEMORY TECHNOLOGY DEVICES (MTD)
L
Linus Torvalds 已提交
3837 3838 3839 3840
P:	David Woodhouse
M:	dwmw2@infradead.org
W:	http://www.linux-mtd.infradead.org/
L:	linux-mtd@lists.infradead.org
3841
T:	git git://git.infradead.org/mtd-2.6.git
L
Linus Torvalds 已提交
3842
S:	Maintained
3843 3844 3845
F:	drivers/mtd/
F:	include/linux/mtd/
F:	include/mtd/
L
Linus Torvalds 已提交
3846

3847 3848 3849 3850 3851 3852 3853
MICROBLAZE ARCHITECTURE
P:	Michal Simek
M:	monstr@monstr.eu
L:	microblaze-uclinux@itee.uq.edu.au
W:	http://www.monstr.eu/fdt/
T:	git git://git.monstr.eu/linux-2.6-microblaze.git
S:	Supported
3854
F:	arch/microblaze/
L
Linus Torvalds 已提交
3855 3856 3857 3858 3859

MICROTEK X6 SCANNER
P:	Oliver Neukum
M:	oliver@neukum.name
S:	Maintained
3860
F:	drivers/usb/image/microtek.*
L
Linus Torvalds 已提交
3861 3862 3863 3864

MIPS
P:	Ralf Baechle
M:	ralf@linux-mips.org
3865
W:	http://www.linux-mips.org/
L
Linus Torvalds 已提交
3866
L:	linux-mips@linux-mips.org
3867
T:	git git://git.linux-mips.org/pub/scm/linux.git
3868
S:	Supported
3869 3870
F:	Documentation/mips/
F:	arch/mips/
L
Linus Torvalds 已提交
3871 3872 3873

MISCELLANEOUS MCA-SUPPORT
P:	James Bottomley
3874
M:	James.Bottomley@HansenPartnership.com
L
Linus Torvalds 已提交
3875
S:	Maintained
3876 3877 3878 3879
F:	Documentation/ia64/mca.txt
F:	Documentation/mca.txt
F:	drivers/mca/
F:	include/linux/mca*
L
Linus Torvalds 已提交
3880 3881 3882 3883 3884

MODULE SUPPORT
P:	Rusty Russell
M:	rusty@rustcorp.com.au
S:	Maintained
3885 3886
F:	include/linux/module.h
F:	kernel/module.c
L
Linus Torvalds 已提交
3887 3888 3889 3890 3891 3892

MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
P:	Stelian Pop
M:	stelian@popies.net
W:	http://popies.net/meye/
S:	Maintained
3893 3894 3895
F:	Documentation/video4linux/meye.txt
F:	drivers/media/video/meye.*
F:	include/linux/meye.h
L
Linus Torvalds 已提交
3896

3897 3898 3899 3900 3901
MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
P:	Pavel Pisa
M:	ppisa@pikron.com
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Maintained
3902
F:	drivers/mmc/host/imxmmc.*
3903

L
Linus Torvalds 已提交
3904 3905 3906 3907
MOUSE AND MISC DEVICES [GENERAL]
P:	Alessandro Rubini
M:	rubini@ipvvis.unipv.it
S:	Maintained
3908 3909
F:	drivers/input/mouse/
F:	include/linux/gpio_mouse.h
L
Linus Torvalds 已提交
3910

J
Jiri Slaby 已提交
3911
MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
3912 3913 3914
P:	Jiri Slaby
M:	jirislaby@gmail.com
S:	Maintained
3915 3916
F:	Documentation/serial/moxa-smartio
F:	drivers/char/mxser.*
3917

3918 3919 3920
MSI LAPTOP SUPPORT
P:	Lennart Poettering
M:	mzxreary@0pointer.de
3921
W:	https://tango.0pointer.de/mailman/listinfo/s270-linux
3922 3923
W:	http://0pointer.de/lennart/tchibo.html
S:	Maintained
3924
F:	drivers/platform/x86/msi-laptop.c
3925

S
Samuel Ortiz 已提交
3926 3927
MULTIFUNCTION DEVICES (MFD)
P:	Samuel Ortiz
S
Samuel Ortiz 已提交
3928
M:	sameo@linux.intel.com
3929
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
S
Samuel Ortiz 已提交
3930
S:	Supported
3931
F:	drivers/mfd/
S
Samuel Ortiz 已提交
3932

P
Pierre Ossman 已提交
3933
MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
3934
P:	Pierre Ossman
3935
M:	pierre@ossman.eu
3936
S:	Maintained
3937 3938
F:	drivers/mmc/
F:	include/linux/mmc/
3939

D
David Brownell 已提交
3940 3941 3942
MULTIMEDIA CARD (MMC) ETC. OVER SPI
P:	David Brownell
M:	dbrownell@users.sourceforge.net
J
Jean Delvare 已提交
3943
S:	Odd Fixes
3944 3945
F:	drivers/mmc/host/mmc_spi.c
F:	include/linux/spi/mmc_spi.h
D
David Brownell 已提交
3946

L
Linus Torvalds 已提交
3947 3948 3949 3950
MULTISOUND SOUND DRIVER
P:	Andrew Veliath
M:	andrewtv@usa.net
S:	Maintained
3951 3952
F:	Documentation/sound/oss/MultiSound
F:	sound/oss/msnd*
L
Linus Torvalds 已提交
3953

3954 3955 3956 3957
MULTITECH MULTIPORT CARD (ISICOM)
P:	Jiri Slaby
M:	jirislaby@gmail.com
S:	Maintained
3958 3959
F:	drivers/char/isicom.c
F:	include/linux/isicom.h
3960

3961
MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
3962 3963 3964
P:	Felipe Balbi
M:	felipe.balbi@nokia.com
L:	linux-usb@vger.kernel.org
3965
T:	git git://gitorious.org/musb/mainline.git
3966
S:	Maintained
3967
F:	drivers/usb/musb/
3968

3969 3970 3971 3972 3973 3974 3975 3976
MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
P:	Andrew Gallatin
M:	gallatin@myri.com
P:	Brice Goglin
M:	brice@myri.com
L:	netdev@vger.kernel.org
W:	http://www.myri.com/scs/download-Myri10GE.html
S:	Supported
3977
F:	drivers/net/myri10ge/
3978

L
Linus Torvalds 已提交
3979
NATSEMI ETHERNET DRIVER (DP8381x)
3980
P:	Tim Hockin
L
Linus Torvalds 已提交
3981 3982
M:	thockin@hockin.org
S:	Maintained
3983
F:	drivers/net/natsemi.c
L
Linus Torvalds 已提交
3984 3985 3986 3987 3988 3989

NCP FILESYSTEM
P:	Petr Vandrovec
M:	vandrove@vc.cvut.cz
L:	linware@sh.cvut.cz
S:	Maintained
3990
F:	fs/ncpfs/
L
Linus Torvalds 已提交
3991 3992 3993 3994 3995 3996

NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
P:	James E.J. Bottomley
M:	James.Bottomley@HansenPartnership.com
L:	linux-scsi@vger.kernel.org
S:	Maintained
3997
F:	drivers/scsi/NCR_D700.*
L
Linus Torvalds 已提交
3998

3999 4000
NETEFFECT IWARP RNIC DRIVER (IW_NES)
P:	Faisal Latif
4001
M:	faisal.latif@intel.com
4002
P:	Chien Tung
4003
M:	chien.tin.tung@intel.com
4004 4005 4006 4007 4008
L:	general@lists.openfabrics.org
W:	http://www.neteffect.com
S:	Supported
F:	drivers/infiniband/hw/nes/

4009 4010
NETEM NETWORK EMULATOR
P:	Stephen Hemminger
4011
M:	shemminger@linux-foundation.org
4012
L:	netem@lists.linux-foundation.org
4013
S:	Maintained
4014
F:	net/sched/sch_netem.c
4015

4016
NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
4017 4018 4019 4020 4021 4022 4023 4024
P:	Ramkrishna Vepa
M:	ram.vepa@neterion.com
P:	Rastapur Santosh
M:	santosh.rastapur@neterion.com
P:	Sivakumar Subramani
M:	sivakumar.subramani@neterion.com
P:	Sreenivasa Honnur
M:	sreenivasa.honnur@neterion.com
4025 4026
P:	Anil Murthy
M:	anil.murthy@neterion.com
4027
L:	netdev@vger.kernel.org
4028 4029
W:	http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
W:	http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
4030
S:	Supported
4031 4032
F:	Documentation/networking/s2io.txt
F:	drivers/net/s2io*
4033

L
Linus Torvalds 已提交
4034 4035 4036 4037 4038 4039
NETFILTER/IPTABLES/IPCHAINS
P:	Rusty Russell
P:	Marc Boucher
P:	James Morris
P:	Harald Welte
P:	Jozsef Kadlecsik
4040 4041
P:	Patrick McHardy
M:	kaber@trash.net
4042 4043
L:	netfilter-devel@vger.kernel.org
L:	netfilter@vger.kernel.org
4044
L:	coreteam@netfilter.org
L
Linus Torvalds 已提交
4045 4046
W:	http://www.netfilter.org/
W:	http://www.iptables.org/
4047
T:	git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
L
Linus Torvalds 已提交
4048
S:	Supported
4049 4050 4051 4052 4053 4054
F:	include/linux/netfilter*
F:	include/linux/netfilter/
F:	include/net/netfilter/
F:	net/*/netfilter.c
F:	net/*/netfilter/
F:	net/netfilter/
L
Linus Torvalds 已提交
4055

4056 4057 4058 4059 4060 4061
NETLABEL
P:	Paul Moore
M:	paul.moore@hp.com
W:	http://netlabel.sf.net
L:	netdev@vger.kernel.org
S:	Supported
4062
F:	Documentation/netlabel/
4063 4064
F:	include/net/netlabel.h
F:	net/netlabel/
4065

L
Linus Torvalds 已提交
4066 4067 4068 4069
NETROM NETWORK LAYER
P:	Ralf Baechle
M:	ralf@linux-mips.org
L:	linux-hams@vger.kernel.org
4070
W:	http://www.linux-ax25.org/
L
Linus Torvalds 已提交
4071
S:	Maintained
4072 4073 4074
F:	include/linux/netrom.h
F:	include/net/netrom.h
F:	net/netrom/
L
Linus Torvalds 已提交
4075

4076
NETWORK BLOCK DEVICE (NBD)
L
Linus Torvalds 已提交
4077 4078 4079
P:	Paul Clements
M:	Paul.Clements@steeleye.com
S:	Maintained
4080 4081 4082
F:	Documentation/blockdev/nbd.txt
F:	drivers/block/nbd.c
F:	include/linux/nbd.h
L
Linus Torvalds 已提交
4083 4084

NETWORKING [GENERAL]
B
Ben Hutchings 已提交
4085 4086
P:	David S. Miller
M:	davem@davemloft.net
4087
L:	netdev@vger.kernel.org
4088 4089
W:	http://www.linuxfoundation.org/en/Net
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
L
Linus Torvalds 已提交
4090
S:	Maintained
4091 4092
F:	net/
F:	include/net/
L
Linus Torvalds 已提交
4093 4094 4095 4096 4097 4098 4099 4100 4101

NETWORKING [IPv4/IPv6]
P:	David S. Miller
M:	davem@davemloft.net
P:	Alexey Kuznetsov
M:	kuznet@ms2.inr.ac.ru
P:	Pekka Savola (ipv6)
M:	pekkas@netcore.fi
P:	James Morris
4102
M:	jmorris@namei.org
L
Linus Torvalds 已提交
4103 4104 4105
P:	Hideaki YOSHIFUJI
M:	yoshfuji@linux-ipv6.org
P:	Patrick McHardy
4106
M:	kaber@trash.net
4107
L:	netdev@vger.kernel.org
4108
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
L
Linus Torvalds 已提交
4109
S:	Maintained
4110 4111 4112
F:	net/ipv4/
F:	net/ipv6/
F:	include/net/ip*
L
Linus Torvalds 已提交
4113

4114 4115 4116 4117 4118 4119
NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
P:	Paul Moore
M:	paul.moore@hp.com
L:	netdev@vger.kernel.org
S:	Maintained

4120 4121 4122
NETWORKING [WIRELESS]
P:	John W. Linville
M:	linville@tuxdriver.com
4123
L:	linux-wireless@vger.kernel.org
4124
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
4125
S:	Maintained
4126 4127
F:	net/wireless/
F:	include/net/ieee80211*
4128
F:	include/linux/wireless.h
4129

4130 4131 4132 4133 4134 4135 4136
NETWORKING DRIVERS
L:	netdev@vger.kernel.org
W:	http://www.linuxfoundation.org/en/Net
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
S:	Odd Fixes
F:	drivers/net/

4137
NETXEN (1/10) GbE SUPPORT
4138 4139
P:	Dhananjay Phadke
M:	dhananjay@netxen.com
4140 4141 4142
L:	netdev@vger.kernel.org
W:	http://www.netxen.com
S:	Supported
4143
F:	drivers/net/netxen/
4144

4145
NFS, SUNRPC, AND LOCKD CLIENTS
L
Linus Torvalds 已提交
4146
P:	Trond Myklebust
4147 4148 4149 4150
M:	Trond.Myklebust@netapp.com
L:	linux-nfs@vger.kernel.org
W:	http://client.linux-nfs.org
T:	git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
L
Linus Torvalds 已提交
4151
S:	Maintained
4152 4153 4154 4155 4156 4157 4158
F:	fs/lockd/
F:	fs/nfs/
F:	fs/nfs_common/
F:	net/sunrpc/
F:	include/linux/lockd/
F:	include/linux/nfs*
F:	include/linux/sunrpc/
L
Linus Torvalds 已提交
4159 4160

NI5010 NETWORK DRIVER
4161 4162 4163 4164
P:	Jan-Pascal van Best
M:	janpascal@vanbest.org
P:	Andreas Mohr
M:	andi@lisas.de
4165
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
4166
S:	Maintained
4167
F:	drivers/net/ni5010.*
L
Linus Torvalds 已提交
4168

R
Ryusuke Konishi 已提交
4169 4170 4171 4172 4173 4174
NILFS2 FILESYSTEM
P:	KONISHI Ryusuke
M:	konishi.ryusuke@lab.ntt.co.jp
L:	users@nilfs.org
W:	http://www.nilfs.org/en/
S:	Supported
4175 4176 4177
F:	Documentation/filesystems/nilfs2.txt
F:	fs/nilfs2/
F:	include/linux/nilfs2_fs.h
R
Ryusuke Konishi 已提交
4178

L
Linus Torvalds 已提交
4179 4180 4181 4182 4183
NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
P:	YOKOTA Hiroshi
M:	yokota@netlab.is.tsukuba.ac.jp
W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
S:	Maintained
4184 4185
F:	Documentation/scsi/NinjaSCSI.txt
F:	drivers/scsi/pcmcia/nsp_*
L
Linus Torvalds 已提交
4186 4187 4188 4189 4190 4191 4192 4193

NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
P:	GOTO Masanori
M:	gotom@debian.or.jp
P:	YOKOTA Hiroshi
M:	yokota@netlab.is.tsukuba.ac.jp
W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
S:	Maintained
4194 4195
F:	Documentation/scsi/NinjaSCSI.txt
F:	drivers/scsi/nsp32*
L
Linus Torvalds 已提交
4196 4197 4198 4199 4200

NTFS FILESYSTEM
P:	Anton Altaparmakov
M:	aia21@cantab.net
L:	linux-ntfs-dev@lists.sourceforge.net
A
Adrian Bunk 已提交
4201
W:	http://www.linux-ntfs.org/
4202
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
L
Linus Torvalds 已提交
4203
S:	Maintained
4204 4205
F:	Documentation/filesystems/ntfs.txt
F:	fs/ntfs/
L
Linus Torvalds 已提交
4206

4207
NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
J
Jim Cromie 已提交
4208
P:	Antonino Daplas
4209
M:	adaplas@gmail.com
4210
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
J
Jim Cromie 已提交
4211
S:	Maintained
4212 4213
F:	drivers/video/riva/
F:	drivers/video/nvidia/
L
Linus Torvalds 已提交
4214

4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277
OMAP SUPPORT
P:	Tony Lindgren <tony@atomide.com>
M:	tony@atomide.com
L:	linux-omap@vger.kernel.org
W:	http://www.muru.com/linux/omap/
W:	http://linux.omap.com/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
S:	Maintained
F:	arch/arm/*omap*

OMAP CLOCK FRAMEWORK SUPPORT
P:	Paul Walmsley
M:	paul@pwsan.com
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	arch/arm/*omap*/*clock*

OMAP POWER MANAGEMENT SUPPORT
P:	Kevin Hilman
M:	khilman@deeprootsystems.com
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	arch/arm/*omap*/*pm*

OMAP AUDIO SUPPORT
P:	Jarkko Nikula
M:	jhnikula@gmail.com
L:	alsa-devel@alsa-project.org (subscribers-only)
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	sound/soc/omap/

OMAP FRAMEBUFFER SUPPORT
P:	Imre Deak
M:	imre.deak@nokia.com
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	drivers/video/omap/

OMAP MMC SUPPORT
P:	Jarkko Lavinen
M:	jarkko.lavinen@nokia.com
L:	linux-kernel@vger.kernel.org
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	drivers/mmc/host/*omap*

OMAP RANDOM NUMBER GENERATOR SUPPORT
P:	Deepak Saxena
M:	dsaxena@plexity.net
S:	Maintained
F:	drivers/char/hw_random/omap-rng.c

OMAP USB SUPPORT
P:	Felipe Balbi
M:	felipe.balbi@nokia.com
P:	David Brownell
M:	dbrownell@users.sourceforge.net
L:	linux-usb@vger.kernel.org
L:	linux-omap@vger.kernel.org
S:	Maintained

4278 4279 4280 4281 4282
OMFS FILESYSTEM
P:	Bob Copeland
M:	me@bobcopeland.com
L:	linux-karma-devel@lists.sourceforge.net
S:	Maintained
4283 4284
F:	Documentation/filesystems/omfs.txt
F:	fs/omfs/
4285

4286 4287 4288 4289
OMNIKEY CARDMAN 4000 DRIVER
P:	Harald Welte
M:	laforge@gnumonks.org
S:	Maintained
4290 4291
F:	drivers/char/pcmcia/cm4000_cs.c
F:	include/linux/cm4000_cs.h
4292

4293 4294 4295 4296
OMNIKEY CARDMAN 4040 DRIVER
P:	Harald Welte
M:	laforge@gnumonks.org
S:	Maintained
4297
F:	drivers/char/pcmcia/cm4040_cs.*
4298

4299
OMNIVISION OV7670 SENSOR DRIVER
4300
P:	Jonathan Corbet
4301
M:	corbet@lwn.net
4302
L:	linux-media@vger.kernel.org
4303
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
4304
S:	Maintained
4305
F:	drivers/media/video/ov7670.c
4306

4307 4308 4309 4310 4311
ONENAND FLASH DRIVER
P:	Kyungmin Park
M:	kyungmin.park@samsung.com
L:	linux-mtd@lists.infradead.org
S:	Maintained
4312 4313
F:	drivers/mtd/onenand/
F:	include/linux/mtd/onenand*.h
4314

L
Linus Torvalds 已提交
4315 4316 4317 4318 4319 4320
ONSTREAM SCSI TAPE DRIVER
P:	Willem Riede
M:	osst@riede.org
L:	osst-users@lists.sourceforge.net
L:	linux-scsi@vger.kernel.org
S:	Maintained
4321 4322
F:	drivers/scsi/osst*
F:	drivers/scsi/st*
L
Linus Torvalds 已提交
4323

R
Randy Dunlap 已提交
4324 4325 4326
OPENCORES I2C BUS DRIVER
P:	Peter Korsgaard
M:	jacmet@sunsite.dk
4327
L:	linux-i2c@vger.kernel.org
R
Randy Dunlap 已提交
4328
S:	Maintained
4329 4330
F:	Documentation/i2c/busses/i2c-ocores
F:	drivers/i2c/busses/i2c-ocores.c
R
Randy Dunlap 已提交
4331

L
Linus Torvalds 已提交
4332
OPROFILE
4333 4334
P:	Robert Richter
M:	robert.richter@amd.com
L
Linus Torvalds 已提交
4335 4336
L:	oprofile-list@lists.sf.net
S:	Maintained
4337 4338 4339
F:	arch/*/oprofile/
F:	drivers/oprofile/
F:	include/linux/oprofile.h
L
Linus Torvalds 已提交
4340

R
Randy Dunlap 已提交
4341 4342 4343 4344 4345 4346 4347
ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
P:	Mark Fasheh
M:	mfasheh@suse.com
P:	Joel Becker
M:	joel.becker@oracle.com
L:	ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
W:	http://oss.oracle.com/projects/ocfs2/
4348
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
R
Randy Dunlap 已提交
4349
S:	Supported
4350 4351 4352
F:	Documentation/filesystems/ocfs2.txt
F:	Documentation/filesystems/dlmfs.txt
F:	fs/ocfs2/
R
Randy Dunlap 已提交
4353

L
Linus Torvalds 已提交
4354 4355 4356 4357 4358
ORINOCO DRIVER
P:	Pavel Roskin
M:	proski@gnu.org
P:	David Gibson
M:	hermes@gibson.dropbear.id.au
4359
L:	linux-wireless@vger.kernel.org
4360 4361 4362
L:	orinoco-users@lists.sourceforge.net
L:	orinoco-devel@lists.sourceforge.net
W:	http://www.nongnu.org/orinoco/
L
Linus Torvalds 已提交
4363
S:	Maintained
4364
F:	drivers/net/wireless/orinoco/
L
Linus Torvalds 已提交
4365

4366 4367 4368 4369 4370 4371 4372
OSD LIBRARY
P:	Boaz Harrosh
M:	bharrosh@panasas.com
P:	Benny Halevy
M:	bhalevy@panasas.com
L:	osd-dev@open-osd.org
W:	http://open-osd.org
4373
T:	git git://git.open-osd.org/open-osd.git
4374 4375
S:	Maintained

R
Randy Dunlap 已提交
4376 4377 4378 4379 4380
P54 WIRELESS DRIVER
P:	Michael Wu
M:	flamingice@sourmilk.net
L:	linux-wireless@vger.kernel.org
W:	http://prism54.org
4381
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
R
Randy Dunlap 已提交
4382
S:	Maintained
4383
F:	drivers/net/wireless/p54/
R
Randy Dunlap 已提交
4384

4385 4386 4387 4388 4389
PA SEMI ETHERNET DRIVER
P:	Olof Johansson
M:	olof@lixom.net
L:	netdev@vger.kernel.org
S:	Maintained
4390
F:	drivers/net/pasemi_mac.*
4391

4392 4393 4394
PA SEMI SMBUS DRIVER
P:	Olof Johansson
M:	olof@lixom.net
4395
L:	linux-i2c@vger.kernel.org
4396
S:	Maintained
4397
F:	drivers/i2c/busses/i2c-pasemi.c
4398

4399 4400 4401 4402
PANASONIC LAPTOP ACPI EXTRAS DRIVER
P:	Harald Welte
M:	laforge@gnumonks.org
S:	Maintained
4403
F:	drivers/platform/x86/panasonic-laptop.c
4404

4405 4406 4407 4408 4409 4410 4411 4412
PANASONIC MN10300/AM33 PORT
P:	David Howells
M:	dhowells@redhat.com
P:	Koichi Yasutake
M:	yasutake.koichi@jp.panasonic.com
L:	linux-am33-list@redhat.com (moderated for non-subscribers)
W:	ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
S:	Maintained
4413 4414
F:	Documentation/mn10300/
F:	arch/mn10300/
4415

L
Linus Torvalds 已提交
4416
PARALLEL PORT SUPPORT
4417
L:	linux-parport@lists.infradead.org (subscribers-only)
4418
S:	Orphan
4419 4420 4421 4422
F:	drivers/parport/
F:	include/linux/parport*.h
F:	drivers/char/ppdev.c
F:	include/linux/ppdev.h
L
Linus Torvalds 已提交
4423

4424 4425 4426 4427 4428
PARAVIRT_OPS INTERFACE
P:	Jeremy Fitzhardinge
M:	jeremy@xensource.com
P:	Chris Wright
M:	chrisw@sous-sol.org
4429 4430
P:	Alok Kataria
M:	akataria@vmware.com
4431 4432 4433 4434
P:	Rusty Russell
M:	rusty@rustcorp.com.au
L:	virtualization@lists.osdl.org
S:	Supported
4435 4436 4437
F:	Documentation/ia64/paravirt_ops.txt
F:	arch/*/kernel/paravirt*
F:	arch/*/include/asm/paravirt.h
4438

R
Randy Dunlap 已提交
4439 4440 4441 4442 4443 4444
PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
P:	Tim Waugh
M:	tim@cyberelk.net
L:	linux-parport@lists.infradead.org (subscribers-only)
W:	http://www.torque.net/linux-pp.html
S:	Maintained
4445 4446
F:	Documentation/blockdev/paride.txt
F:	drivers/block/paride/
R
Randy Dunlap 已提交
4447 4448 4449 4450

PARISC ARCHITECTURE
P:	Kyle McMartin
M:	kyle@mcmartin.ca
4451 4452
P:	Helge Deller
M:	deller@gmx.de
R
Randy Dunlap 已提交
4453 4454
L:	linux-parisc@vger.kernel.org
W:	http://www.parisc-linux.org/
4455
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
R
Randy Dunlap 已提交
4456
S:	Maintained
4457 4458
F:	arch/parisc/
F:	drivers/parisc/
R
Randy Dunlap 已提交
4459

4460 4461 4462 4463 4464
PC87360 HARDWARE MONITORING DRIVER
P:	Jim Cromie
M:	jim.cromie@gmail.com
L:	lm-sensors@lm-sensors.org
S:	Maintained
4465 4466
F:	Documentation/hwmon/pc87360
F:	drivers/hwmon/pc87360.c
4467 4468 4469 4470 4471

PC8736x GPIO DRIVER
P:	Jim Cromie
M:	jim.cromie@gmail.com
S:	Maintained
4472
F:	drivers/char/pc8736x_gpio.c
4473

4474 4475 4476 4477
PCA9532 LED DRIVER
P:	Riku Voipio
M:	riku.voipio@iki.fi
S:	Maintained
4478 4479
F:	drivers/leds/leds-pca9532.c
F:	include/linux/leds-pca9532.h
4480

4481 4482 4483
PCI ERROR RECOVERY
P:	Linas Vepstas
M:	linas@austin.ibm.com
4484
L:	linux-pci@vger.kernel.org
4485
S:	Supported
4486 4487
F:	Documentation/PCI/pci-error-recovery.txt
F:	Documentation/powerpc/eeh-pci-error-recovery.txt
4488

L
Linus Torvalds 已提交
4489
PCI SUBSYSTEM
4490 4491
P:	Jesse Barnes
M:	jbarnes@virtuousgeek.org
4492
L:	linux-pci@vger.kernel.org
4493
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
L
Linus Torvalds 已提交
4494
S:	Supported
4495 4496 4497
F:	Documentation/PCI/
F:	drivers/pci/
F:	include/linux/pci*
L
Linus Torvalds 已提交
4498

4499 4500 4501
PCIE HOTPLUG DRIVER
P:	Kristen Carlson Accardi
M:	kristen.c.accardi@intel.com
4502
L:	linux-pci@vger.kernel.org
L
Len Brown 已提交
4503
S:	Supported
4504
F:	drivers/pci/pcie/
4505

L
Linus Torvalds 已提交
4506
PCMCIA SUBSYSTEM
4507
P:	Linux PCMCIA Team
4508
L:	linux-pcmcia@lists.infradead.org
4509
W:	http://lists.infradead.org/mailman/listinfo/linux-pcmcia
4510
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
4511
S:	Maintained
4512 4513 4514
F:	Documentation/pcmcia/
F:	drivers/pcmcia/
F:	include/pcmcia/
L
Linus Torvalds 已提交
4515 4516

PCNET32 NETWORK DRIVER
P
pcnet32@verizon.net 已提交
4517 4518
P:	Don Fry
M:	pcnet32@verizon.net
4519
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
4520
S:	Maintained
4521
F:	drivers/net/pcnet32.c
L
Linus Torvalds 已提交
4522

4523
PER-TASK DELAY ACCOUNTING
4524 4525
P:	Balbir Singh
M:	balbir@linux.vnet.ibm.com
4526
S:	Maintained
4527 4528
F:	include/linux/delayacct.h
F:	kernel/delayacct.c
4529

4530 4531 4532 4533 4534 4535 4536 4537 4538 4539
PERFORMANCE COUNTER SUBSYSTEM
P:	Peter Zijlstra
M:	a.p.zijlstra@chello.nl
P:	Paul Mackerras
M:	paulus@samba.org
P:	Ingo Molnar
M:	mingo@elte.hu
L:	linux-kernel@vger.kernel.org
S:	Supported

4540 4541 4542 4543 4544
PERSONALITY HANDLING
P:	Christoph Hellwig
M:	hch@infradead.org
L:	linux-abi-devel@lists.sourceforge.net
S:	Maintained
4545
F:	include/linux/personality.h
4546

L
Linus Torvalds 已提交
4547
PHRAM MTD DRIVER
4548 4549
P:	Joern Engel
M:	joern@lazybastard.org
L
Linus Torvalds 已提交
4550 4551
L:	linux-mtd@lists.infradead.org
S:	Maintained
4552
F:	drivers/mtd/devices/phram.c
L
Linus Torvalds 已提交
4553

4554 4555 4556 4557
PKTCDVD DRIVER
P:	Peter Osterlund
M:	petero2@telia.com
S:	Maintained
4558 4559
F:	drivers/block/pktcdvd.c
F:	include/linux/pktcdvd.h
4560

L
Linus Torvalds 已提交
4561
POSIX CLOCKS and TIMERS
4562 4563
P:	Thomas Gleixner
M:	tglx@linutronix.de
L
Linus Torvalds 已提交
4564
S:	Supported
4565 4566 4567
F:	fs/timerfd.c
F:	include/linux/timer*
F:	kernel/*timer*
L
Linus Torvalds 已提交
4568

4569 4570 4571 4572 4573
POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
P:	Anton Vorontsov
M:	cbou@mail.ru
P:	David Woodhouse
M:	dwmw2@infradead.org
4574
T:	git git://git.infradead.org/battery-2.6.git
4575
S:	Maintained
4576 4577
F:	include/linux/power_supply.h
F:	drivers/power/power_supply*
4578

L
Linus Torvalds 已提交
4579 4580
PNP SUPPORT
P:	Adam Belay
4581 4582 4583
M:	abelay@mit.edu
P:	Bjorn Helgaas
M:	bjorn.helgaas@hp.com
L
Linus Torvalds 已提交
4584
S:	Maintained
4585
F:	drivers/pnp/
L
Linus Torvalds 已提交
4586

4587 4588 4589
PNXxxxx I2C DRIVER
P:	Vitaly Wool
M:	vitalywool@gmail.com
4590
L:	linux-i2c@vger.kernel.org
4591
S:	Maintained
4592
F:	drivers/i2c/busses/i2c-pnx.c
4593

L
Linus Torvalds 已提交
4594 4595 4596 4597 4598
PPP PROTOCOL DRIVERS AND COMPRESSORS
P:	Paul Mackerras
M:	paulus@samba.org
L:	linux-ppp@vger.kernel.org
S:	Maintained
4599
F:	drivers/net/ppp_*
L
Linus Torvalds 已提交
4600 4601 4602 4603 4604

PPP OVER ATM (RFC 2364)
P:	Mitchell Blank Jr
M:	mitch@sfgoth.com
S:	Maintained
4605 4606
F:	net/atm/pppoatm.c
F:	include/linux/atmppp.h
L
Linus Torvalds 已提交
4607 4608 4609

PPP OVER ETHERNET
P:	Michal Ostrowski
4610
M:	mostrows@earthlink.net
L
Linus Torvalds 已提交
4611
S:	Maintained
4612 4613
F:	drivers/net/pppoe.c
F:	drivers/net/pppox.c
L
Linus Torvalds 已提交
4614

4615 4616 4617 4618
PPP OVER L2TP
P:	James Chapman
M:	jchapman@katalix.com
S:	Maintained
4619 4620
F:	drivers/net/pppol2tp.c
F:	include/linux/if_pppol2tp.h
4621

R
Rodolfo Giometti 已提交
4622 4623 4624 4625 4626 4627 4628
PPS SUPPORT
P:	Rodolfo Giometti
M:	giometti@enneenne.com
W:	http://wiki.enneenne.com/index.php/LinuxPPS_support
L:	linuxpps@ml.enneenne.com (subscribers-only)
S:	Maintained

L
Linus Torvalds 已提交
4629 4630 4631 4632 4633 4634
PREEMPTIBLE KERNEL
P:	Robert Love
M:	rml@tech9.net
L:	kpreempt-tech@lists.sourceforge.net
W:	ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
S:	Supported
4635 4636
F:	Documentation/preempt-locking.txt
F:	include/linux/preempt.h
L
Linus Torvalds 已提交
4637 4638

PRISM54 WIRELESS DRIVER
4639 4640
P:	Luis R. Rodriguez
M:	mcgrof@gmail.com
4641
L:	linux-wireless@vger.kernel.org
L
Linus Torvalds 已提交
4642 4643
W:	http://prism54.org
S:	Maintained
4644
F:	drivers/net/wireless/prism54/
L
Linus Torvalds 已提交
4645 4646 4647 4648 4649 4650 4651

PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
P:	Peter Denison
M:	promise@pnd-pc.demon.co.uk
W:	http://www.pnd-pc.demon.co.uk/promise/
S:	Maintained

4652 4653 4654 4655 4656
PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
P:	Mikael Pettersson
M:	mikpe@it.uu.se
L:	linux-ide@vger.kernel.org
S:	Maintained
4657
F:	drivers/ata/sata_promise.*
4658

4659
PS3 NETWORK SUPPORT
4660 4661
P:	Geoff Levand
M:	geoffrey.levand@am.sony.com
4662 4663 4664
L:	netdev@vger.kernel.org
L:	cbe-oss-dev@ozlabs.org
S:	Supported
4665
F:	drivers/net/ps3_gelic_net.*
4666

4667 4668 4669 4670 4671 4672
PS3 PLATFORM SUPPORT
P:	Geoff Levand
M:	geoffrey.levand@am.sony.com
L:	linuxppc-dev@ozlabs.org
L:	cbe-oss-dev@ozlabs.org
S:	Supported
4673 4674 4675 4676 4677 4678
F:	arch/powerpc/boot/ps3*
F:	arch/powerpc/include/asm/lv1call.h
F:	arch/powerpc/include/asm/ps3*.h
F:	arch/powerpc/platforms/ps3/
F:	drivers/*/ps3*
F:	drivers/ps3/
4679
F:	drivers/rtc/rtc-ps3.c
4680
F:	drivers/usb/host/*ps3.c
4681
F:	sound/ppc/snd_ps3*
4682

4683 4684 4685 4686 4687 4688
PS3VRAM DRIVER
P:	Jim Paris
M:	jim@jtan.com
L:	cbe-oss-dev@ozlabs.org
S:	Maintained

4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700
PTRACE SUPPORT
P:	Roland McGrath
M:	roland@redhat.com
P:	Oleg Nesterov
M:	oleg@redhat.com
S:	Maintained
F:	include/asm-generic/syscall.h
F:	include/linux/ptrace.h
F:	include/linux/regset.h
F:	include/linux/tracehook.h
F:	kernel/ptrace.c

4701 4702 4703
PVRUSB2 VIDEO4LINUX DRIVER
P:	Mike Isely
M:	isely@pobox.com
4704
L:	pvrusb2@isely.net	(subscribers-only)
4705
L:	linux-media@vger.kernel.org
4706
W:	http://www.isely.net/pvrusb2/
4707
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
4708
S:	Maintained
4709 4710
F:	Documentation/video4linux/README.pvrusb2
F:	drivers/media/video/pvrusb2/
4711

4712 4713
PXA2xx/PXA3xx SUPPORT
P:	Eric Miao
4714
M:	eric.y.miao@gmail.com
4715 4716
P:	Russell King
M:	linux@arm.linux.org.uk
4717
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
L
Linus Torvalds 已提交
4718
S:	Maintained
4719 4720 4721 4722 4723
F:	arch/arm/mach-pxa/
F:	drivers/pcmcia/pxa2xx*
F:	drivers/spi/pxa2xx*
F:	drivers/usb/gadget/pxa2*
F:	include/sound/pxa2xx-lib.h
4724 4725
F:	sound/arm/pxa*
F:	sound/soc/pxa
L
Linus Torvalds 已提交
4726

4727 4728
PXA168 SUPPORT
P:	Eric Miao
4729
M:	eric.y.miao@gmail.com
4730 4731 4732
P:	Jason Chagas
M:	jason.chagas@marvell.com
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
4733
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
4734
S:	Maintained
4735

4736 4737
PXA910 SUPPORT
P:	Eric Miao
4738
M:	eric.y.miao@gmail.com
4739
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
4740
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
4741
S:	Maintained
4742

4743 4744 4745
PXA MMCI DRIVER
S:	Orphan

4746 4747 4748 4749 4750 4751
PXA RTC DRIVER
P:	Robert Jarzmik
M:	robert.jarzmik@free.fr
L:	rtc-linux@googlegroups.com
S:	Maintained

L
Linus Torvalds 已提交
4752 4753
QLOGIC QLA2XXX FC-SCSI DRIVER
P:	Andrew Vasquez
4754
M:	linux-driver@qlogic.com
L
Linus Torvalds 已提交
4755 4756
L:	linux-scsi@vger.kernel.org
S:	Supported
4757 4758
F:	Documentation/scsi/LICENSE.qla2xxx
F:	drivers/scsi/qla2xxx/
L
Linus Torvalds 已提交
4759

R
Ron Mercer 已提交
4760 4761 4762 4763 4764
QLOGIC QLA3XXX NETWORK DRIVER
P:	Ron Mercer
M:	linux-driver@qlogic.com
L:	netdev@vger.kernel.org
S:	Supported
4765 4766
F:	Documentation/networking/LICENSE.qla3xxx
F:	drivers/net/qla3xxx.*
R
Ron Mercer 已提交
4767

4768 4769 4770 4771 4772 4773
QLOGIC QLGE 10Gb ETHERNET DRIVER
P:	Ron Mercer
M:	linux-driver@qlogic.com
M:	ron.mercer@qlogic.com
L:	netdev@vger.kernel.org
S:	Supported
4774
F:	drivers/net/qlge/
4775

L
Linus Torvalds 已提交
4776 4777 4778 4779 4780
QNX4 FILESYSTEM
P:	Anders Larsen
M:	al@alarsen.net
W:	http://www.alarsen.net/linux/qnx4fs/
S:	Maintained
4781
F:	fs/qnx4/
4782 4783
F:	include/linux/qnx4_fs.h
F:	include/linux/qnxtypes.h
L
Linus Torvalds 已提交
4784 4785

RADEON FRAMEBUFFER DISPLAY DRIVER
4786 4787
P:	Benjamin Herrenschmidt
M:	benh@kernel.crashing.org
4788
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
L
Linus Torvalds 已提交
4789
S:	Maintained
4790 4791
F:	drivers/video/aty/radeon*
F:	include/linux/radeonfb.h
L
Linus Torvalds 已提交
4792 4793

RAGE128 FRAMEBUFFER DISPLAY DRIVER
4794 4795
P:	Paul Mackerras
M:	paulus@samba.org
4796
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
L
Linus Torvalds 已提交
4797
S:	Maintained
4798
F:	drivers/video/aty/aty128fb.c
L
Linus Torvalds 已提交
4799

4800
RALINK RT2X00 WIRELESS LAN DRIVER
4801 4802
P:	rt2x00 project
L:	linux-wireless@vger.kernel.org
4803
L:	users@rt2x00.serialmonkey.com
4804 4805
W:	http://rt2x00.serialmonkey.com/
S:	Maintained
4806
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
4807 4808
F:	drivers/net/wireless/rt2x00/

N
Nick Piggin 已提交
4809 4810 4811 4812
RAMDISK RAM BLOCK DEVICE DRIVER
P:	Nick Piggin
M:	npiggin@suse.de
S:	Maintained
4813 4814
F:	Documentation/blockdev/ramdisk.txt
F:	drivers/block/brd.c
N
Nick Piggin 已提交
4815

4816 4817 4818 4819
RANDOM NUMBER DRIVER
P:	Matt Mackall
M:	mpm@selenic.com
S:	Maintained
4820
F:	drivers/char/random.c
4821

4822 4823 4824 4825
RAPIDIO SUBSYSTEM
P:	Matt Porter
M:	mporter@kernel.crashing.org
S:	Maintained
4826
F:	drivers/rapidio/
4827

R
Randy Dunlap 已提交
4828 4829 4830 4831 4832
RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
P:	Corey Thomas
M:	coreythomas@charter.net
L:	linux-wireless@vger.kernel.org
S:	Maintained
4833
F:	drivers/net/wireless/ray*
R
Randy Dunlap 已提交
4834 4835 4836 4837

RCUTORTURE MODULE
P:	Josh Triplett
M:	josh@freedesktop.org
4838 4839
P:	Paul E. McKenney
M:	paulmck@linux.vnet.ibm.com
R
Randy Dunlap 已提交
4840
S:	Maintained
4841 4842
F:	Documentation/RCU/torture.txt
F:	kernel/rcutorture.c
R
Randy Dunlap 已提交
4843

4844 4845
RDC R-321X SoC
P:	Florian Fainelli
4846
M:	florian@openwrt.org
4847 4848
S:	Maintained

4849 4850
RDC R6040 FAST ETHERNET DRIVER
P:	Florian Fainelli
4851
M:	florian@openwrt.org
4852 4853
L:	netdev@vger.kernel.org
S:	Maintained
4854
F:	drivers/net/r6040.c
4855

A
Andy Grover 已提交
4856 4857 4858
RDS - RELIABLE DATAGRAM SOCKETS
P:	Andy Grover
M:	andy.grover@oracle.com
4859
L:	rds-devel@oss.oracle.com (moderated for non-subscribers)
A
Andy Grover 已提交
4860
S:	Supported
4861
F:	net/rds/
A
Andy Grover 已提交
4862

4863 4864 4865
READ-COPY UPDATE (RCU)
P:	Dipankar Sarma
M:	dipankar@in.ibm.com
4866 4867
P:	Paul E. McKenney
M:	paulmck@linux.vnet.ibm.com
4868 4869
W:	http://www.rdrop.com/users/paulmck/rclock/
S:	Supported
4870 4871 4872 4873 4874
F:	Documentation/RCU/rcu.txt
F:	Documentation/RCU/rcuref.txt
F:	include/linux/rcupdate.h
F:	include/linux/srcu.h
F:	kernel/rcupdate.c
4875

L
Linus Torvalds 已提交
4876 4877 4878 4879
REAL TIME CLOCK DRIVER
P:	Paul Gortmaker
M:	p_gortmaker@yahoo.com
S:	Maintained
4880 4881 4882
F:	Documentation/rtc.txt
F:	drivers/rtc/
F:	include/linux/rtc.h
L
Linus Torvalds 已提交
4883

4884 4885 4886
REAL TIME CLOCK (RTC) SUBSYSTEM
P:	Alessandro Zummo
M:	a.zummo@towertech.it
4887
L:	rtc-linux@googlegroups.com
4888
S:	Maintained
4889 4890 4891
F:	Documentation/rtc.txt
F:	drivers/rtc/
F:	include/linux/rtc.h
4892

L
Linus Torvalds 已提交
4893
REISERFS FILE SYSTEM
4894
L:	reiserfs-devel@vger.kernel.org
L
Linus Torvalds 已提交
4895
S:	Supported
4896
F:	fs/reiserfs/
L
Linus Torvalds 已提交
4897

4898
RFKILL
J
Johannes Berg 已提交
4899 4900 4901
P:	Johannes Berg
M:	johannes@sipsolutions.net
L:	linux-wireless@vger.kernel.org
4902
S:	Maintained
4903 4904
F	Documentation/rfkill.txt
F:	net/rfkill/
4905

R
Randy Dunlap 已提交
4906 4907
RISCOM8 DRIVER
S:	Orphan
4908 4909
F:	Documentation/serial/riscom8.txt
F:	drivers/char/riscom8*
R
Randy Dunlap 已提交
4910

L
Linus Torvalds 已提交
4911 4912 4913 4914
ROCKETPORT DRIVER
P:	Comtrol Corp.
W:	http://www.comtrol.com
S:	Maintained
4915 4916
F:	Documentation/serial/rocket.txt
F:	drivers/char/rocket*
L
Linus Torvalds 已提交
4917 4918 4919 4920 4921

ROSE NETWORK LAYER
P:	Ralf Baechle
M:	ralf@linux-mips.org
L:	linux-hams@vger.kernel.org
4922
W:	http://www.linux-ax25.org/
L
Linus Torvalds 已提交
4923
S:	Maintained
4924 4925 4926
F:	include/linux/rose.h
F:	include/net/rose.h
F:	net/rose/
L
Linus Torvalds 已提交
4927

4928
RTL8180 WIRELESS DRIVER
4929 4930
P:	John W. Linville
M:	linville@tuxdriver.com
4931 4932
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/
4933
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
4934
S:	Maintained
4935
F:	drivers/net/wireless/rtl818*
4936

4937
RTL8187 WIRELESS DRIVER
4938 4939 4940 4941 4942 4943 4944 4945
P:	Herton Ronaldo Krzesinski
M:	herton@mandriva.com.br
P:	Hin-Tak Leung
M:	htl10@users.sourceforge.net
P:	Larry Finger
M:	Larry.Finger@lwfinger.net
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/
4946
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
4947
S:	Maintained
4948
F:	drivers/net/wireless/rtl818x/rtl8187*
4949

4950
S3 SAVAGE FRAMEBUFFER DRIVER
J
Jim Cromie 已提交
4951
P:	Antonino Daplas
4952
M:	adaplas@gmail.com
4953
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
J
Jim Cromie 已提交
4954
S:	Maintained
4955
F:	drivers/video/savage/
4956

L
Linus Torvalds 已提交
4957 4958 4959
S390
P:	Martin Schwidefsky
M:	schwidefsky@de.ibm.com
4960 4961
P:	Heiko Carstens
M:	heiko.carstens@de.ibm.com
L
Linus Torvalds 已提交
4962
M:	linux390@de.ibm.com
4963
L:	linux-s390@vger.kernel.org
4964 4965
W:	http://www.ibm.com/developerworks/linux/linux390/
S:	Supported
4966
F:	arch/s390/
4967 4968

S390 NETWORK DRIVERS
4969
P:	Ursula Braun
4970
M:	ursula.braun@de.ibm.com
U
Ursula Braun 已提交
4971 4972
P:	Frank Blaschka
M:	blaschka@linux.vnet.ibm.com
4973
M:	linux390@de.ibm.com
4974
L:	linux-s390@vger.kernel.org
4975 4976
W:	http://www.ibm.com/developerworks/linux/linux390/
S:	Supported
4977
F:	drivers/s390/net/
4978

4979 4980 4981 4982 4983 4984 4985 4986
S390 ZCRYPT DRIVER
P:	Felix Beck
M:	felix.beck@de.ibm.com
P:	Ralph Wuerthner
M:	ralph.wuerthner@de.ibm.com
M:	linux390@de.ibm.com
L:	linux-s390@vger.kernel.org
S:	Supported
4987
F:	drivers/s390/crypto/
4988

4989
S390 ZFCP DRIVER
4990 4991 4992 4993
P:	Christof Schmitt
M:	christof.schmitt@de.ibm.com
P:	Martin Peschke
M:	mp3@de.ibm.com
4994
M:	linux390@de.ibm.com
4995
L:	linux-s390@vger.kernel.org
4996
W:	http://www.ibm.com/developerworks/linux/linux390/
L
Linus Torvalds 已提交
4997
S:	Supported
4998 4999
F:	Documentation/s390/zfcpdump.txt
F:	drivers/s390/scsi/zfcp_*
L
Linus Torvalds 已提交
5000

5001 5002
S390 IUCV NETWORK LAYER
P:	Ursula Braun
5003
M:	ursula.braun@de.ibm.com
5004 5005 5006 5007
M:	linux390@de.ibm.com
L:	linux-s390@vger.kernel.org
W:	http://www.ibm.com/developerworks/linux/linux390/
S:	Supported
5008 5009 5010
F:	drivers/s390/net/*iucv*
F:	include/net/iucv/
F:	net/iucv/
5011

5012 5013 5014 5015 5016
S3C24XX SD/MMC Driver
P:	Ben Dooks
M:	ben-linux@fluff.org
L:	linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
S:	Supported
5017
F:	drivers/mmc/host/s3cmci.*
5018

L
Linus Torvalds 已提交
5019 5020 5021
SAA7146 VIDEO4LINUX-2 DRIVER
P:	Michael Hunold
M:	michael@mihu.de
5022
L:	linux-media@vger.kernel.org
5023
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
L
Linus Torvalds 已提交
5024 5025
W:	http://www.mihu.de/linux/saa7146
S:	Maintained
5026 5027 5028
F:	drivers/media/common/saa7146*
F:	drivers/media/video/*7146*
F:	include/media/*7146*
L
Linus Torvalds 已提交
5029 5030 5031

SC1200 WDT DRIVER
P:	Zwane Mwaikambo
5032
M:	zwane@arm.linux.org.uk
L
Linus Torvalds 已提交
5033
S:	Maintained
5034
F:	drivers/watchdog/sc1200wdt.c
L
Linus Torvalds 已提交
5035 5036 5037 5038

SCHEDULER
P:	Ingo Molnar
M:	mingo@elte.hu
5039 5040
P:	Peter Zijlstra
M:	peterz@infradead.org
L
Linus Torvalds 已提交
5041
S:	Maintained
5042 5043
F:	kernel/sched*
F:	include/linux/sched.h
L
Linus Torvalds 已提交
5044 5045 5046

SCSI CDROM DRIVER
P:	Jens Axboe
5047
M:	axboe@kernel.dk
L
Linus Torvalds 已提交
5048 5049 5050
L:	linux-scsi@vger.kernel.org
W:	http://www.kernel.dk
S:	Maintained
5051
F:	drivers/scsi/sr*
L
Linus Torvalds 已提交
5052 5053 5054 5055 5056 5057 5058

SCSI SG DRIVER
P:	Doug Gilbert
M:	dgilbert@interlog.com
L:	linux-scsi@vger.kernel.org
W:	http://www.torque.net/sg
S:	Maintained
5059 5060
F:	drivers/scsi/sg.c
F:	include/scsi/sg.h
L
Linus Torvalds 已提交
5061 5062 5063

SCSI SUBSYSTEM
P:	James E.J. Bottomley
5064
M:	James.Bottomley@HansenPartnership.com
L
Linus Torvalds 已提交
5065
L:	linux-scsi@vger.kernel.org
5066 5067 5068
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
L
Linus Torvalds 已提交
5069
S:	Maintained
5070 5071
F:	drivers/scsi/
F:	include/scsi/
L
Linus Torvalds 已提交
5072 5073

SCSI TAPE DRIVER
5074
P:	Kai Mäkisara
L
Linus Torvalds 已提交
5075 5076 5077
M:	Kai.Makisara@kolumbus.fi
L:	linux-scsi@vger.kernel.org
S:	Maintained
5078 5079
F:	Documentation/scsi/st.txt
F:	drivers/scsi/st*
L
Linus Torvalds 已提交
5080 5081

SCTP PROTOCOL
5082 5083
P:	Vlad Yasevich
M:	vladislav.yasevich@hp.com
J
Jim Cromie 已提交
5084 5085
P:	Sridhar Samudrala
M:	sri@us.ibm.com
5086
L:	linux-sctp@vger.kernel.org
5087
W:	http://lksctp.sourceforge.net
J
Jim Cromie 已提交
5088
S:	Supported
5089 5090 5091 5092
F:	Documentation/networking/sctp.txt
F:	include/linux/sctp.h
F:	include/net/sctp/
F:	net/sctp/
L
Linus Torvalds 已提交
5093 5094

SCx200 CPU SUPPORT
5095 5096 5097
P:	Jim Cromie
M:	jim.cromie@gmail.com
S:	Odd Fixes
5098 5099 5100 5101 5102 5103
F:	Documentation/i2c/busses/scx200_acb
F:	arch/x86/kernel/scx200_32.c
F:	drivers/watchdog/scx200_wdt.c
F:	drivers/i2c/busses/scx200*
F:	drivers/mtd/maps/scx200_docflash.c
F:	include/linux/scx200.h
5104 5105 5106 5107 5108

SCx200 GPIO DRIVER
P:	Jim Cromie
M:	jim.cromie@gmail.com
S:	Maintained
5109 5110
F:	drivers/char/scx200_gpio.c
F:	include/linux/scx200_gpio.h
5111 5112 5113 5114 5115

SCx200 HRT CLOCKSOURCE DRIVER
P:	Jim Cromie
M:	jim.cromie@gmail.com
S:	Maintained
5116
F:	drivers/clocksource/scx200_hrt.c
L
Linus Torvalds 已提交
5117

5118 5119 5120 5121 5122
SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
P:	Sascha Sommer
M:	saschasommer@freenet.de
L:	sdricohcs-devel@lists.sourceforge.net (subscribers-only)
S:	Maintained
5123
F:	drivers/mmc/host/sdricoh_cs.c
5124

5125
SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
R
Randy Dunlap 已提交
5126
P:	Pierre Ossman
5127
M:	pierre@ossman.eu
5128
L:	sdhci-devel@lists.ossman.eu
R
Randy Dunlap 已提交
5129 5130
S:	Maintained

5131 5132 5133 5134 5135
SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
P:	Anton Vorontsov
M:	avorontsov@ru.mvista.com
L:	linuxppc-dev@ozlabs.org
L:	sdhci-devel@lists.ossman.eu
R
Randy Dunlap 已提交
5136
S:	Maintained
5137
F:	drivers/mmc/host/sdhci.*
R
Randy Dunlap 已提交
5138

5139 5140 5141 5142 5143 5144 5145
SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
P:	Ben Dooks
M:	ben-linux@fluff.org
L:	sdhci-devel@lists.ossman.eu
S:	Maintained
F:	drivers/mmc/host/sdhci-s3c.c

5146 5147 5148 5149
SECURITY SUBSYSTEM
P:	James Morris
M:	jmorris@namei.org
L:	linux-security-module@vger.kernel.org (suggested Cc:)
5150
T:	git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
5151
W:	http://security.wiki.kernel.org/
5152
S:	Supported
5153
F:	security/
5154

L
Linus Torvalds 已提交
5155 5156 5157 5158 5159 5160 5161
SECURITY CONTACT
P:	Security Officers
M:	security@kernel.org
S:	Supported

SELINUX SECURITY MODULE
P:	Stephen Smalley
5162
M:	sds@tycho.nsa.gov
L
Linus Torvalds 已提交
5163
P:	James Morris
5164
M:	jmorris@namei.org
5165 5166
P:	Eric Paris
M:	eparis@parisplace.org
5167
L:	selinux@tycho.nsa.gov (subscribers-only, general discussion)
5168
W:	http://selinuxproject.org
5169
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
L
Linus Torvalds 已提交
5170
S:	Supported
5171 5172
F:	include/linux/selinux*
F:	security/selinux/
L
Linus Torvalds 已提交
5173

5174 5175 5176 5177
SENSABLE PHANTOM
P:	Jiri Slaby
M:	jirislaby@gmail.com
S:	Maintained
5178 5179
F:	drivers/misc/phantom.c
F:	include/linux/phantom.h
5180

5181
SERIAL ATA (SATA) SUBSYSTEM
L
Linus Torvalds 已提交
5182 5183 5184
P:	Jeff Garzik
M:	jgarzik@pobox.com
L:	linux-ide@vger.kernel.org
5185
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
L
Linus Torvalds 已提交
5186
S:	Supported
5187 5188 5189
F:	drivers/ata/
F:	include/linux/ata.h
F:	include/linux/libata.h
L
Linus Torvalds 已提交
5190

S
Sathya Perla 已提交
5191 5192 5193
SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
P:	Sathya Perla
M:	sathyap@serverengines.com
5194 5195 5196 5197 5198
P:	Subbu Seetharaman
M:	subbus@serverengines.com
L:	netdev@vger.kernel.org
W:	http://www.serverengines.com
S:	Supported
5199
F:	drivers/net/benet/
S
Sathya Perla 已提交
5200

5201 5202 5203 5204 5205 5206
SFC NETWORK DRIVER
P:	Steve Hodgson
P:	Ben Hutchings
P:	Robert Stonehouse
M:	linux-net-drivers@solarflare.com
S:	Supported
5207
F:	drivers/net/sfc/
5208

R
Randy Dunlap 已提交
5209 5210 5211 5212
SGI GRU DRIVER
P:	Jack Steiner
M:	steiner@sgi.com
S:	Maintained
5213
F:	drivers/misc/sgi-gru/
R
Randy Dunlap 已提交
5214 5215 5216 5217 5218 5219

SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
P:	Pat Gefre
M:	pfg@sgi.com
L:	linux-ia64@vger.kernel.org
S:	Supported
5220 5221 5222
F:	Documentation/ia64/serial.txt
F:	drivers/serial/ioc?_serial.c
F:	include/linux/ioc?.h
R
Randy Dunlap 已提交
5223

L
Linus Torvalds 已提交
5224 5225 5226 5227 5228 5229
SGI VISUAL WORKSTATION 320 AND 540
P:	Andrey Panin
M:	pazke@donpac.ru
L:	linux-visws-devel@lists.sf.net
W:	http://linux-visws.sf.net
S:	Maintained for 2.6.
5230
F:	Documentation/sgi-visws.txt
L
Linus Torvalds 已提交
5231

5232
SGI XP/XPC/XPNET DRIVER
5233 5234
P:	Robin Holt
M:	holt@sgi.com
5235
S:	Maintained
5236
F:	drivers/misc/sgi-xp/
5237

R
Randy Dunlap 已提交
5238 5239 5240 5241 5242 5243
SHARP LH SUPPORT (LH7952X & LH7A40X)
P:	Marc Singer
M:	elf@buici.com
W:	http://projects.buici.com/arm
L:	linux-arm-kernel@lists.arm.linux.org.uk	(subscribers-only)
S:	Maintained
5244 5245 5246 5247 5248
F:	Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
F:	arch/arm/mach-lh7a40x/
F:	drivers/serial/serial_lh7a40x.c
F:	drivers/usb/gadget/lh7a40*
F:	drivers/usb/host/ohci-lh7a40*
R
Randy Dunlap 已提交
5249 5250 5251 5252 5253 5254

SHPC HOTPLUG DRIVER
P:	Kristen Carlson Accardi
M:	kristen.c.accardi@intel.com
L:	linux-pci@vger.kernel.org
S:	Supported
5255
F:	drivers/pci/hotplug/shpchp*
R
Randy Dunlap 已提交
5256

L
Linus Torvalds 已提交
5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269
SIMTEC EB110ATX (Chalice CATS)
P:	Ben Dooks
P:	Vincent Sanders
M:	support@simtec.co.uk
W:	http://www.simtec.co.uk/products/EB110ATX/
S:	Supported

SIMTEC EB2410ITX (BAST)
P:	Ben Dooks
P:	Vincent Sanders
M:	support@simtec.co.uk
W:	http://www.simtec.co.uk/products/EB2410ITX/
S:	Supported
5270 5271 5272
F:	arch/arm/mach-s3c2410/
F:	drivers/*/*s3c2410*
F:	drivers/*/*/*s3c2410*
L
Linus Torvalds 已提交
5273

5274 5275 5276 5277 5278
SIS 190 ETHERNET DRIVER
P:	Francois Romieu
M:	romieu@fr.zoreil.com
L:	netdev@vger.kernel.org
S:	Maintained
5279
F:	drivers/net/sis190.c
5280

L
Linus Torvalds 已提交
5281 5282 5283 5284
SIS 900/7016 FAST ETHERNET DRIVER
P:	Daniele Venzano
M:	venza@brownhat.org
W:	http://www.brownhat.org/sis900.html
5285
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
5286
S:	Maintained
5287
F:	drivers/net/sis900.*
L
Linus Torvalds 已提交
5288

M
Mark M. Hoffman 已提交
5289 5290 5291
SIS 96X I2C/SMBUS DRIVER
P:	Mark M. Hoffman
M:	mhoffman@lightlink.com
5292
L:	linux-i2c@vger.kernel.org
M
Mark M. Hoffman 已提交
5293
S:	Maintained
5294 5295
F:	Documentation/i2c/busses/i2c-sis96x
F:	drivers/i2c/busses/i2c-sis96x.c
M
Mark M. Hoffman 已提交
5296

L
Linus Torvalds 已提交
5297 5298 5299 5300
SIS FRAMEBUFFER DRIVER
P:	Thomas Winischhofer
M:	thomas@winischhofer.net
W:	http://www.winischhofer.net/linuxsisvga.shtml
5301
S:	Maintained
5302 5303 5304
F:	Documentation/fb/sisfb.txt
F:	drivers/video/sis/
F:	include/video/sisfb.h
L
Linus Torvalds 已提交
5305 5306 5307 5308 5309 5310

SIS USB2VGA DRIVER
P:	Thomas Winischhofer
M:	thomas@winischhofer.net
W:	http://www.winischhofer.at/linuxsisusbvga.shtml
S:	Maintained
5311
F:	drivers/usb/misc/sisusbvga/
L
Linus Torvalds 已提交
5312

R
Randy Dunlap 已提交
5313 5314 5315 5316 5317
SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
P:	Stephen Hemminger
M:	shemminger@linux-foundation.org
L:	netdev@vger.kernel.org
S:	Maintained
5318 5319
F:	drivers/net/skge.*
F:	drivers/net/sky2.*
R
Randy Dunlap 已提交
5320

5321 5322
SLAB ALLOCATOR
P:	Christoph Lameter
C
Christoph Lameter 已提交
5323
M:	cl@linux-foundation.org
5324 5325
P:	Pekka Enberg
M:	penberg@cs.helsinki.fi
5326 5327
P:	Matt Mackall
M:	mpm@selenic.com
5328 5329
L:	linux-mm@kvack.org
S:	Maintained
5330 5331
F:	include/linux/sl?b*.h
F:	mm/sl?b.c
5332

L
Linus Torvalds 已提交
5333 5334 5335 5336
SMC91x ETHERNET DRIVER
P:	Nicolas Pitre
M:	nico@cam.org
S:	Maintained
5337
F:	drivers/net/smc91x.*
L
Linus Torvalds 已提交
5338

M
Mark M. Hoffman 已提交
5339 5340 5341 5342 5343
SMSC47B397 HARDWARE MONITOR DRIVER
P:	Mark M. Hoffman
M:	mhoffman@lightlink.com
L:	lm-sensors@lm-sensors.org
S:	Maintained
5344 5345
F:	Documentation/hwmon/smsc47b397
F:	drivers/hwmon/smsc47b397.c
M
Mark M. Hoffman 已提交
5346

5347
SMSC911x ETHERNET DRIVER
5348 5349 5350 5351
P:	Steve Glendinning
M:	steve.glendinning@smsc.com
L:	netdev@vger.kernel.org
S:	Supported
5352 5353
F:	include/linux/smsc911x.h
F:	drivers/net/smsc911x.*
5354 5355

SMSC9420 PCI ETHERNET DRIVER
5356 5357 5358 5359
P:	Steve Glendinning
M:	steve.glendinning@smsc.com
L:	netdev@vger.kernel.org
S:	Supported
5360
F:	drivers/net/smsc9420.*
5361

5362 5363 5364 5365
SMX UIO Interface
P:	Ben Nizette
M:	bn@niasdigital.com
S:	Maintained
5366
F:	drivers/uio/uio_smx.c
5367

R
Randy Dunlap 已提交
5368 5369 5370 5371 5372 5373 5374
SN-IA64 (Itanium) SUB-PLATFORM
P:	Jes Sorensen
M:	jes@sgi.com
L:	linux-altix@sgi.com
L:	linux-ia64@vger.kernel.org
W:	http://www.sgi.com/altix
S:	Maintained
5375
F:	arch/ia64/sn/
R
Randy Dunlap 已提交
5376

5377
SOC-CAMERA V4L2 SUBSYSTEM
5378 5379
P:	Guennadi Liakhovetski
M:	g.liakhovetski@gmx.de
5380
L:	linux-media@vger.kernel.org
5381
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
5382
S:	Maintained
5383 5384
F:	include/media/v4l2*
F:	drivers/media/video/v4l2*
5385

R
Randy Dunlap 已提交
5386 5387 5388 5389
SOEKRIS NET48XX LED SUPPORT
P:	Chris Boot
M:	bootc@bootc.net
S:	Maintained
5390
F:	drivers/leds/leds-net48xx.c
R
Randy Dunlap 已提交
5391

L
Linus Torvalds 已提交
5392 5393
SOFTWARE RAID (Multiple Disks) SUPPORT
P:	Neil Brown
5394
M:	neilb@suse.de
L
Linus Torvalds 已提交
5395
L:	linux-raid@vger.kernel.org
5396
S:	Supported
5397 5398
F:	drivers/md/
F:	include/linux/raid/
L
Linus Torvalds 已提交
5399 5400 5401 5402

SONIC NETWORK DRIVER
P:	Thomas Bogendoerfer
M:	tsbogend@alpha.franken.de
5403
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
5404
S:	Maintained
5405
F:	drivers/net/sonic.*
L
Linus Torvalds 已提交
5406

5407 5408 5409 5410 5411
SONICS SILICON BACKPLANE DRIVER (SSB)
P:	Michael Buesch
M:	mb@bu3sch.de
L:	netdev@vger.kernel.org
S:	Maintained
5412 5413
F:	drivers/ssb/
F:	include/linux/ssb/
5414

L
Linus Torvalds 已提交
5415
SONY VAIO CONTROL DEVICE DRIVER
5416 5417
P:	Mattia Dongili
M:	malattia@linux.it
5418 5419
L:	linux-acpi@vger.kernel.org
W:	http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
L
Linus Torvalds 已提交
5420
S:	Maintained
5421 5422 5423 5424
F:	Documentation/laptops/sony-laptop.txt
F:	drivers/char/sonypi.c
F:	drivers/platform/x86/sony-laptop.c
F:	include/linux/sony-laptop.h
L
Linus Torvalds 已提交
5425

5426 5427 5428 5429 5430
SONY MEMORYSTICK CARD SUPPORT
P:	Alex Dubov
M:	oakad@yahoo.com
W:	http://tifmxx.berlios.de/
S:	Maintained
5431
F:	drivers/memstick/host/tifm_ms.c
5432

L
Linus Torvalds 已提交
5433 5434
SOUND
P:	Jaroslav Kysela
5435
M:	perex@perex.cz
T
Takashi Iwai 已提交
5436 5437
P:	Takashi Iwai
M:	tiwai@suse.de
5438
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
5439 5440 5441
W:	http://www.alsa-project.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
T:	git git://git.alsa-project.org/alsa-kernel.git
L
Linus Torvalds 已提交
5442
S:	Maintained
5443 5444
F:	Documentation/sound/
F:	include/sound/
5445
F:	sound/
L
Linus Torvalds 已提交
5446

5447
SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
5448
P:	Liam Girdwood
5449
M:	lrg@slimlogic.co.uk
5450 5451
P:	Mark Brown
M:	broonie@opensource.wolfsonmicro.com
5452
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
5453
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
5454
W:	http://alsa-project.org/main/index.php/ASoC
5455
S:	Supported
5456
F:	sound/soc/
5457
F:	include/sound/soc*
5458

5459 5460 5461
SPARC + UltraSPARC (sparc/sparc64)
P:	David S. Miller
M:	davem@davemloft.net
L
Linus Torvalds 已提交
5462
L:	sparclinux@vger.kernel.org
5463 5464
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
L
Linus Torvalds 已提交
5465
S:	Maintained
5466
F:	arch/sparc/
L
Linus Torvalds 已提交
5467 5468 5469 5470 5471

SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
P:	Roger Wolff
M:	R.E.Wolff@BitWizard.nl
S:	Supported
5472 5473
F:	Documentation/serial/specialix.txt
F:	drivers/char/specialix*
L
Linus Torvalds 已提交
5474

R
Randy Dunlap 已提交
5475 5476 5477 5478 5479
SPI SUBSYSTEM
P:	David Brownell
M:	dbrownell@users.sourceforge.net
L:	spi-devel-general@lists.sourceforge.net
S:	Maintained
5480 5481 5482
F:	Documentation/spi/
F:	drivers/spi/
F:	include/linux/spi/
R
Randy Dunlap 已提交
5483

5484
SPIDERNET NETWORK DRIVER for CELL
5485 5486 5487 5488
P:	Ishizaki Kou
M:	kou.ishizaki@toshiba.co.jp
P:	Jens Osterkamp
M:	jens@de.ibm.com
5489 5490
L:	netdev@vger.kernel.org
S:	Supported
5491 5492
F:	Documentation/networking/spider_net.txt
F:	drivers/net/spider_net*
5493

R
Randy Dunlap 已提交
5494 5495 5496 5497 5498 5499 5500
SPU FILE SYSTEM
P:	Jeremy Kerr
M:	jk@ozlabs.org
L:	linuxppc-dev@ozlabs.org
L:	cbe-oss-dev@ozlabs.org
W:	http://www.ibm.com/developerworks/power/cell/
S:	Supported
5501 5502
F:	Documentation/filesystems/spufs.txt
F:	arch/powerpc/platforms/cell/spufs/
R
Randy Dunlap 已提交
5503

5504 5505 5506 5507 5508 5509
SQUASHFS FILE SYSTEM
P:	Phillip Lougher
M:	phillip@lougher.demon.co.uk
L:	squashfs-devel@lists.sourceforge.net (subscribers-only)
W:	http://squashfs.org.uk
S:	Maintained
5510 5511
F:	Documentation/filesystems/squashfs.txt
F:	fs/squashfs/
5512

L
Linus Torvalds 已提交
5513 5514 5515 5516
SRM (Alpha) environment access
P:	Jan-Benedict Glaw
M:	jbglaw@lug-owl.de
S:	Maintained
5517
F:	arch/alpha/kernel/srm_env.c
L
Linus Torvalds 已提交
5518

5519
STABLE BRANCH
R
Randy Dunlap 已提交
5520 5521 5522 5523 5524 5525 5526
P:	Greg Kroah-Hartman
M:	greg@kroah.com
P:	Chris Wright
M:	chrisw@sous-sol.org
L:	stable@kernel.org
S:	Maintained

5527
STAGING SUBSYSTEM
5528 5529 5530
P:	Greg Kroah-Hartman
M:	gregkh@suse.de
T:	quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
5531
L:	devel@driverdev.osuosl.org
5532
S:	Maintained
5533
F:	drivers/staging/
5534

L
Linus Torvalds 已提交
5535 5536 5537 5538
STARFIRE/DURALAN NETWORK DRIVER
P:	Ion Badulescu
M:	ionut@cs.columbia.edu
S:	Maintained
5539
F:	drivers/net/starfire*
L
Linus Torvalds 已提交
5540 5541 5542

STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
W:	http://mosquitonet.Stanford.EDU/strip.html
J
Jean Delvare 已提交
5543
S:	Orphan
5544 5545
F:	drivers/net/wireless/strip.c
F:	include/linux/if_strip.h
L
Linus Torvalds 已提交
5546 5547 5548 5549 5550 5551

STRADIS MPEG-2 DECODER DRIVER
P:	Nathan Laredo
M:	laredo@gnu.org
W:	http://www.stradis.com/
S:	Maintained
5552
F:	drivers/media/video/stradis.c
L
Linus Torvalds 已提交
5553

R
Randy Dunlap 已提交
5554 5555 5556 5557 5558
SUN3/3X
P:	Sam Creasey
M:	sammy@sammy.net
W:	http://sammy.net/sun3/
S:	Maintained
5559 5560 5561
F:	arch/m68k/kernel/*sun3*
F:	arch/m68k/sun3*/
F:	arch/m68k/include/asm/sun3*
R
Randy Dunlap 已提交
5562

5563
SUPERH
L
Linus Torvalds 已提交
5564 5565
P:	Paul Mundt
M:	lethal@linux-sh.org
5566
L:	linux-sh@vger.kernel.org
L
Linus Torvalds 已提交
5567
W:	http://www.linux-sh.org
5568
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
5569
S:	Supported
5570
F:	Documentation/sh/
5571
F:	arch/sh/
5572
F:	drivers/sh/
L
Linus Torvalds 已提交
5573

5574
SUSPEND TO RAM
R
Randy Dunlap 已提交
5575 5576 5577
P:	Len Brown
M:	len.brown@intel.com
P:	Pavel Machek
P
Pavel Machek 已提交
5578
M:	pavel@ucw.cz
R
Randy Dunlap 已提交
5579 5580 5581 5582
P:	Rafael J. Wysocki
M:	rjw@sisk.pl
L:	linux-pm@lists.linux-foundation.org
S:	Supported
5583 5584 5585 5586 5587 5588 5589
F:	Documentation/power/
F:	arch/x86/kernel/acpi/
F:	drivers/base/power/
F:	kernel/power/
F:	include/linux/suspend.h
F:	include/linux/freezer.h
F:	include/linux/pm.h
L
Linus Torvalds 已提交
5590 5591 5592 5593 5594 5595

SVGA HANDLING
P:	Martin Mares
M:	mj@ucw.cz
L:	linux-video@atrey.karlin.mff.cuni.cz
S:	Maintained
5596 5597
F:	Documentation/svga.txt
F:	arch/x86/boot/video*
L
Linus Torvalds 已提交
5598 5599 5600 5601 5602

SYSV FILESYSTEM
P:	Christoph Hellwig
M:	hch@infradead.org
S:	Maintained
5603 5604 5605
F:	Documentation/filesystems/sysv-fs.txt
F:	fs/sysv/
F:	include/linux/sysv_fs.h
L
Linus Torvalds 已提交
5606

A
Alan Cox 已提交
5607
TASKSTATS STATISTICS INTERFACE
5608 5609
P:	Balbir Singh
M:	balbir@linux.vnet.ibm.com
A
Alan Cox 已提交
5610
S:	Maintained
5611 5612 5613
F:	Documentation/accounting/taskstats*
F:	include/linux/taskstats*
F:	kernel/taskstats.c
A
Alan Cox 已提交
5614

5615 5616 5617 5618 5619
TC CLASSIFIER
P:	Jamal Hadi Salim
M:	hadi@cyberus.ca
L:	netdev@vger.kernel.org
S:	Maintained
5620 5621 5622
F:	include/linux/pkt_cls.h
F:	include/net/pkt_cls.h
F:	net/sched/
5623

5624 5625 5626 5627 5628 5629 5630
TCP LOW PRIORITY MODULE
P:	Wong Hoi Sing, Edison
M:	hswong3i@gmail.com
P:	Hung Hing Lun, Mike
M:	hlhung3i@gmail.com
W:	http://tcp-lp-mod.sourceforge.net/
S:	Maintained
5631
F:	net/ipv4/tcp_lp.c
5632

5633 5634 5635 5636 5637 5638 5639
TEHUTI ETHERNET DRIVER
P:	Alexander Indenbaum
M:	baum@tehutinetworks.net
P:	Andy Gospodarek
M:	andy@greyhouse.net
L:	netdev@vger.kernel.org
S:	Supported
5640
F:	drivers/net/tehuti*
5641

A
Alan Cox 已提交
5642 5643 5644 5645
Telecom Clock Driver for MCPL0010
P:	Mark Gross
M:	mark.gross@intel.com
S:	Supported
5646
F:	drivers/char/tlclk.c
A
Alan Cox 已提交
5647

5648
TENSILICA XTENSA PORT (xtensa)
A
Alan Cox 已提交
5649 5650 5651
P:	Chris Zankel
M:	chris@zankel.net
S:	Maintained
5652
F:	arch/xtensa/
A
Alan Cox 已提交
5653 5654 5655 5656 5657 5658 5659

THINKPAD ACPI EXTRAS DRIVER
P:	Henrique de Moraes Holschuh
M:	ibm-acpi@hmh.eng.br
L:	ibm-acpi-devel@lists.sourceforge.net
W:	http://ibm-acpi.sourceforge.net
W:	http://thinkwiki.org/wiki/Ibm-acpi
5660
T:	git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
A
Alan Cox 已提交
5661
S:	Maintained
5662
F:	drivers/platform/x86/thinkpad_acpi.c
A
Alan Cox 已提交
5663

5664
TI FLASH MEDIA INTERFACE DRIVER
5665 5666 5667
P:	Alex Dubov
M:	oakad@yahoo.com
S:	Maintained
5668 5669 5670
F:	drivers/misc/tifm*
F:	drivers/mmc/host/tifm_sd.c
F:	include/linux/tifm.h
5671

5672 5673
TIPC NETWORK LAYER
P:	Per Liden
5674
M:	per.liden@ericsson.com
5675
P:	Jon Maloy
5676
M:	jon.maloy@ericsson.com
5677
P:	Allan Stephens
5678
M:	allan.stephens@windriver.com
5679 5680 5681
L:	tipc-discussion@lists.sourceforge.net
W:	http://tipc.sourceforge.net/
W:	http://tipc.cslab.ericsson.net/
5682
T:	git git://tipc.cslab.ericsson.net/pub/git/tipc.git
5683
S:	Maintained
5684 5685 5686
F:	include/linux/tipc*.h
F:	include/net/tipc/
F:	net/tipc/
5687

L
Linus Torvalds 已提交
5688 5689 5690
TLAN NETWORK DRIVER
P:	Samuel Chessman
M:	chessman@tux.org
5691
L:	tlan-devel@lists.sourceforge.net (subscribers-only)
L
Linus Torvalds 已提交
5692 5693
W:	http://sourceforge.net/projects/tlan/
S:	Maintained
5694 5695
F:	Documentation/networking/tlan.txt
F:	drivers/net/tlan.*
L
Linus Torvalds 已提交
5696

K
Kentaro Takeda 已提交
5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707
TOMOYO SECURITY MODULE
P:	Kentaro Takeda
M:	takedakn@nttdata.co.jp
P:	Tetsuo Handa
M:	penguin-kernel@I-love.SAKURA.ne.jp
L:	tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
L:	tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
L:	tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
W:	http://tomoyo.sourceforge.jp/
T:	quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
S:	Maintained
5708
F:	security/tomoyo/
K
Kentaro Takeda 已提交
5709

L
Linus Torvalds 已提交
5710
TOSHIBA ACPI EXTRAS DRIVER
5711
S:	Orphan
5712
F:	drivers/platform/x86/toshiba_acpi.c
L
Linus Torvalds 已提交
5713 5714 5715 5716 5717 5718 5719

TOSHIBA SMM DRIVER
P:	Jonathan Buzzard
M:	jonathan@buzzard.org.uk
L:	tlinux-users@tce.toshiba-dme.co.jp
W:	http://www.buzzard.org.uk/toshiba/
S:	Maintained
5720 5721
F:	drivers/char/toshiba.c
F:	include/linux/toshiba.h
L
Linus Torvalds 已提交
5722

P
Pierre Ossman 已提交
5723 5724 5725 5726
TMIO MMC DRIVER
P:	Ian Molton
M:	ian@mnementh.co.uk
S:	Maintained
5727
F:	drivers/mmc/host/tmio_mmc.*
P
Pierre Ossman 已提交
5728

H
Hugh Dickins 已提交
5729 5730 5731 5732 5733 5734 5735 5736
TMPFS (SHMEM FILESYSTEM)
P:	Hugh Dickins
M:	hugh.dickins@tiscali.co.uk
L:	linux-mm@kvack.org
S:	Maintained
F:	include/linux/shmem_fs.h
F:	mm/shmem.c

A
Alan Cox 已提交
5737
TPM DEVICE DRIVER
5738 5739 5740 5741
P:	Debora Velarde
M:	debora@linux.vnet.ibm.com
P:	Rajiv Andrade
M:	srajiv@linux.vnet.ibm.com
A
Alan Cox 已提交
5742 5743
W:	http://tpmdd.sourceforge.net
P:	Marcel Selhorst
5744 5745
M:	m.selhorst@sirrix.com
W:	http://www.sirrix.com
5746
L:	tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
A
Alan Cox 已提交
5747
S:	Maintained
5748
F:	drivers/char/tpm/
A
Alan Cox 已提交
5749

L
Linus Torvalds 已提交
5750
TRIVIAL PATCHES
5751
P:	Jiri Kosina
J
Jim Cromie 已提交
5752
M:	trivial@kernel.org
5753
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
L
Linus Torvalds 已提交
5754
S:	Maintained
5755 5756 5757 5758 5759
F:	drivers/char/tty_*
F:	drivers/serial/serial_core.c
F:	include/linux/serial_core.h
F:	include/linux/serial.h
F:	include/linux/tty.h
L
Linus Torvalds 已提交
5760

A
Alan Cox 已提交
5761 5762 5763 5764
TTY LAYER
P:	Alan Cox
M:	alan@lxorguk.ukuu.org.uk
S:	Maintained
A
Alan Cox 已提交
5765
T:	stgit http://zeniv.linux.org.uk/~alan/ttydev/
A
Alan Cox 已提交
5766

G
Grant Grundler 已提交
5767 5768 5769 5770
TULIP NETWORK DRIVERS
P:	Grant Grundler
M:	grundler@parisc-linux.org
P:	Kyle McMartin
5771
M:	kyle@mcmartin.ca
G
Grant Grundler 已提交
5772 5773
L:	netdev@vger.kernel.org
S:	Maintained
5774
F:	drivers/net/tulip/
L
Linus Torvalds 已提交
5775 5776 5777

TUN/TAP driver
P:	Maxim Krasnyansky
5778
M:	maxk@qualcomm.com
L
Linus Torvalds 已提交
5779 5780 5781
L:	vtun@office.satix.net
W:	http://vtun.sourceforge.net/tun
S:	Maintained
5782 5783
F:	Documentation/networking/tuntap.txt
F:	arch/um/os-Linux/drivers/
L
Linus Torvalds 已提交
5784

5785 5786 5787 5788
TURBOCHANNEL SUBSYSTEM
P:	Maciej W. Rozycki
M:	macro@linux-mips.org
S:	Maintained
5789 5790
F:	drivers/tc/
F:	include/linux/tc.h
5791

L
Linus Torvalds 已提交
5792 5793 5794 5795 5796
U14-34F SCSI DRIVER
P:	Dario Ballabio
M:	ballabio_dario@emc.com
L:	linux-scsi@vger.kernel.org
S:	Maintained
5797
F:	drivers/scsi/u14-34f.c
L
Linus Torvalds 已提交
5798

R
Randy Dunlap 已提交
5799 5800 5801 5802 5803 5804
UBI FILE SYSTEM (UBIFS)
P:	Artem Bityutskiy
M:	dedekind@infradead.org
P:	Adrian Hunter
M:	ext-adrian.hunter@nokia.com
L:	linux-mtd@lists.infradead.org
5805
T:	git git://git.infradead.org/ubifs-2.6.git
R
Randy Dunlap 已提交
5806 5807
W:	http://www.linux-mtd.infradead.org/doc/ubifs.html
S:	Maintained
5808 5809
F:	Documentation/filesystems/ubifs.txt
F:	fs/ubifs/
R
Randy Dunlap 已提交
5810

5811 5812 5813 5814 5815 5816
UCLINUX (AND M68KNOMMU)
P:	Greg Ungerer
M:	gerg@uclinux.org
W:	http://www.uclinux.org/
L:	uclinux-dev@uclinux.org  (subscribers-only)
S:	Maintained
5817
F:	arch/m68knommu/
5818

5819
UCLINUX FOR RENESAS H8/300 (H8300)
5820 5821 5822 5823 5824
P:	Yoshinori Sato
M:	ysato@users.sourceforge.jp
W:	http://uclinux-h8.sourceforge.jp/
S:	Supported

L
Linus Torvalds 已提交
5825
UDF FILESYSTEM
J
Jan Kara 已提交
5826 5827
P:	Jan Kara
M:	jack@suse.cz
L
Linus Torvalds 已提交
5828 5829
W:	http://linux-udf.sourceforge.net
S:	Maintained
5830 5831
F:	Documentation/filesystems/udf.txt
F:	fs/udf/
L
Linus Torvalds 已提交
5832

5833 5834 5835 5836
UFS FILESYSTEM
P:	Evgeniy Dushistov
M:	dushistov@mail.ru
S:	Maintained
5837 5838
F:	Documentation/filesystems/ufs.txt
F:	fs/ufs/
5839

5840 5841 5842 5843 5844
ULTRA-WIDEBAND (UWB) SUBSYSTEM:
P:	David Vrabel
M:	david.vrabel@csr.com
L:	linux-usb@vger.kernel.org
S:	Supported
5845 5846 5847
F:	drivers/uwb/*
F:	include/linux/uwb.h
F:	include/linux/uwb/
5848

L
Linus Torvalds 已提交
5849 5850
UNIFORM CDROM DRIVER
P:	Jens Axboe
5851
M:	axboe@kernel.dk
L
Linus Torvalds 已提交
5852 5853
W:	http://www.kernel.dk
S:	Maintained
5854 5855 5856
F:	Documentation/cdrom/
F:	drivers/cdrom/cdrom.c
F:	include/linux/cdrom.h
L
Linus Torvalds 已提交
5857

R
Randy Dunlap 已提交
5858 5859 5860 5861 5862
UNSORTED BLOCK IMAGES (UBI)
P:	Artem Bityutskiy
M:	dedekind@infradead.org
W:	http://www.linux-mtd.infradead.org/
L:	linux-mtd@lists.infradead.org
5863
T:	git git://git.infradead.org/ubi-2.6.git
R
Randy Dunlap 已提交
5864
S:	Maintained
5865
F:	drivers/mtd/ubi/
5866 5867
F:	include/linux/mtd/ubi.h
F:	include/mtd/ubi-user.h
R
Randy Dunlap 已提交
5868

L
Linus Torvalds 已提交
5869 5870 5871
USB ACM DRIVER
P:	Oliver Neukum
M:	oliver@neukum.name
5872
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
5873
S:	Maintained
5874 5875
F:	Documentation/usb/acm.txt
F:	drivers/usb/class/cdc-acm.*
L
Linus Torvalds 已提交
5876 5877 5878 5879

USB BLOCK DRIVER (UB ub)
P:	Pete Zaitcev
M:	zaitcev@redhat.com
5880
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
5881
S:	Supported
5882
F:	drivers/block/ub.c
L
Linus Torvalds 已提交
5883 5884 5885 5886

USB CDC ETHERNET DRIVER
P:	Greg Kroah-Hartman
M:	greg@kroah.com
5887
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
5888 5889
S:	Maintained
W:	http://www.kroah.com/linux-usb/
5890 5891
F:	drivers/net/usb/cdc_*.c
F:	include/linux/usb/cdc.h
L
Linus Torvalds 已提交
5892

5893 5894 5895 5896 5897
USB CYPRESS C67X00 DRIVER
P:	Peter Korsgaard
M:	jacmet@sunsite.dk
L:	linux-usb@vger.kernel.org
S:	Maintained
5898
F:	drivers/usb/c67x00/
5899

5900 5901 5902
USB DAVICOM DM9601 DRIVER
P:	Peter Korsgaard
M:	jacmet@sunsite.dk
5903
L:	netdev@vger.kernel.org
5904 5905
W:	http://www.linux-usb.org/usbnet
S:	Maintained
5906
F:	drivers/net/usb/dm9601.c
5907

5908 5909 5910 5911 5912 5913
USB DIAMOND RIO500 DRIVER
P:	Cesar Miquel
M:	miquel@df.uba.ar
L:	rio500-users@lists.sourceforge.net
W:	http://rio500.sourceforge.net
S:	Maintained
5914
F:	drivers/usb/misc/rio500*
5915

L
Linus Torvalds 已提交
5916 5917 5918
USB EHCI DRIVER
P:	David Brownell
M:	dbrownell@users.sourceforge.net
5919
L:	linux-usb@vger.kernel.org
5920
S:	Odd Fixes
5921 5922
F:	Documentation/usb/ehci.txt
F:	drivers/usb/host/ehci*
L
Linus Torvalds 已提交
5923

5924 5925 5926
USB ET61X[12]51 DRIVER
P:	Luca Risolia
M:	luca.risolia@studio.unibo.it
5927
L:	linux-usb@vger.kernel.org
5928
L:	linux-media@vger.kernel.org
5929
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
5930 5931
W:	http://www.linux-projects.org
S:	Maintained
5932
F:	drivers/media/video/et61x251/
5933

5934 5935 5936
USB GADGET/PERIPHERAL SUBSYSTEM
P:	David Brownell
M:	dbrownell@users.sourceforge.net
5937
L:	linux-usb@vger.kernel.org
5938 5939
W:	http://www.linux-usb.org/gadget
S:	Maintained
5940 5941
F:	drivers/usb/gadget/
F:	include/linux/usb/gadget*
5942

5943
USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
5944 5945
P:	Jiri Kosina
M:	jkosina@suse.cz
5946
L:	linux-usb@vger.kernel.org
5947
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
L
Linus Torvalds 已提交
5948
S:	Maintained
5949 5950
F:	Documentation/usb/hiddev.txt
F:	drivers/hid/usbhid/
L
Linus Torvalds 已提交
5951

5952 5953 5954
USB ISP116X DRIVER
P:	Olav Kongas
M:	ok@artecdesign.ee
5955
L:	linux-usb@vger.kernel.org
5956
S:	Maintained
5957 5958
F:	drivers/usb/host/isp116x*
F:	include/linux/usb/isp116x.h
5959

L
Linus Torvalds 已提交
5960 5961 5962
USB KAWASAKI LSI DRIVER
P:	Oliver Neukum
M:	oliver@neukum.name
5963
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
5964
S:	Maintained
5965
F:	drivers/usb/serial/kl5kusb105.*
L
Linus Torvalds 已提交
5966 5967 5968 5969

USB MASS STORAGE DRIVER
P:	Matthew Dharm
M:	mdharm-usb@one-eyed-alien.net
5970
L:	linux-usb@vger.kernel.org
5971
L:	usb-storage@lists.one-eyed-alien.net
L
Linus Torvalds 已提交
5972 5973
S:	Maintained
W:	http://www.one-eyed-alien.net/~mdharm/linux-usb/
5974
F:	drivers/usb/storage/
L
Linus Torvalds 已提交
5975 5976

USB OHCI DRIVER
5977 5978
P:	David Brownell
M:	dbrownell@users.sourceforge.net
5979
L:	linux-usb@vger.kernel.org
5980
S:	Odd Fixes
5981 5982
F:	Documentation/usb/ohci.txt
F:	drivers/usb/host/ohci*
L
Linus Torvalds 已提交
5983

5984 5985 5986
USB OPTION-CARD DRIVER
P:	Matthias Urlichs
M:	smurf@smurf.noris.de
5987
L:	linux-usb@vger.kernel.org
5988
S:	Maintained
5989
F:	drivers/usb/serial/option.c
5990

L
Linus Torvalds 已提交
5991 5992 5993
USB OV511 DRIVER
P:	Mark McClelland
M:	mmcclell@bigfoot.com
5994
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
5995 5996
W:	http://alpha.dyndns.org/ov511/
S:	Maintained
5997
F:	drivers/media/video/ov511.*
L
Linus Torvalds 已提交
5998 5999 6000 6001

USB PEGASUS DRIVER
P:	Petko Manolov
M:	petkan@users.sourceforge.net
6002
L:	linux-usb@vger.kernel.org
6003
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
6004 6005
W:	http://pegasus2.sourceforge.net/
S:	Maintained
6006
F:	drivers/net/usb/pegasus.*
L
Linus Torvalds 已提交
6007

6008 6009 6010
USB PRINTER DRIVER (usblp)
P:	Pete Zaitcev
M:	zaitcev@redhat.com
6011
L:	linux-usb@vger.kernel.org
6012
S:	Supported
6013
F:	drivers/usb/class/usblp.c
L
Linus Torvalds 已提交
6014 6015 6016 6017

USB RTL8150 DRIVER
P:	Petko Manolov
M:	petkan@users.sourceforge.net
6018
L:	linux-usb@vger.kernel.org
6019
L:	netdev@vger.kernel.org
L
Linus Torvalds 已提交
6020 6021
W:	http://pegasus2.sourceforge.net/
S:	Maintained
6022
F:	drivers/net/usb/rtl8150.c
L
Linus Torvalds 已提交
6023 6024 6025 6026

USB SE401 DRIVER
P:	Jeroen Vreeken
M:	pe1rxq@amsat.org
6027
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
6028 6029
W:	http://www.chello.nl/~j.vreeken/se401/
S:	Maintained
6030 6031
F:	Documentation/video4linux/se401.txt
F:	drivers/media/video/se401.*
L
Linus Torvalds 已提交
6032

A
Alan Cox 已提交
6033 6034 6035
USB SERIAL BELKIN F5U103 DRIVER
P:	William Greathouse
M:	wgreathouse@smva.com
6036
L:	linux-usb@vger.kernel.org
A
Alan Cox 已提交
6037
S:	Maintained
6038
F:	drivers/usb/serial/belkin_sa.*
A
Alan Cox 已提交
6039 6040 6041 6042

USB SERIAL CYPRESS M8 DRIVER
P:	Lonnie Mendez
M:	dignome@gmail.com
6043
L:	linux-usb@vger.kernel.org
A
Alan Cox 已提交
6044 6045 6046
S:	Maintained
W:	http://geocities.com/i0xox0i
W:	http://firstlight.net/cvs
6047
F:	drivers/usb/serial/cypress_m8.*
A
Alan Cox 已提交
6048

L
Linus Torvalds 已提交
6049 6050 6051 6052 6053
USB SERIAL CYBERJACK DRIVER
P:	Matthias Bruestle and Harald Welte
M:	support@reiner-sct.com
W:	http://www.reiner-sct.de/support/treiber_cyberjack.php
S:	Maintained
6054
F:	drivers/usb/serial/cyberjack.c
L
Linus Torvalds 已提交
6055 6056 6057 6058 6059

USB SERIAL DIGI ACCELEPORT DRIVER
P:	Peter Berger and Al Borchers
M:	pberger@brimson.com
M:	alborchers@steinerpoint.com
6060
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
6061
S:	Maintained
6062
F:	drivers/usb/serial/digi_acceleport.c
L
Linus Torvalds 已提交
6063 6064 6065 6066

USB SERIAL DRIVER
P:	Greg Kroah-Hartman
M:	gregkh@suse.de
6067
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
6068
S:	Supported
6069 6070 6071 6072
F:	Documentation/usb/usb-serial.txt
F:	drivers/usb/serial/generic.c
F:	drivers/usb/serial/usb-serial.c
F:	include/linux/usb/serial.h
L
Linus Torvalds 已提交
6073 6074 6075 6076

USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
P:	Gary Brubaker
M:	xavyer@ix.netcom.com
6077
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
6078
S:	Maintained
6079
F:	drivers/usb/serial/empeg.c
L
Linus Torvalds 已提交
6080 6081 6082 6083

USB SERIAL KEYSPAN DRIVER
P:	Greg Kroah-Hartman
M:	greg@kroah.com
6084
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
6085 6086
W:	http://www.kroah.com/linux/
S:	Maintained
6087
F:	drivers/usb/serial/*keyspan*
L
Linus Torvalds 已提交
6088 6089

USB SERIAL WHITEHEAT DRIVER
6090 6091
P:	Support Department
M:	support@connecttech.com
6092
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
6093 6094
W:	http://www.connecttech.com
S:	Supported
6095
F:	drivers/usb/serial/whiteheat*
L
Linus Torvalds 已提交
6096

6097 6098 6099 6100 6101
USB SMSC95XX ETHERNET DRIVER
P:	Steve Glendinning
M:	steve.glendinning@smsc.com
L:	netdev@vger.kernel.org
S:	Supported
6102
F:	drivers/net/usb/smsc95xx.*
6103

6104
USB SN9C1xx DRIVER
L
Linus Torvalds 已提交
6105 6106
P:	Luca Risolia
M:	luca.risolia@studio.unibo.it
6107
L:	linux-usb@vger.kernel.org
6108
L:	linux-media@vger.kernel.org
6109
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
L
Linus Torvalds 已提交
6110 6111
W:	http://www.linux-projects.org
S:	Maintained
6112 6113
F:	Documentation/video4linux/sn9c102.txt
F:	drivers/media/video/sn9c102/
L
Linus Torvalds 已提交
6114 6115 6116 6117

USB SUBSYSTEM
P:	Greg Kroah-Hartman
M:	gregkh@suse.de
6118
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
6119
W:	http://www.linux-usb.org
6120
T:	quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
L
Linus Torvalds 已提交
6121
S:	Supported
6122 6123 6124 6125 6126
F:	Documentation/usb/
F:	drivers/net/usb/
F:	drivers/usb/
F:	include/linux/usb.h
F:	include/linux/usb/
L
Linus Torvalds 已提交
6127 6128 6129 6130

USB UHCI DRIVER
P:	Alan Stern
M:	stern@rowland.harvard.edu
6131
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
6132
S:	Maintained
6133
F:	drivers/usb/host/uhci*
L
Linus Torvalds 已提交
6134

6135
USB "USBNET" DRIVER FRAMEWORK
L
Linus Torvalds 已提交
6136 6137
P:	David Brownell
M:	dbrownell@users.sourceforge.net
6138
L:	netdev@vger.kernel.org
6139
W:	http://www.linux-usb.org/usbnet
L
Linus Torvalds 已提交
6140
S:	Maintained
6141 6142
F:	drivers/net/usb/usbnet.c
F:	include/linux/usb/usbnet.h
L
Linus Torvalds 已提交
6143

6144 6145 6146
USB VIDEO CLASS
P:	Laurent Pinchart
M:	laurent.pinchart@skynet.be
6147
L:	linux-uvc-devel@lists.berlios.de (subscribers-only)
6148
L:	linux-media@vger.kernel.org
6149
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
6150 6151
W:	http://linux-uvc.berlios.de
S:	Maintained
6152
F:	drivers/media/video/uvc/
6153

L
Linus Torvalds 已提交
6154 6155 6156
USB W996[87]CF DRIVER
P:	Luca Risolia
M:	luca.risolia@studio.unibo.it
6157
L:	linux-usb@vger.kernel.org
6158
L:	linux-media@vger.kernel.org
6159
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
L
Linus Torvalds 已提交
6160 6161
W:	http://www.linux-projects.org
S:	Maintained
6162 6163
F:	Documentation/video4linux/w9968cf.txt
F:	drivers/media/video/w996*
L
Linus Torvalds 已提交
6164

6165 6166 6167 6168 6169
USB WIRELESS RNDIS DRIVER (rndis_wlan)
P:	Jussi Kivilinna
M:	jussi.kivilinna@mbnet.fi
L:	linux-wireless@vger.kernel.org
S:	Maintained
6170
F:	drivers/net/wireless/rndis_wlan.c
6171

6172 6173 6174 6175 6176 6177
USB XHCI DRIVER
P:	Sarah Sharp
M:	sarah.a.sharp@intel.com
L:	linux-usb@vger.kernel.org
S:	Supported

6178 6179 6180
USB ZC0301 DRIVER
P:	Luca Risolia
M:	luca.risolia@studio.unibo.it
6181
L:	linux-usb@vger.kernel.org
6182
L:	linux-media@vger.kernel.org
6183
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
6184 6185
W:	http://www.linux-projects.org
S:	Maintained
6186 6187
F:	Documentation/video4linux/zc0301.txt
F:	drivers/media/video/zc0301/
6188

L
Linus Torvalds 已提交
6189 6190 6191
USB ZD1201 DRIVER
P:	Jeroen Vreeken
M:	pe1rxq@amsat.org
6192
L:	linux-usb@vger.kernel.org
L
Linus Torvalds 已提交
6193 6194
W:	http://linux-lc100020.sourceforge.net
S:	Maintained
6195
F:	drivers/net/wireless/zd1201.*
L
Linus Torvalds 已提交
6196

6197 6198 6199
USB ZR364XX DRIVER
P:	Antoine Jacquet
M:	royale@zerezo.com
6200
L:	linux-usb@vger.kernel.org
6201
L:	linux-media@vger.kernel.org
6202
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
6203 6204
W:	http://royale.zerezo.com/zr364xx/
S:	Maintained
6205 6206
F:	Documentation/video4linux/zr364xx.txt
F:	drivers/media/video/zr364xx.c
6207

6208
USER-MODE LINUX (UML)
L
Linus Torvalds 已提交
6209
P:	Jeff Dike
6210
M:	jdike@addtoit.com
L
Linus Torvalds 已提交
6211 6212 6213 6214
L:	user-mode-linux-devel@lists.sourceforge.net
L:	user-mode-linux-user@lists.sourceforge.net
W:	http://user-mode-linux.sourceforge.net
S:	Maintained
6215 6216 6217 6218
F:	Documentation/uml/
F:	arch/um/
F:	fs/hostfs/
F:	fs/hppfs/
6219

6220 6221 6222 6223 6224 6225
USERSPACE I/O (UIO)
P:	Hans J. Koch
M:	hjk@linutronix.de
P:	Greg Kroah-Hartman
M:	gregkh@suse.de
S:	Maintained
6226 6227 6228
F:	Documentation/DocBook/uio-howto.tmpl
F:	drivers/uio/
F:	include/linux/uio*.h
6229

6230 6231 6232 6233 6234
UTIL-LINUX-NG PACKAGE
P:	Karel Zak
M:	kzak@redhat.com
L:	util-linux-ng@vger.kernel.org
W:	http://kernel.org/~kzak/util-linux-ng/
6235
T:	git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
6236 6237
S:	Maintained

6238 6239 6240 6241 6242 6243
UVESAFB DRIVER
P:	Michal Januszewski
M:	spock@gentoo.org
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	http://dev.gentoo.org/~spock/projects/uvesafb/
S:	Maintained
6244 6245
F:	Documentation/fb/uvesafb.txt
F:	drivers/video/uvesafb.*
6246

6247
VFAT/FAT/MSDOS FILESYSTEM
L
Linus Torvalds 已提交
6248 6249 6250
P:	OGAWA Hirofumi
M:	hirofumi@mail.parknet.co.jp
S:	Maintained
6251 6252
F:	Documentation/filesystems/vfat.txt
F:	fs/fat/
L
Linus Torvalds 已提交
6253 6254 6255 6256 6257

VIA RHINE NETWORK DRIVER
P:	Roger Luethi
M:	rl@hellgate.ch
S:	Maintained
6258
F:	drivers/net/via-rhine.c
L
Linus Torvalds 已提交
6259

6260 6261 6262
VIAPRO SMBUS DRIVER
P:	Jean Delvare
M:	khali@linux-fr.org
6263
L:	linux-i2c@vger.kernel.org
6264
S:	Maintained
6265 6266
F:	Documentation/i2c/busses/i2c-viapro
F:	drivers/i2c/busses/i2c-viapro.c
6267

6268 6269 6270 6271 6272 6273 6274 6275
VIA SD/MMC CARD CONTROLLER DRIVER
P:	Joseph Chan
M:	JosephChan@via.com.tw
P:	Harald Welte
M:	HaraldWelte@viatech.com
S:	Maintained
F:	drivers/mmc/host/via-sdmmc.c

J
Joseph Chan 已提交
6276 6277 6278 6279 6280 6281 6282
VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
P:	Joseph Chan
M:	JosephChan@via.com.tw
P:	Scott Fang
M:	ScottFang@viatech.com.cn
L:	linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
S:	Maintained
6283
F:	drivers/video/via/
J
Joseph Chan 已提交
6284

6285 6286 6287 6288 6289
VIA VELOCITY NETWORK DRIVER
P:	Francois Romieu
M:	romieu@fr.zoreil.com
L:	netdev@vger.kernel.org
S:	Maintained
6290
F:	drivers/net/via-velocity.*
L
Linus Torvalds 已提交
6291

6292 6293 6294 6295 6296
VLAN (802.1Q)
P:	Patrick McHardy
M:	kaber@trash.net
L:	netdev@vger.kernel.org
S:	Maintained
6297 6298 6299
F:	drivers/net/macvlan.c
F:	include/linux/if_*vlan.h
F:	net/8021q/
6300

6301 6302 6303 6304 6305 6306 6307 6308
VLYNQ BUS
P:	Florian Fainelli
M:	florian@openwrt.org
L:	openwrt-devel@lists.openwrt.org
S:	Maintained
F:	drivers/vlynq/vlynq.c
F:	include/linux/vlynq.h

6309 6310
VOLTAGE AND CURRENT REGULATOR FRAMEWORK
P:	Liam Girdwood
6311
M:	lrg@slimlogic.co.uk
6312 6313 6314
P:	Mark Brown
M:	broonie@opensource.wolfsonmicro.com
W:	http://opensource.wolfsonmicro.com/node/15
6315
W:	http://www.slimlogic.co.uk/?p=48
6316
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
6317
S:	Supported
6318 6319
F:	drivers/regulator/
F:	include/linux/regulator/
6320

6321 6322 6323 6324 6325
VT1211 HARDWARE MONITOR DRIVER
P:	Juerg Haefliger
M:	juergh@gmail.com
L:	lm-sensors@lm-sensors.org
S:	Maintained
6326 6327
F:	Documentation/hwmon/vt1211
F:	drivers/hwmon/vt1211.c
6328

6329 6330
VT8231 HARDWARE MONITOR DRIVER
P:	Roger Lucas
6331
M:	vt8231@hiddenengine.co.uk
6332 6333
L:	lm-sensors@lm-sensors.org
S:	Maintained
6334
F:	drivers/hwmon/vt8231.c
6335

L
Linus Torvalds 已提交
6336 6337 6338 6339
W1 DALLAS'S 1-WIRE BUS
P:	Evgeniy Polyakov
M:	johnpol@2ka.mipt.ru
S:	Maintained
6340 6341
F:	Documentation/w1/
F:	drivers/w1/
L
Linus Torvalds 已提交
6342

6343
W83791D HARDWARE MONITORING DRIVER
6344 6345
P:	Marc Hulsman
M:	m.hulsman@tudelft.nl
6346
L:	lm-sensors@lm-sensors.org
6347
S:	Maintained
6348 6349
F:	Documentation/hwmon/w83791d
F:	drivers/hwmon/w83791d.c
6350

6351 6352 6353 6354 6355
W83793 HARDWARE MONITORING DRIVER
P:	Rudolf Marek
M:	r.marek@assembler.cz
L:	lm-sensors@lm-sensors.org
S:	Maintained
6356 6357
F:	Documentation/hwmon/w83793
F:	drivers/hwmon/w83793.c
6358

L
Linus Torvalds 已提交
6359 6360
W83L51xD SD/MMC CARD INTERFACE DRIVER
P:	Pierre Ossman
6361
M:	pierre@ossman.eu
L
Linus Torvalds 已提交
6362
S:	Maintained
6363
F:	drivers/mmc/host/wbsd.*
L
Linus Torvalds 已提交
6364

6365 6366 6367
WATCHDOG DEVICE DRIVERS
P:	Wim Van Sebroeck
M:	wim@iguana.be
6368
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
6369
S:	Maintained
6370 6371 6372
F:	Documentation/watchdog/
F:	drivers/watchdog/
F:	include/linux/watchdog.h
6373

L
Linus Torvalds 已提交
6374 6375 6376
WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
P:	Jean Tourrilhes
M:	jt@hpl.hp.com
6377
L:	linux-wireless@vger.kernel.org
L
Linus Torvalds 已提交
6378 6379
W:	http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
S:	Maintained
6380 6381
F:	Documentation/networking/wavelan.txt
F:	drivers/net/wireless/wavelan*
L
Linus Torvalds 已提交
6382 6383 6384 6385 6386 6387

WD7000 SCSI DRIVER
P:	Miroslav Zagorac
M:	zaga@fly.cc.fer.hr
L:	linux-scsi@vger.kernel.org
S:	Maintained
6388
F:	drivers/scsi/wd7000.c
L
Linus Torvalds 已提交
6389

6390 6391 6392 6393 6394 6395 6396 6397
WIMAX STACK
P:	Inaky Perez-Gonzalez
M:	inaky.perez-gonzalez@intel.com
M:	linux-wimax@intel.com
L:	wimax@linuxwimax.org
S:	Supported
W:	http://linuxwimax.org

6398 6399 6400 6401
WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
P:	David Vrabel
M:	david.vrabel@csr.com
S:	Maintained
6402 6403
F:	include/linux/wlp.h
F:	drivers/uwb/wlp/
6404

6405 6406 6407 6408
WISTRON LAPTOP BUTTON DRIVER
P:	Miloslav Trmac
M:	mitr@volny.cz
S:	Maintained
6409
F:	drivers/input/misc/wistron_btns.c
6410

L
Linus Torvalds 已提交
6411 6412
WL3501 WIRELESS PCMCIA CARD DRIVER
P:	Arnaldo Carvalho de Melo
6413
M:	acme@ghostprotocols.net
6414
L:	linux-wireless@vger.kernel.org
6415
W:	http://oops.ghostprotocols.net:81/blog
L
Linus Torvalds 已提交
6416
S:	Maintained
6417
F:	drivers/net/wireless/wl3501*
L
Linus Torvalds 已提交
6418

6419 6420 6421 6422
WM97XX TOUCHSCREEN DRIVERS
P:	Mark Brown
M:	broonie@opensource.wolfsonmicro.com
P:	Liam Girdwood
6423
M:	lrg@slimlogic.co.uk
6424 6425 6426 6427
L:	linux-input@vger.kernel.org
T:	git git://opensource.wolfsonmicro.com/linux-2.6-touch
W:	http://opensource.wolfsonmicro.com/node/7
S:	Supported
6428 6429
F:	drivers/input/touchscreen/*wm97*
F:	include/linux/wm97xx.h
6430

L
Linus Torvalds 已提交
6431 6432 6433 6434 6435
X.25 NETWORK LAYER
P:	Henner Eisen
M:	eis@baty.hanse.de
L:	linux-x25@vger.kernel.org
S:	Maintained
6436 6437 6438
F:	Documentation/networking/x25*
F:	include/net/x25*
F:	net/x25/
L
Linus Torvalds 已提交
6439

R
Randy Dunlap 已提交
6440 6441 6442 6443 6444 6445 6446
X86 ARCHITECTURE (32-BIT AND 64-BIT)
P:	Thomas Gleixner
M:	tglx@linutronix.de
P:	Ingo Molnar
M:	mingo@redhat.com
P:	H. Peter Anvin
M:	hpa@zytor.com
6447
M:	x86@kernel.org
6448
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
R
Randy Dunlap 已提交
6449
S:	Maintained
6450 6451
F:	Documentation/x86/
F:	arch/x86/
R
Randy Dunlap 已提交
6452

6453 6454 6455 6456 6457 6458 6459 6460
XEN HYPERVISOR INTERFACE
P:	Jeremy Fitzhardinge
M:	jeremy@xensource.com
P:	Chris Wright
M:	chrisw@sous-sol.org
L:	virtualization@lists.osdl.org
L:	xen-devel@lists.xensource.com
S:	Supported
6461 6462 6463 6464 6465
F:	arch/x86/xen/
F:	drivers/*/xen-*front.c
F:	drivers/xen/
F:	arch/x86/include/asm/xen/
F:	include/xen/
6466

L
Linus Torvalds 已提交
6467 6468
XFS FILESYSTEM
P:	Silicon Graphics Inc
F
Felix Blyakher 已提交
6469 6470
P:	Felix Blyakher
M:	felixb@sgi.com
L
Linus Torvalds 已提交
6471
M:	xfs-masters@oss.sgi.com
6472
L:	xfs@oss.sgi.com
L
Linus Torvalds 已提交
6473
W:	http://oss.sgi.com/projects/xfs
6474
T:	git git://oss.sgi.com/xfs/xfs.git
L
Linus Torvalds 已提交
6475
S:	Supported
6476 6477
F:	Documentation/filesystems/xfs.txt
F:	fs/xfs/
L
Linus Torvalds 已提交
6478

6479 6480 6481 6482 6483
XILINX SYSTEMACE DRIVER
P:	Grant Likely
M:	grant.likely@secretlab.ca
W:	http://www.secretlab.ca/
S:	Maintained
6484
F:	drivers/block/xsysace.c
6485

6486 6487 6488 6489 6490
XILINX UARTLITE SERIAL DRIVER
P:	Peter Korsgaard
M:	jacmet@sunsite.dk
L:	linux-serial@vger.kernel.org
S:	Maintained
6491
F:	drivers/serial/uartlite.c
6492

L
Linus Torvalds 已提交
6493 6494 6495 6496 6497
YAM DRIVER FOR AX.25
P:	Jean-Paul Roubelat
M:	jpr@f6fbb.org
L:	linux-hams@vger.kernel.org
S:	Maintained
6498 6499
F:	drivers/net/hamradio/yam*
F:	include/linux/yam.h
L
Linus Torvalds 已提交
6500

6501 6502 6503 6504 6505
YEALINK PHONE DRIVER
P:	Henk Vergonet
M:	Henk.Vergonet@gmail.com
L:	usbb2k-api-dev@nongnu.org
S:	Maintained
6506 6507
F:	Documentation/input/yealink.txt
F:	drivers/input/misc/yealink.*
6508

L
Linus Torvalds 已提交
6509 6510 6511 6512 6513 6514 6515
Z8530 DRIVER FOR AX.25
P:	Joerg Reuter
M:	jreuter@yaina.de
W:	http://yaina.de/jreuter/
W:	http://www.qsl.net/dl1bke/
L:	linux-hams@vger.kernel.org
S:	Maintained
6516 6517 6518
F:	Documentation/networking/z8530drv.txt
F:	drivers/net/hamradio/*scc.c
F:	drivers/net/hamradio/z8530.h
L
Linus Torvalds 已提交
6519

6520 6521 6522 6523 6524 6525
ZD1211RW WIRELESS DRIVER
P:	Daniel Drake
M:	dsd@gentoo.org
P:	Ulrich Kunitz
M:	kune@deine-taler.de
W:	http://zd1211.ath.cx/wiki/DriverRewrite
6526
L:	linux-wireless@vger.kernel.org
6527 6528
L:	zd1211-devs@lists.sourceforge.net (subscribers-only)
S:	Maintained
6529
F:	drivers/net/wireless/zd1211rw/
6530

L
Linus Torvalds 已提交
6531 6532
ZR36067 VIDEO FOR LINUX DRIVER
L:	mjpeg-users@lists.sourceforge.net
6533
L:	linux-media@vger.kernel.org
L
Linus Torvalds 已提交
6534
W:	http://mjpeg.sourceforge.net/driver-zoran/
6535 6536
T:	Mercurial http://linuxtv.org/hg/v4l-dvb
S:	Odd Fixes
6537
F:	drivers/media/video/zoran/
L
Linus Torvalds 已提交
6538

6539 6540 6541 6542
ZS DECSTATION Z85C30 SERIAL DRIVER
P:	Maciej W. Rozycki
M:	macro@linux-mips.org
S:	Maintained
6543
F:	drivers/serial/zs.*
6544

L
Linus Torvalds 已提交
6545 6546
THE REST
P:	Linus Torvalds
6547 6548
M:	torvalds@linux-foundation.org
L:	linux-kernel@vger.kernel.org
6549
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
L
Linus Torvalds 已提交
6550
S:	Buried alive in reporters
6551 6552
F:	*
F:	*/
新手
引导
客服 返回
顶部